/* ohyama.css
   Tri.H studio 大山用の上書きCSS（common.cssはそのまま使う）
*/

:root{
  --brand-accent: #4caf50;
}


/* CTAボタン（2個並べたいとき） */
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.cta-row a{
  display: inline-block;
  background: var(--brand-accent);
  color: #000;
  font-weight: 700;
  padding: 0.8em 1.2em;
  border-radius: 6px;
}
.cta-row a.sub{
  background: #222;
  color: #fff;
  border: 1px solid #333;
}

/* 口コミ（短文） */
.quote{
  border-left: 3px solid var(--brand-accent);
  padding: 0.6rem 0.8rem;
  background: #0f0f0f;
  border-radius: 6px;
  margin: 0.8rem 0;
  color: #ddd;
}

/* 料金グループ見出し */
.price-group-title{
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b5e20;
  border-left: 4px solid #4caf50;
  padding: 0.3rem 0.7rem;
  margin: 1.8rem 0 0.8rem;
  background: #f1f8f1;
  border-radius: 0 6px 6px 0;
}
.price-group-title:first-child{
  margin-top: 0;
}

/* 料金ブロック（白基調） */
.price-box{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:1.2rem;
  margin-bottom:1rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* 見出しバッジ */
.price-box .badge{
  display:inline-block;
  background:#e8f5e9;
  color:#1b5e20;
  border:1px solid #a5d6a7;
  border-radius:999px;
  padding:0.25rem 0.7rem;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:0.7rem;
}

/* リスト */
.price-box ul{
  padding-left:0;
  margin:0;
}

.price-box li{
  list-style:none;
  border-bottom:1px solid #f1f1f1;
  padding:0.4rem 0;
  font-size:0.95rem;
  color:#333;
}

.price-box li:last-child{
  border-bottom:none;
}

.lineBox100 h3{
  font-size: 20px;
}
/* Googleカレンダー埋め込み */
.gcal-embed{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

.gcal-embed iframe{
  width:100%;
  height:700px;       /* スマホでも読める最低ライン */
  border:0;
}

@media (min-width:768px){
  .gcal-embed iframe{
    height:850px;
  }
}


/* フル幅写真ブロック（枠なし） */
.full-photo{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* コンテンツ幅制限を突破してフルブリード */
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

.full-photo img{
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 720px;
  object-fit:cover;
  display: block;
  border: 0;
  border-radius: 0;
}

/* 短い帯 */
.full-photo--short img{
  height: 50vh;
  min-height: 320px;
  max-height: 520px;
}

/* 写真上のテキスト */
.full-photo-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem 1rem;
  background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.15));
  color: #fff;
}

.full-photo-overlay--bottom{
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.75));
}

.full-photo-overlay .kicker{
  margin: 0 0 .3rem 0;
  font-weight: 800;
  color: #9f9;
  letter-spacing: .02em;
  font-size: 1.5rem;
}

.full-photo-overlay h1{
  margin: 0 0 .7rem 0;
  font-size: 1.8rem;
  line-height: 1.15;
  color: #f6f2f2;
}

.full-photo-overlay .lead{
  margin: 0 0 1rem 0;
  color: #f2f2f2;
  line-height: 1.8;
  max-width: 38rem;
}

.full-photo-overlay .band-title{
  margin: 0 0 .25rem 0;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}
.full-photo-overlay .band-sub{
  margin: 0;
  color: #eaeaea;
  font-size: 1rem;
  max-width: 44rem;
}

/* 文章カード（白基調で読みやすく） */
.about-card{
  background:#fff !important;
  border:1px solid #9f9 !important;
  border-radius:14px;
  color:#111;
  box-shadow:0 2px 10px rgba(0,0,0,0.20);
}

