/**************************
 * 
 * BASE
 * 
 **************************/
:root {
  --clr-primary: #005f3e;
  --clr-white: #ffffff;
  --clr-gray: #f7f8f5;
  --clr-gray-100: #e6e6e6;
  --clr-black: #000000;
  --clr-pink: #ffa0c1;
  --clr-maroon: #8f3356;
  --clr-cream: #dfd9cd;
  --clr-blue: #0078c8;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
@media screen and (max-width: 425px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  background-image: unset;
  background-color: var(--clr-white);
}
@media screen and (min-width: 960px) {
  body {
    background-image: url("../images/pc_bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
  }
}

h1 {
  margin: 0;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul,
li,
ol {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@font-face {
  font-family: "HalisRMedium";
  src: url("../fonts/HalisRMedium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HalisRRegular";
  src: url("../fonts/HalisRRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "YuGoPr6NB";
  src: url("../fonts/YuGoPr6NB.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "YuGoPr6NM";
  src: url("../fonts/YuGoPr6NM.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HiraginoSansW3";
  src: url("../fonts/HiraginoSansGBW3.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HiraginoSansW6";
  src: url("../fonts/HiraginoSansGBW6.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HiraMinProNW6";
  src: url("../fonts/HiraMinProNW6.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "YuMincho";
  src: url("../fonts/yu-mincho-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TsukushiARoundGothic";
  src: url("../fonts/TsukushiARoundGothic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/**************************
 * 
 * COMPONENTS
 * 
 **************************/
.accordion__panel {
  max-height: 0;
  transition: max-height 0.2s ease-out;
  overflow: hidden;
}
@media screen and (min-width: 1400px) {
  .accordion__panel {
    max-height: unset;
  }
}
.accordion__button {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion__button-icon svg {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}
.accordion__button-icon svg > * {
  transform-origin: center center;
}
.accordion__button-icon svg :nth-child(2) {
  transition: all 0.2s ease-out;
}
.accordion__button.active .accordion__button-icon svg :nth-child(2) {
  transform: rotate(-90deg);
}

.floatingButton {
  position: sticky;
  z-index: 7000;
  pointer-events: none;
  bottom: 0;
}
.floatingButton__container {
  padding: 0 2rem 2rem;
  display: flex;
  justify-content: flex-end;
}
.floatingButton__cta {
  pointer-events: all;
  border-radius: 100%;
  width: fit-content;
  aspect-ratio: 1/1;
  background-color: var(--clr-primary);
}

.reservationButton {
  max-width: inherit;
  width: inherit;
  display: inherit;
}
.reservationButton__button {
  display: inherit;
  border-radius: 0.8rem;
  border: 2px solid var(--clr-maroon);
  background-color: var(--clr-white);
}
.reservationButton__button-header {
  padding: 0.6rem;
  background-color: var(--clr-maroon);
}
.reservationButton__button-header p {
  color: var(--clr-white);
  font-size: 1.4rem;
  font-family: "YuGoPr6NB", sans-serif;
  text-align: center;
  letter-spacing: -1px;
}
.reservationButton__button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  width: 100%;
  margin: 0 auto;
  font-family: "YuMincho", sans-serif;
}
.reservationButton__button-content img {
  max-width: 133px;
}

.card__container {
  padding: 2.8rem 2.8rem 1.4rem 2.8rem;
  background-color: var(--clr-gray);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.card__header {
  font-size: 2.4rem;
  color: var(--clr-black);
  font-family: "HalisRRegular", sans-serif;
}

.sns__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.sns__list-items {
  background-color: var(--clr-white);
  padding: 1.6rem 2.4rem;
  border-radius: 0.8rem;
  width: 100%;
}
.sns__list-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.2rem;
  font-family: "YuMincho", sans-serif;
}

.cta {
  padding: 1.2rem 0;
  border-radius: 1rem;
  background-color: var(--clr-cream);
}
.cta__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta .hidden {
  opacity: 0;
}

.pricelist {
  padding: 4rem 0;
}
.pricelist__container {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.pricelist__container > * + * {
  border-top: 1px solid var(--clr-black);
}
.pricelist__list {
  display: flex;
  flex-direction: column;
  gap: 3.9rem;
}
.pricelist__list-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.pricelist__list-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricelist__list-label p {
  color: var(--clr-primary);
  font-size: 1.4rem;
  font-family: "HalisRRegular", sans-serif;
}
.pricelist__list-title p {
  color: var(--clr-primary);
  font-size: 1.4rem;
  font-family: "YuGoPr6NB", sans-serif;
}
.pricelist__list-timeframe p {
  color: var(--clr-black);
  font-size: 2rem;
  font-family: "YuMincho", sans-serif;
}
.pricelist__list-info p {
  color: var(--clr-black);
  font-size: 1.6rem;
  font-family: "YuMincho", sans-serif;
}
.pricelist__list-package {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}
.pricelist__list-price {
  color: var(--clr-black);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.4rem;
}
.pricelist__list-value p {
  font-size: 4rem;
  line-height: 1;
  font-family: "HalisRRegular", sans-serif;
}
.pricelist__list-value p small {
  font-family: "HiraginoSansW6", sans-serif;
}
.pricelist__list-plan p {
  color: var(--clr-black);
  font-size: 1.6rem;
  font-family: "YuMincho", sans-serif;
}
.pricelist__list-sale p {
  text-align: end;
  color: var(--clr-black);
  font-size: 1.4rem;
  font-family: "YuGoPr6NM", sans-serif;
}
.pricelist__list-steps {
  padding: 2rem;
  background-color: var(--clr-white);
  border-radius: 1rem;
}
.pricelist__list-steps p {
  color: var(--clr-black);
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "YuGoPr6NM", sans-serif;
}
.pricelist__list[data-fullcourse] .pricelist__list-price {
  gap: 0;
}
.pricelist__list[data-fullcourse] .pricelist__list-price > * {
  border-bottom: 1px solid var(--clr-gray-100);
  width: 100%;
}
.pricelist__list[data-fullcourse] .pricelist__list-quote {
  padding: 2rem 0;
}
.pricelist__list-divider {
  background-color: var(--clr-primary);
  border-radius: 50vw;
  width: 100%;
  padding: 1rem 2rem;
}
.pricelist__list-divider p {
  color: var(--clr-white);
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "YuGoPr6NB", sans-serif;
}
.pricelist__list-quote {
  width: 100%;
}
.pricelist__collection {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.pricelist__orderedList > * + * {
  padding-top: 1.4rem;
}
.pricelist__orderedList li {
  list-style-type: decimal;
  margin-inline-start: 2rem;
}
.pricelist__orderedList li::marker {
  font-size: 1.4rem;
  font-weight: bolder;
}
.pricelist__orderedList-title p {
  color: var(--clr-black);
  font-weight: bolder;
  font-size: 1.4rem;
  font-family: "YuGoPr6NB", sans-serif;
}
.pricelist__orderedList-desc p {
  color: var(--clr-black);
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "YuGoPr6NM", sans-serif;
}
.pricelist__note p {
  color: var(--clr-black);
  font-size: 1.4rem;
  font-family: "YuGoPr6NM", sans-serif;
}
.pricelist__promo {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.pricelist__promo-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "YuGoPr6NM", sans-serif;
}
.pricelist__cta {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--clr-pink);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricelist__cta-header {
  background-color: var(--clr-white);
  border-radius: 0.8rem;
}
.pricelist__cta-header p {
  color: var(--clr-pink);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  padding: 0.2rem;
  text-align: center;
  font-family: "HiraMinProNW6", sans-serif;
}
.pricelist__cta-content p {
  text-align: center;
  color: var(--clr-white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  font-family: "HiraMinProNW6", sans-serif;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  overflow: hidden;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  padding: 2rem;
  max-width: 660px;
  width: 100%;
}
.modal__content {
  max-width: 560px;
  height: 80dvh;
  margin: 0 auto;
}
.modal__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}
.modal__pagination .custom-pagination {
  text-align: center;
}
.modal__navButtons {
  --swiper-navigation-color: var(--clr-white);
  position: absolute;
  max-width: 660px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  pointer-events: none;
  /* right: 0; */
}
.modal__navButtons > * {
  pointer-events: all;
}
.modal .close {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.modal .close.hidden {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.modal .swiper {
  max-width: 560px;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.modal .swiper-slide {
  height: auto;
  position: relative;
}
.modal .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--clr-black);
  opacity: 0.8;
}
.modal .swiper-slide-active::before {
  opacity: 0;
}
.modal .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal .swiper-pagination-fraction {
  color: var(--clr-white);
  font-size: 1.6rem;
}

.splash {
  position: sticky;
  left: 0;
  top: 0;
  height: 0;
  z-index: 9999;
  opacity: 0;
}
.splash__container {
  height: 100%;
  background-color: var(--clr-white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

/**************************
 * 
 * Layouts
 * 
 **************************/
.landing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100%;
}
.landing .fadeUp {
  opacity: 0;
}
.landing__list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100svh;
  gap: 0.6rem;
  background: white;
  padding: 1.6rem 1rem;
  cursor: pointer;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    gap: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    gap: 0;
    padding: 0;
  }
}
.landing__list-header {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 425px) {
  .landing__list-header {
    gap: 1rem;
  }
}
.landing__list-logo {
  max-width: 160px;
  margin: 0 auto;
}
.landing__list-items {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-items {
    height: 100vh;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-items {
    height: 100vh;
  }
}
.landing__list-items:hover .landing__list-bg {
  scale: 1.03;
}
.landing__list-bg {
  transition: all 500ms ease-out;
}
.landing__list-container {
  position: relative;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.6rem;
  gap: 4rem;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 425px) {
  .landing__list-container {
    padding: 3vh 6vw;
    gap: 1rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-container {
    max-height: 820px;
    justify-content: space-between;
    padding: 6.5rem 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-container {
    max-height: 820px;
    justify-content: space-between;
    padding: 6.5rem 2rem;
  }
}
.landing__list-subtext p {
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-subtext p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-subtext p {
    font-size: 1.6rem;
  }
}
.landing__list-info {
  margin: 0 auto;
  display: none;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-info {
    max-width: unset;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-info {
    max-width: unset;
    display: block;
  }
}
.landing__list-info p {
  font-size: 1.6rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-info p {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-info p {
    font-size: 2.8rem;
  }
}
.landing__list-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
  justify-content: center;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list-content {
    gap: 9.6rem;
    justify-content: unset;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list-content {
    gap: 9.6rem;
    justify-content: unset;
  }
}
.landing__list > li:nth-child(1) .landing__list-bg {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/landing_anjir_bg.jpg);
  background-color: #005f3e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.landing__list > li:nth-child(1) .landing__list-info {
  text-align: center;
  max-width: 184px;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list > li:nth-child(1) .landing__list-info {
    max-width: 324px;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list > li:nth-child(1) .landing__list-info {
    max-width: 324px;
  }
}
.landing__list > li:nth-child(1) .landing__list-info p {
  font-family: "TsukushiARoundGothic", sans-serif;
  color: var(--clr-white);
}
.landing__list > li:nth-child(1) .landing__list-subtext {
  text-align: center;
}
.landing__list > li:nth-child(1) .landing__list-subtext p {
  font-family: "HalisRRegular", sans-serif;
  color: var(--clr-white);
}
.landing__list > li:nth-child(1) .landing__footer {
  display: flex;
  flex-direction: column;
}
.landing__list > li:nth-child(1) .landing__copy {
  text-align: center;
}
.landing__list > li:nth-child(1) .landing__copy p {
  font-family: "HalisRRegular", sans-serif;
  font-size: 1.2rem;
  color: var(--clr-white);
}
.landing__list > li:nth-child(1) .landing__cta {
  max-width: 6rem;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr-white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.landing__list > li:nth-child(1) .landing__cta p {
  font-family: "HalisRRegular", sans-serif;
  font-size: 1.4rem;
  line-height: 58px;
  width: 58px;
  text-align: center;
  aspect-ratio: 1;
  color: var(--clr-white);
}
@media screen and (max-width: 425px) {
  .landing__list > li:nth-child(1) .landing__cta p {
    line-height: 8vh;
    width: 8vh;
  }
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list > li:nth-child(1) .landing__cta {
    max-width: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list > li:nth-child(1) .landing__cta {
    max-width: 8rem;
  }
}
.landing__list > li:nth-child(2) .landing__list-bg {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/landing_linden_bg.jpg);
  background-color: #dfd9cb;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.landing__list > li:nth-child(2) .landing__list-info {
  text-align: center;
  max-width: 156px;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list > li:nth-child(2) .landing__list-info {
    max-width: 230px;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list > li:nth-child(2) .landing__list-info {
    max-width: 230px;
  }
}
.landing__list > li:nth-child(2) .landing__list-info p {
  font-family: "TsukushiARoundGothic", sans-serif;
  color: var(--clr-black);
}
.landing__list > li:nth-child(2) .landing__list-subtext {
  text-align: center;
}
.landing__list > li:nth-child(2) .landing__list-subtext p {
  font-family: "HalisRRegular", sans-serif;
  color: var(--clr-black);
}
.landing__list > li:nth-child(2) .landing__footer {
  display: flex;
  flex-direction: column;
}
.landing__list > li:nth-child(2) .landing__copy {
  text-align: center;
}
.landing__list > li:nth-child(2) .landing__copy p {
  font-family: "HalisRRegular", sans-serif;
  font-size: 1.2rem;
  color: var(--clr-black);
}
.landing__list > li:nth-child(2) .landing__cta {
  max-width: 6rem;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr-black);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.landing__list > li:nth-child(2) .landing__cta p {
  font-family: "HalisRRegular", sans-serif;
  font-size: 1.4rem;
  line-height: 58px;
  width: 58px;
  text-align: center;
  aspect-ratio: 1;
  color: var(--clr-black);
}
@media screen and (max-width: 425px) {
  .landing__list > li:nth-child(2) .landing__cta p {
    line-height: 8vh;
    width: 8vh;
  }
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__list > li:nth-child(2) .landing__cta {
    max-width: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__list > li:nth-child(2) .landing__cta {
    max-width: 8rem;
  }
}
.landing__footer {
  gap: 2rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .landing__footer {
    gap: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .landing__footer {
    gap: 8rem;
  }
}

.navbar {
  position: fixed;
  z-index: 9000;
  top: -100px;
  left: 0;
  right: 0;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: block;
  transition: top 0.3s;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar {
    top: 0;
  }
}
@media screen and (min-width: 1400px) {
  .navbar {
    top: 0;
  }
}
.navbar__header {
  position: relative;
  z-index: 9000;
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: var(--clr-white);
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__header {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__header {
    display: none;
  }
}
.navbar__panel {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
  z-index: 8000;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__panel {
    position: relative;
    max-width: unset;
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__panel {
    position: relative;
    max-width: unset;
    width: 100%;
  }
}
.navbar__panel-content {
  pointer-events: all;
  background-color: var(--clr-primary);
  position: relative;
  top: 0;
  left: -100%;
  overflow-x: hidden;
  height: 100dvh;
  width: 100%;
  padding: 6rem 2.8rem 4rem;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2.8rem;
  justify-content: space-between;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.navbar__panel-content ::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.navbar__panel-content > * + * {
  padding-top: 2.8rem;
  border-top: 1px solid var(--clr-white);
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__panel-content > * + * {
    border: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__panel-content > * + * {
    border: none;
  }
}
.navbar__panel-content.active {
  left: 0;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__panel-content {
    left: 0%;
    background-color: transparent;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__panel-content {
    left: 0%;
    background-color: transparent;
  }
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__menu {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__menu {
    display: none;
  }
}
.navbar__button.active svg path {
  fill: var(--clr-white);
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.navbar__logoText {
  font-size: 1.6rem;
  font-family: "HalisRRegular", sans-serif;
  color: var(--clr-white);
}
.navbar__list {
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__list {
    padding-top: 7.8rem;
    padding-inline-start: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__list {
    padding-top: 7.8rem;
    padding-inline-start: 24px;
  }
}
.navbar__list-items {
  font-family: "HalisRRegular", sans-serif;
  font-size: 2.8rem;
  color: var(--clr-white);
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__list-items {
    list-style-type: disc;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__list-items {
    list-style-type: disc;
    font-size: 2.4rem;
  }
}
.navbar .info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.2rem;
  font-family: "HiraginoSansW3", sans-serif;
  line-height: 1.6;
  color: var(--clr-white);
}
@media screen and (min-width: 1400px) {
  .navbar .accordion__button {
    pointer-events: none;
  }
}
.navbar .accordion__button-icon svg path {
  fill: var(--clr-white);
}
@media screen and (min-width: 1400px) {
  .navbar .accordion__button-icon {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar .accordion__panel {
    transition: unset;
    height: 100%;
  }
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar {
    position: sticky;
    margin: 0;
    max-width: unset;
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .navbar {
    position: sticky;
    margin: 0;
    max-width: unset;
    width: 100%;
  }
}
.navbar__sublist {
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.navbar__sublist-items a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__sublist-items a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__sublist-items a {
    font-size: 1.8rem;
  }
}
.navbar__sublist-dash {
  width: 12px;
  height: 1px;
  background-color: var(--clr-white);
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__sns {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__sns {
    display: none;
  }
}
.navbar__sns-container {
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.navbar__sns .reservationButton {
  display: block;
}
@media screen and (min-width: 1400px) {
  .navbar__sns .reservationButton {
    display: none;
  }
}
.navbar__sns .reservationButton__button-content {
  flex-direction: row;
  gap: 2rem;
}
.navbar__sns .sns__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__sns .sns__list-items {
  padding: 1.4rem 2.4rem;
}
.navbar__sns .sns__list-logo {
  max-width: 32px;
}
.navbar__sns .sns__list-logo img {
  width: 100%;
}
.navbar__footer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar__footer {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .navbar__footer {
    display: none;
  }
}
.navbar__copyright p {
  text-align: center;
  color: var(--clr-white);
  font-size: 1rem;
}
.navbar__anchor:hover, .navbar__anchor:focus,
.navbar .accordion__button:hover,
.navbar .accordion__button:focus {
  font-weight: 600;
}
.navbar__cta {
  width: fit-content;
  margin: 0 auto;
}
.navbar .cta {
  padding: unset;
}
.navbar .cta__link p {
  font-size: 14px;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .navbar .cta__link p {
    font-size: inherit;
  }
}
@media screen and (min-width: 1400px) {
  .navbar .cta__link p {
    font-size: inherit;
  }
}
.navbar .cta__link-icon {
  max-width: 132px;
}
.navbar .cta__link-icon img {
  width: 100%;
}

.header {
  position: relative;
}
.header img {
  width: revert;
}

.main {
  position: relative;
  background-color: var(--clr-white);
  max-width: 480px;
  width: 100%;
  padding-top: 9.1rem;
}
@media screen and (min-width: 1400px) {
  .main {
    max-width: 480px;
    width: 100%;
  }
}

.mainvisual {
  position: relative;
}
.mainvisual__container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
.mainvisual__bgImage {
  position: relative;
  grid-area: 1/1/1/1;
  z-index: 1000;
}
.mainvisual__bgImage img {
  object-position: top center;
}
.mainvisual__content {
  position: relative;
  grid-area: 1/1/1/1;
  z-index: 2000;
  width: 100%;
}
.mainvisual__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.mainvisual__logoText p {
  font-size: 1.4rem;
  font-family: "HalisRRegular", sans-serif;
  color: var(--clr-primary);
  text-align: center;
}
.mainvisual__text {
  padding-top: 7rem;
  display: flex;
  justify-content: center;
}
.mainvisual__text p {
  max-height: 363px;
}

.concept__container {
  padding: 15.6rem 2rem;
  background-image: url("../images/concept_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 1200px;
}
.concept__container p {
  font-size: 1.6rem;
  color: var(--clr-black);
  font-family: "YuMincho", sans-serif;
  text-align: center;
  line-height: 2;
}
.concept__content {
  max-width: 384px;
  width: 100%;
  margin: 0 auto;
}

.salon__title h2 {
  color: var(--clr-black);
  font-size: 60px;
  font-family: "HalisRRegular", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.salon__list {
  padding-top: 4.6rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.salon__list-items {
  display: grid;
  grid-template-columns: 1fr;
}
.salon__list-visual {
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  grid-area: 1/1/1/1;
  align-self: start;
}
.salon__info {
  width: 100%;
  grid-area: 1/1/1/1;
  margin: 0 auto;
  padding: 7.6rem 2rem 0;
}
.salon__info-content {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  padding-top: 3.6rem;
}
.salon__info-title h3 {
  font-family: "HalisRRegular", sans-serif;
  color: var(--clr-white);
  font-size: 40px;
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
.salon__cta {
  padding-top: 6rem;
}
.salon__card {
  padding-top: 4rem;
}
.salon .advisory__title {
  position: relative;
  text-align: center;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}
.salon .advisory__title p {
  color: var(--clr-white);
  font-size: 1.6rem;
  font-family: "YuMincho", sans-serif;
  line-height: 1;
}
.salon .advisory__title-line {
  background-color: var(--clr-white);
  height: 1px;
  width: 100%;
}
.salon .advisory__list {
  color: var(--clr-white);
  font-size: 1.4rem;
  margin-top: 1em;
  line-height: 2;
  text-align: center;
  font-family: "YuMincho", sans-serif;
}
.salon__button {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50vw;
  width: 100%;
  background-color: var(--clr-white);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.6rem;
}
.salon__button p {
  font-size: 14px;
  font-weight: 400;
  font-family: "HalisRRegular", sans-serif;
}
.salon__button .hidden {
  opacity: 0;
}
.salon .accordion {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.4rem;
}
.salon .accordion__button {
  color: var(--clr-black);
  font-size: 1.4rem;
  font-family: "HalisRRegular", sans-serif;
  justify-content: center;
  gap: 1.8rem;
  padding: 1.4rem;
}
.salon .accordion__button-icon {
  background-color: var(--clr-white);
  border-radius: 100%;
}
.salon .accordion__panel {
  transition: max-height 1s ease-out;
  border-top: 1px solid var(--clr-black);
  border-bottom: 1px solid var(--clr-black);
  max-height: 0;
}

.about__container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 19.5rem 2rem 0;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .about__container {
    max-width: unset;
    padding: 19.5rem 0 0;
  }
}
@media screen and (min-width: 1400px) {
  .about__container {
    max-width: unset;
    padding: 19.5rem 0 0;
  }
}
.about__title {
  text-align: center;
}
.about__title h2 {
  color: var(--clr-black);
  font-size: 6rem;
  font-family: "HalisRRegular", sans-serif;
  font-weight: 400;
}
.about__slider {
  padding-top: 4.6rem;
  margin: 0 auto;
  height: 480px;
  overflow: hidden;
}
.about__slider .swiper {
  height: 100%;
  max-width: 400px;
  overflow: visible;
}
.about__slider .swiper-slide {
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
  overflow: hidden;
}
.about__slider .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 4.7rem;
  padding-top: 7.4rem;
}
.about__info-title p {
  color: var(--clr-black);
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  font-family: "YuGoPr6NB", sans-serif;
}
.about__list {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  border-top: 1px solid var(--clr-gray-100);
}
.about__list-items {
  border-bottom: 1px solid var(--clr-gray-100);
  padding: 2.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.about__list-title p {
  color: var(--clr-primary);
  font-size: 1.6rem;
  font-family: "YuGoPr6NB", sans-serif;
}
.about__list-desc p {
  color: var(--clr-black);
  font-size: 1.6rem;
  font-family: "YuGoPr6NM", sans-serif;
  line-height: 1.5;
}
.about__map {
  padding-top: 4.8rem;
}
.about__map iframe {
  width: 100%;
}

.qna__container {
  padding-top: 20rem;
}
.qna__header {
  background-image: url("../images/qna_visual.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 3.6rem 0;
  text-align: center;
  border-radius: 2rem;
}
.qna__title h2 {
  color: var(--clr-black);
  font-size: 6rem;
  font-family: "HalisRRegular", sans-serif;
}
.qna__subtitle {
  padding-top: 1.6rem;
}
.qna__subtitle p {
  color: var(--clr-black);
  font-size: 2.4rem;
  font-family: "YuGoPr6NB", sans-serif;
}
.qna__list-items {
  border-bottom: 1px solid var(--clr-gray-100);
}
.qna__question, .qna__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  text-align: start;
}
.qna__question strong, .qna__answer strong {
  color: var(--clr-black);
  font-size: 2.8rem;
  font-weight: 600;
  font-family: "HiraginoSansW3", sans-serif;
}
.qna__question p, .qna__answer p {
  line-height: 1.5;
  font-family: "YuGoPr6NM", sans-serif;
  align-self: flex-end;
}
.qna__question p:nth-child(1), .qna__answer p:nth-child(1) {
  align-self: flex-start;
}
.qna__answer {
  padding-bottom: 1.6rem;
}
.qna__answer strong {
  color: var(--clr-primary);
}
.qna__question p {
  align-self: center;
}
.qna__contact {
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.qna__contact-header {
  text-align: center;
}
.qna__contact-header p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: "YuGoPr6NM", sans-serif;
}
.qna__contact .cta {
  background-color: var(--clr-white);
  max-width: 320px;
  margin: 0 auto;
}
.qna__contact .cta__link {
  flex-direction: row;
  align-items: center;
  color: var(--clr-black);
  font-size: 1.6rem;
  font-family: "YuGoPr6NM", sans-serif;
}
.qna__contact .cta__link-icon {
  width: fit-content;
}
.qna .accordion {
  display: flex;
  flex-direction: column;
}
.qna .accordion__button {
  color: var(--clr-black);
  font-size: 1.6rem;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 2.6rem 1.6rem;
}
.qna .accordion__panel {
  max-height: 0;
  font-size: 1.6rem;
  padding: 0 1.6rem;
}
.qna .accordion__panel a {
  text-decoration: underline;
  color: var(--clr-blue);
}

.tos__container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding-top: 13.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.tos__header {
  text-align: center;
}
.tos__header h2 {
  font-size: 2.4rem;
  font-family: "YuGoPr6NB", sans-serif;
}
.tos__text {
  padding: 2rem;
  border: 1px solid var(--clr-gray-100);
  max-height: 400px;
  height: 100%;
  overflow-x: hidden;
  font-size: 1.4rem;
  font-family: "YuGoPr6NM", sans-serif;
  line-height: 1.5;
}
.tos__text strong {
  font-family: "YuGoPr6NB", sans-serif;
}
.tos__text ul {
  padding-inline-start: 1.6rem;
}
.tos__text li {
  list-style-type: disc;
}

.aside {
  max-width: 310px;
  width: 100%;
  position: relative;
  display: none;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .aside {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .aside {
    display: block;
  }
}
.aside__container {
  height: 100dvh;
  position: sticky;
  top: 0;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.aside__wrapper {
  overflow: hidden;
}
.aside__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.aside .sns__list-logo {
  max-width: 28px;
}
.aside .cta {
  padding: unset;
}
.aside .cta__link-icon {
  max-width: 130px;
}

.footer__container {
  padding-top: 7.6rem;
  background-color: var(--clr-white);
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
.footer__copy {
  padding-top: 3rem;
  text-align: center;
  font-size: 1rem;
  font-family: "YuMincho", sans-serif;
}
.footer__sns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__sns .reservationButton {
  justify-content: center;
}
.footer .sns__list {
  flex-direction: row;
  flex-wrap: nowrap;
}
.footer .sns__list-items {
  padding: unset;
  width: 100%;
}
.footer .sns__list-logo {
  max-width: 60px;
  width: 100%;
}

/**************************
 * 
 * Pages
 * 
 **************************/
.home .hiddenEl {
  position: relative;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
}
@media screen and (min-width: 960px) and (max-width: 1400px) {
  .home .hiddenEl {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}
@media screen and (min-width: 1400px) {
  .home .hiddenEl {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr auto auto;
  }
}
.home .scrollable {
  position: relative;
  max-width: 480px;
  background-color: var(--clr-white);
}
.home .scrollable__content {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
