@charset "utf-8";@charset "UTF-8";

#header,
.keyword-box,
.crumbsList {
  position: relative !important;
}

/* ====================================================
   LM2026AWLOOK Base Styles
==================================================== */
.LM2026AWLOOK-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

.LM2026AWLOOK-wrapper img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* --- Hero Section & Logo Motion --- */
.LM2026AWLOOK-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* PC/SP画像切り替え用の指定 */
.LM2026AWLOOK-hero-bg {
  width: 100%;
}
.LM2026AWLOOK-hero-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.LM2026AWLOOK-img-sp {
  display: none; 
}

/* ロゴ全体のラッパー (位置をPC・SP共通で80%に変更) */
.LM2026AWLOOK-logo-wrap {
    position: absolute;
    top: 80%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
}

/* ロゴのアニメーション共通指定 */
.LM2026AWLOOK-logo-motion {
  opacity: 0;
  animation: LM2026AWLOOK-jinwariUp 2.5s ease-out forwards;
  animation-delay: 0.5s; 
}

/* PC表示時のロゴ出し分け設定 */
.LM2026AWLOOK-logo-pc {
  display: block;
}
.LM2026AWLOOK-logo-sp {
  display: none;
}

@keyframes LM2026AWLOOK-jinwariUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Navigation Box --- */
.LM2026AWLOOK-nav {
  margin: 30px 4% 60px;
  border-bottom: 1px solid #000000; 
}

.LM2026AWLOOK-nav-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-end;
}

.LM2026AWLOOK-nav-list li {
  flex: 1;
  max-width: 150px;
}

.LM2026AWLOOK-nav-list a {
    display: block;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    border-bottom: none;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.LM2026AWLOOK-nav-list a:hover {
  opacity: 0.5;
}

/* --- Sections & Headings --- */
.LM2026AWLOOK-season {
  margin-bottom: 80px;
  padding: 0 4%;
  scroll-margin-top: 40px;
}

.LM2026AWLOOK-heading {
    font-size: 36px;
    font-weight: normal;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ====================================================
   Layout Adjustments
==================================================== */
.LM2026AWLOOK-item-large-wrap {
  max-width: 560px; 
  margin: 0 auto 40px;
}

.LM2026AWLOOK-item-large img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.LM2026AWLOOK-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px; 
}

.LM2026AWLOOK-grid-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.LM2026AWLOOK-swiper .swiper-slide img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

/* ====================================================
   Swiper Customization (ドットのみ)
==================================================== */
.LM2026AWLOOK-swiper {
  width: 100%;
  position: relative;
}

.LM2026AWLOOK-swiper .swiper-slide {
  cursor: pointer;
}

/* ドットのスタイル */
.LM2026AWLOOK-swiper .swiper-pagination-bullets {
  bottom: 12px !important; 
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.LM2026AWLOOK-swiper .swiper-pagination-bullet {
  background: #ffffff !important; 
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 4px !important;
  border-radius: 50%;
  display: inline-block;
  transition: opacity 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); 
}

.LM2026AWLOOK-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.LM2026AWLOOK-swiper .swiper-button-prev,
.LM2026AWLOOK-swiper .swiper-button-next {
  display: none !important;
}

/* ====================================================
   Credit Text & Footer
==================================================== */
.LM2026AWLOOK-credit {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.02em;
}

.LM2026AWLOOK-credit p {
    margin: 0;
    font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.LM2026AWLOOK-credit a {
  color: #333;
  text-decoration: none;
  margin-left: 4px;
  font-weight: bold;
  transition: opacity 0.3s ease;
  font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.LM2026AWLOOK-credit a:hover { opacity: 0.5; }

.LM2026AWLOOK-footer {
  margin: 60px 4% 80px;
  padding-top: 50px;
  border-top: 1px solid #dcdcdc;
  text-align: center;
}

.LM2026AWLOOK-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-family: "Gill Sans Nova", "Gill Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.LM2026AWLOOK-footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.LM2026AWLOOK-footer-links a:hover { opacity: 0.5; }
.LM2026AWLOOK-footer-logo {
  width: 200px;
  margin: 0 auto;
}
.LM2026AWLOOK-footer-logo img { width: 100%; height: auto; }

/* ====================================================
   Responsive Styles (SP)
==================================================== */
@media screen and (max-width: 767px) {
  .LM2026AWLOOK-img-pc { display: none; }
  .LM2026AWLOOK-img-sp { display: block; }

  /* SP表示時のロゴ出し分け設定 */
  .LM2026AWLOOK-logo-pc { display: none; }
  .LM2026AWLOOK-logo-sp { display: block; }

  .LM2026AWLOOK-nav { margin-bottom: 40px; }
  .LM2026AWLOOK-nav-list { gap: 4px; }
  .LM2026AWLOOK-nav-list a { font-size: 14px; padding: 10px 0; }
  .LM2026AWLOOK-season { margin-bottom: 60px; }
  .LM2026AWLOOK-item-large-wrap { margin-bottom: 30px; }

  .LM2026AWLOOK-grid {
    grid-template-columns: 1fr; 
    gap: 40px; 
  }

  .LM2026AWLOOK-credit { font-size: 12px; margin-top: 8px; }
  
  .LM2026AWLOOK-swiper .swiper-pagination-bullets { bottom: 8px !important; }
  .LM2026AWLOOK-swiper .swiper-button-prev, 
  .LM2026AWLOOK-swiper .swiper-button-next {
    transform: scale(0.8);
  }

  .LM2026AWLOOK-footer { margin: 40px 4% 60px; padding-top: 40px; }
  .LM2026AWLOOK-footer-links { gap: 20px; margin-bottom: 80px; }
  .LM2026AWLOOK-footer-links a { font-size: 24px; }
  .LM2026AWLOOK-footer-logo { width: 160px; }

.LM2026AWLOOK-logo-wrap {
        top: 65%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 80%;
    }
.crumbsList {
    margin-bottom: 0px; 
   }
}