/* HERO全体 */
.talent-page-hero {
  position: relative;
  background-color: #fff;
  overflow: visible;
  height: 800px;
  padding-top: 120px;
}

/* 背景画像ラッパー */
.talent-page-hero-bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 700px;
  z-index: 0;
  pointer-events: none;
}

/* 背景画像 */
.talent-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* 背景キャラクター画像（中央・大きく・薄く） */
.talent-page-hero-bg-character {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  overflow: hidden;
}

.talent-page-hero-bg-character img {
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: auto;
  height: auto;
  max-height: none;
  display: block;
}

/* 中身コンテナ */
.talent-page-hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.talent-page-hero-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* 左カラム */
.talent-page-hero-left {
  flex: 1;
  min-width: 300px;
  max-width: 640px;
  z-index: 2;
  color: #000;
  margin-top: 300px;
  margin-bottom: 100px;
}

/* タレント名 */
.talent-page-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 10px;
  color: #000;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff,
    -2px  0px 0 #fff,
     2px  0px 0 #fff,
     0px -2px 0 #fff,
     0px  2px 0 #fff;
}

/* タレント名英字 */
.talent-page-name-en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #555;
  margin-top: 4px;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* SNSアイコン */
.talent-page-sns {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.talent-page-sns li {
  flex-shrink: 0;
}

.talent-page-sns img {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.talent-page-sns img:hover {
  transform: scale(1.1);
}

/* サブコピー */
.talent-page-subcopy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: #000;
  white-space: pre-wrap;
  word-break: break-word;
}

/* 右カラム */
.talent-page-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  margin-top: 100px;
}

/* キャラクター画像（右カラム）を上下はみ出すサイズに */
.talent-page-hero-right img {
  height: 900px;
  object-fit: contain;
  display: block;
}

/* プロフィールセクション全体 */
.talent-page-profile {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #000;
}

/* セクション内の中央寄せコンテナ */
.talent-page-profile-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 見出し */
.talent-page-profile-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 2px;
}

/* プロフィール本文 */
.talent-page-profile-3col {
  background-color: #ffffff;
  padding: 80px 20px;
}

.talent-page-profile-3col-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

