body {
  font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.7;
    color: #333;
}
h1, h2 {
  font-size: 40px;
  font-weight: 700;
}
p {
 font-weight: 400;
}
section {
  padding: 48px 20px;
}

/* ===== Header ===== */
.site-header{
  position: sticky;   /* 上に追従させたいなら sticky */
  top: 0;
  z-index: 9999;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffebb8;
 border-radius: 14px 14px 0 0;
 padding: 14px 14px 12px;
 box-shadow: 0 -10px 24px rgba(0,0,0,0.12);
}

.header-inner{
  max-width: none;
  width: 100%;
  padding: 14px 24px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.site-name{
  font-size: 70px;
  font-weight: 1000;
  letter-spacing: .04em;
  color: #1f7e8a;
}

.header-right{
  text-align: right;
  font-size: 18px;
  line-height: 1.35;
  color: #333;
}

.header-address{
  color: #333;
  font-size: 28px;
  font-weight: 700;
}

.header-tel{
  display: inline-block;
  margin-top: 2px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 28px;
}

/* スマホでは右側を少しコンパクトに */
@media (max-width: 768px){
  .header-inner{
    padding: 10px 14px;
  }
  .site-name{
    font-size: 18px;
  }
  .header-right{
    font-size: 12px;
  }
}

/*FV*/
.fv{
  width: 100%;
  height: 500px;
  background-image: url(images/FV.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* =========================
  挨拶：薄い青＋四角枠＋濃淡
========================= */
/* 写真（枠の外） */
.greeting-title{
font-size: 40px;
text-align: center;
margin-bottom: 40px;
}
.greeting-photo-out{
 max-width: 860px;
 margin: 0 auto 4px;
 text-align: center;
 font-size: 40px;
}
.greeting-photo-out img{
 width: 100%;
 max-width: 520px;      /* 好みで */
 height: auto;
 border-radius: 12px;
 display: block;
 margin: 0 auto;
}
/* 白い結論ボックス（写真の次） */
.greeting-highlight{
 max-width: 860px;
 margin: 0 auto 16px;
 padding: 16px 14px;
 background: #fff;
 border-radius: 12px;
 border: 2px solid #d9a300(46, 92, 140, .18);
 text-align: center;
 font-weight: 800;
 color:#333;
 line-height: 1.7;
 box-shadow: 0 8px 18px rgba(0,0,0,.08);
 font-size: 30px;
 margin-bottom: 40px;
}
/* 本文だけ青枠 */
.greeting-card{
 max-width: 860px;
 margin: 0 auto;
 padding: 22px 18px;
 background: #eaf4ff;
 border: 2px solid rgba(60, 152, 251, 0.979);
 border-radius: 14px;
 font-size: 25px;
}
/* 本文の見た目 */
.greeting-card p{
 margin: 0 0 14px;
 line-height: 1.95;
 color: #000000;
}

/* 「大げさに〜」の強調（白い下線） */
.greeting-mid{
 font-weight: 800;
 color: #ee362c;
 display: block;
 font-size: inherit;
 margin: 14px 0;
 line-height: 1.95;
}

/* 実績・受賞歴セクション */
.award-section {
 background: #f9f9e7;          /* 薄い青 */
 padding: 40px 20px;
 text-align: center;
 border-radius: 12px;
 margin: 40px auto;
 max-width: 800px;
}
/* タイトル */
.award-title {
 font-size: 40px;
 margin-bottom: 24px;
 font-weight: bold;
}
/* 画像を縦並び */
.award-images {
 display: flex;
 flex-direction: column;
 gap: 16px;
 align-items: center;
 margin-bottom: 24px;
}
.award-images img {
 width: 100%;
 max-width: 600px;
 border-radius: 8px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
/* 説明文 */
.award-text {
 font-size: 25px;
 line-height: 1.8;
 color: #333;
}
/* 強調 */
.award-text strong {
 color: #2f6fd6;
 font-weight: bold;
}

/* 対応症状 */
#symptoms {
 padding: 40px 20px;
 background: #ffffff;
}
.symptom-title{
font-size: 40px;
text-align: center;
}
.symptom-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
}
.symptom-box {
 background: #fff;
 border: 1.5px solid rgb(82, 137, 70);
 border-radius: 14px;
 padding: 25px;
 font-size: 25px;
}
.symptom-box h3 {
 margin-top: 0;
 margin-bottom: 14px;
 font-size: 30px;
 font-weight: 700;
 color: #ffffff;
 background: rgb(107, 184, 90);
 padding: 8px 12px;
 border-radius: 8px;
 text-align: center;
}
.symptom-note{
grid-column: 1 / -1;
margin-top: -10px;
  background: #f7f5ef;
border: 1px solid rgba(0,0,0,.08);
border-radius: 14px;
padding: 18px 20px;
font-size: 20px;
line-height: 1.9;
color: #333;
}

.symptom-note p{
margin: 0;
};


@media (max-width: 768px) {
 .symptom-grid {
   grid-template-columns: 1fr;
 }
}

/*  選ばれる理由 セクション*/
/* セクション全体 */
#reasons {
 max-width: 1000px;
 margin: 0 auto 80px;
 padding: 0 16px;
}
/* タイトル */
#reasons .section-title {
 margin-top: 50px;
 text-align: center;
 font-size: 40px;
 margin-bottom: 60px;
 color: #333;
}
/* 4つの枠を並べる */
.reason-grid {
 margin-top: 50px;
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
}
/* 四角い枠（← 既存のデザインを活かす） */
.reason-box {
 position: relative; /* ← バッジの基準になる */
 background: #ffffff;
 border: 2px solid #f0c98b;
 border-radius: 25px;
 padding: 24px 20px 20px;
 box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
/* 左上の 01 / 02 バッジ */
.reason-badge {
 position: absolute;
 top: -14px;
 left: -14px;
 background: #e4b536; 
 color: #ffffff;
 font-size: 35px;
 font-weight: 1000;
 padding: 10px 14px;
 border-radius: 12px;
 border: 2px solid #ffffff;
 box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* サブタイトル（h3） */
.reason-box h3 {
 text-align: center;
 margin: 0 0 10px;
 font-size: 32px;
 color: hsl(53, 66%, 41%); 
 font-weight: 700;
 position: relative;
 padding-bottom: 0;
 border-radius: 10px 10px 0 0;
}
/* 下に短いラインを入れる */
.reason-box h3::after{
content: "";
display: block;
width: calc(100% + 28px);
height: 2px;
background: #d2be28;
margin-top: 6px;
margin-left: -14px;
}
/* 本文 */
.reason-box p {
 margin: 0;
 font-size: 25px;
 line-height: 1.8;
 color: #333;
}
/* スマホ対応 */
@media (max-width: 768px) {
 .reason-grid {
   grid-template-columns: 1fr;
 }
 #reasons .section-title {
   font-size: 24px;
 }
}

/* お悩みありませんか？ */

#worries h2,
#worries .section-title {
 text-align: center;
 font-size: 45px;
 margin-top: 100px;
}

