@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Ubuntu", "YakuHanJP", "Zen Kaku Gothic Antique", "BIZ UDPGothic", "Meiryo", "Noto Sans JP", "Yu Gothic UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.04em;
  overflow-x: clip;
  background-image: url("../images/pat1.webp");
  background-position: left top;
  background-repeat: repeat;
  position: relative;
}

/*
Font Size
=================================== */
.font-size-32 {
  font-size: 2rem;
}

.font-size-28 {
  font-size: 1.75rem;
}

.font-size-26 {
  font-size: 1.625rem;
}

.font-size-24 {
  font-size: 1.5rem;
}

.font-size-23 {
  font-size: 1.4375rem;
}

.font-size-22 {
  font-size: 1.375rem;
}

.font-size-20 {
  font-size: 1.25rem;
}

.font-size-18 {
  font-size: 1.125rem;
}

.font-size-17 {
  font-size: 1.0625rem;
}

.font-size-16 {
  font-size: 1rem;
}

.font-size-15 {
  font-size: 0.9375rem;
}

.font-size-14 {
  font-size: 0.875rem;
}

.font-size-13 {
  font-size: 0.8125rem;
}

/*
Colon (全角コロン用フォント)
=================================== */
.colon {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/*
z-index
=================================== */
/*
position
=================================== */
.center-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

/*
display
=================================== */
.pc-only {
  display: block;
}
@media screen and (max-width: 780px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 780px) {
  .sp-only {
    display: block;
  }
}

.small-pc-only {
  display: none;
}
@media screen and (max-width: 1280px) {
  .small-pc-only {
    display: block;
  }
}
@media screen and (max-width: 780px) {
  .small-pc-only {
    display: none;
  }
}

/*
GO TO TOP
=================================== */
.fadein,
.fadein--top {
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  visibility: visible;
}

.fadein.show,
.fadein--top.show {
  opacity: 1;
  transition-delay: 0.25s;
}

.fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
  visibility: visible;
}

.fadeup.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/*
HEADER
=================================== */
.header {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  max-height: 53.125rem;
  justify-content: space-between;
  position: fixed;
  top: 0;
  padding-top: 1.125rem;
  padding-right: 1.875rem;
  padding-bottom: 0;
  padding-left: 2%;
  width: fit-content;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .header {
    padding-top: 1.2820512821%;
    padding-left: 2.5641025641%;
    padding-right: 2.5641025641%;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    position: relative;
  }
}