/* 左カラム */
.talent-page-profile-left {
  flex: 0 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.talent-page-profile-en-name {
  writing-mode: vertical-rl;
  font-family: "Futura", sans-serif;
  font-weight: 700;
  font-size: 84px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(230, 230, 230, 0.5);
}

/* 中央カラム */
.talent-page-profile-center {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.talent-page-profile-center-content h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 200%;
  color: #36BCD5;
  margin-bottom: 15px;
}

.talent-page-profile-center-content p {
  font-weight: 700;
  font-size: 16px;
  line-height: 200%;
  color: #000000;
  margin-bottom: 20px;
}

/* 右カラム */
.talent-page-profile-right {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.talent-page-profile-right img {
  max-width: 300%;
  height: auto;
  display: block;
}

/* =====================================
   タブレット対応（768px〜1023px）
===================================== */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .talent-page-hero {
    height: 700px;
    padding-top: 100px;
  }

  .talent-page-hero-bg {
    height: 600px;
  }

  .talent-page-hero-left {
    margin-top: 200px;
    margin-bottom: 80px;
  }

  .talent-page-title {
    font-size: 38px;
  }

  .talent-page-name-en {
    font-size: 20px;
  }

  .talent-page-subcopy {
    font-size: 24px;
  }

  .talent-page-hero-right {
    margin-top: 80px;
  }

  .talent-page-hero-right img {
    height: 700px;
  }

  .talent-page-profile-3col-inner {
    gap: 30px;
  }

  .talent-page-profile-en-name {
    font-size: 70px;
  }
}

/* =====================================
   スマートフォン対応（〜767px）
===================================== */
@media screen and (max-width: 767px) {
  /* HEROセクション */
  .talent-page-hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0 40px;
    display: flex;
    align-items: center;
  }

  .talent-page-hero-bg {
    height: 100vh;
    top: 0;
  }

  .talent-page-hero .talent-page-hero-bg img {
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    transform: translateY(-50px) !important;
  }

  /* 背景キャラクター画像を非表示 */
  .talent-page-hero-bg-character {
    display: none;
  }

  .talent-page-hero-inner {
    position: relative;
    height: auto;
    padding: 20px;
    display: block;
    z-index: 3;
  }

  .talent-page-hero-container {
    max-width: 100%;
    display: block;
    text-align: center;
  }

  /* 左カラム（メイン情報）*/
  .talent-page-hero-left {
    margin: 0 0 40px 0;
    max-width: 100%;
    min-width: auto;
  }

  .talent-page-title {
    font-size: 32px;
    margin-bottom: 8px;
    text-shadow:
      -3px -3px 0 #fff,
       3px -3px 0 #fff,
      -3px  3px 0 #fff,
       3px  3px 0 #fff,
      -3px  0px 0 #fff,
       3px  0px 0 #fff,
       0px -3px 0 #fff,
       0px  3px 0 #fff;
  }

  .talent-page-name-en {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
  }

  /* SNSアイコン */
  .talent-page-sns {
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .talent-page-sns img {
    width: 45px;
    height: 45px;
  }

  /* サブコピー */
  .talent-page-subcopy {
    font-size: 20px;
    line-height: 0.8;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  /* 右カラム（キャラクター画像）*/
  .talent-page-hero-right {
    margin: 0;
    justify-content: center;
    align-items: center;
  }

  .talent-page-hero-right img {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* プロフィールセクション */
  .talent-page-profile {
    padding: 60px 20px;
  }

  .talent-page-profile-title {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .talent-page-profile-3col {
    padding: 20px 20px 60px 20px;  /* 上120px、左右20px、下60px */
  }

  .talent-page-profile-3col-inner {
    display: block;
    gap: 0;
  }

    /* 左カラム（縦書き名前）を非表示 */
    .talent-page-profile-left {
      display: none;
    }

      /* 右カラム */
  .talent-page-profile-right {
    display: none;
  }

  /* 左カラム（縦書き名前）を横書きに変更 */
  .talent-page-profile-left {
    flex: none;
    margin-bottom: 20px;
    text-align: center;
  }

  .talent-page-profile-en-name {
    writing-mode: horizontal-tb;
    font-size: 48px;
    opacity: 0.3;
    letter-spacing: 2px;
  }

  /* 中央カラム */
  .talent-page-profile-center {
    margin-bottom: 30px;
  }

  .talent-page-profile-center-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .talent-page-profile-center-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  /* 右カラム */
  .talent-page-profile-right {
    flex: none;
    justify-content: center;
  }

  .talent-page-profile-right img {
    max-width: 200px;
    width: 100%;
  }
}

/* =====================================
   小さなスマートフォン対応（〜480px）
===================================== */
@media screen and (max-width: 480px) {
  .talent-page-hero {
    padding: 40px 0 30px;
  }

  .talent-page-hero-inner {
    padding: 15px;
  }

  .talent-page-title {
    font-size: 28px;
  }

  .talent-page-name-en {
    font-size: 14px;
  }

  .talent-page-sns img {
    width: 40px;
    height: 40px;
  }

  .talent-page-subcopy {
    font-size: 18px;
    padding: 0 5px;
  }

  .talent-page-hero-right img {
    width: 100% !important;
    max-width: 400px !important;
  }

  .talent-page-profile {
    padding: 40px 25px;
  }

  .talent-page-profile-title {
    font-size: 24px;
  }

  .talent-page-profile-3col {
    padding: 0px 25px;
  }

  .talent-page-profile-en-name {
    font-size: 36px;
  }

  .talent-page-profile-center-content h2 {
    font-size: 18px;
  }

  .talent-page-profile-center-content p {
    font-size: 14px;
  }
}

/* =====================================
   横向きスマートフォン対応
===================================== */
@media screen and (max-width: 767px) and (orientation: landscape) {
  .talent-page-hero {
    min-height: 100vh;
    padding: 30px 0;
  }

  .talent-page-hero-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .talent-page-hero-left {
    flex: 1;
    margin: 0;
    text-align: left;
  }

  .talent-page-title {
    font-size: 24px;
  }

  .talent-page-subcopy {
    font-size: 16px;
  }

  .talent-page-hero-right {
    flex: 1;
    margin: 0;
  }

  .talent-page-hero-right img {
    width: 100%;
    max-width: 250px;
  }
}