.chart {
  max-width: 880px;
  margin: 60px auto 0;
  background: #fff;
  border: 2px solid rgba(230, 182, 22, 0.897);
  border-radius: 25px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
  margin-bottom: 70px;
}

/* クリップっぽい装飾（不要なら消してOK） */
.chart::before{
  content:"";
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:28px;
  background:#ebd617;
  border:2px solid rgba(20, 60, 90, .18);
  border-radius: 999px;
}

/* ヘッダー帯（カルテ感） */
.chart-head{
  padding: 18px 20px;
  background: #f9f1a3;
  border-bottom: 2px solid #f7f426fd(78, 89, 132, 0.12);
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.chart-title{
  font-weight: 800;
  letter-spacing: .06em;
  color: #db4028;
  font-size: 28px;
}

.chart-sub{
  font-size: .95rem;
  color: rgba(24, 50, 74, .75);
}

/* 1行ずつ、カルテの罫線っぽく */
.chart-list li{
  display:flex;
  gap: 30px;
  align-items:flex-start;
  padding: 16px 18px;
  border-bottom: 2px dashed rgba(249, 199, 123, 0.955);
}

.chart-list li:last-child{ border-bottom:none; }
.chart-list p{
  margin:0;
  line-height:1.5;
  color:#1e2a35;
  font-weight:600;
  font-size: 28px;
}

/* ✔️ボックス */
.tick{
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius: 6px;
  border: 2px solid rgba(24, 50, 74, .35);
  background: #fff;
  position:relative;
  margin-top: 1px;
}

/* チェック（濃いめ医療系カラー） */
.tick::after{
  content:"";
  position:absolute;
  left: 10px;
  top: 7px;
  width: 9px;
  height: 16px;
  border-right: 4px solid #e82112;
  border-bottom: 4px solid #e82112;
  transform: rotate(45deg);
}

/* スマホでも綺麗に */
@media (max-width: 768px){
  .chart{ border-radius: 14px; }
  .chart-head{ flex-direction: column; align-items:flex-start; }
  .chart-list li{ padding: 35px 35px; }
}
 
/* ページ全体の地（背景） */
body{
 background:#fff;  
}
/* セクション共通 */
.section{
 padding:46px 0;
}
.section-inner{
 max-width: 900px;
 margin: 0 auto;
 padding: 0 18px;
}
/* セクションの背景パターン（交互でも、固定でもOK） */
/* 見出しを目立たせる（あなたのトーンに合わせて） */
.section-title{
 text-align:center;      /* 左揃えにしたければ left に */
 font-size:22px;
 margin: 0 0 18px;
 letter-spacing: .04em;
}
/* 既存カードの“白さ”を上げて、背景との差を出す（任意） */
.symptom-box, .reason-box{
 background:#fff;
 border-color: rgba(0,0,0,0.10);
}

/* ===== 神経整体とは（About） ===== */

#about-nerve .section-title{
  text-align: center;
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
}

