@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
  background: var(--color-white);
  padding: 10px 0;
}
div .bread .breadcrumbs {
  width: 1080px;
  margin: 0 auto;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  gap: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.c-contact__list .contact__item--mail .mail__button {
  width: 36px;
  height: 36px;
}
.c-contact__list .contact__item--mail .mail__button:hover {
  transform: scale(0.95);
}
.c-contact__list .contact__item--mail .mail__button img {
  width: 20px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 15px 10px;
  width: 180px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 15px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 400px;
}

/*
# .com-border-bottom
------------------------*/
.com-border-bottom {
  position: relative;
  background: url(../img/common/com_arr.png) bottom left no-repeat;
  padding-left: 20px;
}
.com-border-bottom::before, .com-border-bottom::after {
  position: absolute;
  content: "";
  height: 1px;
  bottom: 0;
  background: var(--color-white);
}
.com-border-bottom::before {
  width: 78%;
  left: 2%;
}
.com-border-bottom::after {
  width: 16%;
  right: 0;
}

/*
# com-button
------------------------*/
.com-button {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
  background: var(--accent-color);
  color: var(--color-white);
  border-radius: 45px;
}
.com-button.bg-color-font {
  background: var(--body-font-color);
}
.com-button.bg-color-primary {
  background: var(--primary-color);
}
.com-button::before {
  right: 5%;
}
.com-button.bg-color-white {
  background: var(--color-white);
  color: var(--primary-color);
}
.com-button:hover {
  transform: scale(0.97);
}

/*
# check__list
------------------------*/
.check__list .check__item {
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-20);
  padding: 20px 0 20px 45px;
}
.check__list .check__item::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}

/*
# bg-image-frame4
------------------------*/
.bg-image-frame4 {
  background-image: url(../img/top/com-frame_lt.png), url(../img/top/com-frame_rt.png), url(../img/top/com-frame_lb.png), url(../img/top/com-frame_rb.png);
  background-repeat: no-repeat;
  background-position: 0 0, 100% 0, 0 100%, 100% 100%;
}

.bg-color-primary.bg-image-frame4 {
  background-image: url(../img/common/com-white-frame_lt.png), url(../img/common/com-white-frame_rt.png), url(../img/common/com-white-frame_lb.png), url(../img/common/com-white-frame_rb.png);
}

/*
# line-icon
------------------------*/
.line-icon {
  position: relative;
  padding-left: 50px;
}
.line-icon::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/common/sns/LINE_logo.svg) center/100% no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  font-size: var(--font-size-40);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-top: 45px;
  font-weight: var(--font-weight-semibold);
  font-family: var(--sub-font-family);
  background: url(../img/common/section-ttl_deco.png) top center no-repeat;
}
.section-title.color-white {
  color: var(--color-white);
}
.section-title.color-primary {
  color: var(--primary-color);
}
.section-title.icon-left {
  background: none;
}
.section-title.icon-left span {
  padding-left: 50px;
  background: url(../img/common/section-ttl_deco.png) left center no-repeat;
}

.headline-title {
  background: var(--primary-color);
  color: var(--color-white);
  font-family: var(--sub-font-family);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-28);
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  padding: 10px;
}

/*==========================================
header
===========================================*/
#header {
  padding: 25px 1.302% 10px;
}
#header .header__logo {
  line-height: 1;
}
#header .header__right {
  width: 710px;
}
#header .header__contact-list {
  margin-left: auto;
}
#header .header__nav {
  margin-top: 10px;
}
#header .header__nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--color-white);
  inset: 0 0 0 auto;
  margin: auto 0;
}
#header .header__nav-item:first-child .header__nav-link {
  padding-left: 0;
}
#header .header__nav-item:last-child::before {
  background: none;
}
#header .header__nav-item:last-child .header__nav-link {
  padding-right: 0;
}
#header .header__nav-link {
  padding: 0 20px;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(500px, 43.229vw, 830px);
  background: url(../img/top/mv/mv_ill.png) right center/77% no-repeat, var(--primary-color-light);
}
#top-mv .mv__catch-wrap {
  position: absolute;
  inset: 10.2409% auto auto 0.78125%;
  background: url(../img/top/mv/mv-catch-lt_deco.png) left top no-repeat, url(../img/top/mv/mv-catch-cnt_deco.png) right 95px top 115px no-repeat;
  padding: 50px 0 0 90px;
}
#top-mv .mv__catch-wrap .mv__catch-main {
  font-size: clamp(3rem, 2.339vw, 4.5rem);
  line-height: 1.6;
  padding-bottom: 15px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
