@keyframes handTop {
  0% {
    top: 95%;
  }
  50% {
    top: 87%;
  }
  100% {
    top: 95%;
  }
}

#WB002839.merchandise {
  color: #333;

  a {
    color: inherit;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  .imgCenter {
    display: block;
    margin: 0 auto;
  }

  p.imgNote {
    font-size: 19px;
    text-align: center;
  }

  .link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;

    &.link-block {
      display: block;
      margin: 0 auto;
      inline-size: fit-content;
      max-inline-size: 100%;
    }

    &.link-normal {
      background-color: #00b0bd;
      color: #fff;

      &:hover {
        background-color: #00818a;
      }
    }

    &.link-outline {
      background-color: transparent;
      border: 1px solid #00b0bd;
      color: #00b0bd;

      &:hover {
        background-color: #00b0bd;
        color: #fff;
      }
    }
  }

  .section {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: clamp(40px, 6vw, 70px) 0;
    font-size: 18px;
    line-height: 1.5;

    * {
      box-sizing: border-box;
    }

    h2 {
      margin-bottom: 5px;
      font-size: clamp(28px, 3.2vw, 36px);
      line-height: 1.2;
      font-weight: normal;
      text-align: center;
    }

    h3 {
      margin-bottom: 10px;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: normal;
      line-height: 1.2;
    }

    p {
      margin: 0;
      text-align: justify;
      text-justify: inter-ideograph;
    }

    .title-line {
      overflow: hidden;
      margin-bottom: 30px;
      font-weight: bold;
      text-align: center;

      span {
        display: inline-block;
        position: relative;

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          top: 50%;
          width: 500%;
          border-bottom: 1px solid #aeaeae;
        }

        &::before {
          left: 100%;
          margin-left: 10px;
        }

        &::after {
          right: 100%;
          margin-right: 10px;
        }
      }
    }
  }

  .content {
    position: relative;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .vAlignMiddle {
    display: grid;
    place-items: center;
    text-align: center;
  }

  p.sectionDesc,
  p.sectionDesc-center {
    margin: 0 auto 30px;
    padding: 0;
    max-inline-size: 60rem;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.5;
  }

  p.sectionDesc-center {
    text-align: center;
  }

  .pageName {
    width: min(1200px, 100%);
    line-height: 48px;
    margin: 0 auto;
  }

  .highLight {
    color: #ffff00;
  }

  /* ============ Banner ============ */
  #indBanner {
    height: auto;
    min-height: clamp(320px, 50vw, 500px);
    margin-bottom: clamp(32px, 6vw, 60px);
    padding: 0;
    color: #fff;
    background: url("../images/merchandise/bg_banner.jpg") no-repeat center / cover;

    h1 {
      margin-bottom: 4px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      text-align: left;
      color: #ffff00;
    }

    .pageDesc {
      width: auto;
      max-inline-size: 36rem;
      font-size: clamp(16px, 1.7vw, 20px);
      line-height: 1.5;
    }

    strong {
      color: #ffff99;
      font-weight: normal;
    }

    .vAlignContent {
      width: 100%;
      text-align: left;
    }
  }

  /* ============ Nav (submenu plugin) ============ */
  #navLink {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-width: 0;
    height: 60px;
    margin-top: -60px;
    padding: 0;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 18px;
    text-align: center;

    > ul {
      display: inline-flex;
      align-items: stretch;
      height: 60px;
    }

    > ul > li {
      width: auto;
      min-width: 140px;
      height: 60px;
      line-height: 60px;
      border-left: 1px solid #ccc;

      &.end {
        border-right: 1px solid #ccc;
      }

      > a {
        display: block;
        width: 100%;
        height: 100%;
        padding-inline: 14px;
      }
    }

    .navLinks:hover,
    .selected {
      color: #00b0bd;
      font-weight: bold;
    }

    .subLink {
      display: none;
      text-align: center;
      width: 100%;
      margin-left: -1px;
      border: 1px solid #ccc;
      border-top: none;
      background-color: #fff;
      text-indent: 0;

      > li {
        width: 100%;
        line-height: 40px;
        font-size: 17px;

        a {
          display: block;
          color: #333;
          font-weight: normal;

          &:hover {
            background-color: #00b0bd;
            color: #fff;
          }
        }
      }
    }

    &.fixed {
      position: fixed;
      top: 0;
      margin-top: 0;
      z-index: 1000;
    }
  }

  /* ============ Foreword cards ============ */
  #foreword {
    .jobProblem {
      color: #fff;

      &:hover {
        .handTop {
          animation-play-state: paused;
        }
      }
    }

    .txt {
      overflow: hidden;
      margin-bottom: 30px;
      padding: 0 15px;
      cursor: pointer;
      width: 100%;

      .outline {
        overflow: hidden;
        position: relative;
        padding: 30px 0;
        background-color: #00b0bd;
        border-radius: 2px;
        min-height: 200px;
      }

      .nameLayer {
        position: relative;
        text-align: center;
        z-index: 2;

        p {
          margin-top: 8px;
          font-size: clamp(18px, 2.1vw, 24px);
          font-weight: bold;
          text-align: inherit;
        }
      }

      .txtLayer {
        position: absolute;
        top: 50%;
        left: 0;
        padding: 0 10px;
        transform: translateY(-50%);
        width: 100%;
        display: grid;
        gap: 10px;

        p {
          padding: 0 20px;
        }
      }

      .handTop {
        position: absolute;
        top: 95%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        animation: handTop 1.5s infinite;
        animation-timing-function: ease-out;
      }

      .mask {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 3;
        width: 100%;
        height: 100%;
      }
    }

    .jobProblem {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: stretch;
    }

    .jobProblem01,
    .jobProblem02 {
      grid-template-columns: 1fr;
    }

    .txt01 {
      width: 100%;

      .outline {
        background-color: #00b0bd;
      }

      .txtLayer {
        color: #00b9c7;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mask {
        background-color: rgb(0 81 87 / 90%);
      }
    }

    .txt02 {
      width: 100%;

      .outline {
        background-color: #0bd8e7;
      }

      .txtLayer {
        color: #0be1f1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .mask {
        background-color: rgb(6 125 134 / 90%);
      }
    }

    .jobProblem02 {
      .txt01 {
        .outline {
          background-color: #e6b437;
        }

        .txtLayer {
          color: #e7b740;
        }

        .mask {
          background-color: rgb(163 122 20 / 90%);
        }
      }

      .txt02 {
        .outline {
          background-color: #d2cd46;
        }

        .txtLayer {
          color: #d4cf4e;
        }

        .mask {
          background-color: rgb(143 139 35 / 90%);
        }
      }
    }
  }

  /* ============ Main content ============ */
  #mainContent {
    background-color: #e9e9e9;

    .group {
      padding: clamp(20px, 4vw, 50px);
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(16px, 3vw, 28px);
      margin-bottom: clamp(10px, 3vw, 30px);

      .list {
        text-align: center;
        cursor: pointer;

        img {
          width: clamp(84px, 16vw, 120px);
          height: clamp(84px, 16vw, 120px);
          background-color: #e6b437;
          border-radius: 50%;
          transition: .5s;
        }

        p {
          position: relative;
          margin-top: 10px;
          font-size: clamp(16px, 1.8vw, 20px);
          text-align: center;

          &::before {
            content: "";
            display: block;
            position: absolute;
            top: 110%;
            left: 50%;
            width: 0;
            height: 3px;
            transform: translateX(-50%);
            background-color: #d09c1a;
            transition: .5s;
          }
        }

        &:hover {
          img {
            background-color: #d09c1a;
          }

          p {
            color: #d09c1a;

            &::before {
              width: 50%;
            }
          }
        }
      }
    }

    .issueGroup {
      .issue {
        padding-bottom: clamp(44px, 6vw, 80px);

        > img {
          display: block;
          max-inline-size: 100%;
          height: auto;
          margin: 0 auto;
        }
      }

      .imgGroup {
        margin: clamp(28px, 5vw, 60px) 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(16px, 3vw, 24px);
        align-items: start;

        &.imgGroupflex {
          display: flex;
          justify-content: center;
          gap: clamp(16px, 3vw, 24px);
          flex-wrap: wrap;
        }

        .list {
          text-align: center;

          a {
            display: inline-block;
            position: relative;
            font-size: 0;
            max-inline-size: 100%;

            img {
              max-inline-size: 100%;
              height: auto;
              display: block;
            }

            &::before {
              content: "";
              position: absolute;
              bottom: 0;
              right: 0;
              width: 26px;
              height: 26px;
              background: url("../images/icon_zoom.png") no-repeat center center;
            }
          }

          p {
            text-align: center;
          }
        }
      }

      .link-outline {
        width: min(400px, 100%);
        background-color: #fff;
        font-size: clamp(18px, 2.6vw, 28px);

        &:hover {
          background-color: #00b0bd;
        }
      }
    }
  }

  /* ============ Produce (kept) ============ */
  #produce {
    .txtLayer {
      padding: 0 55px 0 90px;

      p {
        font-size: 20px;
      }
    }
  }

  /* ============ Responsive ============ */
  @media (min-width: 768px) {
    #foreword {
      .jobProblem {
        gap: 0;
      }
      .jobProblem01,
      .jobProblem02 {
        grid-template-columns: 1fr;
      }

      .jobProblem01,
      .jobProblem02 {
        display: grid;
      }

      .jobProblem01 {
        grid-template-columns: 40% 60%;
      }

      .jobProblem02 {
        grid-template-columns: 40% 60%;
      }
    }

    #mainContent {
      .group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .issueGroup {
        .imgGroup {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }
    }
  }

  @media (min-width: 1024px) {
    #mainContent {
      .group {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #foreword .txt .handTop {
      animation: none;
    }
  }
}