.header__left {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-height: 850px) {
  .header__left {
    gap: 2.6dvh;
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__left {
    gap: 1.8dvh;
  }
}

.header.is-stuck {
  position: absolute;
}

.header__logo {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo:hover {
    opacity: 0.7;
  }
}

.header__logo-wrapper {
  aspect-ratio: 339/469;
  max-width: 10.625rem;
  display: block;
}
@media screen and (min-width: 781px) and (max-height: 850px) {
  .header__logo-wrapper {
    max-width: min(13.28125svw, 20dvh);
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__logo-wrapper {
    max-width: min(13.28125svw, 16dvh);
  }
}
@media screen and (max-width: 1280px) {
  .header__logo-wrapper {
    max-width: 18.75rem;
    aspect-ratio: 0/1;
  }
}
@media screen and (max-width: 780px) {
  .header__logo-wrapper {
    aspect-ratio: 445/174;
    aspect-ratio: inherit;
    max-width: 57.0512820513svw;
    width: auto;
  }
}

.header__logo-img {
  height: auto;
  width: 100%;
}

.header__nav {
  background: #fff;
  border: 1px dotted #335587;
  border-radius: 6.875rem;
  box-sizing: border-box;
  max-width: 13.75rem;
  padding: 3.4375rem 0 2.8125rem 0;
  position: relative;
  width: 13.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 781px) and (max-height: 850px) {
  .header__nav {
    max-width: min(13.75rem, 25.9dvh);
    width: min(13.75rem, 25.9dvh);
    padding: min(3.4375rem, 6.5dvh) 0 min(2.8125rem, 5.3dvh) 0;
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__nav {
    max-width: min(13.75rem, 20dvh);
    width: min(13.75rem, 20dvh);
    padding: min(3.4375rem, 5dvh) 0 min(2.8125rem, 4dvh) 0;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 8.125rem;
}
@media screen and (min-width: 781px) and (max-height: 850px) {
  .header__nav-list {
    width: min(8.125rem, 15.3dvh);
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__nav-list {
    width: min(8.125rem, 12dvh);
  }
}

.header__nav-item {
  border-bottom: 1px dotted #c2bbb2;
  position: relative;
  padding: 0 0.1875rem;
  width: 100%;
}
.header__nav-item::before {
  content: "";
  display: block;
  width: 14px;
  height: 0.875rem;
  background-image: url("../images/menu-icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -1.125rem;
  top: 52%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s linear;
}

.header__nav-link {
  align-items: center;
  column-gap: 10px;
  color: #4a4743;
  display: flex;
  font-weight: 500;
  justify-content: flex-start;
  padding: 1.03125rem 0;
  width: 100%;
  text-decoration: none;
  transition: color 0.3s linear;
  position: relative;
}
@media screen and (min-width: 781px) and (max-height: 850px) {
  .header__nav-link {
    padding: min(1.03125rem, 1.94dvh) 0;
    font-size: clamp(0.875rem, 1.0625rem, 2dvh);
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__nav-link {
    padding: min(1.03125rem, 1.5dvh) 0;
    font-size: clamp(0.75rem, 1.0625rem, 1.6dvh);
  }
}
.header__nav-link:hover {
  color: #846d4f;
}

.header__nav-item--current::before {
  opacity: 1;
}

.header__nav-item--current a {
  color: #846d4f;
}

.header__sns {
  margin-top: 0.625rem;
  text-align: center;
}

.header__sns-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__sns-link:hover {
    opacity: 0.7;
  }
}

.header__sns-img-box {
  aspect-ratio: 148/86;
  margin-top: 1.25rem;
}
@media screen and (min-width: 781px) and (max-height: 850px) {
  .header__sns-img-box {
    margin-top: min(1.25rem, 2.35dvh);
  }
}
@media screen and (min-width: 781px) and (max-height: 650px) {
  .header__sns-img-box {
    margin-top: min(1.25rem, 1.5dvh);
  }
}

.header__sns-img {
  width: 100%;
  max-width: 4.625rem;
  height: auto;
}

/*
SP MENU BUTTON
=================================== */
.sp-menu-button {
  display: none;
}
@media screen and (max-width: 1280px) {
  .sp-menu-button {
    aspect-ratio: 1/1;
    align-items: center;
    background-color: #705d44;
    border-radius: 50%;
    flex-direction: column;
    gap: 1.2820512821svw;
    max-width: min(14.358974359svw, 100px);
    position: fixed;
    top: 5.1282051282svw;
    right: 5.1282051282svw;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 140;
  }
}

.sp-menu-group {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.2820512821svw;
  opacity: 1;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-group {
    gap: 8.93px;
  }
}

.sp-menu-group.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.sp-menu-icon {
  background-color: #fff;
  display: block;
  color: #fff;
  height: 0.2564102564svw;
  position: relative;
  width: 5.1282051282svw;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-icon {
    height: 1.79px;
    width: 35.7px;
  }
}

.sp-menu-icon--long {
  width: 7.6923076923svw;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-icon--long {
    width: 53.6px;
  }
}

@media screen and (max-width: 1280px) {
  .sp-menu-img {
    aspect-ratio: 124/23;
    height: auto;
    margin-top: 0.641025641svw;
    max-width: 7.6923076923svw;
  }
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-img {
    max-width: 53.6px;
  }
}

/*
SP MENU CIRCLE BACKGROUND
=================================== */
.sp-menu-circle-bg {
  background-color: #705d44;
  border-radius: 50%;
  display: none;
  height: 200px;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  width: 200px;
  z-index: 145;
}
@media screen and (max-width: 1280px) {
  .sp-menu-circle-bg {
    display: block;
  }
}

.sp-menu-circle-bg.is-open {
  transform: scale(15);
}

/*
SP MENU OVERLAY
=================================== */
.sp-menu-overlay {
  align-items: center;
  background-color: transparent;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  height: 100dvh;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: scroll;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 150;
}

.sp-menu-overlay.is-open {
  pointer-events: auto;
  display: flex;
}

.sp-menu-overlay.is-visible {
  opacity: 1;
}

.sp-menu-overlay__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  height: fit-content;
  padding: 50px 0;
}

.sp-menu-overlay__inner {
  align-items: center;
  background-color: #fff;
  border: 1px dotted #beb9b2;
  border-radius: 1000px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 10.2432778489svw, 80px) clamp(18.75px, 3.8412291933svw, 30px);
  position: relative;
  width: clamp(250px, 51.2163892446svw, 400px);
}
@media screen and (min-width: 781px) and (max-width: 1280px) {
  .sp-menu-overlay__inner {
    width: 400px;
    padding: 80px 30px;
  }
}
@media screen and (max-width: 780px) {
  .sp-menu-overlay__inner {
    width: 87.0678617157svw;
    padding-top: 22.4071702945svw;
    padding-bottom: 22.4071702945svw;
  }
}

.sp-menu-overlay__close {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #705d44;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1.2820512821svw;
  justify-content: center;
  max-width: min(14.358974359svw, 100px);
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 200;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-overlay__close {
    gap: 8.93px;
  }
}

.sp-menu-overlay__close.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sp-menu-overlay__close-img-box {
  max-width: 60px;
  width: 7.6923076923svw;
}
@media screen and (min-width: 696px) and (max-width: 1280px) {
  .sp-menu-overlay__close-img-box {
    max-width: 53.6px;
  }
}

.sp-menu-overlay__close-img {
  height: auto;
  width: 100%;
}

.sp-menu-overlay__close-mark {
  display: flex;
  height: 3.8461538462svw;
  position: relative;
  width: 7.6923076923svw;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-overlay__close-mark {
    height: 26.8px;
    width: 53.6px;
  }
}

.sp-menu-overlay__close-line {
  background-color: #fff;
  height: 0.2564102564svw;
  position: absolute;
  top: 1.2820512821svw;
  width: 7.6923076923svw;
}
@media screen and (min-width: 696.43px) and (max-width: 1280px) {
  .sp-menu-overlay__close-line {
    height: 1.79px;
    top: 8.93px;
    width: 53.6px;
  }
}

.sp-menu-overlay__close-line:first-child {
  transform: rotate(15deg);
}

.sp-menu-overlay__close-line:last-child {
  transform: rotate(-15deg);
}

.sp-menu-overlay__nav {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: clamp(162.5px, 33.290653009svw, 260px);
}
@media screen and (min-width: 781px) and (max-width: 1280px) {
  .sp-menu-overlay__nav {
    width: 260px;
  }
}
@media screen and (max-width: 780px) {
  .sp-menu-overlay__nav {
    width: 51.2163892446svw;
  }
}

.sp-menu-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.sp-menu-overlay__item {
  border-bottom: clamp(1.25px, 0.2560819462svw, 2px) dotted #c6c0b7;
  width: 100%;
}
@media screen and (min-width: 781px) and (max-width: 1280px) {
  .sp-menu-overlay__item {
    border-bottom: 2px dotted #c6c0b7;
  }
}

.sp-menu-overlay__item--current .sp-menu-overlay__link {
  color: #846d4f;
}

.sp-menu-overlay__link {
  color: #4a4743;
  display: block;
  font-size: clamp(10px, 2.0486555698svw, 16px);
  font-weight: 500;
  padding: clamp(15px, 3.0729833547svw, 24px) clamp(12.5px, 2.5608194622svw, 20px);
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (min-width: 781px) and (max-width: 1280px) {
  .sp-menu-overlay__link {
    font-size: 16px;
    padding: 24px 20px;
  }
}
@media screen and (max-width: 780px) {
  .sp-menu-overlay__link {
    font-size: 4.1025641026svw;
    padding: 4.2307692308svw 4.2307692308svw;
  }
}

.sp-menu-overlay__link:hover {
  color: #846d4f;
}

.sp-menu-overlay__sns {
  text-align: center;
}

.sp-menu-overlay__sns-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.sp-menu-overlay__sns-link:hover {
  opacity: 0.7;
}

.sp-menu-overlay__sns-link img {
  height: auto;
  margin-top: clamp(21.25px, 4.3533930858svw, 34px);
  width: clamp(75px, 15.3649167734svw, 120px);
}
@media screen and (min-width: 781px) and (max-width: 1280px) {
  .sp-menu-overlay__sns-link img {
    margin-top: 34px;
    width: 120px;
  }
}
@media screen and (max-width: 780px) {
  .sp-menu-overlay__sns-link img {
    width: 20.4865556978svw;
  }
}

/*
GO TO TOP
=================================== */
.go-to-top {
  position: absolute;
  bottom: 138px;
  right: 30px;
  opacity: 1;
  z-index: 110;
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  .go-to-top {
    bottom: 18.5897435897svw;
    right: 5.1282051282svw;
  }
}

.go-to-top-inactive {
  opacity: 0;
}

.go-to-top__button {
  width: 4.0625rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}
.go-to-top__button.hidden {
  display: none;
}
@media screen and (max-width: 780px) {
  .go-to-top__button {
    width: 11.2820512821svw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .go-to-top__button:hover .go-to-top__arrow-wrap {
    scale: 1.15;
    transition: 0.3s;
  }
}

.go-to-top__arrow-wrap {
  width: 100%;
  transition: 0.3s;
}

.go-to-top__text {
  width: 60%;
}

/*
FOOTER
=================================== */
.footer {
  padding-top: 22.1875rem;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 780px) {
  .footer {
    padding-top: 29.4871794872svw;
  }
}

.footer__inner {
  align-items: center;
  background-color: #6f6456;
  display: flex;
  justify-content: center;
  height: 7.5rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .footer__inner {
    height: 26.9230769231svw;
  }
}

.footer__svg-wrapper {
  position: absolute;
  left: 0;
  z-index: 40;
  height: 100%;
  width: 100%;
}

.footer__svg-wrapper-1 {
  aspect-ratio: 3072/256.6;
  top: -8.203125svw;
  z-index: 93;
}

.footer__svg-1 {
  width: 100%;
  height: auto;
}

.footer__svg-wrapper-2 {
  aspect-ratio: 3072/348;
  top: -11.328125svw;
  z-index: 94;
}

.footer__svg-2 {
  width: 100%;
  height: auto;
}

.footer__text {
  color: #fff;
  z-index: 95;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .footer__text {
    font-size: 3.0769230769svw;
    margin-top: 6.4102564103svw;
  }
}

/*
MODAL
=================================== */
.modal {
  box-sizing: border-box;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 26vh 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 150;
}
.modal.is-open {
  display: block;
  padding: 7.5vh 0;
}

.modal__overlay {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
}

.modal__window {
  border-radius: 1.75rem 15rem 1.75rem 1.75rem;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 61.25rem;
  overflow: visible;
  position: relative;
  width: 90%;
  z-index: 310;
}
@media screen and (max-width: 780px) {
  .modal__window {
    width: 90%;
  }
}

.modal__window-inner {
  background-color: #fff;
  border-radius: 1.75rem 15rem 1.75rem 1.75rem;
  padding: 6.0625rem 0;
  position: relative;
  z-index: 310;
}
@media screen and (max-width: 1000px) {
  .modal__window-inner {
    padding: 15svw 4.4871794872svw 20.5128205128svw;
    border-radius: 3.5897435897svw 40.3846153846svw 3.5897435897svw 3.5897435897svw;
  }
}

.modal__accent {
  background-color: #988976;
  border-radius: 1.75rem 1.5rem 1.75rem 1.75rem;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 305;
}

.modal__close-top {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  position: absolute;
  right: 0.5rem;
  top: 1.25rem;
  z-index: 320;
}
@media screen and (max-width: 780px) {
  .modal__close-top {
    gap: 0.8974358974svw;
    top: 3.4615384615svw;
    right: 0.641025641svw;
  }
}

.modal__close-icon {
  height: 1.5625rem;
  position: relative;
  width: 1.5625rem;
}
.modal__close-icon::before, .modal__close-icon::after {
  background-color: #fff;
  content: "";
  height: 0.1875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 1.5625rem;
}
.modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 780px) {
  .modal__close-icon {
    height: 3.2051282051svw;
    width: 3.2051282051svw;
  }
  .modal__close-icon::before, .modal__close-icon::after {
    height: 0.641025641svw;
    width: 5.7692307692svw;
  }
}

.modal__close-text {
  width: 3.125rem;
}
@media screen and (max-width: 780px) {
  .modal__close-text {
    width: 9.2307692308svw;
    padding-top: 1.2820512821svw;
  }
}

.modal__inner {
  display: flex;
  flex-direction: column;
  padding: 0 6.125rem;
  position: relative;
  z-index: 310;
}
@media screen and (max-width: 1000px) {
  .modal__inner {
    padding: 0 3.0625rem;
  }
}
@media screen and (max-width: 780px) {
  .modal__inner {
    padding: 0;
  }
}

.modal__title {
  color: #846d4f;
  font-weight: 500;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .modal__title {
    font-size: 5.3846153846svw;
  }
}

.modal__line-wrapper {
  aspect-ratio: 152/8;
  margin: 1.0625rem auto 0;
  max-width: 4.8125rem;
}
@media screen and (max-width: 780px) {
  .modal__line-wrapper {
    margin-top: 3.8461538462svw;
    max-width: 19.4871794872svw;
  }
}

.modal__line {
  height: auto;
  width: 100%;
}

.modal__description {
  color: #4a4743;
  line-height: 1.8;
  margin-top: 2.125rem;
}
@media screen and (max-width: 780px) {
  .modal__description {
    font-size: 3.5897435897svw;
    line-height: 1.6071428571;
    margin-top: 7.5641025641svw;
  }
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin-top: 2.875rem;
}
@media screen and (max-width: 780px) {
  .modal__content {
    gap: 5.5128205128svw;
    margin-top: 8.0769230769svw;
  }
}

.modal__section {
  display: flex;
  flex-direction: column;
}
.modal__section-title {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .modal__section-title {
    font-size: 3.5897435897svw;
    line-height: 1.6285714286;
  }
}

.modal__section-text {
  color: #4a4743;
  line-height: 1.8;
  margin-top: 1.125rem;
}
@media screen and (max-width: 780px) {
  .modal__section-text {
    font-size: 3.3333333333svw;
    line-height: 1.6307692308;
  }
}

.modal__section-text--bold {
  font-weight: 500;
}

.modal__list {
  color: #4a4743;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  line-height: 1.8;
  margin-left: 2.0625rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 780px) {
  .modal__list {
    font-size: 3.3333333333svw;
    line-height: 1.6923076923;
    gap: 0;
    margin-left: 3.8461538462svw;
    padding-left: 3.0769230769svw;
    margin-top: 2.6923076923svw;
  }
}

.modal__list-item {
  padding-left: 10px;
}
@media screen and (max-width: 780px) {
  .modal__list-item {
    padding-left: 1.2820512821svw;
  }
}

.modal__contact-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.125rem;
}
@media screen and (max-width: 780px) {
  .modal__contact-list {
    margin-top: 2.8205128205svw;
  }
}

.modal__contact-list-text {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 780px) {
  .modal__contact-list-text {
    font-size: 3.3333333333svw;
  }
}

.modal__close-bottom {
  align-items: center;
  background-color: #705d44;
  border: none;
  border-radius: 1.75rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-weight: 500;
  gap: 0.5rem;
  height: 3.5rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.3125rem;
  transition: background-color 0.3s ease;
  width: 15.625rem;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close-bottom:hover {
    background-color: #896d47;
  }
}
@media screen and (max-width: 780px) {
  .modal__close-bottom {
    border-radius: 6.4102564103svw;
    font-size: 4.358974359svw;
    gap: 2.5641025641svw;
    height: 12.8205128205svw;
    margin-top: 14.6153846154svw;
    width: 58.9743589744svw;
  }
}

.modal__close-bottom-icon {
  display: block;
  height: 1.25rem;
  position: relative;
  width: 1.25rem;
}
.modal__close-bottom-icon::before, .modal__close-bottom-icon::after {
  background-color: #fff;
  content: "";
  height: 0.1875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 1.25rem;
}
.modal__close-bottom-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-bottom-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 780px) {
  .modal__close-bottom-icon {
    height: 3.8461538462svw;
    width: 3.8461538462svw;
  }
  .modal__close-bottom-icon::before, .modal__close-bottom-icon::after {
    height: 0.641025641svw;
    width: 5.7692307692svw;
  }
}

.main__inner {
  max-width: 75vw;
  margin-left: auto;
  margin-right: 4.5rem;
}
@media screen and (max-width: 1280px) {
  .main__inner {
    margin-right: 2.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }
}

.contact-group {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 1.25rem;
  right: 1.875rem;
  width: 100%;
  z-index: 120;
  gap: 0.75rem;
  margin-top: 0.125rem;
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  .contact-group {
    display: none;
  }
}

.contact-group__text {
  color: #665948;
  font-weight: 500;
}

.contact-group__button {
  background-color: #705d44;
  border-radius: 1.625rem;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s linear;
  position: relative;
  overflow: hidden;
  height: 3.25rem;
  width: 15.125rem;
}
.contact-group__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  margin: auto;
  width: 60px;
  height: 60px;
  background: #896d47;
  transform: scale(0);
  transition: 0.6s ease all;
  z-index: 2;
}
.contact-group__button:hover::before {
  transform: scale(4.2);
}

.contact-group__button-icon {
  font-weight: 500;
  z-index: 3;
}

.contact-group__button-text {
  font-weight: 500;
  margin-left: 0.3125rem;
  z-index: 3;
}

/*
FV
=================================== */
.fv__inner {
  justify-content: flex-end;
  display: flex;
  padding-top: 2.1875rem;
}
@media screen and (max-width: 1280px) {
  .fv__inner {
    align-items: flex-start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-top: 0svw;
    height: auto;
  }
}

.fv__img-box {
  aspect-ratio: 2454/1640;
  height: auto;
  width: 80.013%;
  position: relative;
  left: -1%;
}
@media screen and (max-width: 1280px) {
  .fv__img-box {
    width: 95%;
    left: 3%;
  }
}
@media screen and (max-width: 780px) {
  .fv__img-box {
    display: flex;
    justify-content: flex-start;
    aspect-ratio: 1560/1630;
    width: 100%;
    margin-top: 5%;
    left: 0;
  }
}

.fv__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 780px) {
  .fv__img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
}

.fv__bg {
  width: 86%;
  height: 96%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 780px) {
  .fv__bg {
    width: 100%;
    height: 80%;
    object-fit: contain;
    bottom: 3%;
  }
}

.fv__body {
  display: none;
}
@media screen and (max-width: 780px) {
  .fv__body {
    display: block;
    height: 12.8205128205svw;
    width: 100%;
  }
}

/*
GREETING
=================================== */
.greeting {
  margin-top: 7.625rem;
  scroll-margin-top: 6.25rem;
  margin-left: 4.375rem;
}
@media screen and (max-width: 1280px) {
  .greeting {
    scroll-margin-top: 10.15625svw;
  }
}
@media screen and (max-width: 780px) {
  .greeting {
    margin-top: 17.3076923077svw;
    margin-left: 0;
    scroll-margin-top: 17.3076923077svw;
  }
}

.greeting__inner {
  display: flex;
  flex-direction: row;
  max-width: 100vw;
  justify-content: center;
  padding: 0 1.25rem;
}
@media screen and (max-width: 1536px) {
  .greeting__inner {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1280px) {
  .greeting__inner {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
    justify-items: center;
    align-items: start;
    gap: 2.5rem 3.125rem;
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 780px) {
  .greeting__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0svw auto 0;
    padding: 0;
    gap: 0;
    width: 80%;
    scroll-margin-top: 23.5897435897svw;
  }
}

.greeting__col-images {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.625rem;
}
@media screen and (max-width: 1280px) {
  .greeting__col-images {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 780px) {
  .greeting__col-images {
    order: 1;
    margin-top: 5.5128205128svw;
    margin-left: 4.4871794872svw;
    gap: 0;
  }
}

.greeting__img-box-1 {
  aspect-ratio: 587/392;
  width: 18.4375rem;
}
@media screen and (max-width: 780px) {
  .greeting__img-box-1 {
    width: 51.2820512821svw;
  }
}

.greeting__img1 {
  height: auto;
  width: 100%;
}

.greeting__img-box-2 {
  aspect-ratio: 318/380;
  height: auto;
  margin-left: -4.0625rem;
  max-width: 159px;
}
@media screen and (max-width: 1280px) {
  .greeting__img-box-2 {
    margin-left: -4.0625rem;
  }
}
@media screen and (max-width: 780px) {
  .greeting__img-box-2 {
    margin-top: -3.2051282051svw;
    margin-left: -11.6666666667svw;
    max-width: 28.2051282051svw;
  }
}

.greeting__img2 {
  height: auto;
  width: 100%;
}

.greeting__col-message {
  display: flex;
  max-width: 493px;
  margin-top: 5.9375rem;
  margin-left: 3.8411458333svw;
  width: 100%;
  order: 2;
}
@media screen and (max-width: 1280px) {
  .greeting__col-message {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 0;
    margin-left: 0;
    justify-content: center;
    max-width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .greeting__col-message {
    order: 3;
    width: 100%;
    margin-top: 6.1538461538svw;
    margin-left: 0;
    justify-content: center;
  }
}

.greeting__text {
  color: #4a4743;
  font-weight: 500;
  line-height: 2.5;
  text-align: left;
  word-break: break-word;
}
@media screen and (max-width: 1280px) {
  .greeting__text {
    max-width: 30.8125rem;
  }
}
@media screen and (max-width: 780px) {
  .greeting__text {
    font-size: 3.5897435897svw;
    line-height: 2;
    max-width: inherit;
  }
}

.greeting__col-title {
  aspect-ratio: 165/645;
  align-items: center;
  margin-top: 3.125rem;
  margin-left: 3.4505208333svw;
  min-width: 5.125rem;
  max-width: 5.125rem;
  order: 3;
}
@media screen and (max-width: 1280px) {
  .greeting__col-title {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-top: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 780px) {
  .greeting__col-title {
    order: 2;
    width: auto;
    min-width: inherit;
    margin-left: 6.6666666667svw;
    max-width: 14.7435897436svw;
  }
}

.greeting__title-img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .greeting__title-img {
    max-width: 5rem;
  }
}
@media screen and (max-width: 780px) {
  .greeting__title-img {
    max-width: 14.7435897436svw;
  }
}

/*
FEATURES
=================================== */
.features {
  margin-top: 11.5625rem;
}
@media screen and (max-width: 780px) {
  .features {
    margin-top: 23.7179487179svw;
  }
}

.features__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .features__inner {
    margin: 0 auto;
    width: 86%;
  }
}

.features__title-box {
  aspect-ratio: 931/74;
  text-align: center;
}

.features__title-img {
  height: auto;
  max-width: 29.375rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .features__title-img {
    max-width: 71.7948717949svw;
  }
}

.features__list {
  display: grid;
  gap: 1.8125rem 4.2317708333svw;
  grid-template-columns: repeat(3, minmax(17.5rem, 21.25rem));
  justify-content: center;
  list-style: none;
  margin-top: 4.875rem;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .features__list {
    grid-template-columns: repeat(2, minmax(15.625rem, 21.25rem));
    justify-content: center;
  }
}
@media screen and (max-width: 780px) {
  .features__list {
    display: flex;
    flex-direction: column;
    margin-top: 7.4358974359svw;
    gap: 6.5384615385svw;
  }
}

.features__item {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 780px) {
  .features__item {
    gap: 3.5897435897svw;
  }
}

@media screen and (max-width: 1280px) {
  .features__item:nth-child(even) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 780px) {
  .features__item:nth-child(even) {
    margin-top: 0;
  }
}

.features__item--offset-small {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .features__item--offset-small {
    margin-top: 0;
  }
}

.features__item--offset-large {
  margin-top: 5rem;
}
@media screen and (max-width: 1280px) {
  .features__item--offset-large {
    margin-top: 0;
  }
}

.features__image-box {
  aspect-ratio: 680/420;
  width: 100%;
}

.features__image {
  height: auto;
  width: 100%;
}

.features__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 780px) {
  .features__content {
    gap: 3.0769230769svw;
  }
}

.features__content-title {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .features__content-title {
    font-size: 4.6153846154svw;
    line-height: 1.3888888889;
  }
}

.features__content-text {
  color: #4a4743;
  line-height: 1.7058823529;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .features__content-text {
    font-size: 3.5897435897svw;
    line-height: 1.6071428571;
  }
}

/*
SCHOOL
=================================== */
.school {
  margin-top: 10.9375rem;
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 780px) {
  .school {
    margin-top: 24.358974359svw;
    scroll-margin-top: 23.5897435897svw;
  }
}

.school__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .school__inner {
    margin: 0 auto;
    width: 90%;
  }
}

.school__title-box {
  aspect-ratio: 547/74;
  text-align: center;
}

.school__title-img {
  height: auto;
  max-width: 17.1875rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__title-img {
    max-width: 42.3076923077svw;
  }
}

.school__description {
  color: #4a4743;
  margin-top: 1.75rem;
  line-height: 1.6111111111;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .school__description {
    font-size: 3.5897435897svw;
    line-height: 1.6071428571;
    margin-top: 3.2051282051svw;
  }
}

.school__contents-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-top: 3.25rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__contents-group {
    margin-top: 8.3333333333svw;
    gap: 7.6923076923svw;
  }
}