/* セクション全体を額縁で囲う */
.section--frame .frame{
 max-width: 960px;
 margin: 0 auto;
 padding: 18px;                 /* 額縁の太さ */
 background: #c8b28a;           /* 外枠の色（ベージュ茶） */
 border-radius: 18px;
}
/* 枠の内側（紙） */
.section--frame .frame-inner{
 background: #fbf8f2;           /* 内側の薄グレー */
 border-radius: 6px;
 padding: 32px 26px;
}
/* ちょい高級感（任意） */
.section--frame .frame{
 box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.about-lead{
  max-width: 900px;
  margin: 0 auto 26px;
  font-size: 35px;
  line-height: 1.8;
  color: rgba(0,0,0,0.78);
  margin-bottom: 70px;
}

.about-lead strong{
  font-weight: 800;
  color: rgb(248, 88, 88);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.about-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto 18px;
}

.about-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 25px;
  padding: 16px 14px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  text-align: center;
  margin-bottom: 50px;
  max-width: 1500px;
}

.about-badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 1500px;
  font-weight: 1000;
  font-size: 30px;
  letter-spacing: .08em;
  color: #156d44;
  background: #dbf2dc;
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 20px;
  text-align: center;
}

.about-card h3{
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 40px;
}

.about-card p{
  margin: 0;
  font-size: 25px;
  line-height: 1.7;
  color: rgba(0,0,0,0.75);
}