#top-mv .mv__catch-wrap .mv__catch-main em {
  font-size: clamp(4rem, 2.88vw, 5.5rem);
}
#top-mv .mv__catch-wrap .mv__catch-main.com-border-bottom {
  background-position: 8px 100%;
}
#top-mv .mv__catch-wrap .mv__catch-sub {
  font-size: clamp(2rem, 1.36vw, 2.6rem);
  line-height: 1.6923076923;
  padding-left: 20px;
}
#top-mv .mv__catch-wrap .mv__catch-sub strong {
  font-size: clamp(2.2rem, 1.57vw, 3rem);
}
#top-mv .mv__catch-wrap .mv__line-text {
  font-size: var(--font-size-15);
  margin-top: 10px;
  line-height: 1.3333333333;
}
#top-mv .mv__button {
  width: 405px;
  margin-top: 5%;
  height: 70px;
  font-size: clamp(1.6rem, 1.05vw, 2rem);
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 60px 0 55px;
}
#footer:has(.footer__headline) #copyright {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
#footer .footer__headline {
  margin-bottom: 35px;
}
#footer .footer__left {
  width: 235px;
}
#footer .footer__logo {
  margin-bottom: 40px;
}
#footer .footer__logo img {
  width: 217px;
}
#footer .footer__right {
  width: 370px;
}
#footer .footer__right .footer__line-text {
  font-size: var(--font-size-15);
  margin-bottom: 8px;
  line-height: 1.3333333333;
}
#footer .footer__buttons .footer__button {
  margin-bottom: 10px;
}
#footer .footer__buttons .footer__button:last-child {
  margin-bottom: 0;
}
#footer .footer__buttons .footer__button-link {
  height: 70px;
  padding: 0 20px 0 75px;
  font-size: var(--font-size-16);
  line-height: 1.25;
  text-align: left;
  justify-content: flex-start;
}
#footer .footer__buttons .footer__button-link::before {
  inset: 0 3% 0 auto;
  font-size: var(--font-size-14);
}
#footer .footer__buttons .footer__button-link::after {
  left: 25px;
}
#footer .footer__buttons .footer__button-link:hover {
  opacity: 1;
  transform: scale(0.97);
}
#footer .footer__nav-main {
  padding: 10px 0;
}
#footer .footer__nav-main .footer__nav-link {
  padding: 0 19px;
  letter-spacing: 0.3em;
}
#footer .footer__nav-main .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__nav-main .footer__nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--color-white);
}
#footer .footer__nav-main .footer__nav-item:first-child::before {
  background: none;
}
#footer .footer__nav-main .footer__nav-item:first-child .footer__nav-link {
  padding-left: 0;
}
#footer .footer__nav-main .footer__nav-item:last-child .footer__nav-link {
  padding-right: 0;
}
#footer .footer__nav-sub {
  margin-top: 10px;
}
#footer .footer__nav-sub .footer__nav-list {
  gap: 0 25px;
}
#footer .footer__nav-sub .footer__nav-link {
  font-size: var(--font-size-12);
  padding: 0 0 0 15px;
}
#footer .footer__nav-sub .footer__nav-link::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#footer .footer__nav-sub .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  width: 100%;
  padding: 15px 0;
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-12);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(290px, 23.437vw, 450px);
  background-color: var(--primary-color-light);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 62.4479% 100%;
}
.lower-sv .sv__title-wrap {
  width: clamp(1080px, 80.7291%, 1550px);
  margin: auto;
  position: absolute;
  inset: 0;
  height: -moz-fit-content;
  height: fit-content;
  font-size: var(--font-size-45);
}
.lower-sv .sv__title-wrap .sv__title {
  width: -moz-fit-content;
  width: fit-content;
}
.lower-sv .sv__title-wrap .sv__title::before, .lower-sv .sv__title-wrap .sv__title::after {
  position: absolute;
  content: "";
}
.lower-sv .sv__title-wrap .sv__title::before {
  width: 171px;
  height: 37px;
  background: url(../img/sv/sv-ttl-l_deco.png) center/100% no-repeat;
  inset: -50px auto auto -75px;
}
.lower-sv .sv__title-wrap .sv__title::after {
  width: 167px;
  height: 28px;
  background: url(../img/sv/sv-ttl-r_deco.png) center/100% no-repeat;
  inset: auto -178px -50px auto;
}
.lower-sv .sv__title-wrap span {
  padding-bottom: 10px;
}

