/* =================================================================
   Shoji Music Office — main.css
   Figma: ホーム • Desktop 10202:65069 / ホーム • Mobile 10202:65068
   Updated: 2026-06-19 (あかり · Figma寸法合わせ)
   ================================================================= */

/* ---- variables ---- */
:root {
  --content-max:   1280px;
  --pad-x-dt:      80px;
  --pad-x-sp:      20px;
  --header-h-dt:   73px;
  --header-h-sp:   64px;
  --header-h:      73px;

  /* section backgrounds */
  --bg-navbar:     #ffffff;
  --bg-hero-dt:    #fbfbff;
  --bg-schedule:   #fcfbff;
  --bg-news:       #fdfdfe;
  --bg-events:     #ffffff;
  --bg-videos:     #fdfdfe;
  --bg-footer:     #ffffff;

  /* status tag colors */
  --tag-consult-bg: #fef2c7;
  --tag-consult-fg: #944008;
  --tag-open-bg:    #dbe8fa;
  --tag-open-fg:    #1a57a1;
  --tag-plenty-bg:  #d1fae5;
  --tag-plenty-fg:  #176333;

  /* role tag colors */
  --role-arranging:  #3c78d8;
  --role-composing:  #c0392b;
  --role-planning:   #8e44ad;
  --role-performance:#27ae60;
  --role-goods:      #d97706;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
  max-width: 100vw;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- shared inner container ---- */
.sec-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ---- display helpers ---- */
.sp-only { display: none; }

@media (min-width: 769px) {
  html {
    font-size: 14px;
  }
}

/* =================================================================
   NAVBAR
   Figma Desktop: 1440×73, padding 16/64, bg #ffffff
   Nav links: 14px Medium #000000
   Contact btn: 124×41 fill #000000 text #ffffff
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg-navbar);
  height: var(--header-h-dt);
  padding: 0 var(--pad-x-dt);
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 16px 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  line-height: 21px;
  letter-spacing: 0;
  white-space: nowrap;
}

.global-nav {
  flex: 1 1 auto;
  margin-left: 0;
}
.global-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.global-nav li:last-child {
  margin-left: auto;
}

.global-nav li {
  position: relative;
}

.global-nav .nav-has-dropdown {
  z-index: 20;
}

.global-nav .nav-has-dropdown::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 14px;
}

.global-nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #000000;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.global-nav a:hover,
.global-nav a:active,
.global-nav a:focus,
.global-nav a:focus-visible,
.site-logo:hover,
.site-logo:active,
.site-logo:focus,
.site-logo:focus-visible {
  opacity: 0.55;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.global-nav .nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  flex-shrink: 0;
}

.nav-dropdown {
  position: absolute;
  left: -14px;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 128px;
  padding: 10px 8px 8px;
  border: 1px solid #e7e1d8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15,13,41,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  color: #1d1a17;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #f5f1ea;
  opacity: 1;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.is-dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header a,
.site-header a:hover,
.site-header a:active,
.site-header a:focus,
.site-header a:focus-visible {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
  border-bottom: 0 !important;
}

.site-header a::before,
.site-header a::after {
  content: none !important;
  display: none !important;
}

.site-header .nav-has-dropdown > a::after {
  content: "" !important;
  display: inline-block !important;
  width: 7px;
  height: 7px;
  margin-left: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  vertical-align: unset;
}

/* Contact button: 124×41 */
.nav-contact {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 41px;
  background: #000000;
  color: #ffffff !important;
  border-radius: 0;
  font-weight: 500;
  opacity: 1 !important;
}
.nav-contact:hover,
.nav-contact:active,
.nav-contact:focus,
.nav-contact:focus-visible {
  background: #333333 !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
}

/* Mobile contact button (inside header, left side) */
.nav-mobile-contact {
  display: none;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 32px;
  padding: 4px 20px;
  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #000000;
  white-space: nowrap;
}
.nav-mobile-contact:hover { opacity: 0.75; text-decoration: none; }

/* hamburger — hidden on desktop */
.hamburger {
  display: none;
  position: fixed;
  top: 10px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(29,26,23,0.92);
  box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 110;
}
.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.site-header.is-open .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.site-header.is-open .hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile nav drawer */
.mobile-nav {
  position: absolute;
  top: var(--header-h-sp);
  left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-nav.is-open { max-height: 480px; }
.mobile-nav ul { padding: 12px 0 20px; }
.mobile-nav li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-nav a {
  display: block;
  padding: 14px var(--pad-x-sp);
  color: #000000;
  font-size: 1rem;
}

/* =================================================================
   HERO
   Figma Desktop: bg #fbfbff, h413, padding-top 112px, padding-bottom 27px
   Content: sub-text + "庄司 燦 / Akira Shoji" + CTA buttons
   CTA: 公演情報 112×48 black / お問い合わせ 144×48 outline, gap 16
   Figma Mobile: bg #ffffff, h112, padding 15/20/24/20
   Mobile: 庄司 燦 44px Bold #1d1a17 / Akira Shoji 16px Medium #6c6258
   ================================================================= */
.hero {
  background: var(--bg-hero-dt);
  padding: calc(var(--header-h-dt) + 112px) var(--pad-x-dt) 27px;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 12px;
}

/* shown on mobile only */
.hero-latin {
  display: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 22px;
  color: #6c6258;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

/* Primary CTA: 112×48, fill #000000, stroke #000000 */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 48px;
  padding: 12px 24px;
  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #000000;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-hero-primary:hover { opacity: 0.7; text-decoration: none; }

/* Secondary CTA: 144×48, transparent fill, stroke #000000 */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 48px;
  padding: 12px 24px;
  background: transparent;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #000000;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-hero-secondary:hover { background: #000000; color: #ffffff; text-decoration: none; }

/* =================================================================
   SCHEDULE
   Figma: bg #fcfbff, h414, padding 72/64/72/64
   Heading: 56px Bold, shadow radius4 y2 #000 10%
   Desc: 18px Regular
   Bar: w892 h80 radius22 fill #fff stroke #d1ccf0 shadow y10 radius28 #0f0d29 8%
   Bar-label: 18px Bold #545454, min-w144
   Tags: h44 radius999 18px Bold, gap20
   Buttons: h48 radius999 gap16
   ================================================================= */
.schedule-section {
  background: var(--bg-schedule);
  padding: 72px var(--pad-x-dt);
}

.schedule-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.10);
  margin-bottom: 16px;
}

.schedule-desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 32px;
  max-width: 919px;
}

.schedule-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #d1ccf0;
  box-shadow: 0 10px 28px rgba(15,13,41,0.08);
  max-width: 892px;
  margin-bottom: 28px;
}

.schedule-bar-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #545454;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 144px;
}

.schedule-tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.schedule-tag {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.88);
}
.schedule-tag--consult { background: var(--tag-consult-bg); color: var(--tag-consult-fg); }
.schedule-tag--open    { background: var(--tag-open-bg);    color: var(--tag-open-fg); }
.schedule-tag--plenty  { background: var(--tag-plenty-bg);  color: var(--tag-plenty-fg); }

.schedule-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* pill buttons (schedule CTAs) */
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 48px;
  padding: 12px 32px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-dark-pill:hover { opacity: 0.75; text-decoration: none; }

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 48px;
  padding: 12px 32px;
  background: transparent;
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 999px;
  border: 1px solid #d1d1d1;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline-pill:hover { background: #1c1c1c; color: #ffffff; border-color: #1c1c1c; text-decoration: none; }

/* =================================================================
   NEWS
   Figma: bg #fdfdfe, h858, padding 42/64/33/64
   Heading: "最新情報" 56px Bold, shadow radius4 y2 #000 12%
   Cards: clean list, border-bottom, compact rows
   ================================================================= */
.news-section {
  background: var(--bg-news);
  padding: 42px var(--pad-x-dt) 33px;
}

.section-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 32px;
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-header-row .section-heading { margin-bottom: 0; }

.link-all {
  font-size: 0.8125rem;
  color: #666666;
  white-space: nowrap;
  flex-shrink: 0;
}
.link-all:hover { color: #000000; text-decoration: none; }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.news-card {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e3;
}
.news-card:first-child { border-top: 1px solid #e5e5e3; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.news-date {
  font-size: 0.8125rem;
  color: #666666;
  white-space: nowrap;
  font-feature-settings: 'tnum';
}

.cat-tag {
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 2px;
  background: #eeeeee;
  color: #444444;
  white-space: nowrap;
}
.cat-tag--release { background: #ddeeff; color: #1a5fa8; }
.cat-tag--goods   { background: #fef3e2; color: #a05c00; }
.cat-tag--sheet   { background: #edf4e8; color: #3f6f27; }
.cat-tag--site    { background: #eafaf1; color: #1e8449; }

.news-title {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}
.news-title a:hover { text-decoration: underline; }

/* link-more — stroke button per Figma mobile */
.link-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 18px;
  border: 1px solid #1d1a17;
  color: #1d1a17;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.link-more:hover { background: #1d1a17; color: #ffffff; text-decoration: none; }

/* =================================================================
   EVENTS (次の公演)
   Figma: bg #ffffff, h1691, padding 28/64/68/64
   Heading: "次の公演" 48px Bold, shadow
   Grid: 2 cols desktop, row-gap 48, col-gap 32
   Card: fill #fffdf8, stroke #e4ded4, radius 14
   ================================================================= */
.events-section {
  background: var(--bg-events);
  padding: 28px var(--pad-x-dt) 68px;
}

.events-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.events-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
  margin: 0;
}

.events-archive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 44px;
  padding: 10px 22px;
  border: 1px solid #1d1a17;
  border-radius: 999px;
  color: #1d1a17;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  white-space: nowrap;
}

.events-archive-button::after {
  content: '→';
  margin-left: 8px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
  margin-bottom: 48px;
}

.event-card {
  background: #fffdf8;
  border: 1px solid #e4ded4;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-visual-placeholder,
.concerts-page-visual-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px dashed #d8d2c8;
  border-radius: 10px;
  background: #f8f5ef;
  color: #8a8178;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-date {
  font-size: 0.8125rem;
  color: #666666;
  font-feature-settings: 'tnum';
}

.role-tag {
  display: inline-block;
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 2px;
  color: #fff;
  white-space: nowrap;
}
.role-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.role-tag--arranging   { background: var(--role-arranging); }
.role-tag--composing   { background: var(--role-composing); }
.role-tag--planning    { background: var(--role-planning); }
.role-tag--performance { background: var(--role-performance); }
.role-tag--goods       { background: var(--role-goods); }
.role-tag--other       { background: #666666; }

.event-title {
  font-size: 1.125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
.event-title a:hover { text-decoration: underline; }

.event-venue {
  font-size: 0.875rem;
  color: #666666;
}

.events-footer { }

/* =================================================================
   VIDEOS (最新動画)
   Figma: bg #fdfdfe, h896, padding 52/64/44/64
   Heading: "最新動画" 48px Bold
   Video title: 14px Medium #1a1a1a
   Mobile thumbnails: w260×h146, radius 12, stroke #e4ded4
   ================================================================= */
.videos-section {
  background: var(--bg-videos);
  padding: 52px var(--pad-x-dt) 44px;
}

.videos-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
  margin-bottom: 32px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.video-item { }

.videos-grid:not(.is-expanded) .video-item.is-extra {
  display: none;
}

.video-more-button[hidden] {
  display: none !important;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000000;
  border: 1px solid #e4ded4;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-title {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 3em;
}

.videos-footer { }

.video-releases-link {
  display: none;
}

/* =================================================================
   CONCERT ARCHIVE (公演情報)
   Desktop intentionally uses a compact 960px content rail.
   ================================================================= */
/* =================================================================
   NEWS PAGE (お知らせ)
   Figma frames: 10202:65067 desktop / 10202:65066 mobile
   ================================================================= */
.news-page {
  background: #ffffff;
}

.news-page-section {
  min-height: 1135px;
  padding: 48px 80px 64px;
  background: #fdfdfe;
}

.news-page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.news-page-header {
  width: 768px;
  max-width: 100%;
  margin-bottom: 12px;
}

.news-page-header h1 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.news-page-header p {
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
}

.news-filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
}

.news-filter-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}

.news-filter-chips a.is-active {
  background: #000000;
  color: #ffffff;
  font-weight: 700;
}

.news-page-list {
  width: 100%;
  overflow: hidden;
}

.news-page-row {
  min-height: 157px;
  padding: 24px;
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
}

.news-page-row.is-hidden {
  display: none !important;
}

.news-page-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 28px;
  margin-bottom: 12px;
}

.news-page-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 28px;
  padding: 4px 8px;
  background: #ededed;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.news-page-tag.is-empty {
  color: transparent;
}

.news-page-meta time {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.news-page-row h2 {
  margin-bottom: 12px;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.news-page-excerpt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #000000;
  font-size: 16px;
  line-height: normal;
}

.news-page-excerpt p {
  width: 1092px;
  max-width: calc(100% - 140px);
}

.news-page-excerpt:not(.has-link) p {
  width: 100%;
  max-width: 100%;
}

.news-page-excerpt a {
  flex: 0 0 116px;
  text-align: right;
  white-space: nowrap;
}

.news-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 23px;
  cursor: pointer;
}

/* =================================================================
   RELEASES PAGE (リリース・配信)
   Figma frames: 10202:65057 desktop / 10202:65056 mobile
   ================================================================= */
.releases-page {
  background: #ffffff;
}

.releases-body {
  min-height: 2285px;
  padding: 64px 80px 88px;
  background: #fdfdfe;
}

.releases-container {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.releases-intro {
  margin-bottom: 17px;
}

.releases-intro h1 {
  margin: 0 0 16px;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.releases-intro p {
  width: 760px;
  max-width: 100%;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}

.release-controls-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  width: 960px;
  max-width: 100%;
  margin-top: 17px;
  padding: 18px 24px;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 14px rgba(15,13,41,0.05);
}

.release-control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-control-group > span {
  color: #6f6a64;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.release-filter-chips,
.release-year-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.release-filter-chips button,
.release-year-chips button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #d8cec2;
  border-radius: 999px;
  background: #fbfaf8;
  color: #1d1a17;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

.release-filter-chips button.is-active,
.release-year-chips button.is-active {
  border-color: #1d1a17;
  background: #1d1a17;
  color: #ffffff;
  font-weight: 700;
}

.release-mobile-controls {
  display: none;
}

.release-list {
  width: 960px;
  max-width: 100%;
  margin-top: 18px;
  padding: 24px 24px 0;
  border-top: 1px solid #d8dde4;
  background: #ffffff;
}

.release-row {
  display: grid;
  grid-template-columns: 144px 704px;
  column-gap: 24px;
  position: relative;
  min-height: 213px;
  padding: 63px 0 24px;
  border-bottom: 1px solid #d8dde4;
}

.release-row.is-extra,
.release-row.is-filter-hidden {
  display: none;
}

.release-list.is-expanded .release-row.is-extra:not(.is-filter-hidden) {
  display: grid;
}

.release-row-top-tags {
  position: absolute;
  left: 0;
  top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: min(680px, calc(100% - 168px));
}

.release-row-top-tags .concerts-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.release-row-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f1ea;
  color: #777f8b;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.release-row[data-release-type="dvd"] .release-row-tag {
  border-color: #d8cff7;
  background: #f2efff;
  color: #5f4ba5;
}

.release-row[data-release-type="streaming"] .release-row-tag {
  border-color: #cde7f2;
  background: #eef8fc;
  color: #3d6f87;
}

.release-row[data-release-type="youtube"] .release-row-tag {
  border-color: #ffd1d1;
  background: #fff0f0;
  color: #b42323;
}

.release-row[data-release-type="cd"] .release-row-tag {
  border-color: #cfe8d4;
  background: #eef8f0;
  color: #357a46;
}

.release-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  width: 144px;
  height: 81px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #e7e1d8;
  border-radius: 10px;
  background: #f5f1ea;
}

