@charset "UTF-8";
/*
Theme Name: Hyuga Theme Final
Theme URI: https://hyuga-yasuhito.com/
Author: Hyuga Design
Description: タブメニュー完全版（画像メニュー、中央揃え、翻訳抑制、li除去済み）
Version: 1.8
*/

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #CFAAFF;
}

.header-background {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://hyuga-yasuhito.com/wp-content/uploads/2025/04/IMG_0064.jpg') center center / cover no-repeat;
  z-index: 0;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 16, 22, 0.7);
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  z-index: 999;
}

.site-header a img {
  height: 40px;
  display: block;
}
.header-logo-fadein {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.header-logo-fadein.visible {
  opacity: 1;
}

.header-background-fadein {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.header-background-fadein.visible {
  opacity: 1;
}


.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1000;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 4px 0;
}

.global-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 16, 22, 0.95);
  z-index: 998;
}

.global-nav.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.global-menu {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.global-menu li {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

.global-menu li::marker {
  display: none;
  content: '';
}

.global-menu a {
  color: #EE0076;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  display: inline-block;
}

.global-menu a:hover {
  color: #ffffff;
}

.global-menu img {
  height: 19.91px;
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.global-menu a:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  background-color: white;
  color: black;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu-close:hover {
  background-color: #ddd;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .menu-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    aspect-ratio: 1 / 1;
    width: 42px;
    background-color: white;
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
  }

  .menu-close:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
  }

  .svg-logo-container {
    width: 70vw;
  }
}

.svg-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 60vw;
  animation: pulse 1.6s infinite ease-in-out;
  z-index: 10;
  pointer-events: none;
}

.svg-logo-container img {
  width: 100%;
  height: auto;
  display: block;
}
/* ------------------- 心臓の鼓動アニメーション ------------------- */
@keyframes heartbeat {
  0% {
    transform: scale(1) rotateZ(0deg);
  }
  15% {
    transform: scale(1.12, 1.08) rotateZ(-0.4deg);
  }
  30% {
    transform: scale(1.05, 1.02) rotateZ(0.3deg);
  }
  45% {
    transform: scale(1.1, 1.06) rotateZ(-0.2deg);
  }
  60% {
    transform: scale(1) rotateZ(0deg);
  }
  100% {
    transform: scale(1) rotateZ(0deg);
  }
}

.heart-beat {
  animation: heartbeat 2s ease-in-out infinite;
  transform-origin: center;
}

/* ------------------- フェードイン（読み込み時1回のみ） ------------------- */
.heart-fadein {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.heart-fadein.visible {
  opacity: 1;
}


.news-spacer {
  background-color: #D62554;
  height: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;
  display: block;
}


/* マゼンタバー下にある全幅の背景ラッパー */
.news-wrapper {
  background-color: #1d2b32;   /* ✅ 背景色を全幅に適用 */
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin: 0 auto;
}

/* ニュース本文を中央寄せで最大幅1200px */
.news-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* 各ニュースリンク（1投稿分） */
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 1rem;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  border: none;
  margin: 0;
}

/* テキスト部分 */
.news-text {
  font-size: 1rem;
  color: #FFFFFF;
}

/* 矢印画像 */
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;    /* ✅ これでも中央揃うが念のため補強 */
  height: 60px;
  padding: 0 1rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  margin: 0;
}

.news-arrow {
  display: flex;
  align-items: center;    /* ✅ 縦方向中央揃え */
  justify-content: center;
  height: 100%;           /* ✅ .news-item の高さに合わせる */
}

.news-arrow img {
  height: 50px;
  width: auto;
  display: block;
}

.news-item {
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #B730FF;  
}

.news-item:hover .news-arrow img {
  transform: translateX(5px);         /* ✅ 矢印が右へスライド */
  transition: transform 0.3s ease;
}

.ekidare-section {
  width: 100%;
  max-width: 1980px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-color: transparent; /* 背景が必要なら指定 */
}

.ekidare-section img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}


/* ディスコグラフィーセクション全体 */
.discography-section {
  background-color: #CFAAFF;
  padding: 60px 1rem;
  display: flex;
  justify-content: center;
}

.discography-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ジャケ写 */
.discography-jacket img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  display: block;
}

/* 説明項目 */
.discography-details {
  flex: 1;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.discography-details img.label {
  height: 30px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.discography-details .release-year {
  font-weight: bold;
  font-size: 1.2rem;
}

.discography-details .title {
  font-size: 2rem;
  font-weight: bold;
}

.discography-details .description {
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
}

/* モバイル時：縦並び */
@media screen and (max-width: 768px) {
  .discography-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .discography-details {
    align-items: center;
  }
}
/* ==== Discography ボタンエリア ==== */
.release-details .discography-buttons a img {
  height: 40px;    /* ✅ 高さを40pxに */
  width: auto;     /* ✅ 幅は画像比率で自動 */
  display: inline-block;
  vertical-align: middle;
}

.release-details .discography-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
/* 画像ボタンのサイズを確実に指定 */
.discography-buttons a img {
  height: 40px;
  width: auto;
  display: block;
}

/* 横並び：ボタン全体の親コンテナ */
.discography-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* ✅ モバイルでも自動的に折り返せるように */
  margin-top: 1.5rem;
  align-items: center;
}

/* モバイル用に中央揃え */
@media screen and (max-width: 768px) {
  .discography-buttons {
    justify-content: center;
  }
}

.discography-item + .discography-item {
  margin-top: 4rem; /* 前セクションと区切る */
}

.discography-details .release-badge {
  height: 24px;
  width: auto;
  margin-bottom: 0.5rem;
}

.profile-background {
  width: 100%;
  overflow: hidden;
  background: none;
}

.giza-top,
.giza-bottom {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: bottom;
}

/* 画像の重なりによる隙間を防ぐために、デスクトップにも微調整を適用 */
.giza-top.desktop {
  margin-bottom: -0.3px;
}

.giza-bottom.desktop {
  margin-top: -0.5px;
}
.giza-top.desktop,
.giza-bottom.desktop {
  position: relative;   /* z-index を効かせるために必要 */
  z-index: 2;           /* 背景より手前に表示する */
  margin-bottom: -0.5px;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}



.profile-gradient {
  background: linear-gradient(to bottom, #000000, #263bea);
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.profile-content {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.profile-background {
  width: 100%;
  overflow: hidden;
  background: none;
  position: relative; /* ✅ これを追加するだけでOK */
}

@media screen and (max-width: 768px) {
  .giza-top.desktop,
  .giza-bottom.desktop {
    display: none;
  }

  .giza-top.mobile,
  .giza-bottom.mobile {
    display: block;
    margin-top: -0.5px;
    margin-bottom: -0.5px;
  }
}

/* プロフィールセクション背景に2段階グラデーションを追加 */
/* デフォルト（デスクトップ） */
.profile-gradient {
  background: linear-gradient(to bottom, #000000 530px, #263bea 100%);
  padding-top: 0;
  padding-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* モバイル用：グラデーション開始を短くする */
@media screen and (max-width: 768px) {
  .profile-gradient {
    background: linear-gradient(to bottom, #000000 300px, #263bea 100%);
  }
}

/* 中身の配置 */
.profile-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  gap: 20px;
}

/* プロフィール画像は上部黒背景の中に */
.profile-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* タイトル画像を固定幅で中央に */
.profile-title {
  width: 800px;
  max-width: 90%;
  height: auto;
  display: block;
}

/* テキスト本体 */
.profile-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.profile-image {
  width: 800px;
  max-width: 800px;
  height: auto;
  display: block;
}

.profile-button-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: flex-end;
}

.profile-button-image {
  height: 40px;
  width: auto;
  display: block;
}

/* === SNS セクション全体 === */
.sns-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0; /* ← ここを変更 */
  box-sizing: border-box;
}

.sns-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 20px solid #b730ff; /* TikTokの色 */
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 40px;
  background-color: #cfaaff;
  gap: 10px;
  flex-wrap: wrap;
}

.sns-box.tiktok {
  border-color: #b730ff;
}

.sns-inner-box {
  flex: 0 0 48%;
  border: 20px solid #b730ff;
  border-radius: 25px;
  overflow: hidden;
  box-sizing: border-box;
}

.sns-inner-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sns-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}


.sns-title {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.sns-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* ボタン位置：デスクトップは右寄せ、モバイルは中央寄せ */
.sns-more-button {
  display: inline-block;
  background-color: #b730ff;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 8px 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  width: fit-content;

  /* ✅ 右寄せ */
  align-self: flex-end;
  margin-left: auto;
}

/* YouTubeピンク */
.sns-box.youtube {
  border-color: #ff55a1;
}
.sns-box.youtube .sns-inner-box {
  border-color: #ff55a1;
}

/* Instagram グラデーション */
.sns-box.instagram {
  border: 20px solid transparent;
  border-radius: 25px;
  background: linear-gradient(#cfaaff, #cfaaff) padding-box,
              linear-gradient(to right, #00d478, #158cff) border-box;
}
.sns-box.instagram .sns-inner-box {
  border: 20px solid transparent;
  border-radius: 25px;
  background: linear-gradient(#cfaaff, #cfaaff) padding-box,
              linear-gradient(to right, #00d478, #158cff) border-box;
}

/* Instagramボックス全体 */
.sns-box.instagram {
  border: 20px solid transparent;
  border-radius: 25px;
  background: linear-gradient(#cfaaff, #cfaaff) padding-box,
              linear-gradient(to right, #00d478, #158cff) border-box;
}

/* Instagramのインナーボックス */
.sns-box.instagram .sns-inner-box {
  flex: 0 0 48%;
  width: 100% !important;
  max-width: 100% !important;
  border: 20px solid transparent;
  border-radius: 25px;
  background: linear-gradient(#cfaaff, #cfaaff) padding-box,
              linear-gradient(to right, #00d478, #158cff) border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0 auto;
}

/* Instagram埋め込みそのものに対する調整 */
.sns-box.instagram .sns-inner-box blockquote.instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  border: none !important;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sns-more-button {
    /* ✅ モバイル時：中央寄せ */
    align-self: center;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .sns-box {
    flex-direction: column;
  }

  .sns-inner-box,
  .sns-meta {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .sns-inner-box iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
  }
}

/* === SNS MOREボタンカラー統一 === */
.sns-box.instagram .sns-more-button {
  background: linear-gradient(to right, #00d478, #158cff);
}


/* 共通 iframe正方形化 */
.sns-inner-box iframe {
  width: 100%; !important;
  max-width: 100% !important;
  height: auto; !important;
  aspect-ratio: 1 / 1; /* ← これが効かない環境用の保険として次も追加 */
  object-fit: cover;
  display: block;
  border: none;
  box-sizing: border-box;
}

/* 各SNSボックスのMOREボタンカラー統一 */
.sns-box.tiktok .sns-more-button {
  background-color: #b730ff;
}

.sns-box.youtube .sns-more-button {
  background-color: #ff55a1;
}

.sns-box.instagram .sns-more-button {
  background: linear-gradient(to right, #00d478, #158cff);
}

@media screen and (max-width: 768px) {
  .sns-box.youtube .sns-inner-box {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto !important;
  }

  .sns-box.youtube iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: none;
  }
}

/* === 下部液だれセクション === */
.ekidare-under {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ekidare-under img {
  width: 100vw;
  height: auto;
  display: block;
}

/* === フッターエリア === */
/* === 共通設定 === */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* WordPress自動挿入要素の余白対策 */
body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* === フッター全体 === */
.site-footer {
  background-color: #000;
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  text-align: center;
  border-bottom: 0 solid #000;
  margin-top: auto;
}

/* 上から重ねる黒フィルター */
.footer-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  pointer-events: none;
}

/* オーバーレイ影 */
.footer-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none; /* ✅ これを追加 */
}

/* 中央のバイク画像 */
.footer-image {
  height: 400px;
  width: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* クレジット表示 */
.footer-credit {
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 14px 0 14px 0;
  font-size: 1rem;
  position: relative;
  z-index: 10000;
}

/* === フッターメニュー === */
.footer-menu-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  text-align: center;
  width: 100%;
}

.footer-menu-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-menu-overlay li {
  margin: 0;
}

.footer-menu-overlay a {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.footer-menu-overlay a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: #fff;
  transform: scale(1.05);
}

/* === モバイル対応 === */
@media screen and (max-width: 768px) {
  .footer-image {
    height: 200px;
  }

  .footer-menu-overlay ul {
    flex-direction: column;
    gap: 8px;
  }

  .footer-menu-overlay a {
    padding: 5px 14px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
  }

  .footer-menu-overlay {
    top: 48%;
    transform: translate(-50%, -48%);
  }

  .footer-credit {
    padding-bottom: 18px;
    font-size: 0.75rem;
  }
}

/* ==== 固定ページ：ニュース一覧 ==== */
.news-page-section {
  background-color: #00003f;
  padding: 60px 20px;
}

.news-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.news-page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.news-page-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-page-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
}

.news-page-item:hover {
  background-color: #1a1a4f;
}

.news-page-text {
  font-size: 1rem;
  font-weight: bold;
}

.news-page-arrow img {
  height: 24px;
  width: auto;
  display: block;
}

/* セクション名追加のため */
/* ------------------- セクション共通スタイル ------------------- */
.news-bar-wrapper,
.discography-bar-wrapper,
.section-title-background,
.sns-title-background {
  height: 120px;
  width: 100%;
  padding: 40 0px;
  display: flex;
  align-items: center;
}

/* ------------------- セクションごとの背景色 ------------------- */
.news-bar-wrapper {
  background-color: #D62554;
}

.discography-bar-wrapper {
  background-color: #CFAAFF;
}

.section-title-background {
  background-color: #000000; /* ← 03 Biography専用（黒） */
}

.sns-title-background {
  background-color: #CFAAFF;
}

/* ------------------- タイトル表示（共通） ------------------- */
.news-title,
.discography-title,
.section-title-wrapper,
.sns-title-inner {
  display: flex;
  align-items: baseline;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease;
}

.news-title.visible,
.discography-title.visible,
.section-title-wrapper.visible,
.sns-title-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------- テキスト共通スタイル ------------------- */
.section-number {
  font-size: 100px;
  font-family: 'Dela Gothic One', sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.section-label {
  font-size: 40px;
  font-family: 'Dela Gothic One', sans-serif;
  color: #ffffff;
  font-weight: bold;
}

/* ------------------- モバイル対応 ------------------- */
@media screen and (max-width: 768px) {
  .news-bar-wrapper,
  .discography-bar-wrapper,
  .section-title-background,
  .sns-title-background {
    padding: 20 0px;
  }

  .news-title,
  .discography-title,
  .section-title-wrapper,
  .sns-title-inner {
    gap: 10px;
  }

  .section-number {
    font-size: 60px;
  }

  .section-label {
    font-size: 24px;
  }
}

/* 各セクションごとのアニメーション */
.fade-in-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.fade-in-content.visible {
  opacity: 1;
  transform: translateY(0);
}