.about-h2{ color:#111; font-size:1.2rem; margin:0 0 .6rem 0; }
.about-text{ color:#333; line-height:1.9; margin:0 0 .8rem 0; }

/* 箇条書き */
.about-bullets{
  display:grid;
  grid-template-columns:1fr;
  gap:.7rem;
  margin-top:.8rem;
}
.bullet{
  border:1px solid #9f9;
  border-radius:12px;
  padding:.85rem;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.bullet-title{ margin:0 0 .2rem 0; font-weight:800; color:#000000; }
.bullet-desc{ margin:0; color:#333; line-height:1.8; }

/* フル幅ギャラリー（枠なし） */
.full-gallery{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.full-gallery a{ display:block; }
.full-gallery img{
  width:100%;
  height: 210px;
  object-fit: cover;
  display:block;
  border:0;
  border-radius:0;
}

/* レスポンシブ */
@media (min-width:768px){
  .full-photo-overlay{
    padding: 2.2rem 2rem;
  }
  .full-photo-overlay h1{ font-size: 2.4rem; }
  .about-bullets{ grid-template-columns:repeat(3,1fr); }
  .full-gallery{ grid-template-columns:repeat(4,1fr); }
  .full-gallery img{ height: 260px; }
}

.class-box{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:1rem;
  margin-bottom:1rem;
}
  
.class-box h3{
    display:inline-block;
    background:#e8f5e9;
    color:#1b5e20;
    border:1px solid #a5d6a7;
    border-radius:999px;
    padding:0.3rem 0.8rem;
    font-size:1rem;
    font-weight:600;
    margin-bottom:0.7rem;
}
  
.class-box p{
  line-height:1.8;
  color:#000000;   /* 本文は黒寄り */
}
  
.class-point{
  margin-top:0.5rem;
  font-weight:600;
  color:#1b5e20;   /* 対象はアクセント色 */
}

.class-box p{
  font-size:15px;
}

#classes .class-box p{
  color:#222 !important;
  line-height:1.9;
}
  
  
#classes .class-point{
  color:#1b5e20 !important;
  font-weight:600;
}

/* 設備ページ */
.facility-card{
  background:#fff !important;
  border:1px solid #9f9 !important;
  border-radius:14px;
  color:#111;
  box-shadow:0 2px 10px rgba(0,0,0,0.20);
}

.facility-lead{
  color:#000000 !important;
  line-height:1.9;
  font-size:1rem !important;
  font-weight: 200 !important;
  margin-bottom:1.2rem;
}

.facility-points{
  display:grid;
  grid-template-columns:1fr;
  gap:0.9rem;
  margin-bottom:1.5rem;
}

.facility-point{
  background:#fff;
  border:1px solid #9f9 !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.20);
  padding:1rem;
}

.facility-point h2{
  font-size:1.05rem;
  margin:0 0 0.5rem 0;
  color:#111;
}

.facility-point p{
  color:#000000 !important;
  line-height:2;
  margin:0;
}

/* メイン写真を大きく */
.facility-main-photo{
  margin:1.5rem 0 1rem;
}

.facility-main-photo img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
  border-radius:14px;
}

/* サブ説明 */
.facility-sublead{
  color:#000000 !important;
  line-height:1.8;
  margin:0 0 1rem 0;
}

/* ギャラリーを大きめに */
.facility-gallery-lg{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0.8rem;
}

.facility-gallery-lg img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  transition: transform 0.3s ease;
}

.facility-figure{
  margin:0;
}

.facility-figure a{
  display:block;
  border-radius:12px;
  overflow:hidden;
}

.facility-figure a:hover img{
  transform: scale(1.04);
}

.facility-figure figcaption{
  margin-top:0.5rem;
  font-size:0.85rem;
  line-height:1.65;
  color:#555;
}

.facility-note{
  margin-top:1.2rem;
}

.facility-note p{
  color:#000000 !important;
  line-height:1.8;
}

.facility-cta{
  margin-top:1rem;
}

/* PC */
@media (min-width:768px){
  .facility-points{
    grid-template-columns:repeat(3,1fr);
  }

  .facility-main-photo img{
    height:520px;
  }

  .facility-gallery-lg{
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
  }

  .facility-gallery-lg img{
    height:260px;
  }
}

/* 選ばれる理由ページ */
.features-card{
  background:#fff !important;
  border:1px solid #e5e7eb !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.features-lead{
  color:#222;
  line-height:1.9;
  font-size:1rem;
  margin-bottom:1.4rem;
}

.features-grid-lg{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}

.feature-box{
  background:#fff;
  border:1px solid #9f9 !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.20);
  padding:1rem;
}

.feature-box h2{
  margin:0 0 0.5rem 0;
  font-size:1.05rem;
  color:#111;
}

.feature-box p{
  margin:0;
  color:#333;
  line-height:1.8;
}

.features-subtitle{
  margin:0 0 0.8rem 0;
  font-size:1.1rem;
  color:#4caf50;
}

.features-voice{
  margin-top:3rem;
}

.voice-box{
  border-left:4px solid #4caf50;
  background:#fafafa;
  padding:0.9rem 1rem;
  margin-bottom:0.8rem;
  border-radius:0 10px 10px 0;
}

.voice-text{
  margin:0 0 0.35rem 0;
  color:#222;
  line-height:1.8;
}

.voice-name{
  margin:0;
  color:#666;
  font-size:0.9rem;
}

.features-summary{
  margin-top:1.5rem;
}

.features-list{
  margin:0;
  padding-left:1.2rem;
}

.features-list li{
  color:#222;
  line-height:1.9;
  margin-bottom:0.35rem;
}

.features-cta{
  margin-top:1.6rem;
  padding-top:1rem;
  border-top:1px solid #eee;
}

.features-cta p{
  color:#222;
  line-height:1.8;
}

@media (min-width:768px){
  .features-grid-lg{
    grid-template-columns:repeat(2,1fr);
  }
}

/* インストラクターページ */
.instructor-wrap{
  background:#fff !important;
  border:1px solid #e5e7eb !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.instructor-lead{
  color: #000 !important;
  line-height:1.9;
  font-size:1rem;
  margin-bottom:1.4rem;
}

#instructor .trainer{
  background:#fff;
  border:1px solid #9f9 !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.20);
  padding:1rem;
  margin-bottom:1.2rem;
}

#instructor .trainer-name{
  margin:0 0 0.3rem 0;
  font-size: 1.7rem !important;;
  color:#111;
  line-height:1.7;
}

