@charset "UTF-8";

/* ========== CSS変数（カラー・フォント・スペーシング） ========== */
:root {
  /* color */
  --color-primary: #f7b500;        /* ロゴ・アクセントの黄色 */
  --color-primary-light: #fdebbd;  /* リクルートバナー背景 */
  --color-secondary: #6dc7c2;      /* メインビジュアルのナースの服色（補助） */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #888888;
  --color-bg: #ffffff;
  --color-bg-soft: #faf6ec;        /* フッターの薄ベージュ */
  --color-border: #d8d8d8;
  --color-border-light: #eaeaea;
  --color-table-th: #FDFCF3;       /* 表の見出しセル背景 */
  --color-link: #333333;
  --color-accent-pink: #f08d9c;    /* 介護保険サービス・エリア・フロー */
  --color-accent-pink-soft: #fce6ea;
  --color-accent-blue: #5cb1d6;    /* FAQ Q マーク */
  --color-card-blue: #59C5EA;      /* 障がい・福祉サービスカード枠 */
  --color-card-green: #65C828;     /* 同行援護サービスカード枠 */

  /* font */
  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", sans-serif;
  --ff-en: "Montserrat", "Noto Sans JP", sans-serif;
  /* 筑紫A丸ゴシックの代替：Webフォント Zen Maru Gothic（丸ゴシック系） */
  --ff-maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic Pro", var(--ff-jp);

  /* size */
  --container: 1320px;
  --container-wide: 1320px;

  /* font-size スケール（PC：16/18/20/22px ／ SP：14/16/18/20px）
     本文・小見出し系テキストに使用。大きな装飾文字は個別指定のまま */
  --fs-1: 16px;   /* 補足・キャプション・ナビ等 */
  --fs-2: 18px;   /* 標準本文 */
  --fs-3: 20px;   /* やや大きい本文・小見出し */
  --fs-4: 22px;   /* 小見出し（大） */

  /* radius */
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* SP（〜767px）はフォントスケールを 14/16/18/20px に切り替え */
@media screen and (max-width: 767px) {
  :root {
    --fs-1: 14px;
    --fs-2: 16px;
    --fs-3: 18px;
    --fs-4: 20px;
  }
}

/* ========== リセット ========== */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, table, th, td {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: var(--color-link); text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .7; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

.sch-body {
  font-family: var(--ff-jp);
  font-size: var(--fs-2);   /* 標準本文 18px / SP 16px */
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

.sch-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== ヘッダー ========== */
.sch-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 100;
}
.sch-header__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.sch-header__logo img {
  width: 270px;
  height: auto;
}
.sch-header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sch-header__top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sch-header__area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
}
.sch-header__area i {
  color: var(--color-primary);
  font-size: var(--fs-1);
}
.sch-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 1.875rem;     /* 30px */
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.sch-header__tel i {
  color: var(--color-primary);
  font-size: 1.625rem;     /* 26px */
}
.sch-gnav {
  display: flex;
  gap: 30px;
}
.sch-gnav__item a {
  display: inline-block;
  padding: 8px 0;
  font-size: var(--fs-1);  /* 16px / SP 14px */
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}
.sch-gnav__item a:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* ハンバーガー（モバイル用） */
.sch-hamburger {
  display: none;
  width: 36px;
  height: 30px;
  position: relative;
}
.sch-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.sch-hamburger span:nth-child(1) { top: 4px; }
.sch-hamburger span:nth-child(2) { top: 14px; }
.sch-hamburger span:nth-child(3) { top: 24px; }
.sch-hamburger.is-open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.sch-hamburger.is-open span:nth-child(2) { opacity: 0; }
.sch-hamburger.is-open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* ========== ページタイトル（hero） ========== */
.sch-page-hero {
  position: relative;
  width: 100%;
  height: 280px;
  background: url("../images/placeholder/about_top.jpg") center/cover no-repeat,
              linear-gradient(135deg, #82d3cf 0%, #b8e0c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sch-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
}
.sch-page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  background: transparent;
  padding: 18px 60px;
  border-radius: 4px;
}
.sch-page-hero__title {
  font-size: 1.875rem;    /* 30px */
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(0, 0, 0, 0.25);
}

/* ========== パンくず ========== */
.sch-breadcrumb {
  padding: 18px 0;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text-muted);
}
.sch-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sch-breadcrumb__item + .sch-breadcrumb__item::before {
  content: ">";
  margin-right: 8px;
  color: var(--color-text-muted);
}
.sch-breadcrumb__item a {
  color: var(--color-text-muted);
}
.sch-breadcrumb__item span {
  color: var(--color-text);
}

/* ========== 紹介セクション ========== */
.sch-main {
  padding-bottom: 80px;
  margin-top: 100px;
}
.sch-intro {
  padding: 40px 0 60px;
}
.sch-intro__lead {
  margin-bottom: 50px;
}
.sch-intro__lead p {
  font-size: var(--fs-2);    /* 18px / SP 16px */
  line-height: 2;
  margin-bottom: 1.5em;
}
.sch-intro__lead p:last-child { margin-bottom: 0; }