#about-sv {
  background-image: url(../../img/sv/about-sv_bg.png);
}

#service-sv {
  background-image: url(../../img/sv/service-sv_bg.png);
}

#guide-sv {
  background-image: url(../../img/sv/guide-sv_bg.png);
}

#case-sv {
  background-image: url(../../img/sv/case-sv_bg.png);
}

#news-sv {
  background-image: url(../../img/sv/news-sv_bg.png);
}

#contact-sv {
  background-image: url(../../img/sv/contact-sv_bg.png);
}

#complete-sv {
  background-image: url(../../img/sv/complete-sv_bg.png);
}

#privacy-sv {
  background-image: url(../../img/sv/privacy-sv_bg.png);
}

#site-sv {
  background-image: url(../../img/sv/site-sv_bg.png);
}

#e404-sv {
  background-image: url(../../img/sv/e404-sv_bg.png);
}

/*==========================================
entrance
===========================================*/
.entrance__wrap {
  padding: 30px 3.6458% 0;
  gap: 3.3708%;
}
.entrance__wrap .entrance__link {
  height: clamp(550px, 38.802vw, 745px);
  width: 48.3146%;
  box-shadow: 1px 1px 2px 4px rgba(var(--color-white-rgb), 0.3);
  z-index: 1;
}
.entrance__wrap .entrance__link--megurie {
  background: url(../img/entrance/ent-megurie_bg.jpg) center/cover no-repeat;
}
.entrance__wrap .entrance__link--megurie .entrance__title-name {
  letter-spacing: 0.1em;
}
.entrance__wrap .entrance__link--biogaia {
  background: url(../img/entrance/ent-biogaia_bg.jpg) center/cover no-repeat;
}
.entrance__wrap .entrance__link--biogaia::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(var(--color-black-rgb), 0.4);
  z-index: -1;
  inset: 0;
}
.entrance__wrap .entrance__link::before {
  width: 90px;
  height: 90px;
  background: var(--color-white);
  color: var(--primary-color);
  font-size: var(--font-size-42);
  border-radius: 50%;
  inset: auto 4.6511% 4.6979% auto;
  box-shadow: 0 0 12px rgba(var(--body-font-color-rgb), 0.4);
}
.entrance__wrap .entrance__link:hover {
  opacity: 1;
  filter: brightness(1.3);
  transform: scale(0.985);
  box-shadow: 1px 1px 1px 1px rgba(var(--color-white-rgb), 0.3);
}
.entrance__wrap .entrance__link:hover::before {
  background: var(--primary-color);
  color: var(--color-white);
}
.entrance__wrap .entrance__title {
  inset: 10.7382% auto auto 3.488%;
}
.entrance__wrap .entrance__title-text {
  font-size: var(--font-size-40);
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.entrance__wrap .entrance__title-name {
  font-size: var(--font-size-50);
  padding-left: 20px;
}
.entrance__wrap .entrance__title-name small {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-regular);
  padding: 0 25px;
}
.entrance__wrap .entrance__title-name small::before, .entrance__wrap .entrance__title-name small::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  top: 0;
  bottom: 0;
  background: var(--color-white);
  margin: auto 0;
}
.entrance__wrap .entrance__title-name small::before {
  left: 0;
}
.entrance__wrap .entrance__title-name small::after {
  right: 0;
}