.release-thumb.has-image {
  height: auto;
  min-height: 81px;
  align-self: start;
  overflow: visible;
  background: #ffffff;
}

.release-row[data-release-type="dvd"] .release-thumb:not(.has-image) {
  border-color: #d8cff7;
  background: linear-gradient(135deg, #f8f6ff 0%, #ede8ff 100%);
}

.release-row[data-release-type="streaming"] .release-thumb:not(.has-image) {
  border-color: #cde7f2;
  background: linear-gradient(135deg, #f5fbfe 0%, #e4f4fb 100%);
}

.release-row[data-release-type="cd"] .release-thumb:not(.has-image) {
  border-color: #cfe8d4;
  background: linear-gradient(135deg, #f5fbf6 0%, #e4f3e7 100%);
}

.release-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 213px;
  object-fit: contain;
  object-position: center top;
}

.release-thumb span {
  color: #495362;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.release-row-content {
  grid-column: 2;
}

.release-row-content h2 {
  margin: 0 0 10px;
  color: #14171a;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.release-row-meta {
  margin-bottom: 10px;
}

.release-row-meta p {
  margin: 0;
  color: #757f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.release-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.release-row-links a,
.release-row-link,
.release-video-link,
.release-video-links a {
  color: #4a73a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.smo-link-ended-label {
  text-decoration: line-through;
}

.release-row-link--ended,
.concert-detail-button--ended,
.concert-detail-mobile-related-link.release-row-link--ended {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  color: #9aa3ad;
  cursor: default;
  pointer-events: none;
}

.concert-detail-button--ended {
  border-color: #d8dde4;
  background: #f5f7fa;
}

.smo-link-ended-status {
  text-decoration: none;
  color: #757f8c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.release-load-more,
.release-video-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 47px;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #1c1c1c;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}

.release-load-more[hidden],
.release-video-more[hidden] {
  display: none;
}

.release-videos {
  margin-top: 45px;
  padding: 24px;
  background: #ffffff;
}

.release-videos h2 {
  margin: 0 0 20px;
  color: #14171a;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.release-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-header + * {
  margin-top: 0;
}

.release-video-card {
  min-height: 352px;
  padding: 24px;
  border: 1px solid #e7e1d8;
  border-radius: 4px;
  background: #ffffff;
}

.release-video-card.is-extra {
  display: none;
}

.release-video-card.is-extra.is-visible {
  display: block;
}

.release-video-grid.is-expanded .release-video-card.is-extra {
  display: block;
}

.release-video-thumb {
  position: relative;
  display: block;
  width: 260px;
  max-width: 100%;
  height: 146px;
  overflow: hidden;
  border: 1px solid #e7e1d8;
  border-radius: 10px;
  background: #f5f1ea;
}

.release-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.release-video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 9px rgba(0,0,0,0.16);
}

.release-video-thumb span::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #4a73a6;
}

.release-video-card h3 {
  margin: 14px 0 8px;
  color: #14171a;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 48px;
}

.release-video-card p {
  margin: 0 0 10px;
  color: #757f8c;
  font-size: 13px;
  line-height: 20px;
}

.release-video-links {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 6px solid #d8dde4;
}

/* =================================================================
   CONCERTS PAGE (公演情報)
   Figma frames: 10202:65065 desktop / 10202:65064 mobile
   ================================================================= */
.concerts-page {
  background: #ffffff;
}

.concerts-page-section {
  min-height: 1628px;
  padding: 48px 80px 64px;
  background: #fdfdfe;
}

.concerts-page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.concerts-page-header {
  width: 768px;
  max-width: 100%;
  margin-bottom: 20px;
}

.concerts-page-header h1 {
  margin: 0;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.concerts-archive-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 20px;
  padding: 12px 24px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}

.concerts-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 616px);
  gap: 48px 32px;
}

.concerts-empty {
  width: min(100%, 616px);
  padding: 40px 32px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
}

.concerts-empty p {
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.concerts-page-card {
  width: 616px;
  min-height: 639px;
  height: auto;
  padding: 24px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
}

.concerts-page-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 568px;
  height: 340px;
  overflow: hidden;
  background: #ececf0;
}

.concerts-page-visual img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.concerts-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 110px;
  padding: 12px 4px;
  background: #ffffff;
  color: #1a1a1a;
  text-align: center;
}

.concerts-date-badge span {
  display: none;
}

.concerts-date-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.concerts-date-badge small {
  display: block;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.concerts-page-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 560px;
  padding-top: 16px;
}

.concerts-readable-date {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.concerts-role-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 8px;
  background: #eeeeee;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.concerts-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.concerts-role-tag--arranging { background: #eaf1ff; color: #2e47ad; }
.concerts-role-tag--composing { background: #fff0ea; color: #9a4a24; }
.concerts-role-tag--planning { background: #f4eaff; color: #74339a; }
.concerts-role-tag--performance { background: #eaf7ee; color: #28703f; }
.concerts-role-tag--goods { background: #fff4df; color: #9a5b00; }
.concerts-role-tag--other { background: #eeeeee; color: #000000; }

.concerts-page-card h2 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.concerts-subtitle,
.event-subtitle {
  margin: 4px 0 0;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.concerts-venue,
.concerts-time,
.concerts-note {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 24px;
}

.concerts-note {
  color: #595959;
}

.concerts-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 8px;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}

.concerts-detail-link span {
  font-size: 24px;
  line-height: 1;
}

.concerts-cta {
  display: none;
}

/* =================================================================
   PAST CONCERTS PAGE (過去公演)
   Figma frames: 10202:65061 desktop / 10202:65060 mobile
   ================================================================= */
.past-concerts-page {
  background: #fdfdfe;
}

.past-concerts-header {
  padding: 48px 64px 0;
  background: #fbfbff;
  overflow: hidden;
}

.past-concerts-header-inner {
  width: 1312px;
  max-width: 100%;
  margin: 0 auto;
}

.past-concerts-header h1 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.past-concerts-header p {
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
}

.past-years {
  padding: 20px 80px 18px;
  background: #fdfdfe;
}

.past-years-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.past-years-copy {
  width: 768px;
  max-width: 100%;
}

.past-years-heading {
  margin: 0 0 8px;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.past-years-desc {
  margin: 0;
  color: #737373;
  font-size: 14px;
  line-height: 1.5;
}

.past-controls-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, auto) auto;
  align-items: end;
  gap: 18px;
  width: min(820px, 100%);
  padding: 22px 24px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
  text-align: left;
}

.past-year-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.past-control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.past-year-select-wrap span,
.past-control-summary-label {
  color: #737373;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.past-year-select {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 18px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #fffdf8;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.past-year-select-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.past-year-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.past-year-link {
  color: #4a73a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.past-year-link--next {
  margin-left: auto;
}

.past-year-link.is-disabled {
  color: #a7adc0;
  pointer-events: none;
}

.past-bottom-year-nav {
  width: min(820px, 100%);
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
}

.past-bottom-year-nav .past-year-select-stack {
  gap: 12px;
}

.past-bottom-year-nav .past-year-select-wrap {
  width: fit-content;
  max-width: 100%;
}

.past-bottom-year-nav .past-year-select {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  padding: 6px 28px 6px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  field-sizing: content;
}

.past-filter-chips,
.past-sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.past-filter-chips button,
.past-sort-options button {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #fffdf8;
  color: #5a5048;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
}

.past-filter-chips button.is-active,
.past-sort-options button.is-active {
  border-color: #1d1a17;
  background: #1d1a17;
  color: #fffdf8;
}

@media (min-width: 769px) {
  .past-controls-advanced {
    display: grid;
    grid-column: 2 / 4;
    grid-template-columns: minmax(280px, auto) auto;
    gap: 24px;
    align-items: start;
  }

  .past-controls-advanced > summary {
    display: none;
  }

  .past-controls-advanced-inner {
    display: contents;
  }
}

.past-archive {
  padding: 8px 80px 32px;
  background: #fdfdfe;
}

.past-archive-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.past-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 24px;
  background: #ffffff;
}

.past-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #fafafc;
}

.past-row.is-extra {
  display: flex;
}

.past-row.is-filter-hidden {
  display: none;
}

.past-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  overflow: hidden;
}

.past-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.past-role {
  display: inline-block;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.past-role::before {
  content: '【';
}

.past-role::after {
  content: '】';
}

.past-role--arranging {
  color: #3c78d8;
}

.past-role--composing {
  color: #d86b3c;
}

.past-role--performance {
  color: #93c47d;
}

.past-role--planning {
  color: #ff00ff;
}

.past-role--goods {
  color: #d97706;
}

.past-row time {
  flex: 0 0 auto;
  min-width: 88px;
  color: #404040;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.past-title-row {
  display: block;
}

.past-row h3.past-concert-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.past-subtitle {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.past-title-text {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.4;
}

.past-label {
  margin: 0;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.past-songs {
  margin: 0;
}

.past-songs li {
  color: #404040;
  font-size: 14px;
  line-height: 1.75;
}

.past-songs li::before {
  content: '・';
}

.past-songs li.is-hoka-only::before,
.past-songs.is-no-auto-bullets li::before {
  content: none;
}

.past-songs li.is-past-song-mobile-hoka {
  display: none;
}

.past-detail {
  color: #4a73a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.past-detail-mobile {
  display: none;
}

.past-load-more {
  display: none;
}

/* =================================================================
   CONCERT DETAIL PAGE (公演詳細)
   Figma frames: 10202:65059 desktop / 10202:65058 mobile
   ================================================================= */
.concert-detail-page {
  background: #fdfdfe;
}

.concert-detail-hero {
  position: relative;
  padding: 20px 80px 34px;
  background: #fbfbff;
}

.concert-detail-back {
  display: inline-block;
  margin-bottom: 22px;
  color: #474752;
  font-size: 14px;
  line-height: 22px;
}

.concert-detail-hero > .concert-detail-back {
  display: block;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto 22px;
}

.concert-detail-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  max-width: 100%;
  min-height: 172px;
  margin: 0 auto;
  padding: 36px 48px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 12px rgba(13,15,26,0.09);
}

.concert-detail-hero-copy {
  min-width: 0;
}

.concert-detail-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.concert-detail-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 30px;
  padding: 5px 20px;
  border: 1px solid #bdccf5;
  border-radius: 999px;
  background: #dee8ff;
  color: #2e47ad;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}
.concert-detail-role--arranging { border-color: #bdccf5; background: #dee8ff; color: #2e47ad; }
.concert-detail-role--composing { border-color: #f2cdbd; background: #fff0ea; color: #9a4a24; }
.concert-detail-role--planning { border-color: #e1c7f3; background: #f4eaff; color: #74339a; }
.concert-detail-role--performance { border-color: #bee3c8; background: #eaf7ee; color: #28703f; }
.concert-detail-role--goods { border-color: #f4d8a8; background: #fff4df; color: #9a5b00; }
.concert-detail-role--other { border-color: #d8d8d8; background: #eeeeee; color: #333333; }

.concert-detail-hero h1 {
  margin: 14px 0 0;
  color: #0a0a0d;
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
}

.concert-detail-subtitle {
  margin: 8px 0 0;
  color: #555;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.concert-detail-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex: 0 0 min(320px, 38%);
}

.concert-detail-release-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}

.concert-detail-release-action-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  text-align: right;
}

.concert-detail-release-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f1ea;
  color: #777f8b;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.concert-detail-release-type--dvd {
  background: #f2efff;
  color: #5f4ba5;
}

.concert-detail-release-type--streaming {
  background: #eef8fc;
  color: #3d6f87;
}

.concert-detail-release-type--youtube {
  background: #fff0f0;
  color: #b42323;
}

.concert-detail-release-type--cd {
  background: #eef8f0;
  color: #357a46;
}

.concert-detail-release-action-title {
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.concert-detail-release-action-button {
  width: auto;
  min-width: 144px;
  max-width: 100%;
  padding: 0 18px;
  white-space: nowrap;
}

.concert-detail-release-action.is-ended .concert-detail-release-action-title {
  color: #9aa3ad;
}

.concert-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.concert-detail-button--primary {
  background: #0d0d0d;
  color: #ffffff;
}

.concert-detail-button--secondary {
  border: 1px solid #d1d1d1;
  background: #ffffff;
  color: #141414;
}

.concert-detail-content {
  padding: 40px 80px 72px;
  background: #fdfdfe;
}

.concert-detail-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.concert-detail-overview,
.concert-detail-section {
  width: 960px;
  max-width: 100%;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 12px rgba(13,15,26,0.09);
}

.concert-detail-overview {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 32px;
}

.concert-detail-overview--no-flyer {
  grid-template-columns: 1fr;
}

.concert-detail-flyer {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5f0;
  border-radius: 18px;
  background: #ececf0;
  color: #737a85;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
  display: block;
  width: fit-content;
  max-width: 100%;
}

.concert-detail-flyer img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.concert-detail-flyer-hint {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(10, 10, 13, 0) 0%, rgba(10, 10, 13, 0.72) 100%);
  color: #fffdf8;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.concert-detail-flyer--desktop {
  display: block;
  width: min(280px, 100%);
  align-self: start;
}

.concert-detail-flyer--desktop img {
  width: 100%;
  max-height: min(560px, 72vh);
}

.concert-detail-flyer strong {
  display: none;
}

.concert-detail-flyer span:not(.concert-detail-flyer-hint) {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
}

.concert-detail-flyer--mobile {
  display: none;
}

.concert-flyer-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.concert-flyer-modal.is-open {
  display: flex;
}

.concert-flyer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 13, 0.72);
}

.concert-flyer-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concert-flyer-modal__viewport {
  /* 初期画像サイズ（.dialog img の max-width/max-height）に fit-content で合わせず、
     画面いっぱいのクリップ範囲を確保してズーム時に余白側へはみ出せるようにする */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97vw;
  height: 97vh;
  overflow: hidden;
  border-radius: 16px;
}

.concert-flyer-modal__dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1200px, 96vw);
  max-height: 96vh;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  object-fit: contain;
  transform-origin: 0 0;
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  .concert-flyer-modal__dialog img {
    cursor: zoom-in;
  }

  .concert-flyer-modal__dialog img.is-zoomed {
    cursor: grab;
  }

  .concert-flyer-modal__dialog img.is-panning {
    cursor: grabbing;
  }
}

.concert-flyer-modal__close {
  /* dialog/viewport の大きさに関わらず常に画面右上に固定表示する */
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #141414;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.is-flyer-modal-open {
  overflow: hidden;
}

.concert-detail-overview-card {
  padding: 24px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 12px rgba(13,15,26,0.09);
}

.concert-detail-eyebrow {
  margin: 0 0 16px;
  color: #6b52e0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 16px;
}

.concert-detail-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concert-detail-schedule-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #e0e0ed;
  border-radius: 18px;
}

.concert-detail-schedule-card--no-city {
  grid-template-columns: 1fr;
}

.concert-detail-city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  border-radius: 999px;
  background: #f0f5ff;
  color: #3d29a3;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.concert-detail-schedule-body {
  min-width: 0;
}

.concert-detail-date-row {
  display: grid;
  grid-template-columns: 142px 1fr;
  column-gap: 8px;
  row-gap: 2px;
  color: #141414;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.concert-detail-date-row span:not(:first-of-type) {
  grid-column: 2;
}

.concert-detail-date-row .concert-detail-date-mobile,
.concert-detail-date-row .concert-detail-time-mobile {
  display: none;
}

.concert-detail-date-row--extra {
  margin-top: 6px;
}

.concert-detail-schedule-body p {
  margin: 6px 0 0;
  color: #616161;
  font-size: 13px;
  line-height: 20px;
}

.concert-detail-credits {
  margin-top: 16px;
  color: #616161;
  font-size: 13px;
  line-height: 22px;
}

.concert-detail-credits p {
  margin: 0;
}

.concert-detail-section {
  padding: 24px;
}

.concert-detail-section h2 {
  margin: 0 0 24px;
  color: #0f0f0f;
  font-size: 28px;
  font-weight: 700;
  line-height: 43px;
}

.concert-detail-inner-card,
.concert-detail-goods-card {
  border: 1px solid #e0e0ed;
  border-radius: 18px;
  background: #ffffff;
}

.concert-detail-inner-card {
  padding: 26px 32px;
}

.concert-detail-movie-list {
  display: grid;
  gap: 20px;
}

.concert-detail-movie-card {
  padding: 24px;
  border: 1px solid #e0e0ed;
  border-radius: 18px;
  background: #ffffff;
}

.concert-detail-movie-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #f5f5f7;
}

