@charset "utf-8";@charset "UTF-8";

#header,
.keyword-box,
.crumbsList,
#header .header__nav,
#header .header__inner,
#header .header__nav--bottom {
  display: none;
}

/* ===================================================
   26 AUTUMN LOOK LP - Base Settings
=================================================== */
.autumn-look-26-lp *,
.autumn-look-26-lp *::before,
.autumn-look-26-lp *::after {
  box-sizing: border-box;
}

.autumn-look-26-lp {
  width: 100%;
  max-width: 1920px; 
  margin: 0 auto;
  overflow: hidden;
}

/* ===================================================
   1. Hero Section (CSS Parallax)
=================================================== */
.autumn-look-26-lp .hero-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
  max-height: 100vh; 
  max-height: 100dvh; 
  overflow: hidden;
  clip-path: inset(0); 
}

.autumn-look-26-lp .hero-wrapper picture {
  display: contents;
}

.autumn-look-26-lp .hero-img {
  position: fixed; 
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; 
  max-width: 1920px; 
  aspect-ratio: 16 / 9; 
  max-height: 100vh; 
  max-height: 100dvh; 
  object-fit: cover;
  object-position: center bottom; 
  z-index: -1; 
  will-change: transform;
}

/* ===================================================
   2. Title Section
=================================================== */
.autumn-look-26-lp .title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 20px; 
}

.autumn-look-26-lp .collection-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500; 
  letter-spacing: 0.15em; 
  text-indent: 0.15em; 
  color: #222;
  margin: 0;
  line-height: 1.5;
}

/* ===================================================
   3 & 4. 2 Column Look Section
=================================================== */
.autumn-look-26-lp .look-container {
  display: flex;
  justify-content: space-between;
  gap: 40px; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.autumn-look-26-lp .look-column {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
}

.autumn-look-26-lp .look-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom; 
}

/* --- Item List --- */
.autumn-look-26-lp .item-list {
  display: flex;
  flex-direction: column;
  gap: 15px; 
  padding-top: 25px; 
}

.autumn-look-26-lp .item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autumn-look-26-lp .item-name {
  margin: 0;
  font-size: 14px;
  font-weight: 500; 
  color: #222;
  letter-spacing: 0.05em;
}

.autumn-look-26-lp .buy-btn {
  display: inline-block;
  background-color: #222;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 12px;
  text-decoration: none;
  border-radius: 3px; 
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.autumn-look-26-lp .buy-btn:hover {
  opacity: 0.7;
}

/* ===================================================
   5. Full Width Image Section (Fade In)
=================================================== */
.autumn-look-26-lp .fade-in-section {
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin-bottom: 100px; 
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.autumn-look-26-lp .fade-in-section.is-visible {
  opacity: 1;
}

.autumn-look-26-lp .fullwidth-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===================================================
   6. Bottom Link Buttons
=================================================== */
.autumn-look-26-lp .link-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 20px 120px;
}

.autumn-look-26-lp .bottom-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 60px;
  border: 1px solid #666; 
  background-color: #fff;
  color: #333;
  font-size: 13px;
  letter-spacing: 0.15em; 
  text-indent: 0.15em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.autumn-look-26-lp .bottom-link-btn:hover {
  background-color: #f7f7f7;
}

/* ===================================================
   7. Footer Image Section
=================================================== */
.autumn-look-26-lp .footer-image-wrapper {
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.autumn-look-26-lp .footer-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

/* ===================================================
   Tablet Responsive Grid (768px以下)

=================================================== */
@media screen and (max-width: 768px) {
  
  /* Title Section */
  .autumn-look-26-lp .title-wrapper {
    padding: 80px 15px; 
  }
  .autumn-look-26-lp .collection-title {
    font-size: 18px; 
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  
  /* 2 Column Look Section */
  .autumn-look-26-lp .look-container {
    gap: 20px; 
    padding: 0 20px 60px; 
  }
  .autumn-look-26-lp .look-column {
    width: calc(50% - 10px); 
  }
  
  /* Item List */
  .autumn-look-26-lp .item-list {
    padding-top: 20px;
    gap: 12px;
  }
  .autumn-look-26-lp .item-name {
    font-size: 11px; 
  }
  .autumn-look-26-lp .buy-btn {
    padding: 2px 10px;
    font-size: 10px;
  }
  
  /* Fade In Section */
  .autumn-look-26-lp .fade-in-section {
    margin-bottom: 60px;
  }
  
  /* Link Buttons */
  .autumn-look-26-lp .link-btn-wrapper {
    padding: 0 20px 60px;
  }
  .autumn-look-26-lp .bottom-link-btn {
    max-width: 100%; 
    height: 50px;
    font-size: 12px;
  }
}

/* ===================================================
   Smartphone Only (599px以下)

=================================================== */
@media screen and (max-width: 599px) {
  
  /* Hero Section (スマホ用) */
  .autumn-look-26-lp .hero-wrapper,
  .autumn-look-26-lp .hero-img {
    aspect-ratio: 3 / 4; 
  }

  /* 1 Column Look Section  */
  .autumn-look-26-lp .look-container {
    flex-direction: column;
    gap: 60px; 
  }
  .autumn-look-26-lp .look-column {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
    .autumn-look-26-lp .item-name {
        font-size: 9px;
    }
    .autumn-look-26-lp .buy-btn {
        padding: 2px 7px;
        font-size: 9px;
    }
}