@charset "UTF-8";
:root {
  --vw: 1vw;
  --color-base: #111111;
  --color-line: #2c2c2c;
  --color-gray: #656565;
  --color-white: #ffffff;
  --color-orange: #e26522;
  --font-family-base: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-family-heading: "Meychan_web", sans-serif;
  --font-family-number: "Hind", sans-serif;
  --font-weight-base: 500;
  --font-weight-heading: 400;
  --font-weight-number: 500;
  --letter-spacing-base: 0.08em;
  --letter-spacing-heading: 0.2em;
  --letter-spacing-number: 0.08em;
  --color-rnw-black: #0a0a0a;
  --color-rnw-white: #ffffff;
  --color-rnw-cream: #f9f7f4;
  --color-rnw-section-alt: #e8dece;
  --color-rnw-orange: #ff5500;
  --color-rnw-gray-50: #f2ede6;
  --color-rnw-gray-100: #efefec;
  --color-rnw-gray-200: #ddddd8;
  --color-rnw-gray-400: #999990;
  --color-rnw-gray-600: #555550;
  --color-rnw-gray-800: #2a2a26;
  --font-family-rnw-jp: "Noto Sans JP", var(--font-family-base);
  --font-family-rnw-en: "Antonio", "Bebas Neue", sans-serif;
  --font-family-rnw-script: "Dancing Script", cursive;
  --font-family-rnw-mono: "Space Mono", monospace;
  --ease-rnw-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-rnw-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

.p-singleDiscography {
  font-family: var(--font-family-rnw-jp);
  color: var(--color-rnw-black);
  background: var(--color-rnw-white);
}
.p-singleDiscography a:hover {
  opacity: 1;
}
.p-singleDiscography__hero.c-pageHero {
  padding-bottom: 40px;
}
.p-singleDiscography__layout {
  display: grid;
  grid-template-columns: clamp(140px, 22vw, 260px) 1fr;
  gap: 40px;
  align-items: start;
  padding: 0 80px 80px;
}
@media (max-width: 860px) {
  .p-singleDiscography__layout {
    grid-template-columns: 1fr;
    padding: 0 20px 56px;
  }
}
.p-singleDiscography__jacket {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.14);
}
.p-singleDiscography__jacket.--placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-rnw-en);
  font-size: 48px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  background: var(--color-rnw-gray-800);
}
.p-singleDiscography__info {
  min-width: 0;
}
.p-singleDiscography__type {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-family-rnw-mono);
  font-size: 8.96px;
  letter-spacing: 0.22em;
  color: var(--color-rnw-orange);
  text-transform: uppercase;
}
.p-singleDiscography__title {
  font-family: var(--font-family-rnw-jp);
  font-size: clamp(28.8px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-rnw-black);
  margin: 8px 0;
}
.p-singleDiscography__date {
  font-family: var(--font-family-rnw-mono);
  font-size: 11.52px;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.35);
}
.p-singleDiscography__body {
  color: rgba(10, 10, 10, 0.62);
  font-size: 14.08px;
  line-height: 1.9;
  margin: 20px 0;
}
.p-singleDiscography__body p {
  margin-bottom: 1em;
}
.p-singleDiscography__price {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-rnw-black);
}
.p-singleDiscography__tracklist {
  margin-top: 40px;
}
.p-singleDiscography__tracklist__heading {
  font-family: var(--font-family-rnw-en);
  font-size: 13.6px;
  letter-spacing: 0.28em;
  color: rgba(10, 10, 10, 0.22);
  margin-bottom: 12px;
}
.p-singleDiscography__tracklist__body ol,
.p-singleDiscography__tracklist__body ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  counter-reset: p-singleDiscography-track;
}
.p-singleDiscography__tracklist__body li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-family-rnw-mono);
  font-size: 12.48px;
  color: rgba(10, 10, 10, 0.52);
  letter-spacing: 0.04em;
  counter-increment: p-singleDiscography-track;
}
.p-singleDiscography__tracklist__body li::before {
  content: counter(p-singleDiscography-track, decimal-leading-zero);
  font-family: var(--font-family-rnw-en);
  font-size: 16px;
  color: var(--color-rnw-orange);
  min-width: 24px;
}
.p-singleDiscography__productLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.p-singleDiscography__productLinks a {
  display: inline-block;
  text-align: center;
  flex: 1 0 160px;
  padding: 12px;
  background: var(--color-rnw-gray-50);
  border: 1px solid var(--color-rnw-gray-100);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-rnw-black);
  transition: border-color 0.2s;
}
.p-singleDiscography__productLinks a:hover {
  border-color: var(--color-rnw-orange);
}
.p-singleDiscography__related {
  padding: 56px 80px 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 719px) {
  .p-singleDiscography__related {
    padding: 40px 20px 56px;
  }
}
.p-singleDiscography__related__heading {
  font-family: var(--font-family-rnw-en);
  font-size: 16px;
  letter-spacing: 0.28em;
  color: rgba(10, 10, 10, 0.22);
  margin-bottom: 28px;
}
.p-singleDiscography__related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-singleDiscography__related__item {
  display: block;
  width: 120px;
  min-width: 0;
  text-decoration: none;
}
@media (max-width: 480px) {
  .p-singleDiscography__related__item {
    width: calc(50% - 10px);
  }
}
.p-singleDiscography__related__img {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  border-radius: 3px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-singleDiscography__related__img.--placeholder {
  aspect-ratio: 1;
  background: var(--color-rnw-gray-800);
}
.p-singleDiscography__related__type {
  font-family: var(--font-family-rnw-mono);
  font-size: 8.8px;
  letter-spacing: 0.22em;
  color: var(--color-rnw-orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.p-singleDiscography__related__title {
  font-size: 12.48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-rnw-black);
}