* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background: #0f172a;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.global-nav {
  display: flex;
  gap: 24px;
}

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

.hero {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    #1e293b,
    #312e81,
    #1e293b
  );
}

.hero h1 {
  font-size: 4rem;
  margin: 10px 0;
}

.label {
  color: #93c5fd;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.song-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.song-card:hover {
  transform: translateY(-5px);
}

.jacket {
  height: 250px;
  background: #334155;
}

.placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.song-card h3,
.song-card p {
  padding: 10px 15px;
}

.news-list {
  list-style: none;
}

.news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #334155;
}

.follow {
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #334155;
}

.page-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #111827, #312e81, #0f172a);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin: 10px 0;
}

.category-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tabs button {
  padding: 10px 22px;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.category-tabs button:hover {
  background: #93c5fd;
  color: #0f172a;
}

.character-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

.character-card{
background:#1e293b;
padding:20px;
border-radius:12px;
}

.character-image{
height:250px;
background:#334155;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
font-size:24px;
font-weight:bold;
}

.works-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.work-card{
background:#1e293b;
border-radius:12px;
overflow:hidden;
}

.work-thumb{
height:220px;
background:#334155;
display:flex;
justify-content:center;
align-items:center;
}

.work-card h3,
.work-card p{
padding:10px 15px;
}

.song-detail{
display:grid;
grid-template-columns:400px 1fr;
gap:40px;
}

.song-jacket{
height:400px;
background:#334155;
display:flex;
justify-content:center;
align-items:center;
}

.song-info h2{
margin-top:25px;
margin-bottom:10px;
}

.youtube-area{
height:450px;
background:#334155;
display:flex;
justify-content:center;
align-items:center;
}

.lyrics-box{
background:#1e293b;
padding:30px;
border-radius:12px;
white-space:pre-line;
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 900px) {
  .site-header {
    padding: 16px 24px;
    flex-direction: column;
    gap: 14px;
  }

  .global-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: 420px;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 60px 20px;
  }

  .card-grid,
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .song-detail {
    grid-template-columns: 1fr;
  }

  .song-jacket {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .youtube-area {
    height: 340px;
  }
}

/* Smartphone */
@media (max-width: 600px) {
  .site-header {
    padding: 14px 16px;
  }

  .logo {
    font-size: 1rem;
    text-align: center;
  }

  .global-nav {
    gap: 10px;
    font-size: 0.85rem;
  }

  .hero {
    height: 360px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 90px 20px 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .card-grid,
  .character-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .jacket,
  .character-image,
  .work-thumb {
    height: 220px;
  }

  .song-jacket {
    height: 300px;
  }

  .youtube-area {
    height: 240px;
  }

  .lyrics-box {
    padding: 20px;
  }

  .site-footer {
    padding: 30px 16px;
  }
}

/* =========================
   Image Layout
========================= */

.jacket img,
.song-jacket img,
.character-image img,
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   Home Featured Songs
========================= */

.featured-songs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.featured-songs h2 {
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .featured-songs {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Home Layout
========================= */

.home-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-side {
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  order: 1;
}

.home-visual {
  order: 2;
}

.home-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.home-introduce,
.home-side .follow {
  background: #1e293b;
  padding: 10px;
  border-radius: 16px;
}

.home-side .follow {
  text-align: left;
}

.home-introduce h2,
.home-side .follow h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.home-introduce p,
.home-side .follow p {
  font-size: 0.8rem;
  line-height: 1.35;
}

.home-main + .section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.featured-songs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.featured-songs h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.jacket {
  height: 150px;
}

@media (max-width: 600px) {
  .home-main {
    grid-template-columns: 1fr 2fr;
    gap: 8px;
  }

  .home-visual img {
    height: 160px;
  }

  .home-introduce,
  .home-side .follow {
    padding: 8px;
  }

  .home-introduce p,
  .home-side .follow p {
    font-size: 0.72rem;
  }

  .jacket {
    height: 130px;
  }
}

/* =========================
   Phase2.1 SONGS調整
   ========================= */

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.section h2 {
  margin-bottom: 18px;
}

.card-grid {
  gap: 18px;
}

.jacket {
  height: 190px;
}

.song-card h3 {
  padding: 10px 12px 2px;
  font-size: 0.95rem;
}

.song-card p {
  padding: 0 12px 12px;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .jacket {
    height: 200px;
  }
}


/* =========================
   Phase2.1 SONGS強制調整
   ========================= */

.page-hero {
  padding: 90px 20px 70px;
}

.section {
  max-width: 900px;
  padding: 40px 20px;
}

.category-tabs {
  margin-bottom: 36px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.song-card {
  max-width: 260px;
}

.jacket {
  height: 160px;
}

.jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.song-card h3 {
  padding: 10px 10px 2px;
  font-size: 0.9rem;
}

.song-card p {
  padding: 0 10px 12px;
  font-size: 0.78rem;
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .song-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .jacket {
    height: 180px;
  }
}


/* Phase2.1 SONGS幅調整 */

.section {
  max-width: 720px !important;
}

.card-grid {
  gap: 12px !important;
}

.song-card {
  max-width: 220px !important;
}

.jacket {
  height: 130px !important;
}

.song-card h3 {
  font-size: 0.85rem !important;
}

.song-card p {
  font-size: 0.7rem !important;
}


/* Phase2.1 SONGS余白調整 */

.page-hero {
  padding: 70px 20px 60px !important;
}

.page-hero h1 {
  font-size: 3rem !important;
  margin: 16px 0 !important;
}

.page-hero p {
  margin: 8px 0 !important;
}

.section {
  padding-top: 32px !important;
}

.category-tabs {
  margin-bottom: 28px !important;
}


/* Phase2.1 SONGSさらにコンパクト化 */

.page-hero {
  padding: 50px 20px 45px !important;
}

.page-hero h1 {
  font-size: 2.6rem !important;
}

.page-hero p {
  font-size: 1rem !important;
}

.section {
  max-width: 680px !important;
  padding-top: 26px !important;
}

.category-tabs {
  margin-bottom: 22px !important;
}

.song-card {
  max-width: 210px !important;
}

.jacket {
  height: 120px !important;
}


/* Phase2.1 SONGS 3列固定 */

.card-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

.song-card {
  max-width: 240px !important;
}

.jacket {
  height: 150px !important;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .song-card {
    max-width: none !important;
  }

  .jacket {
    height: 120px !important;
  }
}


/* Phase2.1 SONGSサイズ再調整 */

.section {
  max-width: 900px !important;
}

.song-card {
  max-width: 280px !important;
}

.jacket {
  height: 180px !important;
}


/* Phase2.1 HERO高さ調整 */

.page-hero {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.page-hero h1 {
  margin: 10px 0 !important;
}

.page-hero .label {
  margin-bottom: 8px !important;
}

.page-hero p {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}


/* Phase2.1 HERO超コンパクト化 */

.page-hero {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  min-height: auto !important;
}

.page-hero .label {
  margin: 0 0 4px 0 !important;
}

.page-hero h1 {
  margin: 0 !important;
  line-height: 1.1 !important;
}

.page-hero p {
  margin: 4px 0 0 0 !important;
}


/* Phase2.1 ジャケット画像調整 */

.jacket {
  overflow: hidden;
}

.jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Phase2.1 ジャケット画像調整 */

.jacket {
  overflow: hidden;
}

.jacket img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Phase2.1 HOMEジャケット画像調整 */

.home-song-block .jacket,
.featured-songs .jacket {
  height: 220px !important;
  overflow: hidden !important;
}

.home-song-block .jacket img,
.featured-songs .jacket img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}


/* Phase2.1 HOMEメインレイアウト調整 */

.home-main {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 24px !important;
  align-items: stretch !important;
  max-width: 1200px !important;
  padding-top: 40px !important;
}

.home-side {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.home-introduce,
.follow {
  background: #1e293b !important;
  border-radius: 18px !important;
  padding: 24px !important;
}

.home-visual {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.home-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  background: #111827 !important;
}


/* Phase2.1 HOME楽曲カード横長化 */

.featured-songs {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.featured-songs > div {
  min-width: 0 !important;
}

.featured-songs .song-card {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr !important;
  max-width: none !important;
  width: 100% !important;
  border: 1px solid rgba(147, 197, 253, 0.35) !important;
  background: #111827 !important;
}

.featured-songs .jacket {
  height: 260px !important;
  background: #111827 !important;
}

.featured-songs .song-card h3,
.featured-songs .song-card p {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.featured-songs .song-card h3 {
  align-self: end !important;
  margin-top: 40px !important;
}

.featured-songs .song-card p {
  align-self: start !important;
}


/* Featured Song */

.featured-card {
  display: grid !important;
  grid-template-columns: 320px 1fr !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 24px !important;
}

.featured-card .jacket {
  height: 220px !important;
}

.featured-card .song-info {
  text-align: left !important;
  line-height: 1.8 !important;
}

.featured-card .song-info p {
  margin-bottom: 12px !important;
}

.featured-card hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 16px 0;
}


/* Phase2.1 Featured Song 微調整 */

.featured-card .song-info {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.featured-card .song-info p {
  margin-bottom: 8px !important;
}

.featured-card .song-info strong {
  font-size: 0.95rem !important;
}

.featured-card hr {
  margin: 10px 0 !important;
}


/* Featured Song 情報欄コンパクト化 */

.featured-card .song-info {
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
}

.featured-card .song-info p {
  margin: 2px 0 !important;
}

.featured-card hr {
  margin: 8px 0 !important;
}


/* Featured Song 文字サイズ調整 */

.featured-card .song-info {
  font-size: 0.78rem !important;
  line-height: 1.15 !important;
}

.featured-card .song-info strong {
  font-size: 0.82rem !important;
}

.featured-card .song-info p {
  margin: 1px 0 !important;
}

.featured-card hr {
  margin: 6px 0 !important;
}


/* Featured Song 情報欄最終調整 */

.featured-card .song-info {
  font-size: 0.78rem !important;
  line-height: 1.3 !important;
}

.featured-card .song-info p {
  margin: 2px 0 !important;
}

.featured-card .song-info strong {
  color: #93c5fd !important;
  font-size: 0.8rem !important;
}

.featured-card hr {
  margin: 8px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.15) !important;
}


/* Phase2.1 HOMEファーストビュー調整 */

.site-header {
  padding: 20px 40px !important;
}

.home-main {
  padding-top: 28px !important;
  padding-bottom: 32px !important;
  gap: 20px !important;
}

.home-introduce,
.follow {
  padding: 18px 24px !important;
}

.home-introduce h2,
.follow h2 {
  margin-bottom: 14px !important;
  font-size: 1.4rem !important;
}

.home-introduce p,
.follow p {
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
}

.home-visual {
  max-height: 360px !important;
}

.home-visual img {
  max-height: 360px !important;
  object-fit: contain !important;
}

.featured-songs {
  margin-top: 0 !important;
}

.featured-songs h2 {
  font-size: 1.5rem !important;
  margin-bottom: 18px !important;
}


/* Phase2.1 HOMEファーストビューさらに圧縮 */

.site-header {
  padding: 14px 40px !important;
}

.logo {
  font-size: 1.4rem !important;
}

.global-nav {
  margin-top: 12px !important;
  gap: 28px !important;
  font-size: 1rem !important;
}

.home-main {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  gap: 16px !important;
}

.home-introduce,
.follow {
  padding: 14px 20px !important;
}

.home-introduce h2,
.follow h2 {
  font-size: 1.2rem !important;
  margin-bottom: 8px !important;
}

.home-introduce p,
.follow p {
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
}

.home-visual,
.home-visual img {
  max-height: 220px !important;
}

.section {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.featured-songs h2 {
  font-size: 1.35rem !important;
  margin-bottom: 12px !important;
}


/* Phase2.1 HOME表示範囲 最終調整 */

.home-main {
  max-width: 1200px !important;
  padding: 12px 20px 12px !important;
  gap: 16px !important;
}

.home-visual,
.home-visual img {
  height: 240px !important;
  max-height: 240px !important;
}

.home-introduce,
.home-side .follow {
  padding: 12px 16px !important;
}

.home-introduce h2,
.home-side .follow h2 {
  font-size: 1.1rem !important;
  margin-bottom: 6px !important;
}

.home-introduce p {
  font-size: 0.70rem !important;
  line-height: 1.25 !important;
}

.home-side .follow p {
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
}

.home-main + .section {
  max-width: 1200px !important;
  padding-top: 4px !important;
  padding-bottom: 16px !important;
}

.featured-songs {
  margin-top: 0 !important;
}

.featured-songs h2 {
  font-size: 1.25rem !important;
  margin-bottom: 8px !important;
}


/* Phase2.1 HOME表示範囲 追加微調整 */

.site-header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.home-main {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.home-visual,
.home-visual img {
  height: 215px !important;
  max-height: 215px !important;
}

.home-main + .section {
  padding-top: 0 !important;
}


/* Phase2.2 Song Detail Layout */

.song-detail-page {
  max-width: 1050px !important;
  padding-top: 32px !important;
}

.song-detail-layout {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 36px !important;
  align-items: start !important;
}

.song-detail-left h1 {
  font-size: 1rem !important;
  margin-top: 14px !important;
  margin-bottom: 24px !important;
}

.song-jacket {
  width: 100% !important;
  height: 420px !important;
  background: #111827 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.song-jacket img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.song-detail-right {
  background: #111827 !important;
  border: 1px solid rgba(147, 197, 253, 0.25) !important;
  border-radius: 18px !important;
  padding: 26px !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

.song-detail-right h2,
.tracks-box h2,
.about-song h2,
.lyrics-box h2 {
  font-size: 1.25rem !important;
  margin-bottom: 10px !important;
}

.song-detail-right p,
.tracks-box p,
.about-song p,
.lyrics-box p {
  margin: 4px 0 !important;
}

.song-detail-right strong {
  color: #93c5fd !important;
}

.song-detail-right hr {
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.18) !important;
  margin: 12px 0 !important;
}

.listen-box {
  margin-top: 24px !important;
}

.tracks-box,
.about-song,
.youtube-area,
.lyrics-box {
  background: #111827 !important;
  border-radius: 18px !important;
  padding: 22px !important;
  margin-top: 28px !important;
}

@media (max-width: 800px) {
  .song-detail-layout {
    grid-template-columns: 1fr !important;
  }

  .song-jacket {
    height: 220px !important;
  }
}


/* Phase2.2 Album Title強調 */

.song-detail-left h1 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-top: 18px !important;
}


/* Phase2.2 Album Title */

.album-title-label {
  color: #93c5fd;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 18px;
  margin-bottom: 8px;
}

.song-detail-left h1 {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 24px 0 !important;
}


/* Lyrics */

.lyrics-preview {
  max-height: 110px;
  overflow: hidden;
  line-height: 1.8;
  transition: max-height 0.3s ease;
}

.lyrics-preview.expanded {
  max-height: 2000px;
}

.lyrics-toggle {
  margin-top: 12px;
  background: none;
  border: none;
  color: #93c5fd;
  cursor: pointer;
  font-size: 0.9rem;
}


/* Phase2.2 Lyrics toggle */

.lyrics-preview {
  max-height: 7.2em !important;
  overflow: hidden !important;
  line-height: 1.8 !important;
  transition: max-height 0.3s ease !important;
}

.lyrics-preview.expanded {
  max-height: 2000px !important;
}

.lyrics-toggle {
  margin-top: 12px !important;
  background: none !important;
  border: none !important;
  color: #93c5fd !important;
  cursor: pointer !important;
  font-size: 0.9rem !important;
}


/* Phase2.2 Lyrics final override */

.lyrics-box .lyrics-preview {
  display: block !important;
  max-height: 7.2em !important;
  overflow: hidden !important;
  line-height: 1.8 !important;
}

.lyrics-box .lyrics-preview.expanded {
  max-height: none !important;
}

.lyrics-box .lyrics-toggle {
  display: inline-block !important;
  margin-top: 12px !important;
  padding: 0 !important;
}


/* Phase2.2 Lyrics 行間調整 */

.lyrics-box .lyrics-preview {
  line-height: 1.2 !important;
}


/* Phase2.2 Lyrics余白調整 */

.lyrics-box h2 {
  margin-bottom: 12px !important;
}

.lyrics-box .lyrics-preview {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Phase2.2 Lyrics見出し下の余白を詰める */

.lyrics-box h2 {
  margin-bottom: 4px !important;
}

.lyrics-box .lyrics-preview {
  margin-top: -48px !important;
  padding-top: 0 !important;
}

.lyrics-box .lyrics-toggle {
  margin-top: 8px !important;
}


/* Phase2.2 Tracks / About 2列調整 */

.song-info-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

.song-info-row .tracks-box,
.song-info-row .about-song {
  width: 100% !important;
  margin-top: 0 !important;
}

.song-info-row h2 {
  margin-bottom: 8px !important;
}

.song-info-row p {
  margin: 0 !important;
}


/* Phase2.2 Lyrics位置調整 */

.lyrics-box {
  margin-top: 8px !important;
}

.youtube-area {
  margin-top: 12px !important;
}


/* Phase2.2 YouTube Embed */

.youtube-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.youtube-area iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}


/* Phase2.2 YouTubeサイズ調整 */

.youtube-area {
  max-width: 900px !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  margin: 20px auto 0 !important;
  padding: 0 !important;
}

.youtube-area iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 16px !important;
}


/* Phase2.2 Song Detail 圧縮 */

.song-jacket {
  height: 300px !important;
}


.song-detail-left h1 {
  margin-bottom: 8px !important;
}


.tracks-box,
.about-song {
  padding: 16px !important;
}

.tracks-box h2,
.about-song h2 {
  margin-bottom: 6px !important;
}


.lyrics-box {
  margin-top: 4px !important;
  padding: 16px !important;
}


.youtube-area {
  max-width: 760px !important;
  margin: 12px auto 0 !important;
}


/* Phase2.2 Track List / Track 1 */

.track-list-box {
  margin-top: 12px !important;
  margin-bottom: 20px !important;
}

.track-list-box h2 {
  font-size: 1.1rem !important;
  margin-bottom: 4px !important;
}

.track-list-box p {
  margin: 0 !important;
  font-size: 0.95rem !important;
}

.tracks-box h2 {
  font-size: 1.1rem !important;
  margin: 0 !important;
}


/* Phase2.2 Song Detail 高さ微調整 */

.song-jacket {
  height: 260px !important;
}

.song-detail-left h1 {
  margin-bottom: 4px !important;
}

.track-list-box {
  margin-top: 8px !important;
  margin-bottom: 12px !important;
}

.song-info-row {
  margin-top: 12px !important;
}

.song-detail-right,
.tracks-box,
.about-song {
  padding: 20px !important;
}


/* Phase2.3 Character画像表示調整 */

.character-image {
  height: 360px !important;
  overflow: hidden !important;
  background: #111827 !important;
}

.character-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.character-card {
  overflow: hidden !important;
}


/* Phase2.3 Characterページ圧縮 */

.character-image {
  height: 220px !important;
}

.character-card {
  padding: 16px !important;
}

.character-card h3 {
  margin-top: 10px !important;
  margin-bottom: 4px !important;
}

.character-card p {
  margin: 0 !important;
}


/* Character Header圧縮 */

.character-intro {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.character-intro h1 {
  margin-bottom: 10px !important;
}

.character-intro p {
  margin-bottom: 0 !important;
}


/* Phase2.4 Background Moon */

body {
  background:
    linear-gradient(
      rgba(4, 10, 30, 0.35),
      rgba(4, 10, 30, 0.35)
    ),
    url("assets/images/background-moon.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}


/* Phase2.4 背景を見せるためのカード透過 */

.home-introduce,
.follow,
.song-card,
.character-card,
.work-card,
.song-detail-right,
.tracks-box,
.about-song,
.youtube-area,
.lyrics-box {
  background: rgba(15, 23, 42, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.home-visual {
  background: rgba(15, 23, 42, 0.45) !important;
}


/* Phase2.4 HOME Featuredカード透過 最終上書き */

.featured-songs .song-card,
.featured-card {
  background: rgba(15, 23, 42, 0.48) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.featured-songs .jacket {
  background: transparent !important;
}


/* Phase2.4 背景画像全体表示 */

body {
  background-size: contain !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-color: #d9d7ff !important;
}


/* Phase2.4 背景位置調整 */

body {
  background-position: center -120px !important;
  background-size: cover !important;
}


/* Phase2.4 背景スクロール調整 */

body {
  background-attachment: scroll !important;
  background-position: center top !important;
  background-size: cover !important;
}


/* Phase2.4 Glass UI v2 */

.home-introduce,
.home-side .follow {
  background: rgba(15, 23, 42, 0.25) !important;
}

.home-visual {
  background: rgba(15, 23, 42, 0.18) !important;
}

.featured-songs .song-card,
.featured-card {
  background: rgba(15, 23, 42, 0.20) !important;
}


/* Phase2.4 Glass UI Dream */

.home-introduce,
.home-side .follow {
  background: rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}

.featured-songs .song-card,
.featured-card {
  background: rgba(15, 23, 42, 0.10) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}


/* Phase2.4 Moon World Glass */

.home-introduce,
.home-side .follow,
.featured-songs .song-card,
.featured-card {

  background: rgba(255,255,255,0.03) !important;

  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;

  border: 1px solid rgba(255,255,255,0.15) !important;

  box-shadow: none !important;
}


/* Phase2.4 Moon World Ultra Transparent */

.home-introduce,
.home-side .follow,
.featured-songs .song-card,
.featured-card {

  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 1px solid rgba(255,255,255,0.08) !important;

  box-shadow: none !important;
}


/* Phase2.4 Glass Hover Effect */

.home-introduce,
.home-side .follow,
.featured-songs .song-card,
.featured-card {
  transition: all 0.3s ease !important;
}

.home-introduce:hover,
.home-side .follow:hover,
.featured-songs .song-card:hover,
.featured-card:hover {

  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border: 1px solid rgba(255,255,255,0.35) !important;

  transform: translateY(-4px) !important;

  box-shadow:
    0 8px 32px rgba(255,255,255,0.12) !important;
}


/* Phase2.4 Background Scale */

body {
  background-size: 85% auto !important;
}


/* Phase2.4 Background Left */

body {
  background-position: left top !important;
}


/* Phase2.4 Background Zoom */

body {
  background-size: 90% auto !important;
}


/* Phase2.4 Moon World Base Color */

body {
  background-color: #1b214f !important;
}


/* Phase2.4 Moon Color */

body {
  background-color: #314a8a !important;
}


/* Phase2.4 Moon Blue */

body {
  background-color: #5f7fd6 !important;
}


/* Phase2.4 Moon Blue Final */

body {
  background-color: #4968b8 !important;
}


/* Phase2.4 Moon Yellow */

body {
  background-color: #e6d38a !important;
}


/* Phase2.4 Moon Yellow Deep */

body {
  background-color: #d8c06f !important;
}


/* Phase2.4 HOME Visual 黒帯修正 */

.home-visual {
  background: rgba(255,255,255,0.005) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.home-visual img {
  object-fit: cover !important;
  background: transparent !important;
}

.home-visual:hover {
  background: rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}


/* Phase2.4 Home Visual Transparency */

.home-visual img {
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
}

.home-visual:hover img {
  opacity: 0.8 !important;
}


/* Phase2.4 Home Visual Transparency 70% */

.home-visual img {
  opacity: 0.7 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}


/* Phase2.4 Home Visual Transparency 80% */

.home-visual img {
  opacity: 0.8 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}


/* Phase2.4 Header Blue Moon */

.site-header {
  background: rgba(18, 59, 143, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(120, 190, 255, 0.35) !important;
}

.logo,
.global-nav a {
  color: #ffffff !important;
}


/* Phase2.4 Header fixed top */

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
}


/* Phase2.5 Song Card Resize & Neon Pink */

.featured-card {
  max-width: 90% !important;
  margin: 0 auto !important;

  border: 2px solid #ff7de9 !important;

  box-shadow:
    0 0 8px rgba(255,125,233,0.4),
    0 0 16px rgba(255,125,233,0.2) !important;
}

.featured-card:hover {
  border-color: #ff9df1 !important;

  box-shadow:
    0 0 12px rgba(255,157,241,0.8),
    0 0 24px rgba(255,157,241,0.5),
    0 0 40px rgba(255,157,241,0.3) !important;
}


/* Phase2.5 Featured Card small + neon pink final */

.featured-songs {
  gap: 12px !important;
}

.featured-songs .song-card.featured-card {
  width: 88% !important;
  max-width: 88% !important;
  margin: 0 auto !important;
  padding: 18px !important;

  border: 2px solid #ff5fe0 !important;
  box-shadow:
    0 0 10px rgba(255, 95, 224, 0.65),
    0 0 22px rgba(255, 95, 224, 0.35) !important;
}

.featured-songs .song-card.featured-card:hover {
  border-color: #ff9df1 !important;
  box-shadow:
    0 0 14px rgba(255, 157, 241, 0.9),
    0 0 30px rgba(255, 157, 241, 0.55) !important;
}

.featured-card .jacket {
  height: 220px !important;
}


/* Phase2.5 Sakura Neon */

.featured-songs .song-card.featured-card {
  border: 2px solid #f8c8dc !important;

  box-shadow:
    0 0 6px rgba(248,200,220,0.45),
    0 0 14px rgba(248,200,220,0.20) !important;
}

.featured-songs .song-card.featured-card:hover {
  border-color: #ffe4ef !important;

  box-shadow:
    0 0 10px rgba(255,228,239,0.65),
    0 0 22px rgba(255,228,239,0.35),
    0 0 36px rgba(255,228,239,0.18) !important;
}


/* Phase2.5 Recommend Song Moon Blue */

.recommend-card {
  border: 2px solid #bde8ff !important;

  box-shadow:
    0 0 6px rgba(189,232,255,0.45),
    0 0 14px rgba(189,232,255,0.20) !important;
}

.recommend-card:hover {
  border-color: #e4f6ff !important;

  box-shadow:
    0 0 10px rgba(228,246,255,0.65),
    0 0 22px rgba(228,246,255,0.35),
    0 0 36px rgba(228,246,255,0.18) !important;
}


/* Phase2.5 Recommend Song Moon Blue Final */

.featured-songs .song-card.featured-card.recommend-card {
  border: 2px solid #bde8ff !important;

  box-shadow:
    0 0 6px rgba(189,232,255,0.55),
    0 0 16px rgba(189,232,255,0.30) !important;
}

.featured-songs .song-card.featured-card.recommend-card:hover {
  border-color: #e4f6ff !important;

  box-shadow:
    0 0 10px rgba(228,246,255,0.75),
    0 0 24px rgba(228,246,255,0.45),
    0 0 40px rgba(228,246,255,0.22) !important;
}


/* Phase2.5 Introduce & Follow Lavender Neon */

.home-introduce,
.home-side .follow {

  border: 2px solid #d8c8ff !important;

  box-shadow:
    0 0 6px rgba(216,200,255,0.45),
    0 0 14px rgba(216,200,255,0.20) !important;
}

.home-introduce:hover,
.home-side .follow:hover {

  border-color: #ece3ff !important;

  box-shadow:
    0 0 10px rgba(236,227,255,0.65),
    0 0 22px rgba(236,227,255,0.35),
    0 0 36px rgba(236,227,255,0.18) !important;
}


/* Phase2.5 Border Transparency 50% */

/* Introduce / Follow Us */
.home-introduce,
.home-side .follow {
  border: 2px solid rgba(216,200,255,0.5) !important;
}

/* Latest Song */
.featured-songs .song-card.featured-card:not(.recommend-card) {
  border: 2px solid rgba(248,200,220,0.5) !important;
}

/* Recommend Song */
.featured-songs .song-card.featured-card.recommend-card {
  border: 2px solid rgba(189,232,255,0.5) !important;
}


/* Phase2.5 Border Transparency 70% */

/* Introduce / Follow Us */
.home-introduce,
.home-side .follow {
  border: 2px solid rgba(216,200,255,0.7) !important;
}

/* Latest Song */
.featured-songs .song-card.featured-card:not(.recommend-card) {
  border: 2px solid rgba(248,200,220,0.7) !important;
}

/* Recommend Song */
.featured-songs .song-card.featured-card.recommend-card {
  border: 2px solid rgba(189,232,255,0.7) !important;
}


/* Phase2.5 Border Transparency 60% */

/* Introduce / Follow Us */
.home-introduce,
.home-side .follow {
  border: 2px solid rgba(216,200,255,0.6) !important;
}

/* Latest Song */
.featured-songs .song-card.featured-card:not(.recommend-card) {
  border: 2px solid rgba(248,200,220,0.6) !important;
}

/* Recommend Song */
.featured-songs .song-card.featured-card.recommend-card {
  border: 2px solid rgba(189,232,255,0.6) !important;
}


/* Phase2.6 SONGS Glass Card */

.songs-page .song-card {

  background: rgba(255,255,255,0.05) !important;

  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;

  border: 2px solid rgba(255,255,255,0.60) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.15),
    0 0 20px rgba(255,255,255,0.08) !important;
}

.songs-page .song-card:hover {

  border-color: rgba(255,255,255,0.85) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 28px rgba(255,255,255,0.15) !important;
}


/* Phase2.6 SONGS Jacket黒背景削除 */

.songs-page .song-card .jacket {
  background: transparent !important;
}

.songs-page .song-card .jacket img {
  background: transparent !important;
}


/* Phase2.6 SONGS Home同等ガラス化 */

.songs-page .song-card {

  background: rgba(15,23,42,0.12) !important;

  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  border: 2px solid rgba(255,255,255,0.60) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.15),
    0 0 18px rgba(255,255,255,0.08) !important;
}


/* Phase2.6 SONGS Ultra Glass */

.songs-page .song-card {

  background: rgba(255,255,255,0.015) !important;

  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;

  border: 2px solid rgba(255,255,255,0.55) !important;

  box-shadow:
    0 0 6px rgba(255,255,255,0.10),
    0 0 14px rgba(255,255,255,0.05) !important;
}


/* Phase2.6 SONGS HOME同等カード 最終上書き */

.songs-page .song-card {
  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 2px solid rgba(255,255,255,0.60) !important;

  box-shadow:
    0 0 6px rgba(255,255,255,0.10),
    0 0 14px rgba(255,255,255,0.05) !important;
}

.songs-page .song-card:hover {
  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border: 2px solid rgba(255,255,255,0.85) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 28px rgba(255,255,255,0.15) !important;
}

.songs-page .song-card .jacket {
  background: transparent !important;
}


/* Phase2.6 SONGS Moon White Neon Border */

.songs-page .song-card {

  border: 2px solid rgba(255,255,255,0.75) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,255,255,0.15),
    0 0 24px rgba(255,255,255,0.08) !important;
}

.songs-page .song-card:hover {

  border: 2px solid rgba(255,255,255,0.95) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.12) !important;
}


/* Phase2.6 CHARACTER Glass Card */

.character-card {
  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 2px solid rgba(245,245,255,0.75) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,255,255,0.15),
    0 0 24px rgba(255,255,255,0.08) !important;
}

.character-card:hover {
  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border: 2px solid rgba(255,255,255,0.95) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.12) !important;
}

.character-image {
  background: transparent !important;
}


/* Phase2.6 SONG DETAIL Glass Card */

.song-detail-right,
.tracks-box,
.about-song,
.youtube-area,
.lyrics-box {
  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 2px solid rgba(245,245,255,0.75) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,255,255,0.15),
    0 0 24px rgba(255,255,255,0.08) !important;
}

.song-detail-right:hover,
.tracks-box:hover,
.about-song:hover,
.youtube-area:hover,
.lyrics-box:hover {
  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border: 2px solid rgba(255,255,255,0.95) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.12) !important;
}

.song-jacket {
  background: transparent !important;
}


/* Phase2.6 WORKS Glass Card */

.work-card {

  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 2px solid rgba(245,245,255,0.75) !important;

  box-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,255,255,0.15),
    0 0 24px rgba(255,255,255,0.08) !important;
}

.work-card:hover {

  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border: 2px solid rgba(255,255,255,0.95) !important;

  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.12) !important;
}

.work-thumb {
  background: transparent !important;
}


/* Phase2.6 WORKS Thumbnail Area */

.work-thumb,
.work-thumb img {
  background: transparent !important;
}


/* Phase2.6 WORKS Glass Final */

.work-card {
  background: rgba(255,255,255,0.005) !important;
  border: 2px solid rgba(245,245,255,0.75) !important;
  box-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,255,255,0.15),
    0 0 24px rgba(255,255,255,0.08) !important;
}

.work-thumb {
  background: transparent !important;
}

.work-card:hover {
  background: rgba(255,255,255,0.10) !important;
  border: 2px solid rgba(255,255,255,0.95) !important;
}


/* Introduce文字サイズ調整 */
.home-introduce p{
    font-size: 0.9rem !important;
}


/* Final override: Introduce text size */
.home-side .home-introduce p {
  font-size: 0.70rem !important;
  line-height: 1.25 !important;
}

/* Character card title size adjust */
.character-card h3 {
  font-size: 0.9rem !important;
  line-height: 1.25 !important;
  min-height: 2.4em !important;
}

/* Final override: Character card compact */
.character-grid {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 22px !important;
}

.character-card {
  padding: 14px !important;
}

.character-image {
  height: 210px !important;
}

.character-card h3 {
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.character-card p {
  font-size: 0.8rem !important;
}

/* Character text spacing */
.character-card h3 {
  margin-bottom: 0 !important;
}

.character-card p {
  margin-top: 0 !important;
}


/* Character text spacing compact */
.character-card h3 {
  margin: 4px 0 0 0 !important;
  line-height: 1.1 !important;
}

.character-card p {
  margin: 0 !important;
  line-height: 1.1 !important;
}


/* Character name size */
.character-card h3 {
  font-size: 1.05rem !important;
}


/* STEP3-3 FIX: SONGS page card layout */
.songs-page .section {
  max-width: 1200px !important;
}

.songs-page .card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.songs-page .song-card {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: auto !important;
  position: relative !important;
  z-index: 1 !important;
  text-decoration: none !important;
}

.songs-page .song-card .jacket {
  width: 100% !important;
  height: 250px !important;
}

.songs-page .song-card .jacket img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 700px) {
  .songs-page .card-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Phase4 Listen Buttons */
.listen-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.listen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
}

.listen-button:hover {
  background: #ffffff;
  color: #0f172a;
}

.listen-coming-soon {
  margin-top: 8px;
  opacity: 0.8;
}

/* =========================
   FINAL FIX: HOME Featured Songs Responsive
========================= */

@media (max-width: 700px) {
  .featured-songs {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .featured-songs > div {
    width: 100% !important;
  }

  .featured-songs .song-card.featured-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .featured-card .jacket,
  .featured-songs .jacket {
    height: 220px !important;
  }
}

/* =========================
   FINAL FIX v2: HOME Featured Songs Responsive
   外側は1列、カード内部は横並び維持
========================= */

@media (max-width: 700px) {
  .featured-songs {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .featured-songs > div {
    width: 100% !important;
  }

  .featured-songs .song-card.featured-card {
    width: 88% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1.2fr 0.9fr !important;
    gap: 18px !important;
    padding: 18px !important;
  }

  .featured-songs .song-card.featured-card .jacket {
    height: 260px !important;
  }

  .featured-songs .song-card.featured-card .song-info {
    text-align: left !important;
  }
}

/* =========================
   FINAL FIX: HOME Main Responsive Order
   PC: 左にIntroduce/Follow、右に画像
   Narrow: Introduce → 画像 → Follow Us
========================= */

/* PC表示は従来の見た目を維持 */
.home-main {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  grid-template-areas:
    "intro visual"
    "follow visual" !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.home-introduce {
  grid-area: intro !important;
}

.home-visual {
  grid-area: visual !important;
}

.follow {
  grid-area: follow !important;
}

/* =========================
   FIX: Restore Home Text Size
========================= */

@media (max-width: 900px) {
  .home-introduce p {
    font-size: 0.70rem !important;
    line-height: 1.25 !important;
  }

  .follow p,
  .home-side .follow p {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }

  .home-introduce h2,
  .follow h2,
  .home-side .follow h2 {
    font-size: 1.1rem !important;
    margin-bottom: 6px !important;
  }
}

/* Restore Follow Us Card */

.follow {
  background: rgba(255,255,255,0.005) !important;

  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;

  border: 2px solid rgba(216,200,255,0.6) !important;

  box-shadow:
    0 0 6px rgba(216,200,255,0.25),
    0 0 14px rgba(216,200,255,0.10) !important;
}

/* =========================
   FIX: Restore Follow Us Hover
========================= */

.follow:hover {
  background: rgba(255,255,255,0.10) !important;

  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border-color: #ece3ff !important;

  transform: translateY(-4px) !important;

  box-shadow:
    0 0 10px rgba(236,227,255,0.65),
    0 0 22px rgba(236,227,255,0.35),
    0 0 36px rgba(236,227,255,0.18) !important;
}

/* HOME画像縮小 */
.home-visual {
  display: flex !important;
  justify-content: center !important;
}

.home-visual img {
  width: 60% !important;
  height: auto !important;
}

/* =========================
   FINAL FIX: HOME Balance
   Introduce と画像を半々、画像はジャケット風
========================= */

.home-main {
  grid-template-columns: 1fr 1fr !important;
  align-items: start !important;
}

.home-visual {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.home-visual img {
  width: 360px !important;
  height: 360px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  border-radius: 18px !important;
}

/* FINAL FIX: Introduce text size */

.home-introduce p {
  font-size: 0.70rem !important;
  line-height: 1.25 !important;
}


/* FINAL FIX: HOME 3 Column Layout */

.home-main {
  grid-template-columns: 1fr 1fr 80px !important;
  grid-template-areas:
    "intro visual follow" !important;
  align-items: start !important;
}

.home-introduce {
  grid-area: intro !important;
}

.home-visual {
  grid-area: visual !important;
}

.follow {
  grid-area: follow !important;
  width: 100% !important;
  height: 360px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}


/* Follow Us 右寄せ */

.follow {
  justify-self: end !important;
  width: 120px !important;
}


/* Follow Us 超右寄せ */

.follow {
  width: 80px !important;
  justify-self: end !important;
}


/* Follow Us さらに右へ */

/* Follow Us さらに細く */

.follow {
  width: 60px !important;
}


/* Follow Us 高さ調整 */

.follow {
  height: 240px !important;

  justify-content: flex-start !important;
  padding-top: 40px !important;
}


/* Header compact final */

.site-header {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.logo {
  font-size: 1.2rem !important;
}

.global-nav {
  margin-top: 4px !important;
}


/* Header ultra compact */

.site-header {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.logo {
  margin-bottom: 0 !important;
}

.global-nav {
  margin-top: 0 !important;
}


/* iPhone background fix */

@media (max-width: 600px) {
  body {
    background-repeat: repeat-y !important;
    background-size: 100% auto !important;
    background-position: center top !important;
  }
}


/* Introduce More Toggle */

.introduce-more {
  display: none;
}

.introduce-more.expanded {
  display: inline;
}

.introduce-toggle {
  margin-top: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: bold;
}

.introduce-toggle:hover {
  color: #93c5fd;
}


/* iPhone Header compact */

@media (max-width: 600px) {
  .site-header {
    padding: 4px 8px !important;
    gap: 2px !important;
  }

  .logo {
    font-size: 0.72rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .global-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 0.62rem !important;
    line-height: 1 !important;
    margin-top: 2px !important;
  }

  .global-nav a {
    white-space: nowrap !important;
  }
}


/* iPhone Header size adjust */

@media (max-width: 600px) {
  .logo {
    font-size: 0.86rem !important;
  }

  .global-nav {
    font-size: 0.72rem !important;
    gap: 9px !important;
  }
}


/* iPhone Header size adjust v2 */

@media (max-width: 600px) {
  .logo {
    font-size: 0.95rem !important;
  }

  .global-nav {
    font-size: 0.78rem !important;
    gap: 10px !important;
  }
}


/* Page hero compact final */

.page-hero {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.page-hero h1 {
  font-size: 2.0rem !important;
  margin: 2px 0 !important;
  line-height: 1 !important;
}

.page-hero .label {
  margin-bottom: 2px !important;
  font-size: 0.9rem !important;
}

.page-hero p {
  margin-top: 2px !important;
  font-size: 0.9rem !important;
}


/* Page hero ultra compact */

.page-hero {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.page-hero h1 {
  font-size: 1.6rem !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.page-hero .label {
  font-size: 0.8rem !important;
  margin: 0 !important;
}

.page-hero p {
  font-size: 0.8rem !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}


/* SONGS jacket no crop */

.songs-page .song-card .jacket img {
  object-fit: contain !important;
}


/* FINAL FINAL Home Image Transparency */

.home-visual img {
  opacity: 0.85 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}


/* Home Image Transparency v2 */

.home-visual img {
  opacity: 0.70 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}


/* Home Image Transparency v4 */

.home-visual img {
  opacity: 0.80 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}


/* Home Image Transparency Final */

.home-visual img {
  opacity: 0.85 !important;
}

.home-visual:hover img {
  opacity: 1 !important;
}

