@charset "UTF-8";
/*-------------------------
  DISCOGRAPHY
-------------------------*/
/* Common */
.discography {
  background-color: var(--black);
}
.discography__inner {
  max-width: var(--inner-width);
  margin: auto;
  padding-top: 14vw;
  padding-bottom: 20vw;
}
  /* PC */
@media (min-width: 768px) {
  .discography__inner {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

/* List */
.discography.list {
  .discography-item {
    margin-top: 9vw;
  }
  .discography-item__list {
    margin-bottom: 6vw;
  }
  .discography-item__thumb {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--dark-gray);
  }
  .discography-item__title {
    margin-bottom: 1vw;
    font-size: min(calc(16 / 375 * 100vw), 16px);
    letter-spacing: 0.05em;
    line-height: 1.65;
    color: var(--white);
  }
  .discography-item__head {
    display: flex;
    font-family: "Josefin Sans";
    font-weight: 500;
    font-size: min(calc(13 / 375 * 100vw), 13px);
    letter-spacing: 0.05em;
    line-height: 1.65;
    color: var(--white);
  }
  .discography-item__date {
    margin-right: 16px;
    color: var(--gray);
  }
  .discography-item__cat {
    color: var(--gold);
  }
  /* PC */
  @media (min-width: 768px) {
    .discography-item {
      margin-top: 80px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    .discography-item__list {
      width: calc(100% / 2 - 20px);
      margin-bottom: 20px;
    }
    .discography-item__thumb {
      aspect-ratio: 1 / 1;
      width: 100%;
      height: auto;
      background-color: var(--dark-gray);
    }
    .discography-item__title {
      margin-bottom: 10px;
      font-size: min(calc(16 / 375 * 100vw), 16px);
    }
    .discography-item__head {
      font-size: min(calc(12 / 375 * 100vw), 12px);
    }
  }
}

/* Detail */
.discography.detail {
  .discography__inner {
  max-width: var(--inner-width);
  margin: auto;
  }
  .discography-item {
    margin-top: 9vw;
  }
  .discography-item div {
    margin-bottom: 6vw;
  }
  .discography-item__thumb {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
  }
  .discography-item__title {
    margin-bottom: 1vw;
    font-weight: 500;
    font-size: min(calc(15 / 375 * 100vw), 18px);
    letter-spacing: 0.05em;
    line-height: 1.65;
  }
  .discography-item__head {
    display: flex;
    font-family: "Josefin Sans";
    font-weight: 500;
    font-size: min(calc(13 / 375 * 100vw), 14px);
    letter-spacing: 0.05em;
    line-height: 1.65;
  }
  .discography-item__date {
    margin-right: 16px;
    color: var(--gray);
  }
  .discography-item__cat {
    color: var(--gold);
  }
  .discography-item__desc,
  .discography-item__price,
  .discography-item_code {
    font-weight: 300;
    font-size: min(calc(15 / 375 * 100vw), 15px);
    letter-spacing: 0.05em;
    line-height: 1.65;
    text-align: left;
    word-break: break-all;
  }
  .discography-item__price {
    font-family: "Josefin Sans";
  }
  .discography-item__btn {
    margin-bottom: 3vw;
  }
  .discography-item__btn a {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--dark-gray);
    color: var(--white);
    border-radius: 20px;
    line-height: 1;
    font-size: min(calc(15 / 375 * 100vw), 15px);
  }
  /* PC */
  @media (min-width: 768px) {
    .discography-item {
      display: flex;
      gap: 40px;
      margin-top: 80px;
    }
    .discography-item div {
      margin-bottom: 24px;
    }
    .discography-item__thumb {
      width: 400px;
      height: 100%;
      border-radius: 12px;
      overflow: hidden;
    }
    .discography-item__text {
      width: calc(100% - 400px - 40px);
    }
    .discography-item__cat {
      font-weight: 500;
    }
    .discography-item__title {
      margin-bottom: 6px;
      font-weight: 300;
    }
  }
}