.trainer-sub{
  font-size:1.2rem !important;
  color:#666;
  font-weight:400;
  /* スマホで "Tomoyuki / Yokota" が分断されるのを防ぐ */
  display:inline-block;
  white-space:nowrap;
}

@media (max-width:420px){
  .trainer-sub{ font-size:1rem !important; }
}

.trainer-catch{
  margin:0 0 0.9rem 0;
  color:#000000 !important;
  font-weight:700;
  font-size:1rem;
}

#instructor .trainer img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
  margin:0 0 1rem 0;
  background:#f5f5f5;
}

.trainer-text{
  color:#222 !important;
  line-height:1.9;
  margin:0 0 0.9rem 0;
}

#instructor .career{
  margin:0.6rem 0 0 0;
  padding-left:1.1rem;
}

#instructor .career li{
  color:#333 !important;
  line-height:1.8;
  margin-bottom:0.35rem;
  list-style:disc;
}

.instructor-cta{
  margin-top:1.5rem;
  padding-top:1rem;
  border-top:1px solid #eee;
}

.instructor-cta p{
  color: #000 !important;;
  line-height:1.8;
}

@media (min-width:768px){
  #instructor .trainer{
    padding:1.5rem;
  }

  #instructor .trainer img{
    height:420px;
  }

  #instructor .trainer-name{
    font-size:1.4rem;
  }
}

/* FAQページ */
.faq-card-wrap{
  background:#fff !important;
  border:1px solid #e5e7eb !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.faq-lead{
  color:#000000 !important;
  line-height:1.9;
  font-size:1rem;
  margin-bottom:1.5rem;
}

.faq-item-box{
  background:#fff;
  border:1px solid #eef0f2;
  border-radius:12px;
  padding:1rem;
  margin-bottom:0.9rem;
}

#faq .faq-q{
  margin:0 0 0.5rem 0;
  font-size:0.95rem;
  color:#4caf50!important;
  line-height:1.6;
}

#faq .faq-a{
  margin:0;
  color:#222 !important;
  line-height:1.9;
  font-size:0.96rem;
}

.faq-cta{
  margin-top:1.4rem;
  padding-top:1rem;
  border-top:1px solid #eee;
}

.faq-cta p{
  color:#000000 !important;
  line-height:1.8;
}

@media (min-width:768px){
  .faq-item-box{
    padding:1.2rem 1.3rem;
  }

  #faq .faq-q{
    font-size:1.08rem;
  }

  #faq .faq-a{
    font-size:1rem;
  }
}

/* スマホ固定バーの文言を少し詰める */
.sidebsh a{ font-size: 0.75rem; }

/* =========================
   TOP HERO - current structure only
========================= */
.hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 78svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.28) 35%,
    rgba(0,0,0,0.42) 100%
  );
  display: flex;
  align-items: flex-end;
}

.hero-content{
  width: 100%;
  max-width: 520px;
  margin: 0 6%;
  padding-bottom: 96px; /* 下部固定バーに被らない最低限 */
  color: #fff;
}

.hero-area{
  margin: 0 0 0.45rem 0;
  font-size: 1.3rem !important;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
}

.hero .hero-title{
  margin: 0 0 0.7rem 0;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff !important;
}

.hero-sub{
  margin: 0 0 1rem 0;
  font-size: 1.2rem !important;
  line-height: 1.7;
  color: rgba(255,255,255,0.96) !important;
}

.hero-buttons{
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0 0 0.85rem 0;
}

