/* グローバル：共通セクション */
.group-audition-section {
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Heroセクション背景 */
.group-audition-hero {
  width: 100%;
  height: 100vh;
  background-image: url('../assets/img/group-audition/2playstudio-hero2.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -130px; /* フローティングヘッダーの高さ分 */
}

/* Hero内ラッパー */
.group-audition-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  z-index: 1;
  padding-top: 160px;
}

/* ロゴ画像（位置は絶対に変更しない） */
.group-audition-hero__logo {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 80%;
  z-index: 1;
}

/* キャラ画像（位置は絶対に変更しない） */
.group-audition-hero__character {
  width: 1000px;
  max-width: 100%;
  position: absolute;
  bottom: -320px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* テキストエリア全体（テキストのみ独立して位置調整） */
.group-audition-hero__text {
  position: absolute; /* ← 他と独立して動かすために absolute */
  top: 200px;          /* ← この値を変えるだけでテキスト全体の位置を上下移動可能 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
}

/* キャッチコピーのラッパー */
.group-audition-catchcopy-wrapper {
  position: relative;
  margin: 0 auto 30px auto;
  display: inline-block;
}

/* キャッチコピー共通スタイル */
.group-audition-catchcopy {
  font-family: 'Black Han Sans', 'Noto Sans JP', Impact, Arial Black, sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* 白い縁取り（背景レイヤー） */
.group-audition-catchcopy--stroke {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFFFFF;
  -webkit-text-stroke: 6px #FFFFFF;
  text-stroke: 6px #FFFFFF;
  z-index: 1;
}

/* グラデーション文字（前面レイヤー） */
.group-audition-catchcopy--fill {
  position: relative;
  background: linear-gradient(91.19deg, #FD8563 17.76%, #DE4FBD 56.23%, #8E32BB 75.46%, #565AC7 85.07%, #36BCD5 89.88%, #D578AE 94.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}


/* サブタイトル全体 */
.group-audition-hero__subtitle {
  font-family: 'Futura', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 160%;
  color: #000000;
  text-align: center;
  position: relative;
  text-shadow: 2px 2px 0px #FFFFFF; /* ← ここが白影 */
}

/* グラデーション装飾のためのラッパー */
.group-audition-subtitle-highlight-wrapper {
  position: relative;
  display: inline-block;
}

/* 白フチ（下層レイヤー） */
.group-audition-subtitle-highlight-stroke {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  z-index: 1;
  pointer-events: none;
  text-shadow: none; /* ← 白影はここでは不要 */
}

/* グラデーション文字（前面レイヤー） */
.group-audition-subtitle-highlight-fill {
  position: relative;
  background: linear-gradient(180deg, #FD8563 0%, #DE4FBD 50%, #8E32BB 75%, #565AC7 87.5%, #36BCD5 93.75%, #D578AE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
  text-shadow: none; /* ← ここも白影不要 */
}



/* CVボタンラッパー：中央寄せ＋白背景 */
.group-audition-entry-wrapper {
  background-color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

/* グラデーションボタン本体 */
.group-audition-entry-button {
  background: linear-gradient(
    94.38deg,
    #FD8563 13.07%,
    #DE4FBD 60.93%,
    #8E32BB 84.86%,
    #565AC7 96.83%,
    #36BCD5 102.81%,
    #D578AE 108.79%
  );
  border: none;
  border-radius: 90px;
  padding: 24px 60px;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Futura', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

/* 1行目の文字 */
.group-audition-entry-button .entry-line1 {
  font-size: 32px;
  display: block;
}

/* 2行目の文字 */
.group-audition-entry-button .entry-line2 {
  font-size: 40px;
  display: block;
}

/* PC用改行 */
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}


@media screen and (max-width: 767px) {
  /* Heroセクション全体 */
  .group-audition-hero {
    height: 600px !important; /* ← 任意の高さにここを変更 */
    margin-top: -80px; /* ヘッダー調整用 */
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .group-audition-hero__inner {
    padding: 0 16px;
    padding-top: 40px;         /* 上に余白があれば少し減らす */
  }

  /* ロゴ画像 */
  .group-audition-hero__logo {
    position: relative;        /* ← absoluteからrelativeに変更 */
    top: -230px;                    /* 上からの位置を0に */
    left: 0;
    transform: none;           /* 中央寄せ解除 */
    width: 80%;                /* ロゴサイズを調整（必要に応じて） */
    max-width: 320px;          /* 最大幅を制限 */
    margin: 0 auto 16px auto;  /* 中央寄せ */
    display: block;
    z-index: 10;               /* 必要に応じて重なり順調整 */
  }

  /* キャラクター画像 */
  .group-audition-hero__character {
    width: 150%;
    top: -50px;                    /* 上からの位置を0に */
    max-width: 400px;
    bottom: -180px;
  }

  /* キャッチコピー */
  .group-audition-catchcopy {
    font-size: 32px;
    white-space: normal;
    top: -100px;                    /* 上からの位置を0に */
    line-height: 1.2;
  }

  .group-audition-catchcopy--stroke {
    -webkit-text-stroke: 3px #fff;
    text-stroke: 3px #fff;
  }

  /* テキスト位置 */
  .group-audition-hero__text {
    top: -10px;
    padding: 0 16px;
  }

  /* サブタイトル */
  .group-audition-hero__subtitle {
    font-size: 20px !important;
    top: -50px;
    font-size: 24px !important;
    line-height: 1.8 !important;;
    padding: 0 8px;
  }

  .group-audition-subtitle-highlight-stroke {
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }

  /* ボタンラッパー */
  .group-audition-entry-wrapper {
    padding: 40px 16px;
  }

  /* グラデーションボタン */
  .group-audition-entry-button {
    padding: 16px 20px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
    border-radius: 60px;
  }

  .group-audition-entry-button .entry-line1 {
    font-size: 14px;
  }

  .group-audition-entry-button .entry-line2 {
    font-size: 20px !important;
  }

  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }

}

/* ABOUTセクション */
.group-audition-about {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 80px 20px 60px 20px; /* ← 上に余白100px追加 */
  box-sizing: border-box;
  overflow: visible;
}

.group-audition-about::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 980px; /* 背景の高さだけ制限 */
  background: #ffffff url('../assets/img/group-audition/2playstudio_groupaudition_2.png') no-repeat center top;
  background-size: 100% auto;
  z-index: 0;
}

.group-audition-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-character {
  /* 共通設定は削除 or height: auto のみ */
  height: auto;
}

.about-character--left {
  width: 260px; /* ← A画像のサイズ */
  height: auto;
  order: 1;
}

.about-character--right {
  width: 330px; /* ← B画像のサイズ */
  height: auto;
  order: 3;
}

.group-audition-about__content {
  order: 2;
  max-width: 600px;
  margin: 0 auto;
}

.about-title span {
  display: inline-block;
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  background: linear-gradient(180deg, #FD8563 0%, #DE4FBD 50%, #8E32BB 75%, #565AC7 87.5%, #36BCD5 93.75%, #D578AE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  margin-top: 20px;
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 300;
  font-size: 20px;
  line-height: 2.2;
  color: #000000;
}

.about-panels {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 10px; /* これで背景から少しはみ出す */
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.about-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 340px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-panel img {
  width: 60px;
  margin-bottom: 20px;
}

.about-icon {
  display: block;
  margin: 0 auto 20px auto;
}

.about-panel .about-icon--1 {
  width: 160px !important;
}

.about-panel .about-icon--2 {
  width: 160px !important;
}

.about-panel .about-icon--3 {
  width: 160px !important;
}

.about-panel h3 {
  font-size: 18px;
  color: #FD8563;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-panel p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* PC・共通スタイル */
.about-character--left,
.about-character--right {
  display: block;
}

.about-characters-wrapper {
  display: none;
}

@media screen and (max-width: 767px) {
  .group-audition-about {
    padding: 60px 16px 40px 16px;
  }

  .group-audition-about::before {
    height: 1800px; /* 任意に調整可能 */
    background-size: cover;
    background-position: center;
  }

  .about-character--left,
  .about-character--right {
    display: none; /* スマホでは非表示 */
  }

  .group-audition-about__content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .about-title span {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-panels {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .about-panel {
    width: 100%;
    padding: 24px 16px;
  }

  .about-panel h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .about-panel p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-icon {
    width: 120px !important;
    margin-bottom: 16px;
  }

  .about-character--left,
  .about-character--right {
    display: none !important; /* ← スマホではPC用画像は非表示 */
  }

/* スマホ用画像用のwrapper */
.about-characters-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 2; /* ← 背景に埋もれないように */
}

/* スマホ用の画像クラスは new class にする */
.about-character--sp-left,
.about-character--sp-right {
  display: block;
  width: 45%;
  height: auto;
}

.about-character--sp-right {
  width: 60%; /* ← 例えば大きくするなら45%→60%など */
}

}


/* CONCEPTセクション */
.group-audition-concept {
  width: 100%;
  padding: 60px 20px;
  background: #fff url('../assets/img/group-audition/CONCEPT.png') no-repeat center top; /* ← 修正済み */
  background-size: 600px auto; /* ✅ 横幅600px、縦は自動で比率維持 */
  position: relative;
  margin-top: 100px;
  box-sizing: border-box;
  text-align: center;
}

.concept-content {
  max-width: 1200px;
  margin: 20px auto 0 auto; /* 上40px、左右auto、下0px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* 共通設定：縦横比維持 */
.concept-chara {
  height: auto;
  display: inline-block;
}

/* 左キャラクター画像：任意サイズ（例：240px） */
.concept-chara--left {
  width: 200px;
}

/* 右キャラクター画像：任意サイズ（例：280px） */
.concept-chara--right {
  width: 200px;
}

.concept-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.concept-title {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  margin: 0;
  background: linear-gradient(180deg, #FD8563 0%, #DE4FBD 50%, #8E32BB 75%, #565AC7 87.5%, #36BCD5 93.75%, #D578AE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept-subtitle {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  color: #000000;
  margin-top: 8px;
}

.concept-panels {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.concept-panel {
  width: 520px;
  height: auto;
  border-radius: 20px;
  padding: 40px 30px;
  box-sizing: border-box;
  text-align: center;
}

.concept-panel--left {
  background: #FEF8EC;
}

.concept-panel--right {
  background: #FCF3FB;
}

/* 共通スタイル（初期化用） */
.panel-logo {
  height: auto;
  margin-bottom: 40px;
}

/* 左側のロゴサイズ */
.concept-panel--left .panel-logo {
  width: 320px;
}

/* 右側のロゴサイズ */
.concept-panel--right .panel-logo {
  width: 375px;
}

/* 共通のタイトルスタイル（色以外） */
.panel-title {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 24px !important;
  line-height: 1.6 !important;
  text-align: center;
  margin-bottom: 16px;
}

/* 左パネル（もふとも） */
.concept-panel--left .panel-title {
  color: #A14425;
}

/* 右パネル（おやつメイト） */
.concept-panel--right .panel-title {
  color: #8E32BB;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* 共通スタイル */
.panel-tags span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 90px;
  background: transparent;
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* 左パネル（もふとも）タグ色 */
.concept-panel--left .panel-tags span {
  border: 1px solid #FF0000;
  color: #FF0000;
}

/* 右パネル（おやつメイト）タグ色 */
.concept-panel--right .panel-tags span {
  border: 1px solid #8E32BB;
  color: #8E32BB;
}

.panel-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}

.panel-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4px; /* 横の間隔（任意） */
  row-gap: 32px;    /* 縦の間隔（任意） */
  justify-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.icon-box img {
  width: 150px;
  height: auto;
}

.icon-box p {
  margin-top: 8px;
  font-size: 14px;
}

.panel-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  color: #fff;
  text-decoration: none;
}

.panel-button--left {
  background: linear-gradient(88.17deg, #F7943B 0.02%, #FFCA29 94.87%);
}

.panel-button--right {
  background: linear-gradient(92.09deg, #C95BFF -0.17%, #DB90FF 103.83%);
}

@media screen and (max-width: 767px) {
  .group-audition-concept {
    padding: 40px 16px;
    background-size: 100% auto; /* 背景をスマホ幅にフィット */
    background-position: center top;
    margin-top: 60px;
  }

  .concept-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
  }

  /* スマホでキャラC非表示 */
  .concept-chara--left {
    display: none;
  }

  /* キャラDは中央寄せ＆幅調整（必要に応じて） */
  .concept-chara--right {
    width: 160px;
  }

  .concept-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .concept-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
}




/* SUPPORTセクション */
.group-audition-support {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(150.82deg, rgba(209, 181, 248, 0.2) -1.57%, rgba(251, 140, 104, 0.2) 101.17%);
  box-sizing: border-box;
}

.support-heading {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.support-bg {
  width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.support-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  background: linear-gradient(91.18deg, #FD8563 -1.92%, #DE4FBD 52.71%, #8E32BB 80.03%, #565AC7 93.69%, #36BCD5 100.52%, #D578AE 107.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  gap: 40px;
  box-sizing: border-box;
}

.support-box {
  width: 50%;
  box-sizing: border-box;
}

.support-box--image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.support-point {
  font-family: 'DIN 2014', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #D578AE;
  margin-bottom: 10px;
}

.support-point span {
  font-size: 24px;
  margin-right: 4px;
}

.support-main-title {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #565AC7;
  margin-bottom: 16px;
  line-height: 1.4;
}

.support-desc {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.03em;
}


@media screen and (max-width: 767px) {
  .group-audition-support {
    padding: 60px 16px;
  }

  .support-bg {
    width: 100%;
    max-width: 90%; /* 画面幅にフィットしつつ少し余白 */
    height: auto;
  }

  .support-title {
    font-size: 32px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .support-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 60px;
  }

  .support-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 10px;
  }

  .support-box--image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
  }

  .support-point {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .support-point span {
    font-size: 24px;
    display: block;
  }

  .support-main-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .support-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
  }
}


/* FLOWセクション */
.group-audition-flow {
  padding: 60px 20px;
  text-align: center;
}

.flow-heading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  background: linear-gradient(91.18deg, #FD8563 -1.92%, #DE4FBD 52.71%, #8E32BB 80.03%, #565AC7 93.69%, #36BCD5 100.52%, #D578AE 107.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.flow-panels {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.flow-panel {
  width: 528px;
  border-radius: 9.6px;
  padding: 24px;
  box-sizing: border-box;
  text-align: left;
}

.flow-panel--left {
  background: #FFF0F0;
}

.flow-panel--right {
  background: #F3EBFF;
}

.panel-title {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  margin-bottom: 24px;
}

.panel-title.red {
  color: #FD8563;
}

.panel-title.blue {
  color: #565AC7;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-list li {
  display: flex;
  align-items: center; /* ← 中央揃えに修正済み */
  gap: 32px;
  margin-bottom: 40px;
}

.flow-list img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.flow-list p {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin: 0;
}

.flow-note {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  margin-top: 4px;
}



@media screen and (max-width: 767px) {
  .flow-heading {
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
    padding: 0 10px;
  }

  .group-audition-entry-steps {
    display: flex;
    flex-direction: column;
    align-items: center; /* パネル全体を中央揃え */
    padding: 0 20px;     /* 左右余白を追加（はみ出し防止） */
    box-sizing: border-box;
  }

  .group-audition-entry-panel {
    width: 100% !important;
    max-width: 320px !important;  /* ← 任意の幅に */
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .group-audition-entry-arrow {
    transform: rotate(90deg); /* ▶→▼ */
    margin: 12px 0;
    width: 24px;
    height: 24px;
    align-self: center;
  }

  .group-audition-entry-button {
    display: block;               /* ← ブロック要素で全幅使う */
    width: 100%;                  /* ← 横幅を100%に */
    max-width: 90vw;              /* スマホ幅に収める */
    font-size: 18px  !important;
    padding: 12px 16px;
    white-space: normal !important;
    word-break: break-word !important;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
  }

  .group-audition-entry-button-wrap {
    text-align: center;
    padding: 0 10px;             /* 左右に少し余白を持たせる */
  }

}



/* ──────────────────────────────
   ENTRY セクション全体
────────────────────────────── */
.group-audition-entry {
  padding: 60px 20px;
  text-align: center;
}

/* 見出し */
.group-audition-entry-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FD8563;
  display: block;
  margin-bottom: 4px;
}

.group-audition-entry-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
}

.group-audition-entry-title::after {
  content: "";
  width: 32px;
  height: 3px;
  background: #FD8563;
  display: block;
  margin: 8px auto 0;
}

/* ステップ横並び */
.group-audition-entry-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* パネル共通 */
.group-audition-entry-panel {
  width: 244px;
  height: 380px;
  border: 3px solid #FFAA91;
  border-radius: 12px;
  padding: 24px 16px;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  position: relative;
}

/* 円形 STEP ナンバー */
.group-audition-entry-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  color: #fff;
}

/* STEP（上段） */
.group-audition-entry-step {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* 数字（下段） */
.group-audition-entry-num {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2px;
}

/* アイコン */
.group-audition-entry-icon {
  width: 80px;
  height: auto;
  margin: 0 auto 12px;
}

/* 見出し＆説明 */
.group-audition-entry-heading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

.group-audition-entry-text {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* 矢印 */
.group-audition-entry-arrow {
  width: 21px;
  height: 21px;
  background: #FF67B3;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  align-self: center;
}

/* ボタン全体 */
.group-audition-entry-button-wrap {
  margin-top: 48px;
}

/* CTAボタン */
.group-audition-entry-button {
  display: inline-block;
  padding: 24px 40px;
  border-radius: 90px;
  background: linear-gradient(94.72deg, #FD8563 -1.71%, #DE4FBD 59.74%, #8E32BB 90.46%, #565AC7 105.83%, #36BCD5 113.51%, #D578AE 121.19%);
  color: #fff;
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}


.group-audition-entry-logo-wrap {
  margin-top: 40px;
  text-align: center;
}

.group-audition-entry-logo {
  width: 1057px;
  height: auto;
  mix-blend-mode: hard-light;
  display: inline-block;
  max-width: 100%; /* レスポンシブ対応 */
  margin-bottom: 60px; /* ← ここで任意のマージンを調整 */
}

/* CTAセクション */
.group-audition-cta {
  background: url('/wp-content/themes/emanon-premium-child/assets/img/group-audition/2playstudio-audition-cta.webp') no-repeat center center / cover;
  padding: 60px 20px;
  height: 680px; /* 任意のpxやvhに変更 */
  color: #fff;
  text-align: center;
}

.group-audition-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.group-audition-cta-title-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.group-audition-cta-heading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 48px;
}

.group-audition-cta-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.group-audition-cta-chara {
  width: 320px;
  height: auto;
  flex-shrink: 0;
}

.group-audition-cta-text,
.group-audition-cta-message {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-align: center;
}

.group-audition-cta-text {
  flex: 1;
  margin: 0 10px;
}

.group-audition-cta-bottom-text {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: #8E32BB;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  margin-top: 40px;
}

.group-audition-cta-characters {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.group-audition-cta-character {
  max-width: 100%;
  height: auto;
  position: relative;
}

.group-audition-cta-character--left {
  width: 300px !important;
  margin-top: 20px;
  margin-left: -40px;
}

.group-audition-cta-character--right {
  width: 280px;
  margin-top: 60px;
  margin-right: -40px;
}


/* CTAセクション2（白背景） */
.group-audition-cta2 {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.group-audition-cta2-inner {
  max-width: 800px;
  margin: 0 auto;
}

.group-audition-cta2-heading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 32px;
}

.group-audition-cta2-gradient-text {
  background: linear-gradient(90.24deg, #FD8563 5.35%, #DE4FBD 51.57%, #8E32BB 74.68%, #565AC7 86.24%, #36BCD5 92.02%, #D578AE 97.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.group-audition-cta2-text {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #000000;
  margin-bottom: 48px;
}

.group-audition-cta2-button-wrap {
  text-align: center;
}

.group-audition-cta2-button {
  display: inline-block;
  width: 336px;
  height: 84px;
  padding: 24px;
  border-radius: 90px;
  background: linear-gradient(94.72deg, #FD8563 -1.71%, #DE4FBD 59.74%, #8E32BB 90.46%, #565AC7 105.83%, #36BCD5 113.51%, #D578AE 121.19%);
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
}


@media screen and (max-width: 767px) {
  .group-audition-cta {
    height: 1320px; /* ← 任意の高さに変更（px でも vh でもOK） */
    padding: 40px 16px; /* スマホ向け余白に調整 */
    background-position: center center;
    background-size: cover;
  }

  .group-audition-cta-heading {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .group-audition-cta-text,
  .group-audition-cta-message {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto;
  }

  .group-audition-cta-bottom-text {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 24px;
    -webkit-text-stroke: 0.5px #fff;
  }

  .group-audition-cta2-gradient-text {
    font-size: 28px;      /* スマホ向けのサイズに調整 */
    line-height: 1.8;     /* 行間をやや広めに */
    display: inline-block;
  }

  .group-audition-cta2-text {
    font-size: 20px;      /* スマホ向けのサイズに調整 */
    line-height: 1.8;     /* 行間を広めに */
    padding: 0 16px;      /* 左右に少し余白を */
    text-align: center;   /* 中央寄せ（任意） */
  }

  .group-audition-cta-character--right,
  .group-audition-cta-character--left {
    display: none; /* モバイルではキャラ非表示の場合 */
  }

  .group-audition-cta-chara--right {
    display: none;
  }

  .group-audition-cta-chara--left {
    display: block;
    margin: 0 auto;
  }
}



/* スマホはみ出し防止 */

@media screen and (max-width: 767px) {
  html, body {
    overflow-x: hidden; /* はみ出し防止 */
  }

  .group-audition-hero {
    height: 900px; /* スマホ用に高さ調整 */
    background-size: cover;
    background-position: center;
    padding: 0 16px;
  }

  .group-audition-hero__inner {
    padding: 120px 16px 0 16px;
    box-sizing: border-box;
  }

  .group-audition-hero__logo,
  .group-audition-hero__character {
    width: 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .group-audition-hero__text {
    width: 100%;
    padding: 0 8px;
    top: 150px;
    box-sizing: border-box;
  }

  .group-audition-catchcopy {
    font-size: 36px;
    white-space: normal; /* 折り返す */
  }

  .group-audition-hero__subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .group-audition-entry-button {
    padding: 16px 24px;
    font-size: 20px;
  }

  .group-audition-entry-button .entry-line1 {
    font-size: 18px;
  }

  .group-audition-entry-button .entry-line2 {
    font-size: 24px;
  }
}

/* フローティングバナー消す */
.page-id-2053 .floating-cta {
  display: none !important;
}