.sch-intro__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.sch-intro__text {
  flex: 1;
}
.sch-intro__text p {
  font-size: var(--fs-2);    /* 18px / SP 16px */
  line-height: 2;
}
.sch-intro__image {
  flex: 0 1 50%;          /* 親に対して可変（最大50%） */
  width: 100%;
  max-width: 600px;       /* 上限600px */
  min-width: 0;
}
.sch-intro__image img {
  width: 100%;
  height: auto;
}

/* ========== 事業所紹介 ========== */
.sch-office {
  padding: 60px 0 40px;
}
.sch-section-title {
  text-align: center;
  font-family: var(--ff-maru);   /* Zen Maru Gothic */
  font-size: calc(var(--fs-4) + 2px);   /* 24px / SP 22px */
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.sch-office__table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}
.sch-office__table {
  border: 1px solid #000;
  background: #fff;
}
.sch-office__table th,
.sch-office__table td {
  padding: 18px 24px;
  font-size: var(--fs-2);    /* 18px / SP 16px */
  line-height: 1.7;
  border: 1px solid #000;
  text-align: left;
  vertical-align: middle;
}
.sch-office__table th {
  background: var(--color-table-th);
  font-weight: 500;
  width: 220px;
  text-align: center;
  white-space: nowrap;
}
.sch-office__table td {
  background: #fff;
  padding-left: 50px;
}

/* ========== マップ ========== */
.sch-map {
  padding: 40px 0 20px;
}
.sch-map__frame {
  max-width: 100%;        /* コンテナ幅いっぱい（最大1320px） */
  margin: 0 auto;
  line-height: 0;
  border: 1px solid var(--color-border-light);
}
.sch-map__frame iframe {
  display: block;
  width: 100%;
  height: 500px;
}
.sch-map__note {
  max-width: 100%;
  margin: 5px auto 0;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text-light);
}

/* ========== 採用情報バナー ========== */
.sch-recruit-bnr {
  padding: 50px 0 0;
}
.sch-recruit-bnr__link {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-primary-light);
  border-radius: 0;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sch-recruit-bnr__link:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}
.sch-recruit-bnr__link img {
  display: block;
  width: 100%;
}

/* ========== フッター ========== */
.sch-footer {
  background: var(--color-bg-soft);
  padding: 50px 0 20px;
  margin-top: 40px;
}
.sch-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.sch-footer__logo img {
  width: 260px;
  margin-bottom: 18px;
}
.sch-footer__meta {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 2;
  color: var(--color-text);
}
.sch-footer__meta li {
  border-bottom: 1px dotted var(--color-border);
  padding: 4px 0;
}
.sch-footer__col--nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  padding-top: 10px;
}
.sch-footer__nav li {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 2.2;
}
.sch-footer__nav li a {
  color: var(--color-text);
}
.sch-footer__nav li a:hover {
  color: var(--color-primary);
  opacity: 1;
}
.sch-footer__col--related {
  text-align: left;
}
.sch-footer__related-title {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
  margin-top: 12px;
  margin-left: 10px;
}
.sch-footer__related-link img {
  max-width: 320px;
  width: 100%;
}
.sch-footer__copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 18px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text-light);
}


/* ========== レスポンシブ：タブレット ========== */
/* タブレット〜PCはレイアウトを維持（max-width: 1024px のメディアクエリは廃止） */


