html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-main);
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

#caps2026 {

  nav {
    ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: right;
      @media (width < 768px) {
        padding: 20px;
        gap: 10px;
      }
    }
    a {
      display: block;
      position: relative;
      font-family: var(--font-en);
      font-size: 1.8rem;
      padding: 0 8px;
      line-height: 1.2;
      letter-spacing: 0;
      transition: color .5s var(--ease);
      @media (768px <= width) {
        font-size: 2rem;
        padding: 20px 24px;
      }
      .nav-text-mask {
        display: inline-block;
        height: 1.2em;
        line-height: 1.2;
        overflow: hidden;
        vertical-align: top;
      }
      .nav-text {
        display: block;
        position: relative;
        transition: transform .3s var(--ease);
      }
      .nav-text::after {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
      }
      &::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 3px;
        left: 0;
        top: 0;
        @media (768px <= width) {
          width: 10px
        }
      }
      @media (768px <= width) {
        &:hover {
          .nav-text {
            transform: translateY(-100%);
          }
        }
      }
    }
    .authentic {
      color: var(--gold);
      &::before {
        background: var(--gold);
      }
    }
    .casual {
      color: var(--orange);
      &::before {
        background: var(--orange);
      }
    }
    .junior {
      color: var(--red);
      &::before {
        background: var(--red);
      }
    }
    .others {
      color: var(--nevy);
      &::before {
        background: var(--nevy);
      }
    }
  }
  .mv {
    img {
      width: 100%;
    }
  }
  section {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      height: 100%;
      left: 0;
      top: 0;
      width: 10px;
      @media (768px <= width) {
        width: 70px;
      }
    }
    @media (768px <= width) {
      padding-left: 70px;
    }
    &:nth-child(odd) {
      background: #F5F5F5;
    }
  }
  .section-inner {
    margin: 0 auto;
    max-width: 90%;
    padding: 40px 0;
    @media (768px <= width) {
      padding: 90px 0;
      width: var(--w-site);
    }
  }
  .section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: .05em;
    @media (768px <= width) {
      font-size: 5rem;
      margin-bottom: 60px;
    }
  }

  .product-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat( 2, 1fr );
    gap: 25px 20px;
    @media (768px <= width) {
      grid-template-columns: repeat( 4, 1fr );
      gap: 50px 30px;
    }
    li {
      min-width: 0;
    }
    a {
      display: block;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      .img-box {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
      }
      .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .img-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(110, 114, 126, 0.80);
        opacity: 0;
        transition: opacity 0.3s var(--ease);
        z-index: 1;
        pointer-events: none;
      }
      .img-box::after {
        content: "VIEW\AMORE";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: pre;
        text-align: center;
        line-height: 1;
        color: #fff;
        font-family: var(--font-en);
        font-size: 2.8rem;
        letter-spacing: 0;
        padding-bottom: 10px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='71' height='15' fill='none' viewBox='0 0 71 15'%3E%3Cpath fill='%23fff' d='M70.707 8.071a1 1 0 0 0 0-1.414L64.343.293a1 1 0 1 0-1.414 1.414l5.657 5.657-5.657 5.657a1 1 0 0 0 1.414 1.414zM0 7.364v1h70v-2H0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center calc(50% + 1.2em);
        background-size: 71px 15px;
        opacity: 0;
        transition: opacity 0.3s var(--ease);
        z-index: 2;
        pointer-events: none;
      }

      &:hover {
        .img-box::before,
        .img-box::after {
          opacity: 1;
        }
      }
    }
    .text-box {
      margin-top: 10px;
    }
    h3 {
      color: var(--nevy, #000020);
      font-size: 1.2rem;
      font-weight: 600;
      @media (768px <= width) {
        font-size: 1.6rem;
      }
    }
    .price {
      font-weight: 600;
      .currency {
        font-size: 2rem;
        font-family: var(--font-en-2);
        @media (768px <= width) {
          font-size: 2.5rem;
        }
      }
      .price-amount {
        font-size: 3rem;
        font-weight: 700;
        font-family: var(--font-en-2);
        letter-spacing: 0;
        @media (768px <= width) {
          font-size: 4rem;
        }
      }
      .tax {
        font-size: 1rem;
        letter-spacing: 0;
        @media (768px <= width) {
          font-size: 1.4rem;
        }
      }
    }
  }

  #authentic { --section-color: var(--gold); }
  #casual    { --section-color: var(--orange); }
  #junior    { --section-color: var(--red); }
  #others    { --section-color: var(--nevy); }
  #authentic, #casual, #junior, #others {
    &::before {
      background: var(--section-color);
    }
    .section-title {
      color: var(--section-color);
      font-family: var(--font-en);
    }
  }

  @media (768px <= width) {
    .sp { display: none !important; }
  }
  @media (width < 768px) {
    .pc { display: none !important; }
  }
}