/*==========================================
top
===========================================*/
/*
# top-greeting
------------------------*/
.top-greeting {
  padding: 115px 0 135px;
  background: url(../img/top/greeting-lt_deco.png) left top/29.1145% no-repeat, url(../img/top/greeting-lb_deco.png) left bottom/39.2708% no-repeat;
}
.top-greeting .campaign-banner {
  margin-bottom: 85px;
}
.top-greeting .campaign-banner .banner__left {
  width: 625px;
  padding: 50px 30px 50px 50px;
}
.top-greeting .campaign-banner .banner__title {
  margin-bottom: 15px;
  font-size: var(--font-size-48);
}
.top-greeting .campaign-banner .banner__text {
  font-size: var(--font-size-20);
}
.top-greeting .campaign-banner .banner__right {
  width: calc(100% - 625px);
  padding: 65px 30px;
  background: url(../img/common/com-ptrn_bg.png);
}
.top-greeting .campaign-banner .banner__right .banner__text {
  margin-bottom: 30px;
}
.top-greeting .campaign-banner .banner__code {
  font-size: var(--font-size-24);
  text-align: center;
  padding: 10px;
}
.top-greeting .greeting__content {
  width: 812px;
  margin-left: auto;
}
.top-greeting .greeting__title {
  font-size: var(--font-size-40);
  margin-bottom: 30px;
}
.top-greeting .greeting__title strong {
  font-size: var(--font-size-48);
  z-index: 1;
}
.top-greeting .greeting__title strong::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 16px;
  inset: auto 0 0;
  background: rgba(var(--primary-color-rgb), 0.1);
}
.top-greeting .greeting__title .title-name {
  width: 330px;
  text-align: center;
  padding: 5px 0 27px;
  margin-left: 105px;
  background: url(../img/top/service-ttl-l_frame.png) left center/75% no-repeat, url(../img/top/service-ttl-r_frame.png) right center/19% no-repeat;
}
.top-greeting .greeting__title .title-text {
  width: 735px;
  line-height: 1.4166666667;
  padding: 0 0 15px 40px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.top-greeting .greeting__title .title-text .align-right {
  text-align: right;
}
.top-greeting .greeting__check-list {
  padding: 25px 40px;
}
.top-greeting .greeting__check-list .greeting__check-item:last-child {
  border-bottom: none;
}

/*
# top-worry
------------------------*/
.top-worry::before {
  position: absolute;
  content: "";
  width: 43.75%;
  max-width: 840px;
  height: 691px;
  inset: auto 0 0 auto;
  background: url(../img/top/worry_ill.png) bottom center/100% no-repeat;
}
.top-worry .worry__wrap {
  width: 70.3125%;
  padding: 55px 0 60px;
}
.top-worry .worry__title {
  font-size: var(--font-size-36);
  margin-bottom: 25px;
}
.top-worry .worry__content {
  width: 68.8888%;
  min-width: 750px;
  margin-left: auto;
}
.top-worry .worry__list {
  width: 632px;
  border-bottom: 1px solid var(--color-gray);
}
.top-worry .worry__item {
  border-bottom: none;
  padding-right: 50px;
  letter-spacing: 0.15em;
}
.top-worry .worry__item::before {
  color: var(--primary-color);
  background: var(--color-white);
}
.top-worry .worry__text {
  width: 87.311%;
  margin-top: 35px;
  padding: 25px;
  font-size: var(--font-size-24);
  line-height: 1.5416666667;
}

/*
# top-about
------------------------*/
.top-about {
  padding: 115px 0 125px;
  background: url(../img/top/about_bg.png) center/cover no-repeat;
}
.top-about .about__title {
  margin-bottom: 30px;
}
.top-about .about__content {
  padding: 40px 0 30px;
  background-color: rgba(var(--color-white-rgb), 0.9);
  margin-bottom: 70px;
}
.top-about .about__content::before {
  position: absolute;
  content: "";
  width: 208px;
  height: 403px;
  inset: auto -74px -65px auto;
  background: url(../img/top/about-cont_ill.png) center/100% no-repeat;
}
.top-about .about__subtitle {
  text-align: center;
  font-size: var(--font-size-36);
  padding: 18px 0;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}
.top-about .about__subtitle::before, .top-about .about__subtitle::after {
  position: absolute;
  content: "";
  width: 623px;
  height: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/top/about-cont-ttl_bdr.png) center/100% no-repeat;
}
.top-about .about__subtitle::before {
  top: 0;
}
.top-about .about__subtitle::after {
  bottom: 0;
  transform: rotate(180deg);
}
.top-about .about__text {
  font-size: var(--font-size-17);
}
.top-about .about__kodawari .kodawari__title {
  text-align: center;
  font-size: var(--font-size-36);
  margin-bottom: 40px;
}
.top-about .about__kodawari .kodawari__list {
  gap: 60px;
}
.top-about .about__kodawari .kodawari__item {
  width: 320px;
  height: 320px;
  background: url(../img/common/com-ptrn_bg.png), var(--primary-color);
}
.top-about .about__kodawari .kodawari__item-icon {
  margin-bottom: 15px;
}
.top-about .about__kodawari .kodawari__item-text {
  font-size: var(--font-size-22);
}
.top-about .about__kodawari .kodawari__button {
  width: 405px;
  margin: 65px auto 0;
  letter-spacing: 0.2em;
}