/* ========== レスポンシブ：スマートフォン ========== */
@media screen and (max-width: 767px) {

  /* header */
  .sch-header__inner {
    padding: 10px 60px 10px 15px;   /* 右はハンバーガー分の余白 */
    position: relative;
    flex-wrap: wrap;
  }
  .sch-header__logo img { width: 170px; }
  .sch-header__tel { font-size: 1.375rem; }
  .sch-header__tel i { font-size: 1.25rem; }

  /* ハンバーガーは絶対配置で位置固定（開閉に関わらず右上） */
  .sch-hamburger {
    display: block;
    position: absolute;
    top: 22px;          /* ロゴと並ぶ高さ */
    right: 15px;
  }

  /* メニュー本体（開いた時のみ表示・全幅で改行） */
  .sch-header__right {
    display: none;
    flex: 0 0 100%;                 /* PCの flex:1 をリセットして全幅で wrap */
    width: 100%;
    order: 99;                      /* 必ず最後に表示 */
  }
  .sch-header__right.is-open {
    display: flex;
    flex-direction: column;         /* 縦並びを明示 */
    flex: 0 0 100%;
    width: 100%;
    align-items: stretch;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
    margin-top: 10px;
  }

  /* __right 内の並び順：__top → __nav */
  .sch-header__right.is-open .sch-header__top { order: 1; }
  .sch-header__right.is-open .sch-header__nav { order: 2; }

  /* __top 内：電話 → 対応エリア */
  .sch-header__right.is-open .sch-header__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sch-header__right.is-open .sch-header__tel  { order: 1; }
  .sch-header__right.is-open .sch-header__area { order: 2; }

  /* メニューリスト */
  .sch-header__right.is-open .sch-gnav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .sch-header__right.is-open .sch-gnav__item {
    border-bottom: 1px solid var(--color-border-light);
  }
  .sch-header__right.is-open .sch-gnav__item a {
    display: block;
    padding: 12px 4px;
  }

  /* page hero */
  .sch-page-hero { height: 180px; }
  .sch-page-hero__inner { padding: 12px 28px; }
  .sch-page-hero__title { font-size: 1.25rem; letter-spacing: 0.04em; }

  /* breadcrumb */
  .sch-breadcrumb { padding: 12px 0; }

  /* main：SPは上余白を縮小 */
  .sch-main {
    padding-bottom: 80px;
    margin-top: 30px;
  }

  /* intro */
  .sch-intro { padding: 24px 0 36px; }
  .sch-intro__lead { margin-bottom: 30px; }
  .sch-intro__lead p,
  .sch-intro__text p {
    line-height: 1.9;
  }
  .sch-intro__lead br,
  .sch-intro__text br { display: none; }
  .sch-intro__body {
    flex-direction: column;
    gap: 24px;
  }
  .sch-intro__image {
    flex: none;
    max-width: 100%;
  }

  /* office：SPは縦積み。外枠はtableのborder、区切りはセルのborder-topのみで二重線を防止 */
  .sch-office { padding: 36px 0 24px; }
  .sch-section-title { margin-bottom: 20px; }
  .sch-office__table,
  .sch-office__table tbody,
  .sch-office__table tr {
    display: block;
    width: 100%;
  }
  .sch-office__table th,
  .sch-office__table td {
    display: block;
    width: 100%;
    padding: 10px 14px;
    text-align: left;
    border: none;                       /* 左右・下の重複ボーダーを解除 */
    border-top: 1px solid #000;         /* セル間の区切りは上線のみ */
  }
  .sch-office__table tr:first-child th {
    border-top: none;                   /* 先頭セルはテーブル外枠と重複するため消す */
  }
  .sch-office__table th {
    background: var(--color-table-th);
  }

  /* map */
  .sch-map { padding: 24px 0 12px; }
  .sch-map__frame iframe { height: 260px; }

  /* recruit banner */
  .sch-recruit-bnr { padding: 30px 0 0; }

  /* footer */
  .sch-footer { padding: 36px 0 16px; }
  .sch-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .sch-footer__col--info { text-align: left; }
  .sch-footer__col--nav { padding-top: 0; }
  .sch-footer__col--related { text-align: center; }
}


/* =================================================================
   サービス紹介ページ
   ================================================================= */

/* ----- ページヒーロー差し替え（サービス紹介） ----- */
.sch-page-hero--service {
  background: url("../images/placeholder/service_top.jpg") center/cover no-repeat,
              linear-gradient(135deg, #cfe9ff 0%, #e5f0d6 100%);
}

/* ----- サービス内容 ----- */
.sch-service {
  padding: 50px 0 50px;
  background: #FDFCF3;
}
.sch-service__group {
  margin-bottom: 100px;
}
.sch-service__group:last-child { margin-bottom: 0; }

.sch-service__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-3);     /* 20px / SP 18px */
  font-weight: 700;
  margin-bottom: 0;
}
.sch-service__cat-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent-pink);
  flex-shrink: 0;
}
.sch-service__desc {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  margin-bottom: 20px;
  color: var(--color-text);
}
.sch-service__sub-cat {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  margin: 28px 0 14px;
}
.sch-service__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 16px;
}
.sch-service__card {
  background: #fff;
  border: 2px solid var(--color-accent-pink);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  height: 100px;
}

/* グループ別カラー：障がい・福祉サービス（居宅介護） */
.sch-service__group--blue .sch-service__card { border-color: var(--color-card-blue); }
.sch-service__group--blue .sch-service__cat-dot { background: var(--color-card-blue); }

/* グループ別カラー：同行援護サービス */
.sch-service__group--green .sch-service__card { border-color: var(--color-card-green); }
.sch-service__group--green .sch-service__cat-dot { background: var(--color-card-green); }
.sch-service__note {
  margin-top: 18px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
  line-height: 1.8;
}


/* ----- 対応エリア ----- */
.sch-area {
  padding: 150px 0;
}
.sch-area__list {
  display: flex;
  justify-content: center;
  gap: 130px;
  flex-wrap: wrap;
}
.sch-area__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 500px;
  padding: 25px 30px;
  border-style: solid;
  border-color: #FFCECE;
  /* 可変ボーダー：最小3px / 推奨1.5vw / 最大20px */
  border-width: clamp(3px, 1.5vw, 20px);
  border-radius: 999px;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 500;
  background: #fff;
  justify-content: center;
}
.sch-area__item i {
  color: var(--color-accent-pink);
  font-size: 2rem;
}

