/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f1eadf;
  --paper: #f7f1e8;
  --surface: #ebe2d3;
  --surface2: #fff8ed;
  --ink: #1f1a15;
  --text: #262019;
  --muted: #766b5d;
  --border: #d6cab9;
  --gold: #9b6a3b;
  --gold-dim: rgba(155,106,59,0.16);
  --olive: #334133;
  --charcoal: #14110e;
  --font-en: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --ease: 0.3s ease;
  --max: 1080px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ja);
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31,26,21,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,26,21,0.025) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  opacity: 0.35;
}

a { color: inherit; text-decoration: none; transition: opacity var(--ease); }
a:hover { opacity: 0.6; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

/* =============================================
   HEADER
============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(20,17,14,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247,241,232,0.12);
  transition: background var(--ease);
}
.header__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; }
.header__logo:hover { opacity: 0.75; }
.header__logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0.85);
  transition: filter var(--ease);
}
.header__logo:hover .header__logo-img { filter: brightness(1); }
.header__nav-list {
  display: flex; gap: 1.8rem;
}
.header__nav-list a {
  font-family: var(--font-en); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.14em; color: rgba(247,241,232,0.68);
  transition: color var(--ease);
}
.header__nav-list a:hover { color: #fff8ed; opacity: 1; }
.header__menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.header__menu-btn span {
  display: block; width: 22px; height: 1.5px; background: #fff8ed;
  transition: all var(--ease);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding: 6rem 0 4.25rem;
  color: #fff8ed;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* 写真が読み込めない場合のフォールバック */
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  z-index: -1;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20,17,14,0.78) 0%,
      rgba(20,17,14,0.52) 42%,
      rgba(20,17,14,0.16) 75%),
    linear-gradient(to bottom,
      rgba(20,17,14,0.18) 0%,
      rgba(20,17,14,0.1) 46%,
      rgba(20,17,14,0.72) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,248,237,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,248,237,0.12) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: soft-light;
  animation: grainDrift 16s linear infinite;
}
@keyframes grainDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-26px,18px,0); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: end;
}
.hero__content {
  max-width: 700px;
}
.hero__logo-img {
  width: clamp(150px, 18vw, 260px);
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.hero__sub {
  font-family: var(--font-en); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.34em; color: #d5b583;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
  font-weight: 500;
  line-height: 0.94;
  max-width: 760px;
  text-wrap: balance;
}
.hero__lead {
  max-width: 640px;
  margin-top: 1.4rem;
  color: rgba(255,248,237,0.82);
  font-size: clamp(0.88rem, 1.45vw, 0.98rem);
  line-height: 1.88;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero__listen-btn,
.hero__text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__listen-btn {
  border: 1px solid rgba(255,248,237,0.72);
  background: #fff8ed;
  color: var(--charcoal);
  padding: 0 1.45rem;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.hero__listen-btn:hover {
  transform: translateY(-2px);
  background: #d5b583;
  border-color: #d5b583;
}
.hero__text-link {
  color: rgba(255,248,237,0.78);
  border-bottom: 1px solid rgba(255,248,237,0.34);
}
.hero__release {
  justify-self: end;
  width: min(100%, 360px);
}
.hero-release__card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255,248,237,0.22);
  background: rgba(20,17,14,0.54);
  color: #fff8ed;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.hero-release__card:hover {
  transform: translateY(-5px);
  border-color: rgba(213,181,131,0.72);
  background: rgba(20,17,14,0.68);
}
.hero-release__disc {
  position: absolute;
  width: 146px;
  height: 146px;
  left: 70px;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(255,248,237,0.18) 0 7px, transparent 8px),
    repeating-radial-gradient(circle, rgba(255,248,237,0.16) 0 1px, transparent 1px 8px),
    #17130f;
  opacity: 0.9;
  animation: recordSpin 18s linear infinite;
}
@keyframes recordSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.hero-release__art {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}
.hero-release__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-release__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.28rem;
}
.hero-release__eyebrow,
.hero-release__caption {
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-release__eyebrow { color: #d5b583; }
.hero-release__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.hero-release__caption { color: rgba(255,248,237,0.64); }
.hero-release__card:hover .hero-release__art img { transform: scale(1.04); transition: transform 0.6s ease; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll span {
  font-family: var(--font-en); font-size: 0.58rem;
  letter-spacing: 0.25em; color: rgba(255,248,237,0.52);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,248,237,0.56), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* =============================================
   SECTIONS
============================================= */
.section { padding: 5.5rem 0; background: var(--paper); }
.section:nth-child(even) { background: var(--surface); }
.section__inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section__title {
  font-family: var(--font-en); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; color: var(--muted);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.section__title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* =============================================
   NEWS
============================================= */
.news__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.news__feature-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 190px;
  border: 1px solid rgba(31,26,21,0.12);
  background: rgba(255,248,237,0.42);
  overflow: hidden;
  transition: transform var(--ease), opacity var(--ease);
}
.news__feature-card:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}
.news__feature-img {
  display: block;
  background: var(--surface2);
  overflow: hidden;
}
.news__feature-img img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.news__feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem;
}
.news__feature-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.news__feature-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  color: var(--ink);
}
.news__feature-summary {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
}
.news__list { display: flex; flex-direction: column; }
.news__item {
  display: grid; grid-template-columns: 110px auto 1fr;
  gap: 1.2rem; align-items: center;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity var(--ease);
}
.news__item:first-child { border-top: 1px solid var(--border); }
.news__item:hover { opacity: 0.55; }
.news__item a { display: contents; }
.news__item-date {
  font-family: var(--font-en); font-size: 0.72rem;
  letter-spacing: 0.06em; color: var(--muted);
}
.news__item-cat {
  font-family: var(--font-en); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; padding: 0.2rem 0.6rem;
  border: 1px solid var(--border); color: var(--muted); white-space: nowrap;
}
.news__item-title { font-size: 0.88rem; color: var(--text); }