.school__content {
  background-color: #fff;
  border-radius: 10px 50px 10px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 4.2317708333svw;
  padding: 3.5625rem 4.75rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .school__content {
    padding: 3.5625rem 2.375rem;
  }
}
@media screen and (max-width: 780px) {
  .school__content {
    flex-direction: column;
    gap: 7.0512820513svw;
    padding: 11.7948717949svw 4.4871794872svw;
  }
}

.school__info {
  flex: 1;
  margin-top: 2.625rem;
}
@media screen and (max-width: 780px) {
  .school__info {
    border-radius: 6.4102564103svw 1.2820512821svw 1.2820512821svw 6.4102564103svw;
    margin-top: 0;
  }
}

.school__info-label {
  border-radius: 0 0 0.625rem 0.625rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  left: -0.8125rem;
  padding: 0.875rem 1.5rem;
  position: absolute;
  top: -0.8125rem;
  text-align: center;
  width: 11.375rem;
}
.school__info-label::before {
  border-color: transparent transparent #45836a transparent;
  border-style: solid;
  border-width: 0 0.8125rem 0.8125rem 0;
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 0rem;
}
@media screen and (max-width: 780px) {
  .school__info-label {
    border-radius: 0 0 1.2820512821svw 0;
    font-size: 4.6153846154svw;
    left: -1.6666666667svw;
    padding: 2.0512820513svw 4.1025641026svw;
    top: -1.9230769231svw;
    width: 28.4615384615svw;
  }
  .school__info-label::before {
    border-width: 0 1.9230769231svw 1.9230769231svw 0;
    right: -1.9230769231svw;
    top: 0svw;
  }
}

