/*
Theme Name: Isoya Coach Thema
Theme URI: https://example.com
Author: UPCREATE,Inc.
Author URI: https://example.com
Description: isoya coachのオリジナルのWordPressテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-original-theme
*/

:root {
  --color-red: #cc0000;
  --color-main-black: #222222;
  --color-sub-black: #000000;
  --color-text-gray: #dfdfdf;
  --color-bg-gray: #dfdfdf;
  --color-white: #fff;
}

/* 共通 */
* {
  box-sizing: border-box;
}
html.lenis {
  height: auto;
}

body {
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",
    YuMincho, serif;
  overflow-x: hidden;
  box-sizing: border-box;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }

  .pc-br {
    display: none;
  }
}

/* Coaching ページのヘッダー */

.coaching-header {
  padding: 120px 5% 80px;
  margin-top: 164px;
  text-align: left;
}

#page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 1.125rem;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #cc0000;
  text-decoration: none;
  color: #fff;
  width: 64px;
  height: 64px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
  opacity: 0.9;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media (max-width: 768px) {
  #page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1.125rem;
  }

  #page-top a {
    width: 56px;
    height: 56px;
    padding: 6px;
  }
}

/* タイトル */
.coaching-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: 700;
}

/* タイトル下のライン */
.coaching-divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  width: 100%;
  margin-bottom: 16px;
}

/* トップへ戻るリンク */
.back-to-top {
  display: inline-block;
}

.back-to-top a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-main-black);
  display: flex;
  align-items: center;
  gap: 8px; /* 赤い丸との間隔 */
}

/* 赤い丸のデザイン */
.back-to-top-dot {
  width: 6px;
  height: 6px;
  background-color: #cc0000; /* 赤色 */
  border-radius: 50%;
  display: inline-block;
}

/* マウスホバー時のエフェクト */
.back-to-top a:hover {
  color: #cc0000;
}

@media (max-width: 768px) {
  .coaching-header {
    margin-top: 86px;
    padding: 56px 5%;
  }
  .back-to-top a {
    font-size: 0.9rem;
  }
  .back-to-top-dot {
    width: 5px;
    height: 5px;
  }
}

/* CTAセクション全体 */
.cta-section {
  background-color: #000;
  color: #fff;
  padding: 80px 5%;
  text-align: center;
}

/* セクションタイトル */
.cta-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* CTAカードリスト */
.cta-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

/* CTAカードの全体 */
.cta-card {
  background-color: #222;
  padding: 24px;
  text-align: center;
  width: 30%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px; /* カード全体の高さを統一 */
}

/* アイコン */
.cta-icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
  width: 56px;
  height: 56px;
}

.cta-icon img {
  width: 100%;
  height: auto;
}

/* カードタイトル */
.cta-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* カードテキスト - 高さを均等にする */
.cta-card-text {
  font-size: 1rem;
  opacity: 0.8;
  flex-grow: 1; /* 残りの高さを均等に分配 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上寄せで統一 */
}

/* CTAボタン */
.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cc0000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  transition: 0.3s;
  margin-top: 24px;
  transition: 0.4s;
}

.cta-button:hover {
  background-color: #8b0000;
}


.cta-button span {
  margin-left: 8px;
}

/* 電話番号 */
.cta-phone-number {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: auto; /* 位置を揃える */
  color: var(--color-white);
}

.arrow {
  margin-left: 12px;
}

.cta-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px); /* 右に4px移動 */
}

.pricing-page-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.pricing-page-button:hover .arrow {
  transform: translateX(4px); /* 右に4px移動 */
}

.cta-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px); /* 右に4px移動 */
}

.footer-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-link:hover .arrow {
  transform: translateX(4px); /* 右に4px移動 */
}


/* タブレット対応 (1024px以下) */
@media (max-width: 1024px) {
  .cta-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-card {
    width: 45%; /* 2カラムレイアウト */
    max-width: 100%;
  }
}

/* スマホ対応 (768px以下) */
@media (max-width: 768px) {
  .cta-section {
    padding: 56px 5%;
  }

  .cta-description {
    font-size: 0.875rem; /* 説明文のサイズを縮小 */
    margin-bottom: 30px;
  }

  .cta-cards {
    flex-direction: column; /* 縦並びにする */
    gap: 16px;
  }

  .cta-card {
    width: 100%; /* フル幅で1列レイアウト */
    padding: 20px;
    min-height: 0;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .cta-phone-number {
    font-size: 1.6rem;
  }
}

/* ------------------------------
ここからヘッダー
------------------------------ */
/* ヘッダー全体 */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.5s ease;
}

/* 非表示時にヘッダーを上に隠す */
#site-header.hide {
  transform: translateY(-100%);
}

.site-header {
  background-color: var(--color-sub-black);
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}

/* ヘッダーコンテナ */
.header-container {
  display: flex;
  flex-direction: column; /* PCではロゴを上、ナビを下に */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.container {
  color: var(--color-main-black);
}

/* ロゴ */
.logo {
  text-align: center;
  margin-bottom: 8px;
}

.logo img {
  height: 88px;
}

/* PC時のナビゲーション */
.site-nav {
  text-align: center;
  width: 100%;
}

.site-nav .nav-menu {
  display: flex;
  flex-wrap: wrap; /* 横幅が狭くなると折り返す */
  justify-content: center;
  list-style: none;
  gap: 16px;
  padding: 0;
  margin: 0;
}

/* ナビゲーションのリンク */
.site-nav .nav-menu li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  padding: 10px;
  transition: color 0.3s;
}

.site-nav .nav-menu li a:hover {
  color: var(--color-red);
}

/* ナビゲーションの区切り線 */
.site-nav .nav-menu li:not(:last-child)::after {
  content: "|";
  color: var(--color-text-gray);
  margin-left: 16px;
}

/* SP用ハンバーガーメニュー */
.hamburger-menu {
  display: none; /* PCでは非表示 */
}

/* ハンバーガーボタン */
.hamburger-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 42px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: 0.3s;
  transform-origin: center;
}

/* 現在のページのナビの文字色を変更 */
.nav-menu .current-menu-item a {
    color: #cc0000 !important; /* 文字の色を変更 */
}

/* SP用ナビゲーション */
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }

  .header-container {
    flex-direction: row; /* ロゴを左、メニューを右に */
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo img {
    height: 80px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .site-nav .nav-menu {
    flex-direction: column;
    gap: 20px;
  }

  .site-nav .nav-menu li a {
    font-size: 1.5rem;
  }

  /* SP時 | を非表示 */
  .nav-menu li::after {
    display: none;
  }

  .hamburger-menu {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }

  /* メニュー開いた時 */
  .site-nav.active {
    display: flex;
  }

  /* ハンバーガーメニューのアニメーション */
  .hamburger-button.open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .hamburger-button.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-button.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}

/* ------------------------------
ここからメインビジュアル
------------------------------ */
/* メインビジュアル */
.main-visual {
  width: 100%;
  height: 80vh; /* 画面の80%の高さ */
  background: url("../isoyacoach/img/background-image.jpg") no-repeat top
    center/cover;
  display: flex;
  align-items: center;
  justify-content: left;
  color: var(--color-white);
  margin-top: 164px;
}

/* コンテナ */
.main-visual .container {
  max-width: 1200px;
  padding: 0 5%;
  text-align: left;
  margin: auto 0 80px;
  color: #fff;
}

/* メインタイトル */
.main-title {
  font-family: "Times New Roman", serif;
  font-size: 5.625rem; /* 90px */
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.32);
}

/* 下線 */
.underline {
  width: 64px;
  height: 1px;
  background-color: var(--color-white);
  margin: 24px 0 32px;
}

