@charset "UTF-8";
/* CSS Document */
    body {
      margin: 0;
      background: #fff;
    }



/* ========================================
   INTRO
======================================== */

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


/* ========================================
   SLIDESHOW
======================================== */

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slideshow-container {
  width: 100%;
  overflow: hidden;
}

.slide-row {
  display: flex;
  width: max-content;

  animation: slideLeft 20s linear infinite;
}

.slide-row.reverse {
  animation: slideRight 20s linear infinite;
}

.slide-item {
  flex: 0 0 auto;
}

.slide-item img {
  width: 20vw;
  height: 50vh;

  object-fit: cover;
  display: block;
}


/* 左へ */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* 右へ */
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


/* ========================================
   OVERLAY
======================================== */

.intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* ========================================
   INTRO LEFT
======================================== */

.intro-left {
  position: absolute;
  left: 40px;
  top: 50%;

  transform: translateY(-50%);
}


/* ========================================
   SEASON
======================================== */

.intro-small {
  margin: 0 0 20px;

  color: #ff0000 !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;

  letter-spacing: 0.12em;
}


/* ========================================
   TITLE
======================================== */

.intro-left h1 {
  margin: 0;

  color: #2958b3 !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 700;

  line-height: 0.9;
  letter-spacing: 0.08em !important;
}


/* ========================================
   PICK UP
======================================== */

.intro-pickup {
  margin-top: 28px;
}

.intro-pickup span {
  display: inline-block;

  padding: 5px 9px;

  border: 1px solid #fff;

  color: #fff !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;
  line-height: 1;
}

.intro-pickup2 {
  margin-top: 28px;
}

.intro-pickup2 span {
  display: inline-block;

  padding: 5px 9px;

  border: 1px solid #000;

  color: #000 !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;
  line-height: 1;
}


/* ========================================
   COPY
======================================== */

