@charset "UTF-8";


.pickup-gallery {
  padding-top: 8rem;

  .swiper-container3 {
    position: relative;
    padding-bottom: 6rem;

    .swiper-wrapper {
      display: flex;

      .swiper-slide {
        border: 0.1rem solid #000;
        background-color: #fff;
        padding: 3rem;
        height: auto;

        & img {
          width: 100%;
          aspect-ratio: 2;
          object-fit: cover;
        }

        .title {
          padding-top: 1.6rem;
          font-size: 2rem;
          line-height: 1.5;
        }
      }
    }

    .swiper-pagination {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);

      .swiper-pagination-bullet {
        margin: 0 1rem;
        width: 2rem;
        height: 2rem;
        background: lightgray;
      }

      .swiper-pagination-bullet-active {
        background-color: gray;
      }
    }
  }
}

.media-taxonomy {
  margin: 16rem 0;

  & h2 {
    margin: 6rem 0 4rem;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #000000;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
  }

  .media-list {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 6rem;

    .media-tax-card {
      border-radius: 2rem;
      overflow: hidden;
      border: 0.2rem solid #000;
      box-shadow: 0 0 0.5rem 0 #000;

      & a {
        width: 100%;

        .media-tax-title {
          height: 6rem;
          background-color: #000;
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: 'Noto Sans JP';
          font-weight: 700;
          font-size: 2rem;
          line-height: 1.5;
          letter-spacing: 0.1em;
          color: #fff;
        }

        .media-tax-description {
          padding: 2rem 4rem;
          font-family: 'Noto Sans JP';
          font-weight: 400;
          font-size: 1.6rem;
          line-height: 1.5;
          letter-spacing: 0.1em;
        }
      }
    }
  }

  .media-card-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;

    .media-card {
      .rank {
        margin-bottom: 1rem;
        font-size: 2.4rem;

        & span {
          color: red;
        }
      }

      & a {
        border: 0.1rem solid #000;
        border-radius: 1rem;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;

        .media-card-thumb {
          & img {
            width: 100%;
            aspect-ratio: 1.5;
            object-fit: cover;
          }
        }

        .media-card-body {
          .first-row {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;

            .media-card-terms {
              display: flex;
              gap: 1rem;
              flex-wrap: wrap;

              .media-term {
                background-color: #000;
                font-family: 'Noto Sans JP';
                font-weight: 400;
                font-size: 1.6rem;
                line-height: 1.5;
                letter-spacing: 0.1em;
                color: #fff;
                padding: 0.5rem;
                display: flex;
                align-items: center;
                text-align: center;
              }
            }

            .media-card-date {
              font-family: 'Noto Sans JP';
              font-weight: 400;
              font-size: 1.6rem;
              line-height: 1.5;
              letter-spacing: 0.1em;
              color: #000;
            }
          }

          .media-card-title {
            margin-top: 2rem;
            font-family: 'Noto Sans JP';
            font-weight: 700;
            font-size: 1.8rem;
            line-height: 1.5;
            letter-spacing: 0.1em;
          }
        }
      }
    }
  }

  .ranking-list {
    .media-card:first-child {
      grid-column: 1 / span 2;
    }
  }

  .see-all {
    margin: 6rem auto 0;
    width: 30rem;
    height: 6rem;
    border-radius: 0.5rem;
    border: 0.2rem solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #000;
  }
}