/* =============================================
   LIVE
============================================= */
.live__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.live__card {
  background: rgba(255,248,237,0.58); border: 1px solid var(--border);
  cursor: pointer; transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  overflow: hidden;
}
.live__card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(31,26,21,0.08); }
.live__card-img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--surface2);
}
.live__card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.live__card-img--flyer {
  aspect-ratio: 4/5;
  padding: 0.75rem;
  background:
    linear-gradient(145deg, rgba(255,248,237,0.78), rgba(235,226,211,0.72));
}
.live__card-img--flyer img {
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(31,26,21,0.12);
}
.live__card:hover .live__card-img img { transform: scale(1.04); }
.live__card:hover .live__card-img--flyer img { transform: scale(1.015); }
.live__card-img--fallback { background: var(--surface2); }
.live__card-body { padding: 1.2rem 1.4rem 1.4rem; }
.live__card-date {
  font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 0.3rem;
}
.live__card-perform {
  font-family: var(--font-en); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.live__card-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.live__card-venue { font-size: 0.78rem; color: var(--muted); }
.live__card-footer { margin-top: 1rem; }
.live__badge {
  font-family: var(--font-en); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; padding: 0.3rem 0.9rem; border: 1px solid; display: inline-block;
}
.live__badge--ticket { border-color: var(--gold); color: var(--gold); }
.live__badge--soldout { border-color: var(--muted); color: var(--muted); }
.live__badge--free { border-color: #7ec87e; color: #7ec87e; }

/* LIVE — SNS note */
.live__sns-note {
  margin-top: 2rem; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.03em;
}
.live__sns-note a {
  color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.3);
  transition: border-color var(--ease);
}
.live__sns-note a:hover { border-bottom-color: var(--gold); }

/* =============================================
   JOURNAL / 旅の途中
============================================= */
.journal__intro {
  max-width: 560px;
  margin: -1rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 2;
}
.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.journal__item {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 280px;
  padding: 1.6rem;
  border: 1px solid rgba(31,26,21,0.12);
  background:
    linear-gradient(145deg, rgba(255,248,237,0.72), rgba(235,226,211,0.74));
  text-decoration: none; color: var(--text);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.journal__item::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.journal__item::after {
  content: '';
  position: absolute;
  right: -46px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(155,106,59,0.16);
  border-radius: 50%;
}
.journal__item:hover {
  transform: translateY(-5px);
  border-color: rgba(155,106,59,0.42);
  background:
    linear-gradient(145deg, rgba(255,248,237,0.9), rgba(235,226,211,0.82));
  box-shadow: 0 20px 42px rgba(31,26,21,0.09);
  opacity: 1;
}
.journal__item:hover::before { transform: scaleX(1); }
.journal__topline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.journal__icon {
  width: 1.5rem; height: 1.5rem; fill: var(--text);
  transition: fill var(--ease), transform var(--ease), opacity var(--ease);
}
.journal__item:hover .journal__icon { fill: var(--gold); transform: scale(1.08); }
.journal__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(31,26,21,0.12);
}
.journal__platform {
  font-family: var(--font-en); font-size: 0.62rem; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.55rem;
}
.journal__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1rem;
  color: var(--ink);
}
.journal__desc {
  position: relative;
  z-index: 1;
  font-size: 0.86rem; line-height: 1.95; color: var(--text);
  margin-bottom: 1.8rem; flex: 1;
}
.journal__link {
  position: relative;
  z-index: 1;
  font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.journal__link::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-left: 0.7rem;
  vertical-align: middle;
  background: currentColor;
  transition: width var(--ease), background var(--ease);
}
.journal__item:hover .journal__link { color: var(--gold); }
.journal__item:hover .journal__link::after {
  width: 42px;
  background: var(--gold);
}

/* =============================================
   PROFILE
============================================= */
.profile__wrap {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 4rem; align-items: start;
}
.profile__img {
  aspect-ratio: 3/4; overflow: hidden; background: var(--surface2);
}
.profile__img-placeholder {
  width: 100%; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #222);
  font-family: var(--font-en); font-size: 1.8rem;
  font-weight: 300; letter-spacing: 0.2em; color: var(--border);
}
.profile__img img { width: 100%; height: 100%; object-fit: cover; }
.profile__name {
  font-family: var(--font-en); font-size: 1.8rem;
  font-weight: 300; letter-spacing: 0.2em; color: var(--text);
  margin-bottom: 1.2rem;
}
.profile__bio {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 2rem;
}
.profile__bio p + p {
  margin-top: 0.9rem;
}
.profile__social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 50%;
  transition: all var(--ease);
}
.social-link:hover { border-color: var(--text); opacity: 1; }
.social-link svg { width: 15px; height: 15px; fill: var(--muted); transition: fill var(--ease); }
.social-link:hover svg { fill: var(--text); }

/* =============================================
   DISCOGRAPHY
============================================= */
.disc__tabs {
  display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.disc__tab {
  font-family: var(--font-en); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; padding: 0.45rem 1.2rem;
  background: none; border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; transition: all var(--ease);
}
.disc__tab:hover { border-color: var(--muted); color: var(--text); }
.disc__tab.is-active { border-color: var(--gold); color: var(--gold); }

.disc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.disc__item {
  cursor: pointer;
  transition: transform var(--ease);
}
.disc__item:hover { transform: translateY(-4px); }
.disc__item-img {
  aspect-ratio: 1; background: var(--surface2);
  overflow: hidden; margin-bottom: 0.9rem; position: relative;
  border: 1px solid rgba(31,26,21,0.08);
  box-shadow: 0 14px 32px rgba(31,26,21,0.08);
}
.disc__item-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.disc__item:hover .disc__item-img img { transform: scale(1.06); }
.disc__item-img-placeholder {
  width: 100%; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  font-family: var(--font-en); font-size: 0.6rem;
  letter-spacing: 0.1em; color: var(--border);
  text-align: center; padding: 1rem;
}
/* 再生アイコンオーバーレイ */
.disc__item-img::after {
  content: '▶';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity var(--ease);
}
.disc__item:hover .disc__item-img::after { opacity: 1; }
.disc__item-type {
  font-family: var(--font-en); font-size: 0.58rem;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.25rem;
}
.disc__item-title { font-size: 0.82rem; font-weight: 500; margin-bottom: 0.2rem; }
.disc__item-year { font-family: var(--font-en); font-size: 0.68rem; color: var(--muted); }

/* =============================================
   PLAYER PANEL
============================================= */
.player-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,17,14,0.72);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.player-overlay.is-open { display: block; }

.player-panel {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 301;
  background: #14110e;
  border-top: 1px solid rgba(247,241,232,0.14);
  border-radius: 16px 16px 0 0;
  color: #fff8ed;
  max-height: 80vh; overflow-y: auto;
  animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.player-panel.is-open { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.player-panel__inner {
  max-width: 720px; margin: 0 auto;
  padding: 2rem 2rem 3rem;
  position: relative;
}
.player-panel__close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.player-panel__close:hover { background: rgba(255,248,237,0.08); color: #fff8ed; }

.player-panel__info {
  display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem;
}
.player-panel__jacket {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--surface2); overflow: hidden;
}
.player-panel__jacket img { width: 100%; height: 100%; object-fit: cover; }
.player-panel__jacket-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  font-size: 1.5rem;
}
.player-panel__type {
  font-family: var(--font-en); font-size: 0.58rem;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.3rem;
}
.player-panel__title {
  font-size: 1.1rem; font-weight: 500; margin-bottom: 0.25rem;
  color: #fff8ed;
}
.player-panel__year {
  font-family: var(--font-en); font-size: 0.72rem; color: var(--muted);
}

.player-panel__embeds { display: flex; flex-direction: column; gap: 1rem; }

/* Spotify embed */
.embed-spotify iframe {
  border-radius: 10px;
  width: 100%;
}
/* Apple Music embed */
.embed-apple iframe {
  border-radius: 10px;
  width: 100%;
}
/* YouTube embed */
.embed-youtube iframe {
  border-radius: 10px;
  width: 100%; aspect-ratio: 16/9;
}

.embed-label {
  font-family: var(--font-en); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.15em;
  color: var(--muted); margin-bottom: 0.5rem;
}
.embed-no-link {
  padding: 1.2rem;
  border: 1px dashed rgba(247,241,232,0.2);
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255,248,237,0.58);
  text-align: center;
}
.embed-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,241,232,0.2);
  border-radius: 10px;
  background: rgba(255,248,237,0.06);
  color: #fff8ed;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.embed-link:hover {
  opacity: 1;
  border-color: #1db954;
  background: rgba(29,185,84,0.14);
  color: #fff;
}

/* =============================================
   WORKS
============================================= */
.works__section {
  margin-bottom: 4rem;
}
.works__section:last-child {
  margin-bottom: 0;
}
.works__section:not(.works__section--artist) {
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.works__section-head {
  max-width: 620px;
  margin-bottom: 1.6rem;
}
.works__section-kicker {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.works__section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.works__section-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.9;
}
.works__section--artist {
  padding: 1.6rem;
  border: 1px solid rgba(31,26,21,0.12);
  background:
    linear-gradient(145deg, rgba(255,248,237,0.68), rgba(235,226,211,0.78));
  box-shadow: 0 18px 42px rgba(31,26,21,0.05);
}
.works__subsection {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(31,26,21,0.12);
}
.works__subsection-title {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
/* アーティストグループ */
.works__group { margin-bottom: 3rem; }
.works__group-name {
  font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
  border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; margin-bottom: 1.2rem;
}
.works__group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.works__group-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

/* 個別アイテム */
.works__item { cursor: pointer; }
.works__item:hover .works__item-thumb img { transform: scale(1.05); }
.works__item-thumb {
  aspect-ratio: 16/9; background: var(--surface2);
  overflow: hidden; position: relative;
}
.works__item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.works__item-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); opacity: 0; transition: opacity var(--ease);
}
.works__item:hover .works__item-play { opacity: 1; }
.works__item-play svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6)); }
.works__item-title {
  font-size: 0.78rem; font-weight: 500; margin-top: 0.5rem;
  line-height: 1.4; color: var(--text);
}
.works__item-role {
  font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.4;
}

/* =============================================
   CONTACT
============================================= */
.contact__text {
  max-width: 560px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2.1rem;
}
.contact__mail {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  font-family: var(--font-en);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid rgba(31,26,21,0.28);
  transition: color var(--ease), border-color var(--ease);
}
.contact__mail:hover {
  opacity: 1;
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.contact__form { max-width: 560px; }
.form__group { margin-bottom: 1.4rem; }
.form__group label {
  display: block; font-family: var(--font-en); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 0.45rem;
}
.form__group input,
.form__group textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); padding: 0.7rem 1rem;
  font-family: var(--font-ja); font-size: 0.88rem;
  outline: none; transition: border-color var(--ease); resize: vertical;
}
.form__group input:focus, .form__group textarea:focus { border-color: var(--muted); }
.form__group input::placeholder, .form__group textarea::placeholder { color: #aa9d8d; }
.btn { display: inline-block; padding: 0.7rem 2.2rem; font-family: var(--font-en); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; cursor: pointer; transition: all var(--ease); border: none; }
.btn--primary { background: var(--text); color: var(--bg); }
.btn--primary:hover { background: var(--gold); opacity: 1; color: #000; }

/* =============================================
   FOOTER
============================================= */
.footer { background: #14110e; border-top: 1px solid rgba(247,241,232,0.12); padding: 3rem 0; text-align: center; color: #fff8ed; }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.footer__logo-img {
  height: 40px; width: auto;
  display: block; margin: 0 auto 1.5rem;
  opacity: 0.7;
}
.footer__social { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.8rem; }
.footer__journal-links {
  font-size: 0.72rem; letter-spacing: 0.06em; margin-bottom: 1.5rem;
  color: var(--muted); line-height: 2;
}
.footer__journal-links a {
  color: rgba(255,248,237,0.6); text-decoration: none;
  transition: color var(--ease);
}
.footer__journal-links a:hover { color: #d5b583; }
.footer__journal-sep { margin: 0 0.6rem; opacity: 0.4; }
.footer__copy { font-size: 0.72rem; color: rgba(255,248,237,0.52); line-height: 1.9; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .header__nav {
    display: none; position: fixed;
    inset: 60px 0 0 0; background: rgba(20,17,14,0.98);
    backdrop-filter: blur(20px); padding: 2rem; flex-direction: column;
  }
  .header__nav.is-open { display: flex; }
  .header__nav-list { flex-direction: column; gap: 1.5rem; }
  .header__nav-list a { font-size: 1rem; color: #fff8ed; }
  .header__menu-btn { display: flex; }

  .hero {
    min-height: auto;
    padding: 6.5rem 0 4.5rem;
  }
  .hero__bg {
    background-position: 58% center;
  }
  .hero__bg::after {
    background:
      linear-gradient(to bottom,
        rgba(20,17,14,0.72) 0%,
        rgba(20,17,14,0.36) 38%,
        rgba(20,17,14,0.82) 100%);
  }
  .hero__inner {
    width: min(100% - 2rem, var(--max));
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.4rem;
  }
  .hero__title {
    font-size: clamp(2.7rem, 14vw, 4.35rem);
  }
  .hero__lead {
    font-size: 0.86rem;
    line-height: 1.9;
  }
  .hero__release {
    justify-self: stretch;
    width: 100%;
  }
  .hero-release__card {
    grid-template-columns: 96px 1fr;
  }
  .hero-release__disc {
    width: 124px;
    height: 124px;
    left: 56px;
  }
  .hero__scroll { display: none; }

  .profile__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .live__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .news__featured { grid-template-columns: 1fr; }
  .news__feature-card { grid-template-columns: 1fr; min-height: 0; }
  .news__feature-img img { min-height: 210px; }
  .news__item { grid-template-columns: 1fr; gap: 0.35rem; }
  .journal__intro { margin-top: -0.8rem; font-size: 0.84rem; }
  .journal__grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .journal__item {
    min-height: 0;
    padding: 1.35rem;
    border-right: 1px solid rgba(31,26,21,0.12) !important;
    border-bottom: 1px solid rgba(31,26,21,0.12);
  }
  .journal__headline { font-size: 2rem; }
  .footer__journal-links { text-align: center; }
  .footer__journal-sep { display: none; }
  .footer__journal-links a { display: block; margin-bottom: 0.4rem; }
  .news__item-cat { display: inline-block; }
  .section { padding: 4rem 0; }
  .player-panel__inner { padding: 1.5rem 1.2rem 2.5rem; }
}
