@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
:root {
  --ink: #141320;
  --paper: #f7f5fb;
  --white: #fff;
  --violet: #7357ff;
  --pink: #ff62a9;
  --cyan: #40d5cb;
  --line: rgba(20, 19, 32, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", "Noto Sans JP", sans-serif; line-height: 1.5; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; }
button,input,optgroup,select,textarea { margin: 0; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: fixed; z-index: 50; top: 18px; left: 50%; width: min(1180px, calc(100% - 36px)); height: 64px;
  transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; padding: 0 12px 0 24px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(255,255,255,.84);
  box-shadow: 0 16px 48px rgba(29, 22, 65, .12); backdrop-filter: blur(18px);
}
.brand, .footer-brand { font-size: 26px; font-weight: 700; letter-spacing: -.08em; }
.brand span, .footer-brand span { color: var(--pink); }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a { padding: 10px 13px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .06em; transition: .25s ease; }
.desktop-nav a:hover { color: var(--violet); background: rgba(115,87,255,.09); }
.mobile-menu { display: none; position: relative; }

.hero { position: relative; min-height: 100svh; background: #11101a; color: white; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.06); }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,20,.9) 0%, rgba(13,10,25,.56) 43%, rgba(15,11,23,.12) 75%), linear-gradient(0deg, rgba(15,11,23,.48), transparent 45%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 18%; background: linear-gradient(transparent, rgba(14,12,22,.62)); }
.hero-content { position: relative; z-index: 3; width: min(1180px, calc(100% - 48px)); min-height: 100svh; margin: 0 auto; padding: 180px 0 90px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.65); }
.hero h1 { margin: 0 0 18px; font-size: clamp(90px, 17vw, 250px); line-height: .72; letter-spacing: -.105em; font-weight: 700; text-indent: -.075em; }
.hero-copy { margin: 32px 0; font-family: "Noto Sans JP", sans-serif; font-size: clamp(18px, 2.1vw, 30px); line-height: 1.65; font-weight: 500; letter-spacing: .12em; }
.hero-actions { display: flex; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-width: 150px; padding: 15px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--pink); color: white; }
.button-primary:hover { background: #ff3e95; }
.button-ghost { border-color: rgba(255,255,255,.55); color: white; backdrop-filter: blur(10px); }
.button-ghost:hover { background: white; color: var(--ink); }
.hero-side-note { position: absolute; z-index: 3; right: 32px; top: 50%; margin: 0; writing-mode: vertical-rl; font-size: 9px; letter-spacing: .35em; color: rgba(255,255,255,.55); transform: translateY(-50%); }
.scroll-cue { position: absolute; z-index: 4; bottom: 26px; right: 50%; transform: translateX(50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-cue span { font-size: 16px; animation: bob 1.7s infinite ease-in-out; }
.hero-orbit { position: absolute; z-index: 2; border-radius: 50%; filter: blur(4px); mix-blend-mode: screen; opacity: .66; }
.hero-orbit-one { width: 42vw; height: 42vw; right: -9vw; top: -12vw; border: 1px solid rgba(255,98,169,.9); box-shadow: inset 0 0 80px rgba(255,98,169,.25); }
.hero-orbit-two { width: 25vw; height: 25vw; left: 37%; bottom: -15vw; background: radial-gradient(circle at 35% 35%, rgba(64,213,203,.3), transparent 64%); }
@keyframes bob { 50% { transform: translateY(5px); } }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 52px; }
.section-kicker { color: var(--violet); }
.section-heading h2, .contact-section h2 { margin: 0; font-size: clamp(56px, 8vw, 108px); line-height: .88; letter-spacing: -.075em; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.news-card { position: relative; min-width: 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.news-image-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 2px; background: #e5e1eb; }
.news-card-1 .news-image-wrap { aspect-ratio: 1.15 / 1; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.8,.2,1); }
.news-card:hover img { transform: scale(1.045); }
.card-number { position: absolute; right: 10px; top: 10px; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 10px; font-weight: 700; }
.news-meta { display: flex; align-items: center; gap: 12px; margin: 18px 0 13px; }
.pill { padding: 5px 9px; border-radius: 999px; color: white; background: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.pill-live { background: var(--cyan); color: #0d4845; }
.pill-release { background: var(--pink); }
.news-meta time { color: #777280; font-size: 10px; letter-spacing: .08em; }
.news-card h3 { margin: 0; padding-right: 36px; font-family: "Noto Sans JP", sans-serif; font-size: clamp(15px, 1.55vw, 21px); line-height: 1.6; font-weight: 600; }
.card-arrow { position: absolute; right: 0; bottom: 28px; transition: transform .25s ease; }
.news-card:hover .card-arrow { transform: translateX(5px); }

.video-section { background: #dff8f4; }
.video-latest { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.video-copy h2 { margin: 0 0 28px; font-size: clamp(62px, 8vw, 112px); font-weight: 600; line-height: .8; letter-spacing: -.08em; }
.video-copy > p:not(.section-kicker) { max-width: 400px; margin: 0; font-family: "Noto Sans JP", sans-serif; font-size: 14px; line-height: 1.9; }
.video-channel-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 26px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.latest-video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); box-shadow: 24px 24px 0 var(--cyan); }
.latest-video-frame iframe, .video-pick-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-picks { padding-top: 62px; border-top: 1px solid rgba(20, 19, 32, .2); }
.video-picks-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.video-picks-heading h2 { margin: 0; font-size: clamp(42px, 6.2vw, 84px); font-weight: 600; line-height: .9; letter-spacing: -.07em; }
.video-picks-heading > p { max-width: 390px; margin: 0; font-family: "Noto Sans JP", sans-serif; font-size: 13px; line-height: 1.9; }
.video-picks-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 18px; }
.video-pick { min-width: 0; padding-top: 14px; border-top: 1px solid rgba(20, 19, 32, .28); }
.video-pick > span { display: block; margin-bottom: 9px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.video-pick-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }

.feature-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--violet); color: white; }
.feature-cover { position: relative; display: grid; place-items: center; overflow: hidden; background: #5f46df; }
.feature-cover > img { position: relative; z-index: 2; width: min(68%, 500px); aspect-ratio: 1; object-fit: cover; box-shadow: 0 30px 80px rgba(25,13,85,.4); transform: rotate(-4deg); transition: transform .5s ease; }
.feature-cover:hover > img { transform: rotate(0deg) scale(1.02); }
.feature-cover::before { content: "NEW RELEASE / NEW RELEASE / NEW RELEASE"; position: absolute; left: -15%; right: -15%; top: 45%; font-size: clamp(46px, 6vw, 96px); font-weight: 700; letter-spacing: -.05em; white-space: nowrap; color: rgba(255,255,255,.09); transform: rotate(-14deg); }
.mini-disc { position: absolute; z-index: 1; right: 2%; bottom: 6%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle, #17151f 0 2px, #292630 3px 5px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.mini-disc::after { content: ""; position: absolute; inset: 38%; border-radius: 50%; background: var(--pink); border: 10px solid #fcdbeb; }
.feature-copy { padding: 100px clamp(40px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy .section-kicker { color: #d8d0ff; }
.feature-type { margin: 0 0 8px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.feature-copy h2 { margin: 0 0 34px; font-family: "Noto Sans JP", sans-serif; font-size: clamp(45px, 5vw, 78px); line-height: 1.06; letter-spacing: -.05em; }
.feature-copy ol { list-style: none; margin: 0 0 30px; padding: 0; border-top: 1px solid rgba(255,255,255,.24); }
.feature-copy li { display: flex; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.24); font-family: "Noto Sans JP", sans-serif; font-size: 13px; }
.feature-copy li span { color: #c8bfff; font-size: 10px; }
.feature-note { margin: 0 0 28px; font-size: 10px; letter-spacing: .16em; }
.button-dark { align-self: flex-start; background: var(--ink); color: white; }

.release-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.release-art { position: relative; aspect-ratio: 1; overflow: hidden; background: #e2dfeb; }
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.release-hover { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -35%); padding: 12px 17px; border-radius: 999px; background: white; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transition: .35s ease; }
.release-card:hover .release-art img { transform: scale(1.05); filter: brightness(.78); }
.release-card:hover .release-hover { opacity: 1; transform: translate(-50%, -50%); }
.release-info { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 18px; }
.release-info p { margin: 0 0 4px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.release-info h3 { margin: 0; font-family: "Noto Sans JP", sans-serif; font-size: 20px; }
.release-info time { padding-bottom: 3px; color: #777280; font-size: 10px; letter-spacing: .08em; }

.about-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 150px); padding: 130px max(24px, calc((100vw - 1180px) / 2)); background: #dff8f4; }
.about-visual { width: min(390px, 100%); margin: 22px 0 42px; }
.about-visual img { width: auto; height: auto; max-width: 100%; max-height: 230px; object-fit: contain; object-position: left center; }
.about-title h2 { margin: 0; font-family: "Noto Sans JP", sans-serif; font-size: clamp(42px, 5.5vw, 82px); line-height: 1.3; letter-spacing: -.07em; }
.about-copy > p { margin: 42px 0; font-family: "Noto Sans JP", sans-serif; font-size: clamp(16px, 1.6vw, 21px); line-height: 2; }
.member-list { margin-bottom: 36px; border-top: 1px solid rgba(20,19,32,.3); }
.member-list div { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(20,19,32,.3); }
.member-list span { font-family: "Noto Sans JP", sans-serif; font-size: 19px; font-weight: 600; }
.member-list small { font-size: 9px; letter-spacing: .12em; }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }

.contact-section { padding: 140px 24px; text-align: center; background: var(--pink); color: white; }
.contact-section .section-kicker { color: white; opacity: .7; }
.contact-section h2 { font-size: clamp(65px, 12vw, 170px); }
.contact-section > p:not(.section-kicker) { margin: 28px 0 34px; font-family: "Noto Sans JP", sans-serif; font-size: 14px; }
.contact-button { display: inline-flex; align-items: center; gap: 20px; padding: 18px 28px; border-radius: 999px; background: white; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: transform .25s ease; }
.contact-button:hover { transform: translateY(-4px) rotate(-1deg); }

.footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 46px max(24px, calc((100vw - 1180px) / 2)); background: var(--ink); color: white; }
.social-links { display: flex; gap: 22px; font-size: 10px; letter-spacing: .08em; }
.social-links a:hover { color: var(--pink); }
.footer > p { justify-self: end; margin: 0; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .08em; }

/* Shared inner-page system */
.page-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.page-hero { position: relative; min-height: 570px; padding-top: 150px; overflow: hidden; color: white; }
.page-hero-violet { background: var(--violet); }
.page-hero-pink { background: var(--pink); }
.page-hero-cyan { background: var(--cyan); color: var(--ink); }
.page-hero::after { content: "S-O-A / S-O-A / S-O-A"; position: absolute; left: -2vw; bottom: -6vw; color: rgba(255,255,255,.1); font-size: clamp(120px,23vw,340px); font-weight: 700; line-height: .8; letter-spacing: -.1em; white-space: nowrap; }
.page-hero-cyan::after { color: rgba(20,19,32,.07); }
.page-hero-orbit { position: absolute; top: -30%; right: -5%; width: min(55vw,720px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,255,255,.1); }
.page-hero-cyan .page-hero-orbit { border-color: rgba(20,19,32,.18); }
.page-hero-inner { position: relative; z-index: 2; min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.page-kicker { margin: 0 0 20px; font-size: 10px; font-weight: 700; letter-spacing: .23em; text-transform: uppercase; }
.page-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(75px,13vw,184px); font-weight: 600; line-height: .78; letter-spacing: -.09em; }
.page-hero-copy { position: absolute; right: 0; bottom: 55px; width: min(350px,32vw); border-top: 1px solid currentColor; }
.page-hero-copy p { margin: 14px 0 0; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.8; }
.page-section { padding-block: 105px 130px; }
.archive-head { display: flex; justify-content: space-between; margin-bottom: 48px; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.archive-head p { margin: 0; }
.archive-head span { color: #777280; }

/* News archive and article */
.archive-news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 52px 22px; }
.archive-news-card { position: relative; min-width: 0; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.archive-news-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e5e1eb;
}
.archive-news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .55s ease;
}
.archive-news-card:hover img { transform: scale(1.045); }
.archive-news-image > span { position: absolute; right: 10px; top: 10px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: white; font-size: 10px; font-weight: 700; }
.archive-news-card h2 { margin: 0; padding-right: 38px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(17px,1.6vw,22px); line-height: 1.65; }
.archive-card-arrow { position: absolute; right: 0; bottom: 34px; transition: transform .25s ease; }
.archive-news-card:hover .archive-card-arrow { transform: translateX(5px); }
.post-page { padding-top: 130px; }
.post-header { padding-block: 80px 64px; }
.back-link { display: inline-block; margin-bottom: 58px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.post-header h1 { max-width: 970px; margin: 24px 0 0; font-family: "Noto Sans JP",sans-serif; font-size: clamp(38px,6vw,82px); line-height: 1.35; letter-spacing: -.055em; }
.post-cover { width: min(1440px,100%); height: min(68vw,780px); margin: 0 auto; overflow: hidden; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-layout { display: grid; grid-template-columns: 120px minmax(0,720px); justify-content: center; gap: 60px; padding-block: 90px 130px; }
.post-layout aside { display: flex; flex-direction: column; gap: 13px; padding-top: 8px; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.post-layout aside span { margin-bottom: 10px; color: #777280; }
.post-body { font-family: "Noto Sans JP",sans-serif; font-size: 16px; line-height: 2.15; }
.post-body p { margin: 0 0 34px; }
.post-body .post-lead { font-size: clamp(20px,2.5vw,30px); font-weight: 600; line-height: 1.9; }
.post-body h2 { margin: 70px 0 25px; font-size: clamp(28px,3.4vw,44px); line-height: 1.5; }
.post-body .button { margin-top: 35px; }

/* Shows */
.shows-list { border-top: 1px solid var(--line); }
.show-card { position: relative; display: grid; grid-template-columns: 230px 180px minmax(0,1fr) 104px; gap: 34px; align-items: start; padding: 50px 0; border-bottom: 1px solid var(--line); }
.show-image { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.show-image img { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); max-width: calc(100% - 24px); object-fit: contain; transition: transform .5s ease; filter: drop-shadow(0 12px 22px rgba(20,19,32,.12)); }
.show-image:hover img { transform: scale(.98); }
.show-date { position: relative; }
.show-date span { display: block; margin-bottom: 8px; color: var(--violet); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.show-date strong { font-size: clamp(28px,3vw,42px); letter-spacing: -.045em; }
.show-date i { position: absolute; top: -30px; right: 0; color: rgba(20,19,32,.07); font-size: 90px; font-style: normal; font-weight: 700; }
.show-main > p { margin: 0 0 10px; color: var(--violet); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.show-main h2 { max-width: 680px; margin: 0 0 28px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(25px,3.2vw,43px); line-height: 1.45; }
.show-main dl { margin: 0; border-top: 1px solid var(--line); }
.show-main dl div { display: grid; grid-template-columns: 90px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); }
.show-main dt { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.show-main dd { margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: 12px; line-height: 1.8; }
.round-link { align-self: center; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--pink); color: white; transition: transform .25s ease; }
.round-link:hover { transform: rotate(-12deg) scale(1.05); }
.show-actions { align-self: center; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.show-ticket-link { padding-bottom: 4px; border-bottom: 1px solid; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.show-ticket-internal { color: var(--pink); }
.show-detail-card { display: grid; grid-template-columns: minmax(300px,.85fr) 1.15fr; gap: clamp(45px,7vw,95px); align-items: start; }
.show-detail-image { position: sticky; top: 115px; padding: 18px; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.show-detail-image a { display: block; text-align: center; }
.show-detail-image img { width: 100%; height: auto; max-height: 760px; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(20,19,32,.15)); }
.show-detail-image span { display: inline-block; margin-top: 15px; padding-bottom: 3px; border-bottom: 1px solid; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.show-detail-copy { padding-top: 15px; }
.show-detail-venue { margin: 35px 0 10px; color: var(--violet); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.show-detail-copy h2 { margin: 0 0 42px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(32px,4.6vw,64px); line-height: 1.4; letter-spacing: -.05em; }
.show-detail-copy dl { margin: 0 0 42px; border-top: 1px solid var(--line); }
.show-detail-copy dl div { display: grid; grid-template-columns: 90px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); }
.show-detail-copy dt { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.show-detail-copy dd { margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }
.show-extra-preview { margin-top: 24px; padding: 18px; background: white; }
.show-extra-preview > p { margin: 0 0 12px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.show-extra-preview > div { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.show-extra-preview a { min-width: 0; }
.show-extra-preview img { width: 100%; aspect-ratio: 1; padding: 5px; background: var(--paper); object-fit: contain; }
.show-extra-preview span { display: block; margin-top: 6px; color: #5f5a68; font-family: "Noto Sans JP",sans-serif; font-size: 9px; line-height: 1.5; }
.show-gallery { margin-top: 120px; }
.show-gallery > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 42px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.show-gallery > header h2 { margin: 0; font-size: clamp(45px,7vw,88px); line-height: .85; letter-spacing: -.075em; }
.show-gallery > header > span { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.show-gallery-grid { columns: 2; column-gap: 24px; }
.show-gallery-grid:has(.show-gallery-item:only-child) { columns: 1; }
.show-gallery-item { break-inside: avoid; margin: 0 0 24px; padding: 16px; background: white; box-shadow: 0 16px 45px rgba(28,22,62,.07); }
.show-gallery-stage { display: grid; place-items: center; width: 100%; min-height: 220px; padding: 12px; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.show-gallery-stage img { display: block; width: 100%; height: auto; max-height: 78vh; object-fit: contain; }
.show-gallery-item figcaption { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 14px 2px 0; font-family: "Noto Sans JP",sans-serif; font-size: 11px; }
.show-gallery-item figcaption > span { color: var(--violet); font-family: "DM Sans",sans-serif; font-size: 9px; }
.show-gallery-item figcaption small { color: #777280; font-family: "DM Sans",sans-serif; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.stream-ticket { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #eefcf9; }
.stream-ticket div { display: grid; gap: 5px; }
.stream-ticket div > span { color: var(--violet); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.stream-ticket strong { font-family: "Noto Sans JP",sans-serif; font-size: 12px; }
.stream-ticket a,.show-stream-link { padding: 11px 15px; border-radius: 999px; background: var(--cyan); color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: .08em; }

/* Direct ticket reservation */
.ticket-order { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px,8vw,110px); margin-top: 120px; padding: clamp(35px,6vw,76px); border-radius: 32px; background: #dff8f4; scroll-margin-top: 100px; }
.ticket-order-intro h2 { margin: 0 0 32px; font-size: clamp(48px,6vw,78px); line-height: .85; letter-spacing: -.075em; }
.ticket-order-intro > p:not(.page-kicker) { font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 2; }
.ticket-order-note { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(20,19,32,.22); color: #5d5868; font-size: 11px !important; }
.ticket-form { display: grid; gap: 30px; padding: clamp(25px,4vw,50px); border-radius: 24px; background: white; }
.ticket-form label { display: block; font-family: "Noto Sans JP",sans-serif; font-size: 13px; font-weight: 600; }
.ticket-form label > span { margin-right: 13px; color: var(--violet); font-family: "DM Sans",sans-serif; font-size: 9px; }
.ticket-form label > em { float: right; color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 8px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.ticket-form input, .ticket-form select { width: 100%; margin-top: 10px; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); font: inherit; }
.ticket-form input:focus, .ticket-form select:focus { outline: 0; border-bottom-color: var(--violet); }
.ticket-form button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 19px 24px; border: 0; border-radius: 999px; background: var(--ink); color: white; font: 700 11px "DM Sans",sans-serif; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.ticket-form button span { font-size: 18px; }
.ticket-form-demo { margin: -10px 0 0; color: #777280; font-family: "Noto Sans JP",sans-serif; font-size: 10px; line-height: 1.7; }

/* Discography */
.works-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 90px 48px; }
.work-card { min-width: 0; }
.work-art { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; background: #e5e1eb; }
.work-art img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card:hover .work-art img { transform: scale(1.035); }
.work-art span { position: absolute; left: 15px; bottom: 12px; color: white; font-size: clamp(42px,6vw,82px); font-weight: 700; letter-spacing: -.08em; mix-blend-mode: difference; }
.work-info { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 23px 0 18px; }
.work-info p { margin: 0 0 5px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.work-info h2 { margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: clamp(22px,3vw,34px); }
.work-info time { color: #777280; font-size: 10px; letter-spacing: .08em; }
.work-card ol { margin: 0 0 18px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.work-card li { display: flex; gap: 22px; padding: 10px 0; border-bottom: 1px solid var(--line); font-family: "Noto Sans JP",sans-serif; font-size: 12px; }
.work-card li span { color: var(--violet); font-size: 9px; }
.work-link { display: inline-flex; align-items: center; gap: 15px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Biography */
.about-intro { display: grid; grid-template-columns: .5fr 1.5fr; gap: 80px; padding-block: 130px; }
.about-number { margin: 0; color: var(--violet); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.about-intro h2 { margin: 0 0 45px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(40px,6vw,78px); line-height: 1.42; letter-spacing: -.065em; }
.about-intro div > p { max-width: 680px; margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: clamp(16px,1.7vw,21px); line-height: 2.15; }
.members-band { padding-block: 100px 120px; background: var(--ink); color: white; }
.member-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 45px; }
.member-cards article { position: relative; display: flex; flex-direction: column; min-height: 360px; padding: 30px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.member-cards article > span { position: absolute; top: 25px; right: 25px; color: var(--pink); font-size: 11px; }
.member-image { display: grid; place-items: center; width: 92px; height: 118px; margin: 12px 0 18px; }
.member-image img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.member-cards h2 { margin: 72px 0 7px; font-family: "Noto Sans JP",sans-serif; font-size: 38px; }
.member-image + h2 { margin-top: 0; }
.member-cards .member-role { min-height: 28px; margin: 0 0 32px; color: var(--cyan); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.member-cards .member-copy { margin: auto 0 0; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.7); }
.member-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.member-socials a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.member-socials a:hover { border-color: var(--pink); background: var(--pink); }
.about-manifesto { padding-block: 140px; text-align: center; }
.about-manifesto p { margin: 0 0 24px; color: var(--pink); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.about-manifesto h2 { margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: clamp(42px,7vw,92px); line-height: 1.45; letter-spacing: -.07em; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(55px,9vw,130px); }
.contact-layout aside { position: sticky; top: 125px; align-self: start; }
.contact-layout aside h2 { margin: 0 0 30px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(48px,6vw,80px); line-height: 1.35; letter-spacing: -.07em; }
.contact-layout aside > p:not(.page-kicker) { font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 2; }
.contact-layout aside > a { display: inline-block; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.contact-form { display: grid; gap: 34px; padding: clamp(28px,5vw,62px); border-radius: 28px; background: white; box-shadow: 0 24px 70px rgba(28,22,62,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; font-family: "Noto Sans JP",sans-serif; font-size: 13px; font-weight: 600; }
.contact-form label > span { margin-right: 13px; color: var(--violet); font-family: "DM Sans",sans-serif; font-size: 9px; }
.contact-form label > em { float: right; color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 8px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { width: 100%; margin-top: 10px; padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); font: inherit; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 0; border-bottom-color: var(--violet); }
.contact-form .privacy-check { font-size: 11px; font-weight: 400; }
.contact-form .privacy-check input { margin-right: 8px; accent-color: var(--violet); }
.contact-form button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 25px; border: 0; border-radius: 999px; background: var(--ink); color: white; font: 700 11px "DM Sans",sans-serif; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.contact-form button span { font-size: 18px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary { list-style: none; cursor: pointer; padding: 10px 16px; border-radius: 999px; background: var(--ink); color: white; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; right: 0; top: 51px; width: 210px; padding: 12px; border-radius: 18px; background: white; box-shadow: 0 18px 45px rgba(25,20,55,.18); }
  .mobile-menu nav a { display: block; padding: 11px 10px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card-1 { grid-column: span 2; }
  .news-card-1 .news-image-wrap { aspect-ratio: 1.75 / 1; }
  .video-latest { grid-template-columns: 1fr; }
  .video-picks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-band { grid-template-columns: 1fr; }
  .feature-cover { min-height: 650px; }
  .about-section { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer > p { justify-self: center; }
  .social-links { justify-content: center; flex-wrap: wrap; }
  .archive-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .show-card { grid-template-columns: 190px minmax(0,1fr); }
  .show-date { grid-column: 2; }
  .show-main { grid-column: 2; }
  .show-actions { grid-column: 2; align-items: flex-start; }
  .show-detail-card { grid-template-columns: 1fr; }
  .show-detail-image { position: static; max-width: 620px; }
  .ticket-order { grid-template-columns: 1fr; }
  .member-cards { grid-template-columns: 1fr; }
  .member-cards article { min-height: 270px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout aside { position: static; }
}

@media (max-width: 620px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 58px; padding-left: 18px; }
  .brand { font-size: 23px; }
  .hero-content { width: calc(100% - 36px); padding-top: 130px; justify-content: flex-end; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(90px, 36vw, 150px); line-height: .78; }
  .hero-copy { margin: 22px 0; font-size: 16px; }
  .hero-side-note { display: none; }
  .hero-actions { width: 100%; }
  .button { flex: 1; min-width: 0; }
  .section { width: calc(100% - 36px); padding: 88px 0; }
  .section-heading { align-items: flex-start; margin-bottom: 34px; }
  .section-heading h2, .contact-section h2 { font-size: 54px; }
  .text-link { margin-top: 10px; font-size: 9px; }
  .news-grid { grid-template-columns: 1fr; gap: 34px; }
  .news-card-1 { grid-column: auto; }
  .news-card-1 .news-image-wrap, .news-image-wrap { aspect-ratio: 1 / 1; }
  .news-card h3 { font-size: 17px; }
  .video-latest { padding-bottom: 82px; }
  .video-copy h2 { font-size: 68px; }
  .latest-video-frame { box-shadow: 12px 12px 0 var(--cyan); }
  .video-picks { display: block; padding-top: 44px; }
  .video-picks-heading { display: block; }
  .video-picks-heading > p { margin-top: 20px; }
  .video-picks-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-cover { min-height: 440px; }
  .feature-cover > img { width: 72%; }
  .feature-copy { padding: 70px 24px; }
  .release-row { grid-template-columns: 1fr; gap: 48px; }
  .about-section { padding: 88px 18px; gap: 10px; }
  .about-visual { width: min(290px, 88%); margin: 18px 0 34px; }
  .about-visual img { max-height: 180px; }
  .about-title h2 { font-size: 43px; }
  .about-copy > p { margin-top: 28px; font-size: 15px; }
  .member-list div { display: block; }
  .member-list small { display: block; margin-top: 5px; }
  .contact-section { padding: 100px 18px; }
  .contact-section h2 { font-size: 61px; }
  .footer { padding-top: 52px; padding-bottom: 52px; }
  .page-shell { width: calc(100% - 36px); }
  .page-hero { min-height: 470px; padding-top: 100px; }
  .page-hero-inner { min-height: 370px; justify-content: center; }
  .page-hero h1 { font-size: clamp(64px,23vw,105px); line-height: .82; }
  .page-hero-copy { position: static; width: 100%; margin-top: 42px; }
  .page-section { padding-block: 72px 95px; }
  .archive-news-grid { grid-template-columns: 1fr; gap: 44px; }
  .post-page { padding-top: 88px; }
  .post-header { padding-block: 55px 42px; }
  .back-link { margin-bottom: 40px; }
  .post-cover { height: 72vw; }
  .post-layout { grid-template-columns: 1fr; gap: 35px; padding-block: 60px 95px; }
  .post-layout aside { flex-direction: row; }
  .show-card { grid-template-columns: 1fr; gap: 24px; padding: 42px 0; }
  .show-image { aspect-ratio: 1; }
  .show-date, .show-main, .show-actions { grid-column: auto; }
  .show-actions { flex-direction: row; justify-content: space-between; align-items: center; }
  .stream-ticket { align-items: flex-start; flex-direction: column; }
  .show-date i { right: 10px; }
  .show-main dl div { grid-template-columns: 70px 1fr; }
  .show-detail-copy h2 { font-size: 36px; }
  .show-gallery { margin-top: 80px; }
  .show-gallery-grid { columns: 1; }
  .show-gallery-item { padding: 10px; }
  .show-gallery-item figcaption { grid-template-columns: auto 1fr; }
  .show-gallery-item figcaption small { grid-column: 2; }
  .ticket-order { margin-top: 80px; padding: 30px 18px; }
  .ticket-order-intro h2 { font-size: 52px; }
  .ticket-form { padding: 26px 18px; }
  .works-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-intro { grid-template-columns: 1fr; gap: 25px; padding-block: 85px; }
  .about-intro h2 { font-size: 43px; }
  .members-band { padding-block: 75px 90px; }
  .about-manifesto { padding-block: 90px; }
  .about-manifesto h2 { font-size: 41px; }
  .contact-layout { gap: 50px; }
  .form-row { grid-template-columns: 1fr; gap: 34px; }
  .contact-form { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* WordPress parity layer -------------------------------------------------- */
body.soa-modern { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", "Noto Sans JP", sans-serif; line-height: 1.5; overflow-x: hidden; }
body.soa-modern #masthead.site-header { position: fixed; z-index: 50; top: 18px; left: 50%; width: min(1180px, calc(100% - 36px)); height: 64px; min-height: 64px; padding: 0 12px 0 24px !important; transform: translateX(-50%); }
body.soa-modern:not(.home) #wrapper.page-section { width: min(1180px, calc(100% - 48px)); max-width: none; margin: 0 auto; padding: 105px 0 130px; }
body.soa-modern.page-template-page-s-o-a #wrapper,body.soa-modern.soa-biography-page #wrapper { width: 100%; max-width: none; margin: 0; padding: 0; }
body.soa-modern.soa-biography-page #primary { width: 100%; max-width: none; }
body.soa-modern.post-type-archive-shows #primary,body.soa-modern.post-type-archive-tales_and_truth #primary { display: block; }
body.soa-modern.single article.hentry { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { z-index: 1000; top: 6px; left: 6px; width: auto; height: auto; padding: 12px 16px; clip: auto; background: var(--ink); color: white; }
.news-card > a,.archive-news-card > a { position: relative; display: block; height: 100%; }
.news-card-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--violet); font-size: 42px; font-weight: 700; letter-spacing: -.08em; }
.pill-news { background: var(--ink); color: white; }
.pill-custom { background: var(--pill-bg); color: var(--pill-fg); }
.news-grid:empty::after { content: "現在、お知らせはありません。"; font-family: "Noto Sans JP", sans-serif; }
.navigation.pagination { grid-column: 1 / -1; margin-top: 70px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.nav-links .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; }
.nav-links .page-numbers.current { border-color: var(--ink); background: var(--ink); color: white; }

/* Article readability */
.post-body > p:first-child { font-size: clamp(20px,2.5vw,30px); font-weight: 600; line-height: 1.9; }
.post-body h3 { margin: 50px 0 18px; font-size: clamp(21px,2.5vw,30px); line-height: 1.55; }
.post-body h4 { margin: 38px 0 16px; font-size: 19px; line-height: 1.6; }
.post-body ul,.post-body ol { margin: 0 0 34px; padding-left: 1.4em; }
.post-body li { margin: .55em 0; }
.post-body a:not(.button) { color: var(--violet); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.post-body blockquote { margin: 48px 0; padding: 25px 30px; border-left: 4px solid var(--pink); background: white; font-size: 18px; }
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body figure,.post-body img { max-width: 100%; height: auto; }
.post-body figure { margin: 46px 0; }
.post-body figcaption { margin-top: 10px; color: #777280; font-size: 11px; line-height: 1.7; }
.post-list-button { width: max-content; }
.post-navigation { padding-bottom: 115px; }
.post-navigation .nav-links { justify-content: space-between; gap: 28px; padding-top: 32px; border-top: 1px solid var(--line); }
.post-navigation .nav-previous,.post-navigation .nav-next { max-width: 48%; font-size: 11px; font-weight: 600; line-height: 1.7; }

/* Shows and arbitrary-ratio image galleries */
.show-image-placeholder { position: absolute; inset: 12px; display: grid; place-items: center; color: rgba(20,19,32,.24); font-size: 38px; font-weight: 700; letter-spacing: -.08em; }
.show-detail > .site-main > .back-link { margin-bottom: 58px; }
.show-detail-card > * { min-width: 0; }
.show-date strong { display: inline; color: var(--ink); font-weight: 700; line-height: normal; white-space: nowrap; }
.show-main h2,.show-detail-copy h2 { color: var(--ink); font-weight: 400; }
.show-detail-copy .button { width: max-content; }
.show-stream-link { text-align: center; }
.show-gallery-item a { display: block; }
.ticket-form-fields { display: grid; gap: 30px; }
.ticket-form-fields p { margin: 0; }
.ticket-form-fields label > span { color: var(--violet); }
.ticket-form-fields label > em { float: right; color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 8px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.soa-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.soa-turnstile { max-width: 100%; overflow: hidden; }
.soa-form-notice { padding: 15px 18px; border-radius: 12px; background: #dff8f4; color: var(--ink); font-family: "Noto Sans JP",sans-serif; font-size: 12px; line-height: 1.7; }
.soa-form-notice--invalid,.soa-form-notice--error,.soa-form-notice--wait,.soa-form-notice--spam { background: #fff0f5; }
.soa-event-excerpt { margin-top: 28px; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }

/* Works */
.works-grid { counter-reset: work; }
.work-card { counter-increment: work; }
.work-number::before { content: counter(work, decimal-leading-zero); }
.works-grid { align-items: start; }

/* Stop legacy generic card rules from changing the approved preview layout. */
.soa-modern.page .about-intro.hentry {
  margin: 0;
  padding: 130px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.soa-modern.post-type-archive-shows .shows-list > article.show-card,
.soa-modern.single-shows article.show-detail-card {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.soa-modern.post-type-archive-shows .shows-list > article.show-card { padding: 50px 0; border-bottom: 1px solid var(--line); }

@media (max-width: 620px) {
  .soa-modern.page .about-intro.hentry { padding: 85px 0; }
  .soa-modern.post-type-archive-shows .shows-list > article.show-card { padding: 42px 0; }
}
.release-detail { display: grid; grid-template-columns: minmax(300px,.85fr) 1.15fr; gap: clamp(45px,7vw,95px); align-items: start; }
.release-detail-art { position: sticky; top: 115px; padding: 18px; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.release-detail-art img { width: 100%; height: auto; max-height: 760px; object-fit: contain; }
.release-detail-copy h1 { margin: 10px 0 18px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(40px,6vw,78px); line-height: 1.25; letter-spacing: -.05em; }
.work-date { color: var(--violet); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tracklist { margin: 34px 0; padding: 0; list-style-position: inside; border-top: 1px solid var(--line); }
.tracklist li { padding: 12px 0; border-bottom: 1px solid var(--line); font-family: "Noto Sans JP",sans-serif; }
.work-body { margin: 36px 0; font-family: "Noto Sans JP",sans-serif; font-size: 15px; line-height: 2; }
.back-link-bottom { margin: 80px 0 0; }

/* Biography and contact */
.about-intro-copy { max-width: 680px; font-family: "Noto Sans JP",sans-serif; font-size: clamp(16px,1.7vw,21px); line-height: 2.15; }
.about-intro-copy p { margin: 0 0 1.5em; }
.contact-form-card { min-width: 0; }
.contact-form .soa-honeypot { display: none; }
.contact-section > div > p:not(.section-kicker) { margin: 28px 0 34px; font-family: "Noto Sans JP", sans-serif; font-size: 14px; }

@media (max-width: 900px) {
  .release-detail { grid-template-columns: 1fr; }
  .release-detail-art { position: static; max-width: 620px; }
}

@media (max-width: 620px) {
  body.soa-modern #masthead.site-header { top: 10px; width: calc(100% - 20px); height: 58px; min-height: 58px; padding: 0 12px 0 18px !important; }
  body.soa-modern:not(.home) #wrapper.page-section { width: calc(100% - 36px); padding: 72px 0 95px; }
  body.soa-modern.page-template-page-s-o-a #wrapper { width: 100%; padding: 0; }
  .post-body > p:first-child { font-size: 20px; }
  .post-body blockquote { padding: 20px; font-size: 16px; }
  .post-navigation { padding-bottom: 80px; }
  .post-navigation .nav-links { display: grid; }
  .post-navigation .nav-previous,.post-navigation .nav-next { max-width: none; }
  .show-detail > .site-main > .back-link { margin-bottom: 40px; }
  .show-detail-copy .button { width: 100%; }
  .release-detail-copy h1 { font-size: 40px; }
}

/* ライブ詳細のチケットボタン */
.show-detail .button.button-primary,
.show-detail .button.button-primary:visited,
.show-detail .soa-ticket-cta,
.show-detail .soa-ticket-cta:visited {
  color: #fff !important;
}

/* ========================================
   ボタン表示の調整
======================================== */

/* 1. トップページ「send a letter」のボタン文字 */
.contact-section .contact-button,
.contact-section .contact-button:link,
.contact-section .contact-button:visited {
  color: var(--ink) !important;
}

/* 矢印も文字と同じ濃い色にする */
.contact-section .contact-button svg {
  color: var(--ink);
  stroke: currentColor;
}


/* 2. サイト内のボタン・リンクボタンを小文字表示 */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.button,
a[class*="button"],
.text-link,
.video-channel-link,
.work-link,
.show-ticket-link,
.show-stream-link,
.soa-ticket-cta,
.soa-ticket-external__link,
.back-link {
  text-transform: lowercase !important;
}


/* tales & truth一覧・各作品詳細のヘッダー */
body.post-type-archive-tales_and_truth .page-hero-pink,
body.post-type-archive-tales_and_truth .soa-page-hero--pink,
body.single-tales_and_truth .page-hero-pink,
body.single-tales_and_truth .soa-page-hero--pink {
  background: #17151f !important;
  color: #fff;
}