/*
# chart
------------------------*/
#chart {
  padding: 95px 0;
  border-top: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  z-index: 1;
}
#chart::before, #chart::after {
  position: absolute;
  content: "";
  width: 736px;
  height: 673px;
  top: 0;
  z-index: -1;
  background: url(../img/top/chart_deco.png) center/100% no-repeat;
}
#chart::before {
  left: 0;
}
#chart::after {
  right: 0;
  transform: scale(-1, 1);
}
#chart .chart__title {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 60px;
}
#chart .chart__title::before, #chart .chart__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 78px;
  border-radius: 9999px;
  background-color: var(--primary-color);
  transform-origin: 50% calc(100% - 0.5px);
}
#chart .chart__title::before {
  transform: rotate(55deg);
}
#chart .chart__title::after {
  transform: rotate(-55deg);
}
#chart .chart__title .title-sub {
  font-size: var(--font-size-40);
}
#chart .chart__title .title-sub::before, #chart .chart__title .title-sub::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 42px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--primary-color);
}
#chart .chart__title .title-sub::before {
  left: -30px;
  transform: rotate(-40deg);
}
#chart .chart__title .title-sub::after {
  right: -30px;
  transform: rotate(40deg);
}
#chart .chart__title .title-main {
  font-size: 6rem;
}
#chart .chart__text {
  margin-bottom: 30px;
}
#chart .chart_container .com_chart {
  display: none;
  padding: 30px 35px;
}
#chart .chart_container .com_chart::before, #chart .chart_container .com_chart::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 61px;
  background: url(../img/common/com-frame_deco.png) center/100% no-repeat;
}
#chart .chart_container .com_chart::before {
  top: 0;
  right: 0;
}
#chart .chart_container .com_chart::after {
  left: 0;
  bottom: 0;
  transform: rotate(180deg);
}
#chart .chart_container .com_chart:first-of-type {
  display: block;
}
#chart .chart_container .com_chart .chart_title {
  font-size: var(--font-size-30);
  padding: 0 25px 5px;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(var(--color-white-rgb), 0.3);
}
#chart .chart_container .com_chart .chart_btn_list {
  gap: 30px;
}
#chart .chart_container .com_chart .chart_btn_list-item {
  width: 480px;
}
#chart .chart_container .com_chart .chart_btn_list-item .chart_answer-btn {
  height: 90px;
}
#chart .chart_container .com_chart .chart_btn_list-item .chart_answer-btn:hover {
  opacity: 1;
  transform: scale(0.95);
  background: var(--accent-color-light);
  color: var(--color-white);
}
#chart .chart_container .chart_back-btn {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 40px auto 0;
  border-bottom: 1px solid;
}
#chart .chart_container .chart_back-btn::before {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  background: var(--color-white);
  border-radius: 50%;
  inset: 0 auto 0 -45px;
  transform: rotate(180deg);
}
#chart .chart_container .chart_back-btn:hover::before {
  left: -55px;
}
#chart .result_chart {
  display: none;
}
#chart .result_chart .result_title {
  text-align: center;
  padding: 20px;
  font-size: var(--font-size-35);
  background: url(../img/common/com-frame_deco.png) right top no-repeat, var(--primary-color);
}
#chart .result_chart .result_title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 13px 0px 13px;
  border-color: var(--primary-color) transparent transparent transparent;
  inset: auto 0 -10px;
  margin: 0 auto;
}
#chart .result_chart .result_title-icon {
  width: 170px;
  height: 95px;
  padding: 15px 0 0;
  inset: -23px auto auto 15px;
  font-size: var(--font-size-30);
  background: url(../img/top/chart-result-ttl_bg.png) center/100% no-repeat;
}
#chart .result_chart .result_container {
  padding: 35px 40px;
}
#chart .result_chart .result_container .result_txtbx {
  width: 487px;
}
#chart .result_chart .result_container .result__content-item {
  border-bottom: 1px solid var(--primary-color);
  padding: 15px 0;
}
#chart .result_chart .result_container .result__content-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#chart .result_chart .result_container .result__content-item:first-child {
  padding-top: 0;
}
#chart .result_chart .result_container .result__content-item dt {
  font-size: var(--font-size-22);
  margin-bottom: 5px;
  padding-left: 30px;
}
#chart .result_chart .result_container .result__content-item dt::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(../img/common/kirakira.svg) center/22px no-repeat, var(--primary-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
#chart .result_chart .result_container .restart_btn::before {
  background: var(--primary-color);
  color: var(--color-white);
}
#chart .result_chart .result_container .restart_btn:hover {
  cursor: pointer;
}
#chart .result_chart .result_container .chart__button-list {
  gap: 30px;
  margin-top: 35px;
}
#chart .result_chart .result_container .chart__button-list .chart__button-item {
  width: 480px;
  font-size: var(--font-size-18);
  line-height: 1.3888888889;
}
#chart .result_chart .result_container .chart__button-list .chart__button-item.line-btn .chart__button-link::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  inset: 0 auto 0 40px;
  margin: auto 0;
  z-index: 1;
  background: url(../img/common/sns/LINE_logo.svg) center/100% no-repeat;
}
#chart .result_chart .result_container .chart__button-list .chart__button-link {
  min-height: 76px;
}

