/* ==========================================================================
   NEOこぶし 公式サイト style.css
   --------------------------------------------------------------------------
   ・カラーやフォントは冒頭の「CSS変数（:root）」でまとめて管理しています。
     色を変更したい場合はここを書き換えるだけでサイト全体に反映されます。
   ・レイアウトは大きく分けて
       1. 共通設定 / リセット
       2. フォント指定クラス（Google Fonts）
       3. ローディング画面
       4. ヘッダー / ナビゲーション
       5. ファーストビュー（hero）
       6. コンセプトセクション（共通見出し・共通パネルスタイルを含む）
       7. レーベルプロデューサー セクション
       8. NEWSセクション
       9. ARTISTSセクション
       10. RELEASEセクション
       11. フッター
       12. サブページ共通スタイル（ARTISTプロフィール／NEWS記事・一覧）
       13. レスポンシブ対応（メディアクエリ）
     の順に並んでいます。
   ========================================================================== */

/* ---------- 1. 共通設定 / リセット ---------- */
:root {
  /* ベースカラー */
  --color-bg: #070c16;              /* サイト全体の背景（黒に近いネイビー） */
  --color-panel: rgba(23,26,32,0.6);           /* パネル（コンセプト枠内など）の背景 */
  --color-text: #bbbbbb;            /* 基本テキスト色（明るいグレー） */
  --color-text-sub: #777;        /* 本文テキスト（やや落ち着いた色） */

  /* アクセントカラー（グラデーション） */
  --color-pink: #ff2e93;            /* ネオンピンク */
  --color-purple: #be43e1;          /* ネオンパープル */
  --color-blue: #3ec6ff;            /* ネオンブルー（光の川） */
  --color-white: #fefefe;        /* 白 */



  --gradient-main: linear-gradient(90deg, var(--color-pink), var(--color-purple));

  /* フォント */
  --font-jp: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;

  /* レイアウト */
  --header-height: 84px;
  --content-max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 15px;
}

html {
  scroll-behavior: smooth; /* CSS側でもスムーススクロールを補助（JSでも制御） */
}

body {
  background-color: var(--color-bg);
  background-image: url("images/bg.jpg");
  background-repeat: repeat-y;
  background-position: center -400px;
  background-attachment: fixed;
  background-size: cover;
  color: var(--color-text);
  font-family: var(--font-jp);
  line-height: 1.8;
  overflow-x: hidden; /* 背景装飾のはみ出し対策 */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}
p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sp {
  display:none
}
/* ---------- 2. フォント指定クラス（Google Fonts／指定必須） ---------- */
.unica-one-regular {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bruno-ace-sc-regular {
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ---------- 3. ローディング画面 ---------- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: var(--color-bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* JSで body に is-loaded クラスが付くとフェードアウトする */
body.is-loaded #loading-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-pink);
  border-right-color: var(--color-purple);
  animation: spin 0.9s linear infinite;
}

.loading-text {
  font-size: 14px;
  letter-spacing: 0.2em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- 4. ヘッダー / ナビゲーション ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #000;
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.header-inner {
  max-width: var(--content-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
a img.nav_img {
                                max-width: 142px
}
a:hover img.nav_img {
                                opacity: 0.8
}

.logo-main {
  font-size: 26px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--color-pink);
}

/* ナビゲーション本体 */
.global-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.nav-list a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-pink);
}

/* 言語切替スイッチ */
.lang-switch {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0;
  font-size: 12px;
  border: 1px solid #fff;
}

.lang-btn {
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--color-text);
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-btn a:hover {
  color: var(--color-white);
}

.lang-btn.is-active {
  background: var(--gradient-main);
  color: var(--color-white);
  border: 1px solid #fff;
}

/* SNSアイコン */
.sns-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sns-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.sns-icon svg,
.sns-icon__img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.sns-icon:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
}

/* ハンバーガーメニュー（PCでは非表示、スマホ表示時のみ出現） */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- 5. ファーストビュー（hero） ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 100px); /* ファーストビューの下にCONCEPTパネルが少し見えるよう、30px分短くしています */
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景装飾（紅葉・光の川のイラスト画像） */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/bg_header.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* メインタイトル */
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
                                margin: 100px 0 auto;
}
img.hero_logo {
                                max-width: 600px;
                                filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}

/* ---------- 6. コンセプトセクション ---------- */
.concept {
  position: relative;
  z-index: 1; /* ヒーロー背景の上に重なるように */
  margin-top: -200px; /* ファーストビューにCONCEPTパネルが200px程度かかるようにする */
  padding: 0 24px 120px;
  display: flex;
  justify-content: center;
}
.concept-panel {
  width: 100%;
  max-width: var(--content-max-width);
  background-color: var(--color-panel);
  border: 2px solid var(--color-pink);
  border-radius: 4px;
  padding: 56px clamp(24px, 6vw, 80px);
  position: relative;
}

/* 見出し（CONCEPT / LABEL PRODUCER / NEWS など各セクション共通） */
.section-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  background: url("images/line.png") no-repeat bottom center;
  background-size: 100%;
  width: 100%;
}

.section-heading__en {
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.05em;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
}

/* サブページ（PROFILEページなど .page-section を使う画面）の見出しは、
   トップページの各セクション見出しより小さめの固定サイズにする。
   トップページ側（.concept / .producer / .news / .artists / .release）には
   影響しないよう、.page-section 配下だけに限定している。 */
.page-section .section-heading__en {
  font-size: 28px;
}

/* 見出し英字カラー：パネルの枠色に合わせて切り替え */
.section-heading__en--pink {
  color: var(--color-pink);
}
.section-heading__en--blue {
  color: var(--color-blue);
}
.section-heading__en--purple {
  color: var(--color-purple);
}

/* PROFILEページのBIOGRAPHY／SNS-OFFICIAL見出し専用カラー */
.section-heading__en--purple, .section-heading__ja {
  color: var(--color-purple);
}

.section-heading__ja_pink {
  font-size: 14px;
  color: var(--color-pink);
}
.section-heading__ja_blue {
  font-size: 14px;
  color: var(--color-blue);
}
.section-heading__ja_purple {
  font-size: 14px;
  color: var(--color-purple);
}

.concept-body {
}

.concept-body p {
  margin-bottom: 24px;
}

.concept-lead {
  color: #fbadd4 !important;
  font-size: 17px !important;
  margin-bottom: 32px !important;
}
.concept-photo {
  position: absolute;
  width: 160px;
  right:8%; top:130px;
}
/* 枠線とグロー色だけを切り替えるクラスです。 */
.panel--pink {
  border: 2px solid var(--color-pink);
}
.panel--blue {
  border: 2px solid var(--color-blue);
}

.panel--purple {
  border: 2px solid var(--color-purple);
}

/* ---------- 7. レーベルプロデューサー セクション ---------- */
.producer {
  padding: 0 24px 80px;
  display: flex;
  justify-content: center;
}

.producer-panel {
  width: 100%;
  max-width: var(--content-max-width);
  background-color: var(--color-panel);
  border-radius: 4px;
  padding: 56px clamp(24px, 6vw, 80px);
}

.producer-content {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 64px);
}

/* プロフィール写真 */
.producer-photo {
  flex: 0 0 320px;
  width: 320px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background-color: #14141f; /* 画像未設置時のプレースホルダー背景 */
}

.producer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* プロフィールテキスト */
.producer-text {
  flex: 1;
  min-width: 0; /* flexアイテムの横はみ出し防止 */
}

.producer-name {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}


/* ---------- 8. NEWSセクション ---------- */
.news {
  padding: 0 24px 120px;
  display: flex;
  justify-content: center;
}

.news-panel {
  width: 100%;
  max-width: var(--content-max-width);
  background-color: var(--color-panel);
  border-radius: 4px;
  padding: 56px clamp(24px, 6vw, 80px);
  position: relative;
}


/* VIEW ALL ボタン */
.view-all-btn {
  display: block;
  align-items: center;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  border: 1px solid var(--color-pink);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;

  position: absolute;
  top: auto; right: 80px;
}

.view-all-btn:hover {
  background: var(--color-pink);
  color: #0a0a12;
}

/* ニュース一覧 */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  margin: 0 -16px; /* 背景色がパネル幅いっぱいに見えるよう、パディング分を打ち消す */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.25s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  flex: 0 0 auto;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--color-text-sub);
}