.concert-detail-movie-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.concert-detail-movie-card h3 {
  margin: 16px 0 6px;
  color: #141414;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.concert-detail-movie-card p {
  margin: 0;
  color: #616161;
  font-size: 13px;
  line-height: 22px;
}

.concert-detail-streaming-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concert-detail-streaming-card .concert-detail-label {
  margin: 0;
}

.concert-detail-streaming-description {
  margin: 0;
  color: #474747;
  font-size: 14px;
  line-height: 24px;
}

.concert-detail-streaming-link {
  align-self: flex-start;
  margin-top: 2px;
  color: #4d40e5;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.concert-detail-label {
  margin: 0 0 14px;
  color: #4d40e5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 18px;
}

.concert-detail-inner-card ul,
.concert-detail-goods-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.concert-detail-inner-card li {
  color: #1f1f24;
  font-size: 15px;
  line-height: 29px;
}

.concert-detail-inner-card li::before,
.concert-detail-goods-card li::before {
  content: '・';
}

.concert-detail-program-list li::before {
  content: '・';
}

.concert-detail-program-list.is-no-auto-bullets li::before {
  content: none;
}

.concert-detail-program-list li.is-program-group {
  margin-top: 18px;
  color: #6b52e0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 18px;
}

.concert-detail-program-list li.is-program-group:first-child {
  margin-top: 0;
}

.concert-detail-program-list li.is-program-group::before {
  content: none;
}

.concert-detail-goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concert-detail-goods-card {
  min-height: 0;
  padding: 22px;
}

.concert-detail-goods-note {
  margin: -12px 0 22px;
  color: #616161;
  font-size: 13px;
  line-height: 22px;
}

.concert-detail-goods-card p {
  margin: 0 0 14px;
  color: #6b52e0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 18px;
}

.concert-detail-goods-card h3 {
  margin: 0 0 14px;
  color: #141414;
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
}

.concert-detail-goods-card .concert-detail-goods-assignment {
  margin: -4px 0 10px;
  color: #4d40e5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 18px;
}

.concert-detail-goods-price {
  margin: -4px 0 12px;
  color: #141414;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.concert-detail-goods-link {
  display: inline-flex;
  margin-top: 14px;
  color: #4d40e5;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.concert-detail-goods-link--section {
  margin: -8px 0 22px;
}

.concert-detail-contact-link {
  margin: 14px 0 0;
}

.concert-detail-contact-link a {
  display: inline-flex;
  color: #4d40e5;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.concert-detail-goods-card li {
  color: #474747;
  font-size: 13px;
  line-height: 22px;
}

.concert-detail-mobile-related {
  display: none;
}

.concert-detail-bottom-nav {
  width: 960px;
  max-width: 100%;
}

.concert-detail-back--bottom {
  margin: 0;
}

.concert-detail-mobile-only,
.concert-detail-goods-summary {
  display: none;
}

/* =================================================================
   PROFILE PAGE
   Figma Desktop: プロフィール • Desktop 10202:65055
   Figma Mobile: プロフィール • Mobile 10202:65054
   ================================================================= */
.profile-page {
  background: #fbfbff;
}

.profile-body {
  display: flex;
  justify-content: center;
  padding: 40px 80px 48px;
  background: #fbfbff;
}

.profile-column {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 960px;
  max-width: 100%;
}

.profile-hero-card {
  display: block;
  overflow: hidden;
  padding: 24px;
}

.profile-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 280px;
  float: left;
  width: 280px;
  height: 360px;
  margin: 0 32px 24px 0;
  background: #e6e6e6;
}

.profile-portrait span {
  color: #737373;
  font-size: 13px;
  line-height: 24px;
}

.profile-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  min-height: 164px;
  padding: 16px 16px 24px;
}

.profile-identity h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  line-height: 49px;
}

.profile-identity p {
  margin: 0;
  color: #737373;
  font-size: 16px;
  line-height: 22px;
}

.profile-social {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 29px;
}

.profile-line-chip {
  display: none;
}

.profile-bio {
  min-width: 0;
  padding: 0 16px 16px;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 24px;
}

.profile-bio p {
  margin: 0 0 16px;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

.profile-bio-lead {
  color: #737373;
  font-size: 16px;
  line-height: 22px;
}

.profile-bio p:nth-child(5) {
  clear: left;
}

.profile-groups-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid #d9d9e6;
  border-radius: 16px;
  background: #ffffff;
}

.profile-groups-link p {
  margin: 0 0 6px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.profile-groups-link span {
  display: block;
  color: #737373;
  font-size: 14px;
  line-height: 22px;
}

.profile-groups-link a {
  flex: 0 0 auto;
  color: #2c4a7c;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.profile-info {
  padding: 24px;
  border-top: 1px solid #d9d9e6;
}

.profile-info-row {
  display: flex;
  gap: 48px;
  padding: 24px;
}

.profile-info-column {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 22px;
}

.profile-info-column h2 {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.profile-info-column p {
  margin: 0;
  color: #737373;
}

.profile-info-column a {
  display: inline-block;
  margin: 8px 0 16px;
  color: #4a73a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.profile-games {
  margin-top: 8px;
}

.profile-cta {
  display: flex;
  justify-content: center;
  padding: 64px 64px 72px;
  background: #f0fbf4;
}

.profile-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 768px;
  max-width: 100%;
  text-align: center;
}

.profile-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.profile-cta h2 {
  margin: 0;
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.profile-cta p {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 27px;
}

.profile-cta-actions {
  display: flex;
  gap: 16px;
}

.profile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 48px;
  padding: 12px 24px;
  border: 1px solid #000000;
  font-size: 16px;
  line-height: 24px;
}

.profile-cta-button--primary {
  background: #000000;
  color: #ffffff;
}

.profile-cta-button--secondary {
  background: transparent;
  color: #000000;
}

/* =================================================================
   GROUPS PAGE (所属団体)
   Figma frames: 10202:65063 desktop / 10202:65062 mobile
   ================================================================= */
.groups-page {
  background: #fdfdfe;
}

.groups-body {
  padding: 40px 80px 48px;
  background: #fdfdfe;
}

.groups-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.groups-back {
  color: #4a73a6;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.groups-column h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.groups-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.group-card {
  padding: 24px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
}

.group-card + .group-card {
  position: relative;
  margin-top: 16px;
}

.group-card + .group-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 1px;
  background: #d9d9e6;
}

.group-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.group-card-heading > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.group-card h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.group-card-heading p {
  margin: 0;
  color: #8a8178;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

.group-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.group-card-body p {
  margin: 0;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 24px;
}

.group-sns-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.group-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
}

.group-sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.group-sns-link--youtube,
.group-sns-link--instagram {
  width: 29px;
  height: 29px;
}

.group-sns-link--link {
  width: auto;
  height: auto;
  color: #4a73a6;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  white-space: nowrap;
}

/* =================================================================
   ARRANGING PAGE (作編曲)
   Figma frames: 10202:65051 desktop / 10202:65050 mobile
   ================================================================= */
.arranging-page,
.arranging-body {
  background: #fdfdfe;
}

.arranging-body {
  display: flex;
  justify-content: center;
  padding: 64px 80px 72px;
}

.arranging-container {
  width: 960px;
  max-width: 100%;
}

.arranging-heading {
  margin-bottom: 48px;
}

.arranging-heading-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.arranging-heading h1 {
  margin: 0 0 12px;
  color: #1c1c1c;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.arranging-heading-sheet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 12px;
  padding: 8px 18px;
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  background: #ffffff;
  color: #1c1c1c;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.arranging-heading p {
  margin: 0;
  max-width: 768px;
  color: #545454;
  font-size: 15px;
  line-height: 28px;
}

.arranging-mobile-actions {
  display: none;
}

.arranging-composition-note {
  width: 960px;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 18px 22px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #ffffff;
}

.arranging-composition-note h2 {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.arranging-composition-note p {
  margin: 0;
  color: #545454;
  font-size: 14px;
  line-height: 24px;
}

.arranging-schedule {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  min-height: 64px;
  margin-bottom: 21px;
  padding: 18px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}

.arranging-schedule h2 {
  margin: 0;
  color: #545454;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.arranging-schedule-tags {
  display: flex;
  gap: 16px;
}

.arranging-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.arranging-status span,
.arranging-status strong {
  font: inherit;
}

.arranging-status--consult { background: #fef2c7; color: #944008; }
.arranging-status--open { background: #dbe8fa; color: #1a57a1; }
.arranging-status--plenty { background: #d1fae5; color: #176333; }

.arranging-schedule-note {
  margin: -9px 0 21px;
  color: #545454;
  font-size: 13px;
  line-height: 24px;
}

.arranging-card {
  width: 960px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 24px;
  background: #ffffff;
}

.arranging-card h2 {
  margin: 0 0 18px;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.arranging-use {
  min-height: 262px;
}

.arranging-use ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arranging-use li {
  display: flex;
  gap: 10px;
  color: #545454;
  font-size: 14px;
  line-height: 24px;
}

.arranging-use li::before {
  content: "—";
  flex: 0 0 auto;
  color: #878787;
}

.arranging-sheet {
  min-height: 122px;
  margin-bottom: 14px;
}

.arranging-sheet h2 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 34px;
}

.arranging-sheet p {
  margin: 0 0 10px;
  color: #545454;
  font-size: 15px;
  line-height: 27px;
}

.arranging-sheet p:last-child {
  margin-bottom: 0;
  opacity: 0.82;
}

.arranging-composition-note.arranging-sheet {
  min-height: 0;
}

.arranging-composition-note.arranging-sheet h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 24px;
}

.arranging-composition-note.arranging-sheet p {
  color: #545454;
  font-size: 14px;
  line-height: 24px;
}

.arranging-section-title {
  margin: 34px 0 18px;
  color: #1c1c1c;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.arranging-pricing {
  margin-bottom: 16px;
}

.arranging-section-lead {
  margin: -6px 0 18px;
  color: #878787;
  font-size: 14px;
  line-height: 24px;
}

.arranging-price-wrap {
  margin-bottom: 18px;
}

.arranging-price-cards {
  display: flex;
  gap: 14px;
  padding: 24px;
  border: 1px solid #e0e0e5;
  border-radius: 8px;
  background: #ffffff;
}

.arranging-price-card {
  flex: 1 1 0;
  min-height: 325px;
  padding: 24px;
  border: 1px solid #e0e0e5;
  border-radius: 8px;
  background: #ffffff;
}

.arranging-price-label {
  margin: 0 0 8px;
  color: #878787;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.arranging-price-card h3 {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}

.arranging-price-range {
  min-height: 42px;
  margin: 0;
  color: #545454;
  font-size: 13px;
  line-height: 21px;
}

.arranging-price-main {
  margin: 8px 0 0;
  color: #1c1c1c;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.arranging-price-unit {
  margin: 0;
  color: #878787;
  font-size: 12px;
  line-height: 18px;
}

.arranging-price-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #e6e6e6;
  list-style: none;
}

.arranging-price-card li {
  color: #545454;
  font-size: 13px;
  line-height: 22px;
}

.arranging-swipe-hint,
.arranging-carousel-dots {
  display: none;
}

.arranging-notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: #f7f7f7;
}

.arranging-notes p {
  margin: 0;
  color: #545454;
  font-size: 13px;
  line-height: 24px;
}

.arranging-flow {
  margin-bottom: 0;
}

.arranging-flow ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: flow-step;
}

.arranging-flow li {
  display: flex;
  gap: 14px;
  color: #545454;
  font-size: 14px;
  line-height: 24px;
  counter-increment: flow-step;
}

.arranging-flow li::before {
  content: counter(flow-step) ".";
  flex: 0 0 auto;
  color: #878787;
  font-weight: 700;
}

.arranging-flow-actions {
  display: flex;
  gap: 12px;
}

.arranging-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.arranging-button--primary {
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #ffffff;
}

.arranging-button--secondary {
  border: 1px solid #d1d1d1;
  background: #ffffff;
  color: #1c1c1c;
}

/* =================================================================
   SHEET SALES PAGE (楽譜販売)
   Figma frames: 10202:65049 desktop / 10202:65048 mobile
   ================================================================= */
.sheet-sales-page,
.sheet-sales-body {
  background: #fdfdfe;
}

.sheet-sales-body {
  display: flex;
  justify-content: center;
  padding: 64px 80px 72px;
}

.sheet-sales-container {
  width: 960px;
  max-width: 100%;
}

.sheet-sales-heading {
  margin-bottom: 40px;
}

.sheet-sales-heading h1 {
  margin: 0;
  color: #1c1c1c;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.sheet-sales-heading p {
  margin: 0;
  max-width: 760px;
  color: #545454;
  font-size: 15px;
  line-height: 28px;
}

.sheet-sales-mobile-actions {
  display: none;
}

.sheet-sales-shop-list {
  margin-bottom: 40px;
  padding: 23px;
  border: 1px solid #e0e0ed;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 14px rgba(15,15,20,0.06);
}

.sheet-sales-shop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 94px;
  padding: 22px 24px;
  border-top: 1px solid #e5e5f0;
  background: #ffffff;
}

.sheet-sales-shop-card:last-child {
  border-bottom: 1px solid #e5e5f0;
}

.sheet-sales-shop-card h2 {
  margin: 0 0 5px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.sheet-sales-shop-card p {
  margin: 0;
  color: #545454;
  font-size: 13px;
  line-height: 22px;
}

.sheet-sales-shop-card a {
  flex: 0 0 144px;
  color: #2b4a7d;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-align: right;
}

.sheet-sales-cta {
  padding: 24px;
  border: 1px solid #e0e0ed;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 14px rgba(15,15,20,0.06);
}

.sheet-sales-cta h2 {
  display: none;
}

.sheet-sales-cta p {
  margin: 0 0 16px;
  max-width: 760px;
  color: #545454;
  font-size: 14px;
  line-height: 24px;
}

.sheet-sales-cta-actions {
  display: flex;
  gap: 12px;
}

.sheet-sales-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.sheet-sales-button--primary {
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #ffffff;
}

.sheet-sales-button--secondary {
  border: 1px solid #d1d1d1;
  background: #ffffff;
  color: #1c1c1c;
}

.sheet-sales-shops {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sheet-sales-shop-block {
  padding: 0;
  border: 1px solid #e0e0ed;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 14px rgba(15,15,20,0.06);
  overflow: hidden;
}

.sheet-sales-shop-block__head {
  padding: 22px 24px 18px;
  background: #f8f9fc;
}

.sheet-sales-shop-details {
  border-top: 1px solid #e5e5f0;
}

.sheet-sales-shop-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
}

.sheet-sales-shop-toggle::-webkit-details-marker {
  display: none;
}

.sheet-sales-shop-toggle::marker {
  content: "";
}

.sheet-sales-shop-toggle__chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 2px solid #2b4a7d;
  border-bottom: 2px solid #2b4a7d;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.sheet-sales-shop-details[open] .sheet-sales-shop-toggle__chevron {
  margin-top: 3px;
  transform: rotate(45deg);
}

.sheet-sales-shop-toggle__label {
  color: #1c1c1c;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.sheet-sales-shop-panel {
  border-top: 1px solid #e5e5f0;
}

.sheet-sales-shop-label {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
}

.sheet-sales-shop-block__head h2 {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.sheet-sales-shop-block__head p {
  margin: 0 0 12px;
  max-width: 760px;
  color: #545454;
  font-size: 13px;
  line-height: 22px;
}

.sheet-sales-shop-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2b4a7d;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sheet-sales-shop-top-link:hover,
.sheet-sales-shop-top-link:focus-visible {
  color: #1f3760;
}

.sheet-sales-item-list {
  margin: 0;
  padding: 0 24px 8px;
  list-style: none;
}

.sheet-sales-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid #e5e5f0;
}

.sheet-sales-item-body {
  min-width: 0;
  flex: 1 1 auto;
}