/*
# top-service
------------------------*/
.top-service {
  padding: 120px 0;
}
.top-service .service__inbox {
  width: 1140px;
  margin: 0 auto;
}
.top-service .service__title {
  width: 429px;
  margin: 0 auto 25px;
  text-align: center;
  background: url(../img/top/service-ttl-l_frame.png) left center no-repeat, url(../img/top/service-ttl-r_frame.png) right center no-repeat;
  font-size: var(--font-size-40);
  letter-spacing: 0.12em;
  padding: 15px 0 35px;
}
.top-service .service__text {
  font-size: var(--font-size-17);
  margin-bottom: 45px;
}
.top-service .service__contents {
  width: 934px;
  margin: 0 auto;
}
.top-service .service__contents-title {
  text-align: center;
}
.top-service .service__contents-list {
  gap: 17px;
}
.top-service .service__contents-item {
  width: 300px;
  height: 122px;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: var(--font-size-24);
  line-height: 1.3333333333;
}
.top-service .service__button {
  width: 405px;
  margin: 60px auto 0;
  letter-spacing: 0.2em;
}
.top-service .service__guide {
  padding: 60px 64px;
  margin-top: 100px;
}
.top-service .service__guide-title {
  margin-bottom: 42px;
  font-size: var(--font-size-44);
}
.top-service .service__list {
  gap: 88px;
}
.top-service .service__item {
  width: 462px;
}
.top-service .service__item-link {
  height: 120px;
  color: var(--color-white);
  font-size: var(--font-size-26);
  background-image: url(../img/top/guide-button_bg.png);
  background-repeat: no-repeat;
  background-position: center left;
}
.top-service .service__item-link::before {
  right: 5%;
  font-weight: var(--font-weight-light);
}
.top-service .service__item-link:hover {
  opacity: 0.9;
}
.top-service .service__item-link:hover::before {
  right: 3%;
}

/*
# top-case
------------------------*/
.top-case {
  padding: 110px 0;
  background: url(../img/top/case_bg.png) left calc(50% - 486px) center no-repeat, url(../img/common/com-ptrn_bg.png), var(--primary-color);
}
.top-case .case__title {
  filter: brightness(5.5);
  text-align: left;
  font-size: var(--font-size-44);
}
.top-case .case__content {
  width: 530px;
  margin-left: auto;
}
.top-case .case__text {
  line-height: 1.9444444444;
  font-size: var(--font-size-18);
}

/*
# top-line
------------------------*/
.top-line {
  padding: 110px 0 120px;
  background: url(../img/top/line-rt_deco.png) right top/23.9062% no-repeat, url(../img/top/line-lb_deco.png) left bottom/29.1145% no-repeat, var(--accent-color-extralight);
}
.top-line .line__text {
  margin-bottom: 35px;
}
.top-line .line__movie-wrap {
  width: 800px;
  margin: 0 auto;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 115px 0;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__title {
  text-align: left;
  margin-bottom: 40px;
  font-size: var(--font-size-44);
}
#top-news .news__post {
  width: 320px;
}
#top-news .news__post-link {
  padding: 25px 0;
  row-gap: 10px;
}
#top-news .news__post-link:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 61px;
  inset: -10px auto auto -10px;
  transform: scale(-1, 1);
  background: url(../img/common/com-frame_deco.png) center/100% no-repeat;
  z-index: 2;
}
#top-news .news__post-link:hover {
  opacity: 1;
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-link:hover .news__post-thumb::before {
  opacity: 1;
}
#top-news .news__post-thumb {
  width: 100%;
  height: 212px;
  margin-bottom: 10px;
}
#top-news .news__post-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-color);
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}
#top-news .news__post:first-child .news__post-link {
  padding-top: 0;
}
#top-news .news__post-date {
  font-size: var(--font-size-14);
  text-align: right;
}
#top-news .news__post-tags {
  gap: 7px 30px;
  margin-bottom: 3px;
}
#top-news .news__post-tags .news__post-tag {
  font-size: var(--font-size-13);
}
#top-news .news__post-tags .news__post-tag::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--primary-color);
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
#top-news .news__post-tags .news__post-tag:last-child::after {
  background: none;
}
#top-news .news__post-title {
  font-size: var(--font-size-15);
  line-height: 1.3333333333;
}
#top-news .news__button {
  position: absolute;
  inset: 45px 0 auto auto;
  width: 256px;
}