/* お知らせ種別タグ：data-tag属性で色を切り替え */
.news-tag {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 8px;
  border: 1px solid currentColor;
  text-align: center;
  min-width: 96px;
}

.news-tag[data-tag="news"] {
  color: var(--color-pink);
}

.news-tag[data-tag="release"] {
  color: var(--color-purple);
}

.news-tag[data-tag="info"] {
  color: var(--color-blue);
}

.news-title {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
}

/* タイトル部分にカーソルを合わせている間、li全体の背景色を変える
   （文字色は変えない）。:has() 対応ブラウザ（Chrome/Edge/Safari 15.4+、
   Firefox 121+）向けの指定です。 */
.news-item:has(.news-title:hover) {
  background-color: #323438;
}

/* ---------- 9. ARTISTSセクション ---------- */
.artists {
  padding: 0 24px 120px;
  display: flex;
  justify-content: center;
}

.artists-panel {
  width: 100%;
  max-width: var(--content-max-width);
  background-color: var(--color-panel);
  border-radius: 4px;
  padding: 56px clamp(24px, 6vw, 80px);
}

/* アーティスト一覧：PCでは3列、タブレット・スマホで自動的に列数を減らす */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px clamp(20px, 3vw, 40px);
}

.artist-card {
  display: flex;
  flex-direction: column;
}

/* プロフィール写真（横長比率で画像内デザインを再現） */
.artist-photo {
  width: 100%;
  aspect-ratio: 11 / 10;
  overflow: hidden;
  border-radius: 4px;
  background-color: #14141f; /* 画像未設置時のプレースホルダー背景 */
  margin-bottom: 20px;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アーティスト名（漢字名・グループ名） */
.artist-name {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}

/* グループ名の場合：ローマ字サブテキストがない分、名前自体をアクセントカラーに */
.artist-name.is-group {
  color: var(--color-purple);
  font-size: clamp(25px, 2vw, 28px);
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
}

/* ローマ字表記（ソロアーティストのみ） */
.artist-name-en {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-purple);
}

/* PROFILEボタン */
.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto; /* カード内の高さが揃うよう、ボタンを下端に揃える */
  padding: 5px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.profile-btn:hover {
  background: var(--color-blue);
  color: #0a0a12;
}

/* ---------- 10. RELEASEセクション ---------- */
.release {
  padding: 0 24px 100px;
  display: flex;
  justify-content: center;
}

.release-panel {
  width: 100%;
  max-width: var(--content-max-width);
  background-color: var(--color-panel);
  border-radius: 4px;
  padding: 56px clamp(24px, 6vw, 80px);
}

/* リリース一覧：PCでは3列（常時表示の1段目、および開閉パネル内の2段目で共通使用） */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px clamp(20px, 3vw, 30px);
}

/* 各段の先頭に入れる発売月ラベル（例：2026/10） */
.release-month {
  font-size: 20px;
  color: var(--color-purple);
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-purple);
}

/* 4列表示にするモディファイア（列数のみを指定。1段目・2段目・3段目のどこに
   付けても使えるよう、間隔（margin-top）はここには含めていません） */
.release-grid--row4 {
  grid-template-columns: repeat(4, 1fr);
}

/* 開閉パネル（release-more-wrap）内で、直前の段の .release-grid の後に
   新しい段（.release-month）が始まるとき、段と段の間に余白を作る。
   1段目の発売月ラベルは見出し（.section-heading）の直後にあり、
   直前が .release-grid ではないため、この余白は付かない。 */
.release-more-wrap .release-grid + .release-month {
  margin-top: 30px;
}

/* MOREボタンで開閉する追加分（2段目・3段目をまとめて包むラッパー）
   開いたときに常時表示の一覧との間隔を作る
   （padding-topはoverflow:hiddenでクリップされるため、
   閉じている間は隙間が生まれず、開いたときだけ余白として現れます） */
.release-more-wrap {
  padding-top: 30px;
}

/* ---------- 汎用アコーディオン（開閉アニメーション） ---------- */
/* script.js の initAccordion() が height を書き換えてアニメーションさせます。
   将来、RELEASE以外の場所でアコーディオンを使う場合も、
   このクラスを付けるだけで同じ開閉アニメーションが適用されます。 */
.accordion-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.release-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #7a3093;
  border-radius: 4px;
  padding: 24px;
}

/* ジャケット写真 */
.release-jacket {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background-color: #14141f; /* 画像未設置時のプレースホルダー背景 */
  margin-bottom: 10px;
}

.release-jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-artist {
  font-weight: 400;
  color: var(--color-pink);
  margin-bottom: 0;
}

.release-date {
  letter-spacing: 0.05em;
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
}

.release-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0;
}

.release-catalog {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* BUYボタン */
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto; /* カードの高さが揃うよう、ボタンを下端に揃える */
  padding: 5px 20px;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--color-purple);
  border: 1px solid var(--color-purple);
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
  margin-bottom: 5px;
}

.buy-btn__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.buy-btn:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

/* ホバー時は背景がアイコンと同系色の紫になるため、
   アイコンだけ白っぽく変化させて視認性を保つ */
.buy-btn:hover .buy-btn__icon {
  filter: brightness(0) invert(1);
}

/* MOREボタン（アコーディオンの開閉トリガー） */
.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 20px auto 0;
  padding: 16px 24px;
  letter-spacing: 0.15em;
  color: var(--color-purple);
  border: 1px solid var(--color-purple);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.more-btn:hover {
  background: rgba(123, 92, 255, 0.12);
}

/* 「＋」アイコン：CSSのみで十字を描画し、開いている間は45度回転して「×」に見せる */
.more-btn__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.more-btn__icon::before,
.more-btn__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}

.more-btn__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.more-btn__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* JSでボタンに is-open クラスが付くと「＋」が「×」に変化する */
.more-btn.is-open .more-btn__icon {
  transform: rotate(45deg);
}

/* ---------- 11. フッター ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding: 72px 24px 48px;
}

/* 背景装飾：PCでは実際のイラスト画像、スマホでは丸いグラデーション（正円）を表示 */
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 左端：波のイラスト（footer_bg_left.jpg） */
.footer-bg__river {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  max-width: 640px;
  aspect-ratio: 1200 / 587;
  background-image: url("images/footer_bg_left.jpg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

/* 右側：紅葉のイラスト（footer_bg_right.jpg） */
.footer-bg__leaves {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  max-width: 640px;
  aspect-ratio: 1200 / 587;
  background-image: url("images/footer_bg_right.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.footer-nav-list a {
  transition: color 0.25s ease;
}

.footer-nav-list a:hover {
  color: var(--color-pink);
}

.footer-sns {
  margin: 0; /* .sns-icons の余白をフッター用にリセット */
}

.footer-copyright {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-text-sub);
}

/* ---------- 12. サブページ共通スタイル（ARTISTプロフィール／NEWS記事・一覧） ---------- */
/* news/ や mochizukiluca/ などのサブページで共通して使う部品です。
   パネル自体は既存の .news-panel（枠：panel--pink）/ .artists-panel（枠：panel--blue）
   をそのまま流用しているため、ここでは「固定ヘッダー分の余白」「中央寄せの
   ページタイトル」「プロフィール詳細」「SNSリンク一覧」「記事本文まわり」など、
   サブページ特有のパーツだけを定義しています。 */

/* 固定ヘッダーの高さ分、コンテンツ開始位置を下げる */
.subpage-main {
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 8px;
}

/* ページ中央に大きく表示するタイトル（ARTIST／NEWSなど） */
.page-hero {
  text-align: center;
  padding: 0 24px 40px;
}

.page-hero__en {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.page-hero__en--blue {
  color: var(--color-blue);
}

.page-hero__en--pink {
  color: var(--color-pink);
}

.page-hero__ja--pink {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-pink);
}
.page-hero__ja--blue {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-blue);
}

/* パネルを画面中央に配置するための共通ラッパー
   （.concept / .artists / .release などの各セクションと同じ考え方） */
.page-section {
  padding: 0 24px 56px;
  display: flex;
  justify-content: center;
}

/* ---- ARTISTプロフィール：写真＋基本情報 ---- */
.artist-profile-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.artist-profile-photo {
  flex: 0 0 320px;
  width: 320px;
  aspect-ratio: 3 / 4.3;
  overflow: hidden;
  border-radius: 4px;
  background-color: #14141f; /* 画像未設置時のプレースホルダー背景 */
}

.artist-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-profile-info {
  width: 100%;
}

.artist-profile-name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
}

.artist-profile-name-en {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.08em;
  color: #bf43e1;
  margin-bottom: 20px;
  border-bottom: 1px solid #be43e1;
}

/* プロフィール詳細（ニックネーム・誕生日など）：1項目=1行、区切り線付き */
.artist-profile-details {
  border-bottom: 1px solid #3ec6ff;
}
.artist-profile-details__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 0;
  border-bottom: 1px solid #3ec6ff;
  font-size: 14px;
}

.artist-profile-details__row:last-child {
  border-bottom: none;
}

.artist-profile-details__row dt {
  flex: 0 0 auto;
  min-width: 120px;
}

.artist-profile-details__row dd {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
}

/* ---- グループプロフィール（写真・グループ名・メンバー名を中央揃えで表示） ---- */
/* ソロアーティスト（.artist-profile-header）が写真＋情報の横並びなのに対し、
   グループはこちらの中央揃えレイアウトを使用します。 */
.group-profile {
  text-align: center;
  margin-bottom: 48px;
}

.group-profile-photo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 32px;
}

.group-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.group-profile-name {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(25px, 3vw, 40px);
  margin-bottom: 20px;
  border-bottom: 1px solid #be43e1;
  color: var(--color-purple);
}

.group-profile-members {
  font-size: 14px;
  color: var(--color-text);
}

/* ---- BIOGRAPHY（経歴）本文 ---- */
/* リード文（最初の1行だけ強調したい場合に使用。任意） */
.profile-biography__lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
}

.profile-biography__body p {
  margin-bottom: 20px;
}

.profile-biography__body p:last-child {
  margin-bottom: 0;
}

/* ---- MOVIE：動画一覧（1列に2件まで。1件だけのときは中央寄せ） ---- */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.movie-item__title {
  font-size: 16px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 400;
}

/* 16:9固定の動画エリア（iframeの縦横比をレスポンシブに保つ） */
.movie-item__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background-color: #000;
}

.movie-item__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 「最後の1件」かつ「奇数番目」＝合計件数が奇数のときの最後の1件（PC表示）：
   1件・3件・5件…のように余る1件を、2カラム分の幅いっぱいに広げず
   中央に最大580px幅で表示する。スマホ・タブレット幅ではこの上限を解除し
   （960px以下のメディアクエリ内で上書き）、パネル幅いっぱいに可変させる。
   ▼ width: 100% が無いと、margin: auto の効果でグリッドアイテムが
     「中身に合わせて縮む」挙動になり、中の.movie-item__frame（width: 100%指定）と
     幅の基準が循環してつぶれてしまうため、必ず明示しておく。 */
.movie-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- SNS/OFFICIAL：公式リンク一覧 ---- */
.sns-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sns-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background-color: #000;
  border: 1px solid;
    border-color: var(--color-blue);
  border-radius: 4px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sns-link-btn:hover {
  color: var(--color-white);
  border-color: #fefefe;
  background-color: #323438;
}

.sns-link-btn__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

/* まだリンク先が決まっていない空き枠。
   実際のリンクが決まったら .sns-link-btn の中身（アイコン＋テキスト）を
   ここに追加し、is-empty クラスを外してください。 */
.sns-link-btn.is-empty {
  border: none
}

/* ---- NEWS記事：日付・見出し・リード文・本文 ---- */
.news-article__meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.news-article__date {
  letter-spacing: 0.05em;
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

.news-article__title {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--color-white);
  padding: 30px 0 10px;
  border-top: 1px solid #be43e1;
  text-shadow: 0px 0px 20px rgba(255, 46, 147, 1);
}

.news-article__lead {
  margin-bottom: 30px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--color-white);
  text-shadow: 0px 0px 10px rgba(255, 46, 147, 1);
}

/* 本文と各ボタンの間に入れる区切り線 */
.news-article__divider {
  border: none;
  border-top: 1px solid #be43e1;
  margin: 30px 0;
}

.news-article__body {
  padding: 20px 0 ;
}
.news-article__body p {
  margin-bottom: 20px;
}

.news-article__body p:last-child {
  margin-bottom: 0;
}


/* VIEW ALL ボタン */
.news-btn {
  display: inline-block;
  align-items: center;
  margin: 2rem 0 1rem;
  padding: 5px 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  border: 1px solid var(--color-pink);
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.news-btn:hover {
  background: var(--color-pink);
  color: #0a0a12;
}

/* 「← BACK」リンク（ニュース一覧に戻る） */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: color 0.25s ease;
}

.back-link:hover {
  color: var(--color-pink);
}

  /* パネル */
  .concept-panel,
  .producer-panel,
  .news-panel,
  .artists-panel,
  .release-panel {
  border-radius: 20px;
  corner-shape: bevel;
  }

/* ---------- 13. レスポンシブ対応（スマートフォン幅375px〜を想定） ---------- */
@media (max-width: 960px) {
  .header-inner {
    padding: 0 20px;
  }

  /* ハンバーガーメニューを表示し、ナビゲーションはドロワー化 */
  .menu-toggle {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background-color: #000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 40px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* JSでheaderに is-nav-open が付くとメニューが開く */
  #site-header.is-nav-open .global-nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 18px;
  }

  /* ハンバーガーが×印に変化 */
  #site-header.is-nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #site-header.is-nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  #site-header.is-nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* LABEL PRODUCER：写真とテキストを横並び→縦並びに切り替え */
  .producer-content {
    flex-direction: column;
    align-items: center;
  }

  .producer-photo {
    flex: 0 0 auto;
    width: min(70vw, 320px);
    text-align: center;
  }

  .producer-profile {
    text-align: left; /* 本文は読みやすさ優先で左揃えのまま */
  }

  /* ARTISTS：3列→2列に切り替え（3枚目のグループ写真だけ2列分の幅を使う） */
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-card:last-child {
    grid-column: 1 / -1;
  }

  .artist-card:last-child .artist-photo {
    aspect-ratio: 21 / 10; /* 横幅が広がる分、写真の縦横比を調整 */
  }

  /* RELEASE：3列→2列に切り替え */
  .release-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ARTISTプロフィール：写真とテキストを横並び→縦並びに切り替え */
  .artist-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-profile-photo {
    width: min(70vw, 320px);
  }


  .artist-profile-details__row {
    text-align: left;
  }

  /* SNS/OFFICIAL：4列→2列に切り替え */
  .sns-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* MOVIE：2列→1列に切り替え。奇数件の最後の1件も含めてパネル幅いっぱいに可変させる
     （PC表示専用のmax-width指定をここで解除する） */
  .movie-grid {
    grid-template-columns: 1fr;
  }

  .movie-item:last-child:nth-child(odd) {
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  /* ヒーロー部分：スマホでは画面の高さの80%程度に
     （CONCEPTパネルとの30pxのかかり具合はPC/スマホ共通のままにしています） */
  .hero {
    min-height: 80vh;
    height: 80vh;
  }

  /* ロゴ（.hero-inner）：PC用の margin: 100px 0 auto; を打ち消し、
     .hero の align-items: center による本来の高さセンター揃えを効かせる */
  .hero-inner {
    margin: 0;
  }

  /* フッター背景：スマホでは画像を使わず、丸いグラデーションを表示する。
     width/heightをvmin（画面の短い辺基準）で揃えることで、
     画面サイズが変わっても正円のまま保たれるようにしている。 */
  .footer-bg__river,
  .footer-bg__leaves {
    background-image: none;
    width: 55vmin;
    max-width: none;
    aspect-ratio: 1 / 1;
  }

  .footer-bg__river {
    left: -15vmin;
    bottom: -15vmin;
    background: radial-gradient(circle at center, rgba(62, 198, 255, 0.4), transparent 70%);
    filter: blur(10px);
  }

  .footer-bg__leaves {
    right: -15vmin;
    top: -15vmin;
    background: radial-gradient(circle at center, rgba(255, 46, 147, 0.3), transparent 70%);
    filter: blur(4px);
  }

.sp {
  display: inline
}


h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

  .logo-main {
    font-size: 20px;
  }

  .logo-sub {
    font-size: 7px;
  }

  .hero-subtitle {
    letter-spacing: 0.15em;
  }

  /* パネル */
  .concept-panel,
  .producer-panel,
  .news-panel,
  .artists-panel,
  .release-panel {
    padding: 36px 20px;
  border-radius: 20px;
  corner-shape: bevel;
  }

  .section-heading {
    flex-direction: column;
    gap: 8px;
  width: 100%
  }

.concept-lead {
  font-size: 16px !important;
  line-height: 1.5;
  margin-bottom: 32px !important;
}

  /* CONCEPT */
.concept {
  margin-top: -50px; /* ファーストビューにCONCEPTパネルが30px程度かかるようにする */
}
.concept-photo {
                                display: none;
}

  /* NEWS：VIEW ALLボタンを見出しの下に回り込ませる */

  .view-all-btn {
  display: inline-flex;
    align-self: flex-start;

  top: auto; right: 40px;
  }

  /* NEWS一覧：日付・タグ・タイトルを縦並びに */
  .news-item {
    flex-wrap: wrap;
    gap: 8px 10px;
  margin: 0 -5px; /* 背景色がパネル幅いっぱいに見えるよう、パディング分を打ち消す */
  }

  .news-title {
    flex: 1 1 100%;
    order: 3;
  }

  /* ARTISTS：2列→1列の縦並びに切り替え、写真比率も正方形寄りに戻す */
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist-card:last-child {
    grid-column: auto;
  }

  .artist-card:last-child .artist-photo {
    aspect-ratio: 11 / 10;
  }

  /* RELEASE：2列→1列の縦並びに切り替え */
  .release-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .more-btn {
    max-width: 100%;
  }

  /* フッター：ナビゲーションの行間を詰めて見やすく */
  .footer-nav-list {
    gap: 16px 24px;
    font-size: 15px;
  }

  /* SNS/OFFICIAL：2列のまま、余白だけ少し詰める */
  .sns-link-grid {
    gap: 12px;
  }

  .sns-link-btn {
    padding: 14px 12px;
    font-size: 13px;
  }

  /* プロフィール詳細：ラベルと値を横並び→縦並びにして読みやすく */
  .artist-profile-details__row {
    flex-direction: column;
    gap: 4px;
  }

  .artist-profile-details__row dt {
    min-width: 0;
    font-size: 12px;
  }

  /* NEWS記事：見出し・本文サイズを少し縮小 */
  .news-article__lead,
  .news-article__body p {
    font-size: 14px;
  }

  /* 背景画像：スマホ用に差し替え。
     PC用の background-attachment: fixed / background-size: cover /
     background-position の固定値は解除し、
     横幅にぴったり合わせて（background-size: 100% auto）
     repeat-y で縦に自然に繰り返し表示されるようにしている。 */
  body {
    background-image: url("images/bg_sp.jpg");
    background-attachment: scroll;
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
  }

  .hero-bg {
    background-image: url("images/bg_header_sp.png");
    background-position: center top;
  }
}

/* 480px程度の小型端末向け微調整 */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

 
img.hero_logo {
                                max-width: 80%;
                                margin: 0 auto
}

  .news-tag {
    min-width: auto;
    padding: 4px 12px;
  }

  .release-card {
    padding: 16px;
  }
}

/* ---------- LABEL PRODUCERのSNSリンクボタン（X / YouTube） ---------- */
/* PROFILEページの .sns-link-btn と同じ見た目を、2つだけのボタン用に
   グリッドではなくフレックスで並べています。 */
.producer-sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.producer-sns-links .sns-link-btn {
  flex: 0 1 220px;
}

/* ---------- 動画ライトボックス（MOVIEボタンでYouTube動画をポップアップ表示） ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

/* 16:9固定の動画エリア */
.lightbox__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(190, 67, 225, 0.3);
}

.lightbox__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.lightbox__close:hover {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
}

/* ライトボックス表示中は背景側のスクロールを止める（script.jsがbodyに付与） */
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox {
    padding: 16px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}