.sheet-sales-item-composer {
  margin: 0 0 2px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.sheet-sales-item-title {
  margin: 0 0 6px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.sheet-sales-item-formation,
.sheet-sales-item-price {
  margin: 0;
  color: #545454;
  font-size: 12px;
  line-height: 20px;
}

.sheet-sales-item-price {
  margin-top: 4px;
  color: #1c1c1c;
  font-weight: 700;
}

.sheet-sales-item-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #2b4a7d;
  border-radius: 2px;
  background: #ffffff;
  color: #2b4a7d;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}

.sheet-sales-item-link:hover,
.sheet-sales-item-link:focus-visible {
  background: #eef3fa;
  color: #1f3760;
}

.sheet-sales-shop-more {
  margin: 0;
  padding: 14px 24px 18px;
  border-top: 1px solid #e5e5f0;
  text-align: right;
}

.sheet-sales-shop-more a {
  color: #2b4a7d;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =================================================================
   CONTACT PAGE (お問い合わせ)
   Figma frames: 10202:65047 desktop / 10202:65046 mobile
   ================================================================= */
.contact-page {
  background: #fdfdfe;
}

.contact-hero {
  display: flex;
  justify-content: center;
  padding: 56px 80px 48px;
  background: #fbfbff;
}

.contact-hero-inner {
  width: 960px;
  max-width: 100%;
}

.contact-hero h1 {
  margin: 0 0 24px;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.contact-hero p {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 27px;
}

.contact-body {
  display: flex;
  justify-content: center;
  min-height: 829px;
  padding: 0 80px 80px;
  background: #fdfdfe;
}

.contact-form-wrap {
  width: 600px;
  max-width: 100%;
  padding: 24px;
  background: #ffffff;
}

.contact-form-intro {
  display: none;
  margin: 0 0 18px;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 27px;
  text-align: center;
}

.contact-google-form,
.contact-form-preview {
  display: block;
  width: 600px;
  max-width: 100%;
  height: 760px;
  min-height: 760px;
  border: 0;
  background: #f6f6f6;
}

.contact-form-external {
  display: block;
  margin-top: 12px;
  color: #545454;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.contact-form-preview {
  padding: 24px;
}

.contact-form-accent {
  height: 6px;
  background: #634af5;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 704px;
  padding: 24px;
  background: #ffffff;
}

.contact-form-card h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.contact-form-helper {
  margin: 0;
  color: #545454;
  font-size: 13px;
  line-height: 22px;
}

.contact-preview-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid #e0e0e5;
  border-radius: 8px;
  background: #ffffff;
}

.contact-preview-field span {
  color: #1c1c1c;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.contact-preview-field i {
  display: block;
  width: 260px;
  max-width: 70%;
  height: 1px;
  background: #d1d1d1;
}

.contact-preview-field p {
  margin: 0;
  color: #383838;
  font-size: 12px;
  line-height: 18px;
}

.contact-preview-field--options {
  min-height: 142px;
  padding: 16px;
}

.contact-preview-field--textarea {
  min-height: 104px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-submit-row button {
  width: 92px;
  height: 38px;
  border: 0;
  border-radius: 4px;
  background: #634af5;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.contact-submit-row a,
.contact-form-note {
  color: #545454;
  font-size: 12px;
  line-height: 20px;
}

.contact-form-note {
  display: none;
  margin: 18px 0 0;
}

.contact-line {
  display: flex;
  justify-content: center;
  padding: 64px 80px;
  background: #f0fbf4;
}

.contact-line-card {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 960px;
  min-height: 188px;
  padding: 36px 44px;
  border: 1px solid #e0e0ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 14px rgba(15,13,41,0.07);
}

.contact-line-copy {
  flex: 1 1 auto;
  padding: 16px;
  border: 1px solid #e0e0ed;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 5px 8px rgba(15,13,41,0.05);
}

.contact-line-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e0f7e5;
  color: #0a8c2e;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.contact-line-copy h2 {
  margin: 0 0 12px;
  color: #141c17;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.contact-line-copy p:last-child {
  margin: 0;
  color: #47574d;
  font-size: 15px;
  line-height: 27px;
}

.contact-line-action {
  flex: 0 0 192px;
  text-align: center;
}

.contact-line-action > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  min-height: 48px;
  border-radius: 999px;
  background: #05b83b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.contact-line-action p {
  margin: 12px 0 0;
  color: #6b7a70;
  font-size: 11px;
  line-height: 16px;
}

/* =================================================================
   FOOTER
   Figma Desktop: bg #ffffff, h166, padding 40/64/40/64
   Figma Mobile: bg #ffffff, h335, padding 28/20/30/20
   ================================================================= */
.site-footer {
  background: var(--bg-footer);
  border-top: 0;
  padding: 40px 80px;
}

.footer-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo { display: none; }

.footer-nav {
  width: 100%;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-nav a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
.footer-nav a:hover { color: #000000; text-decoration: none; }

.footer-social {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 171px;
  height: 29px;
}

.sns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.sns-fb {
  width: 27px;
  height: 27px;
}

.sns-ig {
  width: 29px;
  height: 29px;
}

.sns-x {
  width: 27px;
  height: 27px;
}

.sns-yt {
  width: 29px;
  height: 20px;
}

.sns-line {
  width: 27px;
  height: 27px;
}

.sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #000000;
  padding-top: 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.copyright {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom a {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
}

/* =================================================================
   BACK TO TOP
   Figma: fixed right ~56px bottom ~56px
   104×38, radius999, fill #0e0e11 @0.92, stroke #fff @0.18
   Label: "↑ 先頭へ" 12px Bold letter-spacing 3% #fff
   ================================================================= */
.back-to-top {
  position: fixed;
  right: 56px;
  bottom: 56px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 38px;
  border-radius: 999px;
  background: rgba(14,14,17,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { opacity: 0.8 !important; text-decoration: none; }

/* =================================================================
   P0 Figma alignment overrides — Haru 2026-06-19
   Keep these after base styles so Figma measurements win.
   ================================================================= */
@media (min-width: 769px) {
  .hero {
    height: 486px;
    padding-top: 185px;
    padding-bottom: 27px;
  }

  .hero-sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-title {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.25;
  }

  .hero-actions {
    margin-top: 75px;
  }

  .event-card {
    min-height: 691px;
    padding: 0;
    overflow: hidden;
  }

  .event-visual {
    position: relative;
    height: 392px;
    background: linear-gradient(135deg, #efeff4 0%, #d7d7dd 100%);
    border-bottom: 1px solid #e4ded4;
  }

  .event-visual--shinepost {
    background:
      radial-gradient(circle at 22% 22%, rgba(255,64,176,0.9), transparent 28%),
      radial-gradient(circle at 80% 20%, rgba(0,171,255,0.75), transparent 28%),
      linear-gradient(135deg, #0d1635 0%, #172355 42%, #f3f7ff 100%);
  }

  .event-visual--bblt {
    background:
      linear-gradient(90deg, rgba(47,146,151,0.22) 0 12px, transparent 12px 24px),
      linear-gradient(135deg, #f4f6f7 0%, #dff1f1 100%);
  }

  .event-visual--showa {
    background:
      radial-gradient(circle at 28% 34%, rgba(239,189,54,0.9), transparent 26%),
      linear-gradient(135deg, #21100b 0%, #b42418 54%, #f5d565 100%);
  }

  .event-visual--persona {
    background:
      radial-gradient(circle at 30% 32%, rgba(255,255,255,0.28), transparent 24%),
      linear-gradient(135deg, #101624 0%, #343b4e 52%, #0b0c13 100%);
  }

  .event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 64px;
    min-height: 70px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.12);
    text-align: center;
    padding: 7px 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }

  .event-date-badge span,
  .event-date-badge small {
    display: block;
    font-size: 0.625rem;
    line-height: 1.2;
    color: #5d5d5d;
  }

  .event-date-badge strong {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    color: #1d1a17;
  }

  .event-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .event-detail-link {
    width: fit-content;
    margin-top: auto;
    font-size: 0.875rem;
    border-bottom: 1px solid currentColor;
  }

}

/* =================================================================
   MOBILE — ≤ 768px
   ================================================================= */
@media (max-width: 768px) {
  :root { --header-h: var(--header-h-sp); }

  /* --- Navbar --- */
  .site-header { height: var(--header-h-sp); padding: 0; }
  .global-nav { display: none; }
  .site-logo { display: none; }
  .header-inner { padding: 0 var(--pad-x-sp); height: var(--header-h-sp); }
  .nav-mobile-contact { display: inline-flex; }
  .hamburger { display: flex; }
  .mobile-nav {
    top: calc(var(--header-h-sp) + 8px);
    left: 16px;
    right: 16px;
    border: none;
    border-radius: 16px;
    box-shadow: none;
  }

  /* --- Hero (mobile) ---
     Figma: bg #ffffff h112, padding 15/20/24/20
     庄司 燦 44px Bold #1d1a17 / Akira Shoji 16px Medium #6c6258 */
  .hero {
    background: #ffffff;
    padding: calc(var(--header-h-sp) + 15px) var(--pad-x-sp) 24px;
  }
  .hero-sub { display: none; }
  .hero-title {
    font-size: 2.75rem;  /* 44px */
    font-weight: 700;
    line-height: 50px;
    color: #1d1a17;
    margin-bottom: 8px;
  }
  .hero-latin { display: block; }
  .hero-actions { display: none; }

  /* --- Schedule (mobile) ---
     Figma: bg #fff h438, padding 22/20/28/20
     Heading: 34px Bold line-height 41px
     Status box: vertical, stroke #e6e6e6 radius2, tags radius2 h32 */
  .schedule-section {
    background: #ffffff;
    padding: 22px var(--pad-x-sp) 28px;
  }
  .schedule-heading {
    font-size: 2.125rem;
    line-height: 41px;
    text-shadow: none;
    margin-bottom: 16px;
  }
  .schedule-heading-line {
    display: block;
  }
  .schedule-desc { display: none; }
  .schedule-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 14px;
    border-radius: 2px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .schedule-bar-label { font-size: 0.875rem; min-width: 0; }
  .schedule-tags { flex-direction: column; gap: 10px; width: 100%; }
  .schedule-tag {
    height: 32px;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 0.9375rem;
    width: 160px;
    border: none;
  }
  .schedule-tag--plenty { width: 189px; }
  .schedule-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 8px;
  }
  .btn-dark-pill, .btn-outline-pill {
    min-width: 0;
    width: 166px;
    height: 38px;
    padding: 9px 18px;
    font-size: 0.8125rem;
    border-radius: 2px;
  }

  /* --- News (mobile) ---
     Figma: bg #fff h447, padding 28/20/28/20
     Carousel: viewport w335 h235, track horizontal, cards swipe */
  .news-section {
    background: #ffffff;
    padding: 28px var(--pad-x-sp);
  }
  .section-heading {
    font-size: 2.125rem;
    text-shadow: none;
    margin-bottom: 16px;
  }
  .section-header-row { margin-bottom: 16px; }
  .news-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: 0;
    padding-left: 8px;
    width: 100%;
    margin-bottom: 20px;
  }
  .news-list::-webkit-scrollbar { display: none; }
  .news-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    border: 1px solid #e5e5e3;
    border-radius: 4px;
    padding: 16px;
    background: #ffffff;
  }
  .news-card:first-child { border-top: 1px solid #e5e5e3; }

  /* --- Events (mobile) ---
     Figma: bg #fff h667, padding 28/20/28/20
     Cards: w318×h448, horizontal swipe, gap 40 between starts */
  .events-section {
    background: #ffffff;
    padding: 28px 0 28px calc(var(--pad-x-sp) + 8px);
    overflow: hidden;
  }

  .events-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-right: var(--pad-x-sp);
  }

  .events-heading {
    font-size: 2.125rem;
    text-shadow: none;
    padding-right: 0;
    margin-bottom: 0;
  }

  .events-archive-button {
    min-width: 148px;
    height: 38px;
    padding: 8px 18px;
    font-size: 14px;
    line-height: 20px;
  }

  .events-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-right: var(--pad-x-sp);
    margin-bottom: 20px;
    grid-template-columns: none;
  }
  .events-grid::-webkit-scrollbar { display: none; }
  .event-card {
    flex: 0 0 318px;
    min-height: 448px;
    scroll-snap-align: start;
    border-radius: 14px;
  }
  .events-footer { padding-right: var(--pad-x-sp); }

  /* --- Videos (mobile) ---
     Figma: bg #fff h366, padding 28/20/28/20
     Thumbnails: w260×h146, horizontal swipe, gap 14, radius 12 */
  .videos-section {
    background: #ffffff;
    padding: 28px 0 28px calc(var(--pad-x-sp) + 8px);
    overflow: hidden;
  }
  .videos-heading {
    font-size: 2.125rem;
    text-shadow: none;
    padding-right: var(--pad-x-sp);
    margin-bottom: 20px;
  }
  .videos-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding-right: var(--pad-x-sp);
    margin-bottom: 20px;
    grid-template-columns: none;
  }
  .videos-grid::-webkit-scrollbar { display: none; }
  .video-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .video-wrap {
    width: 260px;
    height: 146px;
    padding-bottom: 0;
    border-radius: 12px;
    border: 1px solid #e4ded4;
  }
  .video-wrap iframe {
    position: static;
    width: 260px;
    height: 146px;
  }
  .videos-footer { padding-right: var(--pad-x-sp); }

  .news-page-section {
    min-height: 962px;
    padding: 22px 20px 28px;
    background: #ffffff;
    overflow: hidden;
  }

  .news-page-container {
    width: 335px;
    max-width: 100%;
  }

  .news-page-header {
    width: 335px;
    margin-bottom: 14px;
    text-align: center;
  }

  .news-page-header h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 41px;
    text-shadow: none;
  }

  .news-page-header p {
    display: none;
  }

  .news-filter-chips {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 76px;
    margin-bottom: 24px;
  }

  .news-filter-chips a {
    min-height: 34px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    background: #f3f0ea;
    color: #5a5048;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .news-filter-chips a.is-active {
    background: #1d1a17;
    color: #ffffff;
    font-weight: 500;
  }

  .news-page-list {
    position: relative;
    padding-top: 61px;
    border-top: 0;
    overflow: visible;
  }

  .news-page-list::before {
    content: '2025年1月';
    position: absolute;
    top: 0;
    left: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
  }

  .news-page-list::after {
    content: '^';
    position: absolute;
    top: 0;
    right: 6px;
    color: #000000;
    font-size: 26px;
    font-weight: 400;
    line-height: 29px;
  }

  .news-page-row {
    min-height: 0;
    padding: 18px 20px 0;
    border-bottom: 0;
    background: #fffdf8;
  }

  .news-page-row:nth-of-type(n+4) {
    display: none;
  }

  .news-page-list.is-filtered .news-page-row {
    display: block;
  }

  .news-page-list.is-expanded .news-page-row {
    display: block;
  }

  .news-page-list.is-filtered .news-page-row.is-hidden {
    display: none !important;
  }

  .news-page-meta {
    gap: 10px;
    height: 27px;
    margin-bottom: 12px;
  }

  .news-page-tag {
    min-width: 0;
    height: 27px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f3f0ea;
    color: #5a5048;
    font-size: 12px;
    line-height: 17px;
  }

  .news-page-meta time {
    width: 120px;
    color: #6c6258;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
  }

  .news-page-row h2 {
    width: 295px;
    margin-bottom: 12px;
    color: #1d1a17;
    font-size: 18px;
    line-height: 26px;
  }

  .news-page-excerpt {
    display: block;
    color: #1d1a17;
  }

  .news-page-excerpt p {
    width: 295px;
    max-width: 295px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 23px;
  }

  .news-page-excerpt a {
    display: block;
    width: 120px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
  }

  .news-page-row::after {
    content: '';
    display: block;
    width: 335px;
    height: 1px;
    margin-left: -20px;
    background: #d9d2c8;
  }

  .news-load-more {
    width: 156px;
    height: 42px;
    margin-top: 10px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: #1d1a17;
    color: #fffdf8;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .concerts-page-section {
    min-height: 1567px;
    padding: 22px 20px 30px;
    background: #ffffff;
    overflow: hidden;
  }

  .concerts-page-container {
    width: 335px;
    max-width: 100%;
  }

  .concerts-page-header {
    width: 335px;
    height: 78px;
    margin-bottom: 18px;
    text-align: center;
  }

  .concerts-page-header h1 {
    margin: 0;
    font-size: 34px;
    line-height: 41px;
    text-shadow: none;
  }

  .concerts-archive-link {
    display: none;
  }

  .concerts-page-grid {
    display: block;
    width: 335px;
  }

  .concerts-empty {
    width: 335px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .concerts-empty p {
    font-size: 15px;
    line-height: 1.7;
  }

  .concerts-page-card {
    width: 335px;
    height: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .concerts-page-card + .concerts-page-card {
    margin-top: 54px;
    padding-top: 54px;
    border-top: 1px solid #d8d2c8;
  }

  .concerts-page-visual {
    width: 335px;
    height: 142px;
    margin-bottom: 7px;
    background: #e2e0dc;
  }

  .concerts-page-visual::before {
    content: '▧';
    position: absolute;
    top: 50px;
    left: 146px;
    color: #b7b3ac;
    font-size: 42px;
    line-height: 42px;
  }

  .concerts-page-visual img {
    display: none;
  }

  .concerts-date-badge {
    top: 14px;
    right: 16px;
    width: 64px;
    min-height: 74px;
    padding: 0;
    gap: 1px;
    background: #fffdf8;
  }

  .concerts-date-badge span {
    display: block;
    width: 48px;
    color: #1d1a17;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }

  .concerts-date-badge strong {
    width: 48px;
    color: #1d1a17;
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
  }

  .concerts-date-badge small {
    width: 48px;
    color: #5a5048;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
  }

  .concerts-page-body {
    width: 335px;
    gap: 7px;
    padding-top: 0;
  }

  .concerts-readable-date {
    order: 3;
    color: #5a5048;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .concerts-role-tag {
    order: 1;
    padding: 4px 8px;
    border-radius: 2px;
    background: #efece6;
    color: #1d1a17;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
  }

  .concerts-page-card h2 {
    order: 2;
    width: 335px;
    color: #1d1a17;
    font-size: 17px;
    line-height: 23px;
  }

  .concerts-venue {
    order: 4;
    color: #1d1a17;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .concerts-time {
    order: 5;
    color: #1d1a17;
    font-size: 13px;
    line-height: 19px;
  }

  .concerts-note {
    order: 6;
    color: #6c6258;
    font-size: 13px;
    line-height: 19px;
  }

  .concerts-detail-link {
    order: 7;
    margin-top: 0;
    padding-top: 0;
    color: #1d1a17;
    font-size: 0;
    font-weight: 500;
    line-height: 19px;
  }

  .concerts-detail-link::before {
    content: '詳細を見る';
    font-size: 13px;
  }

  .concerts-detail-link span {
    font-size: 16px;
  }

  .concerts-cta {
    display: block;
    padding: 42px 20px 40px;
    background: #ffffff;
  }

  .concerts-cta-inner {
    width: 335px;
    margin: 0 auto;
    text-align: center;
  }

  .concerts-cta h2 {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;
  }

  .concerts-cta p {
    margin-top: 0;
    color: #000000;
    font-size: 15px;
    line-height: 24px;
  }

  .concerts-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }

  .concerts-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 12px 24px;
    border: 1px solid #000000;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .concerts-cta-primary {
    background: #000000;
    color: #ffffff;
  }

  .concerts-cta-secondary {
    color: #000000;
  }

  .past-concerts-header {
    height: auto;
    min-height: 0;
    padding: 22px 20px 0;
    background: #ffffff;
    overflow: visible;
  }

  .past-concerts-header-inner {
    width: 335px;
  }

  .past-concerts-header h1 {
    width: 335px;
    margin: 0;
    font-size: 34px;
    line-height: 41px;
    text-align: center;
    text-shadow: none;
  }

  .past-concerts-header p {
    display: none;
  }

  .past-years {
    height: auto;
    padding: 10px 20px 12px;
    background: #ffffff;
    overflow: hidden;
  }

  .past-years-inner {
    width: 100%;
    text-align: left;
  }

  .past-years-heading,
  .past-years-desc {
    display: none;
  }

  .past-controls-card {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 335px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .past-filter-chips,
  .past-sort-options {
    gap: 6px;
  }

  .past-filter-chips button,
  .past-sort-options button {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .past-controls-card .past-year-select {
    height: 44px;
    font-size: 17px;
  }

  .past-controls-advanced {
    padding-top: 12px;
    border-top: 1px solid #e7e1d8;
  }

  .past-controls-advanced-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    list-style: none;
    cursor: pointer;
  }

  .past-controls-advanced summary::-webkit-details-marker {
    display: none;
  }

  .past-controls-advanced-label {
    color: #737373;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }

  .past-controls-advanced-value {
    margin-left: auto;
    color: #1d1a17;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .past-controls-advanced-summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #737373;
    border-bottom: 1.5px solid #737373;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .past-controls-advanced[open] .past-controls-advanced-summary::after {
    transform: rotate(-135deg) translateY(2px);
  }

  .past-controls-advanced-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 12px;
  }

  .past-year-links {
    gap: 10px;
    flex-wrap: wrap;
  }

  .past-year-link {
    font-size: 13px;
    line-height: 1.35;
  }

  .past-bottom-year-nav {
    width: 335px;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .past-bottom-year-nav .past-year-select-stack {
    gap: 10px;
  }

  .past-bottom-year-nav .past-year-select {
    height: 44px;
    padding: 0 36px 0 14px;
    font-size: 17px;
    font-weight: 700;
  }

  .past-archive {
    padding: 6px 20px 16px;
    background: #ffffff;
    overflow: hidden;
  }

  .past-archive-inner {
    width: 335px;
  }

  .past-list {
    display: block;
    padding: 0;
    background: transparent;
    border-top: 0;
  }

  .past-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 166px;
    padding: 0 0 18px;
    background: transparent;
    border-bottom: 1px solid #d8d2c8;
  }

  .past-list:not(.is-expanded) .past-row.is-extra {
    display: none;
  }

  .past-row + .past-row {
    padding-top: 18px;
  }

  .past-row-meta {
    gap: 10px;
    height: 28px;
    margin-bottom: 8px;
  }

  .past-tags {
    gap: 6px;
  }

  .past-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
  }

  .past-role::before,
  .past-role::after {
    display: none;
  }

  .past-role--arranging {
    background: #f6e8d8;
    color: #8a4b1e;
  }

  .past-role--composing {
    background: #f8e8e8;
    color: #8c3535;
  }

  .past-role--performance {
    background: #e8eef8;
    color: #355b8c;
  }

  .past-role--planning {
    background: #e8f3ea;
    color: #3f7048;
  }

  .past-role--goods {
    background: #fff4df;
    color: #9a5b00;
  }

  .past-row time {
    color: #6c6258;
    font-size: 13px;
    line-height: 18px;
  }

  .past-title-row {
    display: block;
  }

  .past-row h3.past-concert-title {
    width: 100%;
    max-width: 100%;
    color: #1d1a17;
    font-size: 17px;
    line-height: 23px;
  }

  .past-subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .past-label {
    margin-top: 8px;
    color: #6c6258;
    font-size: 12px;
    line-height: 17px;
  }

  .past-songs {
    margin-top: 2px;
  }

  .past-songs li {
    color: #1d1a17;
    font-size: 13px;
    line-height: 20px;
  }

  .past-songs li.is-past-song-after-mobile-limit {
    display: none;
  }

  .past-songs li.is-past-song-mobile-hoka {
    display: list-item;
  }

  .past-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 32px;
    margin-top: 12px;
    border: 1px solid #bdb6aa;
    border-radius: 999px;
    color: #1d1a17;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .past-detail-desktop {
    display: none;
  }

  .past-detail-mobile {
    display: inline;
  }

  .past-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 42px;
    margin: 32px auto 0;
    border: 0;
    border-radius: 999px;
    background: #1d1a17;
    color: #fffdf8;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
  }

  .past-load-more[hidden] {
    display: none;
  }

  /* --- Footer (mobile) ---
     Link count can vary by page, so let the footer grow naturally. */
  .site-footer {
    padding: 28px 20px 30px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    height: auto;
  }
  .footer-nav {
    width: min(335px, 100%);
  }
  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 0;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .footer-nav a {
    display: block;
    width: auto;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
  }
  .footer-social {
    position: static;
    justify-content: center;
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: min(335px, 100%);
    margin-top: 0;
    padding-top: 14px;
  }
  .footer-bottom a,
  .copyright {
    width: min(335px, 100%);
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }
  .footer-bottom a {
    order: -1;
  }

  /* back to top — mobile */
  .back-to-top { right: 20px; bottom: 20px; }

  .sp-only { display: block; }
}

/* =================================================================
   Narrow guard — prevents 375px horizontal blowout
   ================================================================= */
@media (max-width: 400px) {
  html, body { overflow-x: hidden; }
  .schedule-bar { max-width: 100%; }
  .news-card { flex: 0 0 220px; }
}

/* Mobile P0 Figma alignment overrides */
@media (max-width: 768px) {
  .hero {
    height: 176px;
    padding-top: 79px;
    padding-bottom: 24px;
  }

  .hero-title {
    margin-bottom: 0;
  }

  .schedule-section {
    min-height: 0;
  }

  .schedule-tag {
    justify-content: center;
  }

  .news-section {
    min-height: 0;
  }

  .section-header-row {
    align-items: flex-start;
  }

  .section-desc {
    display: none;
  }

  .news-list {
    min-height: 235px;
  }

  .news-card {
    flex-basis: 240px;
    min-height: 156px;
  }

  .events-section {
    min-height: 0;
  }

  .events-grid {
    gap: 40px;
  }

  .event-card {
    flex-basis: 318px;
    width: 318px;
    min-height: 448px;
    padding: 0;
    overflow: hidden;
  }

  .event-visual {
    position: relative;
    height: 226px;
    background: linear-gradient(135deg, #efeff4 0%, #d7d7dd 100%);
    border-bottom: 1px solid #e4ded4;
  }

  .event-visual--shinepost {
    background:
      radial-gradient(circle at 22% 22%, rgba(255,64,176,0.9), transparent 28%),
      radial-gradient(circle at 80% 20%, rgba(0,171,255,0.75), transparent 28%),
      linear-gradient(135deg, #0d1635 0%, #172355 42%, #f3f7ff 100%);
  }

  .event-visual--bblt {
    background:
      linear-gradient(90deg, rgba(47,146,151,0.22) 0 10px, transparent 10px 20px),
      linear-gradient(135deg, #f4f6f7 0%, #dff1f1 100%);
  }

  .event-visual--showa {
    background:
      radial-gradient(circle at 28% 34%, rgba(239,189,54,0.9), transparent 26%),
      linear-gradient(135deg, #21100b 0%, #b42418 54%, #f5d565 100%);
  }

  .event-visual--persona {
    background:
      radial-gradient(circle at 30% 32%, rgba(255,255,255,0.28), transparent 24%),
      linear-gradient(135deg, #101624 0%, #343b4e 52%, #0b0c13 100%);
  }

  .event-date-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 56px;
    min-height: 62px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.12);
    text-align: center;
    padding: 6px 5px;
  }

  .event-date-badge span,
  .event-date-badge small {
    display: block;
    font-size: 0.5625rem;
    line-height: 1.2;
    color: #5d5d5d;
  }

  .event-date-badge strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    color: #1d1a17;
  }

  .event-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .event-detail-link {
    width: fit-content;
    margin-top: 6px;
    font-size: 0.8125rem;
    border-bottom: 1px solid currentColor;
  }

  .videos-section {
    min-height: 366px;
  }

}

/* =================================================================
   Figma exact P0 pass — managed media placeholders
   Images/video thumbnails are CMS content. The boxes stay pixel-sized
   to the Figma frame until admin-managed media is connected.
   ================================================================= */
@media (min-width: 769px) {
  .site-header {
    position: static;
    height: 73px;
    padding: 0 var(--pad-x-dt);
    box-shadow: none !important;
  }

  .header-inner {
    max-width: var(--content-max);
    width: 100%;
    padding: 16px 0;
    gap: 20px;
    justify-content: space-between;
  }

  .site-logo,
  .global-nav a {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0;
  }

  .global-nav {
    margin-left: 0;
    margin-right: auto;
  }

  .global-nav ul {
    gap: 20px;
  }

  .nav-contact {
    width: auto;
    min-width: 124px;
    height: 41px;
    padding: 10px 20px;
    border-radius: 0;
  }

  .hero {
    height: 413px;
    padding: 112px 64px 27px;
  }

  .hero-inner {
    width: 100%;
    max-width: 1280px;
  }

  .hero-sub {
    padding-left: 32px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
  }

  .hero-title {
    padding-left: 32px;
    font-size: 56px;
    font-weight: 700;
    line-height: 67px;
    margin: 0 0 24px;
  }

  .hero-desc {
    width: 1083px;
    max-width: 100%;
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 24px;
  }

  .hero-actions {
    margin-top: 0;
    height: 48px;
  }

  .hero-quick-links {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 27px;
    margin-top: 12px;
  }

  .hero-quick-links a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 27px;
    padding: 6px 14px;
    border: 1px solid #d6d1f0;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 6px 9px rgba(15,13,41,0.05);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .schedule-bar-label {
    min-width: 144px;
  }

  .schedule-bar {
    height: 80px;
  }

  .news-section {
    padding: 42px 64px 33px;
  }

  .news-section .sec-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: auto;
    min-height: 0;
    padding-bottom: 25px;
  }

  .section-header-row {
    display: block;
    margin-bottom: 0;
    max-width: 768px;
  }

  .link-all {
    display: none;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-desc {
    margin: 0;
  }

  .news-list {
    width: 1280px;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 5px 28px 28px;
    margin: 0;
    border: 1px solid #e0e0ed;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 14px rgba(15,13,41,0.08);
  }

  .news-card {
    height: auto;
    min-height: 0;
    padding: 24px 0;
    border-bottom-color: #e8e8f5;
  }

  .news-card:first-child {
    border-top: none;
  }

  .news-meta {
    height: 28px;
    margin-bottom: 12px;
    gap: 12px;
  }

  .news-date,
  .cat-tag {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
  }

  .cat-tag {
    height: 28px;
    padding: 4px 8px;
    border-radius: 0;
    background: #ededed;
  }

  .news-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
  }

  .news-excerpt-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    font-size: 16px;
    line-height: 23px;
  }

  .news-excerpt {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    margin: 0;
  }

  .news-detail-link {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    text-align: right;
  }

  .news-list-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    color: #000000;
    font-size: 16px;
    line-height: 23px;
  }

  .news-section > .sec-inner > .link-more {
    display: none;
  }

  .events-section {
    padding: 28px 64px 68px;
  }

  .events-section .sec-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    min-height: 0;
  }

  .events-heading-row {
    width: 1280px;
    margin: 0;
    padding-top: 43px;
  }

  .events-heading {
    width: 680px;
    margin: 0;
    padding-top: 0;
    font-size: 48px;
    line-height: 58px;
  }

  .events-grid {
    display: grid;
    grid-template-columns: 616px 616px;
    gap: 48px 32px;
    width: 1280px;
    height: auto;
    min-height: 0;
    margin: 28px 0 0;
    overflow: visible;
    align-content: start;
    align-items: start;
  }

  .event-card {
    width: 616px;
    min-height: 0;
    padding: 14px;
    border: 1px solid #e0e0ed;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 14px rgba(15,13,41,0.08);
    gap: 0;
  }

  .event-card:nth-child(1),
  .event-card:nth-child(2) {
    height: 663px;
  }

  .event-card:nth-child(3),
  .event-card:nth-child(4) {
    height: 687px;
  }

  .event-visual,
  .event-visual--shinepost,
  .event-visual--bblt,
  .event-visual--showa,
  .event-visual--persona {
    height: 340px;
    width: 588px;
    border: none;
    background: #d9d9d9;
  }

  .event-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 48px;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    background: rgba(255,255,255,0.44);
  }

  .event-visual--has-image::before {
    display: none;
  }

  .event-visual--has-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ececf0;
  }

  .event-flyer {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .event-date-badge {
    top: 16px;
    right: 16px;
    width: 112px;
    min-height: 116px;
    padding: 12px 4px;
    box-shadow: none;
  }

  .event-date-badge span {
    display: none;
  }

  .event-date-badge strong {
    font-size: 32px;
    line-height: 42px;
  }

  .event-date-badge small {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    color: #1a1a1a;
  }

  .event-date-badge small::after {
    content: " 2026";
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #666666;
  }

  .event-body {
    padding: 16px 0 0 12px;
    gap: 8px;
  }

  .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .event-date {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #1a1a1a;
  }

  .role-tag {
    height: 29px;
    padding: 4px 8px;
    border-radius: 0;
    background: #eeeeee !important;
    color: #000000;
    font-size: 14px;
    line-height: 21px;
  }

  .event-title {
    width: 548px;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
  }

  .event-venue,
  .event-time,
  .event-note {
    width: 548px;
    font-size: 16px;
    line-height: 24px;
    color: #1a1a1a;
  }

  .event-note {
    color: #595959;
  }

  .event-detail-link {
    margin-top: 8px;
    border-bottom: none;
    font-size: 16px;
    line-height: 24px;
  }

  .event-detail-link::after {
    content: " ›";
    font-size: 24px;
    vertical-align: -2px;
  }

  .events-footer {
    display: none;
  }

  .videos-section {
    padding: 52px 64px 44px;
  }

  .videos-section .sec-inner {
    width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .videos-heading {
    margin: 0;
    font-size: 48px;
    line-height: 58px;
  }

  .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 405px);
    gap: 28px;
    margin: 9px 0 0;
  }

  .video-item {
    width: 405px;
    min-height: 300px;
    padding: 10px;
    border: 1px solid #e0e0ed;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 6px 9px rgba(15,13,41,0.05);
  }

  .video-wrap {
    width: 385px;
    height: 218px;
    aspect-ratio: auto;
  }

  .video-title {
    width: 385px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 21px;
    min-height: 42px;
  }

  .videos-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 47px;
    margin-top: 0;
  }

  .video-releases-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 12px 24px;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 23px;
    text-decoration: none;
    white-space: nowrap;
  }

  .video-releases-link:hover {
    background: #000000;
    color: #ffffff;
  }

  .video-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 12px 24px;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 23px;
    cursor: pointer;
  }

  .video-mobile-more {
    display: none;
  }

  .video-extra {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 1280px;
    margin-top: -3px;
  }

  .video-extra-label {
    color: #737373;
    font-size: 14px;
    line-height: normal;
  }

  .video-extra-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 85px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
  }

  .video-extra-links a {
    display: inline-flex;
    gap: 8px;
    width: fit-content;
  }

  .video-line-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
  }

  .video-line-cta p {
    color: #737373;
    font-size: 14px;
    line-height: 21px;
  }

  .video-line-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 39px;
    border-radius: 2px;
    background: #06C755;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
  }

  .site-footer {
    height: 166px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 246px;
    padding: 24px var(--pad-x-sp) 28px;
  }

  .hero-actions,
  .hero-quick-links {
    display: none;
  }

  .hero-sub {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.04em;
    color: #1d1a17;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title {
    margin-bottom: 2px;
    font-size: 42px;
    line-height: 48px;
  }

  .hero-latin {
    display: block;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #1d1a17;
  }

  .hero-desc {
    display: block;
    max-width: 335px;
    font-size: 14px;
    line-height: 24px;
    color: #1d1a17;
  }

  .hero-desc-break {
    display: block;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .mobile-nav {
    position: fixed;
    top: calc(var(--header-h-sp) + 8px);
    z-index: 120;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
  }

  body.admin-bar .mobile-nav {
    top: calc(46px + var(--header-h-sp) + 8px);
  }

  .mobile-nav.is-open {
    border: 1px solid rgba(29,26,23,0.12);
    box-shadow: 0 18px 40px rgba(15,13,41,0.16);
    max-height: min(480px, calc(100dvh - var(--header-h-sp) - 32px));
    overflow-y: auto;
  }

  .mobile-nav ul {
    padding: 10px 0;
  }

  .mobile-nav li:first-child {
    border-top: none;
  }

  .schedule-section {
    height: 438px;
    min-height: 0;
    overflow: hidden;
  }

  .site-footer {
    height: auto;
    overflow: visible;
  }

  .news-card {
    flex: 0 0 304px;
    width: 304px;
    height: 220px;
    min-height: 220px;
    padding: 18px 16px;
    border-radius: 14px;
    background: #fffdf8;
    border-color: #e4ded4;
  }

  .news-list-link {
    display: none;
  }

  .news-meta {
    height: 28px;
    margin-bottom: 10px;
    gap: 12px;
  }

  .news-date,
  .cat-tag {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
  }

  .cat-tag {
    height: 28px;
    padding: 4px 8px;
    border-radius: 0;
    background: #ededed;
  }

  .news-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
  }

  .news-excerpt-row {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 23px;
  }

  .news-detail-link {
    line-height: 20px;
  }

  .events-heading,
  .videos-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .event-visual,
  .event-visual--shinepost,
  .event-visual--bblt,
  .event-visual--showa,
  .event-visual--persona {
    width: 100%;
    height: 214px;
    border: none;
    background: #d9d9d9;
  }

  .event-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    background: rgba(255,255,255,0.44);
  }

  .event-visual--has-image::before {
    display: none;
  }

  .event-visual--has-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ececf0;
  }

  .event-flyer {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .event-date-badge {
    top: 16px;
    right: 16px;
    width: 112px;
    min-height: 94px;
    padding: 12px 4px;
    box-shadow: none;
  }

  .event-date-badge span {
    font-size: 12px;
    line-height: 18px;
    color: #000000;
  }

  .event-date-badge strong {
    font-size: 28px;
    line-height: 34px;
  }

  .event-date-badge small {
    font-size: 12px;
    line-height: 18px;
    color: #000000;
  }

  .event-card {
    gap: 13px;
  }

  .event-body {
    height: 215px;
    padding: 0 16px;
    gap: 8px;
  }

  .event-date {
    display: none;
  }

  .role-tag {
    width: 52px;
    height: 28px;
    padding: 4px 0;
    border-radius: 0;
    background: #ededed !important;
    color: #000000;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
  }

  .role-tags {
    gap: 4px;
  }

  .event-title {
    width: 286px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }

  .event-venue,
  .event-time,
  .event-note {
    width: 286px;
    font-size: 13px;
    line-height: 20px;
    color: #000000;
  }

  .event-detail-link {
    margin-top: 8px;
    border-bottom: none;
    font-size: 13px;
    line-height: 20px;
  }

  .event-detail-link::after {
    content: " ›";
    font-size: 20px;
    vertical-align: -2px;
  }

  .concert-detail-page {
    background: #fafafc;
  }

  .concert-detail-hero {
    height: auto;
    padding: 28px 20px 22px;
    background: #fffdf8;
  }

  .concert-detail-back {
    margin: 0;
    color: #6c6258;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .concert-detail-hero > .concert-detail-back {
    width: 335px;
    margin: 0 auto 12px;
  }

  .concert-detail-hero-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 335px;
    min-height: 0;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .concert-detail-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .concert-detail-role-list {
    position: static;
    width: 100%;
    gap: 6px;
  }

  .concert-detail-role {
    min-width: 44px;
    height: 27px;
    padding: 5px 10px;
    border: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
  }

  .concert-detail-hero h1 {
    position: static;
    width: 100%;
    margin: 0;
    color: #1d1a17;
    font-size: 27px;
    line-height: 34px;
  }

  .concert-detail-subtitle {
    margin: 0;
    font-size: 15px;
  }

  .concert-detail-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    order: 3;
    width: min(100%, 220px);
    align-self: center;
  }

  .concert-detail-release-action,
  .concert-detail-release-action-copy {
    align-items: stretch;
    max-width: none;
    text-align: left;
  }

  .concert-detail-release-action-button {
    width: 100%;
  }

  .concert-detail-button {
    position: static;
    width: 100%;
    height: 38px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .concert-detail-button--primary {
    background: #1d1a17;
    color: #fffdf8;
  }

  .concert-detail-button--secondary {
    border-color: #bdb6aa;
    background: transparent;
    color: #1d1a17;
  }

  .concert-detail-flyer--desktop {
    display: none;
  }

  .concert-detail-flyer--mobile {
    display: block;
    position: static;
    order: 2;
    width: clamp(140px, 45vw, 180px);
    max-width: min(240px, 100%);
    height: auto;
    margin: 2px auto 0;
    border-color: #d8d2c8;
    border-radius: 12px;
    background: #f0ece6;
    color: #6c6258;
  }

  .concert-detail-flyer--mobile img {
    width: 100%;
    max-height: none;
  }

  .concert-detail-flyer--mobile::before {
    content: none;
  }

  .concert-detail-flyer--mobile .concert-detail-flyer-hint {
    padding: 6px 4px;
    font-size: 10px;
    line-height: 14px;
  }

  .concert-detail-content {
    padding: 24px 20px 48px;
    background: #fafafc;
  }

  .concert-detail-container {
    display: flex;
    flex-direction: column;
    width: 335px;
    gap: 10px;
  }

  .concert-detail-overview,
  .concert-detail-section,
  .concert-detail-mobile-related {
    width: 335px;
    border: 1px solid #e7e1d8;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
  }

  .concert-detail-overview {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .concert-detail-overview--no-flyer {
    display: block;
  }

  .concert-detail-overview-card {
    display: block;
    padding: 18px;
    border-color: #e7e1d8;
    border-radius: 18px;
    box-shadow: none;
  }

  .concert-detail-eyebrow {
    margin-bottom: 8px;
    color: #9b7a54;
    font-family: Inter, "Zen Kaku Gothic New", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
  }

  .concert-detail-schedule-list {
    gap: 0;
  }

  .concert-detail-schedule-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .concert-detail-schedule-card--no-city {
    grid-template-columns: 1fr;
  }

  .concert-detail-schedule-card + .concert-detail-schedule-card {
    margin-top: 28px;
  }

  .concert-detail-city {
    width: 42px;
    height: 24px;
    background: #eef0f4;
    color: #4b5563;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
  }

  .concert-detail-date-row {
    display: block;
    color: #1d1a17;
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
  }

  .concert-detail-date-row .concert-detail-date-desktop,
  .concert-detail-date-row .concert-detail-time-desktop {
    display: none;
  }

  .concert-detail-date-row .concert-detail-date-mobile,
  .concert-detail-date-row .concert-detail-time-mobile {
    display: block;
  }

  .concert-detail-date-row strong {
    display: block;
  }

  .concert-detail-date-row span {
    color: #4b443d;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }

  .concert-detail-date-row--extra {
    display: none;
  }

  .concert-detail-date-row--extra strong {
    display: none;
  }

  .concert-detail-schedule-body p {
    margin-top: 4px;
    color: #6c6258;
    font-size: 12px;
    line-height: 18px;
  }

  .concert-detail-credits {
    display: block;
    margin: 10px 0 0;
    padding: 14px;
    border: 1px solid #e7e1d8;
    border-radius: 18px;
    background: #ffffff;
    color: #4b443d;
    font-size: 12px;
    line-height: 20px;
  }

  .concert-detail-overview-card .concert-detail-credits {
    margin: 10px 0 0;
  }

  .concert-detail-mobile-only {
    display: block;
  }

  .concert-detail-credits h2,
  .concert-detail-mobile-related h2 {
    margin: 0 0 14px;
    color: #1d1a17;
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
  }

  .concert-detail-section {
    padding: 14px;
  }

  .concert-detail-section h2 {
    margin: 0 0 10px;
    color: #1d1a17;
    font-size: 22px;
    line-height: 29px;
  }

  .concert-detail-inner-card {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .concert-detail-movie-card {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .concert-detail-movie-frame {
    border-radius: 12px;
  }

  .concert-detail-movie-card h3 {
    margin: 12px 0 4px;
    color: #1d1a17;
    font-size: 16px;
    line-height: 24px;
  }

  .concert-detail-movie-card p {
    color: #4b443d;
    font-size: 13px;
    line-height: 21px;
  }

  .concert-detail-streaming-card {
    gap: 8px;
  }

  .concert-detail-streaming-description {
    color: #4b443d;
    font-size: 13px;
    line-height: 21px;
  }

  .concert-detail-streaming-link {
    color: #1d1a17;
    font-size: 13px;
    line-height: 18px;
  }

  .concert-detail-label {
    margin-bottom: 8px;
    color: #8a4b1e;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
  }

  .concert-detail-inner-card li {
    color: #1d1a17;
    font-size: 14px;
    line-height: 22px;
  }

  .concert-detail-goods {
    background: #fffdf8;
  }

  .concert-detail-goods .concert-detail-eyebrow,
  .concert-detail-goods-grid {
    display: none;
  }

  .concert-detail-goods h2 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 28px;
  }

  .concert-detail-goods-note {
    display: none;
  }

  .concert-detail-goods-summary {
    display: block;
  }

  .concert-detail-goods-summary p {
    display: none;
  }

  .concert-detail-goods-summary button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 142px;
    height: 36px;
    border: 1px solid #bdb6aa;
    border-radius: 999px;
    background: transparent;
    color: #1d1a17;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-card {
    min-height: 0;
    padding: 14px 16px;
    border-color: #e7e1d8;
    border-radius: 14px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-card p {
    margin-bottom: 8px;
    color: #9b7a54;
    font-size: 11px;
    line-height: 16px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-card h3 {
    margin-bottom: 6px;
    color: #1d1a17;
    font-size: 16px;
    line-height: 22px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-card .concert-detail-goods-assignment {
    margin: 0 0 8px;
    color: #8a4b1e;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-price {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 18px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-link {
    margin-top: 10px;
    color: #8a4b1e;
    font-size: 12px;
    line-height: 18px;
  }

  .concert-detail-goods.is-goods-open .concert-detail-goods-card li {
    color: #4b443d;
    font-size: 13px;
    line-height: 20px;
  }

  .concert-detail-mobile-related {
    display: block;
    padding: 18px;
  }

  .concert-detail-mobile-related p:not(.concert-detail-eyebrow) {
    margin: 0;
    color: #4b443d;
    font-size: 14px;
    line-height: 23px;
  }

  .concert-detail-mobile-related div {
    display: flex;
    gap: 22px;
    margin-top: 12px;
  }

  .concert-detail-mobile-related a {
    color: #1d1a17;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .profile-page,
  .profile-body {
    background: #ffffff;
  }

  .profile-body {
    padding: 40px 20px 18px;
  }

  .profile-column {
    gap: 24px;
    width: 335px;
  }

  .profile-hero-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    width: 335px;
    height: auto;
    padding: 15px;
    border: 1px solid #e7e1d8;
    border-radius: 18px;
    background: #ffffff;
  }

  .profile-portrait {
    flex: none;
    float: none;
    grid-row: 1;
    width: 112px;
    height: 144px;
    margin: 0;
    border: 1px solid #e7e1d8;
    border-radius: 14px;
    background: #f5f1ea;
  }

  .profile-portrait span {
    width: 80px;
    color: #8a8178;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
  }

  .profile-identity {
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .profile-identity h1 {
    margin: 2px 0 0;
    color: #1d1a17;
    font-size: 20px;
    line-height: 28px;
  }

  .profile-identity p {
    margin-top: 6px;
    color: #4b443d;
    font-size: 12.5px;
    line-height: 21px;
  }

  .profile-social {
    display: none;
  }

  .profile-line-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 26px;
    margin-top: 7px;
    border: 1px solid #e7e1d8;
    border-radius: 999px;
    background: #f5f1ea;
    color: #9b7a54;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 15px;
  }

  .profile-bio {
    grid-column: 1 / -1;
    gap: 0;
    padding: 8px 0 0;
    color: #3b3530;
    font-size: 12.5px;
    line-height: 22px;
  }

  .profile-bio p {
    margin: 0 0 22px;
  }

  .profile-bio-lead {
    color: #4b443d;
    font-size: 12.5px;
    line-height: 21px;
  }

  .profile-bio p:nth-child(5) {
    clear: none;
  }

  .profile-bio p:last-child {
    margin-bottom: 0;
  }

  .profile-groups-link {
    display: block;
    padding: 18px 16px;
    border-color: #e7e1d8;
    border-radius: 12px;
  }

  .profile-groups-link p {
    color: #1d1a17;
    font-size: 14px;
    line-height: 21px;
  }

  .profile-groups-link span {
    font-size: 12px;
    line-height: 20px;
  }

  .profile-groups-link a {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    line-height: 21px;
  }

  .profile-info {
    padding: 24px 0 0;
    border-top: 1px solid #e7e1d8;
  }

  .profile-info-row {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0;
  }

  .profile-info-column {
    padding: 0;
    color: #4b443d;
    font-size: 12px;
    line-height: 21px;
  }

  .profile-info-column--gear {
    order: 2;
  }

  .profile-info-column--line {
    order: 1;
  }

  .profile-games {
    margin-top: 22px;
  }

  .profile-info-column h2 {
    margin: 0 0 6px;
    color: #1d1a17;
    font-size: 15px;
    line-height: 22px;
  }

  .profile-info-column p,
  .profile-info-column a {
    color: #4b443d;
    font-size: 12px;
    line-height: 21px;
  }

  .profile-info-column a {
    margin: 0;
  }

  .profile-cta {
    padding: 18px 20px 40px;
    background: #ffffff;
  }

  .profile-cta-inner {
    gap: 16px;
    width: 335px;
  }

  .profile-cta-copy {
    display: none;
  }

  .profile-cta-actions {
    gap: 12px;
  }

  .profile-cta-button {
    min-width: 0;
    width: 136px;
    height: 38px;
    padding: 6px 16px;
    font-size: 13px;
    line-height: 18px;
  }

  .groups-page,
  .groups-body {
    background: #ffffff;
  }

  .groups-body {
    padding: 36px 20px 30px;
  }

  .groups-column {
    gap: 24px;
    width: 335px;
  }

  .groups-back {
    color: #4b443d;
    font-size: 12px;
    line-height: 18px;
  }

  .groups-column h1 {
    font-size: 28px;
    line-height: 36px;
    text-shadow: none;
  }

  .groups-list {
    gap: 16px;
  }

  .group-card {
    padding: 17px;
    border-color: #e7e1d8;
    border-radius: 16px;
    background: #fffdf8;
  }

  .group-card + .group-card {
    margin-top: 0;
  }

  .group-card + .group-card::before {
    display: none;
  }

  .group-card-heading {
    display: block;
    margin-bottom: 14px;
  }

  .group-card-heading > div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .group-card h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .group-card:first-child h2 {
    font-size: 17px;
    line-height: 24px;
  }

  .group-card-heading p {
    color: #8a8178;
    font-size: 14px;
    line-height: 18px;
  }

  .group-card-body {
    gap: 12px;
  }

  .group-card-body p {
    color: #3b3530;
    font-size: 12.5px;
    line-height: 22px;
  }

  .group-sns-links {
    gap: 8px;
    padding-top: 10px;
  }

  .group-sns-links::before {
    content: "SNS";
    flex: 0 0 100%;
    color: #9b7a54;
    font-family: Inter, 'Zen Kaku Gothic New', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
  }

  .group-sns-link {
    width: 28px;
    height: 28px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .group-sns-link--youtube,
  .group-sns-link--instagram {
    width: 30px;
    height: 30px;
  }

  .group-sns-link--link {
    width: auto;
    height: 28px;
    min-height: 28px;
    padding: 5px 14px;
    border-color: #e7e1d8;
    border-style: solid;
    border-width: 1px;
    border-radius: 999px;
    background: #f5f1ea;
    color: #4b443d;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 15px;
  }

  .arranging-page,
  .arranging-body {
    background: #fcfcfb;
  }

  .arranging-body {
    display: block;
    padding: 22px 20px 28px;
  }

  .arranging-container {
    width: min(335px, 100%);
    margin: 0 auto;
  }

  .arranging-heading {
    margin: 0 0 28px;
    text-align: center;
  }

  .arranging-heading-title-row {
    display: block;
  }

  .arranging-heading h1 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 41px;
    text-shadow: none;
  }

  .arranging-heading-sheet-link {
    display: none;
  }

  .arranging-heading p {
    display: none;
  }

  .arranging-mobile-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .arranging-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 98px;
    height: 42px;
    border: 1px solid #000000;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
  }

  .arranging-mobile-actions a:first-child {
    background: #000000;
    color: #ffffff;
  }

  .arranging-composition-note {
    width: min(335px, 100%);
    margin: 0 0 28px;
    padding: 17px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    background: #ffffff;
    text-align: left;
  }

  .arranging-composition-note h2 {
    margin: 0 0 12px;
    color: #1c1c1c;
    font-size: 18px;
    line-height: 27px;
  }

  .arranging-composition-note p {
    color: #1c1c1c;
    font-size: 13px;
    line-height: 23px;
  }

  .arranging-schedule,
  .arranging-card {
    width: 335px;
    margin: 0 0 28px;
    padding: 17px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    background: #ffffff;
  }

  .arranging-schedule {
    display: block;
    min-height: 192px;
  }

  .arranging-schedule h2,
  .arranging-card h2 {
    margin: 0 0 24px;
    color: #1c1c1c;
    font-size: 22px;
    line-height: 33px;
  }

  .arranging-schedule-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .arranging-status {
    justify-content: space-between;
    width: 299px;
    min-height: 32px;
    padding: 5px 13px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 999px;
    font-size: 13px;
    line-height: 20px;
  }

  .arranging-status--consult { background: #fff7db; color: #1c1c1c; }
  .arranging-status--open { background: #edf5ff; color: #1c1c1c; }
  .arranging-status--plenty { background: #e8faed; color: #1c1c1c; }

  .arranging-use {
    min-height: 290px;
  }

  .arranging-use ul {
    gap: 15px;
  }

  .arranging-use li {
    gap: 10px;
    color: #1c1c1c;
    font-size: 14px;
    line-height: 25px;
  }

  .arranging-use li::before {
    color: #6f88b0;
  }

  .arranging-sheet {
    min-height: 142px;
  }

  .arranging-section-title {
    width: min(335px, 100%);
    margin: 34px 0 18px;
    color: #1c1c1c;
    font-size: 28px;
    line-height: 38px;
  }

  .arranging-sheet h2 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 34px;
  }

  .arranging-sheet p {
    color: #1c1c1c;
    font-size: 14px;
    line-height: 26px;
  }

  .arranging-composition-note.arranging-sheet {
    min-height: 0;
  }

  .arranging-composition-note.arranging-sheet h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 27px;
  }

  .arranging-composition-note.arranging-sheet p {
    font-size: 13px;
    line-height: 23px;
  }

  .arranging-pricing {
    overflow: hidden;
    min-height: 474px;
  }

  .arranging-section-lead {
    display: none;
  }

  .arranging-price-wrap {
    margin: 0;
  }

  .arranging-price-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin: 0 -17px;
    padding: 0 17px 8px;
    border: 0;
    scroll-snap-type: x mandatory;
  }

  .arranging-price-card {
    flex: 0 0 286px;
    min-height: 330px;
    padding: 15px;
    border-color: rgba(0,0,0,0.08);
    background: #fcfcfb;
    scroll-snap-align: start;
  }

  .arranging-price-label {
    color: #2c4a7c;
    font-size: 11px;
    line-height: 17px;
  }

  .arranging-price-card h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .arranging-price-range {
    min-height: 40px;
    color: #6b6b6b;
    font-size: 12px;
    line-height: 20px;
  }

  .arranging-price-main {
    margin-top: 16px;
    font-size: 26px;
    line-height: 29px;
  }

  .arranging-price-unit {
    margin-top: 8px;
    color: #6b6b6b;
    font-size: 12px;
    line-height: 17px;
  }

  .arranging-price-card ul {
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    border-top: 0;
  }

  .arranging-price-card li {
    color: #1c1c1c;
    font-size: 12px;
    line-height: 20px;
  }

  .arranging-price-card li::before {
    content: "・";
  }

  .arranging-swipe-hint {
    display: block;
    margin: 8px 0 8px;
    color: #6b6b6b;
    font-size: 12px;
    line-height: 18px;
  }

  .arranging-carousel-dots {
    display: flex;
    gap: 4px;
  }

  .arranging-carousel-dots span {
    width: 10px;
    height: 6px;
    border-radius: 999px;
    background: #d9d9d9;
  }

  .arranging-carousel-dots span:first-child {
    width: 18px;
    background: #1c1c1c;
  }

  .arranging-notes {
    margin-top: 28px;
    padding: 0;
    background: transparent;
  }

  .arranging-notes p {
    color: #1c1c1c;
    font-size: 12px;
    line-height: 19px;
  }

  .arranging-flow {
    min-height: 378px;
    margin-bottom: 0;
  }

  .arranging-flow h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }

  .arranging-flow ol {
    gap: 10px;
    margin-bottom: 22px;
  }

  .arranging-flow li {
    gap: 18px;
    color: #1c1c1c;
    font-size: 13px;
    line-height: 21px;
  }

  .arranging-flow li::before {
    color: #2c4a7c;
  }

  .arranging-flow-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .arranging-button {
    width: 299px;
    min-height: 56px;
    font-size: 15px;
    line-height: 22px;
  }

  .sheet-sales-page,
  .sheet-sales-body {
    background: #fafafa;
  }

  .sheet-sales-body {
    display: block;
    padding: 22px 20px 36px;
  }

  .sheet-sales-container {
    width: min(335px, 100%);
    margin: 0 auto;
  }

  .sheet-sales-heading {
    margin-bottom: 28px;
    text-align: center;
  }

  .sheet-sales-heading h1 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 41px;
    text-shadow: none;
  }

  .sheet-sales-heading p {
    margin: 30px auto 0;
    color: #555555;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
  }

  .sheet-sales-mobile-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 30px;
  }

  .sheet-sales-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid #111111;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
  }

  .sheet-sales-mobile-actions a:first-child {
    width: 112px;
    background: #050505;
    color: #ffffff;
    font-size: 15px;
  }

  .sheet-sales-mobile-actions a:last-child {
    width: 144px;
    background: #ffffff;
  }

  .sheet-sales-shop-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .sheet-sales-shop-card {
    display: block;
    min-height: 176px;
    padding: 19px 17px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }

  .sheet-sales-shop-card:nth-child(2) {
    min-height: 198px;
  }

  .sheet-sales-shop-card:nth-child(3) {
    min-height: 178px;
  }

  .sheet-sales-shop-card:nth-child(4) {
    min-height: 222px;
  }

  .sheet-sales-shop-card:last-child {
    border-bottom: 1px solid #e5e5e5;
  }

  .sheet-sales-shop-card h2 {
    margin-bottom: 8px;
    color: #111111;
    font-size: 16px;
    line-height: 24px;
  }

  .sheet-sales-shop-card p {
    color: #555555;
    font-size: 13px;
    line-height: 22px;
  }

  .sheet-sales-shop-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 142px;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #111111;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
  }

  .sheet-sales-cta {
    padding: 21px 17px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
  }

  .sheet-sales-cta h2 {
    display: block;
    margin: 0 0 12px;
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }

  .sheet-sales-cta p {
    margin-bottom: 18px;
    color: #555555;
    font-size: 13px;
    line-height: 22px;
  }

  .sheet-sales-cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .sheet-sales-button {
    width: 299px;
    min-height: 48px;
    font-size: 15px;
    line-height: 22px;
  }

  .sheet-sales-shops {
    gap: 16px;
    margin-bottom: 24px;
  }

  .sheet-sales-shop-block {
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }

  .sheet-sales-shop-block__head {
    padding: 19px 17px 16px;
  }

  .sheet-sales-shop-block__head h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .sheet-sales-shop-block__head p {
    color: #555555;
  }

  .sheet-sales-shop-toggle {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 12px 17px;
  }

  .sheet-sales-item-list {
    padding: 0 17px 4px;
  }

  .sheet-sales-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0;
  }

  .sheet-sales-item-link {
    width: 100%;
    min-height: 40px;
    font-size: 13px;
  }

  .sheet-sales-shop-more {
    padding: 12px 17px 16px;
    text-align: center;
  }

  .sheet-sales-shop-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 299px;
    min-height: 40px;
    border: 1px solid #111111;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .contact-page {
    background: #fafafa;
  }

  .contact-hero {
    display: block;
    padding: 22px 20px 20px;
    background: #ffffff;
  }

  .contact-hero-inner {
    width: min(335px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .contact-hero h1 {
    margin: 0;
    font-size: 34px;
    line-height: 41px;
    text-shadow: none;
  }

  .contact-hero p {
    display: none;
  }

  .contact-body {
    display: block;
    min-height: 0;
    padding: 28px 20px;
    background: #fafafa;
  }

  .contact-form-wrap {
    width: min(335px, 100%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
  }

  .contact-form-intro {
    display: block;
    margin: 0 auto 28px;
    color: #555555;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .contact-google-form,
  .contact-form-preview {
    width: 335px;
    height: 700px;
    min-height: 700px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  }

  .contact-form-external {
    margin-top: 10px;
    font-size: 11px;
    line-height: 18px;
  }

  .contact-form-preview {
    padding: 0;
    overflow: hidden;
  }

  .contact-form-accent {
    height: 6px;
    background: #6c4bff;
  }

  .contact-form-card {
    min-height: 694px;
    padding: 17px;
    gap: 12px;
  }

  .contact-form-card h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
  }

  .contact-form-helper {
    color: #666666;
    font-size: 12px;
    line-height: 20px;
  }

  .contact-preview-field {
    min-height: 58px;
    padding: 9px 13px;
    border-color: #e2e2e2;
    border-radius: 6px;
  }

  .contact-preview-field span {
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }

  .contact-preview-field i {
    width: 180px;
    max-width: 70%;
    background: #d4d4d4;
  }

  .contact-preview-field p {
    color: #555555;
    font-size: 11px;
    line-height: 18px;
  }

  .contact-preview-field--options {
    min-height: 132px;
    padding: 9px 13px;
  }

  .contact-preview-field--textarea {
    min-height: 96px;
  }

  .contact-submit-row {
    gap: 14px;
  }

  .contact-submit-row button {
    width: 92px;
    height: 38px;
    border-radius: 0;
    background: #050505;
    font-size: 14px;
    font-weight: 700;
  }

  .contact-submit-row a {
    width: 190px;
    color: #666666;
    font-size: 11px;
    line-height: 18px;
  }

  .contact-form-note {
    display: block;
    color: #666666;
    font-size: 12px;
    line-height: 20px;
  }

  .contact-line {
    display: block;
    padding: 36px 20px 58px;
    background: #eaf8f0;
  }

  .contact-line-card {
    display: block;
    width: min(335px, 100%);
    min-height: 262px;
    margin: 0 auto;
    padding: 17px;
    border-color: #dcefe4;
    border-radius: 10px;
    box-shadow: 0 8px 9px rgba(0,0,0,0.05);
  }

  .contact-line-copy {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .contact-line-label {
    min-width: 72px;
    min-height: 24px;
    margin-bottom: 10px;
    padding: 3px 12px;
    background: transparent;
    color: #14ae5c;
    font-size: 12px;
    line-height: 18px;
  }

  .contact-line-copy h2 {
    margin-bottom: 10px;
    color: #111111;
    font-size: 20px;
    line-height: 27px;
  }

  .contact-line-copy p:last-child {
    color: #555555;
    font-size: 12px;
    line-height: 20px;
  }

  .contact-line-action {
    flex: none;
    margin-top: 10px;
  }

  .contact-line-action > a {
    width: 299px;
    min-height: 44px;
    border-radius: 0;
    background: #050505;
    font-size: 14px;
    line-height: 20px;
  }

  .contact-line-action p {
    color: #666666;
    font-size: 10px;
    line-height: 16px;
  }

  .videos-grid {
    min-height: 190px;
  }

  .video-wrap {
    width: 260px;
    height: 146px;
    padding-bottom: 0;
  }

  .video-wrap iframe {
    position: static;
    width: 260px;
    height: 146px;
  }

  .video-title {
    display: none;
  }

  .video-more-button,
  .video-releases-link,
  .video-extra {
    display: none;
  }

  .video-mobile-more {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .releases-page,
  .releases-body {
    background: #ffffff;
  }

  .releases-body {
    min-height: 3097px;
    padding: 22px 20px 18px;
  }

  .releases-container {
    width: 335px;
    max-width: 100%;
  }

  .releases-intro {
    display: flex;
    justify-content: center;
    min-height: 63px;
    margin: 0 -20px;
    padding: 0 20px;
  }

  .releases-intro h1 {
    margin: 0;
    color: #000000;
    font-size: 34px;
    line-height: 41px;
    text-align: center;
    text-shadow: none;
  }

  .releases-intro p,
  .release-controls-card {
    display: none;
  }

  .release-mobile-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .release-mobile-controls select {
    width: 335px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    background: #ffffff;
    color: #1c1c1c;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
  }

  .release-list {
    width: 335px;
    margin-top: 16px;
    padding: 0;
    border-top: 1px solid #e7e1d8;
    background: #ffffff;
  }

  .release-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 16px;
    min-height: 0;
    padding: 62px 0 18px;
    border-bottom: 1px solid #e7e1d8;
  }

  .release-list.is-expanded .release-row.is-extra:not(.is-filter-hidden) {
    display: grid;
  }

  .release-row-top-tags {
    top: 18px;
    max-width: calc(100% - 112px);
  }

  .release-row-tag {
    min-height: 25px;
    padding: 3px 10px;
    border: 1px solid #e7e1d8;
    font-size: 12px;
    line-height: 17px;
  }

  .release-thumb {
    width: 96px;
    height: 54px;
    grid-column: 1;
    border-radius: 10px;
  }

  .release-thumb.has-image {
    height: auto;
    min-height: 54px;
    overflow: visible;
    background: #ffffff;
  }

  .release-thumb.has-image img {
    max-height: 144px;
  }

  .release-thumb span {
    font-size: 11px;
    line-height: 15px;
  }

  .release-row-content {
    grid-column: 2;
    min-width: 0;
  }

  .release-row-content h2 {
    margin: -2px 0 12px;
    color: #14171a;
    font-size: 18px;
    line-height: 27px;
  }

  .release-row-meta {
    margin-bottom: 8px;
  }

  .release-row-meta p {
    font-size: 13px;
    line-height: 22px;
  }

  .release-row-links {
    flex-direction: column;
    gap: 4px;
  }

  .release-row-links a,
  .release-video-link,
  .release-video-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .release-load-more {
    width: 335px;
    height: 44px;
    margin-top: 20px;
    border-color: #2c4a7c;
    border-radius: 999px;
    color: #2c4a7c;
    font-weight: 700;
  }

  .release-videos {
    margin-top: 56px;
    padding: 0;
  }

  .release-videos h2 {
    margin: 0 0 28px;
    font-size: 24px;
    line-height: 34px;
  }

  .release-video-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .release-video-card {
    min-height: 0;
    padding: 0;
    border: none;
  }

  .release-video-thumb {
    width: 335px;
    height: 188px;
    border-radius: 14px;
  }

  .release-video-card h3 {
    margin: 16px 0 8px;
    font-size: 16px;
    line-height: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 50px;
  }

  .release-video-card p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .release-video-more {
    width: 335px;
    height: 44px;
    margin-top: 24px;
    border-radius: 0;
  }

  .release-video-links {
    display: block;
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
  }

  .release-video-links a {
    display: block;
    margin-bottom: 10px;
  }
}

/* Section stack: content-driven height on desktop (fixed Figma frame heights removed v1.0.63). */

/* Privacy Policy */
.privacy-page {
  background: #fafafa;
  color: #111;
}

.privacy-hero {
  min-height: 246px;
  padding: 64px 20px 0;
  background: #fff;
}

.privacy-hero-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.privacy-hero h1 {
  margin: 0 0 17px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 67px;
  letter-spacing: 0;
}

.privacy-hero p {
  margin: 0;
  color: #555;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.privacy-body {
  padding: 72px 20px;
}

.privacy-container {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 55px 63px 57px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.04);
}

.privacy-updated,
.privacy-lead,
.privacy-section p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.privacy-updated {
  margin: 0 0 16px;
  color: #777;
}

.privacy-lead {
  margin: 0 0 33px;
  color: #444;
}

.privacy-section {
  margin-top: 27px;
}

.privacy-section h2 {
  margin: 0 0 10px;
  color: #111;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.privacy-section p {
  margin: 0;
  color: #555;
}

.privacy-section p + p {
  margin-top: 0;
}

.privacy-section a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-line-action p a {
  display: inline !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit;
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .privacy-hero {
    min-height: 100px;
    padding: 30px 20px 0;
  }

  .privacy-hero h1 {
    margin: 0;
    font-size: 32px;
    line-height: 41px;
    text-align: center;
  }

  .privacy-hero p {
    display: none;
  }

  .privacy-body {
    padding: 28px 20px 35px;
  }

  .privacy-container {
    width: min(335px, 100%);
    padding: 23px 17px 25px;
    border-radius: 8px;
  }

  .privacy-updated,
  .privacy-lead,
  .privacy-section p {
    font-size: 12px;
    line-height: 21px;
  }

  .privacy-updated {
    margin-bottom: 14px;
    text-align: center;
  }

  .privacy-lead {
    margin-bottom: 31px;
  }

  .privacy-section {
    margin-top: 24px;
  }

  .privacy-section h2 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 24px;
  }
}

/* Desktop fallback: wrap card grids when the viewport cannot hold the Figma columns. */
@media (min-width: 769px) and (max-width: 1391px) {
  .events-section,
  .events-section .sec-inner,
  .events-grid,
  .concerts-page-section,
  .videos-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .events-heading-row,
  .events-grid,
  .videos-section .sec-inner,
  .videos-pagination {
    width: 100%;
  }

  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(616px, 100%), 1fr));
  }

  .event-card {
    width: 100%;
  }

  .event-card:nth-child(1),
  .event-card:nth-child(2),
  .event-card:nth-child(3),
  .event-card:nth-child(4) {
    height: auto;
    min-height: 663px;
  }

  .event-visual,
  .event-visual--shinepost,
  .event-visual--bblt,
  .event-visual--showa,
  .event-visual--persona {
    width: 100%;
  }

  .event-title,
  .event-venue,
  .event-time,
  .event-note {
    width: calc(100% - 12px);
    max-width: 548px;
    overflow-wrap: anywhere;
  }

  .concerts-page-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(616px, 100%), 1fr));
  }

  .concerts-page-card {
    width: 100%;
  }

  .concerts-page-visual {
    width: 100%;
  }

  .concerts-page-visual img {
    width: 100%;
  }

  .concerts-page-card h2,
  .concerts-venue,
  .concerts-time,
  .concerts-note {
    overflow-wrap: anywhere;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(405px, 100%), 1fr));
  }

  .concert-detail-goods-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  }
}
