@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  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: 30px 20px;
}
.c-contact__list .com-tel {
  line-height: 1.3;
  text-align: center;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-30);
  letter-spacing: 0.04em;
  color: var(--primary-color);
  padding-left: 20px;
  background: url(../../img/common/tel_ic.png) left bottom 8px no-repeat;
}
.c-contact__list .com-tel .tel__num small {
  font-size: var(--font-size-16);
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-mail .mail__button {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: url(../../img/common/mail_ic.png) left 25px center no-repeat, var(--color-white);
  color: var(--primary-color);
  font-size: var(--font-size-15);
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 0 5px 0 30px;
}
.c-contact__list .com-sns .sns__list {
  gap: 15px 30px;
}

/*
# contact__section
------------------------*/
.c-contact__section {
  padding: 90px 0 100px;
  background: url(../../img/components/contact/contact_bg.jpg) center/cover no-repeat;
}
.c-contact__section .contact__title {
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.c-contact__section .contact__title .title-en {
  margin-bottom: 25px;
}
.c-contact__section .contact__title .title-ja {
  text-shadow: none;
  color: var(--color-white);
}
.c-contact__section .contact__title .title-ja::before, .c-contact__section .contact__title .title-ja::after {
  background-image: url(../../img/components/contact/contact-ttl_deco.png);
}
.c-contact__section .c-contact__contact-list {
  background: rgba(var(--color-white-rgb), 0.8);
  justify-content: center;
  padding: 35px 0;
}

.c-address {
  font-size: var(--font-size-14);
  color: var(--color-gray-dark);
}
.c-address .address__locate {
  margin-bottom: 35px;
}
.c-address .address__worktime .worktime__item {
  display: flex;
  align-items: center;
}
.c-address .address__worktime .worktime__item dt {
  padding-right: 7px;
  margin-right: 7px;
  position: relative;
}
.c-address .address__worktime .worktime__item dt::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  background: var(--color-gray-dark);
  inset: 0 0 0 auto;
  margin: auto 0;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: block;
  padding: 20px 30px;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  vertical-align: top;
  margin-bottom: 10px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: inline-block;
  line-height: 1.3;
  margin-left: 10px;
  vertical-align: top;
}

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

.com-text {
  line-height: 2.2;
  letter-spacing: var(--body-letter-spacing);
}

#g-map h4 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-button {
  padding: 2px 0;
  display: block;
  color: var(--color-white);
  text-align: center;
  font-weight: var(--font-weight-black);
  background: var(--primary-color);
  position: relative;
}
.com-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0px 9px 7px;
  border-color: transparent transparent transparent var(--color-white);
  inset: 0 20px 0 auto;
  margin: auto 0;
  z-index: 1;
}
.com-button:hover::after {
  right: 10px;
}
.com-button span {
  display: block;
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 12px 0;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  line-height: 1.1;
  margin-bottom: 55px;
}
.section-title .title-en {
  display: block;
}
.section-title .title-ja {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.22em;
  position: relative;
  display: inline-block;
  line-height: 1.6;
  text-shadow: 5px 5px 10px var(--color-white), -5px 5px 10px var(--color-white), 5px -5px 10px var(--color-white), -5px -5px 10px var(--color-white);
}
.section-title .title-ja::before, .section-title .title-ja::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 52px;
  background: url(../../img/common/section-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.section-title .title-ja::before {
  left: -105px;
}
.section-title .title-ja::after {
  right: -105px;
  transform: scale(-1, 1);
}
.section-title .title-ja em {
  color: var(--primary-color);
  font-size: var(--font-size-60);
}

.headline-title {
  color: var(--primary-color);
  font-size: var(--font-size-24);
  border-bottom: 1px solid;
  font-weight: var(--font-weight-black);
  letter-spacing: var(--body-letter-spacing);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.sub-title {
  text-align: center;
  font-size: var(--font-size-32);
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.16em;
  background: rgba(var(--primary-color-rgb), 0.5);
  padding: 15px;
  text-shadow: 5px 5px 10px var(--primary-color), -5px 5px 10px var(--primary-color), 5px -5px 10px var(--primary-color), -5px -5px 10px var(--primary-color);
  margin-bottom: 40px;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  z-index: 1001;
  background: rgba(var(--color-white-rgb), 0.4);
  padding: 15px 1.8229% 25px;
}
#header .header__right {
  width: -moz-fit-content;
  width: fit-content;
}

/*==========================================
nav
===========================================*/
#nav {
  border-top: 1px solid #fac2c9;
  border-bottom: 1px solid #fac2c9;
  padding: 15px 10px;
  margin-top: 20px;
}
#nav .nav__list {
  gap: 10px 25px;
  font-size: var(--font-size-14);
}
#nav .nav__list .nav__item-link.current {
  color: var(--primary-color);
}
#nav .nav__list .nav__item-link:hover {
  color: var(--primary-color);
}