/*==========================================
about
===========================================*/
/*
# about-greeting
------------------------*/
.about-greeting {
  padding: 75px 0 150px;
  background: url(../img/about/greeting_bg.jpg) center/cover no-repeat;
}
.about-greeting .greeting__title {
  margin-bottom: 70px;
}
.about-greeting .greeting__inner {
  position: relative;
}
.about-greeting .greeting__img {
  position: absolute;
  inset: auto auto 0 0;
}
.about-greeting .greeting__img .greeting__name {
  text-align: center;
  font-size: var(--font-size-24);
  padding: 10px;
  letter-spacing: 0.12em;
}
.about-greeting .greeting__content {
  width: 782px;
  margin-left: auto;
  padding: 45px 40px 50px 75px;
  font-size: var(--font-size-17);
}
.about-greeting .greeting__content .greeting__text {
  line-height: 1.7647058824;
  letter-spacing: 0.1em;
}
.about-greeting .greeting__movie-wrap {
  text-align: center;
}
.about-greeting .greeting__movie-wrap .greeting__movie {
  width: 800px;
  margin: 75px auto 0;
  height: 455px;
}

/*
# about-theory
------------------------*/
.about-theory {
  padding: 105px 0 110px;
  border-top: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  background: url(../img/about/theory_bg.jpg) bottom center/100% no-repeat, var(--accent-color-extralight);
}
.about-theory .theory__title {
  font-size: var(--font-size-35);
}
.about-theory .theory__title::first-line {
  font-size: var(--font-size-40);
  color: var(--body-font-color);
}
.about-theory .theory__content {
  background-color: rgba(var(--color-white-rgb), 0.9);
  padding: 45px 50px;
}
.about-theory .theory__subtitle {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  font-size: var(--font-size-30);
  background: url(../img/about/com-arr_primary.png) bottom left 11px no-repeat;
}
.about-theory .theory__subtitle::before, .about-theory .theory__subtitle::after {
  background-color: var(--primary-color);
  bottom: 11px;
}

/*
# about-kodawari
------------------------*/
.about-kodawari .kodawari__part {
  margin-bottom: 35px;
  padding: 50px 45px 60px;
}
.about-kodawari .kodawari__part:last-child {
  margin-bottom: 0;
}
.about-kodawari .kodawari__part-title {
  font-size: var(--font-size-30);
  margin-bottom: 20px;
  padding-top: 25px;
}
.about-kodawari .kodawari__part-title::before {
  font-size: var(--font-size-20);
  position: absolute;
  inset: 0 auto auto 22px;
}
.about-kodawari .kodawari__part-title span {
  padding-bottom: 15px;
  background-position: left 8px bottom 11px;
}
.about-kodawari .kodawari__part-title span::before, .about-kodawari .kodawari__part-title span::after {
  bottom: 11px;
}
.about-kodawari .kodawari__part-content {
  width: 515px;
  min-height: 432px;
}

/*
# about-info
------------------------*/
.about-info .info__title {
  text-align: left;
  margin-bottom: 40px;
}
.about-info .info__table tr {
  border-bottom: 1px solid var(--color-white);
}
.about-info .info__table th {
  color: var(--color-white);
}

/*==========================================
service
===========================================*/
.com-page__nav {
  gap: 25px 57px;
  margin-bottom: 40px;
}
.com-page__nav .page__nav-item {
  width: 404px;
}
.com-page__nav .page__nav-button::before {
  transform: rotate(90deg);
}

