@charset "UTF-8";

/* ==========================================================================
   1. 全体設定（リセット＆ベース）
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background-color: #0b0b10;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

@media screen and (max-width: 1440px) {
  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }
}

/* ==========================================================================
    共通アニメーション：フェードイン（fadein）
   ========================================================================== */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  /* 30px下に下げておく */
  transition: opacity 1.8s ease, transform 1.8s ease;
  will-change: opacity, transform;
  /* アニメーションのチラつき防止・高速化 */
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻る */
}

/* ==========================================================================
   2. サイト全体を貫通する背景指定
   ========================================================================== */
.site-container {
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* ==========================================================================
   3. 各エリアのレイアウト（1440px以上固定値）
   ========================================================================== */
.top-hero {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 49px 37px 97px 40px;
}

.site-main {
  width: 100%;
  background: transparent;
  padding: 100px 0;
}

/* ヒーロー内のレイアウト調整 */
.header-inner {
  max-width: 1384px;
  margin: 0 auto;
  padding-left: 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-logo img {
  width: 160px;
}

/* 右側縦並びナビ */
.header-nav ul {
  text-align: right;
}

.header-nav li {
  margin-bottom: 12px;
  font-size: 15px;
}

.hero-main-content {
  max-width: 1143px;
  margin: 20px auto 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

/* 左側キャッチコピー */
.hero-text-area {
  flex: 1;
  position: relative;
  z-index: 5;
  margin-top: 20px;
}

.catch-copy {
  font-size: 88px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.catch-sub_copy {
  font-size: 32px;
  margin-top: 18px;
}

/* 右側画像エリア */
.hero-img-area {
  width: 732px;
  position: relative;
  z-index: 2;
  margin-left: -120px;
}

.hero-img-wrapper {
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  display: block;
}

/* ボタンのスタイリング（1440px以上固定値） */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-group {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 15px;
  overflow: hidden;
  width: 224px;
  height: 57px;
}

.btn-label {
  font-size: 15px;
  line-height: 1.3;
  flex: 1.3;
  padding: 0 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-action {
  font-size: 13px;
  color: #ffffff;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background-image: linear-gradient(25deg, rgb(60, 125, 150) 0%, rgb(58, 101, 145) 99%);
}

.btn-action.gray {
  background-image: linear-gradient(25deg, rgb(154, 154, 154) 0%, rgb(95, 95, 95) 99%);
}

.btn-action:hover {
  opacity: 0.9;
}


@media screen and (max-width: 1440px) {
  .header-inner {
    padding-left: clamp(0.25rem, -34.188rem + 47.01vw, 8.125rem);
  }

  .site-logo img {
    width: clamp(7.5rem, 4.635rem + 5.96vw, 10rem);
  }

  .top-hero {
    padding: 49px 17px clamp(3rem, -0.51rem + 7.3vw, 6.063rem) 10px;
  }

  .catch-copy {
    font-size: clamp(3.375rem, 0.94rem + 5.07vw, 5.5rem);
  }

  .catch-sub_copy {
    font-size: clamp(1.125rem, 0.122rem + 2.09vw, 2rem);
  }

  .btn-label {
    font-size: clamp(0.813rem, 0.669rem + 0.3vw, 0.938rem);
  }

  .btn-action {
    font-size: clamp(0.688rem, 0.544rem + 0.3vw, 0.813rem);
  }
}

@media screen and (max-width: 1172px) {
  .header-inner {
    padding-left: 0;
  }
}

@media screen and (max-width: 1090px) {
  .hero-img-area {
    width: clamp(30.938rem, -4.548rem + 73.83vw, 45.75rem);
  }
}

@media screen and (max-width: 768px) {
  .site-container {
    background-image: url("../img/bg_sp.jpg");
    background-size: cover;
  }

  .top-hero {
    padding: 90px 1.39% 70px;
    overflow-x: hidden;
  }

  /* スマホ環境でも縦並びにせず、ご提示いただいた重なりレイアウトを維持 */
  .hero-main-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    margin-top: 30px;
    position: relative;
  }

  .header-inner {
    padding-left: 0;
    padding-right: 20px;
  }

  .header-nav {
    display: none;
  }

  .site-logo img {
    width: 17.07vw;
    max-width: 128px;
  }

  .hero-text-area {
    margin-top: 0;
    width: 100%;
    padding-right: 20px;
  }

  .catch-copy {
    font-size: 11.2vw;
    line-height: 1.1;
  }


  .catch-sub_copy {
  font-size: 4.5vw;
}

.hero-img-area {
  width: 97.6vw;
  max-width: 732px;
  height: 53.06vw;
  max-height: 398px;
  margin-left: 1vw;
  margin-top: 13px;
  flex-shrink: 0;
}

.hero-img-wrapper {
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-buttons {
  display: none;
}
}

/* ==========================================================================
   ✨ ヒーローメインコンテンツ専用：ぼわーんフェードイン（Hero Fade）
   ========================================================================= */
.hero-main-content {
  opacity: 0;
  /* 最初は透明 */
  transform: translateY(20px);
  /* 20px下に下げる */
  animation: heroFadeIn 1.2s ease-out 0.5s forwards;
  /* ✅ アニメーション発動 */
  will-change: opacity, transform;
  /* アニメーションのチラつき防止 */
}

/* 🔶 アニメーション（キーフレーム）の定義 */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* スタート：透明で少し下 */
  }

  to {
    opacity: 1;
    transform: translateY(0);
    /* ゴール：くっきり元の位置 */
  }
}

/* ==========================================================================
   5. 下部メインエリア・共通インナー設計
   ========================================================================== */
.site-main {
  width: 100%;
  padding: 97px 0 0;
}

.section-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.39%;
}


@media screen and (max-width: 1440px) {
  .site-main {
    padding: clamp(3rem, -0.51rem + 7.3vw, 6.063rem) 0 0;
  }
}

@media screen and (max-width: 768px) {
  .section-inner {
    padding: 0 4%;
  }
}

/* ==========================================================================
   6. What is セクション固有のスタイリング（PC版）
   ========================================================================== */
.whats-section {
  width: 100%;
  margin-bottom: 85px;
}

.section-title {
  font-size: 62px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.section-title .accent-color {
  color: #e85b3a;
}

/* 左右2カラムのレイアウト構造（横並び） */
.whats-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 75px;
}

/* 左側：画像エリア（固定値 470px * 290px） */
.whats-img-wrapper {
  width: 470px;
  height: 290px;
  flex-shrink: 0;
  /* 横幅を絶対に縮ませない */
  border-radius: 8px;
  /* スクショの画像の緩やかな角丸を再現 */
  overflow: hidden;
}

.whats-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側：テキストエリア */
.whats-text-wrapper {
  flex: 1;
  padding-top: 25px;
}

/* 右側タイトル（37px） */
.whats-subtitle {
  font-size: 37px;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* 本文テキスト（20px） */
.whats-description {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
}



@media screen and (max-width: 1440px) {
  .section-title {
    font-size: clamp(2.5rem, 0.924rem + 3.28vw, 3.875rem);
  }

  .whats-content {
    gap: clamp(2rem, -1.08rem + 6.41vw, 4.688rem);
  }

  .whats-subtitle {
    font-size: clamp(1.875rem, 1.374rem + 1.04vw, 2.313rem);
  }

  .whats-description {
    font-size: clamp(1rem, 0.713rem + 0.6vw, 1.25rem);
  }
}

@media screen and (max-width: 900px) {
  .whats-img-wrapper {
    width: clamp(22.813rem, -15.711rem + 80.15vw, 29.375rem);
    height: clamp(13.938rem, 9.138rem + 9.99vw, 18.125rem);
  }
}

@media screen and (max-width: 768px) {
  .whats-section {
    margin-bottom: 60px;
    /* スマホ用にセクション下の余白を調整 */
  }

  /* 💡 タイトル：750pxのときに60px（60 / 750 * 100 = 8vw） */
  .section-title {
    font-size: 8vw !important;
    max-width: 100%;
    margin-bottom: 24px !important;
  }

  /* 縦並びのレイアウトに切り替え */
  .whats-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  /* 💡 画像エリア：横幅いっぱい（インナーの左右パディング20pxを除いた100%）
     縦幅は、元の比率 470:290（約1.62）を美しく維持するために aspect-ratio を設定
  */
  .whats-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 470 / 290;
    border-radius: 6px;
    /* スマホの画面幅に合わせて角丸をわずかに微調整 */
  }

  .whats-text-wrapper {
    width: 100%;
    padding-top: 0;
    /* 縦並びになるためPC版の上部パディングをリセット */
  }

  /* 💡 テキストタイトル：750pxのときに37px（37 / 750 * 100 ≒ 4.93vw） */
  .whats-subtitle {
    font-size: 4.93vw;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  /* 💡 本文テキスト：750pxのときに24px（24 / 750 * 100 ≒ 3.2vw） */
  .whats-description {
    font-size: clamp(0.875rem, -0.291rem + 3.73vw, 1.5rem);
    line-height: 1.6;
  }
}

/* ==========================================================================
   13. News セクション固有のスタイリング
   ========================================================================== */
.news-section {
  width: 100%;
  margin-bottom: 120px;
}

.news-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* カード同士の縦の隙間 */
  width: 100%;
}

/* --- ニュースカードのベーススタイル --- */
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 124px;
  border-width: 1px;
  border-color: rgb(18, 32, 45);
  border-style: solid;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(36, 66, 87);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0.702;
  padding: 24px 28px;
  text-decoration: none;
  color: #ffffff;
  box-sizing: border-box;
  transition: background-color 0.3s, transform 0.3s;
}

/* リンク付きカード（aタグ）のホバーエフェクト */
a.news-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* --- メタ情報エリア（日付＆カテゴリバッジ） --- */
.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.news-date {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* カテゴリバッジの共通パーツ */
.news-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.badge-audition {
  background-color: rgb(18, 32, 45);
  color: #ffffff;
}

.badge-news {
  background-color: #1b3141;
  color: #ffffff;
}

.badge-live {
  background-color: #3a7991;
  color: #ffffff;
}

/* --- ニューステキスト（タイトル・サブタイトル） --- */
.news-title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
}

.news-subtitle {
  display: inline-block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* --- 右下のアクションテキスト（PR TIMESで読む / 応募ページへ） --- */
.news-action-text {
  position: absolute;
  right: 28px;
  bottom: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-card.has-thumbnail {
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}

.news-content-left {
  flex: 1;
}

.news-thumbnail-box {
  width: 178px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   🛠️ 【レスポンシブ】768px以下のスマホ表示
   ========================================================================== */
@media screen and (max-width: 768px) {
  .news-card {
    padding: 20px;
    min-height: auto;
  }

  .news-card.has-thumbnail {
    gap: 16px;
    flex-direction: column;
  }

  .news-thumbnail-box {
    width: 200px;
    height: auto;
  }

  /* 右下のアクションテキストをスマホでは相対配置にして下にゆとりを持たせる */
  .news-action-text {
    position: static;
    display: block;
    text-align: right;
    margin-top: 12px;
  }
}

/* ==========================================================================
   8. Business セクション固有のスタイリング（PC版・1440px以上）
   ========================================================================== */
.business-section {
  width: 100%;
  margin-bottom: 120px;
  /* 次のセクションとの余白 */
}

/* 2×2のグリッド構築 */
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 横並び2等分 */
  gap: 24px;
  /* カード同士の間隔（デザインデータに合わせて微調整してください） */
}

/* 個々のカードデザイン（ご指定の数値をベースに構築） */
.business-card {
  background-color: rgba(255, 255, 255, 0.212);
  border: 1px solid rgb(255, 255, 255);
  /* 細い外枠の線 */
  border-radius: 10px;
  /* カード全体の角丸 */
  padding: 52px 31px 34px;
  /* 内側の余白 */
  display: flex;
  flex-direction: column;
  /* 縦並びにして下部に画像を固定しやすくする */
  opacity: 0.902;
}

/* カードタイトル（26px） */
.card-title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

/* カード本文テキスト（20px） */
.card-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.078em;
  color: rgba(255, 255, 255);
  margin-bottom: 30px;
  flex-grow: 1;
}

/* カード内画像エリア */
.card-img-wrapper {
  width: 100%;
  height: 236px;
  /* カード内の画像高さを均一に固定（デザインに合わせて調整してください） */
  border-radius: 8px;
  /* 画像部分の角丸 */
  overflow: hidden;
  background-color: #000000;
  /* 画像がない時、または読み込み前の黒バック */
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 枠いっぱいに綺麗にカバー */
}

/* ==========================================================================
   9. 【ここを追加】レスポンシブ対応（768px以下・SP用750px基準）
   ========================================================================== */

/* 🛠️ 768px以下：デザインに合わせ、ギリギリまで「2列」を維持するゾーン */
@media screen and (max-width: 768px) {
  .business-section {
    margin-bottom: 80px;
    /* スマホ用にセクション下の余白を調整 */
  }

  /* 💡 750px基準の2列レイアウト（gapを少し詰めて横幅を確保） */
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* スマホ用にカード内の余白をタイトに調整 */
  .business-card {
    padding: 30px 20px 24px;
  }

  /* 💡 カードタイトル：ご指定の 19px */
  .card-title {
    font-size: 19px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }

  /* 💡 本文テキスト：ご指定の 16px */
  .card-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }

  /* 画像の高さも横幅の縮小に合わせてスマートに自動可変（aspect-ratioで比率を維持） */
  .card-img-wrapper {
    height: auto;
    aspect-ratio: 310 / 190;
    /* PC版の比率をベースにSPサイズに最適化 */
  }
}

/* 🛠️ 480px以下：これ以上縮めると文字が溢れる真のギリギリで「1列」に切り替えるゾーン */
@media screen and (max-width: 480px) {
  .business-grid {
    grid-template-columns: 1fr;
    /* 1列に切り替え */
    gap: 20px;
  }

  .business-card {
    padding: 24px 18px 28px;
    /* 1列になったら少し余白を広げて見やすく */
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* ==========================================================================
   10. Artist セクション固有のスタイリング（PC版・1440px以上）
   ========================================================================== */
.artist-section {
  width: 100%;
  margin-bottom: 120px;
}

/* 左右2カラムの横並びレイアウト */
.artist-content {
  display: flex;
  align-items: flex-start;
  /* 💡高さは各子要素で500px固定にするため、flex-startに戻します */
  justify-content: space-between;
}

/* 左側：画像エリア（固定値 450px * 500px） */
.artist-img-wrapper {
  width: 450px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側：プロフィールカード（★ここを修正） */
.artist-profile-card {
  flex: 1;
  height: 500px;
  margin-left: 17px;
  background-color: rgba(255, 255, 255, 0.212);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 💡中身の各要素（名前、本文、白枠、SNS）をカードの上下いっぱいに等間隔分配 */
  opacity: 0.902;
}

/* アーティスト名エリア */
.artist-name-area {
  margin-bottom: 0;
  /* 💡space-betweenで自動分配するためマージンをリセット */
}

/* ルビ（15px） */
.artist-ruby {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: -6px;
}

/* グループ名 */
.artist-name {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* プロフィール本文テキスト（17px） */
.profile-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  /* 💡リセット */
}

/* ツアー情報等の白枠エリア（17px） */
.profile-info-box {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 0;
  /* 💡リセット */
}

.profile-info-box p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

/* SNSリンクエリア（横並び） */
.profile-sns-links {
  display: flex;
  gap: 24px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}

.sns-link:hover {
  opacity: 0.7;
}

/* SNSアイコン（固定値 26px） */
.sns-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media screen and (max-width: 900px) {
  .artist-img {
    object-fit: contain;
  }

  .artist-img-wrapper {
    width: clamp(20.813rem, -21.733rem + 88.64vw, 28.125rem);
  }

}

/* ==========================================================================
   11. Artist セクション レスポンシブ対応（768px以下・SP用750px基準）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .artist-section {
    margin-bottom: 80px;
  }

  .artist-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .artist-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 690 / 769;
    border-radius: 16px;
  }

  .artist-profile-card {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 32px 24px;
    gap: 16px;
  }

  .artist-name-area {
    margin-bottom: 0;
  }

  .artist-ruby {
    font-size: 2.93vw;
    margin-bottom: 0;
  }

  .artist-name {
    font-size: 7.33vw;
    line-height: 1.1;
  }

  .profile-text {
    font-size: 2.67vw;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }

  .profile-info-box {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
  }

  .profile-info-box p {
    font-size: 2.67vw;
    line-height: 1.5;
  }

  .profile-sns-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .sns-link {
    font-size: 3.5vw;
  }

  .sns-icon {
    width: clamp(1.5rem, 0.413rem + 4.35vw, 2.5rem);
    height: clamp(1.5rem, 0.413rem + 4.35vw, 2.5rem);
    margin-right: 6px;
  }
}

@media screen and (max-width: 500px) {
  .artist-profile-card {
    padding: 32px 18px;
    gap: 16px;
  }

  .profile-info-box {
    padding: 16px 16px;
  }

  .profile-text {
    font-size: 15px;
  }

  .profile-info-box p {
    font-size: 15px;
  }

  .sns-icon {
    width: 18px;
    height: 18px;
  }

  .profile-sns-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .sns-link {
    font-size: 16px;
  }
}


/* ==========================================================================
   12. Music セクション固有のスタイリング
   ========================================================================== */
.music-section {
  width: 100%;
  margin-bottom: 120px;
}

/* --- 再生ボタンの共通パーツ --- */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-block:hover .video-thumbnail img {
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background-color: #e85b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

.play-button.sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.play-button.sm::after {
  border-width: 7px 0 7px 12px;
  margin-left: 3px;
}

/* --- 1. メイン動画エリア（614px * 252px） --- */
.music-main-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 56px;
}

.main-video {
  width: 594px;
  height: 324px;
  flex-shrink: 0;
  display: block;
}

.main-info {
  flex: 1;
  padding-left: 40px;
}

/* テキスト類のスタイリング */
.release-year {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.video-text-title {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 16px;
}

.watch-link {
  font-size: 14.5px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.watch-link:hover {
  opacity: 1;
}

/* --- 2. サブ動画エリア（💡PC大画面から画面右端までブチ抜くスライダー） --- */
.music-slider-container {
  /* 💡 画面幅に余裕があるとき、右側をマスクせずブラウザの右限界まで表示領域を広げる指定 */
  width: calc(50vw + 477px);
  /* 💡中央（50vw）からインナーの半分（954/2=477px）を足して右端へ直通 */
  max-width: 100vw;
  overflow: visible;
  /* 💡マスクを外して、余裕がある画面幅なら全部見えるようにします */
}

/* 画面外に突き抜けたスライダーの、さらに右側だけを綺麗に隠すため、
   サイト全体（bodyやsite-mainなど）に overflow-x: hidden; がかかっていることを前提にしています */
.music-sub-slider {
  display: flex !important;
}

.sub-video-item {
  /* 💡【ご指定サイズ】 */
  width: 246px !important;
  max-width: 246px !important;
  flex-shrink: 0 !important;
}

.sub-video {
  display: block;
  width: 246px !important;
  /* 💡【ご指定サイズ】 */
  height: 137px !important;
  margin-bottom: 14px;
}

.sub-info .video-text-title {
  font-size: 14px;
  margin-bottom: 0;
}

/* --- 3. チャンネルボタン --- */
.music-btn-area {
  text-align: center;
  margin-top: 45px;
  width: 100%;
}

.btn-channel {
  display: inline-block;
  border: 1px solid #ffffff;
  border-radius: 14px;
  padding: 12px 64px;
  font-size: 21px;
  font-weight: 300;
  color: #ffffff;
  transition: background 0.3s, color 0.3s;
}

.btn-channel:hover {
  background: #ffffff;
  color: #0b0b10;
}

@media screen and (max-width: 768px) {
  .music-section {
    margin-bottom: 80px;
  }

  /* メイン動画エリア：横並びを維持 */
  .music-main-feature {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 40px;
    gap: 20px;
  }

  .main-video {
    width: 458px !important;
    max-width: 614px !important;
    height: 254px !important;
    flex-shrink: 1 !important;
    margin-bottom: 0 !important;
  }

  .main-info {
    flex: 1 !important;
    width: auto !important;
    padding-left: 0 !important;
  }

  .video-text-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .release-year {
    font-size: 12px;
    margin-bottom: 4px;
  }

  /* サブ動画エリアのスマホ用リセット */
  .music-slider-container {
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  /* 💡 固定幅を外し、481pxまで綺麗な2×2列で滑らかに縮むように変更 */
  .music-sub-slider {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    /* 💡カチッと2列に固定 */
    gap: 32px 20px !important;
    /* 横の隙間は20px */
    width: 100% !important;
    transform: none !important;
  }

  /* 各アイテムの固定を外し、100%レスポンシブ化 */
  .sub-video-item {
    width: 100% !important;
    max-width: 330px !important;
    /* 💡最大幅は330px */
    margin: 0 auto !important;
  }

  /* 💡 481pxの時にちょうど「208px * 117px（16:9）」になるよう比率で自動計算 */
  .sub-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 208 / 117 !important;
    /* 💡 330pxの時にも綺麗な16:9（ほぼ180px）をキープ */
    margin-bottom: 12px;
  }

  .music-btn-area {
    margin-top: 40px;
  }

  .btn-channel {
    width: 100%;
    max-width: 286px;
    padding: 12px 0;
    font-size: 14px;
  }

  .watch-link {
    font-size: 10px;
  }
}

/* ==========================================================================
   🛠️ 740px以下のメイン動画の縦並び切り替え
   ========================================================================== */
@media screen and (max-width: 740px) {
  .music-main-feature {
    flex-direction: column !important;
    width: 100% !important;
  }

  .main-video {
    width: 100% !important;
    max-width: unset !important;
    height: auto !important;
  }

  .main-info {
    flex: unset !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   🛠️ 【修正】480px以下のときに1列＆画像幅を画面いっぱいに広げる
   ========================================================================== */
@media screen and (max-width: 480px) {
  .music-sub-slider {
    grid-template-columns: 1fr !important;
    /* 1列に変更 */
    gap: 32px 0 !important;
    /* 縦の隙間を維持して横をリセット */
  }

  .sub-video-item {
    width: 100% !important;
    max-width: 100% !important;
    /* 💡330pxの制限を解除して画面いっぱいに広げる */
  }

  .sub-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    /* 比率は上の 208 / 117 を自動引き継ぎ */
  }
}

/* ==========================================================================
　　　　　　contents-section
   ========================================================================== */
.contents-section {
  flex-direction: row-reverse;
  gap: 68px;
}

.contents-img-wrapper {
  width: 470px;
  height: 446px;
}

.contents-card .profile-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

@media screen and (max-width: 958px) {
  .main-video {
    width: clamp(27.313rem, -12.612rem + 83.07vw, 37.125rem);
    height: clamp(14.813rem, -7.312rem + 46.03vw, 20.25rem);
  }

  .contents-img-wrapper {
    width: clamp(22.313rem, -6.423rem + 59.79vw, 29.375rem);
    height: clamp(21.25rem, -5.706rem + 56.08vw, 27.875rem);
  }

  .contents-card .profile-text {
    font-size: clamp(1.125rem, 0.616rem + 1.06vw, 1.25rem);
  }
}

@media screen and (max-width: 768px) {
  .contents-section {
    flex-direction: column;
    gap: clamp(2rem, -0.321rem + 9.52vw, 4.25rem);
  }

  .contents-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    border-radius: unset;
  }


  .contents-img-wrapper .artist-img {
    content: url("../img/contents_img_sp.png") !important;
  }

  .contents-card .profile-text {
    font-size: clamp(1rem, 0.484rem + 2.12vw, 1.5rem);
  }

}

/* ==========================================================================
　　　　　　fanclub-section
   ========================================================================== */

.fanclub-content {
  gap: 68px;
  align-items: center;
}

.fanclub-img-wrapper {
  width: 470px;
  height: 290px;
}

.fanclub-text {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 26px;
}

.fanclub-card {
  width: 33%;
}

@media screen and (max-width: 958px) {
  .fanclub-text {
    font-size: clamp(1.75rem, -0.284rem + 4.23vw, 2.25rem);

  }
}

@media screen and (max-width: 768px) {
  .fanclub-content {
    gap: clamp(2rem, -0.321rem + 9.52vw, 4.25rem);
    margin-top: 42px;
  }

  .fanclub-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    border-radius: unset;
  }

  .fanclub-card {
    width: 100%;
  }

  .fanclub-text {
    font-size: clamp(1.75rem, 1.234rem + 2.12vw, 2.25rem);
    margin-bottom: 16px;
  }

  .fanclub-card .profile-text {
    font-size: clamp(1rem, 0.484rem + 2.12vw, 1.5rem);
    ;
  }
}




.ceo-section .artist-content {
  flex-direction: row-reverse;
}

.ceo-section .artist-profile-card {
  margin-left: 0;
  margin-right: 17px;
}

.ceo-card {
  flex: 1;
  height: 581px;
  margin-left: 17px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* 上詰めにし、各ブロックの間隔はmarginで制御します */
  opacity: 0.902;
}

/* --- 上部：ロゴと名前エリアの横並び --- */
.ceo-header-area {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}

/* 左側：ロゴのサイズ指定（ご指定: 157px * 68px） */
.ceo-logo {
  width: 157px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 縦横比を崩さずに枠内に収める */
}

/* 右側：名前と役職のブロック */
.ceo-title-name {
  padding-left: 24px;
}

/* 役職（ご指定: 12px） */
.ceo-role {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

/* 名前（ご指定: 33px） */
.ceo-name {
  font-size: 33px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

/* --- 下部：メッセージ本文（ご指定: 17px） --- */
.ceo-message-body {
  flex: 1;
}

.ceo-message-body p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 18px;
}

/* 最後の段落は下マージンをリセット */
.ceo-message-body p:last-child {
  margin-bottom: 0;
}

.ceo-img-wrapper {
  width: 450px;
  height: 581px;
}

@media screen and (max-width: 900px) {
  .ceo-img-wrapper {
    width: clamp(22.813rem, -8.373rem + 64.89vw, 28.125rem);
    height: clamp(34.25rem, 22.143rem + 25.19vw, 36.313rem);
  }

  .ceo-card {
    padding: clamp(1.125rem, -4.011rem + 10.69vw, 2rem) clamp(0.75rem, -3.653rem + 9.16vw, 1.5rem);
  }
}

@media screen and (max-width: 768px) {
  .ceo-section .artist-content {
    flex-direction: column;
  }

  .ceo-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }

  .ceo-img-wrapper .artist-img {
    content: url("../img/ceo_sp.png") !important;
    object-fit: contain !important;
    object-position: top !important;
  }

  .ceo-card {
    padding: clamp(1.5rem, -0.177rem + 6.88vw, 3.125rem) clamp(1.125rem, 0.029rem + 4.5vw, 2.188rem);
  }

  .ceo-logo {
    width: clamp(7.5rem, 5.308rem + 8.99vw, 9.625rem);
    height: clamp(3.125rem, 2.222rem + 3.7vw, 4rem);
  }

  .ceo-role {
    font-size: clamp(0.625rem, 0.367rem + 1.06vw, 0.875rem);
    margin-bottom: -5px;
  }

  .ceo-name {
    font-size: clamp(2rem, 1.226rem + 3.17vw, 2.75rem);
  }

  .ceo-message-body p {
    font-size: clamp(0.938rem, 0.615rem + 1.32vw, 1.25rem);
    margin-bottom: clamp(0.5rem, -0.145rem + 2.65vw, 1.125rem);
    letter-spacing: -0.05em;
  }

  .ceo-header-area {
    padding-bottom: clamp(0.5rem, 0.242rem + 1.06vw, 0.75rem);
  }
}

/* ==========================================================================
   14. Schedule セクション（テーブル完全再現・縦線追加版）
   ========================================================================== */
.schedule-section {
  width: 100%;
  margin-bottom: 120px;
}

/* テーブル全体のコンテナ（角丸と薄いグレー背景、枠線） */
.sche-table {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.19);
  border-radius: 10px;
  overflow: hidden;
}

/* 各行のベース共通スタイル（Gridレイアウトで列幅を固定） */
.sche-table-header,
.sche-table-row {
  display: grid;
  grid-template-columns: clamp(7rem, -8.224rem + 32.48vw, 9.375rem) clamp(6.875rem, -5.144rem + 25.64vw, 8.75rem) 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
}

/* --- ① ヘッダー行の装飾 --- */
.sche-table-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.588);
  /* ヘッダーの下線（少し太め） */
  padding: 0;
  /* paddingを解除してセルの枠線と高さを揃える */
  align-items: stretch;
  /* ヘッダーの高さをセル内で最大にする */
}

.sche-table-header div {
  font-size: clamp(0.688rem, -0.514rem + 2.56vw, 0.875rem);
  font-weight: 400;
  color: rgba(255, 255, 255);
  letter-spacing: 0.05em;
  padding: 24px 24px 12px;
  display: flex;
  align-items: center;
}

/* --- ② データ行の装飾 --- */
.sche-table-row {
  padding: 0;
  /* paddingを解除してセルの枠線と高さを揃える */
  border-bottom: 1px solid rgba(255, 255, 255, 0.588);
  /* 行ごとの横線 */
  color: #ffffff;
  align-items: stretch;
  /* セルの高さを最大に */
}

/* 最後の行だけ横線を取り除く */
.sche-table-row:last-child {
  border-bottom: none;
}

/* データ行の中身の共通装飾（ここにpaddingをセット） */
.sche-table-row>div {
  padding: 12px clamp(1.125rem, -1.279rem + 5.13vw, 1.5rem);
  display: flex;
  align-items: center;
}

/* ==========================================================================
   💡 【新設】縦線のスタイリング
   ========================================================================== */

/* 1番目の DATE列、2番目の CATEGORY列、4番目の VENUE列 の右側に縦線を引く */
/* （EVENT TITLEの右側には引かないことで、デザインのバランスを保ちます） */
.sche-table-header .sche-col-date,
.sche-table-header .sche-col-category,
.sche-table-header .sche-col-title,
.sche-table-row .sche-col-date,
.sche-table-row .sche-col-category,
.sche-table-row .sche-col-title {
  border-right: 1px solid rgba(255, 255, 255, 0.588);
  /* 外枠と同じ線 */
}

/* リンク付きイベント（オレンジ赤＋下線） */
.sche-event-link {
  color: #e05838;
}

/* VENUE列のスタイリング（縦線のためにpaddingとalignを再セット） */
.sche-col-venue {
  font-size: clamp(0.938rem, -1.066rem + 4.27vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255);
  align-items: center !important;
}

/* DATE列のスタイリング（縦並びのためにflex-directionを再セット） */
.sche-col-date {
  flex-direction: column;
  align-items: flex-start !important;
  /* スマホ時の指定に負けないように!important */
  gap: 2px;
}

.sche-num {
  font-size: clamp(2.125rem, -3.083rem + 11.11vw, 2.938rem);
  font-weight: 400;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.sche-sub-date {
  font-size: clamp(0.688rem, -0.915rem + 3.42vw, 0.938rem);
  color: rgba(255, 255, 255);
  letter-spacing: 0.02em;
}

.sche-col-category {
  font-size: 15px;
}

.sche-bar {
  margin-right: 4px;
}

.sche-col-title {
  font-size: clamp(0.875rem, -1.128rem + 4.27vw, 1.188rem);
}

/* ==========================================================================
   🛠️ 【レスポンシブ】スマホ・タブレット表示（縦線完全再現版）
   ========================================================================== */
@media screen and (max-width: 640px) {

  /* ① テーブル全体のコンテナを「透明」にし、PC用の外枠線を消す */
  .sche-table {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  /* ② PC用の項目ヘッダーを完全に非表示にする */
  .sche-table-header {
    display: none !important;
  }

  .sche-table-row {
    display: grid !important;
    grid-template-columns: 85px 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: start !important;
    background-color: rgba(255, 255, 255, 0.19) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    margin-bottom: 12px !important;
  }

  /* 最後のカードの下マージンを調整 */
  .sche-table-row:last-child {
    margin-bottom: 0 !important;
  }

  /* PC用の右側の縦線をすべて一度クリアする */
  .sche-table-row .sche-col-category,
  .sche-table-row .sche-col-title {
    border-right: none !important;
  }

  /* ⑤ 💡【最重要】左側：DATEエリア（右横にきれいな縦線を引く） */
  .sche-col-date {
    display: flex !important;
    flex-direction: column !important;
    /* 日付の下に曜日 */
    align-items: center !important;
    /* 文字を中央寄せ */
    justify-content: center !important;
    padding-right: 30px !important;
    padding-left: 24px !important;
    /* 縦線と文字の間の隙間 */
    height: 100% !important;
    /* カードの高さに合わせて縦線をめいっぱい伸ばす */
    min-height: 70px;
    /* 縦線が短くならないように高さを担保 */
  }

  /* スマホ時の日付の数字サイズ */
  .sche-num {
    font-size: 48px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
  }

  .sche-num.text-tba {
    font-size: 20px !important;
  }

  .sche-sub-date {
    font-size: 14px !important;
    text-align: center;
    white-space: nowrap;
  }

  /* ⑥ 右側：各要素のグリッド配置（左に日付、右に縦並びの3つを配置） */
  .sche-col-date {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .sche-col-category {
    grid-column: 2;
    grid-row: 1;
    margin-left: 12px;
  }

  .sche-col-title {
    grid-column: 2;
    grid-row: 2;
    margin-left: 12px;
  }

  .sche-col-venue {
    grid-column: 2;
    grid-row: 3;
    margin-left: 12px;
  }

  /* 右側コンテンツの細かな文字・余白調整 */
  .sche-col-category {
    font-size: 14px !important;
    margin-bottom: 2px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* カテゴリの左にある「|」の棒の色をスクショに合わせたパープル系に */
  .sche-bar {
    margin-right: 6px !important;
    font-weight: bold !important;
  }

  .sche-col-title {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 2px !important;
    display: block !important;
  }

  .sche-col-venue {
    font-size: 16px !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .sche-table-row>div {
    padding: 2px;
  }
}

/* ==========================================================================
   15. FAQ セクション（アコーディオン完全版）
   ========================================================================== */
.faq-section {
  width: 100%;
  margin-bottom: 120px;
}

.faq-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 32px 32px;
  box-sizing: border-box;
}

.faq-category-group {
  margin-bottom: 40px;
}

.faq-category-group:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  padding-left: 4px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 4px;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  font-size: 14px;
}

.faq-q-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-right: 24px;
  pointer-events: none;
}

.faq-prefix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-right: 4px;
}

.faq-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  pointer-events: none;
  /* 💡クリック時のターゲットブレ防止 */
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg) !important;
}

/* 💡 回答エリア：初期状態を「高さ0・非表示」に厳密固定 */
.faq-a {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  /* 最初は完全に見えなくする */
  transition: height 0.3s ease-out, visibility 0.3s ease-out;
}

/* 💡 開いたときはvisibilityを表示にする */
.faq-item.is-open .faq-a {
  visibility: visible;
}

.faq-a-inner {
  display: flex;
  align-items: flex-start;
  padding-bottom: 24px;
  padding-left: 20px;
}

.faq-prefix-a {
  color: #e25c38;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-right: 12px;
  line-height: 1.5;
}

.faq-a-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.faq-a-body a {
  color: #ffffff;
  word-break: break-all;
  transition: color 0.2s;
}

.faq-a-body a:hover {
  color: #e25c38;
}

@media screen and (max-width: 768px) {
  .faq-container {
    padding: 24px 16px;
    border-radius: 8px;
  }

  .faq-q {
    padding: 20px 4px;
    font-size: 15px;
  }

  .faq-a-inner {
    padding-left: 4px;
  }

  .faq-a-body {
    font-size: 15px;
  }
}

/* ==========================================================================
   16. COMPANY & CONTACT セクション（左右高さ一貫・確定版）
   ========================================================================== */
.comp-ctc-section {
  width: 100%;
  padding-bottom: 120px;
}

/* タイトルのレスポンシブ制御 */
.pc-only-title {
  display: block;
}

.sp-only-title {
  display: none;
}

/* PC：横並びレイアウト（Figma通り均等2カラム） */
.comp-ctc-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* 💡 左右の要素を強制的に同じ高さまで引き伸ばす */
  gap: 18px;
  width: 100%;
}

.company-block,
.contact-block {
  display: flex;
  flex-direction: column;
}

.company-block {
  width: 43%;
}

.contact-block {
  width: 57%;
}

/* 🔶 コンテナデザイン（高さを常に100%で揃える） */
.company-content,
.contact-content {
  width: 100%;
  height: 100%;
  /* 💡 親のストレッチに合わせて、中身に関わらず高さを完全に揃える */
  background-color: rgba(255, 255, 255, 0.19);
  border: 1px solid rgba(255, 255, 255);
  border-radius: 32px;
  padding: 72px 24px;
  box-sizing: border-box;
  display: flex;
  /* 💡 送信ボタンや要素が崩れないように内部も最適化 */
  flex-direction: column;
}

.company-content {
  padding: 72px 24px 40px;
}

.contact-content {
  padding: 72px 50px 40px;
}

/* フォーム全体を縦いっぱいに広げて送信ボタンの配置を安定させる */
.formrun-custom-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   ■ COMPANY スタイル
   -------------------------------------------------------------------------- */
.company-list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.company-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255);
  padding: 20px 0 8px;
}

.company-row:first-child {
  padding-top: 0;
}

.company-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.company-list dt {
  width: 100px;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  flex-shrink: 0;
  padding-left: 12px;
}

.company-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255);
}

/* --------------------------------------------------------------------------
   ■ CONTACT スタイル
   -------------------------------------------------------------------------- */
/* お名前と会社名の横並び（PC時） */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.form-row-2col .form-group {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: flex;
  align-items: center;
  font-size: 9px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 4px;
}

/* 小さく赤いアスタリスク（*） */
.required-asterisk {
  color: #ef4444;
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
}

.inline-asterisk {
  margin-left: 2px;
  vertical-align: middle;
}

/* インプット・セレクト・テキストエリア共通 */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
}

.form-select:invalid,
.form-select option[value=""] {
  color: rgba(255, 255, 255, 0.35);
}

.form-select option {
  background-color: #262930;
  color: #ffffff;
}

.form-textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* プライバシーポリシーチェックエリア */
.form-privacy-group {
  margin: 0px 0 24px;
}

.privacy-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.privacy-checkbox {
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  cursor: pointer;
  accent-color: #e85b3a;
}

.privacy-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-text a {
  color: #ffffff;
  text-decoration: underline;
}

/* 送信ボタン（ホバーアニメーション付き・位置下部固定） */
.form-submit-wrap {
  width: 100%;
}

.form-submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 46px;
  background-color: #e85b3a;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  outline: none;
  transition: opacity 0.2s;
}

.form-submit-btn span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover {
  opacity: 0.85;
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

@media screen and (max-width: 900px) {
  .company-list dd {
    font-size: clamp(0.813rem, 0.079rem + 1.53vw, 0.938rem);
  }
}

@media screen and (max-width: 768px) {
  .comp-ctc-section {
    padding-bottom: 80px;
  }

  .pc-only-title {
    display: none;
  }

  .sp-only-title {
    display: block;
    margin-bottom: 20px;
  }

  /* 縦積みへ変更し、ストレッチを解除 */
  .comp-ctc-flex-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .company-block,
  .contact-block {
    width: 100%;
  }

  .company-content,
  .contact-content {
    padding: clamp(1.875rem, 0.945rem + 4.65vw, 3.125rem) clamp(0.75rem, -0.552rem + 6.51vw, 2.5rem) 42px;
    height: auto;
  }

  /* COMPANYのSP縦並び */
  .company-row {
    padding: 20px 0 12px;
  }

  .company-list dt {
    width: clamp(6.625rem, 3.788rem + 14.19vw, 10.438rem);
    margin-bottom: 4px;
    font-size: clamp(0.875rem, 0.503rem + 1.86vw, 1.375rem);
  }

  .company-list dd {
    font-size: clamp(0.875rem, 0.642rem + 1.16vw, 1.188rem);
  }

  .form-row-2col .form-group {
    margin-bottom: clamp(0.5rem, -0.058rem + 2.79vw, 1.25rem);
  }

  .form-label {
    font-size: clamp(0.625rem, 0.485rem + 0.7vw, 0.813rem);
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 12px;
    font-size: clamp(0.625rem, 0.485rem + 0.7vw, 0.813rem);
  }

  .privacy-text {
    font-size: clamp(0.625rem, 0.532rem + 0.47vw, 0.75rem);
  }

  .form-submit-btn {
    font-size: clamp(0.813rem, 0.719rem + 0.47vw, 0.938rem);
    height: clamp(2.375rem, 2.003rem + 1.86vw, 2.875rem);
  }
}

/* ==========================================================================
   17. 画面最下部固定 2連フッターリンク（section-inner対応版）
   ========================================================================== */
/* メインコンテンツの最下部に、固定バナーの高さ分の余白を強制的に確保する（被り防止） */
body {
  padding-bottom: 170px;
}

/* 💡 親レイアウト：黒い背景帯を画面いっぱいに広げて最下部固定する役割 */
.fixed-footer-links {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;

  /*  スクロール表示用のアニメーション設定 */
  opacity: 0;
  visibility: hidden;
  /* クリック判定も完全に消す */
  transform: translateY(20px);
  /* 20px下に下げて隠す */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  will-change: opacity, transform;
}

.fixed-footer-links.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* 元の位置（画面下端ピタ）に戻る */
}