.hero-btn-main,
.hero-btn-sub{
  display: block;
  width: 50%;
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.hero-btn-main{
  background: #39c21f;
  color: #fff;
}

.hero-btn-sub{
  background: rgba(255,255,255,0.94);
  color: #111;
}

.hero-note{
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

/* SPをさらに詰める */
@media (max-width: 768px){
  .hero{
    height: 74svh;
    min-height: 520px;
  }

  .hero-bg{
    object-position: center top;
  }

  .hero-content{
    max-width: none;
    margin: 0 5.5%;
    padding-bottom: 88px;
  }

  .hero .hero-title{
    font-size: 2rem;
  }

  .hero-sub{
    font-size: 0.98rem;
  }
}

/* PC */
@media (min-width: 769px){
  .hero{
    height: 88vh;
    min-height: 720px;
  }

  .hero-overlay{
    align-items: center;
  }

  .hero-content{
    max-width: 620px;
    margin: 0 8%;
    padding-bottom: 0;
  }

  .hero .hero-title{
    font-size: 3.4rem;
  }

  .hero-sub{
    font-size: 1.1rem;
  }

  .hero-buttons{
    flex-direction: row;
  }

  .hero-btn-main,
  .hero-btn-sub{
    width: auto;
    min-width: 190px;
  }
}



.top-intro-box,
.top-reasons .lineBox100,
.top-price-summary .lineBox100,
.top-links .lineBox100,
.top-cta-final .lineBox100{
  background:#fff !important;
  border:1px solid #e5e7eb !important;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.top-fit-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}

.top-fit-item{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:2rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.top-fit-item h3{
  margin:0 0 0.4rem 0;
  color: var(--brand-accent);
  font-size:1.2rem !important;
}

.top-fit-item p{
  margin:0;
  color:#222 !important;
  line-height:1.8;
}

.top-price-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}

.top-links-list{
  display:grid;
  grid-template-columns:1fr;
  gap:0.6rem;
  padding:0;
  margin:0;
}

.top-links-list li{
  list-style:none;
}

.top-links-list a{
  display:block;
  padding:0.85rem 1rem;
  background:#fff;
  border:1px solid #d8d9da;
  border-radius:12px;
  color:#111;
  font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.top-links-list a:hover{
  border-color:#4caf50;
  color:#1b5e20;
}

.top-link-more{
  margin-top:1rem;
}

.top-link-more a{
  font-weight:700;
  color:#1b5e20;
}

.top-cta-final p{
  color:#222;
  line-height:1.8;
}

@media (min-width:768px){
  .top-fit-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .top-price-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .top-links-list{
    grid-template-columns:repeat(2,1fr);
  }
}
/* 3つの強みカード */
.feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}
.feature{
  background: #ffffff;
  border:1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.feature h3{
  color: var(--brand-accent);
  font-size: 1rem;
  margin: 0 0 0.4rem 0;
}
.feature p{ margin: 0; }

@media(min-width: 768px){
  .feature-grid{ grid-template-columns: repeat(3, 1fr); }
}

#campaign .lineBox100 {
  max-width: 960px;
  margin: 0 auto;
}

.campaign-lead {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.campaign-insta-wrap {
  margin: 24px auto;
  width: 100%;
  max-width: 960px;
}

.campaign-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.campaign-btn:hover {
  opacity: 0.85;
}

.campaign-cta-top,
.campaign-cta-bottom {
  text-align: center;
  margin: 20px 0 28px;
}

.campaign-note {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

/* Instagram 導線カード */
.campaign-insta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 26px 20px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.campaign-insta-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.campaign-insta-card .bi-instagram {
  font-size: 2rem;
  color: #c13584;
}

.campaign-insta-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #222;
}

.campaign-insta-desc {
  font-size: 0.9rem;
  color: #555;
}

/* いつでも使える特典 */
.campaign-current {
  max-width: 960px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  background: #fff;
}

.campaign-current-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}

.campaign-current-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.campaign-current-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e3e3e3;
}

.campaign-current-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cc-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #111;
  border-radius: 999px;
  padding: 4px 12px;
  text-align: center;
}

.cc-val {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .campaign-lead {
    font-size: 0.95rem;
    text-align: left;
  }

  .campaign-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .campaign-insta-wrap {
    margin: 20px auto;
  }

  .campaign-current {
    padding: 18px 16px;
  }

  .campaign-current-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cc-label {
    justify-self: start;
  }
}
/* ==============================================
   共通CTAブロック（全ページ下部）
   補助金説明：比較検討情報の整理 ＆ 予約導線の最適化
   data-cta / data-page でGA4/GTM計測対応
============================================== */
.common-cta-block {
  background: #f8fdf8;
}
.ccb-inner {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.ccb-heading {
  text-align: center;
  font-size: 1.25rem;
  margin: 0 0 1.2rem;
  color: #111;
}
.ccb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.ccb-item {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}
.ccb-label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.ccb-val {
  display: block;
  font-size: 0.93rem;
  color: #111;
  font-weight: 700;
  line-height: 1.5;
}
.ccb-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.ccb-btn-main {
  display: block;
  text-align: center;
  background: #39c21f;
  color: #fff !important;
  font-weight: 700;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05rem;
}
.ccb-btn-sub {
  display: block;
  text-align: center;
  background: #222;
  color: #fff !important;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
}
.ccb-note {
  text-align: center;
  color: #666;
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .ccb-grid { grid-template-columns: repeat(4, 1fr); }
  .ccb-cta {
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 0.8rem;
  }
  .ccb-btn-main, .ccb-btn-sub { flex: 1; }
}

/* ==============================================
   ターゲット別ページ共通
   補助金説明：対象者別の訴求強化 ＆ 地域検索流入の受け皿整備
============================================== */
.target-page-hero {
  background: #f1f8f1;
  border-radius: 14px;
  padding: 1.8rem 1.2rem 1.5rem;
  margin-bottom: 0;
}
.target-kicker {
  display: inline-block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.target-h1 {
  font-size: 1.65rem;
  line-height: 1.25;
  color: #111;
  margin: 0 0 0.7rem;
}
.target-lead {
  color: #333;
  line-height: 1.9;
  margin: 0 0 1.1rem;
  font-size: 0.97rem;
}
.target-cta-top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* =========================================================
   カード内の写真（女性・キッズ・体験の流れ等の下層ページ用）
   about.html のフルブリード写真とは別系統。
   section-card / target-page-hero の内側に収まる版。
========================================================= */
.target-hero-photo {
  margin: 0 0 1.1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}

.target-hero-photo img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 0;
}

/* カード内ギャラリー */
.card-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 1rem;
}

.card-gallery a,
.card-gallery figure {
  display: block;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

.card-gallery img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 0;
  transition: transform 0.3s ease;
}

.card-gallery a:hover img {
  transform: scale(1.04);
}

/* 帯写真（カード内・横長1枚） */
.card-band {
  position: relative;
  margin: 1rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.card-band img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 0;
}

/* 縦長写真を横長の帯に入れると中央クロップで顔が切れるため、上寄せにする。
   全体は lightbox で見られるので、帯では人物の顔が入っていればよい。 */
.card-band img.is-portrait { object-position: center 20%; }

/* 縦長写真の被写体が上寄りのとき、中央クロップだと顔が切れる。
   高さ固定 + object-fit:cover の枠すべてで使えるようにしておく。
   -top は顔が画像のごく上部にある場合。 */
.card-gallery img.is-portrait,
.card-band img.is-portrait,
.target-hero-photo img.is-portrait { object-position: center 20%; }

.card-gallery img.is-portrait-top,
.card-band img.is-portrait-top,
.target-hero-photo img.is-portrait-top,
.reason img.is-portrait-top,
.mind-card img.is-portrait-top { object-position: center top; }

.card-band-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

/* =========================================================
   週間クラススケジュール（schedule.html）
========================================================= */
.timetable-title {
  margin: 1.8rem 0 0.9rem;
  font-size: 1.15rem;
  color: #111;
  border-left: 4px solid #39c21f;
  padding-left: 0.6rem;
  line-height: 1.4;
}

.timetable {
  display: grid;
  gap: 12px;
}

.timetable-day {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.timetable-wd {
  margin: 0;
  padding: 0.5rem 0.9rem;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timetable-day--sat .timetable-wd { background: #1565c0; }
.timetable-day--sun .timetable-wd { background: #b71c1c; }

/* 今日 */
.timetable-day--today {
  border-color: #39c21f;
  box-shadow: 0 0 0 2px rgba(57, 194, 31, 0.25);
}

.tt-today {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 1px 8px;
  border-radius: 999px;
  background: #39c21f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.timetable-empty {
  margin: 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: #888;
}

.timetable-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.9rem 0.7rem;
}

.timetable-list li {
  display: grid;
  grid-template-columns: 7.6rem 1fr;
  gap: 0.6rem;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #ececec;
}

.timetable-list li:last-child { border-bottom: none; }

.tt-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tt-name {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.5;
}

.tt-trainer {
  /* 時間・クラス名の2カラムのうち、クラス名側にぶら下げる */
  grid-column: 2;
  justify-self: start;
  margin-top: 0.15rem;
  padding: 1px 8px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #f7f7f7;
  color: #555;
  font-size: 0.75rem;
  line-height: 1.6;
  white-space: nowrap;
}

.timetable-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
}

/* 臨時変更用のカレンダー（既定は畳んでおく） */
.gcal-details {
  margin-top: 1.4rem;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.gcal-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gcal-details > summary::-webkit-details-marker { display: none; }

.gcal-details > summary::before {
  content: "▸";
  color: #39c21f;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.gcal-details[open] > summary::before { content: "▾"; }

.gcal-details > summary:hover { background: #f6f6f6; }

.gcal-details .gcal-embed {
  padding: 0 0.6rem 0.8rem;
}

@media (min-width: 700px) {
  .timetable { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .timetable { grid-template-columns: repeat(4, 1fr); }
  .timetable-list li { grid-template-columns: 1fr; gap: 0.1rem; }
  .tt-trainer { grid-column: 1; }
}

/* =========================================================
   アクセスページ（Googleマップ導線・目印）
========================================================= */
.gbp-links {
  display: grid;
  gap: 10px;
  margin: 1.2rem 0 0;
}

.gbp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 13px 20px;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #fff;
  color: #222 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gbp-btn:hover {
  background: #f2f2f2;
  border-color: #999;
}

.gbp-btn--main {
  background: #111;
  border-color: #111;
  color: #fff !important;
}

.gbp-btn--main:hover {
  background: #333;
  border-color: #333;
}

/* クラス紹介 → スケジュールへの導線 */
.class-schedule-link {
  margin-top: 1.4rem;
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.class-schedule-link h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #111;
}

.class-schedule-link p {
  margin: 0 0 1rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #444;
}

.class-schedule-link .gbp-btn {
  display: inline-flex;
  max-width: 320px;
  margin: 0 auto;
}

.access-ways-title {
  /* .access-ways は grid なので、見出しは全幅を占有させる */
  grid-column: 1 / -1;
  margin: 1.8rem 0 0.9rem;
  font-size: 1.15rem;
  color: #111;
  border-left: 4px solid #39c21f;
  padding-left: 0.6rem;
  line-height: 1.4;
}

.access-ways {
  display: grid;
  gap: 12px;
}

.access-way {
  padding: 1rem 1.1rem;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
}

.access-way h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #111;
}

.access-way h3 i { color: #39c21f; }

.access-way p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: #333;
}

.access-visit p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

@media (min-width: 768px) {
  .access-ways { grid-template-columns: repeat(3, 1fr); }
}

.access-landmark {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e3e3e3;
  border-left: 4px solid #39c21f;
  border-radius: 10px;
  background: #fff;
}

.access-landmark h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #111;
}

.access-landmark p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.access-landmark p:last-child { margin-bottom: 0; }

.access-landmark-note {
  font-size: 0.87rem !important;
  color: #666 !important;
}

@media (min-width: 768px) {
  .gbp-links { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   お問い合わせページ
========================================================= */
.contact-qr {
  margin: 1.4rem 0;
  text-align: center;
}

.contact-qr img {
  display: block;
  margin: 0 auto;   /* common.css の img{display:block} に合わせて中央寄せ */
  width: 180px;
  height: 180px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.contact-qr-note {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: #666;
}

.contact-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ddd;
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #111;
  border-radius: 999px;
  padding: 4px 12px;
  text-align: center;
}

.contact-val {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
}

.contact-sub {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

.contact-closing {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 600px) {
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-label { justify-self: start; }
}

/* 画像の説明文 */
.photo-caption {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .target-hero-photo img { height: 380px; }
  .card-gallery { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .card-gallery img { height: 190px; }
  .card-band img { height: 300px; }
  .card-band-caption { font-size: 1.05rem; padding: 2rem 1.4rem 1.1rem; }
}
.btn-trial-main {
  display: block;
  text-align: center;
  background: #39c21f;
  color: #fff !important;
  font-weight: 700;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
}
.btn-line-sub {
  display: block;
  text-align: center;
  background: #222;
  color: #fff !important;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.93rem;
}
@media (min-width: 768px) {
  .target-h1 { font-size: 2.1rem; }
  .target-cta-top {
    flex-direction: row;
    max-width: 460px;
  }
  .btn-trial-main, .btn-line-sub { flex: 1; }
}

/* 悩み共感ボックス */
.worry-box {
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
}
.worry-box h3 {
  margin: 0 0 0.45rem;
  font-size: 0.97rem;
  color: #e65100;
}
.worry-box p {
  margin: 0;
  color: #333;
  line-height: 1.8;
  font-size: 0.93rem;
}

/* メリット一覧 */
.merit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 0.5rem 0 1.2rem;
}
.merit-item {
  background: #fff;
  border: 1px solid #9f9;
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.merit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-right: 0.4rem;
  vertical-align: middle;
  flex-shrink: 0;
}
.merit-item h3 {
  display: inline;
  font-size: 0.98rem;
  color: #1b5e20;
  vertical-align: middle;
}
.merit-item p {
  margin: 0.4rem 0 0;
  color: #333;
  line-height: 1.8;
  font-size: 0.93rem;
}
@media (min-width: 768px) {
  .merit-list { grid-template-columns: repeat(2, 1fr); }
}

/* 不安解消ボックス */
.anxiety-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.75rem;
}
.anxiety-box h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #1b5e20;
}
.anxiety-box p {
  margin: 0;
  color: #333;
  line-height: 1.8;
  font-size: 0.93rem;
}

/* 体験の流れ ステップ */
.flow-steps {
  counter-reset: flow-step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0.5rem 0 1.2rem;
}
.flow-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3.6rem;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.flow-step::before {
  counter-increment: flow-step;
  content: counter(flow-step);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  background: #4caf50;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.flow-step h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #111;
}
.flow-step p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.93rem;
}

/* おすすめクラスタグ */
.rec-class-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.2rem 0.2rem 0.2rem 0;
}

/* セクションカード共通 */
.section-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section-card + .section-card {
  margin-top: 1.2rem;
}

/* 価格ハイライト */
.price-highlight {
  background: #f1f8f1;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0 0.8rem;
}
.price-highlight p {
  margin: 0;
  color: #1b5e20 !important;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   スケジュール: スマホでは8日目以降を畳む
   14日ぶんを1列で並べると画面10個ぶん以上になるため
---------------------------------------------------------- */
.timetable-more {
  display: none;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}

.timetable-more:hover { background: #f4f4f4; }

@media (max-width: 699px) {
  .timetable:not(.is-expanded) .timetable-day--later { display: none; }
  .timetable-more { display: block; }
  .timetable.is-expanded + .timetable-more { display: none; }
}

/* ==========================================================
   トップページ 抑揚設計（2026-08-26）
   強→静→強→静→強 のリズムを、背景色・文字サイズ・余白・
   レイアウトの4点で作る。白カードの連続を避けること。
========================================================== */

/* --- ファーストビューに専門性を1行 --- */
.hero-proof {
  margin: 0.9rem 0 0;
  padding: 0.45rem 0.9rem;
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2a1f;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ==========================
   強：心の声（3枚とも別レイアウト）
========================== */
.top-mind { padding: 3rem 0 1rem; }

.mind-card { margin: 0 0 2.2rem; }

.mind-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #16241a;
}

.mind-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.85;
  color: #40483f;
}

/* 1枚目：写真を大きく上に置く */
.mind-photo img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 14px;
}
.mind-photo .mind-body { padding: 1.1rem 0.2rem 0; }

/* 2枚目：写真を使わず、文字を大きくして色面で見せる */
.mind-quiet {
  padding: 2.2rem 1.3rem;
  border-radius: 14px;
  background: #14261c;
}
.mind-quiet h3 { color: #fff; font-size: 1.6rem; }
.mind-quiet p { color: rgba(255, 255, 255, 0.82); }

/* 3枚目：横組み。1・2枚目と視線の流れを変える */
.mind-split {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 1rem;
  align-items: center;
}
.mind-split img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}
.mind-split h3 { font-size: 1.2rem; }
.mind-split p { font-size: 0.9rem; line-height: 1.7; }

/* ==========================
   静：余白で語る。文章は詰め込まない
========================== */
.top-calm {
  margin: 1rem 0 0;
  padding: 4.5rem 0 4rem;
  background: #f5f7f5;
}

.calm-title {
  margin: 0 0 1.8rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #16241a;
}

.calm-lead {
  margin: 0 0 2.6rem;
  font-size: 0.97rem;
  line-height: 2.1;
  color: #44503f;
}

.calm-photo { margin: 0; }
.calm-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 14px;
}
.calm-photo figcaption {
  margin: 0.8rem 0 0;
  font-size: 0.83rem;
  line-height: 1.7;
  color: #6b756a;
}

/* ==========================
   中：番号を主役に。項目ごとに見た目を変える
========================== */
.reason-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.reason {
  position: relative;
  margin: 0 0 1.6rem;
  padding: 1.4rem 1.2rem 1.3rem;
  border-radius: 14px;
}

.reason-num {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #39c21f;
  opacity: 0.55;
}

.reason h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  color: #16241a;
}

.reason p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #44503f;
}