.school__info-label--green {
  background-color: #589e81;
}
.school__info-label--green::before {
  border-color: transparent transparent #45836a transparent;
}

.school__info-label--pink {
  background-color: #f6abb4;
}
.school__info-label--pink::before {
  border-color: transparent transparent #df7f8a transparent;
}

.school__table {
  border-collapse: collapse;
  width: 100%;
}

.school__table-body {
  display: flex;
  flex-direction: column;
}

.school__table-row {
  border-bottom: 1px dotted #c2bbb2;
  display: flex;
  padding: 0.90625rem 0;
}
@media screen and (max-width: 1280px) {
  .school__table-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .school__table-row {
    gap: 1.5384615385svw;
    padding: 2.5641025641svw 0;
  }
}

.school__table-row:first-child {
  padding-top: 0;
}

.school__table-row:last-child {
  border-bottom: none;
}

.school__table-header {
  color: #4a4743;
  font-weight: 500;
  text-align: left;
  min-width: 10.125rem;
  line-height: 1.5882352941;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (max-width: 780px) {
  .school__table-header {
    font-size: 3.5897435897svw;
  }
}

.school__table-data {
  vertical-align: top;
}

.school__table-data--multi {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}

.school__table-text {
  color: #4a4743;
  line-height: 1.5882352941;
}
@media screen and (max-width: 780px) {
  .school__table-text {
    font-size: 3.3333333333svw;
    line-height: 1.5714285714;
  }
}

.school__table-text--link {
  text-decoration-color: #dbdbda;
  transition: opacity 0.3s ease;
}
.school__table-text--link:hover {
  opacity: 0.7;
}

.school__table-text--small {
  line-height: 1.4285714286;
}
@media screen and (max-width: 780px) {
  .school__table-text--small {
    font-size: 3.3333333333svw;
    line-height: 1.6153846154;
  }
}

.school__table-text--multi {
  line-height: 1.2941176471;
}
@media screen and (max-width: 780px) {
  .school__table-text--multi {
    line-height: 1.3076923077;
  }
}

.school__gallery {
  display: flex;
  flex-direction: column;
  max-width: 27.1875rem;
  width: 44%;
}
@media screen and (max-width: 1280px) {
  .school__gallery {
    max-width: inherit;
    width: 50%;
  }
}
@media screen and (max-width: 780px) {
  .school__gallery {
    width: 100%;
  }
}

.school__gallery-title-box {
  text-align: right;
}

.school__gallery-title-img {
  height: auto;
  max-width: 10.625rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__gallery-title-img {
    max-width: 41.9230769231svw;
  }
}

.school__slider-main {
  aspect-ratio: 876/620;
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__slider-main {
    margin-top: 2.5641025641svw;
  }
}

.school__slider-main-item {
  aspect-ratio: 876/620;
  width: 100%;
}

.school__slider-main-img {
  border-radius: 0.625rem;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__slider-main-img {
    border-radius: 1.2820512821svw;
  }
}

.school__slider-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  justify-content: start;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 780px) {
  .school__slider-thumbs {
    gap: 1.2820512821svw;
    margin-top: 3.4615384615svw;
  }
}

