:root {
  --ink: #1e1b19;
  --paper: #fafafa;
  --red: #d82d2c;
  --yellow: #ffcc00;
  --muted: #77736f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (min-width: 769px) and (max-width: 1440px) {
  html { font-size: .6944444444vw; }
}

@media (min-width: 1440px) {
  html { font-size: 62.5%; }
}

@media (max-width: 768px) {
  html { font-size: 2.6666666667vw; }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }

.jwave-bar {
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4e2df;
  background: #fff;
}

.jwave-bar__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jwave-bar__logoLink,
.jwave-bar__homeLink {
  display: inline-flex;
  align-items: center;
}

.jwave-bar__logoLink { height: 16px; }
.jwave-bar__homeLink { height: 14px; }

.jwave-bar__logo,
.jwave-bar__home {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.desktop-nav,
.mobile-nav {
  font-family: "Space Grotesk", sans-serif;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1000px;
  height: 126.19014px;
  padding: 26.6667px 48px 0;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand { width: 165.328125px; }

.desktop-nav {
  display: flex;
  gap: 63px;
  align-items: center;
  padding-top: 27.92837px;
  font-size: 13.3333px;
  font-weight: 700;
  letter-spacing: .6px;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  border: 0;
  background: none;
  cursor: pointer;
}

.desktop-nav .is-current::after {
  position: absolute;
  right: 10%;
  bottom: -8px;
  left: 10%;
  height: 2px;
  background: var(--red);
  content: "";
}

.menu-button { display: none; }

.intro {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--yellow);
}

.intro-kicker {
  margin: 0;
  padding: 7px 0;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(30, 27, 25, .5);
  white-space: nowrap;
  font: 700 12px/1 "Space Grotesk", sans-serif;
  letter-spacing: 2.6px;
}

.intro-track {
  width: max-content;
  display: flex;
  animation: ticker 18s linear infinite;
  will-change: transform;
}

.intro-track > span {
  flex: none;
  padding-right: 48px;
}

@keyframes ticker {
  to { transform: translateX(var(--ticker-shift, -25%)); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-track { animation: none; }
}

.intro-copy {
  max-width: 1040px;
  margin: 0 auto;
  padding: 27px 40px 31px;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .02em;
}

.intro-copy strong { font-weight: inherit; }

.pickup {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 40px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  grid-template-areas:
    "heading heading"
    "photo podcast"
    "photo qa";
  gap: 20px 28px;
}

.pickup-heading {
  grid-area: heading;
  padding-bottom: 18px;
  border-bottom: 1px solid #c9c6c3;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--red);
  font: 700 13px/1 "Space Grotesk", sans-serif;
  letter-spacing: 2.6px;
}

.pickup-heading h1 {
  margin: 0;
  font: 600 clamp(64px, 7.6vw, 108px)/.95 "Oswald", sans-serif;
  letter-spacing: -2px;
}

.volume {
  margin: 8px 0 6px;
  font: 500 28px/1 "Oswald", sans-serif;
}

.artist-meta {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.artist-meta p,
.artist-meta time {
  margin: 0;
  font: 500 14px/1.35 "Noto Sans JP", sans-serif;
}

.artist-meta p span {
  display: block;
  margin: 0 0 6px;
  color: var(--red);
  font: 700 11px/1 "Space Grotesk", sans-serif;
  letter-spacing: 1.4px;
}

.meta-song {
  display: block;
  font: 500 34px/1.15 "Oswald", "Noto Sans JP", sans-serif;
}

.artist-meta time {
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  letter-spacing: 1.2px;
}

.artist-photo {
  grid-area: photo;
  height: 620px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.artist-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}

.qa-card {
  position: relative;
  grid-area: qa;
  min-height: 260px;
  padding: 30px 34px 32px;
  border: 2px solid var(--red);
  background: var(--paper);
}

.qa-card::after {
  position: absolute;
  top: -10px;
  right: 5px;
  width: 66px;
  height: 22px;
  background: url("./assets/images/ico_thunder.png") center/contain no-repeat;
  content: "";
}

.qa-row { display: grid; grid-template-columns: 38px 1fr; gap: 6px; align-items: start; }
.qa-row p { margin: 2px 0 0; font-size: 17px; font-weight: 700; line-height: 1.55; }
.qa-label { color: var(--red); font: 700 28px/1 "Oswald", sans-serif; }
.qa-divider { height: 1px; margin: 22px 0 15px; background: var(--red); }
.qa-answer p { position: relative; margin-top: -2px; font-size: 35px; line-height: 1.25; }
.qa-answer p::after {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: min(240px, 100%);
  height: 16px;
  background: url("./assets/images/ico_line.png") left center/100% 100% no-repeat;
  content: "";
}

.podcast-card {
  position: relative;
  grid-area: podcast;
  min-height: 270px;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.podcast-card > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform .45s ease;
}

.podcast-card:hover > img { transform: scale(1.035); }

.podcast-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14, 13, 13, .88) 0%, rgba(14, 13, 13, .56) 47%, rgba(14, 13, 13, .16) 100%);
}

