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

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0px;
  font-size: 3.0555555556vw;
  transition: all 1.6s ease 0s;
  background-color: #fff;
  font-family: "arial-narrow", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #333333;
}

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

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

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

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

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.fv {
  overflow: hidden;
  background-image: url("../images/back.webp");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 1s;
}
.fv.on {
  opacity: 1;
}
.fv .lines {
  display: flex;
  flex-direction: column;
  gap: 1.9444444444vw;
  padding: 6% 3% 8%;
}
.fv .line {
  height: 1px; /* 線の太さ */
  background-color: #5a5e5e;
  width: 100%; /* 横いっぱいに伸ばす */
}
.fv h1 {
  width: 70%;
  margin: 0 auto 25%;
  padding-top: 25%;
}
.fv .h2 {
  font-size: 8.9814814815vw;
  margin-left: 3%;
}
.fv .fv_img {
  margin-left: 3%;
}
.fv .text {
  font-size: 5.5555555556vw;
  margin-left: 3%;
}
.fv .text_img {
  margin-left: 3%;
  width: 78%;
  margin-top: 1%;
}

/* 初期状態 */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 2%;
  width: 95%;
  margin: 5% auto 8%;
}
.menu li {
  width: 30%;
}

.item_container {
  padding: 17% 0;
}

.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.stacked-slider {
  position: relative;
  width: 80vw;
  height: 108vw;
  perspective: 1000px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform, opacity;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s ease;
}

.slide.hide img {
  opacity: 0;
}

.dots {
  display: flex;
  gap: 3vw;
  justify-content: center;
}

.dot {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  border-color: #5a5e5e;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #5a5e5e;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background: #5a5e5e;
}

.clip {
  width: 6%;
  margin: 0 auto -11.4%;
  position: relative;
  z-index: 10;
}

.main {
  background-image: url("../images/back.webp");
  background-size: contain; /* 画面を覆う（アスペクト比維持） */
  background-position: center; /* 中央揃え */
  background-repeat: repeat;
}

.credit {
  font-size: 3.0555555556vw;
  width: 80%;
  margin: 7% auto 0;
  line-height: 1.6;
  border-bottom: 1px solid #8f9292;
  padding-bottom: 5%;
}
@media screen and (min-width: 1031px) {
  .credit {
    padding-bottom: 4.3%;
  }
}
.credit .price {
  margin-left: 10px;
}
.credit .buy {
  padding: 0 5%;
  background-color: #5a5e5e;
  color: #fff;
  margin: 1% 0;
  font-size: 2.8703703704vw;
}
@media screen and (min-width: 1031px) {
  .credit .buy {
    font-size: 1.2vw;
  }
}
.credit li {
  border-bottom: 1px solid #8f9292;
  padding-left: 5%;
}
.credit li:nth-child(1) {
  border-top: 1px solid #8f9292;
}
.credit a:has(.nolink) {
  pointer-events: none;
}
.credit .nolink {
  padding: 0 3%;
  border: 1px solid #5a5e5e;
  margin-left: 10%;
}
.credit a {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
@media screen and (min-width: 1031px) {
  .credit a {
    width: 40%;
  }
}

footer {
  font-size: 2.2222222222vw;
  color: #fff;
}
footer p {
  margin: -9% 0 2% 5%;
}
footer .f_logo {
  width: 36%;
  margin: 8% 0 5% 5%;
}

@media screen and (min-width: 1031px) {
  .pc_flex {
    display: flex;
  }
  .pc_flex .menu {
    width: 40%;
    position: fixed;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
  }
  .pc_flex .pc_right {
    width: 60%;
    margin-left: 40%;
  }
  .pc_flex .pc_right .h2 {
    font-size: 5.1vw;
  }
  .pc_flex .pc_right .text {
    font-size: 3.4vw;
  }
  .pc_flex .pc_right .lines {
    gap: 1.5vw;
  }
  .pc_flex .pc_right .stacked-slider {
    width: 44vw;
    height: 60vw;
  }
  .pc_flex .pc_right .clip {
    width: 5%;
    margin: 0 auto -9.4%;
  }
  .pc_flex .pc_right .dot {
    width: 1vw;
    height: 1vw;
  }
  .pc_flex .pc_right .dots {
    gap: 1vw;
  }
  .pc_flex .pc_right .credit {
    font-size: 1.5vw;
  }
  .pc_flex .pc_right .item_container {
    padding: 20% 0 0;
  }
  .main {
    padding-bottom: 15%;
  }
  footer {
    font-size: 1.3vw;
  }
}/*# sourceMappingURL=style.css.map */