/* サブタイトル */
.sub-title {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1024px) {
  .main-visual {
    height: 80vh; /* タブレットでは少し縮める */
  }

  .main-title {
    font-size: 4rem; /* 64px */
    font-family: "Times New Roman", serif;
  }

  .sub-title {
    font-size: 1rem; /* 16px */
  }
}

@media (max-width: 768px) {
  .main-visual {
    justify-content: left;
    text-align: center;
    margin-top: 86px;
  }

  .main-visual .container {
    padding: 0 5%; /* 余白を増やしてバランス調整 */
    margin: auto 0 40px;
  }

  .main-title {
    font-size: 3.125rem; /* 48px */
    font-family: "Times New Roman", serif;
  }

  .underline {
    width: 48px; /* スマホでは下線を短く */
    margin: 16px 0 24px;
  }

  .sub-title {
    font-size: 0.875rem; /* 14px */
  }
}

@media (max-width: 480px) {
}

/* ------------------------------
ここからメッセージセクション
------------------------------ */
/* Message セクション */
.message-section {
  position: relative;
  background-color: var(--color-sub-black);
  color: var(--color-white);
  padding: 140px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120vh; /* 高さを確保 */
  overflow: hidden; /* 画像が意図しない位置にいかないよう調整 */
}

/* 画像エリア（セクションを基準に配置 & sticky適用） */
.message-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* 画像のクリックを無効化 */
}

/* 各画像の配置（message-section を基準） */
.message-images img {
  position: absolute;
  max-width: 100%;
  width: 200px;
  height: auto;
  aspect-ratio: 3 /2;
  object-fit: contain;
  will-change: transform, opacity;
}

/* 画像の配置調整 */
.img1 {
  top: 28%;
  left: 10%;
}
.img2 {
  top: 52%;
  left: 4%;
}
.img3 {
  top: 62%;
  left: 10%;
}
.img4 {
  top: 40%;
  right: 12%;
}
.img5 {
  top: 60%;
  right: 5%;
}
.img6 {
  top: 78%;
  right: 10%;
}

/* .img1 {
    animation: img1 2.8s ease-in-out infinite alternate-reverse;
}

@keyframes img1 {
    0% {
        transform: translateY(-5%);
    }

    100% {
        transform: translateY(5%);
    }
} */

