@media screen and (min-width: 1280px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  min-height: 100vh;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
  color: #373535;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.75rem;
  }
}

html,
body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
}

html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

button,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.l-footer {
  background: #d6cdbd;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.75rem 0;
  }
}

.l-footer__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4375rem;
}

.l-footer__logo-link {
  display: block;
}

.l-footer__logo {
  aspect-ratio: 224/48;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 11.25rem;
  }
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 0.625rem;
  }
}

.l-header {
  position: fixed;
  z-index: 200;
  top: 0;
  width: 100%;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.75rem;
  }
}

.l-header__row {
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.l-header__left {
  height: inherit;
  display: grid;
  place-items: center;
}

.l-header__logo-link {
  height: inherit;
  display: grid;
  place-items: center;
}

.l-header__logo {
  aspect-ratio: 224/48;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 7.5rem;
  }
}

.l-header__right {
  height: inherit;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__right {
    gap: 3.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 839px) {
  .l-header__right {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__right {
    gap: 1.25rem;
  }
}

.l-inner-sm, .l-inner-md, .l-inner-lg {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  height: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-inner-sm, .l-inner-md, .l-inner-lg {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .l-inner-sm, .l-inner-md, .l-inner-lg {
    width: 100%;
    max-width: calc(100% - 40px);
  }
}

@media screen and (min-width: 1280px) {
  .l-inner-lg {
    width: 83.3333333333vw;
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-inner-lg {
    width: 93.75vw;
  }
}

@media screen and (min-width: 1280px) {
  .l-inner-md {
    width: 69.4444444444vw;
    max-width: 69.4444444444vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-inner-md {
    width: 78.125vw;
  }
}

@media screen and (min-width: 1280px) {
  .l-inner-sm {
    width: 55.5555555556vw;
    max-width: 55.5555555556vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-inner-sm {
    width: 62.5vw;
  }
}

.l-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.l-menu.is-open {
  left: 0;
}

.l-menu__nav {
  width: 60%;
}

.l-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-menu__item {
  position: relative;
  width: 100%;
}

.l-menu__item:not(:first-child) {
  padding-top: 0.125rem;
}
.l-menu__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: linear-gradient(to right, #a7926a 0, #a7926a 1rem, transparent 1rem, transparent 1.25rem);
  background-size: 1.25rem 0.125rem;
  background-position: top left;
  background-repeat: repeat-x;
}

.l-menu-link {
  display: block;
  padding: 2rem 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  color: #373535;
}

.l-page {
  display: block;
}

.c-bg-deco {
  position: absolute;
  aspect-ratio: 360/360;
}
@media screen and (min-width: 768px) {
  .c-bg-deco {
    width: 22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-bg-deco {
    width: 11.25rem;
  }
}

.c-burger-btn {
  width: 2.75rem;
  aspect-ratio: 44/44;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-burger-btn__bars {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 999px;
  background-color: #a7926a;
  transition: 0.3s;
}
.c-burger-btn__bars::before, .c-burger-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: inherit;
  transition: inherit;
}
.c-burger-btn__bars::before {
  top: -0.4375rem;
}
.c-burger-btn__bars::after {
  top: 0.4375rem;
}

.c-burger-btn.is-open .c-burger-btn__bars {
  background-color: transparent;
}
.c-burger-btn.is-open .c-burger-btn__bars::before, .c-burger-btn.is-open .c-burger-btn__bars::after {
  top: 0;
  background-color: #a7926a;
}
.c-burger-btn.is-open .c-burger-btn__bars::before {
  transform: rotate(45deg);
}
.c-burger-btn.is-open .c-burger-btn__bars::after {
  transform: rotate(-45deg);
}

.c-double-frame {
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-double-frame {
    border: 0.25rem solid #a7926a;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-double-frame {
    border: 0.1875rem solid #a7926a;
    border-radius: 1rem 1rem 0 0;
    padding: 0.3125rem;
  }
}

.c-double-frame__inner {
  width: 100%;
  height: 100%;
  border: 0.125rem solid #a7926a;
}
@media screen and (min-width: 768px) {
  .c-double-frame__inner {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-double-frame__inner {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}

.c-fv-point {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-fv-point {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point {
    padding-top: 1.125rem;
  }
}

.c-fv-point__ribbon {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/fv-ribbon.png) no-repeat center/contain;
  text-align: center;
  font-family: serif;
  font-weight: 900;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-fv-point__ribbon {
    width: 11rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point__ribbon {
    width: 8.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-fv-point .c-double-frame {
    width: 15rem;
    aspect-ratio: 240/200;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point .c-double-frame {
    width: 10rem;
    aspect-ratio: 160/120;
  }
}

.c-fv-point .c-double-frame__inner {
  display: grid;
  place-items: center;
}

.c-fv-point__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .c-fv-point__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point__title {
    font-size: 1rem;
  }
}

.c-fv-point__title strong.lg {
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .c-fv-point__title strong.lg {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point__title strong.lg {
    font-size: 1.5rem;
  }
}

.c-fv-point__title strong.xl {
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .c-fv-point__title strong.xl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-point__title strong.xl {
    font-size: 1.875rem;
  }
}

.c-header-nav {
  height: inherit;
}

.c-header-nav__list {
  height: inherit;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) and (max-width: 839px) {
  .c-header-nav__list {
    gap: 2rem;
  }
}

.c-header-nav__item {
  height: inherit;
}

.c-header_nav__link {
  height: inherit;
  display: flex;
  align-items: center;
}

.c-header_nav__link span {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
}

.c-header_nav__link:hover span::after {
  content: "";
  position: absolute;
  bottom: -0.8125rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #a7926a;
}

.c-line-btn {
  border-radius: 999px;
  background: #6db560;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-line-btn {
    padding: 0.75rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-line-btn {
    padding: 0.5rem 1rem;
  }
}

.c-line-btn__logo {
  aspect-ratio: 36/34;
}
@media screen and (min-width: 768px) {
  .c-line-btn__logo {
    width: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-line-btn__logo {
    width: 1.5rem;
  }
}

.c-line-btn__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-line-btn__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-line-btn__text {
    font-size: 1rem;
  }
}

.c-point {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-point {
    min-height: 27.5rem;
    background: #f4f4f4;
  }
}
@media screen and (max-width: 767px) {
  .c-point {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .c-point:nth-child(odd) {
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
  }
}

@media screen and (min-width: 768px) {
  .c-point:nth-child(even) {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: 31.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-point:nth-child(5) {
    padding-right: 25.3125rem;
  }
}

.c-point__img-area {
  aspect-ratio: 440/440;
  border: 0.125rem solid #a7926a;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-point__img-area {
    position: absolute;
    top: 0;
    width: 27.5rem;
    padding: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point__img-area {
    order: 2;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    padding: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-point:nth-child(odd) .c-point__img-area {
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-point:nth-child(even) .c-point__img-area {
    left: 0;
  }
}

.c-point:nth-child(5) .c-point__img-area {
  aspect-ratio: 405/440;
}
@media screen and (min-width: 768px) {
  .c-point:nth-child(5) .c-point__img-area {
    width: 25.3125rem;
  }
}

.c-point__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .c-point__text-area {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-point__text-area {
    display: contents;
  }
}

.c-point__title-row {
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-point__title-row {
    background: #ffffff;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point__title-row {
    order: 1;
    gap: 0.75rem;
  }
}

.c-point:nth-child(odd) .c-point__title-row {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}

.c-point:nth-child(even) .c-point__title-row {
  margin-right: calc(50% - 50vw);
  margin-left: -3.75rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-point:nth-child(even) .c-point__title-row {
    padding-right: calc(50vw - 50%);
  }
}

.c-point__title-number {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.06em;
  color: #a7926a;
}
@media screen and (min-width: 768px) {
  .c-point__title-number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point__title-number {
    font-size: 2.25rem;
  }
}
.c-point__title-number::before {
  content: "POINT";
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-point__title-number::before {
    margin-bottom: -1.3125rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point__title-number::before {
    margin-bottom: -0.75rem;
    font-size: 1rem;
  }
}

.c-point__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .c-point__title {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-point__title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-point__text {
    max-width: 31.25rem;
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .c-point__text {
    order: 3;
    margin-top: -2.5rem;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    background: #f4f4f4;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
  }
}

.c-point__text p + p {
  margin-top: 1.5rem;
}

.c-price {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-price {
    padding-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price {
    padding-top: 1.375rem;
  }
}

.c-price__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/price-ribbon.png) no-repeat center/contain;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-price__title {
    width: 17.5rem;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__title {
    width: 13.125rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
    font-size: 1.125rem;
  }
}

.c-price .c-double-frame {
  aspect-ratio: 360/360;
}
@media screen and (min-width: 768px) {
  .c-price .c-double-frame {
    width: 22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price .c-double-frame {
    width: 100%;
  }
}

.c-price--lg .c-double-frame {
  aspect-ratio: 360/420;
}

@media screen and (min-width: 768px) {
  .c-price .c-double-frame__inner {
    padding-top: 4.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price .c-double-frame__inner {
    padding-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price--lg .c-double-frame__inner {
    padding-top: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price--lg .c-double-frame__inner {
    padding-top: 2.4375rem;
  }
}

.c-price__items {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-price__items {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__items {
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price__items.gap-lg {
    gap: 4.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__items.gap-lg {
    gap: 3.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price__items.gap-sm {
    gap: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__items.gap-sm {
    gap: 1.6875rem;
  }
}

.c-price__item {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 110%;
}

@media screen and (min-width: 768px) {
  .c-price__item-persons {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__item-persons {
    font-size: 1.125rem;
  }
}

.c-price__item-price {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-price__item-price {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__item-price {
    font-size: 1.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price__item-price strong {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__item-price strong {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price__item-price small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__item-price small {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-price__item-price.is-none {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-price__item-price.is-none {
    margin-top: 0.75rem;
  }
}

.c-price__item-price.is-discount {
  color: #e0ab2d;
}

.c-qa {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-qa {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa {
    font-size: 0.75rem;
  }
}

.c-qa__question::before,
.c-qa__answer::before {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .c-qa__question::before,
  .c-qa__answer::before {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__question::before,
  .c-qa__answer::before {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-qa__question,
  .c-qa__answer {
    padding-right: 2.5rem;
    padding-left: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__question,
  .c-qa__answer {
    padding-right: 1.25rem;
    padding-left: 3.75rem;
  }
}

.c-qa__question {
  position: relative;
  background: #d6cdbd;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-qa__question {
    min-height: 4.625rem;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__question {
    min-height: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
  }
}
.c-qa__question::before {
  content: "Q";
  top: 0.25rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-qa__question::before {
    left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__question::before {
    left: 1.25rem;
  }
}

.c-qa__answer {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-qa__answer {
    min-height: 5.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__answer {
    min-height: 4rem;
  }
}
.c-qa__answer::before {
  content: "A";
  top: 1rem;
  color: #8a7142;
}
@media screen and (min-width: 768px) {
  .c-qa__answer::before {
    left: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__answer::before {
    left: 1.375rem;
  }
}

.c-qa__answer p + p {
  margin-top: 1.5rem;
}

.c-section-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.c-section-title__en {
  font-family: "EB Garamond", serif;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
  color: #8a7142;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 1.3125rem;
  }
}

.c-section-title__ja {
  margin-top: 0.5625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-section-title__ja strong {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__ja strong {
    font-size: 2.25rem;
  }
}

.c-section-title__ja .underline {
  position: relative;
}
.c-section-title__ja .underline::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d6cdbd;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja .underline::after {
    height: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__ja .underline::after {
    height: 0.75rem;
  }
}

.c-step {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-step {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: 31.25rem;
    min-height: 27.5rem;
    background: #f4f4f4;
  }
}
@media screen and (max-width: 767px) {
  .c-step {
    display: flex;
    flex-direction: column;
  }
}

.c-step__img-area {
  aspect-ratio: 440/440;
  border: 0.125rem solid #a7926a;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-step__img-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 27.5rem;
    padding: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__img-area {
    order: 2;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    padding: 0.625rem;
  }
}

.c-step__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .c-step__text-area {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-step__text-area {
    display: contents;
  }
}

.c-step__title-row {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  margin-left: -3.75rem;
  padding-left: 3.75rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-step__title-row {
    background: #ffffff;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__title-row {
    order: 1;
    gap: 0.75rem;
  }
}

.c-step__title-number {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.06em;
  color: #a7926a;
}
@media screen and (min-width: 768px) {
  .c-step__title-number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__title-number {
    font-size: 2.25rem;
  }
}
.c-step__title-number::before {
  content: "STEP";
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.18em;
}
@media screen and (min-width: 768px) {
  .c-step__title-number::before {
    margin-bottom: -1.3125rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__title-number::before {
    margin-bottom: -0.75rem;
    font-size: 1rem;
  }
}

.c-step__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .c-step__title {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-step__text {
    max-width: 37.5rem;
    padding: 2.5rem 0 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step__text {
    order: 3;
    margin-top: -2.5rem;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    background: #f4f4f4;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
  }
}

.c-step__text p + p {
  margin-top: 1.5rem;
}

.c-step + .c-step::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 120/60;
  background: url(../images/step-chevron-down.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-step + .c-step::before {
    top: -5.375rem;
    width: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-step + .c-step::before {
    top: -4.375rem;
    width: 5rem;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fade-in:not(.is-animated) {
  opacity: 0;
}

.js-fade-in.is-animated {
  animation-name: fade-in;
  animation-duration: 1s;
}

.p-top-access {
  background: #d6cdbd;
}
@media screen and (min-width: 768px) {
  .p-top-access {
    padding: 7.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access {
    padding: 5rem 0;
  }
}

.p-top-access__contents {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-access__contents {
    margin-top: 7.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__contents {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-access__contents .c-bg-deco {
    top: -15rem;
    right: -22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__contents .c-bg-deco {
    top: -7.5rem;
    right: -5rem;
  }
}

.p-top-access .c-double-frame {
  position: relative;
  z-index: 1;
}

.p-top-access .c-double-frame__inner {
  padding: 2.5rem 0;
}

.p-top-access__list {
  margin-right: auto;
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-access__list {
    width: 37.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__list {
    width: 100%;
    padding: 0 1rem;
    font-size: 1rem;
  }
}

.p-top-access__item {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-top-access__item {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__item {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.p-top-access__item:not(:first-child) {
  position: relative;
  padding-top: 1.3125rem;
}
.p-top-access__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: linear-gradient(to right, #a7926a 0, #a7926a 1rem, transparent 1rem, transparent 1.25rem);
  background-size: 1.25rem 0.125rem;
  background-position: top left;
  background-repeat: repeat-x;
}

.p-top-access__item:not(:last-child) {
  padding-bottom: 1.0625rem;
}

.p-top-access__term {
  width: 12.5rem;
  min-width: 12.5rem;
}

.p-top-access__desc {
  width: 25rem;
  max-width: 25rem;
}

.p-top-access__desc small {
  font-size: 0.875rem;
}

.p-top-access__email-link:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.p-top-access__btn-wrapper {
  display: inline-block;
}

.p-top-access__link {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.p-top-access__link:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .p-top-access__map-area {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__map-area {
    margin-top: 5rem;
  }
}

.p-top-access__google-map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-access__google-map {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__google-map {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 768px) {
  .p-top-faq {
    padding: 15rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding: 7.5rem 0;
  }
}

.p-top-faq__contents {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-faq__contents {
    margin-top: 7.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__contents {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-faq__contents .c-bg-deco {
    top: -15rem;
    left: -22.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__contents .c-bg-deco {
    top: -7.5rem;
    left: -5rem;
  }
}

.p-top-faq__tabs {
  position: relative;
  z-index: 1;
  border-bottom: 0.375rem solid #a7926a;
  display: flex;
}

.p-top-faq__tab {
  width: 50%;
  background: #ffffff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #373535;
}
@media screen and (min-width: 768px) {
  .p-top-faq__tab {
    height: 5rem;
    line-height: 5rem;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__tab {
    height: 3rem;
    line-height: 3rem;
    font-size: 1.125rem;
  }
}

.p-top-faq__tab.is-active {
  background: #a7926a;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .p-top-faq__tab-contents {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__tab-contents {
    margin-top: 3rem;
  }
}

.p-top-faq__tab-content {
  display: none;
}

.p-top-faq__tab-content.is-active {
  display: block;
}

.p-top-faq__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-faq__list {
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__list {
    gap: 3rem;
  }
}

.p-top-fv {
  min-height: 40rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    margin-top: 3.75rem;
  }
}

.p-top-fv__bg-light-gray {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100vw;
  height: 13.75rem;
  background: #f4f4f4;
}
@media screen and (min-width: 768px) {
  .p-top-fv__bg-light-gray {
    left: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__bg-light-gray {
    left: calc(50% - 50vw);
  }
}

.p-top-fv__row {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-top-fv__row {
    margin-right: calc(50% - 50vw);
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__row {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .p-top-fv__text-area {
    width: 49rem;
    padding: 6.3125rem 0 3.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__text-area {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__title-area {
    order: 1;
    width: 100%;
    padding-top: 2.5rem;
  }
}

.p-top-fv__title-lead {
  width: 100%;
  background: linear-gradient(to right, rgba(167, 146, 106, 0) 0%, #a7926a 12%, #a7926a 88%, rgba(167, 146, 106, 0) 100%);
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-top-fv__title-lead {
    height: 5rem;
    line-height: 5rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__title-lead {
    padding: 0.75rem 0;
    font-size: 1.25rem;
    line-height: 120%;
  }
}

.p-top-fv__title {
  width: 100%;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-fv__title {
    margin-top: 0.125rem;
    font-size: 4.6875rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    margin-top: 1.25rem;
    font-size: 2.5rem;
    line-height: 120%;
  }
}

.p-top-fv__points {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-top-fv__points {
    margin-top: 3.875rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__points {
    order: 3;
    margin-top: -2rem;
    padding-bottom: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 0.625rem;
  }
}

.p-top-fv__img-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-area {
    order: 2;
  }
}

.p-top-fv__img {
  aspect-ratio: 662/636;
}
@media screen and (min-width: 1280px) {
  .p-top-fv__img {
    width: 41.375rem;
    min-width: 41.375rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-top-fv__img {
    width: 33.75rem;
    min-width: 33.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img {
    width: 100%;
  }
}

.p-top-price {
  background: #d6cdbd;
}
@media screen and (min-width: 768px) {
  .p-top-price {
    padding: 7.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price {
    padding: 5rem 0;
  }
}

.p-top-price__lead {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-price__lead {
    margin-top: 4.0625rem;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__lead {
    margin-top: 2rem;
    font-size: 0.75rem;
  }
}

.p-top-price__contents {
  position: relative;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-top-price__contents .c-bg-deco {
    top: -15rem;
    left: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__contents .c-bg-deco {
    top: -7.5rem;
    left: -5rem;
  }
}

.p-top-price__prices {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-top-price__prices {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .p-top-price__prices {
    gap: 3.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-top-price__prices {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__prices {
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem;
  }
}

.p-top-price__btn {
  margin-right: auto;
  margin-left: auto;
  border-radius: 999px;
  background: #a7926a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-top-price__btn {
    margin-top: 7.5rem;
    width: 37.5rem;
    aspect-ratio: 600/64;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__btn {
    margin-top: 5rem;
    padding: 0.625rem 2.5rem;
    text-align: center;
    font-size: 1.125rem;
  }
}
.p-top-price__btn::after {
  content: "";
  margin-left: 1.5rem;
  width: 1.25rem;
  aspect-ratio: 24/24;
  background: url(../images/price-btn-chevron-down.png) no-repeat center/contain;
  transform: translateY(0.125rem);
}

@media screen and (min-width: 768px) {
  .p-top-price__btn strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__btn strong {
    font-size: 1.5rem;
  }
}

.p-top-price__hidden-prices {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-price__hidden-prices {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-price__hidden-prices {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-reasons {
    padding: 15rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-reasons {
    padding: 7.5rem 0;
  }
}

.p-top-reasons__contents {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-reasons__contents {
    margin-top: 10.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-reasons__contents {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-reasons__contents .c-bg-deco {
    top: -15rem;
    right: -16.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-reasons__contents .c-bg-deco {
    top: -7.5rem;
    right: -5rem;
  }
}

.p-top-reasons__points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-reasons__points {
    gap: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-reasons__points {
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-steps {
    padding: 15rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps {
    padding: 7.5rem 0;
  }
}

.p-top-steps__contents {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-steps__contents {
    margin-top: 10.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__contents {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-steps__contents .c-bg-deco {
    top: -15rem;
    left: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__contents .c-bg-deco {
    top: -7.5rem;
    left: -5rem;
  }
}

.p-top-steps__steps {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-steps__steps {
    gap: 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__steps {
    gap: 7.5rem;
  }
}

.p-top-steps__videos {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-top-steps__videos {
    margin-top: 10rem;
    width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__videos {
    margin-top: 7.5rem;
    width: 100%;
  }
}

.p-top-steps__tabs {
  border-bottom: 0.375rem solid #a7926a;
  display: flex;
}

.p-top-steps__tab {
  width: 50%;
  background: #ffffff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #373535;
}
@media screen and (min-width: 768px) {
  .p-top-steps__tab {
    height: 5rem;
    line-height: 5rem;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__tab {
    height: 3rem;
    line-height: 3rem;
    font-size: 1.125rem;
  }
}

.p-top-steps__tab.is-active {
  background: #a7926a;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .p-top-steps__tab-contents {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-steps__tab-contents {
    margin-top: 3rem;
  }
}

.p-top-steps__tab-content {
  display: none;
}

.p-top-steps__tab-content.is-active {
  display: block;
}

.p-top-steps__youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.p-top {
  display: block;
}

@keyframes glitter {
  0% {
    left: -75%;
  }
  25% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.u-glitter {
  position: relative;
  overflow: hidden;
}

.u-glitter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  animation: glitter 2.5s ease-in-out infinite;
}

@media screen and (max-width: 1279px) {
  .u-pc-only {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .u-pc-hidden {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.u-rotate {
  animation: rotate 60s linear infinite;
}
/* スマートフォン表示時のスタイル調整 */
@media (max-width: 767px) {
  .p-top-access__item .p-top-access__desc {
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .p-top-access__item .p-top-access__desc p {
    max-width: 100%;
  }
  
  .p-top-access__item .p-top-access__desc a {
    word-break: break-all;
  }
}