.intro-copy {
  display: inline-block;

  margin: 8px 0 0;

  padding: 8px 16px 9px;

  background: #ff0000;
  color: #fff !important;

  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 700;

  letter-spacing: 0.12em;
  line-height: 1;

  white-space: nowrap;

  transform: rotate(-2deg);
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .intro-left {
    left: 20px;
  }

  .intro-small {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .intro-left h1 {
    font-size: clamp(38px, 11vw, 70px);
    letter-spacing: 0.05em !important;
  }

  .intro-pickup {
    margin-top: 20px;
  }

  .intro-pickup span {
    padding: 4px 7px;
    font-size: 8px;
  }

	

  .intro-copy {
    margin-top: 7px;
    padding: 7px 11px 8px;
    font-size: 10px;
  }

}

/* =========================
   ITEM LINEUP
========================= */

.intro-look {
  position: fixed;
  right: 40px;
  bottom: 30px;

  display: flex;
  align-items: center;
  gap: 14px;

  z-index: 20;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: #fff;
}


/* =========================
   DOWN ARROW
========================= */

.graphic-arrow {
  position: relative;

  display: block;

  width: 32px;
  height: 48px;

  flex-shrink: 0;
}


/* 縦線 */

.graphic-arrow::before {
  content: "";

  position: absolute;

  left: 15px;
  top: 0;

  width: 2px;
  height: 34px;

  background: #fff;
}


/* 下向き矢印 */

.graphic-arrow::after {
  content: "";

  position: absolute;

  left: 9px;
  bottom: 5px;

  width: 12px;
  height: 12px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: rotate(45deg);
}


/* =========================
   SP
========================= */

@media screen and (max-width: 767px) {

  .intro-look {
    right: 20px;
    bottom: 20px;

    font-size: 9px;
    gap: 10px;
  }

  .graphic-arrow {
    width: 26px;
    height: 40px;
  }

  .graphic-arrow::before {
    left: 12px;
    height: 29px;
  }

  .graphic-arrow::after {
    left: 7px;
    bottom: 4px;

    width: 10px;
    height: 10px;
  }

}

/* =========================
   右上
========================= */

.right-top {
  position: absolute;
  top: 30px;
  right: 20px; /* ← さらに右へ */
  
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.right-top img {
  width: 300px;
  height: 250px;
  object-fit: contain;
}



/* ========================================
   RIGHT
======================================== */

.intro-right {
  position: absolute;

  right: 40px;
  top: 90%;

  width: 300px;

  transform: translateY(-50%);

  color: #fff;
}


/* SVG */

.intro-svg {
  width: 180px;
  height: auto;

  display: block;

  margin-left: auto;
  margin-bottom: 35px;
}


/* リード */

.intro-lead {
  margin: 0;

  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.08em;

  text-align: left;
}


/* LOOK */

.intro-look {
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 12px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}




* {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}


.border{
  text-align:center;
  margin:60px 0;
}

.store-btn{
  display:inline-block;

  padding:14px 60px;

  border:1px solid #000;

  color:#000;
  text-decoration:none;

  font-size:11px;
  letter-spacing:0.25em;

  transition:.3s ease;
}

.store-btn:hover{
  background:#000;
  color:#fff;
}



.footer {
  position: absolute;/*②絶対位置*/
  bottom: 0; /*下に固定*/
}





a:link {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:visited {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:active {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}




.divlogo {
	width:	250px;
     height: 25px;
	margin-bottom: 20px;
	}





@charset "UTF-8";

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#fff;
  color:#111;
  font-family: Helvetica, sans-serif;

}

/* =========================
   HERO
========================= */

.hero {
  position: sticky;
  top: 0;
  min-height: 110vh;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* =========================
   VIDEO
========================= */

.movie-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 50px 0;
}

.movie-title {
  margin: 0 0 25px;  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.movie-section video {
  display: block;

  width: 25vw;
  max-width: 350px;
  height: auto;
}


/* =========================
   CAROUSEL
========================= */

.hero {
  position: sticky;
  top: 0;

  min-height: 110vh;
  padding-bottom: 10vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-slider {
  position: relative;

  width: 100%;
  height: 80vh;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: visible;
}


/* =========================
   SLIDE
========================= */

.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(45vw, 650px);

  /* 内側の余白はそのまま */
  padding: 0 8vw;

  box-sizing: border-box;

  display: block;
  opacity: 0;

  transform: translate(-50%, -50%);

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;

  z-index: 1;
  pointer-events: none;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide.active {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);

  z-index: 3;
}

.hero-slide.prev {
  opacity: 0.6;

  transform:
    translate(calc(-50% - 28vw), -50%)
    scale(0.68);

  z-index: 1;
}

.hero-slide.next {
  opacity: 0.6;

  transform:
    translate(calc(-50% + 28vw), -50%)
    scale(0.68);

  z-index: 1;
}


/* =========================
   SLIDE TEXT
========================= */

.hero-caption {
  position: relative;
  margin-top: 20px;

  text-align: center;
  z-index: 5;
}

.hero-caption-title {
  margin: 0 0 8px;  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.hero-caption-text {
  margin: 0;

  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.8;
}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 767px) {

  .movie-section {
    padding: 40px 0;
  }

  .movie-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .movie-section video {
    width: 55vw;
    max-width: none;
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 5vh;
  }

  .hero-slider {
    width: 80vw;
  }

  .hero-slide img {
    width: 90%;
  }

  .hero-caption {
    margin-top: -3vh;
    padding: 0 20px;
  }

  .hero-caption-title {
    font-size: 16px;
  }

  .hero-caption-text {
    font-size: 10px;
  }

  .hero-prev {
    left: -35px;
  }

  .hero-next {
    right: -35px;
  }
}

/* =========================
   ARROW
========================= */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 80px;
  height: 30px;

  padding: 0;
  border: none;
  background: transparent;

  color: #111;
  cursor: pointer;
  z-index: 10;

  font-size: 0;
}

.hero-prev {
  left: 25px;
}

.hero-next {
  right: 25px;
}

/* 横線 */
.hero-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 65px;
  height: 1px;
  background: #111;
  transform: translateY(-50%);
}

/* 矢印 */
.hero-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;

  border-top: 1px solid #111;
  border-right: 1px solid #111;

  transform: translateY(-50%) rotate(45deg);
}

/* 左 */
.hero-prev::before {
  left: 0;
}

.hero-prev::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

/* 右 */
.hero-next::before {
  right: 0;
}

.hero-next::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

/* hover */
.hero-prev:hover {
  transform: translateY(-50%) translateX(-5px);
}

.hero-next:hover {
  transform: translateY(-50%) translateX(5px);
}


/* =========================
   SP
========================= */

@media screen and (max-width: 767px) {

  .hero {
    min-height: 90vh;
    padding-bottom: 5vh;
  }

  .hero-slider {
    width: 80vw;
  }

  .hero-slide img {
    width: 90%;
  }

  .hero-prev {
    left: -35px;
  }

  .hero-next {
    right: -35px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;

    font-size: 21px;
    line-height: 30px;
  }

}
/* ==========================
   CONTENT
========================== */

.content{
  position:relative;
  z-index:2;
  margin-top:-10vh;
  border-radius:0px 0px 0 0;
  background:#fff;
  padding:4vw 12vw;
	
}

.content-inner{
  max-width:1400px;
  margin:0 auto;
}

/* ==========================
   SINGLE IMAGE
========================== */

.look-single{
  margin-bottom:10vw;
}

.look-single img{
  width:100%;
  display:block;
  aspect-ratio:3/4;
  object-fit:cover;
}

/* ==========================
   2 COLUMN GRID
========================== */

.look-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10vw;
}