/*==========================================
mv
===========================================*/
.main__visual {
  position: relative;
  background: url(../../img/common/mv/mv-lt_ill.png) left 15px top 30px/26.14583% no-repeat, url(../../img/common/mv/mv-base_bg.jpg) center/cover no-repeat;
  padding: 85px 0 15px 5.2083%;
}
.main__visual::before, .main__visual::after {
  position: absolute;
  content: "";
}
.main__visual::before {
  width: 18.5416%;
  height: clamp(361px, 28.25vw, 542px);
  inset: auto auto 15px 0;
  background: url(../../img/common/mv/mv-flower_ill.png) center bottom/100% no-repeat;
  z-index: 1;
}
.main__visual::after {
  width: 21.7708%;
  height: 444px;
  inset: 21.5749% 1.302% auto auto;
  background: url(../../img/common/mv/mv-wing_ill.png) center/100% no-repeat;
}
.main__visual .top-main__visual {
  height: clamp(600px, 43.0725vw, 827px);
  background: url(../../img/top/mv/mv-cnt_ill.png) right 29.7582% top 65px/17.802% no-repeat;
}
.main__visual .top-main__visual .mv__catch {
  position: absolute;
  inset: 42.2049% 6.0439% auto auto;
  width: 43.7582%;
  text-align: right;
  z-index: 1;
}
.main__visual .top-main__visual .mv__official-button {
  width: 39.0109%;
  position: absolute;
  inset: auto 3.8461% 4.3149% auto;
}
.main__visual .top-main__visual .mv__img {
  width: 64.6153%;
  height: 100%;
  background: url(../../img/top/mv/mv_bg.png) center/100% no-repeat;
}

/*==========================================
footer
===========================================*/
#footer {
  padding-bottom: 90px;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__inner {
  min-height: 350px;
  padding: 95px 0 60px;
  border-bottom: 1px solid var(--accent-color);
}
#footer .footer__left {
  width: 485px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 45px;
}
#footer .footer__right {
  width: 530px;
}
#footer .footer__right .footer__contact-list {
  justify-content: flex-end;
}
#footer .footer__nav {
  padding: 20px 0;
}
#footer .footer__nav-list {
  gap: 10px 25px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  position: absolute;
  inset: auto 0 125px auto;
  color: var(--primary-color);
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--primary-color);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower__sv {
  padding-right: 4.6875%;
  position: relative;
  height: clamp(400px, 31.1975vw, 599px);
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.lower__sv .sv__img {
  width: 49.7252%;
  height: 100%;
  position: relative;
}
.lower__sv .sv__catch {
  width: 46.3186%;
  margin: auto 0;
  background: linear-gradient(90deg, rgba(30, 87, 153, 0) 0%, rgba(255, 211, 226, 0.6) 15%, rgba(190, 238, 255, 0.6) 85%, rgba(125, 185, 232, 0) 100%);
  padding: 15px;
  font-size: var(--font-size-46);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.22em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lower__sv .sv__catch span {
  filter: drop-shadow(1px 1px 15px #fff) drop-shadow(1px 1px 10px #fff) drop-shadow(1px 1px 8px #fff) drop-shadow(1px 1px 10px #fff) drop-shadow(1px 1px 15px #fff);
  display: block;
  background: linear-gradient(270deg, #9fd0e2 25%, #f090b1 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#make-therapy-sv .sv__img {
  background: url(../../img/sv/make-therapy-sv_bg.png) center/100% no-repeat;
}

#shirodhara-sv .sv__img {
  background: url(../../img/sv/shirodhara-sv_bg.png) center/100% no-repeat;
}

#delivery-make-sv .sv__img {
  background: url(../../img/sv/delivery-make-sv_bg.png) center/100% no-repeat;
}

#other-sv .sv__img {
  background: url(../../img/sv/other-sv_bg.png) center/100% no-repeat;
}

#site-sv .sv__img {
  background: url(../../img/sv/site-sv_bg.png) center/100% no-repeat;
}