.school__slider-thumbs-item {
  aspect-ratio: 160/114;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .school__slider-thumbs-item {
    border-radius: 1.0256410256svw;
  }
}

.school__slider-thumbs-item--active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid;
  border-radius: 0.5rem;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 780px) {
  .school__slider-thumbs-item--active::before {
    border-radius: 1.0256410256svw;
  }
}

.school__slider-thumbs-item--active-green::before {
  border-color: #589e81;
}

.school__slider-thumbs-item--active-pink::before {
  border-color: #f6abb4;
}

.school__slider-thumbs-img {
  height: auto;
  width: 100%;
}

/*
LESSON
=================================== */
.lesson {
  margin-top: 12.5rem;
  padding-top: 6.25rem;
  padding-bottom: 11.25rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .lesson {
    margin-right: auto;
  }
}
@media screen and (max-width: 780px) {
  .lesson {
    margin-left: 0;
    margin-right: 0;
    margin-top: 13.0769230769svw;
    padding-top: 13.0769230769svw;
    padding-bottom: 12.8205128205svw;
    scroll-margin-top: 11.5384615385svw;
  }
}

.lesson:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(../images/pat2.webp);
  background-repeat: repeat;
  background-position: center;
  background-attachment: scroll;
  position: absolute;
  top: 0;
  right: -4.5rem;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .lesson:after {
    right: 0;
  }
}

.swipe-hint {
  display: none;
}
@media screen and (max-width: 1280px) {
  .swipe-hint {
    display: block;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 50rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 12.5rem;
    opacity: 0;
    transition: opacity 2s ease;
    pointer-events: none;
  }
}
@media screen and (max-width: 780px) {
  .swipe-hint {
    top: 129.7435897436svw;
  }
}

.swipe-hint img {
  width: 100%;
}

.swipe-hint.is-visible {
  opacity: 1;
}

.lesson__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  margin-left: auto;
  margin-right: 4.5rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .lesson__inner {
    margin-right: 2.25rem;
    max-width: 85vw;
  }
}
@media screen and (max-width: 780px) {
  .lesson__inner {
    box-sizing: border-box;
    margin-left: 0;
    max-width: inherit;
    padding-left: 5.1282051282svw;
  }
}

.lesson__title-wrapper {
  aspect-ratio: 845/209;
  margin-right: auto;
}

.lesson__title-img {
  height: auto;
  max-width: 26.875rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .lesson__title-img {
    max-width: 53.8461538462svw;
  }
}

.lesson__description {
  color: #4a4743;
  margin-top: 2.4375rem;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .lesson__description {
    line-height: 1.6111111111;
  }
}
@media screen and (max-width: 780px) {
  .lesson__description {
    box-sizing: border-box;
    font-size: 3.5897435897svw;
    line-height: 1.6071428571;
    margin-top: 3.8461538462svw;
    padding-right: 5.1282051282svw;
  }
}

.swiper-backface-hidden .swiper-slide.lesson__slide {
  height: auto;
}

.lesson__slider-wrapper {
  margin-top: 3.75rem;
  overflow: visible;
  position: relative;
  margin-left: 4.5rem;
  width: calc(75vw + 4.5rem);
}
@media screen and (max-width: 1280px) {
  .lesson__slider-wrapper {
    margin-left: 2.25rem;
    width: calc(85vw + 2.25rem);
  }
}
@media screen and (max-width: 780px) {
  .lesson__slider-wrapper {
    margin-left: 0;
    margin-top: 14.1025641026svw;
    overflow: visible;
    width: 94.8717948718svw;
  }
}

#lesson .swiper-pagination {
  display: none;
}
@media screen and (max-width: 780px) {
  #lesson .swiper-pagination {
    display: block;
    bottom: -8.9743589744svw !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2.5641025641svw !important;
  width: 2.8205128205svw !important;
  height: 2.8205128205svw !important;
  border-radius: 50%;
  border: 1px solid #a49380 !important;
  background: #fff;
  opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #a49380 !important;
}