/* エリア別カラー（アイコンのみ色分け、ボーダーは共通#FFCECE） */
.sch-area__item--toyohashi i { color: #83D5FF; }
.sch-area__item--toyokawa  i { color: #F65956; }


/* ----- 各種手続き・申請の流れ ----- */
.sch-flow {
  background: #FFF8D3;
  padding: 60px 0 70px;
}
.sch-flow__lead {
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
}
.sch-flow__list {
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: flow;
  margin-top: 70px;
}
.sch-flow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 28px;
  margin-bottom: 96px;          /* 30px(上余白) + 36px(矢印 1.5倍) + 30px(下余白) */
}
.sch-flow__item:last-child { margin-bottom: 0; }
.sch-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -66px;                /* 矢印の上に30pxの余白（36px+30px） */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 27px solid transparent;
  border-right: 27px solid transparent;
  border-top: 36px solid #FFBED9;
}
.sch-flow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-accent-pink);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

/* Step 交互カラー：奇数=#65C828（緑） / 偶数=#FD8399（ピンク） */
.sch-flow__item:nth-child(odd)  .sch-flow__step { background: #65C828; }
.sch-flow__item:nth-child(even) .sch-flow__step { background: #FD8399; }
/* 矢印は全Step共通 #FFBED9（ライトピンク） */
.sch-flow__body { flex: 1; min-width: 0; padding-top: 6px; }
.sch-flow__title {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  margin-bottom: 6px;
}
.sch-flow__desc {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 1.8;
  color: var(--color-text);
}


/* ----- よくある質問 ----- */
.sch-faq {
  padding: 60px 0 30px;
}
.sch-faq__list {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;            /* 各Q&Aの余白 */
}
.sch-faq__item {
  background: #FDFCF3;
  border-radius: 6px;
}

.sch-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  background: transparent;
  text-align: left;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}
.sch-faq__q .sch-faq__text {
  color: #59C5EA;        /* 質問テキストのみ */
}
.sch-faq__q:hover { opacity: .75; }
.sch-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  flex-shrink: 0;
}
.sch-faq__mark--q { background: #59C5EA; }
.sch-faq__mark--a { background: #EA6459; }
.sch-faq__text { flex: 1; }
.sch-faq__toggle {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sch-faq__toggle::before,
.sch-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-text);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.sch-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sch-faq__item.is-open .sch-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sch-faq__a {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px 24px;       /* 質問(.sch-faq__q)と同じ左右16pxパディング */
  position: relative;
}
.sch-faq__a::before {
  /* アンサーの内側コンテンツ幅に揃った区切り線 */
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #000;
}
.sch-faq__item.is-open .sch-faq__a { display: flex; }
.sch-faq__a .sch-faq__text {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 1.9;
  padding-top: 4px;
}


/* =================================================================
   サービス紹介ページ：レスポンシブ
   ================================================================= */
/* サービスページもタブレット〜PCはレイアウト維持 */

@media screen and (max-width: 767px) {
  /* サービス */
  .sch-service { padding: 20px 0 30px; }
  .sch-service__group { margin-bottom: 40px; }
  .sch-service__cat-dot { width: 12px; height: 12px; }
  .sch-service__sub-cat { margin: 20px 0 10px; }
  .sch-service__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sch-service__card {
    padding: 12px 8px;
    min-height: 80px;
    height: 80px;
  }

  /* エリア */
  .sch-area { padding: 30px 0; }
  .sch-area__list { gap: 14px; }
  .sch-area__item {
    min-width: 0;
    width: 100%;
    padding: 12px 20px;
  }

  /* フロー */
  .sch-flow { padding: 40px 0 50px; }
  .sch-flow__lead { margin-bottom: 20px; }
  .sch-flow__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    margin-bottom: 96px;        /* 30px + 36px(1.5倍) + 30px */
    text-align: center;
  }
  .sch-flow__item:not(:last-child)::after { bottom: -66px; }
  .sch-flow__step { width: 60px; height: 60px; flex-basis: 60px; font-size: 0.8125rem; }
  .sch-flow__desc br { display: none; }

  /* FAQ */
  .sch-faq { padding: 40px 0 20px; }
  .sch-faq__q {
    gap: 10px;
    padding: 16px 8px;
  }
  .sch-faq__mark { width: 28px; height: 28px; font-size: 0.875rem; }
  .sch-faq__a {
    gap: 10px;
    padding: 0 8px 18px;
  }
}


/* =================================================================
   トップページ
   ================================================================= */

/* メインのトップマージンをトップでは不要に */
.sch-main--home { margin-top: 0; }

/* ----- ヒーロー ----- */
.sch-hero {
  background: #FFF8D3;
  position: relative;
}

.sch-hero__main { padding: 60px 0 80px; position: relative; }
.sch-hero__inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* キャッチコピー（左：縦書き 2列） */
.sch-hero__catch {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  font-family: var(--ff-maru);   /* 筑紫A丸ゴシック */
}
.sch-hero__catch-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.625rem;       /* 26px */
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--color-text);
  position: relative;
  white-space: nowrap;
  display: block;
  margin: 0;
  padding: 0;
  align-self: flex-start;
}
/* 「で始まる行は字形の関係で文字が上にオフセットして見えるため、
   「を基準に暮らしの行（HTML順で先頭＝左列）を下げて視覚的に揃える */