#news-sv,
#contact-sv,
#complete-sv,
#privacy-sv,
#e404-sv {
  justify-content: center;
}
#news-sv .sv__catch,
#contact-sv .sv__catch,
#complete-sv .sv__catch,
#privacy-sv .sv__catch,
#e404-sv .sv__catch {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 120px 0 150px;
  background: url(../../img/top/about_bg.jpg) center/cover no-repeat;
}
#top-about .inbox {
  width: clamp(1200px, 66.666%, 1280px);
}
#top-about .about__content {
  background: linear-gradient(90deg, rgba(30, 87, 153, 0) 0%, rgba(255, 211, 226, 0.6) 15%, rgba(190, 238, 255, 0.6) 85%, rgba(125, 185, 232, 0) 100%);
  padding: 45px 0 50px;
  text-align: center;
  position: relative;
  margin-bottom: 65px;
}
#top-about .about__content::before, #top-about .about__content::after {
  position: absolute;
  content: "";
}
#top-about .about__content::before {
  width: 253px;
  height: 478px;
  background: url(../../img/top/about-cont-l_ill.png) center/100% no-repeat;
  inset: auto auto 70px -85px;
}
#top-about .about__content::after {
  width: 321px;
  height: 533px;
  background: url(../../img/top/about-cont-r_ill.png) center/100% no-repeat;
  inset: auto -110px -90px auto;
}
#top-about .about__content .about__text {
  font-size: var(--font-size-20);
  text-shadow: 5px 5px 10px var(--color-white), -5px 5px 10px var(--color-white), 5px -5px 10px var(--color-white), -5px -5px 10px var(--color-white);
}
#top-about .about__content .about__text strong {
  color: var(--primary-color);
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
}
#top-about .about__banner {
  display: block;
  width: 468px;
  margin: 0 auto;
}

/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 130px 0 150px;
  background: url(../../img/top/greeting_bg.jpg) center/cover no-repeat;
}
#top-greeting .greeting__subtitle {
  font-size: var(--font-size-28);
  margin-bottom: 30px;
}
#top-greeting .greeting__content {
  width: 665px;
}
#top-greeting .greeting__content .name {
  color: var(--primary-color);
  font-size: var(--font-size-18);
  margin-top: 55px;
}
#top-greeting .greeting__content .name span {
  position: relative;
  padding: 35px 60px 0 0;
  background: url(../../img/top/greeting-name_deco.png) right top no-repeat;
}
#top-greeting .greeting__qualification {
  margin-top: 60px;
  background: rgba(var(--primary-color-rgb), 0.8);
  border-radius: 26px;
  padding: 40px 60px 50px;
  position: relative;
  text-align: center;
  color: var(--color-white);
}
#top-greeting .greeting__qualification::before {
  position: absolute;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  inset: 0;
  margin: auto;
  border: 1px solid var(--accent-color);
  border-radius: inherit;
}
#top-greeting .greeting__qualification .qualification__title {
  font-size: var(--font-size-30);
  margin-bottom: 15px;
}
#top-greeting .greeting__qualification .qualification__title span {
  position: relative;
  display: inline-block;
  padding: 0 115px;
}
#top-greeting .greeting__qualification .qualification__title span::before, #top-greeting .greeting__qualification .qualification__title span::after {
  position: absolute;
  content: "";
  width: 94px;
  height: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url(../../img/top/greeting-qualification-ttl_deco.png) center/100% no-repeat;
}
#top-greeting .greeting__qualification .qualification__title span::before {
  left: 0;
}
#top-greeting .greeting__qualification .qualification__title span::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-greeting .greeting__qualification .qualification__item {
  border-bottom: 1px solid var(--accent-color);
  padding: 15px 0;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}