/*
# service-contents
------------------------*/
.service-contents .contents__part {
  margin-bottom: 30px;
  padding: 25px 35px 35px;
}
.service-contents .contents__part:last-child {
  margin-bottom: 0;
}
.service-contents .contents__part-title {
  font-size: var(--font-size-30);
}
.service-contents .contents__part-text {
  width: 770px;
}
.service-contents .contents__part .contents__main {
  margin-top: 65px;
}
.service-contents .contents__part .contents__main-title {
  font-size: var(--font-size-26);
}
.service-contents .contents__part .contents__main-list {
  gap: 25px 31.5px;
}
.service-contents .contents__part .contents__main-item {
  width: 315px;
}
.service-contents .contents__part .contents__main-icon {
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-contents .contents__part .contents__main-text {
  font-size: var(--font-size-20);
  margin-top: 20px;
}

/*
# service-step
------------------------*/
.service-step .step__item {
  padding: 55px 60px;
  margin-bottom: 55px;
}
.service-step .step__item:last-child {
  margin-bottom: 0;
}
.service-step .step__item:last-child::before {
  content: "";
}
.service-step .step__item::before {
  inset: auto 0 -45px;
  font-size: var(--font-size-30);
  color: var(--primary-color);
}
.service-step .step__item-icon {
  width: 249px;
  text-align: center;
}
.service-step .step__item-content {
  width: 685px;
}
.service-step .step__item-number {
  font-size: var(--font-size-20);
}
.service-step .step__item-title {
  font-size: var(--font-size-30);
  background: url(../img/about/com-arr_primary.png) bottom left 3px no-repeat;
  padding-bottom: 15px;
  margin-bottom: 25px;
  line-height: 1.3333333333;
  letter-spacing: 0.12em;
}
.service-step .step__item-title::before, .service-step .step__item-title::after {
  bottom: 3px;
  background-color: var(--primary-color);
}
.service-step .step__item-text .underline {
  color: #527fdb;
}
.service-step .step__item-text small {
  font-size: var(--font-size-13);
  margin-top: 15px;
}

/*==========================================
guide
===========================================*/
/*
# guide-faq
------------------------*/
.guide-faq .faq__item {
  margin-bottom: 35px;
  padding: 25px 40px 40px;
}
.guide-faq .faq__item:last-child {
  margin-bottom: 0;
}
.guide-faq .faq__item-title, .guide-faq .faq__item-content {
  padding-left: 45px;
}
.guide-faq .faq__item-title::before, .guide-faq .faq__item-content::before {
  position: absolute;
  font-size: var(--font-size-35);
  color: var(--primary-color);
  font-family: var(--sub-font-family);
  font-weight: var(--font-weight-medium);
  inset: 0 auto auto 0;
  line-height: 0.5;
}
.guide-faq .faq__item-title {
  font-size: var(--font-size-18);
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.guide-faq .faq__item-title::before {
  content: "Q";
}
.guide-faq .faq__item-content::before {
  content: "A";
}

/*
# guide-voice
------------------------*/
.guide-voice .voice__item {
  padding: 40px 45px;
  margin-bottom: 40px;
}
.guide-voice .voice__item:last-child {
  margin-bottom: 0;
}
.guide-voice .voice__item-prof {
  text-align: right;
  font-size: var(--font-size-20);
  letter-spacing: 0.12em;
  margin-top: 10px;
}

/*==========================================
case
===========================================*/
/*
# case-intro
------------------------*/
.case-intro .intro__content {
  width: 812px;
  margin: 0 auto;
  padding: 35px;
  text-align: center;
}

/*
# case-consult
------------------------*/
.case-consult .consult__card {
  margin-bottom: 35px;
  padding: 40px 45px;
  position: relative;
}
.case-consult .consult__card:last-child {
  margin-bottom: 0;
}
.case-consult .consult__card-img {
  position: absolute;
  inset: 40px auto auto 45px;
}
.case-consult .consult__card-title {
  font-size: var(--font-size-30);
  background: url(../img/about/com-arr_primary.png) bottom left no-repeat;
  padding-bottom: 15px;
  margin-bottom: 25px;
  line-height: 1.3333333333;
  letter-spacing: 0.12em;
}
.case-consult .consult__card-title::before, .case-consult .consult__card-title::after {
  bottom: 3px;
  background-color: var(--primary-color);
}
.case-consult .consult__card-content {
  width: 510px;
  min-height: 345px;
  margin-left: auto;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 15px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/