/* テキストコンテナ */
.message-container {
  position: relative;
  text-align: center;
  z-index: 2; /* テキストを最前面に */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

/* テキストエリア */
.message-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

/* 見出し */
.message-label {
  display: block;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.message-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 24px 0 100px;
}

/* 本文の max-width を設定 */
.message-content {
  max-width: 460px;
  margin: 0 auto;
  text-align: left; /* 可読性のため左揃え */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.message-content p {
  font-size: 1.25rem;
  line-height: 2;
}

@media (max-width: 1024px) {
  .message-section {
    padding: 100px 0;
    min-height: 100vh; /* 高さを縮小 */
  }

  .message-text h2 {
    font-size: 2rem;
    margin: 8px 0 100px;
  }

  .message-content {
    max-width: 400px;
  }

  .message-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .message-section {
    flex-direction: column;
    padding: 80px 0;
  }

  .message-text {
    padding: 30px 10%;
  }

  .message-text h2 {
    font-size: 1.8rem;
  }

  .message-content {
    max-width: 350px;
  }

  .message-content p {
    font-size: 1.125rem;
  }

  /* 画像の配置変更（スマホで見やすくする） */
  .message-images {
    display: none; /* モバイルでは非表示 */
  }
}

@media (max-width: 480px) {
  .message-section {
    padding: 56px 0;
  }

  .message-text {
    padding: 0 5%;
  }

  .message-label {
    font-size: 1rem;
  }

  .message-text h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .message-content {
    max-width: 90%;
  }

  .message-content p {
    font-size: 1rem;
  }
}

/* ------------------------------
ここからBLASTER セクション
------------------------------ */
.blaster-section {
  background-color: var(--color-white);
  color: var(--color-main-black);
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* コンテナ */
.blaster-section .container {
  max-width: 1200px;
  width: 100%;
}

/* 2カラムレイアウト */
.blaster-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* 左側の見出し */
.blaster-title {
  flex: 1;
  max-width: 40%;
  text-align: left;
}

.blaster-title h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blaster-title h3 {
  font-size: 2rem;
  font-weight: 500;
}

/* 右側の説明文 */
.blaster-text {
  flex: 2;
  max-width: 60%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blaster-text p {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .blaster-content {
    gap: 30px;
  }

  .blaster-title {
    max-width: 45%;
  }

  .blaster-text {
    max-width: 55%;
  }

  .blaster-title h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .blaster-section {
    padding: 60px 5%;
  }

  .blaster-content {
    flex-direction: column;
    gap: 20px;
  }

  .blaster-title {
    max-width: 100%;
    text-align: center;
  }

  .blaster-title h2 {
    font-size: 2rem;
  }

  .blaster-text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .blaster-section {
    padding: 48px 5%;
  }

  .blaster-title h2 {
    font-size: 1.5rem;
  }
}

/* ------------------------------
   Testimonial セクション
------------------------------ */
.testimonial-section {
  width: 100%;
  background-color: var(--color-bg-gray);
  padding: 80px 0;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* コンテナ全体の幅を制限 */
.testimonial-section .container {
  max-width: 1200px;
  width: 100%;
}

/* 見出し */
.testimonial-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
  max-width: 1200px;
  width: 100%;
}

.testimonial-header h2 {
  font-size: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
  color: var(--color-red);
}

/* スライドナビゲーション */
.testimonial-nav {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 10; /* スライドより上に配置 */
  margin-top: 120px;
}

.testimonial-nav button {
  background: none;
  border: 2px solid #cc0000;
  padding: 10px 20px;
  font-size: 1rem;
  color: var(--color-red);
  cursor: pointer;
  border-radius: 80px;
  transition: 0.3s;
}

.testimonial-nav button:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* Swiper コンテナ */
.testimonial-swiper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  padding-bottom: 30px;
}

/* スワイパーのラッパー */
.swiper-wrapper {
  display: flex;
  box-sizing: border-box;
}

/* スライドのスタイル */
.swiper-slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 24px;
  color: #222;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  margin-bottom: 15px;
}

.swiper-slide h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
  min-height: 5.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-slide p {
  font-size: 0.875rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .testimonial-section {
    padding: 56px 0;
  }
}

@media (max-width: 768px) {
  .testimonial-nav {
    margin-top: 32px;
  }

  .swiper-slide {
    padding: 24px 5% 0;
  }

  .swiper-slide img {
    max-height: 400px;
  }

  .swiper-slide h3 {
    min-height: 0;
  }

  .testimonial-section {
    padding: 48px 0;
  }
}

/* ------------------------------
ここからVideoセクション
------------------------------ */
.dual-video-section {
  background-color: #fff;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--color-main-black);
}

/* コンテナ */
.dual-video-section .container {
  max-width: 1200px;
  width: 100%;
}

/* 上部のテキスト */
.video-description {
  text-align: center;
  margin-bottom: 64px;
}

.video-description p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* 動画を並べる */
.video-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

/* 動画のボックス */
.video-box {
  width: 30%;
  position: relative;
  margin-bottom: 20px;
}

/* 動画タイトル */
.video-box-title {
  display: block;
  font-size: clamp(1.125rem, 1.054rem + 0.36vw, 1.375rem);
  font-weight: 700;
  margin: 16px auto 8px;
  min-height: 4em;
}

/* サムネイルスタイル */
.thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 の比率 */
  border-radius: 10px;
  background-color: #000;
}

.thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* iframeが16:9の比率で表示されるように調整 */
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .dual-video-section {
    padding: 60px 5%;
  }

  .video-description p {
    font-size: 1.25rem;
    text-align: left;
  }

  .video-wrapper {
    gap: 20px;
  }

  .video-box {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .dual-video-section {
    padding: 50px 5%;
  }

  .video-description {
    margin-bottom: 40px;
  }

  .video-description p {
    font-size: 1.2rem;
  }

  .video-wrapper {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }

  .video-box {
    width: 100%;
    margin-bottom: 0;
  }

  .video-box-title {
    min-height: 0;
  }

  .video-box-title {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dual-video-section {
    padding: 48px 5%;
  }

  .video-description p {
    font-size: 1rem;
  }
}



/* ------------------------------
ここからメッセージハイライトセクション
------------------------------ */
/* メッセージセクション */
.message-highlight-section {
  background-color: var(--color-white);
  padding: 100px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* コンテナ */
.message-highlight-container {
  max-width: 1200px;
  width: 100%;
}

/* 2カラムレイアウト */
.message-highlight-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* 左側のテキスト */
.message-highlight-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-main-black);
}

.message-highlight-text p {
  font-size: 1rem;
}

/* 右側の大見出し */
.message-highlight-title {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

.message-highlight-title h2 {
  font-size: clamp(2rem, 1.429rem + 2.86vw, 4rem);
  font-weight: 600;
  color: var(--color-red);
}

.message-highlight-title p {
  font-size: 1.5rem;
  color: var(--color-red);
}

@media (max-width: 1024px) {
  .message-highlight-section {
    padding: 80px 5%;
  }

  .message-highlight-content {
    gap: 40px;
  }

  .message-highlight-title p {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .message-highlight-section {
    padding: 60px 5%;
  }

  .message-highlight-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .message-highlight-text {
    max-width: 100%;
  }

  .message-highlight-title {
    max-width: 100%;
    text-align: center;
  }

  .message-highlight-title p {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .message-highlight-section {
    padding: 48px 5%;
  }

  .message-highlight-title p {
    font-size: 1rem;
  }
}

/* ------------------------------
ここからblastセクション
------------------------------ */
/* BLAST セクション */
.blast-section {
  position: relative;
  background: url("../isoyacoach/img/blaster-bg.jpg") no-repeat center
    center/cover;
  color: white;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 背景のオーバーレイ（テキストの可読性を向上） */
.blast-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* コンテナ */
.blast-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* === 上部：中央揃えの見出し === */
.blast-header {
  text-align: center;
  margin-bottom: 50px;
}

.blast-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.blast-header .highlight {
  color: red;
}

.blast-header-subtitle {
  font-size: 1.25rem;
  margin-top: 10px;
}

/* === 下部：2カラムレイアウト === */
.blast-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* 左側のロゴ */
.blast-logo {
  flex: 1;
  max-width: 30%;
  text-align: center;
}

.blast-logo img {
  width: 100%;
  max-width: 300px;
}

/* 右側のテキスト */
.blast-text {
  flex: 2;
  max-width: 65%;
  text-align: left;
}

.blast-text h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.blast-text p {
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blast-content-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 80px;
  margin: 16px auto 0;
  display: inline-block;
  transition: 0.5s;
}

.blast-content-btn:hover {
  border: 1px solid var(--color-red);
  color: var(--color-red);
}

@media (max-width: 1024px) {
  .blast-section {
    padding: 120px 5%;
  }

  .blast-content {
    gap: 30px;
  }

  .blast-logo {
    max-width: 35%;
  }

  .blast-text {
    max-width: 60%;
  }

  .blast-header h2 {
    font-size: 2.2rem;
  }

  .blast-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blast-section {
    padding: 100px 5%;
  }

  .blast-header {
    margin-bottom: 30px;
  }

  .blast-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .blast-logo {
    max-width: 50%;
    margin: 24px auto;
  }

  .blast-text {
    max-width: 100%;
  }

  .blast-text h3 {
    font-size: 1.25rem;
  }

  .blast-content-btn {
    display: block;
    text-align: center;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .blast-section {
    padding: 56px 5%;
  }

  .blast-logo {
    max-width: 70%;
  }

  .blast-header h2 {
    font-size: 1.75rem;
  }

  .blast-text h3 {
    font-size: 1.125rem;
  }
}

/* =============================
   ここからフッター
============================= */
.footer-links-section {
  background-color: var(--color-white);
  padding: 50px 5%;
  border-top: 1px solid #ddd;
}

.footer-links-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-link-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
}

.footer-link-item:last-child {
  border: none;
}

.footer-link-item h3 {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: 400;
  width: 50%;
  color: var(--color-main-black);
}

.footer-link-content {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.footer-link-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: left;
  color: var(--color-main-black);
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--color-red);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.site-footer {
  background-color: var(--color-sub-black);
  color: var(--color-white);
  padding: 20px 5%;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  gap: 24px;
}

/* Follow me on: テキスト */
.footer-text {
  font-size: 1rem;
  font-weight: bold;
}

/* SNSアイコンのリスト */
.footer-social {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* SNSアイコン */
.footer-social li a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}

.footer-social li a:hover img {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-links-container {
    text-align: center;
  }

  .footer-link-item {
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
  }

  .footer-link-item:first-child {
    padding-top: 0;
  }

  .footer-link-item:last-child {
    padding-bottom: 0;
  }

  .footer-link-item h3 {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-link-content {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-link {
    margin: 0 auto;
  }

  .footer-link-content p {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .footer-links-section {
    padding: 48px 5%;
  }
}

/* =============================
   ここからblasterpage
============================= */
.blaster-page .blast-section {
  margin-top: 164px;
}

/* 選ばれる理由セクション */
.reason-section {
  padding: 80px 5%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  color: var(--color-main-black);
  text-align: center;
}

.reason-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 40px;
}

.reason-description {
  margin: 0 auto 80px;
  font-size: 1.25rem;
  line-height: 2;
  text-align: left;
}

/* 各ブロック */
.reason-block {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* 見出し */
.reason-subtitle {
  width: 100%;
  font-size: 1.125rem;
  color: var(--color-main-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reason-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #222;
}

.reason-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  width: 100%;
}

.reason-heading.reason-red {
  color: #cc0000;
}

/* コンテンツ（画像 & テキスト） */
.reason-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* テキスト */
.reason-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
}

.reason-text-contents {
  width: calc(100% / 3.3);
  display: flex;
  flex-direction: column;
}

.reason-text-contents h4 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  min-height: 3.6em;
  display: flex;
  align-items: flex-start;
}

.reason-text-contents p {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

/* 画像 */
.reason-image {
  width: 100%;
}

.reason-image img {
  width: 100%;
  height: auto;
}

/* 逆配置用 */
.reverse .reason-content {
  flex-direction: row-reverse;
}

/* Coaching Method 2 のレイアウト */
.coaching-method-2-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 40px;
  margin-bottom: 80px;
}

/* 画像サイズ調整 */
.coaching-method-2-image {
  flex: 1;
  max-width: 50%;
}

.coaching-method-2-image img {
  width: 100%;
  height: auto;
}

/* テキスト部分のスタイル */
.coaching-method-2-text {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

/* 見出しの調整 */
.coaching-method-2-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #cc0000;
  margin-bottom: 20px;
}

/* リストの調整 */
.coaching-method-2-text ul {
  margin: 24px 0 24px 24px;
}

.coaching-method-2-text li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-method-2-content {
    flex-direction: column;
  }

  .coaching-method-2-image {
    max-width: 100%;
    width: 100%;
  }

  .coaching-method-2-image img {
    object-fit: cover;
    max-height: 320px;
  }

  .coaching-method-2-text {
    max-width: 100%;
  }

  .reason-text {
    gap: 24px;
  }

  .reason-text-contents h4 {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .reason-section {
    padding: 48px 5%;
  }
  .blaster-page .blast-section {
    margin-top: 86px;
  }
  .coaching-method-2-image img {
    max-height: 200px;
  }
  .reason-title {
    margin-bottom: 24px;
  }
  .reason-description {
    font-size: 1rem;
    text-align: left;
    margin: 0;
  }
  .reason-content {
    gap: 16px;
  }
  .reason-text {
    gap: 24px;
    margin-bottom: 0;
  }
  .reason-text-contents {
    width: 100%;
  }
  .reason-text-contents h4 {
    min-height: 0;
    margin-bottom: 12px;
  }
  .coaching-method-2-content {
    gap: 16px;
    margin-bottom: 0;
  }
  .reason-block {
    margin-top: 48px;
  }
  .reason-text-contents p {
    font-size: 0.875rem;
  }
}

/* Coaching Method #3 */
.coaching-method-3 {
  text-align: left;
  margin-bottom: 80px;
}

/* レイアウト調整 */
.method-3-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px; /* テキストと画像の間隔 */
}

/* テキストエリア */
.method-3-text {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* 小見出し */
.reason-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  color: var(--color-main-black);
  margin-bottom: 8px;
}

.reason-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #222;
}

/* 見出し */
.reason-heading.reason-red {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: 600;
  color: #cc0000;
  margin-bottom: 40px;
}

.method-3-text-item {
  margin-bottom: 24px;
}

/* 各テキスト要素 */
.method-3-text-item h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.method-3-text-item p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* 画像エリア */
.method-3-image {
  width: 45%;
  text-align: right;
}

.method-3-image img {
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .method-3-image {
    text-align: center;
    width: 100%;
  }
  .method-3-image img {
    object-fit: cover;
    max-height: 200px !important;
  }
  .method-3-text {
    width: 100%;
  }

  .method-3-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .method-3-content {
    gap: 24px;
  }
  .coaching-method-3 {
    margin-bottom: 56px;
  }
  .reason-heading.reason-red {
    margin-bottom: 24px;
  }
  .method-3-text-item:last-child {
    margin-bottom: 0;
  }
}

/* Coaching Method #4 */
.coaching-method-4 {
  text-align: left;
}

/* レイアウト調整 */
.method-4-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px; /* テキストと画像の間隔 */
}

/* 画像エリア */
.method-4-image {
  width: 45%;
}

.method-4-image img {
  width: 100%;
  height: auto;
}

/* テキストエリア */
.method-4-text {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* 小見出し */
.reason-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  color: var(--color-main-black);
  margin-bottom: 8px;
}

.reason-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #222;
}

/* リストスタイル */
.method-4-list {
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 24px;
}

.method-4-list li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .method-4-content {
    flex-direction: column;
    width: 100%;
  }

  .method-4-text,
  .method-4-image {
    width: 100%;
  }

  .method-4-image {
    text-align: center;
    width: 100%;
  }

  .method-4-image img {
    object-fit: cover;
    width: 100%;
    max-height: 200px !important;
  }
}

@media (max-width: 768px) {
  .method-4-content {
    gap: 24px;
  }
}

/* =============================
   ここからビジネスコーチングpage
============================= */
/* メッセージセクション全体 */
.coaching-message-section {
  padding: 0 5% 80px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  color: #222222; /* 明確なテキストカラー指定 */
}

/* 見出し */
.coaching-message-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #222222;
}