#top-greeting .greeting__qualification .qualification__item:last-child {
  border-bottom: none;
}

/*
# top-check
------------------------*/
#top-check .check__title .title-ja::before, #top-check .check__title .title-ja::after {
  top: auto;
}
#top-check .check__page-nav {
  gap: 33.333px;
  margin-bottom: 55px;
}
#top-check .check__page-nav .check__nav-item {
  width: 245px;
}
#top-check .check__page-nav .check__nav-item span {
  padding: 10px 0;
}
#top-check .check__section {
  padding: 145px 0 150px;
}
#top-check .check__section:last-child {
  margin-bottom: 0;
}
#top-check .check__section:nth-of-type(even) {
  background: #fff9fa;
}
#top-check .check__section .check__subtitle {
  font-size: var(--font-size-30);
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: var(--font-weight-bold);
}
#top-check .check__section .check__subtitle span {
  display: inline-block;
  position: relative;
  padding: 0 235px;
}
#top-check .check__section .check__subtitle span::before, #top-check .check__section .check__subtitle span::after {
  position: absolute;
  content: "";
  width: 197px;
  height: 13px;
  background: url(../../img/top/check-subttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-check .check__section .check__subtitle span::before {
  left: 0;
}
#top-check .check__section .check__subtitle span::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-check .check__section .check__worries {
  background: var(--primary-color-light);
  border-radius: 26px;
  padding: 45px 75px 50px 125px;
  position: relative;
  margin-bottom: 110px;
}
#top-check .check__section .check__worries::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 324px 0px 324px;
  border-color: var(--color-pink) transparent transparent transparent;
  inset: auto 0 -64px;
  margin: 0 auto;
}
#top-check .check__section .check__worries .worries__title {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--body-letter-spacing);
  text-align: center;
  background: url(../../img/top/check-worry-ttl_deco.png) bottom center no-repeat;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
#top-check .check__section .check__worries .worries__title span {
  background: var(--color-white);
  color: var(--primary-color);
  font-size: var(--font-size-40);
  display: inline-block;
  padding: 0 5px;
  margin: 0 10px;
  line-height: 1.5;
}
#top-check .check__section .check__worries .worries__list::before {
  inset: auto auto -137px -180px;
}
#top-check .check__section .check__worries .worries__list::after {
  inset: auto -140px 95px auto;
}
#top-check .check__section .check__worries .worries__list .worries__item {
  width: 760px;
  position: relative;
  margin-bottom: 40px;
}
#top-check .check__section .check__worries .worries__list .worries__item:last-child {
  margin-bottom: 0;
}
#top-check .check__section .check__worries .worries__list .worries__item:nth-child(even) {
  margin-left: auto;
}
#top-check .check__section .check__worries .worries__list .worries__item::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 -60px;
  margin: auto 0;
  width: 120px;
  height: 120px;
}
#top-check .check__section .check__worries .worries__text {
  text-align: right;
  color: var(--primary-color);
  font-size: var(--font-size-20);
  margin-top: 15px;
}
#top-check .check__section .check__solution {
  margin-bottom: 55px;
}
#top-check .check__section .check__solution .solution__title {
  text-align: center;
  font-size: var(--font-size-40);
  letter-spacing: var(--body-letter-spacing);
  font-weight: var(--font-weight-black);
  color: var(--primary-color);
  margin-bottom: 60px;
}
#top-check .check__section .check__solution .solution__title span {
  display: inline-block;
  position: relative;
  padding: 0 45px;
}
#top-check .check__section .check__solution .solution__title span::before, #top-check .check__section .check__solution .solution__title span::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 42px;
  background: url(../../img/top/check-solution-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-check .check__section .check__solution .solution__title span::before {
  left: 0;
}
#top-check .check__section .check__solution .solution__title span::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-check .check__section .check__solution .solution__img img {
  border-radius: 18px;
}
#top-check .check__section .check__solution .solution__content {
  width: 555px;
}
#top-check .check__section .c-check__contact {
  background: url(../../img/top/check-contact-mail_bg.png) left 65px bottom -10px no-repeat, linear-gradient(to right, rgb(255, 211, 226) 0%, rgb(190, 238, 255) 100%);
  border-radius: 17px;
  padding: 35px 165px;
  position: relative;
  z-index: 1;
}
#top-check .check__section .c-check__contact::before {
  position: absolute;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 17px;
  inset: 0;
  margin: auto;
  border: 1px solid var(--primary-color);
  z-index: -1;
}
#top-check .check__section .c-check__contact .check__contact-title {
  text-align: center;
  font-size: var(--font-size-34);
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--body-letter-spacing);
  margin-bottom: 25px;
}
#top-check .check__section .c-check__contact .check__contact-title span {
  display: inline-block;
  padding: 0 145px;
  position: relative;
}
#top-check .check__section .c-check__contact .check__contact-title span::before, #top-check .check__section .c-check__contact .check__contact-title span::after {
  position: absolute;
  content: "";
  width: 122px;
  height: 28px;
  background: url(../../img/top/check-contact-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-check .check__section .c-check__contact .check__contact-title span::before {
  left: 0;
}
#top-check .check__section .c-check__contact .check__contact-title span::after {
  right: 0;
  transform: scale(-1, 1);
}
#top-check .check__section .check__contact-list {
  justify-content: center;
}