.sch-hero__catch-line:first-child {
  margin-top: 1.2em;
}
/* 赤の横線は非表示（2行構成にしたため不要） */

/* サブカテゴリ（中央：縦書き 3列） */
.sch-hero__sub {
  display: flex;
  flex-direction: row;
  align-items: center;            /* 各列を縦方向中央揃え */
  justify-content: center;        /* 横方向も中央寄せ */
  gap: 26px;
  flex-shrink: 0;
  /* 3行の上下に赤の横ボーダー */
  border-top: 2px solid #d65c5c;
  border-bottom: 2px solid #d65c5c;
  padding: 18px 0;
  font-family: var(--ff-maru);   /* 筑紫A丸ゴシック */
}
.sch-hero__sub-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.7rem;         /* 27.2px：同行援護・居宅介護 */
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text);
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
/* 視覚障がい者の支援（HTML順で末尾＝右端） */
.sch-hero__sub-line:last-child {
  font-size: 1.9rem;         /* 30.4px */
}

/* 写真（右） */
.sch-hero__photo {
  flex: 1 1 auto;
  max-width: 720px;
}
.sch-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}


/* ----- お知らせ ----- */
.sch-news {
  background: #fff;
  padding: 70px 0 80px;
}
.sch-news__wrap {
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  background: #fff;
}
.sch-news__title-col {
  background: #F6F2E4;       /* クリーム色のラベル背景 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}
.sch-news__title {
  font-family: var(--ff-maru);   /* Zen Maru Gothic */
  font-size: var(--fs-4);   /* 22px / SP 20px */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.sch-news__list-col {
  padding: 10px 30px;
  background: #fff;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.sch-news__list {
  display: flex;
  flex-direction: column;
}
.sch-news__item {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  gap: 24px;
  align-items: center;
  /* 左端までボーダーを伸ばす：margin で左へ広げ、padding で中身を元位置に戻す */
  margin-left: -30px;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid #d7d7d7;
}
.sch-news__item:last-child { border-bottom: none; }
.sch-news__date {
  font-family: var(--ff-en);
  font-size: var(--fs-1);   /* 16px / SP 14px */
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.sch-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00B129;
  color: #fff;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  text-align: center;
}
.sch-news__link {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sch-news__link:hover { color: var(--color-primary); opacity: 1; }


/* ----- メッセージ ----- */
.sch-message {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
/* 背景の写真（read_back.png をそのまま表示） */
.sch-message__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sch-message__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sch-message__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}
.sch-message__text {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  line-height: 2.2;
  color: var(--color-text);
  margin-bottom: 1.5em;
}
.sch-message__text:last-child { margin-bottom: 0; }


/* ----- 主なサービス内容 ----- */
.sch-services {
  padding: 80px 0;
}
.sch-services__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.sch-services__lead { }
.sch-services__title {
  font-family: var(--ff-maru);   /* Zen Maru Gothic */
  font-size: var(--fs-4);   /* 22px / SP 20px */
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.sch-services__desc {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 1.9;
  margin-bottom: 30px;
}
.sch-services__btn-wrap {
  text-align: center;
}

/* 5つの円：3+2 オフセット配置（6カラムグリッド） */
.sch-services__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 12px;
}
.sch-services__item {
  text-align: center;
}
.sch-services__item:nth-child(1) { grid-column: 1 / span 2; }
.sch-services__item:nth-child(2) { grid-column: 3 / span 2; }
.sch-services__item:nth-child(3) { grid-column: 5 / span 2; }
.sch-services__item:nth-child(4) { grid-column: 2 / span 2; }
.sch-services__item:nth-child(5) { grid-column: 4 / span 2; }
.sch-services__icon {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 10px;
}
.sch-services__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sch-services__label {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  font-weight: 700;
  color: var(--color-text);
}


/* ----- 共通ボタン ----- */
.sch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  padding: 20px 30px;
  border-radius: 999px;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.sch-btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.sch-btn--primary:hover {
  opacity: 1;
  transform: translateY(-2px);
}
/* ピンクのボタン */
.sch-btn--outline {
  background: #FD8299;
  color: #ffffff;
  border: 2px solid #fd8299;
  position: relative;
  padding-right: 44px;
}
.sch-btn--outline::after {
  content: "›";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
}
.sch-btn--outline:hover {
  opacity: .85;
}


/* =================================================================
   トップページ：レスポンシブ
   ================================================================= */
/* タブレット〜PCはレイアウトを維持（min-widthでサイズ縮小を防止） */

@media screen and (max-width: 767px) {
  /* hero */
  .sch-hero__main { padding: 36px 0 50px; }
  .sch-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 0 15px;
  }
  /* SP：キャッチコピーを横書き・横並び（2行）に */
  .sch-hero__catch {
    flex-direction: column-reverse;   /* 上：「自分らしく… 下：暮らし続けれるよう */
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .sch-hero__catch-line {
    writing-mode: horizontal-tb;       /* 縦書き→横書き */
    font-size: 1.25rem;
    padding: 0;
    text-align: center;
  }
  .sch-hero__catch-line:first-child {
    margin-top: 0;                     /* 縦書き用の頭揃えオフセットを解除 */
  }
  /* SP：サブカテゴリ3行も横書き・縦並び */
  .sch-hero__sub {
    flex-direction: column-reverse;    /* 上：視覚障がい者の支援 … 下：同行援護 */
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 0;
  }
  .sch-hero__sub-line {
    writing-mode: horizontal-tb;       /* 縦書き→横書き */
    font-size: 1.125rem;
    text-align: center;
  }
  .sch-hero__sub-line:last-child {
    font-size: 1.125rem;               /* 視覚障がい者の支援もSPでは他と同サイズ */
  }
  .sch-hero__photo {
    max-width: 100%;
    order: -1;                /* SP：写真を一番上に */
  }
  .sch-hero__photo img { border-radius: 12px; }

  /* news：SPは見出しを上・項目を縦積みのリスト形式に */
  .sch-news { padding: 40px 0; }
  .sch-news__wrap {
    grid-template-columns: 1fr;     /* 1カラム化：見出し上・リスト下 */
    border-radius: 0;
  }
  .sch-news__title-col {
    background: transparent;
    padding: 0 0 15px;
    justify-content: flex-start;
  }
  .sch-news__title {
    font-size: 1.25rem;
    text-align: left;
  }
  .sch-news__list-col { padding: 0; }
  .sch-news__list { display: block; }
  .sch-news__item {
    display: block;                 /* グリッド解除して縦積み */
    margin-left: 0;                 /* PCの負マージンを解除 */
    padding: 14px 4px;
    border-bottom: 1px solid #e6e6e6;
  }
  .sch-news__item:last-child { border-bottom: none; }
  .sch-news__date {
    display: inline-block;
    color: var(--color-text-light);
    margin-right: 12px;
    vertical-align: middle;
  }
  .sch-news__cat {
    padding: 3px 12px;
    vertical-align: middle;
  }
  .sch-news__link {
    display: block;
    margin-top: 8px;
    line-height: 1.6;
    white-space: normal;
  }

  /* message：SPでは縦長にして read_back.png を縦の長方形に見せる */
  .sch-message {
    padding: 60px 0;
    margin: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
  .sch-message__bg {
    border-radius: 30px 30px 0 0;
  }
  .sch-message__bg img {
    object-fit: none;          /* SPのみ原寸表示 */
    object-position: center;
  }
  .sch-message__text { line-height: 1.9; }
  .sch-message__text br { display: none; }

  /* services */
  .sch-services { padding: 50px 0; }
  .sch-services__inner { grid-template-columns: 1fr; gap: 30px; }
  .sch-services__title { margin-bottom: 16px; }
  .sch-services__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .sch-services__item:nth-child(1) { grid-column: 1 / span 1; }
  .sch-services__item:nth-child(2) { grid-column: 2 / span 1; }
  .sch-services__item:nth-child(3) { grid-column: 1 / span 1; }
  .sch-services__item:nth-child(4) { grid-column: 2 / span 1; }
  .sch-services__item:nth-child(5) { grid-column: 1 / 3; justify-self: center; }
  .sch-services__icon { max-width: 130px; }
  .sch-services__btn-wrap { text-align: center; }

  /* btn */
  .sch-btn { min-width: 220px; padding: 12px 22px; }
}


/* =================================================================
   お知らせ（一覧・記事詳細）
   ================================================================= */

/* ----- ページヒーロー（お知らせ：芽生えの写真） ----- */
.sch-page-hero--news {
  background: url("../images/placeholder/news_top.jpg") center/cover no-repeat,
              linear-gradient(135deg, #5cb4e6 0%, #b6d98f 100%);
}

/* ----- お知らせ一覧 ----- */
.sch-newslist {
  padding: 20px 0 40px;
}
.sch-newslist__list {
  max-width: 1100px;
  margin: 0 auto;
}
.sch-newslist__item {
  border-bottom: 2px solid #f6b501;
}
.sch-newslist__link {
  display: flex;
  align-items: baseline;
  gap: 40px;
      padding: 30px 8px;
    padding-bottom: 10px;
  color: var(--color-text);
}
.sch-newslist__link:hover {
  opacity: 1;
  color: var(--color-primary);
}
.sch-newslist__date {
  flex-shrink: 0;
  font-family: var(--ff-en);
  font-size: var(--fs-2);   /* 18px / SP 16px */
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.sch-newslist__title {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ----- ページネーション ----- */
.sch-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.sch-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #f4a4b0;
  border-radius: 4px;
  font-family: var(--ff-en);
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
  background: #fff;
  transition: background .2s ease, color .2s ease;
}
.sch-pagination__item:hover {
  opacity: 1;
  background: #f4a4b0;
  color: #fff;
}
.sch-pagination__item--current {
  background: #f4a4b0;
  color: #fff;
  cursor: default;
}
.sch-pagination__item--next {
  font-family: var(--ff-jp);
}

/* ----- お知らせ記事詳細 ----- */
.sch-article {
  padding: 20px 0 40px;
}
.sch-article .sch-container { max-width: 1100px; }
.sch-article__head {
  display: flex;
  align-items: baseline;
  gap: 36px;
  padding: 0 8px 14px;
  border-bottom: 2px solid #000;
}
.sch-article__date {
  flex-shrink: 0;
  font-family: var(--ff-en);
  font-size: var(--fs-2);   /* 18px / SP 16px */
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.sch-article__title {
  font-size: var(--fs-3);   /* 20px / SP 18px */
  font-weight: 700;
  line-height: 1.6;
}
.sch-article__body {
  padding: 32px 8px 0;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  line-height: 2;
  color: var(--color-text);
}
.sch-article__body p { margin-bottom: 1.5em; }
.sch-article__body p:last-child { margin-bottom: 0; }

/* ----- 記事ナビゲーション ----- */
.sch-article-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.sch-article-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 20px;
  border: 1px solid #f6b501;
  border-radius: 4px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: var(--color-text);
  background: #fff;
  transition: background .2s ease, color .2s ease;
}
.sch-article-nav__btn:hover {
  opacity: 1;
  background: #f4a4b0;
  color: #fff;
}


/* ----- お知らせ：レスポンシブ（SP） ----- */
@media screen and (max-width: 767px) {
  .sch-newslist { padding: 10px 0 30px; }
  .sch-newslist__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 4px;
  }
  .sch-newslist__title {
    white-space: normal;
  }

  .sch-pagination { gap: 6px; margin-top: 36px; }
  .sch-pagination__item { min-width: 36px; height: 36px; }

  .sch-article { padding: 10px 0 30px; }
  .sch-article__head {
    flex-direction: column;
    gap: 8px;
    padding: 0 4px 12px;
  }
  .sch-article__body {
    padding: 24px 4px 0;
    line-height: 1.9;
  }

  .sch-article-nav {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
  }
  .sch-article-nav__btn {
    min-width: 0;
    flex: 1 1 30%;
    padding: 10px 8px;
  }
}


/* =================================================================
   お問い合わせフォーム
   ================================================================= */

/* ----- ページヒーロー（お問い合わせ：#FCF3CF ベースのグラデーション） ----- */
.sch-page-hero--contact {
  background: linear-gradient(135deg, #FFFDF2 0%, #FCF3CF 50%, #EAD584 100%);
  /* height・タイトル色（白＋シャドウ）は .sch-page-hero 共通値を継承 */
}

/* ----- お問い合わせ全体 ----- */
.sch-contact {
  padding-bottom: 40px;
}

/* 注意書きエリア */
.sch-contact__intro {
  background: #FBF7E6;
  padding: 40px 0;
  margin-bottom: 50px;
}
.sch-contact__lead {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  margin-bottom: 1.4em;
}
.sch-contact__note {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 1.9;
  margin-bottom: 1em;
}
.sch-contact__note:last-child { margin-bottom: 0; }

/* ----- フォーム ----- */
.sch-form {
  max-width: 1320px;
  margin: 0 auto;
}
.sch-form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 28px;
}
.sch-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* ラベル左・バッジ右 */
  gap: 10px;
  padding-top: 8px;
}
.sch-form__label {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  font-weight: 700;
  color: var(--color-text);
}
/* 必須バッジ */
.sch-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 3px;
  background: #E8453C;          /* 赤 */
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}
.sch-form__badge--blue {
  background: #3F6FB5;          /* 青 */
}

/* 入力欄 */
.sch-form__field {
  min-width: 0;
}
.sch-form__input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-family: var(--ff-jp);
  color: var(--color-text);
  background: #fff;
}
.sch-form__input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.sch-form__textarea {
  min-height: 220px;
  resize: vertical;
  line-height: 1.7;
}

/* ラジオボタン */
.sch-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  cursor: pointer;
  padding-top: 6px;
}
.sch-form__radio input { accent-color: var(--color-primary); }

/* プライバシーポリシー・送信 */
.sch-form__privacy {
  margin-top: 50px;
  text-align: center;
}
.sch-form__privacy-note {
  font-size: var(--fs-1);   /* 16px / SP 14px */
  line-height: 1.9;
  margin-bottom: 18px;
}
.sch-form__privacy-link {
  color: #3F6FB5;
  text-decoration: underline;
}
.sch-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  margin-bottom: 24px;
  cursor: pointer;
}
.sch-form__agree input { accent-color: #00B129; }
.sch-form__submit-wrap { }
.sch-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #F08300;
  color: #fff;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.sch-form__submit:hover {
  opacity: 1;
  transform: translateY(-2px);
}