.podcast-copy {
  position: absolute;
  top: 27px;
  left: 27px;
  z-index: 2;
  color: #fff;
}

.podcast-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font: 700 10px/1 "Space Grotesk", sans-serif;
  letter-spacing: 1.7px;
}

.podcast-copy strong {
  font: 700 27px/1.02 "Space Grotesk", sans-serif;
  letter-spacing: .5px;
}

.play-circle {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  transition: transform .3s ease;
}

.podcast-card:hover .play-circle { transform: scale(1.08); }

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.waveform {
  position: absolute;
  right: 105px;
  bottom: 34px;
  z-index: 2;
  height: 42px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.waveform i { width: 2px; height: 30%; background: #fff; }
.waveform i:nth-child(2n) { height: 68%; }
.waveform i:nth-child(3n) { height: 100%; }
.waveform i:nth-child(5n) { height: 48%; }

.episode-detail {
  padding: 88px 40px 110px;
  background: #fff;
}

.detail-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 70px;
}

.detail-block { min-width: 0; }

.section-title {
  width: fit-content;
  margin: 0 0 30px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--red);
  font: 700 22px/1.2 "Space Grotesk", sans-serif;
  letter-spacing: 1.5px;
}

.profile-copy,
.recommended-comment p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.05;
  text-align: justify;
}

.link-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.link-list a {
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dfdcd8;
  background: var(--paper);
  font: 700 13px/1 "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  transition: color .25s ease, background .25s ease;
}

.link-list a:hover { color: #fff; background: var(--ink); }
.link-list span { color: var(--red); font-size: 18px; }

.song-name {
  margin: -12px 0 21px;
  font: 500 28px/1.2 "Oswald", "Noto Sans JP", sans-serif;
}

.song-video {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #111;
}

.song-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.song-video img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.song-video-button {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
}

.song-video-button img { width: 100%; height: 100%; object-fit: cover; }
.song-video-button .youtube-play { transform: translate(-50%, -50%); }

.song-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 18, .16);
}

.song-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(216, 45, 44, .92);
  transform: translate(-50%, -50%);
}

.song-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
}

.song-coming-soon {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedbd7;
  color: #fff;
  background: #111;
  text-align: center;
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f00;
  transform: translate(-50%, 42px);
}

.youtube-play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
}

.song-coming-soon span {
  color: var(--yellow);
  font: 700 10px/1 "Space Grotesk", sans-serif;
  letter-spacing: 2px;
}

.song-coming-soon strong {
  font: 700 34px/1 "Space Grotesk", sans-serif;
  letter-spacing: 2px;
}

.recommended-comment {
  margin-top: 50px;
  padding-top: 40px;
}

.recommended-comment .comment-credit {
  margin-top: 25px;
  text-align: right;
}

.pickup--previous { padding-top: 45px; }

.share-label {
  padding: 35px 20px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  font: 700 11px/1 "Space Grotesk", sans-serif;
  letter-spacing: 3px;
}

/* Same Gigya normalization used by the working ARCHIVE page. */
.showShareBarUI,
#gigyaShare {
  width: 100%;
  max-width: 100rem;
  margin: 3.5rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.showShareBarUI table,
.showShareBarUI tbody,
.showShareBarUI tr,
.showShareBarUI td,
.showShareBarUI div,
.showShareBarUI span,
.showShareBarUI a,
.showShareBarUI img,
#gigyaShare table,
#gigyaShare tbody,
#gigyaShare tr,
#gigyaShare td,
#gigyaShare div,
#gigyaShare span,
#gigyaShare a,
#gigyaShare img {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.showShareBarUI img,
#gigyaShare img {
  width: 4rem !important;
  height: 4rem !important;
  object-fit: contain !important;
  transition: opacity .3s ease;
}

.showShareBarUI img:hover,
#gigyaShare img:hover { opacity: .7; }