.look-grid img {
  width: 80%;
  display: block;

  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* 左画像 */
.look-grid > :nth-child(odd) img {
  margin-left: auto;
  margin-right: 0;
}

/* 右画像 */
.look-grid > :nth-child(even) img {
  margin-left: 0;
  margin-right: auto;
}

/* ==========================
   CREDIT
========================== */


.credit h2{
  font-size:18px;
  font-weight:400;
  letter-spacing:.15em;

  margin-bottom:10px;
}

.credit{
  margin-top:16px;
  display:flex;
  justify-content:flex-end;
}

.credit p{
  font-size:9px;
  line-height:1.9;
  text-align:right;
  letter-spacing:0.1em;
}

a{
  text-decoration:none;
  color:inherit;
}
	

/* ==========================
   TEXT BLOCK
========================== */

.text-block{
  max-width:700px;
  margin:0 auto 10vw;
}

.text-block h2{
  font-size:24px;
  font-weight:400;
  letter-spacing:.15em;

  margin-bottom:25px;
}

.text-block p{
  font-size:14px;
  line-height:2.4;
  letter-spacing:.08em;
}
/* ==========================
   look-large
========================== */

.look-large{
  width:min(30vw, 550px);
  margin:8vw auto 0;
}

.look-large img{
  width:100%;
  display:block;
}

.look-large .credit{
  margin-top:16px;
  margin-bottom:-16px;
  text-align:right;
}


/* ==========================
   SPACER
========================== */

.space{
  height:10vw;
}


/* ==========================
   INTRO
========================== */

.intro{
  background:#fff;
  position:relative;
  z-index:10;
}

.intro-banner{
  position:relative;
  width:100%;
   height:90vw; /* 好きな高さ */
  aspect-ratio:16/9;
  overflow:hidden;

}


.fade-grid{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0px;
  opacity:0;
  transition:opacity 1s ease;
}

.fade-grid.active{
  opacity:1;
  z-index:2;
}

.fade-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.intro-text{
  max-width:700px;
  margin:0 auto;
  padding:80px 30px 60px;
  text-align:left;
  letter-spacing: 0.15em;
}

.intro-text h1{
  font-size:28px;
  font-weight:400;
  margin-bottom:40px;
}

.intro-text p{
  font-size:13px;
  line-height:1.5;
  letter-spacing:.08em;
   letter-spacing: 0.15em;
}

.sub-title{
  font-size:10px;
  letter-spacing:0.3em;
  margin-bottom:15px;
  text-transform:uppercase;
}




.staff-credit{
  text-align:center;
  margin:100px 0 50px;
}

.staff-credit p{
  font-size:10px;
  line-height:2.2;
  letter-spacing:0.15em;
  font-weight:400;
}


.fade-image{
  position:relative;
}

.fade-image img{
  position:absolute;
  inset:0;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.5s ease;
}

.fade-image img.active{
  opacity:1;
}


/* ==========================
   SP
========================== */

@media screen and (max-width: 767px){

  .content{
    padding:8vw 5vw;
    margin-top:-5vh;
  }

  .intro-banner{
    height:70vw;
  }

  .fade-grid{
    gap:5px;
  }

  .intro-text{
    max-width:100%;
    padding:50px 25px 70px;
  }


  .sub-title{
    font-size:9px;
    letter-spacing:0.2em;
  }

  .intro-text p{
    font-size:11px;
    line-height:2.2;
  }



  .look-grid{
    gap:15px;
    margin-bottom:15vw;
  }

  .look-grid img{
    aspect-ratio:auto;
    height:auto;
  }

  .look-large{
    width:70vw;
    margin:15vw auto 0;
  }

  .credit{
    margin-top:10px;
  }

  .credit p{
    font-size:8px;
    line-height:1.8;
    letter-spacing:0.08em;
  }

  .staff-credit{
    margin:80px 0 40px;
  }

  .staff-credit p{
    font-size:9px;
    line-height:2;
  }

  .store-btn{
    width:100%;
    max-width:280px;
    padding:14px 20px;
    font-size:10px;
  }

  .text-block{
    margin-bottom:15vw;
  }

  .text-block h2{
    font-size:18px;
    margin-bottom:15px;
  }

  .text-block p{
    font-size:12px;
    line-height:2.2;
  }

  .divlogo{
    width:180px;
    height:auto;
    margin-bottom:15px;
  }

}




.look-section {
  position: relative;
  padding: 30px 0;
}


.look-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}









.small-center {
  display: block;
  width: 30%;
  margin: 0 auto;
}



.slide-text {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: #fff;
}