/* 説明テキスト */
.coaching-message-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #222222;
}

/* カードコンテナ */
.coaching-message-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* カードデザイン */
.coaching-message-card {
  /* background-color: #f9f9f9; */
  padding: 20px;
  text-align: left;
  width: 30%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222222;
}

/* 画像 */
.coaching-message-card img {
  width: 100%;
  margin-bottom: 15px;
}

/* カードタイトル */
.coaching-message-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  color: #222222;
}

/* カードテキスト */
.coaching-message-card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
  text-align: left;
  color: #222222;
}

/* まとめテキスト */
.coaching-message-summary {
  font-size: 1.25rem;
  margin: 50px auto 0;
  line-height: 1.8;
  color: #222222;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-message-cards {
    flex-wrap: wrap;
    gap: 20px;
  }
  .coaching-message-card {
    width: 30%;
    padding: 0;
  }

  .coaching-message-card-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .coaching-message-section {
    padding: 0 5% 56px;
  }

  .coaching-message-description {
    font-size: 1rem;
    text-align: left;
  }
  .coaching-message-card {
    width: 100%;
    max-width: 400px;
  }
  .coaching-message-summary {
    font-size: 1rem;
  }
  .coaching-message-cards {
    gap: 40px;
  }
  .coaching-message-summary {
    margin: 32px auto 0;
    text-align: left;
  }

  .coaching-message-card-text {
    text-align: left;
  }

  .coaching-message-title {
    gap: 30px;
  }
}

/* Coaching アプローチセクション */
.coaching-approach-section {
  background-color: #000;
  color: #fff;
  padding: 80px 5%;
}

/* セクションのコンテンツ */
.coaching-approach-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* 画像エリア */
.coaching-approach-image {
  position: relative;
  max-width: 560px;
  width: 100%;
}

.coaching-approach-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像の左上と右下に装飾を追加 */
.coaching-approach-corner {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  border-left: 5px solid #cc0000;
  border-top: 5px solid #cc0000;
}

.coaching-approach-image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  border-right: 5px solid #cc0000;
  border-bottom: 5px solid #cc0000;
}

/* テキストエリア */
.coaching-approach-text {
  max-width: 600px;
  width: 100%;
  color: #fff;
}

/* タイトル */
.coaching-approach-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 説明文 */
.coaching-approach-description {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-approach-content {
    flex-direction: column;
    text-align: center;
  }

  .coaching-approach-text {
    max-width: 100%;
    text-align: left;
  }

  .coaching-approach-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .coaching-approach-section {
    padding: 56px 5%;
  }

  .coaching-approach-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .coaching-approach-description {
    font-size: 1rem;
  }

  .coaching-approach-corner,
  .coaching-approach-image::after {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }

  .coaching-approach-content {
    gap: 40px;
  }
}

/* Coaching Method セクション */
.coaching-method-section {
  padding: 80px 5%;
  background-color: #fff;
  color: var(--color-main-black);
}

/* 2カラムのレイアウト */
.coaching-method-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左側の見出し */
.coaching-method-header {
  width: 400px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* サブタイトル */
.coaching-method-subtitle {
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-method-subtitle::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #222;
}

/* メインタイトル */
.coaching-method-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000;
  line-height: 1.5;
}

/* 右側のコンテンツ */
.coaching-method-items {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* アイテム全体 */
.coaching-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* アイコン */
.coaching-method-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coaching-method-icon img {
  max-width: 100%;
  height: auto;
}

/* テキストエリア */
.coaching-method-text {
  flex: 1;
}

/* タイトル */
.coaching-method-text h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}

/* 説明文 */
.coaching-method-text p {
  font-size: 1rem;
  color: #222;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-method-content {
    flex-direction: column;
    align-items: center;
  }

  .coaching-method-header,
  .coaching-method-items {
    width: 100%;
  }

  .coaching-method-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .coaching-method-subtitle {
    justify-content: center;
  }

  .coaching-method-items {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .coaching-method-section {
    padding: 56px 5%;
  }
  .coaching-method-item {
    flex-direction: column;
    text-align: center;
  }

  .coaching-method-icon {
    width: 60px;
    height: 60px;
  }

  .coaching-method-title {
    font-size: 1.4rem;
  }

  .coaching-method-text h3 {
    font-size: 1.2rem;
  }

  .coaching-method-text p {
    font-size: 0.875rem;
    text-align: left;
  }
}