.lesson__slider {
  overflow: visible;
  width: calc(75vw + 4.5rem);
}
@media screen and (max-width: 1280px) {
  .lesson__slider {
    width: calc(85vw + 2.25rem);
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slider {
    overflow: visible;
    width: 94.8717948718svw;
  }
}

.lesson__slide {
  box-sizing: border-box;
  width: calc(75vw - 1.875rem);
}
@media screen and (max-width: 1280px) {
  .lesson__slide {
    width: calc(75vw - 1.25rem);
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide {
    width: 85.8974358974svw;
  }
}

.lesson__slide-content {
  align-items: stretch;
  background-color: #fff;
  border-radius: 0.625rem 3.125rem 0.625rem 3.125rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .lesson__slide-content {
    flex-direction: column;
    order: 2;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide-content {
    border-radius: 1.2820512821svw 6.4102564103svw 1.2820512821svw 6.4102564103svw;
    flex-direction: column;
    gap: 5.641025641svw;
    padding: 8.8461538462svw 3.9743589744svw;
  }
}

.lesson__slide-text-area {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.625rem;
  order: 2;
  padding: 5rem 3.75rem;
}
@media screen and (max-width: 1280px) {
  .lesson__slide-text-area {
    padding: 3.75rem 2.5rem;
    order: 2;
    padding-top: 0;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide-text-area {
    gap: 0;
    padding: 0;
  }
}

.lesson__slide-title {
  color: #4a4743;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.lesson__slide-title::before {
  border-radius: 50%;
  content: "";
  height: 3.75rem;
  left: -1.875rem;
  position: absolute;
  top: -1.5625rem;
  width: 3.75rem;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .lesson__slide-title::before {
    height: 3.125rem;
    left: -1.25rem;
    top: -0.9375rem;
    width: 3.125rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide-title {
    font-size: 4.1025641026svw;
    line-height: 1.375;
  }
  .lesson__slide-title::before {
    height: 10.2564102564svw;
    left: -1.9230769231svw;
    top: -2.5641025641svw;
    width: 10.2564102564svw;
  }
}

.lesson__slide-title--yellow::before {
  background-color: #fdf3d4;
}

.lesson__slide-title--green::before {
  background-color: #e8f3ed;
}

.lesson__slide-title--pink::before {
  background-color: #fde9eb;
}

.lesson__slide-title--purple::before {
  background-color: #e4dbfe;
}

.lesson__slide-description {
  color: #4a4743;
  line-height: 1.8235294118;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .lesson__slide-description {
    font-size: 3.3333333333svw;
    line-height: 1.6;
    margin-top: 3.2051282051svw;
  }
}

.lesson__slide-schedule {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule {
    gap: 3.8461538462svw;
    margin-top: 5.3846153846svw;
  }
}

.lesson__slide-schedule-title {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.28;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-title {
    font-size: 3.5897435897svw;
    line-height: 1.5714285714;
  }
}

.lesson__slide-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  list-style: none;
  margin-top: 1.625rem;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-list {
    gap: 1.2820512821svw;
    margin-top: 0.7692307692svw;
  }
}

.lesson__slide-schedule-item {
  align-items: stretch;
  display: flex;
  gap: 1.6875rem;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-item {
    align-items: flex-start;
    gap: 5.1282051282svw;
    padding-bottom: 2.0512820513svw;
  }
}

.lesson__slide-schedule-item:last-child {
  border-bottom: none;
}

.lesson__slide-schedule-head {
  align-items: center;
  background-color: #eee9e2;
  box-sizing: border-box;
  color: #4a4743;
  display: flex;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  line-height: 1.5882352941;
  min-width: 4.375rem;
  padding: 0.3125rem;
  height: fit-content;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-head {
    font-size: 3.0769230769svw;
    line-height: 1;
    min-width: 7.6923076923svw;
    padding: 1.2820512821svw;
  }
}

.lesson__slide-schedule-detail {
  color: #4a4743;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-detail {
    font-size: 3.3333333333svw;
    line-height: 1.3;
    position: relative;
    top: 0.1875rem;
  }
}

.lesson__slide-image-area {
  flex-shrink: 0;
  display: flex;
  max-width: 31.875rem;
  order: 1;
  width: 46%;
}
@media screen and (max-width: 1280px) {
  .lesson__slide-image-area {
    order: 1;
    margin: 0 auto 60px;
    max-width: inherit;
    width: 86%;
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide-image-area {
    aspect-ratio: 603/440;
    margin: 0;
    width: 100%;
    padding-top: 0;
  }
}

.lesson__slide-image {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 3.125rem;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .lesson__slide-image {
    border-bottom-left-radius: 0.625rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson__slide-image {
    border-radius: 2.0512820513svw;
  }
}

.lesson__nav {
  display: flex;
  gap: 0.5625rem;
  position: absolute;
  right: 4.5rem;
  top: -4.6875rem;
  z-index: 10;
}
@media screen and (max-width: 1280px) {
  .lesson__nav {
    right: 2.375rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson__nav {
    gap: 2.0512820513svw;
    right: 8.7179487179svw;
    top: -12.0512820513svw;
  }
}

.lesson__nav-button {
  align-items: center;
  background-color: transparent;
  background-color: #fff;
  border: 1px solid #c2bbb2;
  border-radius: 50%;
  color: #c2bbb2;
  cursor: pointer;
  display: flex;
  font-size: 1.125rem;
  height: 3.875rem;
  justify-content: center;
  transition: all 0.3s ease;
  width: 3.875rem;
}
@media (hover: hover) and (pointer: fine) {
  .lesson__nav-button:hover {
    background-color: #877b6b;
    border-color: #877b6b;
    color: #fff;
  }
}
@media screen and (max-width: 780px) {
  .lesson__nav-button {
    border-width: 0.2564102564svw;
    font-size: 3.8461538462svw;
    height: 9.2307692308svw;
    width: 9.2307692308svw;
  }
}

.lesson__nav-button-icon {
  display: block;
  flex-shrink: 0;
  transition: filter 0.3s ease;
  width: 1.625rem;
  height: auto;
}
@media screen and (max-width: 780px) {
  .lesson__nav-button-icon {
    width: 3.8461538462vw;
    height: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .lesson__nav-button:hover .lesson__nav-button-icon {
    filter: brightness(0) saturate(100%) invert(100%);
  }
}

.lesson__slide-schedule-text {
  line-height: 1.8;
  font-weight: 400;
  padding-top: 0.9375rem;
  color: #4a4743;
}
@media screen and (max-width: 780px) {
  .lesson__slide-schedule-text {
    font-size: 3.3333333333svw;
    line-height: 1.6;
    margin-top: -4.4871794872svw;
  }
}

/*
LESSON-INFO
=================================== */
.lesson-info {
  margin-top: 7.5rem;
}
@media screen and (max-width: 780px) {
  .lesson-info {
    margin: 16.2820512821svw auto 0;
    width: 90%;
  }
}

.lesson-info__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  margin-left: auto;
  margin-right: 4.5rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .lesson-info__inner {
    max-width: 90vw;
    margin-right: auto;
  }
}

.lesson-info__title-wrapper {
  aspect-ratio: 626/74;
  margin-right: auto;
}

.lesson-info__title-img {
  height: auto;
  max-width: 11.25rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .lesson-info__title-img {
    max-width: 28.9743589744svw;
  }
}

.lesson-info__table-wrapper {
  margin-top: 2.3125rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .lesson-info__table-wrapper {
    margin-top: 5.3846153846svw;
  }
}

.lesson-info__table {
  background-color: #fff;
  border-collapse: collapse;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 83.3333%;
}
@media screen and (max-width: 1280px) {
  .lesson-info__table {
    width: 90%;
  }
}
@media screen and (max-width: 780px) {
  .lesson-info__table {
    border-radius: 3.0769230769svw;
    width: 100%;
  }
}

.lesson-info__table-body {
  display: flex;
  flex-direction: column;
}

.lesson-info__table-row {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 780px) {
  .lesson-info__table-row {
    flex-direction: column;
  }
}

.lesson-info__table-header {
  align-items: center;
  background-color: #ede7dd;
  box-sizing: border-box;
  color: #4a4743;
  display: flex;
  justify-content: flex-start;
  font-weight: 500;
  line-height: 1.6;
  max-width: 23.75%;
  padding: 1.5rem 1.875rem;
  position: relative;
  text-align: center;
  width: 23.75%;
}
.lesson-info__table-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #c6c0b7 0 1px, #ede7dd 1px 2px);
}
@media screen and (max-width: 1280px) {
  .lesson-info__table-header {
    justify-content: center;
    padding: 1.25rem 1.5625rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson-info__table-header {
    border-bottom: none;
    font-size: 3.5897435897svw;
    line-height: 1.6;
    justify-content: flex-start;
    max-width: 100%;
    padding: 1.6666666667svw 4.4871794872svw;
    width: 100%;
  }
  .lesson-info__table-header::after {
    display: none;
  }
}

.lesson-info__table-row:last-child .lesson-info__table-header::after {
  background: none;
}

.lesson-info__table-data {
  color: #4a4743;
  flex: 1;
  line-height: 1.6;
  padding: 1.5rem 2.25rem;
  position: relative;
}
.lesson-info__table-data::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #c6c0b7 0 1px, #fff 1px 2px);
}
@media screen and (max-width: 1280px) {
  .lesson-info__table-data {
    padding: 1.25rem 1.5625rem;
  }
}
@media screen and (max-width: 780px) {
  .lesson-info__table-data {
    font-size: 3.3333333333svw;
    line-height: 1.5;
    padding: 3.0769230769svw 4.358974359svw;
  }
  .lesson-info__table-data::after {
    display: none;
  }
}

.lesson-info__table-row:last-child .lesson-info__table-data:last-child::after {
  display: none;
}

/*
lesson-content
=================================== */
.lesson-content {
  margin-top: 5.8125rem;
}
@media screen and (max-width: 780px) {
  .lesson-content {
    margin-top: 9.1025641026svw;
  }
}

.lesson-content__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 75vw;
  margin-left: auto;
  margin-right: 4.5rem;
}
@media screen and (max-width: 1280px) {
  .lesson-content__inner {
    box-sizing: border-box;
    width: 90%;
    max-width: inherit;
    margin-right: auto;
  }
}

.lesson-content__detail-item-term {
  white-space: nowrap;
  min-width: 3.125rem;
}

.lesson-content__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.6875rem;
  width: 83.333%;
}
@media screen and (max-width: 1280px) {
  .lesson-content__list {
    gap: 3.125rem;
    width: 90%;
  }
}
@media screen and (max-width: 780px) {
  .lesson-content__list {
    gap: 10svw;
    width: 100%;
  }
}

.lesson-content__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 4.6875rem) / 2);
}
@media screen and (max-width: 1280px) {
  .lesson-content__item {
    width: calc((100% - 3.125rem) / 2);
  }
}
@media screen and (max-width: 780px) {
  .lesson-content__item {
    width: 100%;
  }
}

.lesson-content__title {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 780px) {
  .lesson-content__title {
    font-size: 4.6153846154svw;
    line-height: 1.4;
  }
}

.lesson-content__image-wrapper {
  aspect-ratio: 680/420;
  margin-top: 1.625rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .lesson-content__image-wrapper {
    margin-top: 4.358974359svw;
  }
}

.lesson-content__image {
  border-radius: 0.625rem;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .lesson-content__image {
    border-radius: 2.0512820513svw;
  }
}