.about-note{
  width: min(92%,1000px);
  margin: 18px auto 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f3f0e6;
  border: 6px solid #c8b28a;
  font-size: 35px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-note strong{
  font-weight: 800;
  color: rgb(248, 88, 88);
}

/* スマホ：3カード→縦積み */
@media (max-width: 768px){
  .about-cards{
    grid-template-columns: 1fr;
  }
  .about-card h3{
    font-size: 16px;
  }
  .about-lead{
    font-size: 16px;
  }
}

/*関連メディア*/

/* セクション全体 */
.media{
 padding: 40px 20px;
}
/* タイトルを中央揃え */
.media-title {
 font-size: 40px;
 margin-top: 50px;
 text-align: center;  
}
/* 動画を中央にまとめる */
.media-list{
 display: grid;
 gap: 18px;
 justify-items: center; /* 中央寄せ */
}
/* 動画サイズ（ここで大きさ決める） */
.yt-wrap{
 width: min(720px, 100%); /* ←最大720pxでスマホは100% */
 aspect-ratio: 16 / 9;
 border-radius: 14px;
 overflow: hidden;
 background: #000; /* 読み込み前の黒 */
}
/* iframeを枠いっぱいに */
.yt-wrap iframe{
 width: 100%;
 height: 100%;
 display: block;
}


/* ===== 固定CTA（オレンジ） ===== */
.cta-fixed{
 position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 width: 100%;
}
/* 固定した中身（オレンジの箱）を整える */
.cta-fixed{
 background: #ffebb8;     /* オレンジ */
 border-radius: 14px 14px 0 0;
 padding: 14px 14px 12px;
 box-shadow: 0 -10px 24px rgba(0,0,0,0.12);
}
/* タイトル */
.cta-fixed .cta-title{
 text-align: center;
 font-weight: 700;
 font-size: 30px;
 margin: 0 0 10px;
}
/* ボタン並び */
.cta-fixed .cta-buttons{
 display: flex;
 gap: 100px;
 justify-content: center;
}
/* ボタン共通 */
.cta-fixed .btn{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 max-width: 300px;
 padding: 12px 14px;
 border-radius: 999px;
 font-weight: 900;
 text-decoration: none;
 border: 2px solid rgba(0,0,0,0.12);
}
/* LINE */
.cta-fixed .btn-line{
 background: #19c15d;
 color: #fff;
 font-size: 25px;
}
/* Instagram */
.cta-fixed .btn-ig{
 background: #f77878;
 color: #fff;
 font-size: 25px;
}
/* ===== 固定CTAで下が隠れないように、本文に余白を足す ===== */
body{
 padding-bottom: 120px;  /* CTAの高さ分（必要なら増減） */
}

/* =========================

   予約〜来院までの流れ

========================= */

:root{
  --brand-blue: #165c8a;      /* くすみブルー（症例の見出しに近い） */
  --brand-beige: #dcc21a;     /* くすみベージュ（ヘッダー帯に近い） */
  --ink: rgba(0,0,0,.78);
  --ink-soft: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.08);
  --card: #ffffff;
  --bg-soft: rgb(253, 240, 177);
}

#flow{
  padding: 40px 20px;
}

#flow .section-title{
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
}

.flow-lead{
  text-align: center;
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.flow-wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.line-attention{
 color: #e0362c;
 font-weight: 700;
}

/* ステップカード */

.flow-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.flow-step{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px 16px;
  position: relative;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

.flow-step h3{
  margin: 10px 0 8px;
  font-size: 28px;
  color: var(--ink);
  text-align: center;
  letter-spacing: .02em;
}

.flow-step p{
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* 番号バッジ（「選ばれる理由」のバッジに寄せた色） */

.flow-badge{
  width: 70px;
  height: 70px;
  font-size: 40px;
  border-radius: 12px;
  background: var(--brand-beige);
  color: #ffffff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

/* スマホ：縦に並べる */

@media (max-width: 768px){
  .flow-wrap{
    padding: 16px 14px 18px;
  }
  .flow-steps{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-step{
    padding: 16px 14px 14px;
  }
  .flow-step h3{
    font-size: 17px;
  }
}
 
 