@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 3.0666666667vw;
  transition: all 1.6s ease 0s;
  background-color: #fff;
  font-family: "optima-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.5972222222vw;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.fade {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

/* 初期位置 */
/* その場フェードはtransformなしでもOK */
.fade-in {
  transform: none;
}

/* 表示状態 */
.fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.fv {
  position: relative;
  height: 178vw;
}
@media screen and (min-width: 769px) {
  .fv {
    height: 138.8888888889vw;
  }
}
.fv h1 {
  position: absolute;
  z-index: 10;
  width: 50.4613333333vw;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease;
}
.fv h1.on {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .fv h1 {
    width: 26.2819444444vw;
    top: 19%;
    left: 9.7222222222vw;
    transform: translate(0%, -50%);
  }
}
.fv picture {
  animation: fvFadeIn 1s ease forwards;
}
.fv picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .fv picture img {
    aspect-ratio: 1440/2000;
  }
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.flex_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
}
.flex_box div {
  display: block;
  height: 100%;
}
.flex_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video {
  display: block;
  width: 100%;
  height: calc(100% + 4px);
  margin: -2px 0;
  object-fit: cover;
}
.video--filter {
  filter: drop-shadow(0px 0px #000);
}

main a[href^="#modal_"] {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .thumb-cross {
    position: relative;
  }
  .thumb-cross::after {
    content: "";
    position: absolute;
    right: 2vw;
    bottom: 2vw;
    width: 4vw;
    height: 4vw;
    background: linear-gradient(#fff, #fff) center/100% 1px no-repeat, linear-gradient(#fff, #fff) center/1px 100% no-repeat;
  }
}

@media screen and (min-width: 769px) {
  main a[href^="#modal_"] {
    position: relative;
  }
  main a[href^="#modal_"]::after {
    content: "";
    position: absolute;
    right: 1.0416666667vw;
    bottom: 1.0416666667vw;
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    z-index: 6;
    background: linear-gradient(#fff, #fff) center/100% 1px no-repeat, linear-gradient(#fff, #fff) center/1px 100% no-repeat;
    transition: transform 0.3s ease;
  }
  main a[href^="#modal_"].is-credit-open::after {
    transform: rotate(45deg);
  }
}
div.thumb-credit {
  display: none;
  height: auto;
}
@media screen and (min-width: 769px) {
  div.thumb-credit {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    z-index: 5;
    height: auto;
    padding: 0 4.8611111111vw 1.3194444444vw 0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, background-color 0.4s ease, visibility 0s linear 0.4s;
  }
}
@media screen and (min-width: 769px) {
  main a.is-credit-open div.thumb-credit {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease, background-color 0.4s ease, visibility 0s linear 0s;
  }
}

.thumb-credit__text {
  color: #fff;
  font-size: 0.9027777778vw;
  line-height: 1.8;
  text-align: right;
}

.thumb-credit__item {
  display: block;
  cursor: pointer;
}
.thumb-credit__item:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.thumb-credit__item span {
  white-space: nowrap;
  margin-left: 10px;
  text-decoration: underline;
}

footer {
  text-align: center;
  color: #fff;
  background-color: #5B3D22;
  padding-top: 65px;
}
@media screen and (min-width: 769px) {
  footer {
    padding-top: 100px;
  }
}
footer div {
  width: 41.6vw;
  padding: 80px 0 65px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  footer div {
    width: 184px;
    padding: 100px 0 100px;
  }
}
footer p {
  font-size: 9px;
  font-weight: 300;
  line-height: 2;
}
footer .insta img {
  width: 25px;
  padding: 85px 0;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  footer .insta img {
    padding: 100px 0;
    width: 30px;
  }
}

.modal_container {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: #fff;
  color: #000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal_container.is-active {
  visibility: visible;
  opacity: 1;
}
.modal_container__close {
  position: absolute;
  bottom: 4vw;
  right: 4vw;
  z-index: 2;
  width: 4vw;
  height: 4vw;
  background: none;
  border: none;
  cursor: pointer;
}
.modal_container__close::before, .modal_container__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.modal_container__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_container__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_container__inner {
  height: 100%;
  overflow-y: auto;
}
.modal_container__item {
  padding: 0 0 29.4666666667vw;
  transition: background-color 0.6s ease;
}
.modal_container__item.is-target {
  background-color: #fff;
}
.modal_container__img {
  margin-bottom: 4vw;
}
.modal_container__credit-link {
  display: block;
}
.modal_container__credit-link p {
  display: flex;
  padding: 0 25px 1px;
}
.modal_container__credit-link span {
  white-space: nowrap;
  margin-left: 10px;
  text-decoration: underline;
}
.modal_container #modal_1 {
  margin-top: 50px;
}

.all_btn p {
  border: 1px solid;
  font-size: 15px;
  width: fit-content;
  margin: 0 auto 65px;
  padding: 0 15%;
}
@media screen and (min-width: 769px) {
  .all_btn p {
    margin: 0px auto 100px;
    padding: 5px 200px;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */