/* =========================================================
   KIKUCHI QUZILLA SCHEDULE PAGE
   minimal white base / mobile-first
   ========================================================= */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #fafafa;
  --c-text: #111111;
  --c-text-sub: #777777;
  --c-text-mute: #b5b5b5;
  --c-line: #ececec;
  --c-line-strong: #111111;
  --ff-en: "Cormorant Garamond", "Times New Roman", serif;
  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --ff-jp-serif: "Shippori Mincho", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
  --max-w: 880px;
  --header-h: 60px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-jp);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: normal;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 480px;
}
.loader-brand {
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: 0.18em;
  margin: 0 0 28px;
  color: var(--c-text);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.loader-brand span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: loader-letter .6s ease forwards;
}
.loader-brand .loader-space { width: 0.5em; animation: none; opacity: 1; }
.loader-brand span:nth-child(1)  { animation-delay: 0.05s; }
.loader-brand span:nth-child(2)  { animation-delay: 0.10s; }
.loader-brand span:nth-child(3)  { animation-delay: 0.15s; }
.loader-brand span:nth-child(4)  { animation-delay: 0.20s; }
.loader-brand span:nth-child(5)  { animation-delay: 0.25s; }
.loader-brand span:nth-child(6)  { animation-delay: 0.30s; }
.loader-brand span:nth-child(7)  { animation-delay: 0.35s; }
.loader-brand span:nth-child(9)  { animation-delay: 0.45s; }
.loader-brand span:nth-child(10) { animation-delay: 0.50s; }
.loader-brand span:nth-child(11) { animation-delay: 0.55s; }
.loader-brand span:nth-child(12) { animation-delay: 0.60s; }
.loader-brand span:nth-child(13) { animation-delay: 0.65s; }
.loader-brand span:nth-child(14) { animation-delay: 0.70s; }
.loader-brand span:nth-child(15) { animation-delay: 0.75s; }
@keyframes loader-letter {
  to { opacity: 1; transform: translateY(0); }
}
.loader-bar {
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: var(--c-line);
  margin: 0 auto 14px;
  position: relative;
  overflow: hidden;
}
.loader-bar span {
  position: absolute;
  inset: 0;
  background: var(--c-text);
  transform-origin: left center;
  transform: scaleX(0);
  animation: loader-bar 1.4s cubic-bezier(.6,.05,.2,1) forwards;
  animation-delay: 0.4s;
}
@keyframes loader-bar {
  to { transform: scaleX(1); }
}
.loader-tag {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--c-text-sub);
  margin: 0;
  opacity: 0;
  animation: loader-fade .6s ease forwards;
  animation-delay: 0.2s;
}
@keyframes loader-fade {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .loader-brand span,
  .loader-bar span,
  .loader-tag { animation: none; opacity: 1; transform: none; }
  .loader-bar span { transform: scaleX(1); }
}

/* ---------- Page reveal ---------- */
main, .site-header, .site-footer {
  opacity: 0;
  transform: translateY(8px);
  animation: page-reveal .8s ease .2s forwards;
}
body.is-loading main,
body.is-loading .site-header,
body.is-loading .site-footer { animation: none; opacity: 0; }
@keyframes page-reveal {
  to { opacity: 1; transform: translateY(0); }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:active { opacity: 0.5; }
@media (hover: hover) { a:hover { opacity: 0.6; } }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-align: center;
}
.brand-en {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: 0.10em;
  white-space: nowrap;
}
.brand-jp {
  font-size: 9px;
  color: var(--c-text-sub);
  letter-spacing: 0.3em;
  margin-top: 4px;
}

/* ---------- Header layout (with nav) ---------- */
.page-home .header-inner,
.page-schedule .header-inner {
  justify-content: space-between;
  max-width: 1200px;
}
.nav-pc { display: none; }
.nav-pc ul { display: flex; gap: 28px; }
.nav-pc a {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  position: relative;
}
.nav-pc a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--c-text);
}

.menu-toggle {
  display: block;
  width: 36px; height: 36px;
  background: transparent; border: 0; cursor: pointer;
  padding: 0; position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--c-text);
  position: absolute;
  left: 7px;
  transition: .3s;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.nav-sp {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  padding: 32px 24px 56px;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 99;
}
.nav-sp.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-sp ul li { border-bottom: 1px solid var(--c-line); }
.nav-sp ul li a {
  display: block;
  padding: 20px 4px;
  font-family: var(--ff-en);
  font-size: 16px;
  letter-spacing: 0.2em;
}
.sns-sp {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}
.sns-sp a {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
}

/* ---------- Hero (home only) ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-bg);
}
.hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f5f5;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-text {
  padding: 48px 24px 64px;
  text-align: center;
}
.hero-en {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-text-sub);
  margin: 0 0 18px;
}
.hero-title {
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: clamp(40px, 12vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
.hero-jp {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--c-text-sub);
  margin: 0;
}

/* ---------- Section common (home) ---------- */
.section {
  padding: 72px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--c-bg-alt);
  max-width: none;
  margin: 0;
  padding: 72px 20px;
}
.section-alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-sub {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-text-sub);
  margin: 0 0 12px;
}
.section-title {
  font-family: var(--ff-jp-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.18em;
  margin: 0;
  line-height: 1.4;
}

.section-more {
  text-align: center;
  margin-top: 32px;
}
.section-more a {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 4px;
  display: inline-block;
}

/* ---------- News (home) ---------- */
.news-list { max-width: 800px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.news-item time {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-text-sub);
}
.news-item .cat {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  border: 1px solid var(--c-text);
  padding: 2px 8px;
  text-align: center;
  justify-self: start;
}
.news-item a {
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- Live preview (home) ---------- */
.live-list { max-width: 800px; margin: 0 auto; }
.live-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.live-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.live-date .ymd {
  font-family: var(--ff-en);
  font-size: 20px;
  letter-spacing: 0.08em;
}
.live-date .dow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
}
.live-info h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}
.live-info p {
  margin: 4px 0;
  font-size: 12px;
  color: var(--c-text-sub);
}

/* ---------- Discography ---------- */
.disc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.disc-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5d0e0 0%, #e9b8cc 100%);
  margin-bottom: 12px;
}
.disc-type {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
  margin: 0 0 4px;
}
.disc-title {
  font-family: var(--ff-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.disc-date {
  font-size: 11px;
  color: var(--c-text-sub);
  margin: 0;
}

/* ---------- Library ---------- */
.library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.lib-card {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
  cursor: pointer;
  transition: .25s;
  text-align: center;
  padding: 0 8px;
}
.lib-card:hover {
  background: var(--c-text);
  color: #fff;
  border-color: var(--c-text);
}

/* ---------- Profile ---------- */
.profile-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.profile-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.pf-name-en {
  font-family: var(--ff-en);
  font-size: 28px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
}
.pf-name-jp {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-text-sub);
  margin: 0 0 20px;
}
.profile-text p {
  font-size: 13px;
  margin: 0 0 16px;
  line-height: 2;
}
.profile-dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-size: 12px;
}
.profile-dl dt {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
}
.profile-dl dd { margin: 0; }

/* ---------- Contact ---------- */
.contact-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-wrap p {
  font-size: 13px;
  line-height: 2;
}
.contact-mail {
  margin-top: 20px !important;
  font-family: var(--ff-en);
  font-size: clamp(18px, 5vw, 26px);
  letter-spacing: 0.08em;
}
.contact-mail a {
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 3px;
}

/* ---------- Page head ---------- */
.page-head {
  text-align: center;
  padding: 56px 20px 40px;
  border-bottom: 1px solid var(--c-line);
}
.page-sub {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-text-sub);
  margin: 0 0 12px;
}
.page-title {
  font-family: var(--ff-jp-serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  line-height: 1.3;
}
.page-title span {
  display: inline-block;
  position: relative;
  padding: 0 0.05em;
}
.page-lead {
  font-size: 12px;
  color: var(--c-text-sub);
  letter-spacing: 0.15em;
  margin: 0;
}

/* ---------- Schedule ---------- */
.schedule-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 16px 56px;
}
.year-group + .year-group { margin-top: 48px; }

.year-title {
  font-family: var(--ff-en);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line-strong);
}
.year-title.past {
  color: var(--c-text-mute);
  border-bottom-color: var(--c-line);
}

.sch-list { display: flex; flex-direction: column; gap: 0; }

.sch-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  min-width: 0;
}
.sch-item.is-past { opacity: 0.55; }

.sch-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-left: 2px solid var(--c-text);
  padding: 4px 0 4px 14px;
}
.sch-item.is-past .sch-date { border-left-color: var(--c-text-mute); }
.sch-date .month {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
}
.sch-date .day {
  font-family: var(--ff-en);
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.sch-date .dow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
}

.sch-body { padding-left: 14px; min-width: 0; }

.sch-tag {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  border: 1px solid var(--c-text);
  padding: 3px 10px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.sch-item.is-past .sch-tag { border-color: var(--c-text-mute); color: var(--c-text-mute); }

.sch-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0 0 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sch-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
}
.sch-meta > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: baseline;
}
.sch-meta dt {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
}
.sch-meta dd { margin: 0; }

.sch-note {
  font-size: 12px;
  color: var(--c-text-sub);
  margin: 8px 0 0;
}

/* ---------- Schedule foot ---------- */
.schedule-foot {
  background: var(--c-bg-alt);
  text-align: center;
  padding: 40px 20px;
  font-size: 13px;
  line-height: 2;
}
.schedule-foot a {
  font-family: var(--ff-en);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: #fff;
  padding: 36px 20px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--ff-en);
  font-size: 18px;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
}
.copyright {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ---------- Tablet & up ---------- */
@media (min-width: 360px) {
  .brand-en { font-size: 16px; letter-spacing: 0.14em; }
}
@media (min-width: 400px) {
  .brand-en { font-size: 18px; letter-spacing: 0.18em; }
}

@media (min-width: 600px) {
  .brand-en { font-size: 20px; }
  .page-head { padding: 80px 32px 56px; }
  .page-title { font-size: 48px; letter-spacing: 0.2em; }
  .schedule-section { padding: 56px 32px 72px; }
  .year-title { font-size: 36px; }

  .sch-item {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 32px;
    padding: 32px 0;
  }
  .sch-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 4px 0 4px 16px;
    border-left-width: 2px;
  }
  .sch-date .month { font-size: 13px; }
  .sch-date .day { font-size: 40px; }
  .sch-body { padding-left: 0; }
  .sch-title { font-size: 17px; letter-spacing: 0.04em; }
  .sch-meta { font-size: 14px; }
  .sch-meta > div { grid-template-columns: 64px 1fr; }
  .schedule-foot { font-size: 14px; padding: 56px 32px; }
  .footer-brand { font-size: 22px; }
  .br-sp { display: none; }

  /* home */
  .section { padding: 96px 32px; }
  .section-alt { padding: 96px 32px; }
  .section-head { margin-bottom: 56px; }
  .section-title { font-size: 36px; letter-spacing: 0.2em; }
  .hero-text { padding: 64px 32px 88px; }
  .live-item {
    grid-template-columns: 140px 1fr;
    gap: 28px;
    padding: 28px 0;
  }
  .live-info h3 { font-size: 16px; }
  .disc-list { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .disc-title { font-size: 22px; }
  .library-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .profile-wrap { grid-template-columns: 1fr 1.2fr; gap: 56px; }
  .pf-name-en { font-size: 32px; }
  .profile-text p { font-size: 14px; }
}

@media (min-width: 900px) {
  /* home hero side-by-side */
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
  }
  .hero-img { aspect-ratio: auto; height: 100%; min-height: 640px; }
  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 64px;
    text-align: left;
  }
  .hero-title { font-size: clamp(56px, 6.5vw, 92px); }
  .nav-pc { display: block; }
  .menu-toggle { display: none; }
  .nav-sp { display: none; }
  .section-title { font-size: 40px; }
}

@media (min-width: 1000px) {
  :root { --header-h: 72px; }
  .header-inner { padding: 18px 32px; }
  .brand-en { font-size: 22px; }
  .page-head { padding: 96px 32px 64px; }
  .page-title { font-size: 56px; letter-spacing: 0.22em; }
  .year-title { font-size: 42px; }
  .sch-item { grid-template-columns: 160px minmax(0, 1fr); gap: 48px; }
}

/* =========================================================
   Multi-page additions (uaua.jp 完全踏襲)
   ========================================================= */

/* HERO full (top page hero — uaua.jp追従：フルスクリーン+SCROLL誘導) */
.hero-full {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 1100px;
  background: #111;
  overflow: hidden;
  grid-template-columns: 1fr;
}
.hero-full .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: #111;
  overflow: hidden;
}
.hero-full .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* SCROLL インジケーター */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-scroll-text {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  writing-mode: horizontal-tb;
}
.hero-scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scroll-line 2.4s cubic-bezier(.6,.05,.2,1) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(0); }
  60%  { transform: translateY(200%); }
  100% { transform: translateY(200%); }
}

@media (min-width: 700px) {
  .hero-scroll-text { font-size: 12px; }
  .hero-scroll-line { height: 72px; }
  .hero-scroll { bottom: 36px; }
}

