@charset "UTF-8";
/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "avenir-medium";
  src: url("../fonts/AvenirNext/AvenirNext-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "avenir-regular";
  src: url("../fonts/AvenirNext/AvenirNext-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "montserrat-regular";
  src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "cormorant-medium";
  src: url("../fonts/Cormorant/Cormorant-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "cormorant-garamond-regular";
  src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "noto-serif-regular";
  src: url("../fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "noto-sans-regular";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "noto-serif-kr-regular";
  src: url("../fonts/Noto_Serif_KR/NotoSerifKR-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "shadowsintolight-regular";
  src: url("../fonts/ShadowsIntoLight/ShadowsIntoLight-Regular.woff2") format("woff2");
}
/* common */
body {
  background: #f7f3ed;
  color: #44321E;
  font-family: "montserrat-regular", sans-serif;
}

a {
  color: deepskyblue;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
}
a:hover {
  color: #66d9ff;
  text-decoration: none;
}
a:focus {
  outline: none;
}

a:focus,
*:focus {
  outline: none;
}

/* print */
@media print {
  * html body {
    zoom: 0.7;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

body {
  word-break: break-all;
  background-color: #f1eae4 !important;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

.msg {
  font-family: "avenir-medium", sans-serif;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 99;
}
.header .navbar {
  padding: 30px 40px;
  transition: background-color 0.3s ease;
}
.header .navbar.open {
  background-color: #44321E;
}
.header .navbar.open .navbar-brand {
  opacity: 0;
}
.header .navbar .container-fluid {
  padding: 0;
  gap: 80px;
}
.header .navbar .custom-toggler {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.header .navbar .custom-toggler:focus {
  border: 0;
  box-shadow: none;
}
.header .navbar .custom-toggler .toggler-lines {
  position: relative;
  width: 100%;
  height: 18px;
}
.header .navbar .custom-toggler .toggler-lines .line {
  position: absolute;
  width: calc(100% - 4px);
  height: 1px;
  background-color: #44321E;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.header .navbar .custom-toggler .toggler-lines .top {
  top: 0;
  left: 0;
}
.header .navbar .custom-toggler .toggler-lines .bottom {
  top: 12px;
  left: 0;
}
.header .navbar .custom-toggler .toggler-text {
  font-family: "cormorant-garamond-regular", sans-serif;
  margin-top: 4px;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 3.68px;
}
.header .navbar .custom-toggler.open .toggler-text {
  color: white;
}
.header .navbar .custom-toggler.open .toggler-lines .line {
  background-color: white;
}
.header .navbar .custom-toggler.open .toggler-lines .top {
  transform: rotate(20deg);
  top: 6px;
}
.header .navbar .custom-toggler.open .toggler-lines .bottom {
  transform: rotate(-20deg);
  top: 6px;
}
.header .navbar .navbar-brand {
  margin: 0;
  padding: 0;
  width: 20%;
  transition: opacity 0.3s ease;
}
.header .navbar .navbar-brand .logo {
  max-width: 120px;
}
.header .navbar .navbar-collapse {
  width: 80%;
  max-height: max-content;
}
.header .navbar .navbar-collapse .navbar-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .navbar .navbar-collapse .navbar-nav-menu .nav-link {
  font-size: 14px;
  font-family: "montserrat-regular", sans-serif;
  padding: 0;
}
.header .navbar .navbar-collapse .navbar-nav-menu .nav-link:hover {
  font-weight: bold;
}
.header .navbar .navbar-collapse .navbar-nav {
  width: calc(70% - 80px);
  justify-content: space-between;
  gap: 16px;
}
.header .navbar .top-options {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header .navbar .top-options > *:not(:last-child) {
  height: 52px;
}
.header .navbar .top-options #language_options {
  font-size: 14px;
  font-family: "montserrat-regular", sans-serif;
}
.header .navbar .top-options > .instagram {
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #fff;
}
.header .navbar .top-options > .instagram svg.instagram-icon {
  width: 20px;
  fill: #b3a291;
}
.header .language-option {
  display: flex;
  gap: 8px;
  font-size: 14px;
  align-items: center;
}
.header .language-option a {
  color: #44321E;
  font-size: 14px;
  text-decoration: none;
}
.header .language-option a.active {
  font-weight: bold;
}

.cta-reservation {
  padding: 0 !important;
}
.cta-reservation span {
  font-family: "noto-sans-regular", sans-serif;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 1px;
}
.cta-reservation:hover {
  cursor: pointer;
}
.cta-reservation .dropdown-toggle {
  position: relative;
  background-color: #44321E;
  padding: 14px 24px;
  border-radius: 100px;
  color: #fff;
}
.cta-reservation .dropdown-toggle::after {
  display: none;
}
.cta-reservation .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #44321E;
  border-radius: 32px;
  padding: 16px !important;
  z-index: 1000;
  margin-top: 5px;
  transform: translateX(-50%);
}
.cta-reservation .dropdown-menu .dropdown-item {
  padding: 0;
}
.cta-reservation .dropdown-menu .dropdown-item:hover {
  background-color: unset;
}
.cta-reservation .dropdown-menu > *:not(:last-child) {
  margin-bottom: 10px;
}
.cta-reservation .contact {
  background-color: #fff;
  padding: 8px 17px;
  border-radius: 100px;
}
.cta-reservation .contact span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.cta-reservation .contact img {
  width: 20px;
  height: 20px;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.main section:not(.banner, .corthe, .hero, .categories, .headline, .services) {
  margin: 80px 160px;
}
.main h1 {
  font-family: "cormorant-garamond-regular", sans-serif;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #44321E;
}
.main h2 {
  font-family: "cormorant-garamond-regular", sans-serif;
  font-size: 54px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: #44321E;
}
.main h3 {
  font-family: "montserrat-regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.6px;
  word-break: break-word;
  color: #44321E;
}
.main h4 {
  font-family: "noto-serif-regular", sans-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #44321E;
}
.main p {
  font-family: "noto-serif-regular", sans-serif;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #44321E;
}
.main p.noto-sans {
  font-family: "noto-sans-regular", sans-serif;
  line-height: 28px;
}
.main .title {
  margin-bottom: 24px;
}
.main .title.title--bigger h2 {
  font-size: 72px;
}
.main .title.title--bigger h4 {
  font-size: 16px;
}
.main .corthe,
.main .about {
  padding-top: 40px;
}
.main .banner {
  display: flex;
  gap: 80px;
}
.main .banner .date,
.main .banner .venue {
  font-family: "montserrat-regular", sans-serif;
  font-size: 11px;
  line-height: 100%;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.main .banner .venue {
  display: flex;
  align-items: center;
}
.main .banner .venue span:not(:first-child) {
  margin: 0 10px;
}
.main .banner .venue span:first-child {
  margin-right: 10px;
}
.main .banner .venue span:last-child {
  margin-right: 40px;
}
.main .banner .venue .line {
  flex-grow: 1;
}
.main .banner .wrapper-image {
  width: 50%;
}
.main .banner .wrapper-image img {
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
}
.main .banner .banner-right {
  width: 50%;
  position: relative;
}
.main .banner .banner-right .banner-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
  margin-right: 40px;
}
.main .banner .banner-right .banner-text p.tagline {
  font-family: "noto-serif-regular", sans-serif;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #44321E;
  margin-bottom: 40px;
}
.main .amenities .items {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.main .amenities .items .item {
  width: calc(25% - 20px);
  max-width: unset;
  margin: 0;
}
.main .amenities .items .item:first-of-type {
  margin-left: 0;
}
.main .amenities .items .item:last-of-type {
  margin-right: 0;
}
.main .amenities .items .item .image-display {
  margin-bottom: 12px;
}
.main .amenities .items .item .image-display img {
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
}
.main .amenities .items .item .informations .name {
  font-family: "montserrat-regular", sans-serif;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.main .amenities .items .item .informations .tagline {
  font-family: "noto-sans-regular", sans-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1px;
}
.main .corthe .wrapper {
  display: flex;
  justify-content: space-evenly;
  background-color: #eee4dc;
  border-top-left-radius: 400px;
}
.main .corthe .wrapper .feature-product img {
  width: 390px;
  margin-top: -40px;
  margin-bottom: 40px;
}
.main .corthe .wrapper .contents {
  width: 650px;
  align-self: center;
}
.main .corthe .wrapper .contents h2 {
  font-family: "cormorant-garamond-regular", sans-serif;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: 0;
}
.main .corthe .wrapper .contents .tagline {
  font-family: "noto-serif-regular", sans-serif;
  size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 32px;
}
.main .corthe .wrapper .contents .content {
  font-family: "noto-serif-regular", sans-serif;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.main .corthe .wrapper .contents .content #jp-bold {
  font-weight: 600;
}
.main .corthe .wrapper .contents .products-button {
  padding: 10px 24px;
  width: fit-content;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #44321E;
  text-decoration: none;
}
.main .corthe .wrapper .contents .products-button span {
  font-family: "noto-sans-regular", sans-serif;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #ffffff;
}
.main .corthe .wrapper .contents .products-button .button-sign {
  height: 4px;
  width: 4px;
  background-color: #fff;
  border-radius: 50%;
  outline: 4px solid rgba(255, 255, 255, 0.1);
}
.main .therapies .title p {
  font-family: "noto-serif-regular", sans-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #44321E;
}
.main .therapies .items {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.main .therapies .items .item {
  width: calc(33.3333333333% - 16px);
  min-width: 30%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #eee4dc;
  border-radius: 40px;
  padding: 40px 32px;
  margin: 0;
}
.main .therapies .items .item .benefit-signs {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
}
.main .therapies .items .item .benefit-signs > img {
  object-fit: contain;
  max-width: 20%;
}
.main .therapies .items .item .informations {
  text-align: center;
}
.main .therapies .items .item h3.name {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
}
.main .therapies .items .item .tagline {
  font-family: "noto-sans-regular", sans-serif;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: 1px;
}
.main section.about {
  margin-right: unset;
}
.main .about {
  display: flex;
  align-items: center;
  position: relative;
  gap: 120px;
}
.main .about h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
.main .about h4 span {
  background-color: #e2d7ce;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 8px;
  margin-left: 12px;
  font-weight: 400;
}
.main .about p {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 32px;
  font-family: "noto-serif-regular", sans-serif;
}
.main .about .expert-display {
  position: relative;
  width: 579px;
  z-index: -99;
}
.main .about .expert-display .background {
  background-color: #e2d7ce;
  position: relative;
  height: 540px;
  width: 510px;
  border-top-left-radius: 120px;
}
.main .about .expert-display img {
  position: absolute;
  bottom: 0;
  height: 110%;
  object-fit: contain;
  width: auto;
  left: -50px;
}
.main .headline {
  margin-top: 181px;
}
.main .headline .title {
  padding: 0 160px;
  margin-bottom: 40px;
}
.main .headline .title h1 {
  font-size: 80px;
}
.main .headline .title p.tagline {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: unset;
}
.main .introduction {
  text-align: center;
}
.main .introduction .logo {
  max-width: 120px;
  margin: 0 auto 12px;
}
.main .introduction .description > h3, .main .introduction p {
  font-family: "noto-serif-regular", sans-serif;
  letter-spacing: 1px;
  line-height: 300%;
}
.main .introduction h3 {
  font-size: 32px;
}
.main .introduction p {
  font-size: 15px;
}
.main .services .wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #eee4dc;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  padding: 100px 115px 100px 160px;
}
.main .services .wrapper .service {
  display: flex;
  gap: 24px;
}
.main .services .wrapper .service .description {
  font-size: 13px;
}
.main .services .wrapper .service h4, .main .services .wrapper .service p, .main .services .wrapper .service span {
  font-family: "noto-serif-regular", sans-serif;
  line-height: 32px;
  letter-spacing: 1px;
}
.main .services .wrapper .service .number-item {
  display: flex;
  align-items: center;
  min-width: 30px;
  gap: 4px;
  margin-bottom: auto;
  font-size: 14px;
}
.main .services .wrapper .service .number-item .number {
  font-family: "cormorant-medium", sans-serif;
}
.main .services .wrapper .service .title {
  margin-right: 24px;
  margin-bottom: 8px;
  font-size: 24px;
}
.main .headline.therapy {
  margin-top: 200px;
}
.main .headline.therapy h1 {
  font-size: 54px;
  margin-bottom: 4px;
}
.main .menus {
  margin-top: 0 !important;
}
.main .menus .item-group:not(:nth-of-type(1)) {
  margin-top: 24px;
}
.main .menus .item-group .title, .main .menus .item-group .name,
.main .menus .item-group .session-name,
.main .menus .item-group .duration-number,
.main .menus .item-group .member-price,
.main .menus .item-group .non-member-price,
.main .menus .item-group .regular-price,
.main .menus .item-group .session-price {
  font-size: 14px;
  line-height: 32px;
}
.main .menus .item-group .title {
  font-family: "noto-serif-kr-regular";
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.main .menus .item-group .title .signature {
  font-family: "shadowsintolight-regular";
  color: #C3281A;
}
.main .menus .item-group .item {
  display: flex;
  justify-content: space-between;
  background-color: #EEE4DC;
  padding: 8px 16px;
  flex-wrap: wrap;
}
.main .menus .item-group .item .name, .main .menus .item-group .item .session-name, .main .menus .item-group .item .body-area {
  font-family: "montserrat-regular", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.main .menus .item-group .item .details {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main .menus .item-group .item .details .duration,
.main .menus .item-group .item .details .session-price,
.main .menus .item-group .item .details .member-price,
.main .menus .item-group .item .details .non-member-price {
  display: flex;
  align-items: center;
}
.main .menus .item-group .item .details .duration img.duration-icon,
.main .menus .item-group .item .details .session-price img.duration-icon,
.main .menus .item-group .item .details .member-price img.duration-icon,
.main .menus .item-group .item .details .non-member-price img.duration-icon {
  width: 16px;
}
.main .menus .item-group .item .details .type-desc {
  font-size: 13px;
  opacity: 0.5;
}
.main .menus .item-group .item .duration-number {
  font-size: 13px;
  margin-left: 2px;
}
.main .menus .item-group .item .member-price,
.main .menus .item-group .item .regular-price,
.main .menus .item-group .item .session-price {
  line-height: unset;
}
.main .menus .item-group .item:not(:nth-child(1)):not(:nth-child(2)) {
  margin-top: 2px;
}
.main .menus .item-group .item.packages {
  display: flex;
  flex-flow: column;
  gap: 12px;
  padding: 16px;
}
.main .menus .item-group .item.packages .care-area {
  margin: 0 auto;
}
.main .menus .item-group .item.packages .package {
  display: flex;
  gap: 40px;
}
.main .menus .item-group .item.packages .package-item {
  width: 50%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(68, 50, 30, 0.15);
  padding: 4px 8px;
  flex-wrap: wrap;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.footer {
  background-color: #453624;
}
.footer .wrapper {
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer .wrapper .informations {
  max-width: 480px;
}
.footer .wrapper .contact-location {
  order: 1;
  color: #fff;
}
.footer .wrapper .contact-location a {
  color: unset;
}
.footer .wrapper .contact-location .contact {
  line-height: 28px;
  font-size: 13px;
  letter-spacing: 1px;
  word-break: break-word;
}
.footer .wrapper .contact-location .location {
  margin-top: 24px;
}
.footer .wrapper .contact-location .location svg {
  width: 20px;
  padding-right: 4px;
}
.footer .wrapper .logo {
  order: 2;
}
.footer .wrapper .socials-menu {
  order: 3;
  color: #fff;
}
.footer .wrapper .socials-menu .menu {
  padding: 24px 0;
}
.footer .wrapper .socials-menu a {
  text-decoration: none;
  color: #fff;
}
.footer .wrapper .socials-menu ul.socials-menu__list,
.footer .wrapper .socials-menu .copyright {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.footer .wrapper .socials-menu ul {
  align-items: center;
  gap: 32px;
}
.footer .wrapper .socials-menu ul svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}
.footer .wrapper .socials-menu ul #call_to_action div {
  padding: 16px 32px;
  border-radius: 100px;
  background-color: #fff;
}
.footer .wrapper .socials-menu ul #call_to_action div span {
  font-family: "noto-sans-regular", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #41301c;
}
.footer .wrapper .socials-menu .menu > ul {
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .wrapper .socials-menu .menu a {
  font-size: 13px;
  letter-spacing: 1px;
}
.footer .wrapper .socials-menu .copyright > span {
  font-size: 11px;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.fade {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}

.fade__on {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.menubar {
  position: fixed;
  z-index: 2000;
  right: -1px;
  top: 0;
  display: none;
  margin: 0;
  padding: 0;
}
.menubar .menubar__trigger {
  margin: 0;
  padding: 0;
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 60px;
  background: #44321E;
  vertical-align: bottom;
}
.menubar .menubar__trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: #fff;
}
.menubar .menubar__trigger span:nth-of-type(1) {
  top: 19px;
}
.menubar .menubar__trigger span:nth-of-type(2) {
  top: 29px;
}
.menubar .menubar__trigger span:nth-of-type(3) {
  top: 39px;
}
.menubar .menubar__trigger.active {
  background: #fff;
}
.menubar .menubar__trigger.active span {
  background: #44321E;
}
.menubar .menubar__trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menubar .menubar__trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menubar .menubar__trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.header.header--product .navbar-nav {
  width: 100% !important;
  gap: 24px !important;
  justify-content: end !important;
}

.main .hero {
  position: relative;
}
.main .hero .hero__img-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75.4%;
  width: 532.03px;
}
.main .categories {
  margin: 80px;
  background-color: #EEE4DC;
  min-height: 100px;
  border-radius: 80px;
}
.main .categories .categories-wrapper {
  padding: 60px 80px;
}
.main .categories .category-list {
  display: flex;
  row-gap: 40px;
}
.main .categories .category {
  gap: 16px;
}
.main .categories .category .category__img {
  width: 100%;
  max-width: 100px;
}
.main .categories .category .category__title {
  font-weight: bold;
  margin-bottom: 8px;
}
.main .products {
  margin-top: 80px;
}
.main .products .title {
  margin-bottom: 0;
}
.main .products .product-list {
  margin-top: 24px;
  display: flex;
  column-gap: 24px;
  row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .products .product-list h3 {
  margin-bottom: 8px;
}
.main .products .product-list p {
  font-size: 12px;
}
.main .products .product-list .product {
  max-width: 250px;
  width: 100%;
}
.main .products .product-list .product:last-of-type {
  margin-right: auto;
}
.main .products .product-list [class^=col-] {
  margin-top: 24px;
  padding: 0 20px;
}
.main .products .product-list [class^=col-]:nth-child(4n+1) {
  padding-left: 0;
}
.main .products .product-list [class^=col-]:nth-child(4n) {
  padding-right: 0;
}
.main .products .product-list .product-list__img {
  display: flex;
  justify-content: center;
  height: 290px;
  position: relative;
}
.main .products .product-list .product-list__img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.main .products .product-list .product-list__img .product-category {
  position: absolute;
  top: 0;
  left: 0;
}
.main .products .product-list .product-list__img .product-category img {
  width: 72px;
}
.main .products .product-list .product-list__content {
  margin-top: 16px;
}

@media only screen and (max-width: 991.98px) {
  .main section:not(:first-of-type).products, .main section:not(:first-of-type).categories {
    margin: 40px 48px;
  }
  .main .hero {
    position: relative;
  }
  .main .hero .hero__img-title {
    width: 275px;
  }
  .main .categories .categories-wrapper {
    padding: 40px 48px;
  }
  .main .products .product-list [class^=col-] {
    padding: 0 15px;
  }
  .main .products .product-list [class^=col-]:nth-child(4n+1) {
    padding-left: 15px;
  }
  .main .products .product-list [class^=col-]:nth-child(4n) {
    padding-right: 15px;
  }
  .main .products .product-list [class^=col-]:nth-child(3n+1) {
    padding-left: 0;
  }
  .main .products .product-list [class^=col-]:nth-child(3n) {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .main .amenities .items {
    gap: 40px;
  }
  .main .amenities .items .item {
    max-width: unset;
    margin: 0;
    width: calc(25% - 20px);
  }
  .main .amenities .items .image-display {
    height: 60%;
  }
  .main .amenities .items .item .image-display img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
  }
  .main .banner .wrapper-image img {
    height: 920px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 1399.98px) {
  .header .navbar .navbar-collapse .navbar-nav {
    width: calc(75% - 80px);
  }
  .header .navbar .navbar-collapse .navbar-nav .navbar-nav-menu {
    gap: 16px;
  }
}
@media only screen and (max-width: 1224px) {
  .header .navbar .navbar-collapse .navbar-nav {
    width: 100%;
    justify-content: end;
  }
  .main .menus .item-group .item {
    flex-wrap: nowrap;
    gap: 24px;
  }
  .main .menus .item-group .item .details {
    flex-wrap: nowrap;
  }
  .main .menus .item-group .item .details span {
    word-break: keep-all;
  }
}
@media only screen and (max-width: 991.98px) {
  .main section:not(.banner, .corthe, .hero, .categories, .headline, .services) {
    margin: 80px 40px;
  }
  .main h1 {
    word-break: break-word;
  }
  .main .amenities > .items {
    flex-wrap: wrap;
  }
  .main .amenities > .items .item {
    width: calc(50% - 20px);
    height: unset;
    margin: unset;
  }
  .main .corthe .wrapper {
    border-top-left-radius: 200px;
  }
  .main .corthe .wrapper > * {
    margin: 0 40px;
  }
  .main .corthe .wrapper .feature-product {
    margin: auto 40px;
  }
  .main .corthe .wrapper .contents {
    margin: 40px;
  }
  .main .corthe .wrapper .contents .tagline {
    margin-bottom: unset;
  }
  .main .therapies .items .item {
    max-width: 20%;
    height: fit-content;
  }
  .main .therapies .items .item > .benefit-signs {
    max-width: 100%;
  }
  .main .about {
    flex-direction: column;
  }
  .main .about .expert-display {
    width: unset;
    left: 40px;
    margin-left: auto;
  }
  .main .menus .item-group .item.packages .package {
    flex-direction: column;
    gap: 12px;
  }
  .main .menus .item-group .item.packages .package-item {
    width: 100%;
  }
  /*-----------------------------------------------------*/
  /*-----------------------------------------------------*/
  .header.home .navbar .navbar-collapse {
    margin: 16px 8px 36px;
  }
  .header.home .navbar .navbar-collapse .navbar-nav {
    gap: 40px;
  }
  .header.home .navbar .navbar-collapse .navbar-nav .navbar-nav-menu {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .header.home .navbar .navbar-collapse .navbar-nav .nav-link {
    color: #fff;
    font-size: 40px;
    font-family: "cormorant-garamond-regular", sans-serif;
  }
  .header.home .navbar .navbar-collapse .navbar-nav .top-options {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .header.home .navbar .navbar-collapse .navbar-nav .top-options #language_options {
    color: #fff;
    font-size: 20px;
  }
  .cta-reservation.home {
    order: 1;
    width: 100%;
  }
  .cta-reservation.home .dropdown-toggle {
    background-color: #fff;
    color: #44321E;
    border-radius: 100px;
    padding: 24px;
    height: auto;
    text-align: center;
  }
  .cta-reservation.home .dropdown-menu {
    width: 100%;
    top: unset;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .navbar {
    padding: 24px;
  }
  .header .navbar .container-fluid {
    gap: 16px;
  }
  .header .navbar .navbar-nav {
    gap: 16px;
  }
  .footer .wrapper {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .footer .wrapper .logo {
    order: 1;
  }
  .footer .wrapper .contact-location {
    order: 2;
  }
  .footer .wrapper .socials-menu {
    order: 3;
  }
  .footer .wrapper .socials-menu .socials-cta ul,
  .footer .wrapper .socials-menu .menu ul {
    padding: 0;
    justify-content: flex-start;
  }
  .footer .wrapper .socials-menu .copyright {
    justify-content: flex-start;
  }
}
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
@media only screen and (max-width: 769px) {
  /*-----------------------------------------------------*/
  /*-----------------------------------------------------*/
  .header .navbar .navbar-collapse {
    margin: 16px 8px 36px;
  }
  .header .navbar .navbar-collapse .navbar-nav {
    gap: 40px;
  }
  .header .navbar .navbar-collapse .navbar-nav .navbar-nav-menu {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .header .navbar .navbar-collapse .navbar-nav .nav-link {
    color: #fff;
    font-size: 40px;
    font-family: "cormorant-garamond-regular", sans-serif;
  }
  .header .navbar .navbar-collapse .navbar-nav .top-options {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .header .navbar .navbar-collapse .navbar-nav .top-options #language_options {
    font-size: 20px;
    align-items: center;
    line-height: 100%;
  }
  .header .navbar .navbar-collapse .navbar-nav .top-options #language_options > a, .header .navbar .navbar-collapse .navbar-nav .top-options #language_options span {
    color: #fff;
  }
  .header .navbar .top-options > .instagram svg.instagram-icon {
    fill: #44321E;
  }
  .header .language-option a {
    font-size: 20px;
  }
  .cta-reservation {
    order: 1;
    width: 100%;
  }
  .cta-reservation .dropdown-toggle {
    background-color: #fff;
    color: #44321E;
    border-radius: 100px;
    padding: 24px;
    height: auto;
    text-align: center;
  }
  .cta-reservation .dropdown-menu {
    width: 100%;
    top: unset;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .cta-reservation span {
    font-size: 16px;
  }
  .main section:not(:first-of-type).products, .main section:not(:first-of-type).categories {
    margin: 40px 24px;
  }
  .main .hero {
    position: relative;
  }
  .main .hero .hero__img-title {
    width: 532.03px;
  }
  .main .products .product-list {
    row-gap: 24px;
  }
  .main .products .product-list .product {
    max-width: unset;
    width: calc(50% - 12px);
  }
  .main .products .product-list [class^=col-] {
    padding: 0 12px;
  }
  .main .products .product-list [class^=col-]:nth-child(4n+1) {
    padding-left: 12px;
  }
  .main .products .product-list [class^=col-]:nth-child(4n) {
    padding-right: 12px;
  }
  .main .products .product-list [class^=col-]:nth-child(3n+1) {
    padding-left: 12px;
  }
  .main .products .product-list [class^=col-]:nth-child(3n) {
    padding-right: 12px;
  }
  .main .products .product-list [class^=col-]:nth-child(2n+1) {
    padding-left: 0;
  }
  .main .products .product-list [class^=col-]:nth-child(2n) {
    padding-right: 0;
  }
  .main .banner .banner-right .banner-text {
    top: 50%;
    transform: translateY(-50%);
  }
  .main .headline {
    margin-top: 130px;
  }
  .main .headline .title {
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .main .headline .title h1 {
    font-size: 54px;
    line-height: unset;
    margin-bottom: 4px;
  }
  .main .introduction {
    margin: 40px auto !important;
  }
  .main .introduction .logo {
    margin-bottom: 20px;
  }
  .main .introduction .logo img {
    max-height: 52px;
  }
  .main .introduction .description {
    margin: 0 24px 40px;
  }
  .main .introduction .description h3 {
    font-size: 22px;
    line-height: 200%;
  }
  .main .introduction .description p {
    padding: 0 20px;
  }
  .main .services .wrapper {
    padding: 64px 24px;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
  }
  .main .services .wrapper .service {
    gap: 16px;
  }
  .main .services .wrapper .service .title {
    font-size: 22px;
    margin: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .main section:not(.banner, .corthe, .hero, .categories, .headline, .services) {
    margin: 80px 24px;
  }
  .main h1 {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 8px;
  }
  .main h1 span {
    display: block;
  }
  .main .banner {
    flex-direction: column-reverse;
    padding-top: 114px;
    gap: 0;
  }
  .main .banner .wrapper-image {
    width: 100%;
    padding-right: 32px;
  }
  .main .banner .wrapper-image img {
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
  }
  .main .banner .sp {
    margin-top: 40px;
  }
  .main .banner .sp > * {
    padding: 0 24px;
  }
  .main .banner .banner-right {
    width: 100%;
    position: unset;
    padding: 0 24px;
  }
  .main .banner .banner-right .banner-text {
    transform: unset;
    position: unset;
  }
  .main .banner .banner-right .banner-text h4.tagline, .main .banner .banner-right .banner-text p.tagline {
    font-size: 18px;
    line-height: 32px;
  }
  .main .banner .venue span:last-child {
    margin-right: 0;
  }
  .main .amenities .items {
    gap: 24px;
  }
  .main .amenities .items > .item {
    width: calc(50% - 12px);
  }
  .main .amenities .items > .item:nth-of-type(1), .main .amenities .items > .item:nth-of-type(2) {
    margin-bottom: 15px;
  }
  .main .corthe .wrapper {
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
  }
  .main .corthe .wrapper .feature-product > img {
    width: 100%;
    max-width: 70%;
    margin: -20px auto 40px;
  }
  .main .corthe .wrapper .contents {
    width: unset;
    padding: 0 24px;
    margin: 0;
  }
  .main .corthe .wrapper .contents > .content {
    font-size: 12px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .main .corthe .wrapper .contents > .content #jp-bold {
    font-size: 14px;
  }
  .main .therapies .items {
    flex-direction: column;
    gap: 32px;
  }
  .main .therapies .items .item {
    max-width: 100%;
    width: unset;
    justify-content: space-between;
    margin: unset;
  }
  .main .therapies .items .item > * {
    margin: 10px auto;
  }
  .main .therapies .items .item > .benefit-signs {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .main .about {
    padding-top: unset;
    margin: unset;
    margin-left: 24px;
    margin-right: unset;
  }
  .main .about .title.title--bigger h2 {
    font-size: 64px;
    letter-spacing: unset;
    margin-bottom: unset;
  }
  .main .about .expert-display {
    margin-top: 25%;
    left: unset;
  }
  .main .about .expert-display .background {
    width: unset;
    max-width: unset;
    height: 320px;
    margin-right: -24px;
    margin-left: 60px;
  }
  .main .about .expert-display img {
    width: 100%;
    height: 115%;
    left: unset;
  }
  .main .about p {
    font-size: 12px;
    line-height: 28px;
  }
  .main .headline {
    margin-top: 130px;
  }
  .main .headline.therapy {
    margin-top: 130px;
  }
  .main .headline .title {
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .main .headline .title h1 {
    font-size: 54px;
    line-height: unset;
    margin-bottom: 4px;
  }
  .main .headline img {
    height: 140px;
    object-fit: cover;
  }
  .main .introduction {
    margin: 40px auto !important;
  }
  .main .introduction .logo {
    margin-bottom: 20px;
  }
  .main .introduction .logo img {
    max-height: 52px;
  }
  .main .introduction .description {
    margin: 0 24px 40px;
  }
  .main .introduction .description h3 {
    font-size: 22px;
    line-height: 200%;
  }
  .main .introduction .description p {
    padding: 0 20px;
  }
  .main section.services .wrapper {
    padding: 64px 24px;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
  }
  .main section.services .wrapper .service {
    gap: 16px;
  }
  .main section.services .wrapper .service .title {
    font-size: 22px;
    margin: 0;
  }
  .main .menus .item-group .title {
    font-size: 18px;
  }
  .main .menus .item-group .item {
    gap: 24px;
    flex-wrap: unset;
    align-items: center;
  }
  .main .menus .item-group .item .name {
    max-width: 75%;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .main .menus .item-group .item .details {
    flex-flow: column;
    gap: 0;
    align-items: start;
    word-break: keep-all;
  }
  .main .menus .item-group .item.packages .care-area {
    text-align: center;
  }
  .main .menus .item-group .item.packages .package {
    width: 100%;
  }
  .main .menus .item-group .item.packages .package-item {
    align-items: center;
  }
  .header .navbar .navbar-brand {
    width: unset;
  }
  .header .navbar .navbar-brand img {
    height: 40px;
  }
  .header .navbar .navbar-brand .pc {
    display: none !important;
  }
  .header .navbar .navbar-brand .sp {
    display: block !important;
  }
  .main .hero {
    position: relative;
  }
  .main .hero .hero__img-title {
    width: 275px;
  }
  .main .products .product-list {
    row-gap: 16px;
  }
  .main .products .product-list .product-list__img img.wide-img {
    object-fit: contain;
    margin-top: 30%;
  }
  .footer .wrapper {
    padding: 40px 24px;
  }
}
.animation-box {
  animation-name: animation-sample;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-top: 1px solid black;
}

@keyframes animation-sample {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */