html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho";
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: #333333;
}

.u-gray {
  background-color: #f6f6f6;
}

.u-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header {
  width: 200px;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100vw;
    height: 80px;
  }
}

.header__inner {
  padding: 40px 16px 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__title {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #bbbbbb;
}
@media screen and (max-width: 768px) {
  .header__title {
    border-bottom: none;
    padding: 0;
  }
}

.header__title--1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.header__title--2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  gap: 24px;
  width: 100%;
}

.header__link {
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__link:hover {
  opacity: 0.6;
}
.header__link.active {
  color: #A88657;
}

.header__contact {
  display: block;
  background-color: #A88657;
  text-align: center;
  width: 100%;
  padding: 8px 16px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__contact:hover {
  opacity: 0.6;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__snsLink {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__snsLink:hover {
  opacity: 0.6;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.header__snsLogo {
  width: 40px;
}

.header__togglebtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__togglebtn {
    display: block;
    width: 35px;
    height: 24px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

.header__hamburgerLine {
  display: block;
  position: absolute;
  background-color: #333333;
  width: 35px;
  height: 1px;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__hamburgerLine:nth-child(1) {
  top: 0px;
}
.header__hamburgerLine:nth-child(2) {
  top: 12px;
}
.header__hamburgerLine:nth-child(3) {
  top: 24px;
}

.header__mask {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -120%;
  top: 0;
  padding: 64px 94px 24px;
  gap: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__masknav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333333;
}

.js-open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
.js-open .header__hamburgerLine:nth-child(2) {
  display: none;
}
.js-open .header__hamburgerLine:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
.js-open .header__mask {
  right: 0;
  z-index: 10;
}

.header__titleText--sp {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #bbbbbb;
}

main {
  margin-left: 200px;
}
@media screen and (max-width: 768px) {
  main {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .fv {
    padding-top: 80px;
  }
}

.fv__video {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.fv__video video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__text {
  padding: 40px 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv__text {
    padding: 40px 20px;
  }
}

.fv__line {
  content: "";
  width: 1px;
  height: 50px;
  margin: 0 auto;
  background-color: #333333;
}

.fv__text--1 {
  font-size: 24px;
}
@media screen and (max-width: 479px) {
  .fv__text--1 {
    font-size: 20px;
  }
}

.fv__text--2 {
  margin-top: 24px;
}
@media screen and (max-width: 479px) {
  .fv__text--2 {
    font-size: 14px;
  }
}

.only-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .only-tab {
    display: inline;
  }
}

.section__container {
  padding: 80px;
}
@media screen and (max-width: 768px) {
  .section__container {
    padding: 64px 20px;
  }
}

.section__container--pickup {
  padding: 80px 35px;
}
@media screen and (max-width: 768px) {
  .section__container--pickup {
    padding: 64px 0;
  }
}

.section__title {
  text-align: center;
  margin-bottom: 40px;
}

.section__title--en {
  font-family: "Pinyon Script";
  color: #A88657;
  font-size: 36px;
  line-height: 1;
}

.section__title--ja {
  font-family: "Noto Sans JP";
  color: #A88657;
}

.pickup__item--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pickup__item--inner img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.pickup__itemTitle {
  color: #A88657;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: auto;
}

.pickup__customText {
  font-family: "Noto Sans JP";
  letter-spacing: 0.1em;
  line-height: auto;
  margin: 8px 0 58px;
}

.swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  background-color: #e6e6e6;
}

.swiper-pagination-bullet-active {
  background-color: #A88657;
  opacity: 1;
}

.plan__tabs {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 920px;
}

.plan__tabBtn {
  color: #bbbbbb;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #bbbbbb;
  padding: 8px;
  width: 100%;
  max-width: 280px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.plan__tabBtn.js-active {
  border-bottom: 1px solid #A88657;
  color: #A88657;
}
@media screen and (max-width: 768px) {
  .plan__tabBtn {
    font-size: 14px;
  }
}

.plan__tabImg {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 40px;
}
.plan__tabImg img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan__tabImg {
    width: 100%;
  }
}

.plan__tabText {
  margin: 0 auto;
  width: 69.56%;
}
@media screen and (max-width: 768px) {
  .plan__tabText {
    width: 100%;
  }
}

.plan__tabText--1 {
  color: #A88657;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #A88657;
  padding-bottom: 8px;
  text-align: center;
}

.plan__tabText--2 {
  font-family: "Noto Sans JP";
  margin-bottom: 40px;
}

.plan__tabText--2-1 {
  margin: 10px 0;
}

.viewmore__btn {
  background-color: #A88657;
  color: #ffffff;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 16px 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.viewmore__btn:hover {
  opacity: 0.6;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .viewmore__btn {
    font-size: 18px;
  }
}

.plan__tab--content {
  display: none;
}
.plan__tab--content.js-active {
  display: block;
}

.feature__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: static;
    padding-bottom: 40px;
    width: 100%;
  }
}
.feature__item:last-of-type {
  padding-bottom: 0;
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feature__img {
  width: 100%;
  max-width: 500px;
}
.feature__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .feature__img {
    max-width: none;
  }
}

.feature__text {
  position: absolute;
  top: 133px;
  right: 0;
  background-color: #ffffff;
  padding: 58px 16px;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .feature__text {
    width: 100%;
    max-width: none;
    position: static;
    padding: 24px 16px;
    aspect-ratio: auto;
  }
}

.text-reverse {
  left: 0;
}

.feature__text--1 {
  font-size: 20px;
  font-weight: 600;
  color: #A88657;
  text-align: center;
}

.gallery__inner {
  max-width: 920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .gallery__inner {
    gap: 8px;
  }
}

.gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery__item {
    gap: 8px;
  }
}

.item-1,
.item-3 {
  height: 153px;
}
@media screen and (max-width: 768px) {
  .item-1,
  .item-3 {
    height: 90px;
  }
}

.item-2 {
  height: 350px;
}
@media screen and (max-width: 768px) {
  .item-2 {
    height: 120px;
  }
}

.gallery__itemImg {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.gallery__itemImg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 8px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.gallery__itemImg:hover::after {
  opacity: 1;
}
.gallery__itemImg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gallery__itemImg img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}
.modal.js-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__close {
  position: absolute;
  top: -53px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  color: #A88657;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.modal__imgContainer {
  position: relative;
  max-width: 580px;
  max-height: 660px;
  margin: 0 auto;
  overflow: hidden;
}
.modal__imgContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 8px solid rgba(255, 255, 255, 0.6);
}

.modal__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact {
  background: url(../img/contact.png) no-repeat center center/cover;
  position: relative;
}

.contact__container {
  padding: 76px 80px;
  margin-bottom: 24px;
}
.contact__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .contact__container {
    padding: 40px 20px;
  }
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__left {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact__left {
    text-align: center;
  }
}

.contact__text--1 {
  margin-bottom: 24px;
}
.contact__text--1 h6 {
  font-size: 24px;
  font-weight: bold;
}

.contact__p {
  font-weight: 600;
}

.contact__right {
  background: #ffffff;
  color: #333333;
  text-align: center;
  width: 100%;
  max-width: 440px;
  height: auto;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.contact__right:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .contact__right {
    font-size: 18px;
  }
}

.sns__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sns__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sns__left {
  background: url(../img/instagram-bk.png) no-repeat center center/cover;
  position: relative;
  width: 50%;
  height: 266px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns__left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  z-index: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__left:hover::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sns__left {
    width: 100%;
    height: 200px;
  }
}

.sns__right {
  background: url(../img/facebook-bk.png) no-repeat center center/cover;
  position: relative;
  width: 50%;
  height: 266px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns__right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  z-index: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__right:hover::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sns__right {
    width: 100%;
    height: 200px;
  }
}

.instagram, .facebook {
  z-index: 1;
}

.sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns__text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.footer {
  padding-left: 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0;
  }
}

.footer__inner {
  padding: 40px 80px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 40px 20px 52px;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  font-weight: bold;
  border-bottom: 1px solid #bbbbbb;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-bottom: 24px;
    gap: 24px;
  }
}

.footer__left {
  font-size: 24px;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__right {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__list {
    gap: 14px;
    font-size: 14px;
  }
}

.footer__link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.6;
}

.footer__bottom {
  padding-top: 24px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    font-size: 12px;
  }
}