@media (min-width: 900px) {
  .hero-full { height: 100vh; min-height: 640px; }
  .hero-full .hero-img img { object-position: center 25%; }
}

/* News list (full) */
.news-section { max-width: 880px; margin: 0 auto; padding: 40px 20px 56px; }
.news-list-full .news-item { padding: 28px 0; border-bottom: 1px solid var(--c-line); }
.news-list-full .news-item a {
  display: block;
  transition: opacity .2s;
}
.news-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.news-excerpt {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.8;
  margin: 0 0 8px;
}
.news-list-full time {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-text-mute);
}

/* News compact list (top preview) */
.page-home .news-list .news-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
  display: block;
}
.page-home .news-list .news-item a { display: block; }
.page-home .news-title { font-size: 15px; margin-bottom: 6px; }

@media (min-width: 600px) {
  .news-section { padding: 56px 32px 80px; }
  .news-list-full .news-item { padding: 36px 0; }
  .news-title { font-size: 18px; }
  .news-excerpt { font-size: 14px; }
}

/* Pagination */
.pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.pagination .pg-current,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid var(--c-line);
}
.pagination .pg-current { border-color: var(--c-text); background: var(--c-text); color: #fff; }

/* Article (news/disco detail) */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.article-head {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
}
.article-head .page-sub { margin: 0 0 14px; }
.article-title {
  font-family: var(--ff-jp-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 14px;
}
.article-date {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--c-text-sub);
}
.article-body { font-size: 14px; line-height: 2.0; }
.article-body p { margin: 0 0 18px; }
.article-body ul { margin: 0 0 18px; padding-left: 1.2em; list-style: disc; }
.article-body ul li { margin-bottom: 4px; }
.article-back {
  margin-top: 56px;
  text-align: center;
}
.article-back a {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 3px;
}
@media (min-width: 600px) {
  .article { padding: 64px 32px 96px; }
  .article-title { font-size: 28px; }
  .article-body { font-size: 15px; }
}

/* LIVE — region grouped */
.live-section { max-width: 880px; margin: 0 auto; padding: 40px 20px 56px; }
.region-group { margin-bottom: 56px; }
.region-title {
  font-family: var(--ff-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line-strong);
}
.live-list-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.live-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.live-card.is-past { opacity: 0.55; }
.live-region {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
  border: 1px solid var(--c-line);
  padding: 2px 10px;
  margin: 0 0 12px;
}
.live-date-line {
  font-family: var(--ff-en);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.live-venue {
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 0 0 8px;
}
.live-card-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  overflow-wrap: anywhere;
}
.live-more a {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 2px;
}

@media (min-width: 600px) {
  .live-section { padding: 56px 32px 80px; }
  .region-title { font-size: 28px; }
  .live-card {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
  }
  .live-region { margin: 0; align-self: center; justify-self: start; }
  .live-date-line { margin: 0 0 4px; font-size: 24px; }
  .live-venue { margin: 0; }
  .live-card-title { margin: 0; }
  .live-more { margin: 0; }
  .live-card > .live-region { grid-row: 1; }
  .live-card > .live-date-line,
  .live-card > .live-venue,
  .live-card > .live-card-title {
    grid-column: 2;
  }
  .live-card > .live-date-line { grid-row: 1; }
  .live-card > .live-venue { grid-row: 2; }
  .live-card > .live-card-title { grid-row: 3; }
  .live-card > .live-more { grid-column: 3; grid-row: 1 / span 3; align-self: center; }
}

/* LIBRARY */
.library-section { max-width: 1100px; margin: 0 auto; padding: 40px 20px 56px; }
.lib-block { margin-bottom: 56px; }
.lib-block-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.lib-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.lib-thumb { display: block; }
.lib-thumb a { display: block; }
.lib-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5d0e0 0%, #e9b8cc 50%, #f0e6f0 100%);
  transition: opacity .25s;
}
.lib-thumb a:hover .lib-placeholder { opacity: 0.7; }
.lib-credit {
  margin: 16px 0 0;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
}
@media (min-width: 600px) {
  .library-section { padding: 64px 32px 96px; }
  .lib-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .lib-block-title { font-size: 18px; }
}
@media (min-width: 900px) {
  .lib-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* DISCO */
.disco-section { max-width: 880px; margin: 0 auto; padding: 40px 20px 56px; }
.disco-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
}
.disco-tab {
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.disco-tab.is-active { color: var(--c-text); border-bottom-color: var(--c-text); }

.disco-list { display: flex; flex-direction: column; }
.disco-row {
  border-bottom: 1px solid var(--c-line);
}
.disco-row.is-hidden { display: none; }
.disco-row a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}
.disco-cover {
  width: 80px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5d0e0 0%, #e9b8cc 100%);
}
.disco-meta { min-width: 0; }
.disco-cat-label {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--c-text-sub);
  margin: 0 0 4px;
}
.disco-title {
  font-family: var(--ff-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  overflow-wrap: anywhere;
}
.disco-release {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-text-sub);
  margin: 0;
}