.number {
  display: inline-block;
  transform: rotate(-90deg); /* 回転を打ち消す */
  font-size: 30px;
  font-weight: 700;
  margin-right: 8px;
}



.split-layout {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* =========================
   LEFT
========================= */

.split-left {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.fade-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-images img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;
  animation: fadeImage 6s infinite;
}

.fade-images img:first-child {
  animation-delay: 0s;
}

.fade-images img:nth-child(2) {
  animation-delay: 3s;
}

@keyframes fadeImage {

  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }

}


/* =========================
   RIGHT
========================= */

.split-right {
  width: 50%;
  height: 100%;
  position: relative;
  background: #fff;
}


/* 中央タイトル */

.vertical-title {
  position: absolute;
  top: 45%;
  right: 40%;

  transform: translateY(-50%);

  writing-mode: vertical-rl;
  text-orientation: mixed;

  height: 80vh;

  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;

  margin: 0;
  padding: 0;
}

/* =========================
   右上
========================= */




/* ========================================
   LEFT : SVG固定
======================================== */
.fixed-text {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 9999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 55px;
  letter-spacing: 0.15em;
  line-height: 1;
  font-weight: 900;
  color: #2958B3;

  white-space: nowrap;
}

/* ========================================
   RIGHT : テキスト切り替え
======================================== */
.fixed-label {
  position: fixed;
  bottom: 80px;
  right: 40px;

  width: auto;
  height: 100px;

  z-index: 9999;
  opacity: 1;
}

/* 各テキスト */
.label {
  position: absolute;
  color: #000;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  white-space: nowrap;

  /* 90度回転を完全に解除 */
  transform: none;
}

.label.active {
  opacity: 1;
}


/* 番号 */
.number {
  font-weight: 700;
  margin-right: 8px;
}

body.intro-active .fixed-text,
body.intro-active .fixed-label {
  display: none;
}


/* =========================
   CHECK BUTTON
========================= */

.fixed-label .label .check-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  margin-top: 10px !important;
  padding: 6px 6px 6px 15px !important;

  width: auto !important;
  height: auto !important;

  background: #000 !important;
  background-color: #000 !important;

  color: #fff !important;

  border: none !important;
  border-radius: 999px !important;

  text-decoration: none !important;

  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.1em !important;

  opacity: 1 !important;
}

.fixed-label .label .check-btn span {
  color: inherit !important;
}

.fixed-label .label .check-btn .check-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 22px !important;
  height: 22px !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #fff !important;
  background-color: #fff !important;

  color: #000 !important;

  border-radius: 50% !important;

  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}



.image-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}


.fixed-label {
  transition: opacity 0.3s ease;
}

.fixed-label.hide {
  opacity: 0;
  pointer-events: none;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
}

.banner-item {
  display: block;
  line-height: 0;
  opacity: 0;
  animation: bannerFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.banner-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* 0.25秒間隔で順番に表示 */
.banner-item:nth-child(1) { animation-delay: 0s; }
.banner-item:nth-child(2) { animation-delay: 0.25s; }
.banner-item:nth-child(3) { animation-delay: 0.5s; }
.banner-item:nth-child(4) { animation-delay: 0.75s; }
.banner-item:nth-child(5) { animation-delay: 1s; }
.banner-item:nth-child(6) { animation-delay: 1.25s; }
.banner-item:nth-child(7) { animation-delay: 1.5s; }
.banner-item:nth-child(8) { animation-delay: 1.75s; }

@keyframes bannerFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.set-up-lead {
  text-align: center;
  margin: 80px auto;
}

.set-up-catch {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.set-up-title {
  margin: 0 0 20px;  
	font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.set-up-description {
  margin: 0 auto;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.05em;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}





.btn-online {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  background: transparent;
	font-family: Arial, Helvetica, sans-serif;}


.btn-online:hover {
  background: #111;
  color: #fff;
  letter-spacing: 0.2em;
}


.section-line {
  width: calc(100% - 160px);
  height: 1px;
  background: #111;
  margin: 60px auto;
}

.hero-caption-text {
  margin: 0;

  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
}

/* 商品ごとの間隔 */
.hero-caption-text .product-line {
  display: block;
  margin-bottom: 14px;
}

.hero-caption-text .product-line:last-child {
  margin-bottom: 0;
}

/* CHECKボタン */
.hero-caption-text .check-btn {
  display: inline-block;

  margin-left: 8px;
  padding: 5px 14px;

  background: #000;
  color: #fff !important;

  border-radius: 3px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;

  text-decoration: none !important;

  transition: opacity 0.3s ease;
}

.hero-caption-text .check-btn:hover {
  opacity: 0.6;
}


.hero-slide {
  pointer-events: none;
}

.hero-slide.active {
  pointer-events: auto;
}