#check__make-therapy .worries__list .worries__item:nth-child(1)::before {
  background: url(../../img/top/check-make-therapy-worry-01_ic.png) center/100% no-repeat;
}
#check__make-therapy .worries__list .worries__item:nth-child(2)::before {
  background: url(../../img/top/check-make-therapy-worry-02_ic.png) center/100% no-repeat;
}
#check__make-therapy .worries__list .worries__item:nth-child(3)::before {
  background: url(../../img/top/check-make-therapy-worry-03_ic.png) center/100% no-repeat;
}
#check__make-therapy .worries__list .worries__item:nth-child(4)::before {
  background: url(../../img/top/check-make-therapy-worry-04_ic.png) center/100% no-repeat;
}

#check__shirodhara .worries__list .worries__item:nth-child(1)::before {
  background: url(../../img/top/check-shirodhara-worry-01_ic.png) center/100% no-repeat;
}
#check__shirodhara .worries__list .worries__item:nth-child(2)::before {
  background: url(../../img/top/check-shirodhara-worry-02_ic.png) center/100% no-repeat;
}
#check__shirodhara .worries__list .worries__item:nth-child(3)::before {
  background: url(../../img/top/check-shirodhara-worry-03_ic.png) center/100% no-repeat;
}
#check__shirodhara .worries__list .worries__item:nth-child(4)::before {
  background: url(../../img/top/check-shirodhara-worry-04_ic.png) center/100% no-repeat;
}

#check__delivery-make .worries__list .worries__item:nth-child(1)::before {
  background: url(../../img/top/check-delivery-worry-01_ic.png) center/100% no-repeat;
}
#check__delivery-make .worries__list .worries__item:nth-child(2)::before {
  background: url(../../img/top/check-delivery-worry-02_ic.png) center/100% no-repeat;
}
#check__delivery-make .worries__list .worries__item:nth-child(3)::before {
  background: url(../../img/top/check-delivery-worry-03_ic.png) center/100% no-repeat;
}
#check__delivery-make .worries__list .worries__item:nth-child(4)::before {
  background: url(../../img/top/check-delivery-worry-04_ic.png) center/100% no-repeat;
}