.reason img {
  display: block;
  width: 100%;
  height: 170px;
  margin: 1rem 0 0;
  object-fit: cover;
  border-radius: 10px;
}

/* 01・03：写真あり。薄い枠で軽く */
.reason-photo { background: #fff; border: 1px solid #e6ebe5; }

/* 02：写真なし。塗りで抜く */
.reason-plain { background: #eef4ec; padding-bottom: 1.5rem; }
.reason-plain .reason-num { opacity: 1; color: #2ea617; }

/* 04：人物。色を反転させて締める */
.reason-pro { background: #14261c; }
.reason-pro h3 { color: #fff; }
.reason-pro p { color: rgba(255, 255, 255, 0.8); }
.reason-pro .reason-num { color: #63d94a; opacity: 0.9; }
.reason-pro img { height: 210px; }

/* ==========================
   強：全幅の「間」。文字だけ。CTAは置かない
========================== */
.top-statement {
  margin: 2.4rem 0 0;
  padding: 4.2rem 1.4rem;
  background: #14261c;
  text-align: center;
}

.statement-main {
  margin: 0 0 1.8rem;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
}

.statement-sub {
  margin: 0 0 1.8rem;
  font-size: 1rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.78);
}

.statement-close {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #63d94a;
}

/* ==========================
   静：メインから枝分かれさせる
========================== */
.top-targets { padding: 3.4rem 0; background: #f5f7f5; }

.targets-lead {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #44503f;
}

.target-main {
  display: block;
  margin: 0 0 1rem;
  padding: 1.3rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #39c21f;
  text-decoration: none;
}
.target-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d7a10;
}
.target-desc {
  display: block;
  margin: 0.3rem 0 0;
  font-size: 0.87rem;
  color: #5a6358;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
}
.target-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.7rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dfe6dd;
  color: #24301f;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.target-grid a:last-child { grid-column: 1 / -1; }

.target-sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.target-sublinks a {
  font-size: 0.87rem;
  color: #3f6b37;
  text-decoration: underline;
}

/* ==========================
   中：Googleクチコミ（実データのみ）
========================== */
.top-reviews { padding: 3.4rem 0 3rem; }

.review-score { margin: 1.4rem 0 1.8rem; text-align: center; }
.score-num {
  margin: 0;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: #16241a;
  letter-spacing: -0.02em;
}
.score-num span {
  margin-left: 0.35rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: #8a927f;
}
.score-meta {
  margin: 0.6rem 0 0;
  font-size: 0.84rem;
  color: #6b756a;
}

.review-quote {
  margin: 0 0 0.9rem;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid #39c21f;
  border-radius: 0 10px 10px 0;
  background: #f5f7f5;
  font-size: 0.93rem;
  line-height: 1.85;
  color: #35402f;
}

.review-source { margin: 1.2rem 0 0; text-align: center; }
.review-source a { font-size: 0.88rem; color: #3f6b37; }

/* ==========================
   強：ページ内で唯一の強いCTA
========================== */
.top-trial {
  padding: 3.6rem 0 3.4rem;
  background: #eef4ec;
}

.trial-title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #16241a;
}

.trial-lead {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #44503f;
}

.trial-price {
  margin: 0 0 1.4rem;
  padding: 1.4rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}
.trial-cond {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d7a10;
}
.trial-free {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #16241a;
  line-height: 1.5;
}
.trial-free s { color: #9aa295; font-weight: 400; margin-right: 0.2rem; }
.trial-free strong {
  font-size: 2.5rem;
  color: #1d7a10;
  letter-spacing: -0.02em;
  margin-left: 0.15rem;
}
.trial-normal {
  margin: 0.7rem 0 0;
  font-size: 0.84rem;
  color: #6b756a;
}

.trial-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: #39c21f;
  color: #fff !important;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(45, 150, 25, 0.28);
}
.trial-cta:hover { background: #2ea617; }

.trial-note {
  margin: 0.7rem 0 1.8rem;
  font-size: 0.82rem;
  text-align: center;
  color: #6b756a;
}

.trial-info { margin: 0; font-size: 0.87rem; }
.trial-info > div {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-top: 1px solid #dfe6dd;
}
.trial-info dt { margin: 0; font-weight: 700; color: #4b5548; }
.trial-info dd { margin: 0; color: #44503f; line-height: 1.7; }

/* ==========================
   PC
========================== */
@media (min-width: 768px) {
  .hero-proof { font-size: 0.9rem; padding: 0.5rem 1.1rem; }

  .top-mind { padding: 4.5rem 0 2rem; }
  .mind-card { margin-bottom: 3rem; }
  .mind-card h3 { font-size: 1.9rem; }
  .mind-card p { font-size: 1.02rem; }
  .mind-photo img { height: 340px; }
  .mind-quiet { padding: 3.4rem 2.6rem; }
  .mind-quiet h3 { font-size: 2.1rem; }
  .mind-split { grid-template-columns: 40% 1fr; gap: 2rem; }
  .mind-split img { height: 240px; }
  .mind-split h3 { font-size: 1.6rem; }
  .mind-split p { font-size: 0.98rem; }

  .top-calm { padding: 7rem 0 6rem; }
  .calm-title { font-size: 2.4rem; }
  .calm-lead { font-size: 1.05rem; margin-bottom: 3.4rem; }
  .calm-photo img { height: 380px; }

  .reason { padding: 2rem 2rem 1.8rem; }
  .reason-num { font-size: 3.2rem; }
  .reason h3 { font-size: 1.4rem; }
  .reason p { font-size: 1rem; }
  .reason-photo, .reason-pro {
    display: grid;
    grid-template-columns: 1fr 40%;
    grid-template-rows: auto auto;
    column-gap: 2rem;
    row-gap: 0.35rem;      /* 番号と見出しが離れて見えないよう行間は詰める */
    align-content: center; /* align-items:center だと行が伸びて番号が浮く */
    align-items: start;
  }
  .reason-photo .reason-num, .reason-pro .reason-num { grid-column: 1; }
  .reason-photo .reason-body, .reason-pro .reason-body { grid-column: 1; grid-row: 2; }
  .reason-photo img, .reason-pro img {
    grid-column: 2; grid-row: 1 / span 2; height: 240px; margin: 0;
  }
  .reason-rev .reason-num, .reason-rev .reason-body { grid-column: 2; }
  .reason-rev img { grid-column: 1; }

  .top-statement { padding: 6.5rem 1.4rem; }
  .statement-main { font-size: 2.8rem; }
  .statement-sub { font-size: 1.1rem; line-height: 2.4; }
  .statement-close { font-size: 1.2rem; }

  .top-targets { padding: 5rem 0; }
  .target-grid { grid-template-columns: repeat(3, 1fr); }
  .target-grid a:last-child { grid-column: auto; }

  .score-num { font-size: 4.4rem; }
  .review-quote { font-size: 1rem; padding: 1.4rem 1.6rem; }

  .top-trial { padding: 5.5rem 0 5rem; }
  .trial-title { font-size: 2.5rem; }
  .trial-lead { font-size: 1.02rem; }
  .trial-free { font-size: 1.3rem; }
  .trial-free strong { font-size: 3.2rem; }
  .trial-cta { font-size: 1.15rem; max-width: 420px; margin: 0 auto; }
}

/* 固定フッターナビ(70px)の下にコンテンツが潜り込まないよう、その分の逃げを作る。
   PC では :root の --bottom-bar-height が 12px に上書きされるので自動的に縮む。 */
body { padding-bottom: calc(var(--bottom-bar-height, 70px) + 10px); }

/* --- ファーストビューの折り返し対策（スマホ実測で3行になっていた） --- */
@media (max-width: 767px) {
  /* 1.3rem では「板橋区 大山｜キックボクシングジム」が2行に折れる */
  .hero-area { font-size: 1.02rem !important; }

  /* width:50% のままだと長いCTA文言が3行に折れ、押しにくい。主CTAは幅いっぱいに */
  .hero-btn-main {
    width: 100%;
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .hero-btn-sub { width: 58%; }

  .hero-proof { font-size: 0.76rem; padding: 0.4rem 0.8rem; }
}

/* CTAの文言は行内で折らない */
.hero-btn-main, .trial-cta { white-space: nowrap; }
.trial-cta { font-size: 1.02rem; }
@media (min-width: 768px) { .trial-cta { font-size: 1.15rem; } }