/* Coaching Method #2 セクション */
.coaching-page-method-2-section {
  padding: 80px 5%;
  background-color: #f3f3f3;
  color: var(--color-main-black)
}

/* 2カラムのレイアウト */
.coaching-page-method-2-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左側の見出し */
.coaching-page-method-2-header {
  width: 400px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* サブタイトル */
.coaching-page-method-2-subtitle {
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-page-method-2-subtitle::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #222;
}

/* メインタイトル */
.coaching-page-method-2-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000;
  line-height: 1.5;
}

/* 右側のコンテンツ */
.coaching-page-method-2-items {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* アイテム全体 */
.coaching-page-method-2-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

/* アイコン */
.coaching-page-method-2-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coaching-page-method-2-icon img {
  max-width: 100%;
  height: auto;
}

/* テキストエリア */
.coaching-page-method-2-text {
  flex: 1;
}

/* タイトル */
.coaching-page-method-2-text h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* 説明文 */
.coaching-page-method-2-text p {
  font-size: 1rem;
  color: #222;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-page-method-2-section {
    padding: 56px 5%;
  }
  .coaching-page-method-2-content {
    flex-direction: column;
    align-items: center;
  }

  .coaching-page-method-2-header,
  .coaching-page-method-2-items {
    width: 100%;
  }

  .coaching-page-method-2-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .coaching-page-method-2-subtitle {
    justify-content: center;
  }

  .coaching-page-method-2-items {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .coaching-page-method-2-item {
    flex-direction: column;
    text-align: center;
  }

  .coaching-page-method-2-icon {
    width: 60px;
    height: 60px;
  }

  .coaching-page-method-2-title {
    font-size: 1.4rem;
  }

  .coaching-page-method-2-text h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .coaching-page-method-2-text p {
    text-align: left;
    font-size: 0.875rem;
  }
}

/* Coaching Method #3 セクション */
.coaching-page-method-3-section {
  padding: 80px 5%;
  background-color: #fff;
  color: var(--color-main-black);
}

/* 2カラムのレイアウト */
.coaching-page-method-3-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左側の見出し */
.coaching-page-method-3-header {
  width: 400px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* サブタイトル */
.coaching-page-method-3-subtitle {
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-page-method-3-subtitle::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #222;
}

/* メインタイトル */
.coaching-page-method-3-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000;
  line-height: 1.5;
}

/* 右側のコンテンツ */
.coaching-page-method-3-main {
  width: 65%;
}

/* 小見出し */
.coaching-page-method-3-subheading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 32px;
}

/* 赤い線付き小見出し */
.coaching-page-method-3-subheading-border {
  border-left: 3px solid #cc0000;
  padding-left: 12px;
}

/* 2つのポイント */
.coaching-page-method-3-points {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
}

.coaching-page-method-3-point {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  flex: 1;
  text-align: left;
}

.coaching-page-method-3-point-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #aaa;
  display: block;
}

.coaching-page-method-3-point h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.coaching-page-method-3-point p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

/* 法人向けサービス */
.coaching-page-method-3-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.coaching-page-method-3-service {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
}