.showShareBarUI .jme_share,
#gigyaShare .jme_share,
.showShareBarUI ul,
#gigyaShare ul {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 1.4rem !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
}

.showShareBarUI li,
#gigyaShare li {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  list-style: none !important;
}

.showShareBarUI li::marker,
#gigyaShare li::marker { content: ""; }

.showShareBarUI:empty::before { content: "SHARE"; }

@media (max-width: 768px) {
  .showShareBarUI .jme_share,
  #gigyaShare .jme_share,
  .showShareBarUI ul,
  #gigyaShare ul { gap: .7rem !important; }
}

.site-footer {
  padding: 58px 40px 28px;
  color: #fff;
  background: var(--ink);
}

.site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-brand img { width: 56px; }
.footer-brand p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.9; }

.archive-button {
  min-width: 235px;
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--yellow);
  font: 700 13px/1 "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}

.archive-button span { font-size: 24px; font-weight: 400; }

.jwave-footer {
  max-width: 1040px;
  margin: 42px auto 0;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #aaa6a2;
  font: 500 10px/1.4 "Space Grotesk", sans-serif;
  letter-spacing: .5px;
}

.jwave-footer-links { display: flex; gap: 18px; align-items: center; }
.jwave-footer-links a { display: inline-flex; height: 18px; }
.jwave-footer-links a:last-child { height: 14px; }
.jwave-footer-links img { width: auto; height: 100%; object-fit: contain; }

.mobile-nav { display: none; }

.article-single .intro {
  display: none;
}

.article-vol002 .pickup--previous,
.article-vol002 .episode-detail--previous,
.article-vol001 .pickup--current,
.article-vol001 .episode-detail--current {
  display: none;
}

.article-single .pickup {
  padding-top: 6.4rem;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.about-modal.is-open { visibility: visible; opacity: 1; }
.modal-overlay { position: absolute; inset: 0; border: 0; background: rgba(18, 17, 17, .72); }

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 32px));
  padding: 45px 35px 35px;
  background: #fff;
  text-align: center;
}

