@font-face {
  font-family: LibreBaskerville-Regular;
  src: url(../font/LibreBaskerville-Regular.ttf);
}
@font-face {
  font-family: LibreFranklin-Bold;
  src: url(../font/LibreFranklin-Bold.ttf);
}
@font-face {
  font-family: LibreBaskerville-Bold;
  src: url(../font/LibreBaskerville-Bold.ttf);
}
@font-face {
  font-family: LibreBaskerville-Italic;
  src: url(../font/LibreBaskerville-Italic.ttf);
}
@font-face {
  font-family: LibreFranklin-Regular;
  src: url(../font/LibreFranklin-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

ul {
  list-style-type: disc;
  padding-left: 6.4vw;
}
ul li {
  padding-bottom: 2.6666666667vw;
}

.header {
  font-family: LibreFranklin-Regular;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  padding: 4.5333333333vw 0;
  background: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
.header .menu-btn {
  color: #fff;
  margin-left: auto;
  list-style: none;
}
.header .menu-btn span {
  color: #fff !important;
  font-size: 4.2666666667vw;
}
.header__content {
  padding: 0 4vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__logo {
  font-family: LibreBaskerville-Regular;
  font-size: 4.2666666667vw;
  line-height: 5.3333333333vw;
}

.nav__list {
  position: fixed;
  background: linear-gradient(to right, #494643, #2d2823);
  right: 0;
  transform: translateX(100%);
  top: 0;
  height: 100%;
  z-index: 21;
  width: auto;
  zoom: 1;
  padding: 14.1333333333vw 4vw;
  transition: all 0.3s ease-in-out;
  text-align: right;
}
.nav__item {
  display: block;
  font-size: 4vw;
  line-height: 9.3333333333vw;
}
.nav__item.is-active a {
  color: #fff;
}
.nav__item a {
  color: #a6a6a6;
  display: block;
  text-decoration: none;
}

.is-menu-open .nav__list {
  transform: translateX(0);
}
.is-menu-open .nav::after {
  pointer-events: auto;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  right: 0;
  bottom: 0;
}

.container {
  --margin: 4vw;
  --max-width: calc(100% - var(--margin) - var(--margin));
  --gap: 8px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

body {
  background-image: linear-gradient(to right, #494643, #2d2823);
  font-family: LibreFranklin-Regular, Helvetica, sans-serif;
  font-size: var(--fs-text);
  line-height: var(--lh-text);
  color: #fff;
}

.ani-fade {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.ani-fade.is-active {
  opacity: 1;
}

.sec-1 {
  background: url(../image/heroBanner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sec-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
.sec-1 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 375/315;
  z-index: 9;
  max-height: 900px;
  position: relative;
}
.sec-1__title {
  font-family: LibreBaskerville-Regular;
  grid-column: auto;
  text-align: center;
  font-size: 3.2vw;
  line-height: 2.1333333333vw;
  text-align: center;
  grid-column: 1/-1;
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: scale(1.5);
}
.sec-1__title--is-highlight {
  display: block;
  font-size: 5.6vw;
  line-height: 6.1333333333vw;
}

.sec-1.is-active::before {
  opacity: 1;
}
.sec-1.is-active .sec-1__title {
  opacity: 1;
  transform: scale(1);
}

.sec-2 {
  padding: 6.4vw 0 7.2vw;
}
.sec-2__img {
  background-image: url(../image/about-img01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 6.9333333333vw;
}
.sec-2__img::after {
  content: "";
  display: block;
  aspect-ratio: 750/462;
}
.sec-2__title {
  font-family: LibreBaskerville-Italic;
  font-size: 3.7333333333vw;
  line-height: 4.8vw;
  padding-bottom: 6.9333333333vw;
  grid-column: 1/-1;
}
.sec-2__desc {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  grid-column: 1/-1;
  padding-bottom: 6.9333333333vw;
}
.sec-2__btn {
  background-image: linear-gradient(to right, #998b5f, #867640);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 3.2vw;
  flex-direction: row;
  justify-content: space-between;
  line-height: 5.8666666667vw;
  padding: 2.4vw 8vw;
  position: relative;
  text-decoration: none;
  grid-column: 2/-2;
}
.sec-2__btn::after {
  content: ">";
  display: block;
}
@media screen and (min-width: 1280px) {
  .sec-2__btn {
    font-size: 18px;
    line-height: 22px;
    padding: 20px 28px;
  }
}

.sec-3 {
  background: url(../image/video-bg.jpg);
  background-size: cover;
}
.sec-3__video {
  display: block;
  max-width: 100%;
  margin: auto;
}

.sec-4 {
  background-color: #ede8df;
  color: #323232;
  padding: 5.3333333333vw 0;
}
.sec-4__title {
  font-family: LibreBaskerville-Regular;
  font-size: 4.8vw;
  line-height: 5.8666666667vw;
  padding-bottom: 5.3333333333vw;
  grid-column: 1/-1;
  text-align: center;
}
.sec-4__desc {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  grid-column: 1/-1;
  padding-bottom: 5.3333333333vw;
}
.sec-4__list {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  grid-column: 1/-1;
}
.sec-4__list li {
  padding-bottom: 2.6666666667vw;
}

.sec-5 {
  color: #ada074;
  padding: 4.5333333333vw 0 8vw;
}
.sec-5__swiper {
  grid-column: 1/-1;
  margin-bottom: 5.6vw;
}
.sec-5__desc {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  padding-bottom: 0vw;
  grid-column: 1/-1;
}

.sec-6 {
  background-color: #ede8df;
  padding: 5.3333333333vw 0;
}
.sec-6 .service-card {
  grid-column: 1/-1;
}

.service-card {
  background-color: #fff;
  padding: 6.1333333333vw 5.3333333333vw 0;
  margin-bottom: 2.6666666667vw;
}
.service-card__title {
  color: #323232;
  font-family: LibreBaskerville-Regular;
  font-size: 4.8vw;
  line-height: 5.8666666667vw;
  padding-bottom: 5.3333333333vw;
}
.service-card__desc {
  color: #737373;
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  padding-bottom: 5.3333333333vw;
}
.service-card__more-btn {
  border-bottom: solid #d9d9d9 1px;
  color: #ada074;
  cursor: pointer;
  font-size: 3.2vw;
  line-height: 4vw;
  margin-bottom: 5.3333333333vw;
  padding-bottom: 2.6666666667vw;
}
.service-card__more-btn::-webkit-details-marker, .service-card__more-btn::marker {
  content: "";
  display: none;
}
.service-card__detail {
  color: #737373;
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
}
.service-card__detail > summary:after {
  content: "+";
  padding-left: 2.6666666667vw;
  font-size: 4vw;
}
.service-card__detail[open] > summary:after {
  content: "-";
}
.service-card__detail ul {
  padding-bottom: 5.3333333333vw;
}
.service-card__caption {
  color: #737373;
  font-family: LibreFranklin-Bold;
  font-size: 3.2vw;
  line-height: 4vw;
  padding-bottom: 4.8vw;
}

.sec-7 {
  color: #d9d9d9;
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
}
.sec-7__content {
  grid-column: 1/-1;
  padding: 7.2vw 0;
}
.sec-7__title {
  font-family: LibreBaskerville-Regular;
  font-size: 4.8vw;
  line-height: 6.4vw;
  padding-bottom: 5.6vw;
}
.sec-7__desc {
  padding-bottom: 8.2666666667vw;
}
.sec-7__img {
  grid-column: 1/-1;
  margin-left: -4vw;
  margin-right: -4vw;
}

.sec-8 {
  background: url(../image/fees-bg.jpg);
  color: #d9d9d9;
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  padding: 6.4vw 0;
}
.sec-8-item {
  border-bottom: 1px solid #737373;
  grid-column: 1/-1;
  padding: 6.4vw 0 0;
}
.sec-8-item:first-child {
  border-top: 1px solid #737373;
}
.sec-8-item__title {
  font-family: LibreBaskerville-Regular;
  font-size: 4.2666666667vw;
  line-height: 5.3333333333vw;
  padding-bottom: 5.3333333333vw;
}
.sec-8-item__desc {
  padding-bottom: 7.4666666667vw;
}

.sec-9 {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  padding: 9.6vw 0;
}
.sec-9__img {
  display: none;
}
.sec-9__content {
  grid-column: 1/-1;
}
.sec-9__title {
  font-family: LibreBaskerville-Regular;
  font-size: 4.8vw;
  line-height: 6.4vw;
  grid-column: 1/-1;
  padding-bottom: 5.0666666667vw;
}
.sec-9__desc {
  grid-column: 1/-1;
  padding-bottom: 13.6vw;
}

.contact-form {
  color: #d9d9d9;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  font-size: 3.2vw;
  line-height: 4vw;
  grid-column: 1/-1;
}
.contact-form label {
  display: block;
  padding-bottom: 2.6666666667vw;
  grid-column: 1/-1;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #737373;
  border-radius: 0;
  color: #d9d9d9;
  display: block;
  font-size: 3.2vw;
  grid-column: 1/-1;
  max-width: 100%;
  margin-bottom: 2.6666666667vw;
  padding: 0;
  width: 100%;
}
.contact-form textarea {
  height: 150px;
}
.contact-form .form-group {
  grid-column: 1/-1;
}
.contact-form .form-error {
  color: #ff0000;
  padding-left: 1.3333333333vw;
}
.contact-form__submit {
  background-image: linear-gradient(to right, #998b5f, #867640);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 3.2vw;
  flex-direction: row;
  justify-content: space-between;
  line-height: 5.8666666667vw;
  padding: 2.4vw 8vw;
  position: relative;
  text-decoration: none;
  grid-column: 2/-2;
  margin-top: 7.4666666667vw;
}
.contact-form__submit::after {
  content: ">";
  display: block;
}
@media screen and (min-width: 1280px) {
  .contact-form__submit {
    font-size: 18px;
    line-height: 22px;
    padding: 20px 28px;
  }
}
.contact-form__submit input[type=submit] {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}

#success-dialog {
  border: none;
  color: #d9d9d9;
  width: 80dvw;
  padding: 0;
  text-align: center;
  overflow: visible;
}
#success-dialog .content {
  background-image: linear-gradient(to right, #998b5f, #867640);
  padding: 4.2666666667vw;
  position: relative;
  z-index: 9;
}
#success-dialog::before {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
}
#success-dialog span {
  font-size: 26.6666666667vw;
  margin: auto;
}
#success-dialog h2 {
  font-size: 9.6vw;
  font-family: LibreBaskerville-Regular;
}
#success-dialog p {
  font-size: 3.2vw;
  line-height: 5.3333333333vw;
  padding: 5.3333333333vw 0;
}
#success-dialog button {
  padding: 0;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
#success-dialog button .close-btn {
  font-size: 8vw;
  color: #d9d9d9;
}
#success-dialog button img {
  width: 7.2vw;
}

.footer-body {
  color: #737373;
  font-size: 3.2vw;
  padding: 5.3333333333vw 0;
  text-align: center;
  grid-column: 1/-1;
}

@media screen and (min-width: 1280px) {
  ul {
    padding-left: 24px;
  }
  ul li {
    padding-bottom: 10px;
  }
  .header {
    padding: 41px 0;
  }
  .header__logo {
    font-size: 28px;
    line-height: 35px;
    transition: all 0.3s ease-in-out;
  }
  .header .menu-btn {
    display: none;
  }
  .nav {
    display: block;
  }
  .nav::after {
    display: none !important;
  }
  .nav__list {
    background: transparent;
    display: flex;
    -moz-column-gap: 40px;
         column-gap: 40px;
    position: static;
    height: auto;
    padding: 0;
    transform: none;
  }
  .nav__item {
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    position: relative;
  }
  .nav__item.is-active::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
  }
  .container {
    --margin: 55px;
    --max-width: clamp(1170px, calc(100% - 55px - 55px), 1650px);
    --gap: 30px;
    grid-template-columns: repeat(12, 1fr);
  }
  .sec-1 {
    background-size: auto;
  }
  .sec-1 .container {
    aspect-ratio: 1280/900;
  }
  .sec-1__title {
    font-size: 20px;
    line-height: 15px;
  }
  .sec-1__title--is-highlight {
    font-size: 60px;
    line-height: 70px;
  }
  .sec-2 {
    padding: 97px 0;
  }
  .sec-2__img {
    background-image: url(../image/about-img01-dsk.png);
    background-size: auto;
    margin-bottom: 76px;
  }
  .sec-2__img::after {
    aspect-ratio: 1280/656;
    max-height: 656px;
  }
  .sec-2__title {
    font-size: 30px;
    line-height: 37px;
    grid-column: 5/-2;
    padding-bottom: 39px;
  }
  .sec-2__desc {
    font-size: 16px;
    line-height: 22px;
    grid-column: 5/-2;
    padding-bottom: 79px;
  }
  .sec-2__btn {
    grid-column: 8/-2;
  }
  .sec-3 {
    padding: 39px 30px;
  }
  .sec-3__video {
    max-width: 1650px;
    margin: 0 auto;
  }
  .sec-4 {
    padding: 47px 0;
  }
  .sec-4__title {
    font-size: 30px;
    line-height: 37px;
    padding-bottom: 30px;
  }
  .sec-4__desc {
    font-size: 16px;
    line-height: 25px;
    grid-column: 2/-2;
    padding-bottom: 23px;
  }
  .sec-4__list {
    font-size: 16px;
    line-height: 25px;
    grid-column: 2/-2;
    padding-left: 24px;
  }
  .sec-4__list li {
    padding-bottom: 23px;
  }
  .sec-5 {
    padding: 60px 0 50px;
  }
  .sec-5__swiper {
    margin-bottom: 51px;
  }
  .sec-5__desc {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 35px;
    grid-column: 2/-2;
  }
  .sec-6 {
    padding: 33px 0;
  }
  .sec-6 .service-card {
    grid-column: 2/-2;
  }
  .service-card {
    padding: 43px 30px 0;
    margin-bottom: 20px;
  }
  .service-card__title {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 32px;
  }
  .service-card__desc {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 39px;
  }
  .service-card__more-btn {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
  .service-card__detail {
    font-size: 16px;
    line-height: 19px;
  }
  .service-card__detail > summary:after {
    padding-left: 10px;
    font-size: 16px;
  }
  .service-card__detail ul {
    padding-bottom: 31px;
  }
  .service-card__caption {
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 31px;
  }
  .sec-7 {
    font-size: 18px;
    line-height: 25px;
  }
  .sec-7__content {
    align-self: center;
    grid-column: 2/span 5;
    padding: 41px 0;
  }
  .sec-7__title {
    font-family: LibreBaskerville-Regular;
    font-size: 38px;
    line-height: 47px;
    padding-bottom: 30px;
  }
  .sec-7__desc {
    padding-bottom: 35px;
  }
  .sec-7__img {
    grid-column: 7/-1;
    margin: 0;
  }
  .sec-8 {
    font-size: 16px;
    line-height: 25px;
    padding: 49px 0;
  }
  .sec-8-item {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    padding: 45px 0;
  }
  .sec-8-item__title {
    font-size: 24px;
    line-height: 29px;
    padding-bottom: 0;
    grid-column: 2/span 3;
  }
  .sec-8-item__content {
    grid-column: 5/-2;
  }
  .sec-8-item__desc {
    padding-bottom: 29px;
  }
  .sec-8-item__desc:last-child {
    padding-bottom: 0;
  }
  .sec-9 {
    font-size: 16px;
    line-height: 25px;
    padding: 60px 0;
  }
  .sec-9__img {
    align-self: center;
    display: block;
    grid-column: 2/6;
  }
  .sec-9__content {
    grid-column: 6/-2;
  }
  .sec-9__title {
    font-size: 38px;
    line-height: 47px;
    padding-bottom: 24px;
  }
  .sec-9__desc {
    padding-bottom: 94px;
  }
  .contact-form {
    font-size: 18px;
    line-height: 22px;
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .contact-form label {
    padding-bottom: 20px;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form textarea {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .contact-form__submit {
    grid-column: 4/-1;
    margin-top: 0;
  }
  .footer-body {
    font-size: 18px;
    padding: 70px 0;
    text-align: right;
    grid-column: 2/-2;
  }
  #success-dialog {
    width: 600px;
  }
  #success-dialog span {
    font-size: 100px;
  }
  #success-dialog h2 {
    font-size: 36px;
  }
  #success-dialog p {
    font-size: 16px;
    line-height: 25px;
    padding: 20px 0;
  }
  #success-dialog button .close-btn {
    font-size: 30px;
  }
  #success-dialog button img {
    width: 27px;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */