@charset "UTF-8";

/* ========== GLOBAL ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  background: #ffffff;
  color: #222;
}

/* ラッパー全体（最大幅） */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
}

/* ========== HEADER ========== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.site-title a {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #111;
}

/* グローバルナビ */
.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}

.global-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.global-nav a:hover {
  color: #000;
}

/* ヘッダーロゴ（SVG） */
.header-logo {
  height: 26px;
  width: auto;
  display: block;
}

/* ========== TOP NAV（ページ右上のENなど） ========== */
.site-nav {
  text-align: right;
  padding: 16px 40px 0;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  margin-left: 24px;
}

.site-nav a:hover {
  opacity: 0.6;
}

/* ========== HERO（トップのロゴ＆シンボル） ========== */
.hero {
  text-align: center;
  margin-bottom: 32px;
}

.hero-symbol {
  width: 220px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.hero-logo-wrap {
  margin-bottom: 12px;
}

.hero-logo {
  width: 200px;
  height: auto;
}

.hero-title {
  margin: 0 0 8px;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: #777;
  margin: -4px 0 0;
}

/* PCで少し大きめに */
@media (min-width: 768px) {
  .hero {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
  }

  .hero-symbol {
    width: 280px;
    margin-bottom: 20px;
  }

  .hero-logo {
    width: 240px;
  }

  .hero-logo,
  .hero-symbol {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    text-align: center;
  }
}

/* ========== CONTENT 基本 ========== */
.content {
  padding: 24px 16px 40px;
}

/* セクション共通 */
.section {
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-body p {
  margin: 0 0 0.8em;
}

/* ========== CARD（汎用カード） ========== */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid #eee;
  padding: 12px 14px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.card-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 6px;
}

.card-text {
  font-size: 0.9rem;
  margin: 0;
}

/* PCで2カラム */
@media (min-width: 768px) {
  .card-list--columns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-list--columns .card {
    width: calc(50% - 8px);
  }
}

/* ========== PROFILE（テキスト） ========== */
.profile-en {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.profile-ja {
  font-size: 14px;
  line-height: 1.9;
}

/* PROFILE ビジュアル（イラストなど） */
.profile-visual {
  width: 100%;
  max-width: 340px; /* PCでの最大幅 */
  display: block;
  margin: 0 auto 0.5rem auto;
  border-radius: 6px;
}

/* Illustration credit */
.illust-credit {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ========== LATEST RELEASES（ジャケット＆情報） ========== */
.release-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.release-item {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #eee;

  /* スクロール時フェードイン初期状態 */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

/* スクロールで表示されたとき */
.release-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 動きが苦手な人向け（OS設定に準拠） */
@media (prefers-reduced-motion: reduce) {
  .release-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ジャケット画像 */
.release-jacket {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 4px;
}

/* タイトル／補足 */
.release-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.release-meta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #777;
  letter-spacing: 0.08em;
}

.release-desc,
.release-note {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========== LIVE 情報 ========== */
.live-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.live-item {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.live-date {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #666;
  text-transform: uppercase;
}

.live-place {
  font-size: 14px;
  margin: 0.2rem 0;
}

.live-note,
.live-note-small {
  font-size: 13px;
  line-height: 1.8;
}

.live-note-small {
  color: #888;
  margin-top: 0.5rem;
}

/* ========== Streaming Players（Spotify / Apple Music） ========== */

/* 「? LISTEN ON」ラベル */
.release-listen-label {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

/* 開閉ボタン */
.release-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #333;
  background: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
  margin-bottom: 1rem;
}

.release-toggle:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

.release-toggle.is-open {
  background: #111;
  color: #fff;
}

/* プレイヤー本体（最初は非表示） */
.release-players {
  display: none;
  margin-top: 0.5rem;
}

/* 開いているとき */
.release-players.is-open {
  display: block;
}

/* プレイヤー間の余白 */
.release-players iframe {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 0 1.5rem;
}

/* 最後のiframeだけ少し余白を小さく */
.release-players iframe:last-of-type {
  margin-bottom: 0.5rem;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .release-players iframe[src*="open.spotify.com"] {
    height: 232px; /* 元: 352px */
  }

  .release-players iframe[src*="music.apple.com"] {
    height: 320px; /* 元: 450px */
  }

  .release-toggle {
    width: 100%;
    max-width: 320px;
  }

  .release-listen-label {
    text-align: center;
  }
}

/* ========== FOOTER ========== */

.site-footer {
  border-top: 1px solid #f0f0f0;
  padding: 2rem 0 3rem;
  text-align: center;
  font-size: 12px;
  color: #999;
}

.site-footer .footer-name {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.site-footer .footer-links a {
  text-decoration: none;
  color: #666;
  letter-spacing: 0.05em;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

/* ========== IMAGE 共通 ========== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  display: flex;
  justify-content: center;
}
