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

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

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

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

a[href=""] {
  pointer-events: none;
}

@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
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 初期位置 */
.fade-up {
  transform: translateY(20px);
}

.fade-left {
  transform: translateX(-20px);
}

.fade-right {
  transform: translateX(20px);
}

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

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

#page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 3%;
  }
}
#page-top img {
  width: 2.3611111111vw;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 7.6vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  opacity: 0.5;
}

.fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* JSで上書きされます */
  z-index: -1;
  /* 【重要】グラデーション */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.7) 75%, rgb(255, 255, 255) 85%, #ffffff 100%);
  background-attachment: fixed;
}
.fv.is-monochrome .swiper img {
  filter: grayscale(100%);
}
.fv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
  width: 50.4613333333vw;
  opacity: 0;
  transition: opacity 1s;
}
@media screen and (min-width: 769px) {
  .fv h1 {
    width: 26.2819444444vw;
    left: 76%;
  }
}
.fv h1.on {
  opacity: 1;
}
.fv .swiper {
  opacity: 0;
  transition: opacity 1s;
  overflow: hidden;
  width: 100%;
  height: 100%; /* Inherit height from .fv to fill the entire container */
}
.fv .swiper.on {
  opacity: 1;
}
.fv .swiper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
  transition: filter 1s ease;
}

.wrapper {
  position: relative;
  z-index: 10;
  background-color: #fff;
  margin-top: 100dvh; /* Use vh to match the full screen height */
  margin-bottom: 100vh;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-bottom: 60px;
  }
}

h2 {
  width: 27.4666666667vw;
  margin: 0px auto 0 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 769px) {
  h2 {
    width: 132px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.img_area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 769px) {
  .img_area {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 1130px;
    margin: 0 auto;
  }
}
.img_area a {
  display: block;
  width: 100%;
  position: relative;
}
.img_area a::before, .img_area a::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.3s ease;
  z-index: 1;
}
.img_area a::before {
  width: 1px;
  height: 17px;
  bottom: 10px;
  right: 18px;
  z-index: 10;
}
.img_area a::after {
  width: 17px;
  height: 1px;
  bottom: 18px;
  right: 10px;
  z-index: 10;
}

.modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal_container.is-active {
  opacity: 1;
  visibility: visible;
}
.modal_container.is-active .modal_close_btn {
  display: block;
  width: 18px;
}
@media screen and (min-width: 769px) {
  .modal_container.is-active .modal_close_btn {
    width: 25px;
  }
}
@media screen and (min-width: 769px) {
  .modal_container h2 {
    width: 132px;
    padding-top: 0px;
    padding-bottom: 0px;
    position: fixed;
    left: 50px;
    top: 50px;
  }
}
.modal_container .modal_close_btn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 20;
}
@media screen and (min-width: 769px) {
  .modal_container .modal_close_btn {
    right: 35px;
  }
}
.modal_container .modal_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_container .modal_content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media screen and (min-width: 769px) {
  .modal_container .modal_itemarea {
    padding: 100px 0 0;
  }
}
.modal_container .modal_fv {
  position: relative;
  height: 100vh;
}
.modal_container .modal_fv h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
  width: 50.4613333333vw;
}
@media screen and (min-width: 769px) {
  .modal_container .modal_fv h3 {
    width: 26.2819444444vw;
    left: 76%;
  }
}
.modal_container .moda_img_area {
  padding: 0 10px;
}
@media screen and (min-width: 769px) {
  .modal_container .moda_img_area {
    max-width: 650px;
    margin: 0 auto;
  }
}
.modal_container .moda_img_area div {
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  .modal_container .moda_img_area div {
    margin-bottom: 10px;
  }
}
.modal_container .credit {
  margin: 12px auto 0;
  padding-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .modal_container .credit {
    text-align: right;
    padding-bottom: 150px;
  }
}
.modal_container .credit span {
  text-decoration: underline;
  margin-left: 10px;
}
.modal_container .credit .comingsoon a {
  pointer-events: none;
}
.modal_container .credit .comingsoon span {
  text-decoration: none;
}

.stacre {
  width: 44vw;
  position: absolute;
  top: 67vh;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .stacre {
    left: 76%;
    width: 14vw;
  }
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.footer.is-visible {
  opacity: 1;
  visibility: visible;
}
.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 86vh;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .footer ul {
    left: 76%;
    top: 84vh;
  }
}
.footer ul li {
  width: 25px;
}
@media screen and (min-width: 769px) {
  .footer ul li {
    width: 32px;
  }
}

.modal_footer .stacre {
  z-index: 15;
}
@media screen and (min-width: 769px) {
  .modal_footer .stacre {
    left: 76%;
  }
}
.modal_footer ul {
  z-index: 15;
}
@media screen and (min-width: 769px) {
  .modal_footer ul {
    left: 76% !important;
  }
}
.modal_footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 86vh;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .modal_footer ul {
    top: 84vh;
  }
}
.modal_footer ul li {
  width: 25px;
}
.modal_footer .swiper img {
  filter: grayscale(100%);
}

.all_btn p {
  text-align: center;
  border: 1px solid;
  width: 400px;
  margin: 80px auto 0;
  font-size: 20px;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .all_btn p {
    width: 70vw;
    margin: 40px auto 0;
  }
}/*# sourceMappingURL=style.css.map */