.worries__list--style {
  position: relative;
}
.worries__list--style::before, .worries__list--style::after {
  position: absolute;
  content: "";
}
.worries__list--style::before {
  width: 191px;
  height: 217px;
  background: url(../../img/common/com-worry-l_ill.png) center/100% no-repeat;
  inset: auto auto -72px -105px;
}
.worries__list--style::after {
  width: 138px;
  height: 334px;
  background: url(../../img/common/com-worry-r_ill.png) center/100% no-repeat;
  inset: auto -105px 135px auto;
}
.worries__list--style .worries__item {
  text-align: center;
  background: var(--color-pink-light);
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-black);
  margin-bottom: 20px;
  padding: 20px 15px;
  border-radius: 5px;
}
.worries__list--style .worries__item:last-child {
  margin-bottom: 0;
}
.worries__list--style .worries__item span {
  color: var(--primary-color);
}

/*
# top-info
------------------------*/
#top-info {
  padding: 130px 0 145px;
  background: url(../../img/top/info_bg.jpg) center/cover no-repeat;
}
#top-info .info__table {
  background: var(--color-white);
  padding: 15px 50px;
}

/*
# top-sns
------------------------*/
#top-sns {
  padding: 150px 0;
}
#top-sns .sns__inner {
  background: url(../../img/top/sns_bg.jpg) center/cover no-repeat;
  padding: 30px 75px 40px 45px;
  border-radius: 26px;
}
#top-sns .sns__inner .sns__list {
  width: 360px;
}
#top-sns .sns__inner .sns__list .sns__item {
  margin-bottom: 25px;
}
#top-sns .sns__inner .sns__list .sns__item:last-child {
  margin-bottom: 0;
}
#top-sns .sns__inner .sns__list .sns__item .sns__link {
  background: var(--accent-color);
}
#top-sns .sns__inner .sns__list .sns__item .sns__link span {
  border-color: var(--color-white);
}
#top-sns .sns__inner .sns__list .sns__item .sns__link--instagram span {
  background: url(../../img/common/sns/Instagram_Glyph_White.svg) left 75px center/30px no-repeat;
}
#top-sns .sns__inner .sns__list .sns__item .sns__link--facebook span {
  background: url(../../img/common/sns/Facebook_Logo_Secondary.svg) left 75px center/30px no-repeat;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 95px 0 105px;
  background: url(../../img/top/news_bg.jpg) center/cover no-repeat;
}
#top-news .news__title {
  width: 347px;
  height: 348px;
  padding: 85px 0 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  background: url(../../img/top/news-ttl_bg.png) center/100% no-repeat;
}
#top-news .news__title .title-ja {
  padding: 0;
}
#top-news .news__title .title-ja::before, #top-news .news__title .title-ja::after {
  background: none;
}
#top-news .news__post-list {
  width: 695px;
}
#top-news .news__post-list .news__post {
  margin-bottom: 25px;
}
#top-news .news__post-list .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  background: var(--color-white);
  padding: 20px 35px;
  box-shadow: rgba(var(--color-gray-dark-rgb), 0.15) 0px 1px 3px, rgba(var(--color-gray-dark-rgb), 0.24) 0px 1px 2px;
  border-radius: 10px;
}
#top-news .news__post-list .news__post-link:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(5px);
  background: var(--primary-color-light);
}
#top-news .news__post-list .news__post-date, #top-news .news__post-list .news__post-tags {
  color: var(--primary-color);
}
#top-news .news__post-list .news__post-date {
  width: 120px;
}
#top-news .news__post-list .news__post-tags {
  width: calc(100% - 120px);
}
#top-news .news__post-list .news__post-tags li {
  padding: 0 7px;
  position: relative;
}
#top-news .news__post-list .news__post-tags li::before, #top-news .news__post-list .news__post-tags li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-news .news__post-list .news__post-tags li::before {
  left: 0;
}
#top-news .news__post-list .news__post-tags li::after {
  right: 0;
}
#top-news .news__post-list .news__post-title {
  width: 100%;
}
#top-news .news__button {
  width: 555px;
  margin: 50px auto 0;
}

/*
# com-about__section
------------------------*/
.com-about__section {
  background: url(../../img/common/about_bg.jpg) center/cover no-repeat;
}
.com-about__section .about__inner {
  background: var(--color-white);
  padding: 55px 55px 55px 60px;
}
.com-about__section .about__inner .about__img img {
  border-radius: 18px;
}
.com-about__section .about__inner .about__content {
  width: 485px;
}

/*
# com-worries__section
------------------------*/
.com-worries__section {
  padding: 150px 0;
}
.com-worries__section .worries__title {
  position: relative;
}
.com-worries__section .worries__title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 10px 0px 10px;
  border-color: #f8bdc5 transparent transparent transparent;
  inset: auto 0 -17.5px;
  margin: 0 auto;
}
.com-worries__section .worries__inner {
  position: relative;
  padding: 50px;
  background: var(--primary-color-light);
  border-radius: 26px;
}
.com-worries__section .worries__inner::before, .com-worries__section .worries__inner::after {
  position: absolute;
  content: "";
}

#make-therapy-worries .worries__inner:before {
  width: 196px;
  height: 223px;
  background: url(../../img/make-therapy/worry-l_ill.png) center/100% no-repeat;
  inset: -221px auto auto 60px;
}
#make-therapy-worries .worries__inner:after {
  width: 223px;
  height: 231px;
  background: url(../../img/make-therapy/worry-r_ill.png) center/100% no-repeat;
  inset: -230px 65px auto auto;
}

/*
# com-numbering__section
------------------------*/
.com-numbering__section {
  padding: 125px 0 145px;
  background: #fff9fa;
}
.com-numbering__section .numbering__list .numbering__item {
  background: var(--color-white);
  box-shadow: rgba(var(--color-gray-dark-rgb), 0.18) 0px 2px 4px;
}
.com-numbering__section .numbering__list .numbering__item-title {
  font-weight: var(--font-weight-black);
  color: var(--primary-color);
  border-bottom: 1px solid;
}
.com-numbering__section .numbering__list .numbering__item-title small {
  font-size: var(--font-size-16);
}
.com-numbering__section .numbering__list .counter-item::before {
  width: 70px;
  height: 70px;
  position: absolute;
  color: var(--color-white);
  background: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
}
.com-numbering__section .numbering__list.column-3 {
  gap: 45px;
}
.com-numbering__section .numbering__list.column-3 .numbering__item {
  width: 330px;
  padding: 80px 10px 45px;
}
.com-numbering__section .numbering__list.column-3 .numbering__item-title {
  font-size: var(--font-size-20);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.com-numbering__section .numbering__list.column-3 .numbering__item-title small {
  font-size: var(--font-size-16);
}
.com-numbering__section .numbering__list.column-3 .counter-item::before {
  inset: 0 auto auto 0;
}
.com-numbering__section .numbering__list.column-1 .numbering__item {
  padding: 30px 30px 50px;
  margin-bottom: 35px;
}
.com-numbering__section .numbering__list.column-1 .numbering__item:last-child {
  margin-bottom: 0;
}
.com-numbering__section .numbering__list.column-1 .numbering__item .flow__item-title {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  padding: 15px 15px 35px 90px;
  margin-bottom: 20px;
}
.com-numbering__section .numbering__list.column-1 .numbering__item .flow__item-title::before {
  inset: 0 auto auto 0;
}
.com-numbering__section .numbering__list.column-1 .numbering__item .flow__item-text {
  margin-bottom: 35px;
}
.com-numbering__section .numbering__list.column-1 .numbering__item .flow__contact-list {
  background: var(--primary-color-light);
  justify-content: center;
  padding: 35px;
}

/*
# .c-price__section
------------------------*/
.c-price__section {
  padding: 135px 0 150px;
  background: url(../../img/components/price/price_bg.jpg) center/cover no-repeat;
}
.c-price__section .price__text {
  margin-bottom: 60px;
  text-align: center;
  line-height: 2.2;
}
.c-price__section .price__list {
  background: var(--color-white);
  padding: 20px 30px;
}
.c-price__section .price__list .price__item {
  padding: 15px 45px;
  border-bottom: 1px solid var(--primary-color);
}
.c-price__section .price__list .price__item:last-child {
  border-bottom: none;
}
.c-price__section .price__list .price__item-title {
  color: var(--primary-color);
  width: 610px;
}
.c-price__section .price__list .price__item-price {
  width: calc(100% - 610px);
  text-align: right;
}

/*
# c-voice__section
------------------------*/
.c-voice__section {
  padding: 135px 0 150px;
}
.c-voice__section .voice__list .voice__item {
  margin-bottom: 45px;
}
.c-voice__section .voice__list .voice__item:last-child {
  margin-bottom: 0;
}
.c-voice__section .voice__list .voice__item-fig {
  width: 230px;
}
.c-voice__section .voice__list .voice__item-caption {
  text-align: center;
  background: var(--color-orange-light);
  border-radius: 15px;
  font-size: var(--font-size-14);
  padding: 2px 10px;
  margin-top: 10px;
}
.c-voice__section .voice__list .voice__item-content {
  width: 800px;
  background: var(--primary-color-light);
  border-radius: 26px;
  padding: 35px 35px 40px 40px;
  position: relative;
}
.c-voice__section .voice__list .voice__item-content::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 27px 16px 0px;
  border-color: transparent var(--primary-color-light) transparent transparent;
  inset: 55px auto auto -26.5px;
}
.c-voice__section .voice__list .voice__item-img {
  width: 300px;
  height: 200px;
  border-radius: 18px;
}
.c-voice__section .voice__list .voice__item:has(.voice__item-img) .voice__item-text {
  width: 390px;
}