.modal-panel img { width: 84px; margin: 0 auto 24px; }
.modal-panel h2 { margin: 0 0 26px; font: 700 24px/1.2 "Space Grotesk", sans-serif; }
.modal-body-copy { margin-bottom: 30px; }
.modal-panel p { margin: 0 0 20px; font-size: 14px; font-weight: 500; line-height: 1.9; }
.modal-panel p:last-child { margin-bottom: 0; }
.modal-copy-divider { height: 1px; margin: 24px 0; background: #e2e2e2; }
.modal-close { width: 100%; padding: 16px; border: 0; color: #fff; background: var(--ink); font: 700 14px/1 "Space Grotesk", sans-serif; letter-spacing: 1.4px; }

@media (max-width: 768px) {
  .jwave-bar { height: 36px; }
  .jwave-bar__inner { padding: 0 24px; }
  .jwave-bar__logoLink { height: 16px; }
  .jwave-bar__homeLink { height: 14px; }
  .site-header { height: 80px; min-height: 80px; padding: 0 24px; align-items: center; }
  .brand { width: 100px; }
  .desktop-nav { display: none; }
  .menu-button {
    width: 30px;
    height: 24px;
    padding: 0;
    display: block;
    position: relative;
    z-index: 31;
    border: 0;
    background: none;
  }
  .menu-button span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: .25s ease; }
  .menu-button span:nth-child(1) { top: 2px; }
  .menu-button span:nth-child(2) { top: 11px; }
  .menu-button span:nth-child(3) { top: 20px; }
  .menu-button.is-open span { background: #fff; }
  .menu-button.is-open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }
  .intro-kicker { padding-block: 6px; font-size: 9px; letter-spacing: 2px; }
  .intro-track > span { padding-right: 36px; }
  .intro-copy { padding: 19px 24px 22px; font-size: 13px; line-height: 1.85; text-align: justify; }
  .pickup {
    padding: 38px 24px 70px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .pickup-heading { padding-bottom: 13px; }
  .eyebrow { margin-bottom: 7px; font-size: 10px; letter-spacing: 2.3px; }
  .pickup-heading h1 { font-size: 64px; letter-spacing: -1px; }
  .volume { margin: 6px 0 5px; font-size: 19px; }
  .artist-meta { margin-top: 13px; gap: 8px; align-items: flex-start; }
  .artist-meta p { display: flex; flex-direction: column; gap: 5px; font-size: 13px; }
  .artist-meta p span { margin: 0; font-size: 9px; }
  .meta-song { font-size: 24px; }
  .artist-meta time { padding-top: 14px; font-size: 12px; }
  .artist-photo { order: 2; min-height: 0; height: auto; aspect-ratio: 327 / 430; }
  .artist-photo img { object-position: 50% 58%; }
  .qa-card { order: 4; min-height: 210px; padding: 24px 20px 26px; }
  .qa-card::after { top: -7px; width: 47px; height: 16px; }
  .qa-row { grid-template-columns: 26px 1fr; gap: 2px; }
  .qa-label { font-size: 19px; }
  .qa-row p { font-size: 14px; margin-top: 1px; }
  .qa-divider { margin: 19px 0 12px; }
  .qa-answer p { font-size: 28px; }
  .qa-answer p::after { bottom: -15px; width: 190px; height: 13px; }
  .podcast-card { order: 3; min-height: 198px; }
  .podcast-card > img { object-position: 50% 42%; }
  .podcast-copy { top: 20px; left: 20px; }
  .podcast-copy strong { font-size: 23px; }
  .play-circle { right: 18px; bottom: 18px; width: 53px; height: 53px; }
  .waveform { right: 83px; bottom: 24px; height: 37px; gap: 3px; }
  .waveform i { width: 2px; }
  .episode-detail { padding: 58px 24px 75px; }
  .detail-grid { grid-template-columns: 1fr; gap: 58px; }
  .section-title { margin-bottom: 23px; font-size: 16px; border-bottom-width: 2px; }
  .profile-copy,
  .recommended-comment p { font-size: 12px; line-height: 1.9; }
  .link-list { margin-top: 28px; gap: 10px; }
  .link-list a { min-height: 52px; font-size: 12px; }
  .song-name { margin-top: -6px; font-size: 19px; }
  .song-play { width: 58px; height: 58px; }
  .song-coming-soon strong { font-size: 26px; }
  .recommended-comment { margin-top: 38px; padding-top: 33px; }
  .pickup--previous { padding-top: 34px; }
  .site-footer { padding: 38px 24px 22px; }
  .site-footer-inner { flex-direction: column; align-items: stretch; }
  .footer-brand { gap: 17px; align-items: flex-start; }
  .footer-brand img { width: 45px; }
  .footer-brand p { font-size: 11px; line-height: 1.8; }
  .archive-button { width: 100%; min-height: 54px; }
  .jwave-footer { margin-top: 28px; padding-top: 20px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: .25s ease;
  }
  .mobile-nav.is-open { visibility: visible; opacity: 1; }
  .mobile-nav a,
  .mobile-nav button { border: 0; color: #fff; background: none; font-size: 24px; font-weight: 700; }
}

/* Delivered/public site dimensional baseline: 1000px / 10px-rem at 1440px. */
.jwave-bar {
  height: 3.6rem;
}

.jwave-bar__inner {
  max-width: 100rem;
  padding-inline: 4.8rem;
}

.site-header {
  max-width: 100rem;
  height: auto;
  min-height: 0;
  padding: 0 4.8rem .8rem;
  align-items: center;
}

.brand {
  width: 18.6rem;
  padding-top: 3rem;
}

.desktop-nav {
  gap: 4.2rem;
  padding-top: 0;
  font-size: 1.5rem;
}

.desktop-nav button { padding: 0; }

.intro-copy,
.pickup,
.detail-grid,
.site-footer-inner,
.jwave-footer {
  max-width: 100rem;
}

.intro-copy,
.pickup,
.episode-detail {
  padding-inline: 4.8rem;
}

.pickup-heading h1 { font-size: 10.8rem; }

.play-triangle,
.song-play span {
  width: 1.5rem;
  height: 1.8rem;
  margin-left: .4rem;
  border: 0;
  background: transparent;
}

svg.play-triangle { display: block; overflow: visible; }

@media (max-width: 768px) {
  .jwave-bar {
    height: 3.6rem;
  }

  .jwave-bar__inner { padding-inline: 2.4rem; }

  .site-header {
    height: 8rem;
    min-height: 8rem;
    padding: 0 2.4rem;
  }

  .brand { width: 10rem; }
  .brand { padding-top: 0; }
  .intro-copy,
  .pickup,
  .episode-detail { padding-inline: 2.4rem; }
  .pickup-heading h1 { font-size: 6.4rem; }
  .article-single .pickup { padding-top: 3.8rem; }
}