.fixed-footer-links .section-inner {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.39%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* 左右50%のリンクブロック（中央の1px区切り線を右側に付与） */
.fixed-link-item {
  flex: 1;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  transition: opacity 0.2s;
}

.fixed-link-item:hover {
  opacity: 0.85;
}

/* 中央の細い縦の区切り線 */
.fixed-link-item.fc-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255);
}

/* 各ブロック内のコンテンツ配置 */
.fixed-link-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

/* テキストタイトル（白文字） */
.fixed-link-title {
  color: #ffffff;
  font-size: clamp(1.375rem, 1.088rem + 0.6vw, 1.625rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  min-height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* インナーボタンの共通スタイル */
.fixed-link-btn {
  padding: 12px 40px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(17.5rem, 11.412rem + 12.67vw, 22.813rem);
  height: 58px;
  border-radius: 15px;
  color: #ffffff;
  font-size: clamp(1.375rem, 1.088rem + 0.6vw, 1.625rem);
  font-weight: 300;
  box-sizing: border-box;
}

.fc-btn {
  background-image: -moz-linear-gradient(25deg, rgb(60, 125, 150) 0%, rgb(58, 101, 145) 99%);
  background-image: -webkit-linear-gradient(25deg, rgb(60, 125, 150) 0%, rgb(58, 101, 145) 99%);
  background-image: -ms-linear-gradient(25deg, rgb(60, 125, 150) 0%, rgb(58, 101, 145) 99%);
}

.shop-btn {
  background-image: -moz-linear-gradient(25deg, rgb(154, 154, 154) 0%, rgb(95, 95, 95) 99%);
  background-image: -webkit-linear-gradient(25deg, rgb(154, 154, 154) 0%, rgb(95, 95, 95) 99%);
  background-image: -ms-linear-gradient(25deg, rgb(154, 154, 154) 0%, rgb(95, 95, 95) 99%);

}

/* ボタン内テキスト・矢印アニメーションの共通制御 */
.fixed-link-btn .btn-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.fixed-link-btn .btn-arrow {
  margin-left: 6px;
  font-size: 25px;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
}

/* ホバー時に矢印が右にぬるっと動く処理 */
.fixed-link-item:hover .btn-arrow {
  transform: translateX(5px);
}

/* ==========================================================================
   📱 768px以下：SPレイアウト（インナー幅の調整とスマホ最適化）
   ========================================================================== */
@media screen and (max-width: 768px) {
  body {
    padding-bottom: clamp(6.563rem, 3.016rem + 14.55vw, 10rem);
  }

  .fixed-footer-links {
    height: clamp(6.563rem, 3.016rem + 14.55vw, 10rem);
  }

  /* スマホ時のインナー余白調整 */
  .fixed-footer-links .section-inner {
    padding: 0 16px;
  }

  .fixed-link-inner {
    gap: 8px;
  }

  .fixed-link-title {
    font-size: clamp(0.875rem, 0.424rem + 1.85vw, 1.313rem);
  }

  .fixed-link-btn {
    width: clamp(9.5rem, -0.946rem + 42.86vw, 19.625rem);
    font-size: clamp(0.875rem, 0.424rem + 1.85vw, 1.313rem);
    padding: 12px clamp(0.75rem, -1.056rem + 7.41vw, 2.5rem);
  }

  .fixed-link-btn .btn-arrow {
    font-size: clamp(0.75rem, -0.088rem + 3.44vw, 1.563rem);
  }

}

@media screen and (max-width: 500px) {
  .fixed-link-title {
    font-size: 12px;
  }

  .fixed-link-btn {
    height: 100%;
  }
}