/*==========================================
shirodhara
===========================================*/
#shirodhara-worries .worries__inner:before {
  width: 205px;
  height: 224px;
  background: url(../../img/shirodhara/worry-l_ill.png) center/100% no-repeat;
  inset: -224px auto auto 60px;
}
#shirodhara-worries .worries__inner:after {
  width: 246px;
  height: 231px;
  background: url(../../img/shirodhara/worry-r_ill.png) center/100% no-repeat;
  inset: -230px 65px auto auto;
}

/*==========================================
delivery-make
===========================================*/
/*
# delivery-make-scene
------------------------*/
#delivery-make-scene .scene__inner {
  background: var(--primary-color-light);
  border-radius: 26px;
  padding: 45px 105px;
}
#delivery-make-scene .scene__inner .scene__list {
  gap: 40px;
}
#delivery-make-scene .scene__inner .scene__list::before {
  inset: auto auto -140px -171px;
}
#delivery-make-scene .scene__inner .scene__list::after {
  inset: 40px -160px auto auto;
}
#delivery-make-scene .scene__inner .scene__item {
  width: 260px;
}
#delivery-make-scene .scene__inner .scene__item-caption {
  font-size: var(--font-size-20);
  text-align: center;
  font-weight: var(--font-weight-black);
  margin-top: 10px;
}
#delivery-make-scene .scene__inner .scene__text {
  font-size: var(--font-size-20);
  color: var(--primary-color);
  margin-top: 15px;
  text-align: center;
}

/*==========================================
other
===========================================*/
#other-service {
  background: url(../../img/other/other_bg.png) center/cover no-repeat;
}
#other-service .service__leadtext {
  text-align: center;
  line-height: 2.2;
  margin-bottom: 60px;
}
#other-service .service__item {
  background: var(--color-white);
  padding: 55px;
  position: relative;
  margin-bottom: 30px;
  min-height: 400px;
}
#other-service .service__item:last-child {
  margin-bottom: 0;
}
#other-service .service__item-img {
  width: 442px;
  height: 292px;
  border-radius: 18px;
  position: absolute;
  inset: 55px auto auto 55px;
}
#other-service .service__item-content {
  width: 485px;
  margin-left: auto;
}
#other-service .service__item-menu {
  margin-top: 30px;
  background: var(--primary-color-light);
  padding: 10px 25px;
}
#other-service .service__item-menu .menu__item {
  padding: 10px 20px;
  border-bottom: 1px solid var(--primary-color);
}
#other-service .service__item-menu .menu__item:last-child {
  border-bottom: none;
}
#other-service .service__item-menu .menu__item-title {
  width: 255px;
  color: var(--primary-color);
}
#other-service .service__item-menu .menu__item-price {
  width: calc(100% - 255px);
  text-align: right;
}

/*==========================================
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 {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#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フレーム時)
  ===========================================*/