/* ===== sections.css ===== */

/* Features（3カラムカード） */
.section--features .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.section--features .card .badge{width:42px;height:42px}

/* Concerns（背景＋チップ） */
.section--concerns{position:relative;overflow:hidden}
.section--concerns::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),url('../images/bg-liaison01.jpg') center/cover no-repeat;z-index:-1;
}
.section--concerns .chips{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.section--concerns .chip{display:flex;gap:10px;align-items:center;background:#fff8e9;border:1px solid #f0e0bb;border-radius:12px;padding:12px 14px}
.section--concerns .chip .mark{display:grid;place-items:center;width:22px;height:22px;border-radius:999px;border:1px solid #e2b574;color:#b97a2f;font-weight:700}

/* Flow（4ステップ＋解説カード） */
.section--flow .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:32px}
.section--flow .step{background:#fff;border:1px solid #eadfcf;border-radius:14px;padding:20px;text-align:center}
.section--flow .num{width:28px;height:28px;margin:0 auto 8px;border-radius:999px;background:#b97a2f;color:#fff;font-weight:700;display:flex;align-items:center;justify-content:center}
.section--flow .ico{width:56px;height:56px;margin:0 auto 8px;border-radius:999px;background:#ffeec5;display:flex;align-items:center;justify-content:center}

/* Price（単一プラン） */
.section--price .price-card{max-width:420px;margin:0 auto;text-align:center}
.section--price .price{font-size:42px;color:#b97a2f;font-weight:800}
.section--price .list{list-style:none;text-align:left;display:inline-block;margin:14px 0 22px}
.section--price .list li{position:relative;padding-left:20px;margin:.3em 0}
.section--price .list li::before{content:"✔";position:absolute;left:0;color:#b97a2f}

/* Reviews（3カード） */
.section--reviews .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.section--reviews .rv{position:relative;background:#fff9ec;border:1px solid #eadfcf;border-radius:16px;box-shadow:var(--shadow);padding:18px}
.section--reviews .head{display:flex;gap:12px;align-items:center;margin-bottom:8px}
.section--reviews .avatar{width:56px;height:56px;border-radius:50%;border:1px solid #eadfcf;object-fit:cover;background:#fff}
.section--reviews .stars{color:var(--c-accent);letter-spacing:2px}

/* CTA（電話番号なし・DM誘導） */
.section--cta .cta-card{max-width:860px;margin:0 auto;background:#fff;border:1px solid #e9e3d9;border-radius:18px;box-shadow:0 12px 30px rgba(0,0,0,.08);padding:22px}
.section--cta .row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.section--cta .item{display:flex;gap:12px;align-items:center}
.section--cta .icon{width:56px;height:56px;border-radius:999px;background:#ffeec5;display:flex;align-items:center;justify-content:center}

/* Access */
.section--access .map{border:1px solid #eadfcf;border-radius:14px;overflow:hidden}

/* Therapist（中央寄せカード） */
.section--therapist .inner{max-width:760px;margin:0 auto}
.section--therapist .profile{display:flex;flex-wrap:wrap;gap:20px;align-items:center}
.section--therapist img{width:220px;border-radius:14px}

/* ============ 基本色（必要なら調整） ============ */
:root{
  --v3-ink:#2b2118;
  --v3-muted:#6f675f;
  --v3-earth:#7a6651;        /* ブラウン（ボタン主色） */
  --v3-accent:#e97a16;       /* 見出しのオレンジ */
  --v3-card:#ffffff;
  --v3-border:#e9dfd1;
  --v3-shadow:0 10px 30px rgba(0,0,0,.12);
  --v3-space:clamp(18px,2.6vw,32px);
  --v3-max:1200px;
}

/* コンテナ */
.v3-container{max-width:var(--v3-max);margin:0 auto;padding:0 var(--v3-space);}

/* ============ ヘッダー ============ */
.v3-header{
  position:sticky; top:0; z-index:1000;
  background:#fff; border-bottom:1px solid #eee;
}
.v3-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}
.v3-logo img{height:48px; display:block;margin-top:12px;}
.v3-logo a{display:inline-flex; align-items:center; gap:5px; text-decoration:none;}

.v3-nav ul{display:flex; gap:26px; list-style:none; margin:0; padding:0;}
.v3-nav a{
  color:#6a5a4a; text-decoration:none; font-weight:normal;
  padding:8px 0; border-bottom:2px solid transparent; transition:.2s ease;
}
.v3-nav a:hover{border-color:var(--v3-accent);}

.v3-nav__toggle{
  display:none; width:36px; height:32px; border:1px solid #e0d6c8; border-radius:8px;
  background:#fff; align-items:center; justify-content:center; gap:4px;
}
.v3-nav__toggle span{display:block; width:18px; height:2px; background:#6a5a4a;}
@media (max-width:900px){
  .v3-nav{position:absolute; inset:auto 0 0 0; top:64px; background:#fff; border-top:1px solid #eee;
          transform:translateY(-10px); opacity:0; visibility:hidden; pointer-events:none;
          transition:.25s ease; }
  .v3-nav ul{flex-direction:column; gap:0; padding:12px var(--v3-space);}
  .v3-nav li a{display:block; padding:12px 0;}
  .v3-nav--open{transform:none; opacity:1; visibility:visible; pointer-events:auto;}
  .v3-nav__toggle{display:inline-flex;}
}

/* ============ ヒーロー ============ */
/* =============================
   Hero V2 Section
   ============================= */
.hero-v2 {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* 背景レイヤー */
.hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.3)),
    url('../images/bg-mv.jpg'); /* ← 実際の背景画像に変更 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 全体レイアウト */
.hero-v2 .wrap.hero-body {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--space, 24px);
  display: grid;
  gap: 24px;
  justify-items: start;
}

/* 見出し */
.hero-v2 .hero-title {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: #fff;
}
.hero-v2 .hero-title span {
  color: #e97a16; /* オレンジアクセント */
}

/* 白いパネル */
.hero-v2 .hero-card {
  background: #fff;
  color: #2b2118;
  border: 1px solid #e9dfd1;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  max-width: 760px;
}
.hero-v2 .hero-card p {
  margin: 0 0 1em;
  line-height: 1.9;
}
.hero-v2 .hero-card .muted {
  color: #7b7269;
  font-size: 0.95em;
  margin-top: -6px;
}

/* ボタン配置 */
.hero-v2 .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #7a6651;
  color: #7a6651;
  background: #fff;
  transition: opacity 0.2s ease, transform 0.05s ease;
}
.hero-v2 .btn.primary {
  background: #7a6651;
  color: #fff;
  border-color: #7a6651;
}
.hero-v2 .btn:hover {
  opacity: 0.88;
}
.hero-v2 .btn:active {
  transform: translateY(1px);
}

/* 下部テキスト */
.hero-v2 .hero-contact {
  color: #efeae3;
  font-size: 0.95em;
  margin-top: 8px;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .hero-v2 .wrap.hero-body {
    padding: clamp(60px, 14vw, 120px) var(--space, 18px);
  }
  .hero-v2 .hero-card {
    padding: 18px;
  }
}
/* ===== お悩みセクション（liaison-concerns） ===== */
.liaison-concerns {
  position: relative;
  padding: 80px 0;
  color: #2b2118;
  text-align: center;
  overflow: hidden;
}

.liaison-concerns .lc-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    url('../images/bg-liaison01.jpg') center/cover no-repeat;
  z-index: -1;
}
.liaison-concerns .lc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.liaison-concerns .lc-title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 6px;
  color: #3b2e23;
}

.liaison-concerns .lc-sub {
  color: #7b7269;
  font-size: 16px;
  margin-bottom: 26px;
}

/* === チップ一覧 === */
.liaison-concerns .lc-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.liaison-concerns .lc-chip {
  background: #fff8e9;
  border: 1px solid #f0e0bb;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.liaison-concerns .lc-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #e2b574;
  color: #b97a2f;
  font-weight: 700;
  flex-shrink: 0;
}

/* === 最下部の安心メッセージ === */
.liaison-concerns .lc-reassure {
  background: #fff;
  border: 1px solid #e9dfd1;
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.liaison-concerns .lc-lead {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 4px;
}

.liaison-concerns .lc-note {
  color: #7b7269;
  font-size: 15px;
  margin: 0;
}

/* === レスポンシブ === */
@media (max-width: 900px) {
  .liaison-concerns .lc-chips {
    grid-template-columns: 1fr;
  }
}
/* ===== Features (lf-) ===== */
#features.lf-section{
  background:#fbf8f4;
  padding:clamp(56px,8vw,96px) 0;
  color:#2b2118;
}
.lf-wrap{max-width:1200px;margin:0 auto;padding:0 24px;text-align:center}
.lf-title{margin:0 0 6px;font-size:clamp(22px,3.4vw,30px);color:#3b2e23}
.lf-sub{margin:0 0 26px;color:#726a61}

.lf-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,2vw,28px);
}

.lf-card{
  background:#fff;
  border:1px solid #ebe2d6;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  overflow:hidden;
  display:grid;
  grid-template-rows:auto 1fr; /* 画像 + 本文で等高に */
  transition:box-shadow .2s ease, transform .2s ease;
}
.lf-card:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(0,0,0,.10)}

.lf-media{margin:0}
.lf-media img{
  display:block;
  width:95%;
  margin:.6rem auto 0.4rem;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid #ebe2d6;
}

.lf-body{padding:18px 18px 22px;text-align:left}
.lf-badge{
  display:inline-flex;align-items:center;justify-content:center;
  width:50px;height:50px;border-radius:999px;
  background:#fcf3cc;
  margin-bottom:10px;font-size:20px
}
.lf-badge img{ width:50%;}
.lf-card-title{margin:0 0 8px;font-size:clamp(16px,2vw,18px);font-weight:700}
.lf-text{margin:0;color:#726a61;line-height:1.9}

/* responsive */
@media (max-width: 980px){
  .lf-grid{grid-template-columns:1fr}
  .lf-media img{height:220px}
}
/* ===== 施術の流れ (lfn-) ===== */
.lfn-section {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0;
  background: #fff;
  color: #2b2118;
  overflow: hidden;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    url('../images/bg-liaison02.jpg') center/cover no-repeat;
  z-index: -1;
}

.lfn-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lfn-title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 6px;
  color: #3b2e23;
}

.lfn-sub {
  color: #726a61;
  margin-bottom: 36px;
  font-size: 16px;
}

/* ステップアイテム */
.lfn-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 40px);
  margin-bottom: 48px;
}

.lfn-step {
  background: transparent;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.lfn-icon {
  background: #fcf3cc;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.lfn-icon img{
  width: 50%;
}
.lfn-num {
  background: #c5802b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin:0 auto;
}
.lfn-num-bk {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #c5802b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.lfn-step-title {
  font-size: 16.5px;
  margin: 14px 0 6px;
  font-weight: 700;
}

.lfn-step p {
  font-size: 15px;
  color: #726a61;
  margin: 0;
  line-height: 1.8;
}

/* 下部カード */
.lfn-card {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 16px;
  padding: 22px 26px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.lfn-card h3 {
  color: #b45b09;
  font-size: 17px;
  margin-bottom: 10px;
}

.lfn-card p {
  color: #544c44;
  font-size: 15.5px;
  line-height: 1.9;
  margin: 0;
}


/* responsive */
@media (max-width: 960px) {
  .lfn-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .lfn-steps {
    grid-template-columns: 1fr;
  }
}
/* ===== 料金セクション (lp-) ===== */
.lp-section {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  color: #2b2118;
  text-align: center;
}

.lp-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-title {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 6px;
  color: #3b2e23;
}

.lp-sub {
  color: #726a61;
  font-size: 16px;
  margin-bottom: 36px;
}

/* カード本体 */
.lp-card {
  background: #fff;
  border: 1px solid #efe5d7;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  padding: clamp(30px, 6vw, 60px) 20px;
  max-width: 420px;
  margin: 0 auto 24px;
}

.lp-course {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-price {
  font-size: 42px;
  font-weight: 700;
  color: #b7742c;
  margin: 0;
  line-height: 1.1;
}

.lp-price span {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
}

.lp-time {
  color: #7a7268;
  font-size: 15px;
  margin: 0 0 18px;
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
  display: inline-block;
}

.lp-list li {
  margin: 6px 0;
  font-size: 15.5px;
  padding-left: 1.2em;
  position: relative;
  color: #534c43;
}

.lp-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c58437;
  font-size: 14px;
}

/* ボタン */
.lp-btn {
  display: inline-block;
  background: #b7742c;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 999px;
  font-weight: 700;
  width:90%;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lp-btn:hover {
  background: #8d551c;
  transform: translateY(-1px);
}

.lp-note {
  font-size: 13px;
  color: #7a7268;
  margin-top: 10px;
}
/* ===== お客様の声 (rv-) ===== */
.rv-section{
  padding: clamp(60px,8vw,100px) 0;
  background: #fbf8f4;          /* ほんのり生成り */
  color:#2b2118;
}
.rv-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px,2.6vw,32px);
}
.rv-title{
  text-align:center;
  font-size: clamp(22px,3.4vw,30px);
  margin: 0 0 6px;
  color:#3b2e23;
}
.rv-sub{
  text-align:center;
  color:#756c62;
  margin: 0 0 28px;
}

/* grid */
.rv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2vw,24px);
}

/* card */
.rv-card{
  position:relative;
  background:#fff9ec;
  border:1px solid #eadfcf;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  padding: 22px 20px 18px;
}
/* 小さな切込み（ノッチ） */
.rv-card::before{
  content:"";
  position:absolute;
  top:-10px; left:36px;
  width:18px; height:18px;
  background:#fff9ec;
  border-left:1px solid #eadfcf;
  border-top:1px solid #eadfcf;
  transform: rotate(45deg);
  border-top-left-radius:6px;
}

/* header */
.rv-head{display:flex; align-items:center; gap:12px; margin-bottom:10px;}
.rv-avatar{
  width:56px; height:56px; border-radius:50%; object-fit:cover;
  flex:0 0 56px; background:#fff; border:1px solid #eadfcf;
}
.rv-meta{line-height:1.45;}
.rv-name{margin:0; font-weight:700;}
.rv-demog{margin:0; color:#857a6f; font-size:14px;}
.rv-tag{margin:2px 0 0; color:#b97a2f; font-weight:700; font-size:14px;}

/* body */
.rv-quote{
  margin: 10px 0 12px;
  color:#544a41;
  line-height:1.9;
  font-style: italic;
}
.rv-stars{margin:0; color:#f0b400; letter-spacing:2px; font-size:16px;}

/* responsive */
@media (max-width: 980px){
  .rv-grid{ grid-template-columns: 1fr; }
}


/* ===== フットリセット (Foot Reset Section) ===== */
.footreset-section{
  padding: clamp(60px,8vw,100px) 0;
  background: #fff;        
  color:#2b2118;
}

.footreset-section .wrap.cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 3vw, 32px);
  color: #2b2118;
}

.footreset-section .wrap.cols h2 {
  font-size: clamp(22px, 3.2vw, 28px);
  color: #3b2e23;
  margin: 0 0 18px;
  line-height: 1.5;
}

.footreset-section .wrap.cols p {
  line-height: 1.9;
  font-size: 16px;
  color: #544a41;
  margin: 0 0 16px;
}

/* リスト */
.footreset-section .wrap.cols ul.list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.footreset-section .wrap.cols ul.list li {
  border: 1px solid #efe3ce;
  background: #fff9ef;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 10px;
  color: #3f352c;
  font-size: 15.5px;
  line-height: 1.7;
}

/* 右側画像カード */
.footreset-section .wrap.cols .card {
  background: #fff;
  border: 1px solid #efe3ce;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.footreset-section .wrap.cols .card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* 強調テキスト */
.footreset-section .wrap.cols strong {
  color: #8c5921;
  font-weight: 700;
}

/* リンク */
.footreset-section .wrap.cols a {
  color: #b7742c;
  text-decoration: underline;
  transition: color 0.25s;
}

.footreset-section .wrap.cols a:hover {
  color: #8d551c;
}

/* responsive */
@media (max-width: 960px) {
  .footreset-section .wrap.cols {
    grid-template-columns: 1fr;
  }
  .footreset-section .wrap.cols .card {
    order: -1;
  }
}
/* ===== Therapist section ===== */
.therapist-section{
  background:#fefcf9;
  padding:clamp(56px,7vw,96px) 0;
  color:#2b2118;
}
.therapist-section h2{
  text-align:center;
  font-size:clamp(22px,3.4vw,30px);
  margin:0 0 22px;
  color:#3b2e23;
}
.therapist-box{
  max-width:880px;
  margin:0 auto;
  background:#fff;
  border:1px solid #eadfcd;
  border-radius:22px;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
  padding:clamp(18px,2.6vw,28px);
  display:grid;
  grid-template-columns: 280px 1fr; /* 左画像／右テキスト */
  gap:clamp(16px,2.2vw,28px);
  align-items:center;
}
.therapist-photo{
  width:90%;
  border-radius:14px;
  display:block;
  object-fit:cover;
  aspect-ratio: 1 / 1; /* スクエア寄りのトリム */
}
.therapist-body{ line-height:1.9; color:#544a41; }
.therapist-name{ margin:0 0 6px; font-size:18px; color:#3b2e23; }
.therapist-exp b{ color:#2b2118; }

/* SP：縦積み＆中央寄せ */
@media (max-width: 760px){
  .therapist-box{
    grid-template-columns:1fr;
    text-align:left;
    width:90%;
  }
  .therapist-photo{
    max-width:220px;
    margin:0 auto 6px;
  }
}
/* --- CTA 微調整 --- */
/* === CTA (cta-) only === */
:root{
  --cta-max: 1200px;
  --cta-pad: clamp(18px,2.6vw,32px);
  --cta-ink: #2b2118;
  --cta-muted: #6f675f;
  --cta-accent: #b97a2f;
  --cta-card-bd: #e9e3d9;
  --cta-card-bg: #ffffff;
  --cta-radius: 18px;
  --cta-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.cta-section{
  background:#f5f2ee;
  color:var(--cta-ink);
  text-align:center;
  padding: clamp(56px,8vw,96px) 0;
}
.cta-wrap{max-width:var(--cta-max);margin:0 auto;padding:0 var(--cta-pad);}
.cta-title{margin:0 0 4px;font-size:clamp(22px,3.4vw,30px);}
.cta-lead{margin:0 0 8px;font-size:clamp(18px,2.4vw,22px);color:var(--cta-accent);}
.cta-sub{margin:0 0 22px;color:var(--cta-muted);}

.cta-card{
  background:var(--cta-card-bg);
  border:1px solid var(--cta-card-bd);
  border-radius:var(--cta-radius);
  box-shadow:var(--cta-shadow);
  padding:24px clamp(16px,2vw,28px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(16px,2vw,24px);
  align-items:center;
  margin:0 auto 22px;
  max-width:860px;
}
.cta-item{display:flex;gap:14px;align-items:center;justify-content:center;text-align:left;}
.cta-icon{
  width:56px;height:56px;border-radius:999px;background:#fcf3cc;
  display:inline-flex;align-items:center;justify-content:center;font-size:24px;flex:0 0 56px;
}
.cta-icon img{
  width:50%;}
.cta-text{line-height:1.7}
.cta-point{margin:0 0 2px;font-weight:800;}
.cta-note{margin:0;color:var(--cta-muted);font-size:15px;}
.cta-note a{color:var(--cta-accent);text-decoration:none;font-weight:600;}

.cta-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:10px 0 6px;}
.cta-btn{
  display:inline-block;border:1px solid var(--cta-accent);border-radius:999px;
  padding:14px 28px;font-weight:700;text-decoration:none;color:var(--cta-accent);background:#fff;
  transition:opacity .2s ease, transform .02s ease;
}
.cta-btn.primary{background:var(--cta-accent);color:#fff;}
.cta-btn:active{transform:translateY(1px);}
.cta-btn:hover{opacity:.88;}

.cta-footnote{margin:12px 0 0;color:var(--cta-muted);font-size:14px;}

@media (max-width:900px){
  .cta-card{grid-template-columns:1fr;}
  .cta-item{justify-content:flex-start;}
}
/* === footer (footer-) only === */
:root{
  --footer-bg: #6b7a60;
  --footer-ink: #ffffff;
  --footer-accent: #f2d46f;
  --footer-muted: rgba(255,255,255,.8);
  --footer-max: 1200px;
  --footer-pad: clamp(18px,2.6vw,32px);
}

.footer-section{
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: clamp(48px,7vw,72px) 0 28px;
  font-size: 15px;
}
.footer-wrap{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(16px,2vw,24px);
  max-width: var(--footer-max);
  margin:0 auto;
  padding:0 var(--footer-pad);
}
.footer-col{line-height:1.8;text-align:left;}

.footer-title{
  font-size:clamp(20px,2.6vw,24px);
  font-weight:700;
  color: var(--footer-accent);
  margin:0 0 4px;
}
.footer-title img{
    width:90%;
}
.footer-sub{margin:0 0 6px;color:var(--footer-ink);font-weight:600;}
.footer-desc{color:var(--footer-muted);margin:0 0 10px;}

.footer-heading{
  color: var(--footer-accent);
  margin:0 0 8px;
  font-weight:700;
}
.footer-list{list-style:none;padding:0;margin:0;}
.footer-list li{margin-bottom:4px;color:var(--footer-muted);}
.footer-list a{
  color:var(--footer-accent);
  text-decoration:none;
}
.footer-list a:hover{opacity:.85;}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:40px;
  text-align:center;
  padding-top:16px;
}
.footer-copy{color:var(--footer-muted);font-size:14px;margin:0;}

@media (max-width:880px){
  .footer-wrap{grid-template-columns:1fr 1fr;}
.footer-title img{
    width:60%;margin:0.5em auto;
}
}
@media (max-width:520px){
  .footer-wrap{grid-template-columns:1fr;}
.footer-title img{
    width:50%;margin:0.5em auto;
}
}
/* ===== トップへ戻るボタン ===== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b97a2f;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* 表示状態 */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover時 */
.back-to-top:hover {
  background: #c48838;
}