/* ----- お問い合わせ：レスポンシブ（SP） ----- */
@media screen and (max-width: 767px) {
  .sch-contact__intro { padding: 24px 0; margin-bottom: 30px; }
  .sch-contact__note br { display: none; }

  .sch-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }
  /* SP：バッジをラベルの左隣に表示 */
  .sch-form__head {
    padding-top: 0;
    justify-content: flex-start;
  }
  .sch-form__badge { order: -1; }
  .sch-form__input { max-width: 100%; }
  .sch-form__radio { margin-right: 14px; }

  .sch-form__privacy { margin-top: 36px; }
  .sch-form__submit { min-width: 220px; width: 100%; max-width: 320px; }
}


/* =================================================================
   お問い合わせ：確認画面・送信完了画面
   ================================================================= */

/* ----- ステップインジケーター ----- */
.sch-step {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
}
.sch-step__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: #ececec;
  border-radius: 999px;
  font-size: var(--fs-1);   /* 16px / SP 14px */
  color: #999;
}
.sch-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c4c4c4;
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 0.8125rem;
}
/* 通過済み */
.sch-step__item--done {
  background: #e3f4e0;
  color: #00B129;
}
.sch-step__item--done .sch-step__num { background: #00B129; }
/* 現在 */
.sch-step__item--current {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.sch-step__item--current .sch-step__num {
  background: #fff;
  color: var(--color-primary);
}

/* ----- 確認画面：入力値の表示 ----- */
.sch-form__value {
  padding: 9px 4px;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  line-height: 1.8;
  color: var(--color-text);
}
.sch-form__value--message {
  white-space: pre-wrap;
}

/* ----- フォーム操作ボタン（戻る・送信・HOME） ----- */
.sch-form__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.sch-formbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: var(--fs-2);   /* 18px / SP 16px */
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.sch-formbtn--submit {
  background: #F08300;
  color: #fff;
}
.sch-formbtn--home {
  background: #F08300;
  color: #fff;
}
.sch-formbtn--back {
  background: #fff;
  color: var(--color-text);
  border: 2px solid #b5b5b5;
}
.sch-formbtn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ----- 送信完了画面 ----- */
.sch-complete {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 10px;
}
.sch-complete__icon {
  font-size: 4.5rem;
  color: #00B129;
  line-height: 1;
  margin-bottom: 20px;
}
.sch-complete__title {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.sch-complete__text {
  font-size: var(--fs-2);   /* 18px / SP 16px */
  line-height: 2;
  margin-bottom: 1.5em;
}
.sch-complete__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 24px 0 36px;
  font-family: var(--ff-en);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text);
}
.sch-complete__tel i {
  color: var(--color-primary);
  font-size: 1.375rem;
}
.sch-complete__tel a { color: var(--color-text); }
.sch-complete__tel-note {
  font-family: var(--ff-jp);
  font-size: var(--fs-1);   /* 16px / SP 14px */
  font-weight: 400;
  color: var(--color-text-light);
}
.sch-complete__btn-wrap { margin-top: 10px; }

/* SP用改行ヘルパー */
.sch-sp-only { display: none; }


/* ----- 確認画面・完了画面：レスポンシブ（SP） ----- */
@media screen and (max-width: 767px) {
  .sch-step {
    gap: 6px;
    margin-bottom: 32px;
  }
  .sch-step__item {
    padding: 8px 16px;
  }
  .sch-step__num { width: 20px; height: 20px; font-size: 0.75rem; }

  .sch-form__value { padding: 4px; }

  .sch-form__btns {
    flex-direction: column-reverse;   /* 送信を上・戻るを下に */
    align-items: center;
    gap: 14px;
    margin-top: 36px;
  }
  .sch-formbtn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }

  .sch-complete__icon { font-size: 3.5rem; }
  .sch-complete__title { font-size: 1.25rem; }
  .sch-complete__text { line-height: 1.9; }
  .sch-complete__text br:not(.sch-sp-only) { display: none; }
  .sch-complete__tel { font-size: 1.375rem; }
  .sch-sp-only { display: inline; }
}



/* =================================================
   MW WP Form: ステップごとのボタン出し分け
   ================================================= */

/* 入力画面：「確認画面に進む」だけ表示 */
.mw_wp_form_input button[name="submitBack"],
.mw_wp_form_input button[name="submitSend"] {
  display: none;
}

/* 確認画面：「戻る」と「送信する」だけ表示 */
.mw_wp_form_confirm button[name="submitConfirm"] {
  display: none;
}

/* 確認画面では「プライバシーポリシー注意書き」と「同意チェックボックス」を非表示 */
.mw_wp_form_confirm .sch-form__privacy-note,
.mw_wp_form_confirm .sch-form__agree {
  display: none;
}
