:root {
	--soa-ink: #141320;
	--soa-paper: #f7f5fb;
	--soa-white: #fff;
	--soa-violet: #7357ff;
	--soa-pink: #ff62a9;
	--soa-cyan: #40d5cb;
	--soa-line: rgba(20, 19, 32, .14);
}

html { scroll-behavior: smooth; }
body.soa-modern {
	margin: 0;
	background: var(--soa-paper);
	color: var(--soa-ink);
	font-family: "DM Sans", "Noto Sans JP", sans-serif;
	overflow-x: hidden;
}
.soa-modern *, .soa-modern *::before, .soa-modern *::after { box-sizing: border-box; }
.soa-modern a { color: inherit; text-decoration: none; }
.soa-modern img { max-width: 100%; }
.soa-modern svg { width: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.soa-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Navigation */
.soa-modern .main-navigation-container,
.soa-modern .main-navigation-container.fixed-header,
.soa-modern .main-navigation-container.sticky-header {
	position: fixed !important;
	z-index: 999;
	top: 18px !important;
	left: 50%;
	right: auto;
	width: min(1180px, calc(100% - 36px));
	height: 64px;
	transform: translateX(-50%) !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px 0 24px;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 999px;
	background: rgba(255,255,255,.86) !important;
	box-shadow: 0 16px 48px rgba(29,22,65,.12);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}
.soa-modern .main-navigation-container .site-branding { display: none; }
.soa-nav-brand {
	position: relative;
	z-index: 3;
	flex: 0 0 auto;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.08em;
}
.soa-nav-brand span { color: var(--soa-pink); }
.soa-modern .site-menu { flex: 1; display: flex; align-items: center; justify-content: flex-end; min-height: 64px; }
.soa-modern .site-menu .slide-menu { display: block; }
.soa-modern .site-menu .slide-menu > ul { display: flex; align-items: center; justify-content: flex-end; gap: 2px; margin: 0; padding: 0; }
.soa-modern .site-menu .slide-menu > ul > li { margin: 0; }
.soa-modern .site-menu .slide-menu > ul > li > a {
	display: block;
	padding: 10px 11px;
	border-radius: 999px;
	color: var(--soa-ink) !important;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .06em;
	text-transform: lowercase;
	transition: .25s ease;
}
.soa-modern .site-menu .slide-menu > ul > li > a:hover,
.soa-modern .site-menu .slide-menu > ul > li.current-menu-item > a {
	background: rgba(115,87,255,.1);
	color: var(--soa-violet) !important;
}
.soa-modern .dark-mode-widget,
.soa-modern .dark-mode-menu-item,
.soa-modern .search-item { display: none !important; }
.soa-modern .menu-toggle { margin-left: auto; }
.soa-modern.home #masthead { height: 0; min-height: 0; padding: 0 !important; }
.soa-modern.home #masthead > .header-image-wrapper,
.soa-modern.home #masthead > .img-overlay { display: none !important; }

/* Home hero */
.soa-home-wrapper { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
.soa-home { width: 100%; max-width: none; margin: 0; padding: 0; }
.soa-hero { position: relative; min-height: 100svh; overflow: hidden; background: #11101a; color: var(--soa-white); }
.soa-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.06); }
.soa-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%); }
.soa-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 18%; background: linear-gradient(transparent,rgba(14,12,22,.62)); }
.soa-hero__content { position: relative; z-index: 3; min-height: 100svh; padding-top: 170px; padding-bottom: 90px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.soa-eyebrow, .soa-kicker { margin: 0 0 18px; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.soa-eyebrow { color: rgba(255,255,255,.68); }
.soa-hero h1 { margin: 0 0 18px; color: white; font-family: "DM Sans",sans-serif; font-size: clamp(90px,17vw,250px); font-weight: 700; line-height: .72; letter-spacing: -.105em; text-indent: -.075em; }
.soa-hero__copy { margin: 32px 0; font-family: "Noto Sans JP",sans-serif; font-size: clamp(18px,2.1vw,30px); font-weight: 500; line-height: 1.65; letter-spacing: .12em; }
.soa-hero__actions { display: flex; gap: 12px; }
.soa-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; }
.soa-button:hover { transform: translateY(-3px); }
.soa-button--pink { background: var(--soa-pink); color: white !important; }
.soa-button--pink:hover { background: #ff3e95; }
.soa-button--ghost { border-color: rgba(255,255,255,.55); color: white !important; backdrop-filter: blur(10px); }
.soa-button--ghost:hover { background: white; color: var(--soa-ink) !important; }
.soa-button--dark { align-self: flex-start; background: var(--soa-ink); color: white !important; }
.soa-hero__side { position: absolute; z-index: 3; top: 50%; right: 32px; margin: 0; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .35em; writing-mode: vertical-rl; transform: translateY(-50%); }
.soa-scroll-cue { position: absolute; z-index: 4; right: 50%; bottom: 26px; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.7) !important; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; transform: translateX(50%); }
.soa-scroll-cue span { font-size: 16px; animation: soa-bob 1.7s infinite ease-in-out; }
.soa-hero__orbit { position: absolute; z-index: 2; border-radius: 50%; filter: blur(4px); mix-blend-mode: screen; opacity: .66; }
.soa-hero__orbit--one { top: -12vw; right: -9vw; width: 42vw; height: 42vw; border: 1px solid rgba(255,98,169,.9); box-shadow: inset 0 0 80px rgba(255,98,169,.25); }
.soa-hero__orbit--two { left: 37%; bottom: -15vw; width: 25vw; height: 25vw; background: radial-gradient(circle at 35% 35%,rgba(64,213,203,.3),transparent 64%); }
@keyframes soa-bob { 50% { transform: translateY(5px); } }

/* Home news */
.soa-section { padding: 120px 0; }
.soa-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 52px; }
.soa-kicker { color: var(--soa-violet); }
.soa-section-heading h2,
.soa-contact-cta h2 { margin: 0; color: var(--soa-ink); font-family: "DM Sans",sans-serif; font-size: clamp(56px,8vw,108px); font-weight: 600; line-height: .88; letter-spacing: -.075em; }
.soa-news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px 18px; }
.soa-news-card { margin: 0; padding: 0 0 22px; border-bottom: 1px solid var(--soa-line); background: transparent; box-shadow: none; }
.soa-news-card__link { position: relative; display: block; height: 100%; }
.soa-news-card__image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #e5e1eb; }
.soa-news-card__image img { width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .65s cubic-bezier(.22,.8,.2,1); }
.soa-news-card:hover .soa-news-card__image img { transform: scale(1.045); }
.soa-news-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--soa-violet); font-size: 42px; font-weight: 700; letter-spacing: -.08em; }
.soa-news-card__number { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 10px; font-weight: 700; }
.soa-news-card__meta { display: flex; align-items: center; gap: 12px; margin: 18px 0 13px; }
.soa-pill { padding: 5px 9px; border-radius: 999px; background: var(--soa-pink); color: white; font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.soa-news-card__meta time { color: #777280; font-size: 10px; letter-spacing: .08em; }
.soa-news-card h3 { margin: 0; padding-right: 34px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(15px,1.4vw,20px); font-weight: 600; line-height: 1.6; }
.soa-card-arrow { position: absolute; right: 0; bottom: 2px; transition: transform .25s ease; }
.soa-news-card:hover .soa-card-arrow { transform: translateX(5px); }

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

/* Latest release */
.soa-release { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--soa-violet); color: white; }
.soa-release__cover { position: relative; display: grid; place-items: center; overflow: hidden; background: #5f46df; }
.soa-release__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; }
.soa-release__cover:hover > img { transform: rotate(0deg) scale(1.02); }
.soa-release__cover::before { content: "NEW RELEASE / NEW RELEASE / NEW RELEASE"; position: absolute; top: 45%; left: -15%; right: -15%; color: rgba(255,255,255,.09); font-size: clamp(46px,6vw,96px); font-weight: 700; letter-spacing: -.05em; white-space: nowrap; transform: rotate(-14deg); }
.soa-release__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); }
.soa-release__disc::after { content: ""; position: absolute; inset: 38%; border: 10px solid #fcdbeb; border-radius: 50%; background: var(--soa-pink); }
.soa-release__copy { display: flex; flex-direction: column; justify-content: center; padding: 100px clamp(40px,7vw,110px); }
.soa-release__copy .soa-kicker { color: #d8d0ff; }
.soa-release__type { margin: 0 0 8px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.soa-release h2 { margin: 0 0 34px; color: white; font-family: "Noto Sans JP",sans-serif; font-size: clamp(45px,5vw,78px); line-height: 1.06; letter-spacing: -.05em; }
.soa-release ol { list-style: none; margin: 0 0 30px; padding: 0; border-top: 1px solid rgba(255,255,255,.24); }
.soa-release 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; }
.soa-release li span { color: #c8bfff; font-size: 10px; }
.soa-release__note { margin: 0 0 28px; font-size: 10px; letter-spacing: .16em; }

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

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

/* Sub pages and archives */
.soa-modern:not(.home) #masthead { min-height: 52vh; }
.soa-modern:not(.home) .header-image-wrapper { height: 52vh !important; min-height: 430px; background-position: center !important; background-size: cover !important; }
.soa-modern:not(.home) .header-image-wrapper::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(15,12,24,.72),rgba(15,12,24,.12)); }
.soa-modern:not(.home) #header-page-title { z-index: 2; }
.soa-modern:not(.home) #header-page-title-inside { width: min(1180px,calc(100% - 48px)); margin: 0 auto; text-align: left; }
.soa-modern:not(.home) #header-page-title .entry-title,
.soa-modern:not(.home) .contents-title-header h1 { color: white; font-family: "DM Sans",sans-serif; font-size: clamp(58px,9vw,124px); font-weight: 600; line-height: .85; letter-spacing: -.075em; text-transform: lowercase; }
.soa-modern:not(.home) #wrapper { width: min(1180px,calc(100% - 48px)); max-width: none; margin: 0 auto; padding: 100px 0; }
.soa-modern:not(.home) #primary { width: 100%; max-width: none; }
.soa-modern.page .hentry,
.soa-modern.single .hentry { padding: clamp(28px,5vw,68px); border: 1px solid var(--soa-line); border-radius: 26px; background: white; box-shadow: 0 22px 60px rgba(28,22,62,.07); }
.soa-modern .entry-content { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 16px; line-height: 2; }
.soa-modern .entry-content h2,
.soa-modern .entry-content h3 { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; }

/* Discography archive */
.soa-modern.post-type-archive-tales_and_truth #primary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 38px 24px; }
.soa-modern.post-type-archive-tales_and_truth .contents-title-header { grid-column: 1/-1; }
.soa-modern.post-type-archive-tales_and_truth article { margin: 0; padding: 0; background: transparent; box-shadow: none; }
.soa-modern .tales { height: 100%; }
.soa-modern .tales-img,
.soa-modern .tales-img_sp { aspect-ratio: 1; overflow: hidden; background: #e5e1eb; }
.soa-modern .tales-img img,
.soa-modern .tales-img_sp img { width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .5s ease,filter .5s ease; }
.soa-modern .tales:hover .tales-img img,
.soa-modern .tales:hover .tales-img_sp img { transform: scale(1.045); filter: brightness(.84); }
.soa-modern .tales-header { padding-top: 16px; }
.soa-modern .tales-header h2,
.soa-modern .tales-header h3 { margin: 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 21px; }
.soa-modern .tales-info { color: #777280; font-size: 11px; letter-spacing: .06em; }
.soa-modern .tales-button { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: var(--soa-violet); color: white !important; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Shows archive */
.soa-modern.post-type-archive-shows #primary { display: grid; gap: 26px; }
.soa-modern .shows.soa-legacy-entry { margin: 0; padding: clamp(24px,4vw,48px); border: 1px solid var(--soa-line); border-radius: 24px; background: white; box-shadow: 0 18px 50px rgba(28,22,62,.06); }
.soa-modern .event-content { display: grid; grid-template-columns: minmax(130px,.35fr) 1.65fr; gap: clamp(24px,5vw,72px); align-items: start; }
.soa-modern .event-date__h { color: var(--soa-violet); font-size: clamp(24px,3vw,42px); font-weight: 700; letter-spacing: -.04em; }
.soa-modern .event-title,
.soa-modern .event-title__h { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(22px,3vw,38px); line-height: 1.4; }
.soa-modern .event-ul { margin: 22px 0; padding: 0; list-style: none; font-family: "Noto Sans JP",sans-serif; line-height: 1.9; }
.soa-modern .to-ticket-form a { display: inline-flex; padding: 13px 20px; border-radius: 999px; background: var(--soa-pink); color: white !important; font-size: 11px; font-weight: 700; letter-spacing: .08em; }

/* Biography */
.soa-modern .profile-flex { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-bottom: 50px; }
.soa-modern .profile { padding: 26px; border-radius: 20px; background: var(--soa-paper); }
.soa-modern .profile-header h3 { margin: 0 0 7px; font-size: 24px; }
.soa-modern .profile-header span { color: var(--soa-violet); font-family: "DM Sans",sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.soa-modern .profile-sns_ul { display: flex; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }

/* Forms */
.soa-modern .wpcf7 { max-width: 760px; margin: 0 auto; }
.soa-modern .wpcf7 p { margin-bottom: 22px; }
.soa-modern .wpcf7 label { display: block; color: var(--soa-ink); font-size: 13px; font-weight: 600; }
.soa-modern input[type="text"],
.soa-modern input[type="email"],
.soa-modern input[type="tel"],
.soa-modern input[type="date"],
.soa-modern input[type="search"],
.soa-modern select,
.soa-modern textarea {
	width: 100%;
	margin-top: 8px;
	padding: 15px 16px;
	border: 1px solid var(--soa-line);
	border-radius: 12px;
	background: var(--soa-paper);
	color: var(--soa-ink);
	font: inherit;
}
.soa-modern textarea { min-height: 180px; resize: vertical; }
.soa-modern input:focus,
.soa-modern select:focus,
.soa-modern textarea:focus { outline: 2px solid var(--soa-violet); outline-offset: 2px; }
.soa-modern input[type="submit"],
.soa-modern button[type="submit"] { padding: 15px 28px; border: 0; border-radius: 999px; background: var(--soa-pink); color: white; font-family: "DM Sans",sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.soa-modern .ticket-order-form { padding: clamp(25px,5vw,62px); border-radius: 24px; background: #dff8f4; }

/* Single posts and footer */
.soa-modern.single .entry-title { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(30px,5vw,58px); line-height: 1.35; }
.soa-modern.single .post-thumbnail img { width: 100%; border-radius: 18px; }
.soa-modern .site-footer { padding: 54px max(24px,calc((100vw - 1180px)/2)); background: var(--soa-ink); color: white; }
.soa-modern .site-footer .sns-container { display: flex; justify-content: center; gap: 16px; margin: 0 0 30px; padding: 0; }
.soa-modern .site-footer .sns-container img { width: 30px; height: 30px; object-fit: contain; filter: grayscale(1) brightness(3); opacity: .85; }
.soa-modern .site-footer .site-info { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .08em; text-align: center; }
.soa-modern #back-to-top { border-radius: 50%; background: var(--soa-violet); }

/* Unified custom templates (v1.1) */
.soa-modern-custom-view #masthead { height: 0; min-height: 0; padding: 0 !important; }
.soa-modern-custom-view #masthead > .header-image-wrapper,
.soa-modern-custom-view #masthead > .img-overlay,
.soa-modern-custom-view #header-page-title { display: none !important; }
.soa-modern-custom-view #wrapper.soa-inner-wrapper { width: min(1180px,calc(100% - 48px)); max-width: none; margin: 0 auto; padding: 105px 0 130px; }
.soa-modern-custom-view #wrapper.soa-inner-wrapper #primary { display: block; width: 100%; max-width: none; }
.soa-page-hero { position: relative; min-height: 570px; padding-top: 150px; overflow: hidden; color: white; }
.soa-page-hero--violet { background: var(--soa-violet); }
.soa-page-hero--pink { background: var(--soa-pink); }
.soa-page-hero--cyan { background: var(--soa-cyan); color: var(--soa-ink); }
.soa-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-family: "DM Sans",sans-serif; font-size: clamp(120px,23vw,340px); font-weight: 700; line-height: .8; letter-spacing: -.1em; white-space: nowrap; }
.soa-page-hero--cyan::after { color: rgba(20,19,32,.07); }
.soa-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); }
.soa-page-hero--cyan .soa-page-hero__orbit { border-color: rgba(20,19,32,.18); }
.soa-page-hero__inner { position: relative; z-index: 2; min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.soa-page-kicker { margin: 0 0 20px; font: 700 10px "DM Sans",sans-serif; letter-spacing: .23em; text-transform: uppercase; }
.soa-page-hero h1 { max-width: 1050px; margin: 0; color: inherit; font-family: "DM Sans",sans-serif; font-size: clamp(75px,13vw,184px); font-weight: 600; line-height: .78; letter-spacing: -.09em; }
.soa-page-hero__copy { position: absolute; right: 0; bottom: 55px; width: min(350px,32vw); border-top: 1px solid currentColor; }
.soa-page-hero__copy p { margin: 14px 0 0; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.8; }
.soa-archive-head { display: flex; justify-content: space-between; margin-bottom: 48px; padding-bottom: 16px; border-bottom: 1px solid var(--soa-line); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.soa-archive-head p { margin: 0; }
.soa-archive-head span { color: #777280; }
.soa-modern .nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 70px; }
.soa-modern .nav-links .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--soa-line); border-radius: 999px; font-size: 11px; }
.soa-modern .nav-links .current { border-color: var(--soa-violet); background: var(--soa-violet); color: white; }

/* News archive */
.soa-archive-news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 52px 22px; }
.soa-modern .soa-archive-news-card { position: relative; min-width: 0; margin: 0; padding: 0 0 28px; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; background: transparent; box-shadow: none; }
.soa-archive-news-card__image { position: relative; aspect-ratio: 1.15; overflow: hidden; background: #e5e1eb; }
.soa-archive-news-card__image > img { width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .55s ease; }
.soa-archive-news-card:hover .soa-archive-news-card__image > img { transform: scale(1.045); }
.soa-archive-news-card__image > .soa-news-card__placeholder { width: 100%; height: 100%; }
.soa-archive-news-card__number { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: white; font-size: 10px; font-weight: 700; }
.soa-archive-news-card h2 { margin: 0; padding-right: 38px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(17px,1.6vw,22px); line-height: 1.65; }
.soa-archive-news-card .soa-card-arrow { bottom: 34px; }

/* Post detail */
.soa-modern.single-post .soa-post-page .hentry { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.soa-post-page { padding-top: 130px; }
.soa-post-header { padding-top: 80px; padding-bottom: 64px; }
.soa-back-link { display: inline-block; margin-bottom: 58px; color: var(--soa-ink) !important; font: 700 10px "DM Sans",sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.soa-post-header h1 { max-width: 970px; margin: 24px 0 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(38px,6vw,82px); line-height: 1.35; letter-spacing: -.055em; }
.soa-post-cover { width: min(1440px,100%); height: min(68vw,780px); margin: 0 auto; overflow: hidden; }
.soa-post-cover img { width: 100%; height: 100%; margin: 0; object-fit: cover; }
.soa-post-layout { display: grid; grid-template-columns: 120px minmax(0,720px); justify-content: center; gap: 60px; padding-top: 90px; padding-bottom: 100px; }
.soa-post-share { display: flex; flex-direction: column; gap: 13px; padding-top: 8px; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.soa-post-share span { margin-bottom: 10px; color: #777280; }
.soa-post-body { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 16px; line-height: 2.15; }
.soa-post-body > p:first-child { font-size: clamp(19px,2.1vw,27px); font-weight: 600; line-height: 1.9; }
.soa-post-body h2 { margin: 70px 0 25px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(28px,3.4vw,44px); line-height: 1.5; }
.soa-post-body img { max-width: 100%; height: auto; }
.soa-post-navigation { padding-bottom: 130px; }
.soa-post-navigation .nav-links { justify-content: space-between; margin: 0; }

/* Shows */
.soa-shows-list { border-top: 1px solid var(--soa-line); }
.soa-modern .soa-shows-list > article.shows,
.soa-modern .soa-show-detail > article.shows { display: grid; grid-template-columns: minmax(240px,.72fr) 1.28fr; gap: clamp(36px,6vw,84px); align-items: start; margin: 0; padding: 54px 0; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; background: transparent; box-shadow: none; }
.soa-modern .soa-show-detail > article.shows { padding: clamp(28px,5vw,62px); border: 0; border-radius: 28px; background: white; box-shadow: 0 24px 70px rgba(28,22,62,.08); }
.soa-shows-list .event-content,
.soa-show-detail .event-content { grid-column: 2; display: block; }
.soa-shows-list .event-img,
.soa-show-detail .event-img { grid-column: 1; grid-row: 1; display: block; position: sticky; top: 110px; aspect-ratio: 4/5; overflow: hidden; background: #e5e1eb; }
.soa-shows-list .event-img img,
.soa-show-detail .event-img img { width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .5s ease; }
.soa-shows-list article:hover .event-img img { transform: scale(1.035); }
.soa-shows-list .event-img_sp,
.soa-show-detail .event-img_sp { display: none; }
.soa-shows-list .event-title,
.soa-show-detail .event-title { margin: 0 0 28px; }
.soa-shows-list .event-date__h,
.soa-show-detail .event-date__h { margin: 0 0 10px; color: var(--soa-violet); font: 700 clamp(25px,3vw,42px) "DM Sans",sans-serif; letter-spacing: -.045em; }
.soa-shows-list .event-title__h,
.soa-show-detail .event-title__h { margin: 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(25px,3.2vw,43px); line-height: 1.45; }
.soa-shows-list .event-ul,
.soa-show-detail .event-ul { margin: 0 0 30px; padding: 0; border-top: 1px solid var(--soa-line); list-style: none; }
.soa-shows-list .event-ul li,
.soa-show-detail .event-ul li { display: grid; grid-template-columns: 105px 1fr; padding: 12px 0; border-bottom: 1px solid var(--soa-line); font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }
.soa-shows-list .event-ul li > span,
.soa-show-detail .event-ul li > span { color: #777280; font: 700 9px "DM Sans",sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.soa-shows-list .attention,
.soa-show-detail .attention { margin-top: 25px; padding: 20px; border-left: 3px solid var(--soa-cyan); background: white; font-family: "Noto Sans JP",sans-serif; font-size: 12px; overflow-wrap: anywhere; }
.soa-show-detail .attention { background: var(--soa-paper); }
.soa-shows-list .attention p,
.soa-show-detail .attention p { margin: 0 0 8px; font-weight: 600; }
.soa-shows-list .attention a,
.soa-show-detail .attention a { color: var(--soa-violet) !important; text-decoration: underline; }
.soa-shows-list .soa-ticket-external__link,
.soa-show-detail .soa-ticket-external__link { display: inline-flex; margin-top: 8px; padding: 13px 20px; border-radius: 999px; background: var(--soa-violet); color: white !important; font: 700 10px "DM Sans",sans-serif; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.soa-stream-ticket { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; padding: 20px; border: 1px solid rgba(20,19,32,.12); border-radius: 16px; background: #eefcf9; }
.soa-stream-ticket div { display: grid; gap: 5px; }
.soa-stream-ticket div > span { color: var(--soa-violet); font: 700 8px "DM Sans",sans-serif; letter-spacing: .13em; }
.soa-stream-ticket strong { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 13px; }
.soa-stream-ticket a { flex: 0 0 auto; padding: 12px 17px; border-radius: 999px; background: var(--soa-cyan); color: var(--soa-ink) !important; font: 700 9px "Noto Sans JP",sans-serif; text-decoration: none !important; }
.soa-shows-list .to-ticket-form,
.soa-show-detail .to-ticket-form { margin: 25px 0 0; padding: 0; border: 0; background: transparent; }
.soa-shows-list .to-ticket-form a,
.soa-show-detail .to-ticket-form a { display: inline-flex; padding: 14px 22px; border-radius: 999px; background: var(--soa-pink); color: white !important; font: 700 11px "DM Sans",sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.soa-shows-list .soa-ticket-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
	padding: 0 0 4px;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--soa-pink) !important;
	font: 700 9px/1.4 "DM Sans", "Noto Sans JP", sans-serif;
	letter-spacing: .1em;
	text-decoration: none !important;
	transition: transform .25s ease;
}
.soa-shows-list .soa-ticket-cta:hover { transform: translateX(4px); }
.soa-show-detail .soa-ticket-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 150px;
	margin-top: 25px;
	padding: 15px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--soa-pink);
	color: white !important;
	font: 700 12px/1 "DM Sans", "Noto Sans JP", sans-serif;
	letter-spacing: .08em;
	text-decoration: none !important;
	transition: transform .25s ease, background .25s ease;
}
.soa-show-detail .soa-ticket-cta:hover { background: #ff3e95; transform: translateY(-3px); }
.soa-ticket-cta svg { width: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.soa-modern .soa-show-card { position: relative; display: grid; grid-template-columns: 210px minmax(0,1fr) 70px; gap: 42px; align-items: start; margin: 0; padding: 50px 0; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; background: transparent; box-shadow: none; }
.soa-show-card__index { position: relative; display: flex; flex-direction: column; gap: 9px; }
.soa-show-card__index > span { position: absolute; top: -38px; right: 0; color: rgba(20,19,32,.07); font-size: 90px; font-weight: 700; }
.soa-show-card__index time { color: var(--soa-violet); font-size: clamp(26px,3vw,42px); font-weight: 700; letter-spacing: -.045em; }
.soa-show-card__content h2 { max-width: 720px; margin: 0 0 28px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(25px,3.2vw,43px); line-height: 1.45; }
.soa-show-card__details { color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }
.soa-show-card__details .event-content { grid-template-columns: 1fr; gap: 12px; }
.soa-show-card__details .event-date__h,
.soa-show-card__details .event-title,
.soa-show-card__details .event-title__h { display: none; }
.soa-round-link { align-self: center; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--soa-pink); color: white !important; transition: transform .25s ease; }
.soa-round-link:hover { transform: rotate(-12deg) scale(1.05); }
.soa-modern .soa-detail-card { margin: 0; padding: clamp(28px,6vw,76px); border: 0; border-radius: 28px; background: white; box-shadow: 0 24px 70px rgba(28,22,62,.08); }
.soa-detail-card__meta { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--soa-line); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.soa-detail-card__meta p { margin: 0; color: var(--soa-violet); }
.soa-detail-card h1 { margin: 48px 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(34px,5vw,66px); line-height: 1.4; }
.soa-detail-card__body { font-family: "Noto Sans JP",sans-serif; font-size: 15px; line-height: 2; }
.soa-back-button { display: inline-flex; margin-top: 45px; padding-bottom: 5px; border-bottom: 1px solid; color: var(--soa-ink) !important; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Ratio-safe show imagery and additional-image gallery */
.soa-shows-list .event-img { position: relative; display: block; aspect-ratio: 1; overflow: hidden; padding: 0; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.soa-shows-list .event-img > a { position: absolute; inset: 14px; display: block; width: auto; height: auto; }
.soa-shows-list .event-img img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(20,19,32,.14)); }
.soa-show-detail .event-img { display: grid; place-items: center; padding: 14px; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.soa-show-detail .event-img > a { display: grid; place-items: center; width: 100%; }
.soa-show-detail .event-img img { width: 100%; height: auto; max-height: 78vh; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(20,19,32,.14)); }
.soa-show-gallery { grid-column: 1/-1; width: 100%; margin-top: 24px; padding-top: 42px; border-top: 1px solid var(--soa-line); }
.soa-show-gallery__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.soa-show-gallery__header h3 { margin: 0; color: var(--soa-ink); font-family: "DM Sans",sans-serif; font-size: clamp(38px,5vw,66px); line-height: .85; letter-spacing: -.075em; }
.soa-show-gallery__header > span { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.soa-show-gallery__grid { columns: 2; column-gap: 22px; }
.soa-show-gallery__grid:has(.soa-show-gallery__item:only-child) { columns: 1; }
.soa-show-gallery__item { break-inside: avoid; margin: 0 0 22px; padding: 14px; background: white; box-shadow: 0 16px 45px rgba(28,22,62,.07); }
.soa-show-detail .soa-show-gallery__item { background: var(--soa-paper); }
.soa-show-gallery__stage { display: grid; place-items: center; min-height: 210px; padding: 12px; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
.soa-show-gallery__stage img { display: block; width: 100%; height: auto; max-height: 78vh; margin: 0; object-fit: contain; }
.soa-show-gallery__item figcaption { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 14px 2px 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 11px; }
.soa-show-gallery__item figcaption > span { color: var(--soa-violet); font-family: "DM Sans",sans-serif; font-size: 9px; }
.soa-show-gallery__item figcaption strong { font-weight: 500; }
.soa-show-gallery__item figcaption small { color: #777280; font-family: "DM Sans",sans-serif; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.soa-shows-list .soa-show-gallery { margin-top: 10px; padding-top: 28px; }
.soa-shows-list .soa-show-gallery__header h3 { font-size: clamp(32px,4vw,52px); }
.soa-shows-list .soa-show-gallery__stage { min-height: 160px; max-height: 440px; }
.soa-shows-list .soa-show-gallery__stage img { max-height: 400px; }

/* Existing CF7 ticket reservation form */
.soa-modern .soa-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; }
.soa-ticket-order__intro h2 { margin: 0 0 32px; color: var(--soa-ink); font-family: "DM Sans",sans-serif; font-size: clamp(48px,6vw,78px); line-height: .85; letter-spacing: -.075em; }
.soa-ticket-order__intro > p:not(.soa-page-kicker) { font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 2; }
.soa-ticket-order__note { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(20,19,32,.22); color: #5d5868; font-size: 11px !important; }
.soa-ticket-order__form { padding: clamp(25px,4vw,50px); border-radius: 24px; background: white; }
.soa-ticket-order__form .wpcf7 { max-width: none; }
.soa-ticket-order__form .wpcf7 p { margin: 0 0 26px; }
.soa-ticket-order__form .wpcf7 label { font-family: "Noto Sans JP",sans-serif; font-size: 13px; font-weight: 600; }
.soa-ticket-order__form input[type="text"],
.soa-ticket-order__form input[type="email"],
.soa-ticket-order__form input[type="tel"],
.soa-ticket-order__form input[type="date"],
.soa-ticket-order__form select { width: 100%; margin-top: 10px; padding: 14px 0; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; background: transparent; }
.soa-ticket-order__form input[type="submit"] { display: block; width: 100%; padding: 19px 24px; background: var(--soa-ink); }
.soa-ticket-order__form .wpcf7-response-output { margin: 20px 0 0; padding: 14px; border-radius: 10px; font-family: "Noto Sans JP",sans-serif; font-size: 12px; }

/* Discography */
.soa-parent-tales-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 80px 40px; }
.soa-modern .soa-parent-tales-grid > article,
.soa-modern .soa-tales-detail > article { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.soa-parent-tales-grid .tales-img,
.soa-parent-tales-grid .tales-img_sp { aspect-ratio: 1; }
.soa-tales-detail .tales { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px,8vw,110px); align-items: start; }
.soa-tales-detail .tales-img { position: sticky; top: 110px; }
.soa-tales-detail .tales-img img { width: 100%; height: auto; }
.soa-tales-detail .tales-header { padding-top: 20px; }
.soa-tales-detail .tales-header h2,
.soa-tales-detail .tales-header h3 { font-size: clamp(34px,5vw,66px); line-height: 1.4; }
.soa-works-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 90px 48px; }
.soa-modern .soa-work-card { min-width: 0; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.soa-work-card__art { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #e5e1eb; }
.soa-work-card__art img { width: 100%; height: 100%; margin: 0; object-fit: cover; transition: transform .55s ease; }
.soa-work-card:hover .soa-work-card__art img { transform: scale(1.035); }
.soa-work-card__art > span:last-child { position: absolute; left: 15px; bottom: 12px; color: white; font-size: clamp(42px,6vw,82px); font-weight: 700; letter-spacing: -.08em; mix-blend-mode: difference; }
.soa-work-card__info { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 23px 0 18px; }
.soa-work-card__info p { margin: 0 0 5px; color: var(--soa-violet); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.soa-work-card__info h2 { margin: 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(22px,3vw,34px); }
.soa-work-card__info time { color: #777280; font-size: 10px; letter-spacing: .08em; }
.soa-work-card__excerpt { font-family: "Noto Sans JP",sans-serif; font-size: 12px; line-height: 1.8; }
.soa-work-card__link { display: inline-flex; align-items: center; gap: 15px; color: var(--soa-ink) !important; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.soa-modern .soa-release-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px,8vw,110px); align-items: start; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.soa-release-detail__art { position: sticky; top: 120px; }
.soa-release-detail__art img { width: 100%; height: auto; margin: 0; }
.soa-release-detail__copy { padding-top: 25px; font-family: "Noto Sans JP",sans-serif; font-size: 14px; line-height: 2; }
.soa-release-detail__copy h1 { margin: 0 0 45px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(38px,5vw,68px); line-height: 1.4; }

/* Biography */
.soa-modern .soa-biography-page { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px,8vw,120px); margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.soa-biography-page header > p { color: var(--soa-violet); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.soa-biography-page header h1 { margin: 30px 0 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(37px,5vw,66px); line-height: 1.5; letter-spacing: -.06em; }
.soa-biography-page__content { font-family: "Noto Sans JP",sans-serif; font-size: 16px; line-height: 2.15; }
.soa-biography-page__content .profile-flex { display: none; }
.soa-biography-members { width: 100vw; margin: 130px 0 0 calc(50% - 50vw); padding: 100px 0 120px; background: var(--soa-ink); color: white; }
.soa-biography-members .soa-page-kicker { color: white; }
.soa-biography-members__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 45px; }
.soa-biography-member { position: relative; display: flex; flex-direction: column; min-height: 360px; margin: 0; padding: 30px; border: 1px solid rgba(255,255,255,.2); border-radius: 0; background: rgba(255,255,255,.04); box-shadow: none; }
.soa-biography-member__number { position: absolute; top: 25px; right: 25px; color: var(--soa-pink); font-size: 11px; }
.soa-biography-member__image { display: grid; place-items: center; width: 92px; height: 118px; margin: 12px 0 18px; }
.soa-biography-member__image img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; margin: 0; object-fit: contain; }
.soa-biography-member h2 { margin: 72px 0 7px; color: white; font-family: "Noto Sans JP",sans-serif; font-size: 38px; }
.soa-biography-member__image + h2 { margin-top: 0; }
.soa-biography-member__role { min-height: 28px; margin: 0 0 32px; color: var(--soa-cyan); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.soa-biography-member__copy { margin: auto 0 0; color: rgba(255,255,255,.7); font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }
.soa-biography-member__socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.soa-biography-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; color: white !important; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.soa-biography-member__socials a:hover { border-color: var(--soa-pink); background: var(--soa-pink); }
.soa-biography-statement { padding: 150px 0 30px; text-align: center; }
.soa-biography-statement > p { margin: 0 0 24px; color: var(--soa-pink); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.soa-biography-statement h2 { margin: 0; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(42px,7vw,92px); line-height: 1.45; letter-spacing: -.07em; }

/* Contact */
.soa-contact-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(55px,9vw,130px); }
.soa-contact-layout > aside { position: sticky; top: 125px; align-self: start; }
.soa-contact-layout > aside h1 { margin: 0 0 30px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(48px,6vw,80px); line-height: 1.35; letter-spacing: -.07em; }
.soa-contact-layout > aside > p:not(.soa-page-kicker) { font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 2; }
.soa-modern .soa-contact-form-card { margin: 0; padding: clamp(28px,5vw,62px); border: 0; border-radius: 28px; background: white; box-shadow: 0 24px 70px rgba(28,22,62,.08); }
.soa-contact-form-card .entry-title { display: none; }
.soa-contact-form-card .entry-content { padding: 0; }
.soa-contact-form-card .wpcf7 { max-width: none; }
.soa-contact-form-card .wpcf7 p { margin-bottom: 30px; }
.soa-contact-form-card input[type="text"],
.soa-contact-form-card input[type="email"],
.soa-contact-form-card input[type="tel"],
.soa-contact-form-card select,
.soa-contact-form-card textarea { padding: 15px 0; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; background: transparent; }
.soa-contact-form-card input[type="submit"] { display: block; width: 100%; padding: 19px 25px; background: var(--soa-ink); }

/* Reveal */
.soa-modern [data-soa-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease,transform .7s cubic-bezier(.22,.8,.2,1); }
.soa-modern [data-soa-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
	.soa-modern .site-menu .slide-menu > ul > li > a { padding: 10px 7px; font-size: 10px; }
	.soa-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.soa-video__grid { grid-template-columns: 1fr; }
	.soa-video-picks__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.soa-release { grid-template-columns: 1fr; }
	.soa-release__cover { min-height: 650px; }
	.soa-home-biography__grid { grid-template-columns: 1fr; }
	.soa-modern.post-type-archive-tales_and_truth #primary { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.soa-modern .profile-flex { grid-template-columns: 1fr; }
	.soa-archive-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.soa-modern .soa-show-card { grid-template-columns: 175px minmax(0,1fr); }
	.soa-show-card .soa-round-link { grid-column: 2; }
	.soa-modern .soa-ticket-order { grid-template-columns: 1fr; }
	.soa-modern .soa-biography-page { grid-template-columns: 1fr; }
	.soa-biography-members__grid { grid-template-columns: 1fr; }
	.soa-contact-layout { grid-template-columns: 1fr; }
	.soa-contact-layout > aside { position: static; }
}

@media (max-width: 600px) {
	.soa-shell { width: calc(100% - 36px); }
	.soa-modern .main-navigation-container,
	.soa-modern .main-navigation-container.fixed-header,
	.soa-modern .main-navigation-container.sticky-header { top: 10px !important; width: calc(100% - 20px); height: 58px; padding: 0 10px 0 18px; }
	.soa-nav-brand { font-size: 23px; }
	.soa-modern .site-menu { min-height: 58px; }
	.soa-modern .site-menu .slide-menu { position: fixed; top: 78px; left: 10px; right: 10px; bottom: auto; width: auto; max-height: calc(100vh - 98px); padding: 12px; border-radius: 18px; background: white; box-shadow: 0 18px 45px rgba(25,20,55,.18); overflow-y: auto; pointer-events: none; }
	.soa-modern .site-menu.toggled .slide-menu { opacity: 1; pointer-events: auto; }
	.soa-modern .site-menu .slide-menu > ul { position: static; display: block; width: 100%; margin: 0; padding: 0; line-height: 1.4; }
	.soa-modern .site-menu .slide-menu > ul > li > a { padding: 13px 10px; border-bottom: 1px solid var(--soa-line); border-radius: 0; color: var(--soa-ink) !important; font-size: 12px; }
	.soa-modern .menu-toggle { display: block; }
	.soa-hero__content { justify-content: flex-end; padding-top: 130px; padding-bottom: 110px; }
	.soa-hero h1 { font-size: clamp(90px,36vw,150px); line-height: .78; }
	.soa-hero__copy { margin: 22px 0; font-size: 16px; }
	.soa-hero__side { display: none; }
	.soa-hero__actions { width: 100%; }
	.soa-button { flex: 1; min-width: 0; }
	.soa-section { padding: 88px 0; }
	.soa-section-heading { margin-bottom: 34px; }
	.soa-section-heading h2,
	.soa-contact-cta h2 { font-size: 54px; }
	.soa-news-grid { grid-template-columns: 1fr; gap: 38px; }
	.soa-news-card h3 { font-size: 17px; }
	.soa-video { padding: 88px 0 100px; }
	.soa-video h2 { font-size: 68px; }
	.soa-video__frame { box-shadow: 12px 12px 0 var(--soa-cyan); }
	.soa-video-picks { margin-top: 82px; padding-top: 44px; }
	.soa-video-picks__header { display: block; }
	.soa-video-picks__header > p { margin-top: 20px; }
	.soa-video-picks__grid { grid-template-columns: 1fr; gap: 30px; }
	.soa-release__cover { min-height: 440px; }
	.soa-release__cover > img { width: 72%; }
	.soa-release__copy { padding: 70px 24px; }
	.soa-home-biography { padding: 88px 0; }
	.soa-home-biography__visual { width: min(290px,88%); margin: 18px 0 34px; }
	.soa-home-biography__visual img { max-height: 180px; }
	.soa-home-biography__grid { gap: 10px; }
	.soa-home-biography__title h2 { font-size: 43px; }
	.soa-home-biography__copy > p { margin-top: 28px; font-size: 15px; }
	.soa-home-biography__members div { display: block; }
	.soa-home-biography__members small { display: block; margin-top: 5px; }
	.soa-contact-cta { padding: 100px 18px; }
	.soa-contact-cta h2 { font-size: 61px; }
	.soa-modern:not(.home) #masthead { min-height: 44vh; }
	.soa-modern:not(.home) .header-image-wrapper { height: 44vh !important; min-height: 350px; }
	.soa-modern:not(.home) #wrapper { width: calc(100% - 28px); padding: 60px 0; }
	.soa-modern.post-type-archive-tales_and_truth #primary { grid-template-columns: 1fr; }
	.soa-modern .event-content { grid-template-columns: 1fr; }
	.soa-modern-custom-view #wrapper.soa-inner-wrapper { width: calc(100% - 36px); padding: 72px 0 95px; }
	.soa-page-hero { min-height: 470px; padding-top: 100px; }
	.soa-page-hero__inner { min-height: 370px; justify-content: center; }
	.soa-page-hero h1 { font-size: clamp(64px,23vw,105px); line-height: .82; }
	.soa-page-hero__copy { position: static; width: 100%; margin-top: 42px; }
	.soa-archive-news-grid { grid-template-columns: 1fr; gap: 44px; }
	.soa-post-page { padding-top: 88px; }
	.soa-post-header { padding-top: 55px; padding-bottom: 42px; }
	.soa-back-link { margin-bottom: 40px; }
	.soa-post-cover { height: 72vw; }
	.soa-post-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 60px; padding-bottom: 80px; }
	.soa-post-share { flex-direction: row; }
	.soa-modern .soa-show-card { grid-template-columns: 1fr; gap: 30px; padding: 42px 0; }
	.soa-show-card .soa-round-link { grid-column: auto; justify-self: end; }
	.soa-show-card__index > span { right: 10px; }
	.soa-modern .soa-shows-list > article.shows,
	.soa-modern .soa-show-detail > article.shows { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
	.soa-modern .soa-show-detail > article.shows { padding: 24px 18px; }
	.soa-shows-list .event-content,
	.soa-show-detail .event-content { grid-column: 1; }
	.soa-shows-list .event-img,
	.soa-show-detail .event-img { display: none; }
	.soa-shows-list .event-img_sp,
	.soa-show-detail .event-img_sp { position: relative; display: block; margin-bottom: 26px; aspect-ratio: 1; overflow: hidden; padding: 0; background: linear-gradient(135deg,#eeebf5,#ded9ea); }
	.soa-shows-list .event-img_sp > a,
	.soa-show-detail .event-img_sp > a { position: absolute; inset: 10px; display: block; }
	.soa-shows-list .event-img_sp img,
	.soa-show-detail .event-img_sp img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; margin: 0; object-fit: contain; }
	.soa-shows-list .event-ul li,
	.soa-show-detail .event-ul li { grid-template-columns: 82px 1fr; }
	.soa-stream-ticket { align-items: flex-start; flex-direction: column; }
	.soa-modern .soa-ticket-order { margin-top: 80px; padding: 30px 18px; }
	.soa-ticket-order__intro h2 { font-size: 52px; }
	.soa-ticket-order__form { padding: 26px 18px; }
	.soa-show-gallery__grid { columns: 1; }
	.soa-show-gallery__item { padding: 10px; }
	.soa-show-gallery__item figcaption { grid-template-columns: auto 1fr; }
	.soa-show-gallery__item figcaption small { grid-column: 2; }
	.soa-works-grid { grid-template-columns: 1fr; gap: 65px; }
	.soa-modern .soa-release-detail { grid-template-columns: 1fr; }
	.soa-release-detail__art { position: static; }
	.soa-parent-tales-grid { grid-template-columns: 1fr; gap: 65px; }
	.soa-tales-detail .tales { grid-template-columns: 1fr; }
	.soa-tales-detail .tales-img { position: static; }
	.soa-biography-page header h1 { font-size: 40px; }
	.soa-biography-members { margin-top: 85px; padding: 75px 0 90px; }
	.soa-biography-member { min-height: 310px; }
	.soa-biography-statement { padding-top: 95px; }
	.soa-biography-statement h2 { font-size: 40px; }
	.soa-contact-layout { gap: 50px; }
	.soa-modern .soa-contact-form-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.soa-modern *, .soa-modern *::before, .soa-modern *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.soa-modern [data-soa-reveal] { opacity: 1; transform: none; }
}

/* Standalone theme shell (v2) */
.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; }
.soa-skip-link { position: fixed; z-index: 2000; top: 8px; left: 8px; padding: 10px 14px; background: var(--soa-ink); color: white !important; transform: translateY(-150%); }
.soa-skip-link:focus { transform: none; }
.soa-modern #masthead,
.soa-modern:not(.home) #masthead { min-height: 0; height: 0; padding: 0; }
.soa-modern .site-header { position: relative; z-index: 999; }
.soa-modern .main-navigation-container { font-family: "DM Sans",sans-serif; }
.soa-modern .menu-toggle { display: none; width: 42px; height: 42px; margin: 0; padding: 10px; border: 0; border-radius: 50%; background: var(--soa-ink); cursor: pointer; }
.soa-modern .menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 1px; margin: 5px 0; background: white; transition: transform .2s ease,opacity .2s ease; }
.soa-modern .site-menu.toggled .menu-toggle > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.soa-modern .site-menu.toggled .menu-toggle > span:nth-child(2) { opacity: 0; }
.soa-modern .site-menu.toggled .menu-toggle > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.soa-modern .slide-menu ul { list-style: none; }

.soa-site-footer { padding: 80px 0 34px; background: var(--soa-ink); color: white; }
.soa-site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: start; }
.soa-site-footer__brand { color: white !important; font-family: "DM Sans",sans-serif; font-size: clamp(54px,8vw,96px); font-weight: 700; letter-spacing: -.09em; }
.soa-site-footer__brand span { color: var(--soa-pink); }
.soa-site-footer__inner > div p { margin: 18px 0 0; color: rgba(255,255,255,.6); font-family: "Noto Sans JP",sans-serif; font-size: 12px; }
.soa-site-footer nav { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }
.soa-site-footer nav a { color: white !important; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.soa-site-footer__copy { grid-column: 1/-1; margin: 35px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

/* Self-contained live editor output */
.soa-structured-show .event-content { min-width: 0; }
.soa-structured-show .event-main { min-width: 0; }
.soa-structured-show .event-title__h { margin: 8px 0 24px; }
.soa-structured-show .event-ul li { display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--soa-line); }
.soa-structured-show .event-ul li > span:first-child { color: var(--soa-violet); font-family: "DM Sans",sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.soa-event-lines,.soa-event-info { min-width: 0; }
.soa-event-info img { max-width: 100%; height: auto; }
.soa-event-excerpt { margin-top: 26px; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; }
.soa-legacy-entry { overflow-wrap: anywhere; }
.soa-ticket-external { margin-top: 28px; padding: 22px; border-radius: 18px; background: #fff2f8; }
.soa-ticket-external p { margin: 0 0 12px; font-family: "Noto Sans JP",sans-serif; font-size: 12px; }
.soa-ticket-external__link { display: inline-flex; padding: 13px 18px; border-radius: 999px; background: var(--soa-pink); color: white !important; font-size: 11px; font-weight: 700; }

/* Native forms — no form plugin required */
.soa-native-form p { margin: 0 0 28px; }
.soa-native-form label { display: block; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: 13px; font-weight: 600; }
.soa-native-form label > span { color: var(--soa-pink); }
.soa-native-form input[type="text"],
.soa-native-form input[type="email"],
.soa-native-form input[type="tel"],
.soa-native-form select,
.soa-native-form textarea { display: block; width: 100%; margin-top: 9px; padding: 14px 0; border: 0; border-bottom: 1px solid var(--soa-line); border-radius: 0; outline: 0; background: transparent; color: var(--soa-ink); font: inherit; }
.soa-native-form textarea { min-height: 180px; resize: vertical; }
.soa-native-form input:focus,
.soa-native-form select:focus,
.soa-native-form textarea:focus { border-bottom-color: var(--soa-violet); box-shadow: 0 1px 0 var(--soa-violet); }
.soa-native-form__submit { display: block; width: 100%; padding: 18px 24px; border: 0; border-radius: 999px; background: var(--soa-ink); color: white; font-size: 11px; font-weight: 700; letter-spacing: .1em; cursor: pointer; }
.soa-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.soa-turnstile { max-width: 100%; margin: 0 0 26px; overflow: hidden; }
.soa-turnstile .cf-turnstile { max-width: 100%; }
.soa-form-notice { margin: 0 0 26px; padding: 15px 18px; border-radius: 12px; background: #dff8f4; color: var(--soa-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-tracklist { margin: 30px 0; padding: 0; list-style-position: inside; border-top: 1px solid var(--soa-line); }
.soa-tracklist li { padding: 11px 0; border-bottom: 1px solid var(--soa-line); }
.soa-work-date { color: var(--soa-violet); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.soa-work-body { margin: 35px 0; }
.soa-empty-state { min-height: 300px; text-align: center; }
.soa-empty-state > p { margin: 0 0 28px; font-family: "Noto Sans JP",sans-serif; }

@media (max-width: 900px) {
	.soa-modern .menu-toggle { display: block; }
	.soa-modern .site-menu .slide-menu { position: fixed; top: 92px; left: 18px; right: 18px; display: block; max-height: calc(100vh - 112px); padding: 12px; border-radius: 20px; background: white; box-shadow: 0 22px 60px rgba(25,20,55,.18); opacity: 0; visibility: hidden; overflow-y: auto; transform: translateY(-12px); transition: .22s ease; }
	.soa-modern .site-menu.toggled .slide-menu { opacity: 1; visibility: visible; transform: none; }
	.soa-modern .site-menu .slide-menu > ul { display: block; }
	.soa-modern .site-menu .slide-menu > ul > li > a { padding: 14px 12px; border-bottom: 1px solid var(--soa-line); border-radius: 0; font-size: 12px; }
}

@media (max-width: 600px) {
	.soa-site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
	.soa-site-footer__copy { grid-column: 1; }
	.soa-structured-show .event-ul li { grid-template-columns: 82px minmax(0,1fr); }
}

/* Shows — exact layout shared with the approved preview (v2.4) */
.soa-modern .soa-shows-list > article.show-card {
	position: relative;
	display: grid;
	grid-template-columns: 230px 180px minmax(0,1fr) 104px;
	gap: 34px;
	align-items: start;
	margin: 0;
	padding: 50px 0;
	border: 0;
	border-bottom: 1px solid var(--soa-line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.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-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-date { position: relative; min-width: 0; }
.show-date span { display: block; margin-bottom: 8px; color: var(--soa-violet); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.show-date strong { display: block; color: var(--soa-ink); font-size: clamp(28px,3vw,42px); line-height: 1.15; letter-spacing: -.045em; white-space: nowrap; }
.show-date i { position: absolute; z-index: -1; top: -30px; right: 0; color: rgba(20,19,32,.07); font-size: 90px; line-height: 1; font-style: normal; font-weight: 700; }
.show-main { min-width: 0; }
.show-main > p { margin: 0 0 10px; color: var(--soa-violet); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.show-main h2 { max-width: 680px; margin: 0 0 28px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(25px,3.2vw,43px); font-weight: 500; line-height: 1.45; letter-spacing: -.025em; }
.show-main dl { margin: 0; border-top: 1px solid var(--soa-line); }
.show-main dl div { display: grid; grid-template-columns: 90px minmax(0,1fr); padding: 12px 0; border-bottom: 1px solid var(--soa-line); }
.show-main dt { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.show-main dd { min-width: 0; margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: 12px; line-height: 1.8; overflow-wrap: anywhere; }
.round-link { align-self: center; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--soa-pink); color: white !important; 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(--soa-pink) !important; }
.show-ticket-external { color: var(--soa-ink) !important; }
.show-stream-link { padding: 11px 15px; border-radius: 999px; background: var(--soa-cyan); color: var(--soa-ink) !important; font-size: 9px; font-weight: 700; line-height: 1.35; letter-spacing: .08em; text-align: center; }
.show-extra-preview { margin-top: 24px; padding: 18px; background: white; }
.show-extra-preview > p { margin: 0 0 12px; color: var(--soa-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 { display: block; width: 100%; aspect-ratio: 1; padding: 5px; background: var(--soa-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; overflow-wrap: anywhere; }

.soa-back-button--top { margin-top: 0; margin-bottom: 58px; }
.soa-modern .soa-show-detail > article.show-detail-card {
	display: grid;
	grid-template-columns: minmax(300px,.85fr) 1.15fr;
	gap: clamp(45px,7vw,95px);
	align-items: start;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.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 { display: block; width: 100%; height: auto; max-height: 760px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(20,19,32,.15)); }
.show-detail-image > a > span:not(.show-image-placeholder) { display: inline-block; position: static; margin-top: 15px; padding-bottom: 3px; border-bottom: 1px solid; color: var(--soa-ink); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.show-detail-image .show-image-placeholder { position: static; min-height: 360px; }
.show-detail-copy { min-width: 0; padding-top: 15px; }
.show-detail-meta { display: flex; align-items: center; gap: 12px; color: #777280; font-size: 10px; letter-spacing: .08em; }
.show-live-pill { display: inline-flex; padding: 7px 13px; border-radius: 999px; background: var(--soa-cyan); color: var(--soa-ink); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.show-detail-venue { margin: 35px 0 10px; color: var(--soa-violet); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.show-detail-copy h1 { margin: 0 0 42px; color: var(--soa-ink); font-family: "Noto Sans JP",sans-serif; font-size: clamp(32px,4.6vw,64px); font-weight: 500; line-height: 1.4; letter-spacing: -.05em; }
.show-detail-copy dl { margin: 0 0 42px; border-top: 1px solid var(--soa-line); }
.show-detail-copy dl div { display: grid; grid-template-columns: 90px minmax(0,1fr); padding: 16px 0; border-bottom: 1px solid var(--soa-line); }
.show-detail-copy dt { color: #777280; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.show-detail-copy dd { min-width: 0; margin: 0; font-family: "Noto Sans JP",sans-serif; font-size: 13px; line-height: 1.9; overflow-wrap: anywhere; }
.show-detail-ticket-button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-width: 150px; padding: 15px 20px; border-radius: 999px; background: var(--soa-pink); color: white !important; font-size: 12px; font-weight: 700; letter-spacing: .08em; transition: transform .25s ease,background .25s ease; }
.show-detail-ticket-button:hover { background: #ff3e95; transform: translateY(-3px); }
.soa-show-detail > .soa-show-gallery { margin-top: 120px; padding-top: 0; border-top: 0; }
.soa-show-detail > .soa-show-gallery .soa-show-gallery__header { margin-bottom: 42px; padding-bottom: 18px; border-bottom: 1px solid var(--soa-line); }
.soa-show-detail > .soa-show-gallery .soa-show-gallery__header h3 { font-size: clamp(45px,7vw,88px); }
.soa-show-detail > .soa-show-gallery .soa-show-gallery__grid { column-gap: 24px; }
.soa-show-detail > .soa-show-gallery .soa-show-gallery__item { margin-bottom: 24px; padding: 16px; background: white; }

@media (max-width: 900px) {
	.soa-modern .soa-shows-list > article.show-card { grid-template-columns: 190px minmax(0,1fr); }
	.show-date,.show-main,.show-actions { grid-column: 2; }
	.show-actions { align-items: flex-start; }
	.soa-modern .soa-show-detail > article.show-detail-card { grid-template-columns: 1fr; }
	.show-detail-image { position: static; max-width: 620px; }
}

@media (max-width: 600px) {
	.soa-modern .soa-shows-list > article.show-card { grid-template-columns: 1fr; gap: 24px; padding: 42px 0; }
	.show-date,.show-main,.show-actions { grid-column: auto; }
	.show-actions { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; }
	.show-date i { right: 10px; }
	.show-main dl div,.show-detail-copy dl div { grid-template-columns: 70px minmax(0,1fr); }
	.show-detail-copy h1 { font-size: 36px; }
	.show-extra-preview > div { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.soa-show-detail > .soa-show-gallery { margin-top: 80px; }
}