/* 補足テキスト */
.coaching-page-method-3-note {
  font-size: 0.95rem;
  color: var(--color-main-black);
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-page-method-3-content {
    flex-direction: column;
    align-items: center;
  }

  .coaching-page-method-3-header,
  .coaching-page-method-3-main {
    width: 100%;
  }

  .coaching-page-method-3-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .coaching-page-method-3-subtitle {
    justify-content: center;
  }

  .coaching-page-method-3-points {
    flex-direction: column;
  }

  .coaching-page-method-3-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .coaching-page-method-3-section {
    padding: 56px 5%;
  }

  .coaching-page-method-3-title {
    font-size: 1.4rem;
  }

  .coaching-page-method-3-point h4 {
    font-size: 1.2rem;
  }

  .coaching-page-method-3-point p {
    font-size: 0.95rem;
  }

  .coaching-page-method-3-service {
    font-size: 1rem;
  }

  .coaching-page-method-4-actions {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .coaching-page-method-4-action {
    width: 100%;
  }

  .coaching-page-method-3-subheading {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/* Coaching Method #4 セクション */
.coaching-page-method-4-section {
  padding: 80px 5%;
  background-color: #f3f3f3;
  color: var(--color-main-black);
}

/* 2カラムのレイアウト */
.coaching-page-method-4-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左側の見出し */
.coaching-page-method-4-header {
  width: 400px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* サブタイトル */
.coaching-page-method-4-subtitle {
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-page-method-4-subtitle::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #222;
}

/* メインタイトル */
.coaching-page-method-4-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cc0000;
  line-height: 1.5;
}

/* 右側のコンテンツ */
.coaching-page-method-4-main {
  width: 65%;
}

/* 説明文 */
.coaching-page-method-4-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 重要ポイント */
.coaching-page-method-4-points {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.coaching-page-method-4-point {
  flex: 1;
}

.coaching-page-method-4-point h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.coaching-page-method-4-point p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

/* まとめの説明 */
.coaching-page-method-4-summary {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 3つのアクションボタン */
.coaching-page-method-4-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.coaching-page-method-4-action {
  flex: 1;
  text-align: center;
  background: #f5f5f5;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-main-black);
  border: 1px solid #ccc;
}

/* 補足テキスト */
.coaching-page-method-4-note {
  font-size: 1rem;
  color: var(--color-main-black);
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-page-method-4-content {
    flex-direction: column;
    align-items: center;
  }

  .coaching-page-method-4-header,
  .coaching-page-method-4-main {
    width: 100%;
  }

  .coaching-page-method-4-title {
    text-align: center;
    font-size: 1.6rem;
  }

  .coaching-page-method-4-subtitle {
    justify-content: center;
  }

  .coaching-page-method-4-points {
    flex-direction: column;
  }

  .coaching-page-method-4-actions {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .coaching-page-method-4-section {
    padding: 56px 5%;
  }
  .coaching-page-method-4-title {
    font-size: 1.4rem;
  }

  .coaching-page-method-4-point h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .coaching-page-method-4-point p {
    font-size: 0.95rem;
  }

  .coaching-page-method-4-action {
    font-size: 0.9rem;
    padding: 12px;
  }

  .coaching-page-method-4-note {
    text-align: left;
  }

  .coaching-page-method-4-points {
    gap: 30px;
  }

  .coaching-page-method-4-content {
    gap: 30px;
  }
}

/* =============================
   ここからプロフィールpage
============================= */
.page-template-profile {
  background-color: #f5f5f5;
}
/* Profileページセクション */
.profile-page-section {
  color: #222;
}

/* コンテナ（画像＋テキスト全体） */
.profile-page-container {
  position: relative;
  margin: 0 auto;
}

/* プロフィール画像 */
.profile-page-image {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-page-image img {
  width: 94%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* プロフィール情報（白背景のテキストエリア） */
.profile-page-content {
  background-color: #fff;
  padding: 200px 40px 80px;
  width: 100%;
  margin: -150px auto 0;
  position: relative;
  z-index: 0;
}

/* 名前 */
.profile-page-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 32px;
}

.profile-page-post {
  display: inline-block;
  font-size: 0.875rem;
}

.profile-page-text {
  padding: 0 10%;
  margin: 0 auto;
}

/* 各テキスト */
.profile-page-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.profile-page-publications {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.profile-page-publications li {
  margin-bottom: 10px;
}

/* 著書セクション */
.profile-page-books {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
}

.profile-page-book {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}

.profile-page-book-wrapper {
  text-align: left;
  width: 100%;
}

.profile-page-book-wrapper span {
  font-size: 1.625rem;
  display: block;
  font-weight: 600;
  line-height: 1.5;
}

.profile-page-book-wrapper-subtext {
  font-size: 1rem !important;
}

.book-cta {
  background-color: #ffa41c;
  display: inline-block;
  padding: 2px 72px;
  border-radius: 80px;
  margin-top: 24px;
  transition: 0.2s;
}

.book-cta:hover {
  background-color: #f39200;
}

.book-cta a {
  color: #232f3e;
  font-family: sans-serif;
  font-size: 0.875rem;
}

.profile-page-book img {
  width: 100%;
  height: auto;
  max-width: 180px;
  display: block;
  margin-right: 80px;
}

.profile-page-book p {
  font-size: 1;
  line-height: 1.6;
  color: var(--color-main-black);
  margin-top: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .profile-page-content {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .profile-page-section {
    padding: 0;
  }
  .profile-page-content {
    padding: 180px 5% 56px;
  }

  .profile-page-books {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 80px;
  }

  .profile-page-book {
    width: 100%;
    flex-wrap: wrap;
  }

  .profile-page-book img {
    margin: 0 auto 24px;
  }

  .profile-page-book-wrapper {
    text-align: center;
  }

  .profile-page-book p {
    margin-top: 24px;
    text-align: left;
  }

  .profile-page-image img {
    width: 100%;
  }

  .profile-page-name {
    font-size: 1.375rem;
  }

  .profile-page-book-wrapper span {
    font-size: 1.5rem;
  }

  .book-cta {
    margin-top: 0;
  }

  .profile-page-text {
    padding: 0;
  }

  .profile-page-text p {
    margin-bottom: 24px;
  }

  .profile-page-name {
    margin-bottom: 24px;
  }

  .profile-page-book-wrapper-subtext {
    margin-top: 4px;
  }
}

/* メディア記事セクション */
.media-articles-section {
  padding: 80px 5%;
  background-color: #f8f8f8;
  text-align: center;
}

/* セクションタイトル */
.media-articles-title {
  font-family: "Noto Sans JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #cc0000;
  margin-bottom: 40px;
}

/* 記事コンテナ */
.media-articles {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 記事カード */
.media-article {
  width: 30%;
  max-width: 380px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.media-article:hover {
  transform: translateY(-5px);
}

/* 記事画像 */
.media-article img {
  width: 100%;
  height: auto;
  display: block;
}

/* 記事内容 */
.media-article-content {
  padding: 20px;
  text-align: left;
}

/* 記事タイトル */
.media-article-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--color-main-black);
}

/* 記事概要 */
.media-article-summary {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

/* 日付 */
.media-article-date {
  font-size: 0.85rem;
  color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .media-articles-section {
    padding: 56px 5%;
  }

  .media-articles {
    flex-direction: column;
    align-items: center;
  }

  .media-article {
    width: 100%;
  }
}

@media (max-width: 480px) {
}

/* ==============================
   グリッドレイアウト管理
============================== */
.gallery-section {
  width: 100%;
  padding: 40px 5%;
  background-color: #000; /* 背景を黒に */
}

.gallery-section img {
  width: 100%;
  height: auto;
}

.gallery-pc {
  display: block;
}

.gallery-sp {
  display: none;
}

@media (max-width: 768px) {
  .gallery-pc {
    display: none;
  }

  .gallery-sp {
    display: block;
  }
}

/* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(17, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    grid-auto-flow: row dense;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 /9;
    display: block;
}

.size-6x3 {
    grid-column: span 6;
    grid-row: span 3;
}

.size-2x3 {
    grid-column: span 2;
    grid-row: span 3;
}

.size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.size-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}

.size-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}

.size-4x2 {
    grid-column: span 4;
    grid-row: span 2;
}

.size-3x2 {
    grid-column: span 3;
    grid-row: span 2;
}

.size-5x3 {
    grid-column: span 5;
    grid-row: span 3;
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item {
        grid-column: span 2;
        grid-row: span 5;
    }

    .grid-item img {
        height: auto;
        aspect-ratio: 0;
    }
} */

/* SNSセクション全体 */
.sns-section {
  color: var(--color-main-black);
  padding: 60px 5%;
}

/* セクションタイトル */
.sns-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns-title img {
  height: 32px;
}

.sns-title i {
  font-size: 2rem;
  color: red;
}

/* SNSグリッド（YouTube・Note） */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.sns-embed {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sns-embed iframe {
  width: 100%;
  height: 200px;
}

/* YouTube専用グリッド */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

/* YouTube埋め込み専用ラッパー */
.youtube-grid .sns-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
  overflow: hidden;
  box-sizing: border-box;
}

/* YouTubeのiframe専用 */
.youtube-grid .sns-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
  box-sizing: border-box;
}


.fb-x-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 32px;
}

.sns-box {
  width: 48%;
}

.sns-content {
  width: 100%;
}

/* Facebook & X (旧Twitter) の横並び */
.sns-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.sns-facebook,
.sns-x {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 300px;
}

/* Facebook & X の埋め込みスタイル */
.fb-post {
  width: 100%;
  max-width: 500px;
}

.twitter-tweet {
  width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  /* .sns-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  } */
  .sns-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .sns-box {
    width: 100%;
  }

  .youtube-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
  }
}

/* =============================
   ここからサービスpage
============================= */
/* Service ページ全体 */
.service-page-section {
  background-color: #fff;
  padding: 0 5% 80px;
  text-align: center;
  color: #222;
  gap: 80px;
}

/* タイトル関連 */
.service-page-subtitle {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(0.75rem, 0.607rem + 0.71vw, 1.25rem);
  font-weight: 700;
  color: #cc0000;
}

.service-page-title {
  font-size: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  font-weight: 600;
  margin: 16px 0 6px;
  color: var(--color-red);
}

.service-page-tagline {
  font-size: clamp(0.75rem, 0.607rem + 0.71vw, 1.25rem);
  color: #cc0000;
  margin-bottom: 56px;
}

/* 説明文 */
.service-page-description {
  margin: 0 auto 56px;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* 対象 & 内容 */
.service-page-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

/* 各ボックス */
.service-page-box {
  flex: 1;
  width: 100%;
}

/* タイトル背景のみ黒 */
.service-page-box-title {
  background-color: #111;
  color: #fff;
  padding: 10px;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* アイコンリスト */
.service-page-icons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  padding: 20px;
  gap: 16px;
}

.service-page-icon {
  text-align: center;
  flex: 1;
}

.service-page-icon img {
  height: 80px;
}

/* 内容リスト */
.service-page-list {
  list-style: none;
  padding: 20px;
  font-size: 1rem;
}

.service-page-list li {
  margin-bottom: 16px;
  text-align: left;
}

/* 参加者の声 */
.service-page-voice {
  margin-bottom: 40px;
  text-align: left;
}

/* 参加者の声タイトル */
.service-page-voice-title {
  background-color: #111;
  color: #fff;
  padding: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

/* 参加者情報 */
.service-page-voice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* アイコン */
.service-page-avatar {
  text-align: center;
}

.service-page-avatar img {
  height: 80px;
}

/* まとめメッセージ */
.service-page-summary {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-page-container {
  margin-bottom: 120px;
}

.service-page-container:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .service-page-content {
    flex-direction: column;
    align-items: center;
  }

  .service-page-voice-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 786px) {
  .service-page-section {
    padding: 0 5% 56px;
  }
  .service-page-container {
    margin: 0 0 56px 0;
  }

  .service-page-container:last-child {
    margin: 0;
  }

  .service-page-description {
    font-size: 1rem;
    margin-bottom: 32px;
    text-align: left;
  }

  .service-page-content {
    margin-bottom: 20px;
    gap: 32px;
  }

  .service-page-voice {
    padding-bottom: 40px;
    margin-bottom: 0;
  }

  .service-page-summary {
    font-size: 1.125rem;
    text-align: left;
  }

  .service-page-icons {
    padding: 20px 0 0;
  }

  .service-page-icon p {
    font-size: 0.75rem;
  }

  .service-page-title {
    margin: 0;
  }

  .service-page-tagline {
    margin-bottom: 40px;
  }

  .service-page-avatar p {
    font-size: 0.875rem;
  }

  .service-page-list {
    padding: 16px 16px 0;
  }

  .service-page-voice-content {
    padding: 16px 16px 0;
    gap: 16px;
    text-align: left;
  }

  .voice-text {
    text-align: left;
  }
}

/* 料金セクション全体 */
.pricing-page-section {
  background-color: #f3f3f3;
  padding: 80px 5%;
  text-align: center;
  color: #222;
}

/* セクションタイトル */
.pricing-page-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-weight: bold;
  color: #cc0000;
  margin-bottom: 24px;
}

/* プラン一覧 */
.pricing-page-plans {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* 各プランボックス */
.pricing-page-plan {
  background-color: #fff;
  border: 2px solid #cbcbcb;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  width: 100%;
  max-width: 480px;
}

/* プラン名 */
.pricing-page-plan-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-main-black);
}

/* プランタイトル */
.pricing-page-plan-title {
  font-size: clamp(1.25rem, 1.036rem + 1.07vw, 2rem);
  font-weight: 600;
  margin: 8px 0 24px;
}

/* プラン説明 */
.pricing-page-plan-description {
  font-size: 1rem;
  color: var(--color-main-black);
  margin-bottom: 20px;
}

/* 料金 */
.pricing-page-price {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 24px;
}

.pricing-page-price span {
  font-size: 3rem;
  color: #000;
}

/* 特徴リスト */
.pricing-page-features {
  list-style: none;
  padding: 0;
  font-size: 1.125rem;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-page-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* チェックマーク */
.feature-icon {
    font-size: 1.5rem;
    color: #cc0000; /* 赤色 */
    font-weight: bold;
    flex-shrink: 0; /* サイズを固定 */
}

/* テキスト */
.feature-text {
    font-size: 1.125rem;
    line-height: 1.6;
    flex-grow: 1; /* テキストが自動的に広がる */
}

.pricing-page-plans-p {
  font-size: 1.25rem;
  margin: 24px auto 56px;
}

/* ボタン */
.pricing-page-button {
  display: block;
  text-align: center;
  background-color: #cc0000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.4s;
}

.pricing-page-button:hover {
  background-color: #8b0000;
}

/* 注意書き */
.pricing-page-note {
  font-size: 0.875rem;
  color: var(--color-main-black);
  margin-top: 24px;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .pricing-page-plans {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 786px) {
  .pricing-page-section {
    padding: 56px 5%;
  }

  .pricing-page-price {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .pricing-page-price span {
    font-size: 2rem;
  }

  .pricing-page-plan {
    padding: 20px;
  }

  .pricing-page-plan-title {
    margin: 8px 0 16px;
  }

  .pricing-page-plan-description {
    margin-bottom: 12px;
  }

  .pricing-page-plans-p {
    margin: 16px auto 40px;
  }

  .pricing-page-note {
    text-align: left;
  }


}

/* =============================
   ここから講演会page
============================= */
/* 全体レイアウト */
.coaching-lecture-page-section {
  background-color: #fff;
  color: var(--color-main-black);
  padding: 0 5% 80px;
  display: flex;
  justify-content: center;
}

/* コンテナ */
.coaching-lecture-page-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* 左側ナビゲーション */
.coaching-lecture-page-sidebar {
  width: 20%;
  min-width: 180px;
  position: sticky;
  top: 200px; /* 上からの距離 */
  height: fit-content;
  align-self: flex-start; /* コンテンツより上端を揃える */
}

.coaching-lecture-page-menu {
  list-style: none;
  padding: 0;
}

.coaching-lecture-page-menu a.active {
  color: #cc0000; /* 任意の強調色 */
  position: relative;
  padding-left: 1.2em;
}

.coaching-lecture-page-menu a.active::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cc0000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 400ms;
}

.coaching-lecture-page-menu li {
  margin-bottom: 12px;
}


.coaching-lecture-page-menu a {
  text-decoration: none;
  color: #909090;
  font-size: 0.875rem;
  display: block;
  transition: 0.3s;
}

.coaching-lecture-page-menu a:hover {
  color: #cc0000;
}

/* メインコンテンツ */
.coaching-lecture-page-content {
  flex: 1;
  padding-left: 48px;
}

/* テーマタイトル */
.coaching-lecture-page-theme-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* メインタイトル */
.coaching-lecture-page-main-title {
  font-size: clamp(1.25rem, 1.036rem + 1.07vw, 2rem);
  font-weight: bold;
  color: #cc0000;
  margin-bottom: 20px;
}

/* 説明文 */
.coaching-lecture-page-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  text-align: left;
}

@media (min-width: 2200px) {
  .coaching-lecture-page-section {
    padding: 0 15% 80px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .coaching-lecture-page-container {
    flex-direction: column;
    align-items: center;
  }

  .coaching-lecture-page-sidebar {
    width: 100%;
    position: static; /* スマホでは固定解除 */
    text-align: center;
    margin-bottom: 40px;
  }

  .coaching-lecture-page-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .coaching-lecture-page-menu li {
    margin-bottom: 0;
  }

  .coaching-lecture-page-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .coaching-lecture-page-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .coaching-lecture-page-description {
    font-size: 1rem;
  }
}

/* セクション全体 */
.lecture-feature-section {
  width: 100%;
  padding: 80px 0 0;
}

/* セクションタイトル */
.lecture-feature-title {
  font-size: clamp(1.125rem, 0.946rem + 0.89vw, 1.75rem);
  font-weight: 600;
  padding: 8px 24px 8px 48px;
  position: relative;
  display: inline-block;
  background-color: #f3f3f3;
  width: 100%;
  margin-bottom: 32px;
}

/* 赤い縦線の装飾 */
.lecture-feature-title::before {
  content: "";
  position: absolute;
  left: 2%;
  top: 10%;
  height: 80%;
  width: 5px;
  background-color: #cc0000; /* 赤 */
}

/* コンテンツのスタイル */
.lecture-feature-content {
  max-width: 900px;
  text-align: left;
}

/* 見出し (h3) */
.lecture-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

/* リストのスタイル */
.lecture-feature-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.lecture-feature-content li {
  font-size: 1.25rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

/* 各リスト項目のアイコン */
.lecture-feature-content li::before {
  content: "•"; /* 黒丸 */
  color: var(--color-main-black);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .lecture-feature-title {
    display: block;
    text-align: left;
  }

  .lecture-feature-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lecture-feature-section {
    padding: 40px 0 0;
  }

  .lecture-feature-title {
    padding: 8px 24px;
  }

  .lecture-feature-content h3 {
    font-size: 1rem;
  }

  .lecture-feature-content li {
    font-size: 1rem;
  }
}

/* 公演例セクション全体 */
.lecture-example-section {
  width: 100%;
  padding: 80px 0 0;
}

/* 公演例コンテンツ */
.lecture-example-content {
  max-width: 900px;
}

/* 公演例の各項目 */
.lecture-example-item {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.lecture-example-item:first-child {
  padding-top: 0;
}

/* 公演例タイトル (h3) */
.lecture-example-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-main-black);
}

/* 公演例の説明テキスト (p) */
.lecture-example-item span {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  color: var(--color-main-black);
}

/* 注意書き */
.lecture-example-note {
  font-size: 1.25rem;
  text-align: left;
  margin-top: 24px;
  color: var(--color-main-black);
}

/* 料金セクション */
.lecture-pricing-section {
  width: 100%;
  padding: 80px 0 0;
}

/* 料金ボックス */
.lecture-pricing-content {
  width: 100%;
}

/* 料金タイトル */
.lecture-pricing-box {
  text-align: left;
}

/* テキスト */
.lecture-pricing-box p {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* 講演の流れ セクション */
.lecture-flow-section {
  width: 100%;
  padding: 80px 0 0;
}

/* コンテンツラップ */
.lecture-flow-content {
  width: 100%;
}

/* 講演の流れボックス */
.lecture-flow-box {
  text-align: left;
}

/* リスト */
.lecture-flow-box ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lecture-flow-box li {
  font-size: 1.25rem;
}

/* ネストされたリスト */
.lecture-flow-box ul {
  padding-left: 20px;
  list-style-type: disc;
}

.lecture-flow-box ul li {
  font-size: 1.25rem;
}

/* 受講者の声セクション */
.lecture-voices-section {
  background-color: #fff;
  padding: 80px 0 0;
}

/* 受講者の声リスト */
.lecture-voices-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 各受講者の声 */
.lecture-voice-box {
  padding: 24px;
  border: 1px solid #bdbdbd;
}

.lecture-voice-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.lecture-voice-box p {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .lecture-voices-list {
    gap: 15px;
  }

  .lecture-voice-box {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .lecture-example-section {
    padding: 56px 0 0;
  }

  .lecture-example-item h3 {
    font-size: 1.25rem;
  }

  .lecture-example-item p {
    font-size: 1rem;
  }

  .lecture-example-note {
    font-size: 1.125rem;
  }

  .lecture-pricing-section {
    padding: 56px 0 0;
  }

  .lecture-pricing-box p {
    font-size: 1rem;
  }

  .lecture-flow-section {
    padding: 56px 0 0;
  }

  .lecture-flow-box li {
    font-size: 1rem;
  }

  .lecture-flow-box ul li {
    font-size: 1rem;
  }

  .lecture-voices-section {
    padding: 56px 0 0;
  }

  .lecture-consultation-section {
    padding: 56px 0 0 !important;
  }

  .lecture-consultation-message {
    margin-top: 32px !important;
    font-size: 1rem !important;
  }

  .coaching-lecture-page-section {
    padding: 0 5% 56px;
  }

  .lecture-voice-box h3 {
    font-size: 1.125rem;
  }
}

/* ご相談から実施までの流れセクション */
.lecture-consultation-section {
  background-color: #fff;
  padding: 80px 0 0;
}

/* ステップリスト */
.lecture-consultation-steps {
  margin-bottom: 20px;
  text-align: left;
}

.lecture-consultation-steps ol {
  list-style: decimal;
  margin-left: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lecture-consultation-steps ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* まとめメッセージ */
.lecture-consultation-message {
  font-size: 1.25rem;
  margin-top: 20px;
  font-weight: 600;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .lecture-consultation-steps ol {
    font-size: 1rem;
  }
  .lecture-consultation-message {
    font-size: 1.1rem;
  }
}

/* =============================
   お問い合わせページ
============================= */
body.page-id-31 .coaching-header {
  background-color: #f3f3f3;
}

.contact-page {
  background-color: #f3f3f3;
  padding-bottom: 80px;
}

.contact-page-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact-page-form {
  padding: 20px;
  color: var(--color-main-black);
}

/* フォームスタイル */
.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  border: 1px solid #ccc;
  display: block;
  margin: 8px 0 32px 0;
  font-family: inherit;
  color: #333;
}

@media (max-width: 480px) {
  .contact-page-form input,
  .contact-page-form textarea {
    padding: 16px 8px;
  }
}

/* ✅ プレースホルダーのフォントを統一 */
.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  font-family: inherit; /* フォームと同じフォントを継承 */
  font-size: 1rem;
  color: #c1c1c1; /* 他の入力フィールドと同じ色 */
  font-weight: 400; /* 文字の太さを統一 */
}

/* ✅ テキストエリアのプレースホルダー調整 */
.contact-page-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* お問い合わせ内容のラベル */
.checkbox-label {
  margin-bottom: 10px;
  display: block;
}

/* ✅ チェックボックスエリア */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-start;
  max-width: 100%;
  margin-bottom: 32px;
}

.wpcf7-form-control {
  gap: 16px 24px;
  display: flex;
  flex-wrap: wrap;
}

/* ✅ チェックボックスとテキストを横並びにする */
.wpcf7-list-item label {
  display: inline-flex; /* チェックボックスとテキストを一行に */
  align-items: center;
  gap: 8px; /* チェックボックスとテキストの間隔 */
  margin: 0;
  padding: 0;
}

.wpcf7-list-item label input {
  margin: 0;
}

.contact-page-form textarea {
  margin-bottom: 0;
}

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

/* ✅ iPhoneのデフォルトスタイルをリセット */
.checkbox-group input[type="checkbox"],
.consent-box input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  padding: 0;
}

/* ✅ チェック時の見た目 */
.checkbox-group input[type="checkbox"]:checked,
.consent-box input[type="checkbox"]:checked {
  background-color: #cc0000;
  border-color: #cc0000;
}

/* ✅ ✓マークを表示 */
.checkbox-group input[type="checkbox"]::after,
.consent-box input[type="checkbox"]::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* ✅ チェック時に✓を表示 */
.checkbox-group input[type="checkbox"]:checked::after,
.consent-box input[type="checkbox"]:checked::after {
  display: block;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 600px) {
  .checkbox-group {
    gap: 10px;
    flex-wrap: wrap;
  }

  .wpcf7-list-item {
    gap: 6px;
    width: 100%;
    flex-wrap: nowrap;
  }
}

/* =============================
   同意チェックボックス
============================= */
.consent-box label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.consent-box input {
  margin: 0;
}

/* =============================
   送信ボタン
============================= */
.contact-page-form .submit-button input[type="submit"] {
  background-color: #b22222;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s;
}

.contact-page-form .submit-button input[type="submit"]:hover {
  background-color: #8b0000;
}

/* ✅ スマホ対応 */
@media (max-width: 768px) {
  .contact-page-container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }

  .contact-page-form {
    padding: 0;
  }

  .contact-page {
    padding-bottom: 24px;
  }
}

/* ------------------------------
ここからプライバシーポリシー
------------------------------ */
/* プライバシーポリシーのスタイル */
.privacy-policy-page{
  margin-top: clamp(5.5rem, 4.143rem + 6.79vw, 10.25rem);
}

.privacy-policy-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.privacy-policy-title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  margin: clamp(1.5rem, 1.071rem + 2.14vw, 3rem) auto clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
  text-align: center;
}

.privacy-policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-policy-content h2,
.privacy-policy-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-policy-content h3 {
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
}

.privacy-policy-content p,
.privacy-policy-content li {
  margin-bottom: 15px;
}

.privacy-policy-content li {
  margin-left: 16px;
}

/* 404ページ */
.not-found-page {
  padding: 100px 20px;
  margin-top: 170px;
  text-align: center;
  background-color: #fff;
  color: var(--color-main-black);
}

.not-found-title {
  font-size: clamp(1.5rem, 1.429rem + 0.36vw, 1.75rem);
  font-weight: bold;
  margin-bottom: 24px;
}

.not-found-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.not-found-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-red);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}
.not-found-btn:hover {
  background-color: #8b0000;
}

@media (max-width:768px) {
  .not-found-page {
    padding: 56px 20px;
    margin-top: 90px;
  }
}