@media (min-width: 600px) {
  .disco-section { padding: 56px 32px 80px; }
  .disco-tab { padding: 14px 20px; font-size: 13px; }
  .disco-row a { grid-template-columns: 120px 1fr; gap: 28px; padding: 24px 0; }
  .disco-cover { width: 120px; }
  .disco-title { font-size: 22px; }
}

/* DISCO detail */
.disco-detail {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 64px;
  text-align: center;
}
.disco-detail .page-sub { margin-bottom: 24px; }
.disco-detail-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5d0e0 0%, #e9b8cc 100%);
  margin-bottom: 24px;
}
.disco-detail .disco-cat-label { margin-bottom: 8px; }
.disco-detail-title {
  font-family: var(--ff-en);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.disco-detail .disco-release { margin-bottom: 32px; }
.disco-tracks {
  text-align: left;
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  margin-bottom: 32px;
}
.disco-tracks-head {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--c-text-sub);
}
.disco-tracks ol {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 600px) {
  .disco-detail { padding: 64px 32px 96px; }
  .disco-detail-title { font-size: 42px; }
}

/* PROFILE */
.lang-toggle {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid var(--c-line-strong);
}
.lang-btn {
  background: transparent;
  border: 0;
  padding: 6px 16px;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
  cursor: pointer;
}
.lang-btn.is-active { background: var(--c-text); color: #fff; }

.profile-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.profile-photo {
  margin: 0 0 32px;
}
.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.profile-section .profile-photo:last-child {
  margin: 56px 0 0;
}
.profile-body { margin-bottom: 32px; }
.profile-body.is-hidden { display: none; }
.pf-name-en {
  font-family: var(--ff-en);
  font-size: 28px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
}
.pf-name-jp {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-text-sub);
  margin: 0 0 24px;
}
.profile-lead {
  font-size: 14px;
  line-height: 2.0;
  margin: 0 0 40px;
}
.profile-section-title {
  font-family: var(--ff-jp-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.profile-history {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 13px;
}
.profile-history > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.profile-history dt {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-text-sub);
  padding-top: 3px;
}
.profile-history dd { margin: 0; line-height: 1.7; }
.profile-credits {
  font-size: 13px;
  line-height: 1.9;
  padding-left: 1.2em;
}
.profile-credits li { margin-bottom: 4px; }
@media (min-width: 600px) {
  .profile-section { padding: 56px 32px 80px; }
  .profile-lead { font-size: 15px; }
  .profile-history > div { grid-template-columns: 96px 1fr; }
}

/* CONTACT form */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-note {
  font-size: 12px;
  color: var(--c-text-sub);
  line-height: 1.8;
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form-row .req {
  display: inline-block;
  margin-left: 6px;
  color: #c83e6c;
  font-size: 11px;
  letter-spacing: normal;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row textarea {
  font: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--c-line-strong);
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-row textarea { resize: vertical; line-height: 1.7; }
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--c-text);
  outline-offset: -2px;
}
.form-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}
.form-radio label {
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.form-checkbox {
  text-align: center;
  font-size: 13px;
  margin: 8px 0;
}
.form-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.form-submit button {
  font: inherit;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  padding: 16px 32px;
  background: var(--c-text);
  color: #fff;
  border: 1px solid var(--c-text);
  cursor: pointer;
  min-width: 200px;
  transition: opacity .2s;
}
.form-submit button:hover { opacity: 0.85; }
.form-submit .btn-secondary {
  background: #fff;
  color: var(--c-text);
}

/* CONFIRM list */
.confirm-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px;
}
.confirm-list > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.confirm-list dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-text-sub);
  font-weight: 500;
}
.confirm-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
@media (min-width: 600px) {
  .contact-section { padding: 56px 32px 96px; }
  .confirm-list > div { grid-template-columns: 140px 1fr; gap: 16px; padding: 20px 0; }
}

/* CONTACT done */
.contact-done {
  text-align: center;
  font-size: 14px;
  line-height: 2;
}
.contact-done p { margin: 0 0 12px; }

