@charset "UTF-8";
:root {
  --color-main01: #AF9147;
  --color-green: #007864;
}

:root {
  --vw-size11: clamp(10px, calc(((11 + 2) / 1360) * 100vw), 11px);
  --vw-size12: clamp(10px, calc(((12 + 2) / 1360) * 100vw), 12px);
  --vw-size14: clamp(12px, calc(((14 + 2) / 1360) * 100vw), 14px);
  --vw-size16: clamp(13px, calc(((16 + 2) / 1360) * 100vw), 16px);
  --vw-size18: clamp(14px, calc(((18 + 2) / 1360) * 100vw), 18px);
  --vw-size20: clamp(15px, calc(((20 + 2) / 1920) * 100vw), 20px);
  --vw-size24: clamp(18px, calc(((24 + 2) / 1360) * 100vw), 24px);
  --vw-size28: clamp(19px, calc(((28 + 2) / 1360) * 100vw), 28px);
  --vw-size30: clamp(20px, calc(((30 + 2) / 1360) * 100vw), 30px);
  --vw-size32: clamp(20px, calc(((32 + 2) / 1360) * 100vw), 32px);
  --vw-size40: clamp(22px, calc(((40 + 2) / 1360) * 100vw), 40px);
  --vw-size45: clamp(24px, calc(((45 + 2) / 1920) * 100vw), 45px);
  --vw-size48: clamp(26px, calc(((48 + 2) / 1360) * 100vw), 48px);
  --vw-size56: clamp(30px, calc(((56 + 2) / 1360) * 100vw), 56px);
  --vw-size80: clamp(40px, calc(((80 + 2) / 1360) * 100vw), 80px);
  --vw-size100: clamp(50px, calc(((100 + 2) / 1360) * 100vw), 100px);
}

.mvArea {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mvArea .mvImgWrap {
  height: calc(100vh - (6.25vw + 120px));
}
@media (max-width: 767px) {
  .mvArea .mvImgWrap {
    height: calc(100vh - (10vw + 200px));
  }
}
.mvArea .mvImgWrap figure {
  width: 100%;
  height: 100%;
}
.mvArea .mvImgWrap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mvArea .mvTxtWrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .mvArea .mvTxtWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 30px;
  }
}
.mvArea .mvTxtWrap .title {
  width: 59.6354166667%;
  padding: 0 3% 0 4%;
}
@media (max-width: 767px) {
  .mvArea .mvTxtWrap .title {
    width: 100%;
    padding: 0 5%;
  }
}
.mvArea .mvTxtWrap .title h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 6.25vw;
  line-height: 1;
  margin: 0;
  opacity: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: opacity 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, filter 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
}
@media (max-width: 767px) {
  .mvArea .mvTxtWrap .title h2 {
    font-size: 10vw;
  }
}
.mvArea .mvTxtWrap .copy {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 4%;
}
@media (max-width: 767px) {
  .mvArea .mvTxtWrap .copy {
    padding: 0 5%;
  }
}
.mvArea .mvTxtWrap .copy .mvTxt {
  font-size: clamp(14px, 0.84vw, 16px);
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
  transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
  transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s;
  transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
}
@media (max-width: 374px) {
  .mvArea .mvTxtWrap .copy .mvTxt {
    font-size: 13px;
  }
}
.mvArea.on .mvTxtWrap .title h2 {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.mvArea.on .mvTxtWrap .copy .mvTxt {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.secondArea {
  padding: clamp(120px, 11.7647058824%, 160px) 0;
}
.secondArea h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 8.8235294118vw;
  line-height: 1;
  margin: 0;
  opacity: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: opacity 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, filter 1s ease 1.2s;
  transition: opacity 1s ease 1.2s, filter 1s ease 1.2s, -webkit-filter 1s ease 1.2s;
  text-align: center;
}
@media (max-width: 767px) {
  .secondArea h2 {
    font-size: 10vw;
  }
}
.secondArea h2 span {
  font-family: "Ryumin Light KL", YuMincho, "Yu Mincho", A1 Mincho, "Hiragino Mincho ProN", serif;
  display: block;
  font-size: var(--vw-size16);
}
.secondArea.on h2 {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.conBtn01 a {
  display: block;
  width: 100%;
  max-width: 368px;
  border: solid 1px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  text-align: center;
  padding: 20px 45px;
  position: relative;
  font-size: var(--vw-size18);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .conBtn01 a {
    padding: 20px 35px;
  }
}
@media (min-width: 992px) {
  .conBtn01 a:hover::before {
    right: 20px;
  }
}
.conBtn01 a::before {
  content: "→";
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.4s ease 0s;
  transition: right 0.4s ease 0s;
}
@media (max-width: 767px) {
  .conBtn01 a::before {
    right: 15px;
  }
}
.conBtn01.bk a {
  background: #231815;
  color: #fff;
}
@media (min-width: 992px) {
  .conBtn01.back a:hover::before {
    left: 20px;
  }
}
.conBtn01.back a::before {
  content: "←";
  right: auto;
  left: 30px;
  -webkit-transition: left 0.4s ease 0s;
  transition: left 0.4s ease 0s;
}
@media (max-width: 767px) {
  .conBtn01.back a::before {
    left: 20px;
  }
}

.spModal {
  position: relative;
}
.spModal .zoom {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #000;
  top: 0;
  right: 0;
  z-index: 5;
  display: none;
}
@media (max-width: 767px) {
  .spModal .zoom {
    display: block;
  }
}
.spModal .zoom::before, .spModal .zoom::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 5px;
}
.spModal .zoom::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.modal-wrap {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
.modal-wrap .imgScroll {
  width: 100%;
  overflow: auto;
}
.modal-wrap .imgScroll figure {
  min-width: 1300px;
}
@media (max-width: 767px) {
  .modal-wrap .imgScroll figure {
    min-width: 800px;
  }
}
.modal-wrap button.mfp-close, .modal-wrap button.mfp-arrow {
  top: 0;
  color: #333;
}

.border-top {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}