.lesson-content__description {
  color: #4a4743;
  line-height: 1.6;
  margin-top: 1.25rem;
}
@media screen and (max-width: 780px) {
  .lesson-content__description {
    font-size: 3.5897435897svw;
    line-height: 1.6;
    margin-top: 3.8461538462svw;
  }
}

.lesson-content__detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1.1875rem;
  padding-left: 0.4375rem;
}
@media screen and (max-width: 780px) {
  .lesson-content__detail-list {
    gap: 0.7692307692svw;
    margin-top: 3.0769230769svw;
  }
}

.lesson-content__detail-item {
  color: #4a4743;
  display: flex;
  line-height: 1.4;
  padding-left: 1.25rem;
  position: relative;
}
.lesson-content__detail-item::before {
  background-color: #846d4f;
  border-radius: 50%;
  content: "";
  height: 0.375rem;
  left: 0;
  position: absolute;
  top: 0.5625rem;
  width: 0.375rem;
}
@media screen and (max-width: 780px) {
  .lesson-content__detail-item {
    font-size: 3.3333333333svw;
    line-height: 1.5;
    padding-left: 3.2051282051svw;
  }
  .lesson-content__detail-item::before {
    height: 1.0256410256svw;
    top: 1.9230769231svw;
    width: 1.0256410256svw;
  }
}

/*
PROFILE
=================================== */
.profile {
  position: relative;
  padding-top: 6.25rem;
}
.profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--profile-bg-left, 0);
  width: 100vw;
  height: var(--profile-bg-height, 100%);
  background-image: url("../images/profile-backgrond.png");
  background-size: 100% auto;
  background-position: top right;
  background-repeat: no-repeat;
  mix-blend-mode: darken;
  z-index: -1;
}
@media screen and (max-width: 780px) {
  .profile {
    padding-top: 19.2307692308svw;
    scroll-margin-top: 0svw;
  }
  .profile::before {
    left: 0;
    width: 100%;
  }
}

.profile__inner {
  box-sizing: border-box;
  margin-left: auto;
  max-width: 75vw;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .profile__inner {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    width: 86%;
    position: relative;
  }
}

.profile__group {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 0 7.4555%;
  width: 85%;
}
@media screen and (max-width: 1280px) {
  .profile__group {
    align-items: center;
    flex-direction: column;
    gap: 1.25rem 0;
  }
}
@media screen and (max-width: 780px) {
  .profile__group {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}

.profile__image-wrapper {
  flex-shrink: 0;
  max-width: 48.514%;
  width: 48.514%;
}
@media screen and (max-width: 1280px) {
  .profile__image-wrapper {
    min-width: 21.875rem;
    max-width: 53%;
    width: 53%;
  }
}
@media screen and (max-width: 780px) {
  .profile__image-wrapper {
    min-width: inherit;
    margin-right: auto;
    max-width: 86%;
    width: 86%;
  }
}

.profile__image {
  height: auto;
  width: 100%;
}

.profile__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 4.375rem;
}
@media screen and (max-width: 1280px) {
  .profile__content {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 780px) {
  .profile__content {
    margin-top: 4.8717948718svw;
  }
}

.profile__name-group {
  align-items: baseline;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 780px) {
  .profile__name-group {
    gap: 3.2051282051svw;
  }
}

.profile__name-ja {
  color: #4a4743;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .profile__name-ja {
    font-size: 6.1538461538svw;
  }
}

.profile__name-en {
  color: #4a4743;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .profile__name-en {
    font-size: 3.5897435897svw;
  }
}

.profile__detail {
  color: #4a4743;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  line-height: 1.5;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 780px) {
  .profile__detail {
    font-size: 3.3333333333svw;
    gap: 1.6666666667svw;
    line-height: 1.4;
    margin-top: 4.2307692308svw;
  }
}

.profile__detail--second {
  margin-top: 1.6666666667svw;
}

.profile__divider {
  background: repeating-linear-gradient(to right, #cbc5bc 0 2px, transparent 2px 4px);
  height: 1px;
  width: 40%;
  margin: 2.1875rem 0;
}
@media screen and (max-width: 780px) {
  .profile__divider {
    margin: 6.7948717949svw 0;
    height: 0.5128205128svw;
    background: repeating-linear-gradient(to right, #cbc5bc 0 0.5128205128svw, transparent 0.5128205128svw 1.0256410256svw);
    width: 39.4%;
  }
}

.profile__text {
  color: #4a4743;
  line-height: 2;
  letter-spacing: 0.01em;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .profile__text {
    font-size: 3.5897435897svw;
    line-height: 1.6;
  }
}

.profile__title-wrapper {
  flex-shrink: 0;
  max-width: 2.5rem;
  position: absolute;
  right: 2.5rem;
  top: 1.0625rem;
  width: 2.5rem;
}
@media screen and (max-width: 780px) {
  .profile__title-wrapper {
    max-width: 6.1538461538svw;
    right: 1.9230769231svw;
    top: 2.1794871795svw;
    width: 6.1538461538svw;
  }
}

.profile__title-img {
  height: auto;
  width: 100%;
}

/*
Instragram
=================================== */
.instagram {
  margin-top: 8.125rem;
  scroll-margin-top: 6.25rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 780px) {
  .instagram {
    margin-top: 13.9743589744svw;
    scroll-margin-top: 14.7435897436svw;
  }
}
@media screen and (max-width: 1280px) {
  .instagram {
    width: 90%;
  }
}

.instagram__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  max-width: 75vw;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .instagram__inner {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%;
    max-width: initial;
  }
}

.instagram__text {
  text-align: center;
  margin-bottom: 1.5625rem;
  line-height: 1.6;
}
@media screen and (max-width: 780px) {
  .instagram__text {
    font-size: 4.1025641026svw;
    margin-bottom: 3.2051282051svw;
  }
}

@media screen and (max-width: 780px) {
  #sb_instagram .sb_instagram_header, .sb_instagram_header {
    padding: 1.5384615385svw 0 !important;
  }
}

/*
FAQ
=================================== */
.faq {
  margin-top: 8.125rem;
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 780px) {
  .faq {
    margin-top: 13.9743589744svw;
    scroll-margin-top: 14.7435897436svw;
  }
}

.faq__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: 4.5rem;
  max-width: 75vw;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .faq__inner {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    padding: 0;
    width: 90%;
  }
}

.faq__title-wrapper {
  aspect-ratio: 507/238;
  text-align: center;
}

.faq__title-img {
  height: auto;
  width: 100%;
  max-width: 16.25rem;
}
@media screen and (max-width: 780px) {
  .faq__title-img {
    max-width: 39.1025641026svw;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.0125rem;
  margin-top: 4rem;
  max-width: 60rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .faq__list {
    gap: 1.9230769231svw;
    margin-top: 5.3846153846svw;
  }
}

.faq__item {
  background-color: #fff;
  border-radius: 0.75rem;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.25s linear;
}
@media (hover: hover) and (pointer: fine) {
  .faq__item:hover {
    background-color: #fdf9f3;
  }
}
@media screen and (max-width: 780px) {
  .faq__item {
    border-radius: 1.5384615385svw;
  }
}

.faq__header {
  align-items: center;
  box-sizing: border-box;
  color: inherit;
  display: flex;
  justify-content: flex-start;
  padding: 1.6875rem 3.5625rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .faq__header {
    align-items: flex-start;
    padding: 3.4615384615svw 4.6153846154svw;
  }
}

.faq__question {
  color: #4a4743;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 780px) {
  .faq__question {
    font-size: 3.3333333333svw;
    line-height: 1.4;
    padding-left: 0.8974358974svw;
  }
}

.faq__icon {
  align-items: center;
  background-color: #846d4f;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  left: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
  width: 1.375rem;
}
.faq__icon::before {
  background-color: #fff;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  width: 55%;
}
.faq__icon::after {
  background-color: #fff;
  content: "";
  height: 55%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  width: 2px;
}
@media screen and (max-width: 780px) {
  .faq__icon {
    height: 3.8461538462svw;
    left: -0.2564102564svw;
    position: relative;
    top: auto;
    transform: none;
    width: 3.8461538462svw;
  }
  .faq__icon::before {
    height: 1.5px;
    width: 50%;
  }
  .faq__icon::after {
    height: 50%;
    width: 1.5px;
  }
}

.faq-open .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__content {
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  padding: 0 3.5625rem;
  position: relative;
  transition: max-height 0.3s ease-in-out;
}
.faq__content::before {
  background: repeating-linear-gradient(to right, #cbc5bc 0 2px, transparent 2px 4px);
  content: "";
  display: block;
  height: 2px;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .faq__content::before {
    background: repeating-linear-gradient(to right, #cbc5bc 0 0.2564102564svw, transparent 0.2564102564svw 0.5128205128svw);
  }
}
@media screen and (max-width: 780px) {
  .faq__content {
    padding: 0 4.6153846154svw;
  }
}

.faq__answer {
  color: #4a4743;
  line-height: 1.6;
  margin-top: 1.5625rem;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 780px) {
  .faq__answer {
    font-size: 3.3333333333svw;
    line-height: 1.5;
    margin-top: 2.8205128205svw;
    margin-bottom: 4.4871794872svw;
  }
}

/*
CONTACT
=================================== */
.contact {
  margin-top: 8.625rem;
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 780px) {
  .contact {
    margin-top: 15.7692307692svw;
    scroll-margin-top: 15.3846153846svw;
  }
}

.contact__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: 4.5rem;
  max-width: 75vw;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .contact__inner {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 5.1282051282svw;
  }
}

.contact__title-wrapper {
  aspect-ratio: 877/237;
  text-align: center;
}

.contact__title-img {
  height: auto;
  max-width: 27.5rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .contact__title-img {
    max-width: 58.9743589744svw;
  }
}

.contact__description {
  color: #4a4743;
  line-height: 1.6;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .contact__description {
    font-size: 3.5897435897svw;
    line-height: 1.6;
    margin-top: 3.5897435897svw;
  }
}

.contact__form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .contact__form-wrapper {
    margin-top: 6.4102564103svw;
  }
}

.contact__form {
  background-color: #fff;
  border-radius: 1.875rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 3.625rem 5.0625rem 6.25rem;
  width: 83.3333%;
}
@media screen and (max-width: 1280px) {
  .contact__form {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .contact__form {
    border-radius: 3.8461538462svw;
    padding: 9.8717948718svw 4.4871794872svw 12.8205128205svw;
    width: 100%;
  }
}

.contact__row {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 2.0625rem;
  padding: 1.09375rem 0;
  position: relative;
  width: 100%;
}
.contact__row::before {
  background: repeating-linear-gradient(to right, #cbc5bc 0 2px, transparent 2px 4px);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .contact__row::before {
    background: repeating-linear-gradient(to right, #cbc5bc 0 0.2564102564svw, transparent 0.2564102564svw 0.5128205128svw);
  }
}
@media screen and (max-width: 1280px) {
  .contact__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 780px) {
  .contact__row {
    gap: 3.2051282051svw;
    padding: 3.0128205128svw 0;
  }
}

.contact__row:first-child {
  padding-top: 0;
}
.contact__row:first-child::before {
  display: none;
}

.contact__form .contact__row--textarea::after {
  background: repeating-linear-gradient(to right, #cbc5bc 0 2px, transparent 2px 4px);
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .contact__form .contact__row--textarea::after {
    background: repeating-linear-gradient(to right, #cbc5bc 0 0.2564102564svw, transparent 0.2564102564svw 0.5128205128svw);
  }
}

.contact__row--radio {
  padding: 1.875rem 0;
}
@media screen and (max-width: 780px) {
  .contact__row--radio {
    gap: 4.1025641026svw;
    padding: 2.6923076923svw 0 4.1025641026svw;
  }
}

.contact__row--textarea {
  padding: 2rem 0;
}
@media screen and (max-width: 780px) {
  .contact__row--textarea {
    padding: 2.8205128205svw 0;
  }
}

.contact__label {
  color: #4a4743;
  flex-shrink: 0;
  font-weight: 500;
  min-width: 12.5rem;
}
@media screen and (max-width: 1280px) {
  .contact__label {
    min-width: auto;
  }
}
@media screen and (max-width: 780px) {
  .contact__label {
    font-size: 3.5897435897svw;
  }
}

.contact__required {
  color: #e27311;
  font-weight: 500;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 780px) {
  .contact__required {
    font-size: 3.5897435897svw;
  }
}

.contact__input {
  background-color: #fffcf7;
  border: 1px solid #c2bbb2;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: #4a4743;
  font-family: "YakuHanJP", "Zen Kaku Gothic Antique", "BIZ UDPGothic", "Meiryo", "Noto Sans JP", "Yu Gothic UI", "Helvetica Neue", Arial, sans-serif;
  padding: 0.59375rem 0.9375rem;
  flex: 1;
}
.contact__input::placeholder {
  color: #d7d1c9;
}
@media screen and (max-width: 1280px) {
  .contact__input {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .contact__input {
    border-radius: 0.5128205128svw;
    font-size: 3.5897435897svw;
    padding: 2.4358974359svw 1.9230769231svw;
  }
}

.contact__textarea {
  background-color: #fffcf7;
  border: 1px solid #c2bbb2;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: #4a4743;
  flex: 1;
  font-family: inherit;
  min-height: 11.875rem;
  padding: 1.0625rem;
  resize: vertical;
}
.contact__textarea::placeholder {
  color: #d7d1c9;
}
@media screen and (max-width: 1280px) {
  .contact__textarea {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .contact__textarea {
    border-radius: 0.5128205128svw;
    font-size: 3.5897435897svw;
    padding: 2.5641025641svw 1.9230769231svw;
  }
}

.contact__radio-group {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.9375rem;
}
@media screen and (max-width: 1280px) {
  .contact__radio-group {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .contact__radio-group {
    gap: 2.5641025641svw 3.8461538462svw;
  }
}

.contact__radio-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.4375rem;
}
@media screen and (max-width: 780px) {
  .contact__radio-label {
    font-size: 3.3333333333svw;
    gap: 0.8974358974svw;
  }
}

.contact__radio {
  accent-color: #846d4f;
  cursor: pointer;
  height: 1.125rem;
  width: 1.125rem;
}
@media screen and (max-width: 780px) {
  .contact__radio {
    height: 4.6153846154svw;
    width: 4.6153846154svw;
  }
}

.contact__radio-text {
  color: #4a4743;
}
@media screen and (max-width: 780px) {
  .contact__radio-text {
    font-size: 3.5897435897svw;
  }
}

.contact__privacy {
  margin-top: 1.5625rem;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .contact__privacy {
    margin-top: 7.1794871795svw;
  }
}

.contact__checkbox-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 780px) {
  .contact__checkbox-label {
    font-size: 3.5897435897svw;
    gap: 0;
  }
}

.contact__checkbox {
  accent-color: #846d4f;
  cursor: pointer;
  flex-shrink: 0;
  height: 1.125rem;
  width: 1.125rem;
}
@media screen and (max-width: 780px) {
  .contact__checkbox {
    height: 3.5897435897svw;
    width: 3.5897435897svw;
  }
}

.contact__checkbox-text {
  color: #4a4743;
}

.contact__privacy-link {
  color: #846d4f;
  font-weight: 500;
  text-decoration-color: #c7bfb4;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__privacy-link:hover {
    opacity: 0.7;
  }
}

.contact__required--privacy {
  margin-left: 0;
}

.contact__buttons {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  margin-top: 3.75rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .contact__buttons {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 780px) {
  .contact__buttons {
    flex-direction: column-reverse;
    gap: 2.5641025641svw;
    margin-top: 7.6923076923svw;
  }
}

.contact__button {
  align-items: center;
  border: none;
  border-radius: 1.625rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  height: 3.25rem;
  justify-content: center;
  transition: background-color 0.3s ease;
  width: 15.125rem;
}
@media screen and (max-width: 780px) {
  .contact__button {
    border-radius: 6.4102564103svw;
    font-size: 3.8461538462svw;
    height: 12.8205128205svw;
    width: 68.5897435897svw;
  }
}

.contact__button--reset {
  background-color: #c8c5c1;
}
@media (hover: hover) and (pointer: fine) {
  .contact__button--reset:hover {
    background-color: #a7a4a0;
  }
}

.contact__button--submit {
  background-color: #705d44;
}
@media (hover: hover) and (pointer: fine) {
  .contact__button--submit:hover {
    background-color: #896d47;
  }
}

.contact__send-message {
  display: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.8em;
  padding-top: 40px;
}
@media screen and (max-width: 780px) {
  .contact__send-message {
    font-size: 3.5897435897svw;
    line-height: 1.6;
    padding-top: 3.5897435897svw;
  }
}