@charset "utf-8";
/* =========================================================================
   common-faq.css

   ▼ 土台は既存の共有CSSを再利用（ここでは重複定義しない）
     - レイアウト    : mypage_2.css の .main-layout / .main
     - サイドバー    : common/common-sidebar.css の #sidebar 系
     - ヘッダ/フッタ : common/common-before-login.css / common/common-after-login.css
       （レイアウト側の @include('side.sidebar') と layouts.page が出し分け）

   ▼ デザイントークン（common-form.css / mypage_2.css と統一）
     primary blue : #59b8e8   light blue bg : #f0faff
     answer accent: #ffb74d   page bg       : #fdfcf9
     text dark    : #1f2937   text muted    : #4b5563 / #64748b
   ========================================================================= */

.faq-page {
  --faq-blue: #59b8e8;
  --faq-blue-hover: #45a9dd;
  --faq-blue-soft: #f0faff;
  --faq-amber: #ffb74d;
  --faq-text: #1f2937;
  --faq-muted: #4b5563;
  --faq-muted2: #64748b;
  --faq-border: #eceff3;
  --faq-border2: #e2e8f0;
  --faq-sticky-top: 4.5rem;

  max-width: 820px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--faq-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ページヘッダ（ヒーロー） ===== */
.faq-hero {
  text-align: center;
  padding: 1rem 0 1.75rem;
}
.faq-hero-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.125rem;
  border-radius: 18px;
  background: #eaf6fd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-hero-icon span {
  font-size: 30px;
  font-weight: 800;
  color: var(--faq-blue);
  line-height: 1;
}
.faq-page h1.faq-hero-title {
  margin: 0 0 0.75rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--faq-text);
  /* style.css の h1.page-title 装飾を打ち消す */
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
@media (min-width: 768px) {
  .faq-page h1.faq-hero-title { font-size: 2rem; }
}
.faq-hero-lead {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--faq-muted2);
}
.faq-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-top: 1.125rem;
  font-size: 0.9rem;
}
.faq-hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2b9fd6;
  text-decoration: none;
  font-weight: 600;
}
.faq-hero-links a:hover { color: #1f7fb0; text-decoration: underline; }

/* ===== 検索 ===== */
.faq-search {
  position: relative;
  max-width: 580px;
  margin: 0 auto 0.5rem;
}
.faq-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9aa7b4;
}
/* common.css の Tailwind フォームリセット [type='text'] (詳細度0,1,0) が
   common-page.css より後に読み込まれて打ち消すため、.faq-page を前置して
   詳細度(0,2,0)に上げ、読み込み順に関わらず確実に勝たせる。
   併せて appearance / box-sizing も明示リセットする。 */
.faq-page .faq-search-input {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 46px 15px 45px;
  border-radius: 999px;
  border: 1.5px solid var(--faq-border2);
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-family: inherit;
  color: var(--faq-text);
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color .15s, box-shadow .15s;
}
.faq-page .faq-search-input::placeholder { color: #9aa7b4; }
.faq-page .faq-search-input:focus {
  border-color: var(--faq-blue);
  box-shadow: 0 0 0 4px rgba(89, 184, 232, 0.12);
}
.faq-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #eef2f6;
  color: var(--faq-muted2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.faq-search-clear:hover { background: #e2e8f0; }

/* ===== カテゴリナビ ===== */
.faq-nav {
  position: sticky;
  top: var(--faq-sticky-top);
  z-index: 5;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.faq-chip {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
  border: 1px solid var(--faq-border2);
  background: #fff;
  color: #475569;
}
.faq-chip:hover {
  border-color: var(--faq-blue);
  color: var(--faq-blue);
  text-decoration: none;
}
.faq-chip.is-active {
  border-color: var(--faq-blue);
  background: var(--faq-blue);
  color: #fff;
}

/* ===== 検索結果カウント ===== */
.faq-result-count {
  text-align: center;
  font-size: 0.92rem;
  color: var(--faq-muted2);
  margin: 0 0 22px;
}
.faq-result-count .faq-q-word { color: #2b9fd6; font-weight: 700; }
.faq-result-count .faq-result-num { font-weight: 700; color: var(--faq-text); }

/* ===== カテゴリ＋アコーディオン ===== */
.faq-section {
  scroll-margin-top: calc(var(--faq-sticky-top) + 3.5rem);
  margin-bottom: 36px;
}
.faq-section[hidden] { display: none; }
.faq-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0 2px;
}
.faq-section-bar {
  flex: 0 0 auto;
  width: 9px;
  height: 24px;
  border-radius: 5px;
  background: var(--faq-blue);
}
.faq-page h2.faq-section-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--faq-text);
  /* style.css の h2.title 装飾を打ち消す */
  background: none;
  border: 0;
  padding: 0;
}
.faq-section-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 2px;
}
.faq-section-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- 1問1答カード --- */
.faq-item {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--faq-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[hidden] { display: none; }
.faq-item.is-open {
  border: 1.5px solid var(--faq-blue);
  box-shadow: 0 8px 24px rgba(89, 184, 232, 0.13);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 17px 20px;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  background: #fff;
  transition: background .2s;
}
.faq-item.is-open .faq-q { background: var(--faq-blue-soft); }
.faq-q-badge {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--faq-blue);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-q-text {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-text);
  line-height: 1.5;
}
.faq-q-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--faq-border2);
  color: var(--faq-blue);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.faq-q-icon::before { content: "+"; }
.faq-item.is-open .faq-q-icon { border-color: var(--faq-blue); }
.faq-item.is-open .faq-q-icon::before { content: "\2212"; } /* − */

/* 回答部：高さアニメーション（grid-template-rows 0fr⇔1fr） */
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a {
  display: flex;
  gap: 14px;
  padding: 8px 22px 22px;
  background: var(--faq-blue-soft);
  border-top: 1px solid #dceefb;
}
.faq-a-badge {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--faq-amber);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-a-body {
  flex: 1 1 auto;
  font-size: 15px;
  color: var(--faq-muted);
  line-height: 1.9;
  padding-top: 2px;
}
.faq-a-body p { margin: 0 0 9px; }
.faq-a-body p:last-child { margin-bottom: 0; }
.faq-a-body a {
  color: #2b9fd6;
  text-decoration: underline;
  font-weight: 600;
  word-break: break-all;
}
.faq-a-body a:hover { color: #1f7fb0; }
.faq-a-body b { color: var(--faq-text); }

/* ===== 検索ヒットなし ===== */
.faq-empty {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--faq-border);
}
.faq-empty[hidden] { display: none; }
.faq-empty .faq-empty-icon { color: #cbd5e1; }
.faq-empty p { margin: 0; }
.faq-empty .faq-empty-title {
  margin: 12px 0 4px;
  font-weight: 700;
  color: var(--faq-text);
}
.faq-empty .faq-empty-sub {
  font-size: 0.92rem;
  color: var(--faq-muted2);
}

/* ===== お問い合わせ CTA ===== */
.faq-cta {
  margin-top: 40px;
  background: #fff;
  border-top: 4px solid var(--faq-blue);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 40px 28px;
  text-align: center;
}
.faq-page h3.faq-cta-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--faq-text);
}
/* 詳細度を .faq-page .faq-cta-lead (0,2,0) にして、.main-layout p { margin:0 }（0,1,1）に
   打ち勝つ。これで下マージン（ボタンとの隙間）が有効になる。
   max-width(480px) を外すと、PCでは1行に収まり不自然な改行が出にくい。
   幅が足りない時は word-break:auto-phrase が対応ブラウザで文節折り返しする。 */
.faq-page .faq-cta-lead {
  margin: 0 auto 30px;            /* 下 30px：テキストとボタンの間に少し余白 */
  max-width: 100%;               /* 480px 制限を解除（.faq-cta 内幅まで使う） */
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--faq-muted2);
  word-break: auto-phrase;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--faq-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(89, 184, 232, 0.28);
  transition: background .15s;
}
.faq-cta-btn:hover { background: var(--faq-blue-hover); color: #fff; text-decoration: none; }
.faq-page a.faq-cta-btn,
.faq-page a.faq-cta-btn:link,
.faq-page a.faq-cta-btn:visited,
.faq-page a.faq-cta-btn:hover,
.faq-page a.faq-cta-btn:active,
.faq-page a.faq-cta-btn:focus {
  color: #fff;
  text-decoration: none;
}
.faq-cta-sub { margin-top: 20px; }
.faq-cta-sub a {
  color: var(--faq-muted2);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* 未ログイン時の無料登録ボタン（既存 .btn-pink を流用しつつ間隔だけ調整） */
.faq-page .faq-signup-box {
  text-align: center;
  margin-top: 32px;
}

/* ===== スマホ ===== */
@media (max-width: 600px) {
  .faq-page { --faq-sticky-top: 3.5rem; }
  .faq-q { padding: 14px 16px; gap: 10px; }
  .faq-q-text { font-size: 15px; }
  .faq-a { padding: 8px 16px 18px; }
  .faq-cta { padding: 32px 20px; }
}

/* =========================================================================
   レイアウト土台（.main-layout / .main）
   ── ログイン後ページは mypage_2.css がこの定義を持つため横並び＆追従するが、
      ログイン前ページは mypage_2.css を読み込まず、サイドバーとmainが縦積みに
      なってしまう。FAQページは common-page.css を常に読み込むので、ここに
      mypage_2.css と「完全に同一の定義」を再掲しておくことで、ログイン前でも
      ログイン後と同じ横並びレイアウトにする（値は同一のため後勝ちでも無害）。
   ========================================================================= */
.main-layout {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  max-width: 80rem;
  flex-grow: 1;
  flex-direction: column;
  gap: 2rem;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 640px) {
  .main-layout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .main-layout {
    padding-left: 2rem;
    padding-right: 2rem;
    flex-direction: row;   /* ← デスクトップで横並び（サイドバー＋main） */
  }
}
.main {
  flex: 1 1 0%;
  min-width: 0px;
}
.main-layout :is(h1, h2, h3, h4, h5, h6) { margin: 0; }
.main-layout a:hover { text-decoration: none; }
.main-layout p { margin: 0; }

/* =========================================================================
   共通UIパーツ（content ページ横断で再利用できる汎用クラス）

   ▼ 方針
     FAQ(.faq-page)／ご利用方法(.manual-page) などは各自で hero / card / 見出しバー /
     ボタンを定義しているが、見た目はすべて同一デザイントークン。今後のページ
     （ログアウト等）は下記の汎用クラスを使い回す。既存ページも順次これへ移行可。

   ▼ 使い方
     - すべて .main-layout 配下で使う前提（共有トークン --ui-* を .main-layout に定義）。
     - 見出しの装飾打ち消し（style.css の h1.page-title / h2.title）は、確実に勝てる
       よう「コンポーネント親 + 要素 + クラス (0,2,1)」でスコープしている。

   ▼ デザイントークン（既存 .faq-page / .manual-page と同値）
     primary blue #59b8e8 / soft #f0faff / bg #eaf6fd
     coral #ff6b6b（再開系CTA） / amber #ff9f43 / amber-soft #fff6ec
     text #1f2937 / muted #4b5563 / muted2 #64748b / faint #94a3b8
     border #eceff3 / border2 #e2e8f0
   ========================================================================= */
.main-layout {
  --ui-blue: #59b8e8;
  --ui-blue-hover: #45a9dd;
  --ui-blue-soft: #f0faff;
  --ui-blue-bg: #eaf6fd;
  --ui-coral: #ff6b6b;
  --ui-amber: #ff9f43;
  --ui-amber-soft: #fff6ec;
  --ui-text: #1f2937;
  --ui-muted: #4b5563;
  --ui-muted2: #64748b;
  --ui-faint: #94a3b8;
  --ui-border: #eceff3;
  --ui-border2: #e2e8f0;
}

/* ===== 中央寄せコンテンツ列（各ページの最大幅は --page-max で調整） ===== */
.page-col {
  max-width: var(--page-max, 820px);
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--ui-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ページヒーロー（アイコン＋見出し＋リード） ===== */
.page-hero { text-align: center; padding: 1rem 0 1.75rem; }
.page-hero-icon {
  width: 56px; height: 56px; margin: 0 auto 1.125rem; border-radius: 18px;
  background: var(--ui-blue-bg); color: var(--ui-blue);
  display: flex; align-items: center; justify-content: center;
}
.page-hero-icon span { font-size: 30px; font-weight: 800; line-height: 1; }
.page-hero .page-hero-title {            /* (0,2,0)：h1.page-title (0,1,1) に勝つ */
  margin: 0 0 0.75rem; font-size: 1.85rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--ui-text);
  background: none; border: 0; box-shadow: none; padding: 0;   /* 旧 .page-title 装飾を打ち消し */
}
@media (min-width: 768px) { .page-hero .page-hero-title { font-size: 2rem; } }
.page-hero-lead { font-size: 1rem; line-height: 1.7; color: var(--ui-muted2); }

/* ===== 白カード（共通） ===== */
.page-card {
  background: #fff; border: 1px solid var(--ui-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03); padding: 22px 24px;
}
/* 強調カード（上辺アクセント＋大きめの影） */
.page-card.is-feature {
  border-top: 4px solid var(--ui-blue);
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ===== セクション見出し（縦バー＋タイトル） ===== */
.section-head { display: flex; align-items: center; gap: 12px; margin: 34px 2px 16px; }
.section-bar { flex: 0 0 auto; width: 9px; height: 24px; border-radius: 5px; background: var(--ui-blue); }
.section-head .section-title {           /* (0,2,0)：h2.title (0,1,1) に勝つ */
  margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--ui-text);
  background: none; border: 0; padding: 0; line-height: 1.45;   /* 旧 .title 装飾を打ち消し */
}

/* ===== ピル型ボタン（共通） ===== */
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: opacity .15s, background .15s, border-color .15s;
}
.pill-btn.is-primary,
.pill-btn.is-primary:link, .pill-btn.is-primary:visited {
  background: var(--ui-coral); color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.28);
}
.pill-btn.is-primary:hover, .pill-btn.is-primary:active, .pill-btn.is-primary:focus {
  color: #fff; opacity: 0.88; text-decoration: none;
}
.pill-btn.is-blue,
.pill-btn.is-blue:link, .pill-btn.is-blue:visited {
  background: var(--ui-blue); color: #fff;
  box-shadow: 0 8px 20px rgba(89, 184, 232, 0.28);
}
.pill-btn.is-blue:hover, .pill-btn.is-blue:active, .pill-btn.is-blue:focus {
  background: var(--ui-blue-hover); color: #fff; text-decoration: none;
}
.pill-btn.is-ghost,
.pill-btn.is-ghost:link, .pill-btn.is-ghost:visited {
  background: #fff; color: var(--ui-muted); border: 1.5px solid var(--ui-border2);
}
.pill-btn.is-ghost:hover, .pill-btn.is-ghost:active, .pill-btn.is-ghost:focus {
  color: var(--ui-text); border-color: #cbd5e1; text-decoration: none;
}

/* ===== ナビカード（アイコン＋タイトル＋補足＋矢印のリンク） ===== */
.nav-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.nav-card,
.nav-card:link, .nav-card:visited {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--ui-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  padding: 18px; text-decoration: none; color: var(--ui-text);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.nav-card:hover {
  box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.12);
  border-color: #dceefb; transform: translateY(-2px); text-decoration: none;
}
.nav-card-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; line-height: 1;
  background: var(--ui-blue-soft); color: var(--ui-blue);   /* 既定は青 */
}
.nav-card-icon.is-amber { background: var(--ui-amber-soft); color: var(--ui-amber); }
.nav-card-body { flex: 1 1 auto; min-width: 0; }
.nav-card-title { display: block; font-size: 0.98rem; font-weight: 700; color: var(--ui-text); }
.nav-card-sub { display: block; margin-top: 2px; font-size: 0.8rem; color: var(--ui-faint); }
.nav-card-arrow { color: #cbd5e1; font-size: 18px; font-weight: 700; }

/* ===== 共通パーツのスマホ調整 ===== */
@media (max-width: 600px) {
  .pill-btn { width: 100%; justify-content: center; }
  .nav-card-grid { grid-template-columns: 1fr; }
}


/* =========================================================================
   .manual-page : ご利用方法（manual.blade.php）の手順ガイド用デザイン。
   FAQ（.faq-page）と同じデザイントークン・カード調で統一する。
   レイアウト土台（.main-layout / .main）は上の定義を共用。
   ========================================================================= */
.manual-page {
  --m-blue: #59b8e8;
  --m-blue-hover: #45a9dd;
  --m-blue-soft: #f0faff;
  --m-text: #1f2937;
  --m-muted: #4b5563;
  --m-muted2: #64748b;
  --m-border: #eceff3;
  --m-border2: #e2e8f0;

  max-width: 880px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--m-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ヒーロー ===== */
.manual-hero { text-align: center; padding: 1rem 0 1.5rem; }
.manual-hero-icon {
  width: 56px; height: 56px; margin: 0 auto 1.125rem; border-radius: 18px;
  background: #eaf6fd; color: var(--m-blue);
  display: flex; align-items: center; justify-content: center;
}
.manual-page h1.manual-hero-title {
  margin: 0 0 0.75rem; font-size: 1.85rem; font-weight: 800; letter-spacing: .02em;
  color: var(--m-text); background: none; border: 0; box-shadow: none; padding: 0;
}
@media (min-width: 768px) { .manual-page h1.manual-hero-title { font-size: 2rem; } }
.manual-page .manual-hero-lead {
  margin: 0 auto; font-size: 1rem; line-height: 1.7; color: var(--m-muted2);
}

/* ===== セクション導入文（英語版で使用） ===== */
.manual-page .manual-section-intro { margin: 0 0 14px; color: var(--m-muted2); font-size: .95rem; line-height: 1.7; }

/* ===== セクションカード ===== */
.manual-section {
  background: #fff; border: 1px solid var(--m-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 22px 24px; margin-bottom: 18px;
}
.manual-section-head { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; }
.manual-section-bar { flex: 0 0 auto; width: 9px; height: 24px; border-radius: 5px; background: var(--m-blue); }
.manual-page h2.manual-section-title {
  margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--m-text);
  background: none; border: 0; padding: 0; line-height: 1.45;
}
.manual-page h2.manual-section-title rt { font-weight: 500; color: var(--m-muted2); }

/* ===== 手順（番号付き） ===== */
.manual-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.manual-steps > li {
  position: relative; padding-left: 44px; min-height: 30px;
  margin-bottom: 14px; color: var(--m-muted); font-size: 15px; line-height: 1.85;
}
.manual-steps > li:last-child { margin-bottom: 0; }
.manual-steps > li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--m-blue); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.manual-steps rt { font-weight: 500; color: var(--m-muted2); }
.manual-steps a { color: #2b9fd6; text-decoration: underline; font-weight: 600; }
.manual-steps a:hover { color: #1f7fb0; }
.manual-steps .akimark-img {
  display: inline-block; height: 1.3em; width: auto; vertical-align: -0.25em; margin: 0 2px;
}
.manual-steps .attention { font-weight: 700; }

/* ===== 補足ノート ===== */
.manual-page .manual-note {
  margin: 16px 0 0; font-size: .9rem; color: var(--m-muted2); line-height: 1.7;
  background: #f8fafc; border: 1px solid var(--m-border2); border-radius: 10px; padding: 10px 14px;
}
.manual-note rt { color: #94a3b8; }

/* ===== gif（gifffer） ===== */
.manual-gif { margin: 18px auto 0; text-align: center; }
.manual-gif img { max-width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--m-border); box-shadow: 0 4px 16px -6px rgba(0,0,0,.12); }
.manual-gif .gifffer-container { margin: 0 auto !important; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px -6px rgba(0,0,0,.12); }
.manual-page .manual-gif-hint { margin-top: 8px; font-size: .82rem; color: #94a3b8; }

/* ===== 詳しいマニュアル（リンク集） ===== */
.manual-links {
  background: #fff; border: 1px solid var(--m-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 20px 24px; margin-top: 8px;
}
.manual-links-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 800; color: var(--m-text); margin: 0 0 14px;
}
.manual-links-title .manual-section-bar { height: 20px; }
.manual-links ul { list-style: none; margin: 0; padding: 0; }
.manual-links ul + ul { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--m-border2); }
.manual-links li { margin: 0; }
.manual-links li a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #2b9fd6; text-decoration: none; font-weight: 600; font-size: .95rem; padding: 6px 0;
}
.manual-links li a::before { content: "\203A"; color: var(--m-blue); font-weight: 800; font-size: 1.1em; }
.manual-links li a:hover { color: #1f7fb0; text-decoration: underline; }
.manual-links rt { font-weight: 500; color: var(--m-muted2); }
.manual-links .attention { display: block; margin: 12px 0 2px; font-size: .85rem; line-height: 1.6; }
.manual-links .english-link { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--m-border); }
.manual-links .english-link a { color: var(--m-muted2); font-weight: 600; text-decoration: underline; font-size: .9rem; }
.manual-links .english-link a::before { content: none; }

/* ===== 無料登録 ===== */
.manual-signup { text-align: center; margin-top: 32px; }

/* ===== スマホ ===== */
@media (max-width: 600px) {
  .manual-section { padding: 18px 16px; }
  .manual-steps > li { padding-left: 38px; }
  .manual-steps > li::before { width: 26px; height: 26px; font-size: 13px; }
  .manual-links { padding: 18px 16px; }
}

/* =========================================================================
   .reservation-page : レッスン一覧（reservation_list.blade.php）専用デザイン。
   FAQ(.faq-page)/ご利用方法(.manual-page) と同じデザイントークン・カード調で統一。

   ▼ 注意（重要）
     - 本ページは「ログイン後専用」。レイアウト土台(.main-layout/.main)・
       サイドバー(#sidebar)は上の共有定義をそのまま共用する。
     - .lesson-table / .rate-box / .teacher-box は「レッスン詳細」「スケジュール」
       など他ページでも使われる共通クラスのため、必ず .reservation-page 配下に
       スコープし、既存ページのデザインに影響を与えないようにする。
     - data-info / future・today・passed・cancel・noreturn・lesson_select の各クラス、
       .raty / .rate-box / .score の構造は JS 連動のため HTML 側で完全保持する。
   ========================================================================= */
.reservation-page {
  --r-blue: #59b8e8;
  --r-blue-hover: #45a9dd;
  --r-blue-soft: #f0faff;
  --r-amber: #ff9f43;
  --r-amber-soft: #fff6ec;
  --r-red: #ef6b75;
  --r-red-soft: #fff1f2;
  --r-text: #1f2937;
  --r-muted: #4b5563;
  --r-muted2: #64748b;
  --r-border: #eceff3;
  --r-border2: #e2e8f0;

  max-width: 920px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--r-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ヒーロー（manual と同調） ===== */
.reservation-hero { text-align: center; padding: 1rem 0 1.25rem; }
.reservation-hero-icon {
  width: 56px; height: 56px; margin: 0 auto 1.125rem; border-radius: 18px;
  background: #eaf6fd; color: var(--r-blue);
  display: flex; align-items: center; justify-content: center;
}
.reservation-page h1.reservation-hero-title {
  margin: 0 0 0.75rem; font-size: 1.85rem; font-weight: 800; letter-spacing: .02em;
  color: var(--r-text);
  /* style.css の h1.page-title 装飾（青帯）を打ち消す */
  background: none; border: 0; box-shadow: none; padding: 0;
}
@media (min-width: 768px) { .reservation-page h1.reservation-hero-title { font-size: 2rem; } }
.reservation-page .reservation-hero-lead {
  margin: 0 auto; font-size: 1rem; line-height: 1.7; color: var(--r-muted2);
}

/* ===== アラート（角丸に統一） ===== */
.reservation-page .alert {
  border: 0; border-radius: 12px; padding: 14px 18px; font-size: .95rem; margin-bottom: 18px;
}
.reservation-page .alert ul { margin: 0; padding-left: 1.1em; }
.reservation-page .alert-danger { background: var(--r-red-soft); color: #b91c1c; }
.reservation-page .alert-success { background: #ecfdf5; color: #047857; }

/* ===== 凡例＋操作ヒント ===== */
.reservation-legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
  background: #fff; border: 1px solid var(--r-border); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  padding: 12px 16px; margin: 0 0 16px;
}
.reservation-legend .legend-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 600; color: var(--r-muted);
}
.reservation-legend .legend-dot {
  width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto;
}
.reservation-legend .legend-dot.is-future { background: var(--r-blue); }
.reservation-legend .legend-dot.is-today  { background: var(--r-amber); }
.reservation-legend .legend-dot.is-passed { background: #cbd5e1; }
.reservation-legend .legend-hint {
  margin-left: auto; font-size: .82rem; color: var(--r-muted2);
  display: inline-flex; align-items: center; gap: 5px;
}
.reservation-legend .legend-hint svg { flex: 0 0 auto; }

/* ===== テーブル（カード調の行） ===== */
.reservation-page .table-list { margin: 0; }
.reservation-page .lesson-table.table {
  width: 100%; margin: 0; font-size: 1rem;
  border-collapse: separate !important; border-spacing: 0 10px;
}
/* 見出し行 */
.reservation-page .lesson-table.table > thead > tr > th {
  text-align: left; padding: 2px 18px; border: 0; background: transparent;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--r-muted2);
}
/* 本文セル共通：白カード＋上下ボーダー */
.reservation-page .lesson-table.table > tbody > tr > th,
.reservation-page .lesson-table.table > tbody > tr > td {
  background: #fff; padding: 14px 18px; vertical-align: middle !important;
  border-top: 1px solid var(--r-border); border-bottom: 1px solid var(--r-border);
  transition: background .15s;
}
/* 左端セル（日時）：通常は他の辺と同じ細い枠（青い印は付けない）＋角丸。
   青いアクセントバーは「選択時（.lesson_select）」のみ表示する。 */
.reservation-page .lesson-table.table > tbody > tr > th.date {
  width: 34%; font-weight: 600;
  border-left: 1px solid var(--r-border);
  border-top-left-radius: 14px; border-bottom-left-radius: 14px;
}
/* 右端セル（評価）：右ボーダー＋角丸 */
.reservation-page .lesson-table.table > tbody > tr > td.rate {
  width: 230px;
  border-right: 1px solid var(--r-border);
  border-top-right-radius: 14px; border-bottom-right-radius: 14px;
}

/* ステータス別の色（背景のみ。左の色バーは付けない） */
.reservation-page .lesson-table tr.future > th,
.reservation-page .lesson-table tr.future > td { background: var(--r-blue-soft); }

.reservation-page .lesson-table tr.today > th,
.reservation-page .lesson-table tr.today > td { background: var(--r-amber-soft); }

.reservation-page .lesson-table tr.passed > th,
.reservation-page .lesson-table tr.passed > td { background: #fafafa; }
.reservation-page .lesson-table tr.passed .teacher-box .name a { color: var(--r-muted2); }

/* ステータスバッジ（日時セル内） */
.reservation-page .res-status {
  display: inline-block; margin-bottom: 5px;
  padding: 2px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; line-height: 1.6; letter-spacing: .02em;
}
.reservation-page .res-status--future { background: var(--r-blue); color: #fff; }
.reservation-page .res-status--today  { background: var(--r-amber); color: #fff; }
.reservation-page .res-status--passed { background: #e2e8f0; color: #64748b; }

/* 日時リンク */
.reservation-page .lesson-table th.date a {
  display: inline-block; color: var(--r-blue); font-weight: 500; font-size: 1.02rem;
  text-decoration: none; line-height: 1.45;
}
.reservation-page .lesson-table th.date a:hover { color: var(--r-blue-hover); text-decoration: underline; }

/* 講師ボックス（円形写真＋名前） */
.reservation-page .lesson-table .teacher-box { display: flex; align-items: center; gap: 11px; }
.reservation-page .lesson-table .photo {
  width: 46px; height: 46px; flex: 0 0 auto; float: none; margin: 0;
  border-radius: 50%; overflow: hidden; background: #eef2f6;
  border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.reservation-page .lesson-table .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reservation-page .lesson-table .teacher-box .name {
  display: block; font-size: .95rem; line-height: 1.5; color: var(--r-muted2);
}
.reservation-page .lesson-table .teacher-box .name a {
  color: var(--r-text); font-weight: 700; text-decoration: none;
}
.reservation-page .lesson-table .teacher-box .name a:hover { color: var(--r-blue-hover); text-decoration: underline; }

/* 評価ボックス */
.reservation-page .lesson-table .rate-box { display: inline-flex; align-items: center; gap: 8px; width: auto; }
.reservation-page .lesson-table .rate-box > div { display: inline-flex; align-items: center; }
.reservation-page .lesson-table .rate-L { display: inline-block; white-space: nowrap; line-height: 1; }
.reservation-page .lesson-table .rate-L img { display: inline-block; vertical-align: middle; }
.reservation-page .lesson-table .raty { line-height: 1; }
.reservation-page .lesson-table .score {
  margin: 0; padding: 0; width: 26px; border: none; background: transparent;
  text-align: center; font-weight: 700; color: var(--r-amber); font-size: 1rem;
}

/* キャンセル可能行：選択可能であることを示すカーソル＆ホバー */
.reservation-page .lesson-table tr.cancel { cursor: pointer; }
.reservation-page .lesson-table tr.cancel:hover > th,
.reservation-page .lesson-table tr.cancel:hover > td { filter: brightness(.98); }

/* 選択中（JS が付与する .lesson_select）：青のハイライト＋枠＋左に青いバー */
.reservation-page .lesson-table tr.lesson_select > th,
.reservation-page .lesson-table tr.lesson_select > td {
  background: #e6f3fd !important;
  border-top-color: var(--r-blue); border-bottom-color: var(--r-blue);
}
.reservation-page .lesson-table tr.lesson_select > th.date {
  border-left-color: var(--r-blue);
  box-shadow: inset 2px 0 0 0 var(--r-blue); /* 選択時だけ左に青いバー（レイアウトずれ無し） */
}
.reservation-page .lesson-table tr.lesson_select > td.rate { border-right-color: var(--r-blue); }

/* キャンセルボタン */
.reservation-page .btn-right-box { text-align: right; margin-top: 18px; }
.reservation-page #lesson_cancel {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--r-red); background-image: none; color: #fff !important;
  padding: 11px 24px; border: 0; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(239,107,117,.28);
  text-decoration: none; transition: background .15s, box-shadow .15s, opacity .15s; opacity: 1;
}
.reservation-page #lesson_cancel:hover { background: #e2565f; opacity: 1; text-decoration: none !important; }
.reservation-page #lesson_cancel.disabled {
  background: #cbd5e1; background-image: none; color: #fff !important;
  box-shadow: none; opacity: 1; pointer-events: none;
}

/* 空状態 */
.reservation-empty {
  text-align: center; background: #fff; border: 1px solid var(--r-border);
  border-radius: 18px; box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 48px 24px;
}
.reservation-empty .empty-icon { color: #cbd5e1; margin-bottom: 10px; }
.reservation-empty p { margin: 0; color: var(--r-muted2); font-weight: 600; }

/* 注意書きカード（check-list） */
.reservation-checks {
  background: #fff; border: 1px solid var(--r-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 20px 24px; margin-top: 26px;
}
.reservation-checks .checks-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.02rem; font-weight: 800; color: var(--r-text); margin: 0 0 14px;
}
.reservation-checks .checks-title .checks-bar { width: 9px; height: 22px; border-radius: 5px; background: var(--r-blue); }
.reservation-page ul.check-list { margin: 0; padding: 0; list-style: none; }
.reservation-page ul.check-list > li {
  position: relative; padding-left: 28px; margin-bottom: 14px;
  font-size: .92rem; line-height: 1.85; color: var(--r-muted);
}
.reservation-page ul.check-list > li:last-child { margin-bottom: 0; }
/* ○ではなく「○の中に✓」（order.blade.php の fa-regular fa-circle-check と同じ）。
   FontAwesome 6 Free の circle-check（\f058）を regular(font-weight:400) で表示。 */
.reservation-page ul.check-list > li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free", "FontAwesome";
  font-weight: 400;
  position: absolute; left: 0; top: .2em;
  width: auto; height: auto;
  background: none; box-shadow: none; border-radius: 0;
  color: var(--r-blue);
  font-size: 1.05em; line-height: 1.45;
}
.reservation-page ul.check-list .attention { color: var(--r-red); font-weight: 700; }

/* 上部・下部ページネーションの余白調整 */
.reservation-page .reservation-pager { margin: 0 0 16px; }
.reservation-page .reservation-pager.is-bottom { margin: 18px 0 0; }

/* ===== ダイアログ（202110.css のモーダルを踏襲しつつ微調整） ===== */
.reservation-dialog-scope #cancel_dialog .dialog-footer .btn {
  border-radius: 999px; padding: 9px 24px; font-weight: 700;
}
.reservation-dialog-scope #cancel_dialog .btn-primary { background: var(--r-blue); border-color: var(--r-blue); }
.reservation-dialog-scope #cancel_dialog .btn-primary:hover { background: var(--r-blue-hover); border-color: var(--r-blue-hover); }
.reservation-dialog-scope #cancel_dialog #cancel-warn { color: var(--r-red); font-size: .9rem; }
.reservation-dialog-scope #cancel_dialog #errors { color: #b91c1c; font-size: .9rem; }

/* ===== スマホ（680px 以下：行をカード化） ===== */
@media (max-width: 680px) {
  .reservation-page .lesson-table.table { border-spacing: 0; }
  .reservation-page .lesson-table.table > thead { display: none; }
  .reservation-page .lesson-table.table > tbody > tr {
    display: block; background: #fff;
    border: 1px solid var(--r-border);
    border-radius: 14px; padding: 14px 16px; margin-bottom: 12px;
    transition: background .15s, border-color .15s, box-shadow .15s;
  }
  /* 背景の色分けのみ（左の青い印は付けない）。
     ※基準の tr ルールより詳細度を上げるため .table > tbody > tr.xxx のフルパスで指定。 */
  .reservation-page .lesson-table.table > tbody > tr.future  { background: var(--r-blue-soft); }
  .reservation-page .lesson-table.table > tbody > tr.today   { background: var(--r-amber-soft); }
  .reservation-page .lesson-table.table > tbody > tr.passed  { background: #fafafa; }
  /* 選択時：PC と同じく背景を選択色に変更＋カード自体の左端に青いバー＋青枠。
     左バーは inset box-shadow で描くのでレイアウトずれ無し。 */
  .reservation-page .lesson-table.table > tbody > tr.lesson_select {
    background: #d8edfd;
    border-color: var(--r-blue);
    box-shadow: inset 2px 0 0 0 var(--r-blue);
  }

  .reservation-page .lesson-table.table > tbody > tr > th,
  .reservation-page .lesson-table.table > tbody > tr > td {
    display: block; width: auto !important; padding: 6px 0;
    border: 0 !important; border-radius: 0 !important; background: transparent !important;
    box-shadow: none !important; /* PC用 th.date の inset バーを無効化（短い線が浮く不具合の解消） */
    filter: none !important;
  }
  .reservation-page .lesson-table.table > tbody > tr > th.date {
    border-bottom: 1px dashed var(--r-border2) !important; padding-bottom: 10px; margin-bottom: 4px;
  }
  .reservation-page .lesson-table .rate-box { transform: none; }
}

@media (max-width: 600px) {
  .reservation-legend { padding: 12px 14px; }
  .reservation-legend .legend-hint { margin-left: 0; width: 100%; }
  .reservation-checks { padding: 18px 16px; }
  .reservation-page #lesson_cancel { width: 100%; justify-content: center; }
}

/* =========================================================================
   .reservation-calendar-page : カレンダーから予約（reservation_calendar.blade.php）専用デザイン。
   FAQ(.faq-page)／ご利用方法(.manual-page)／レッスン一覧(.reservation-page) と
   同じデザイントークン・カード調で統一する。

   ▼ 注意（重要）
     - 本ページは「ログイン後専用」。レイアウト土台(.main-layout/.main)・
       サイドバー(#sidebar)・カレンダー本体(.lesson-calendar*) は
       mypage_2.css の共有定義をそのまま共用する（ここでは重複定義しない）。
     - ここで足すのは「ヒーロー / 凡例 / 予約コマ(.koma)の微調整 /
       予約不可日(.off)の見え方 / 注意書きカード(.rc-notes)」だけ。
     - 共通クラス .koma / .lesson-calendar* に影響を与えないよう、必ず
       .reservation-calendar-page 配下にスコープする。
   ========================================================================= */
.reservation-calendar-page {
  --rc-blue: #59b8e8;
  --rc-blue-hover: #45a9dd;
  --rc-blue-soft: #f0faff;
  --rc-amber: #ff9f43;
  --rc-red: #ef6b75;
  --rc-text: #1f2937;
  --rc-muted: #4b5563;
  --rc-muted2: #64748b;
  --rc-border: #eceff3;
  --rc-border2: #e2e8f0;

  max-width: 960px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--rc-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ヒーロー（manual と同調） ===== */
.reservation-calendar-page .rc-hero { text-align: center; padding: 1rem 0 1.25rem; }
.reservation-calendar-page .rc-hero-icon {
  width: 56px; height: 56px; margin: 0 auto 1.125rem; border-radius: 18px;
  background: #eaf6fd; color: var(--rc-blue);
  display: flex; align-items: center; justify-content: center;
}
.reservation-calendar-page h1.rc-hero-title {
  margin: 0 0 .75rem; font-size: 1.85rem; font-weight: 800; letter-spacing: .02em;
  color: var(--rc-text);
  /* style.css の h1.page-title 装飾（青帯）を打ち消す */
  background: none; border: 0; box-shadow: none; padding: 0;
}
@media (min-width: 768px) { .reservation-calendar-page h1.rc-hero-title { font-size: 2rem; } }
.reservation-calendar-page .rc-hero-lead {
  margin: 0 auto; font-size: 1rem; line-height: 1.7; color: var(--rc-muted2);
}

/* ===== カレンダーカード（.lesson-calendar 本体は mypage_2.css を共用） =====
   ログイン前に common-page.css だけ読まれた場合の保険として、
   最低限のカード体裁（枠・余白）を保証する（値は mypage_2.css と同一）。 */
.reservation-calendar-page .lesson-calendar {
  border: 1px solid var(--rc-border2);
}
@media (min-width: 640px) {
  .reservation-calendar-page .lesson-calendar { padding: 1.5rem; }
}

/* 予約可能日：クリック可能（カーソル） */
.reservation-calendar-page .lesson-calendar-table td.okey { cursor: pointer; }
/* 予約不可日（過去・範囲外）：淡色＆ホバー無効 */
.reservation-calendar-page .lesson-calendar-table td.off { background: #fafafa; cursor: default; }
.reservation-calendar-page .lesson-calendar-table td.off:hover { background: #fafafa; }
.reservation-calendar-page .lesson-calendar-table td.off .date { color: #cbd5e1; }

/* 予約コマ（ mypage_2.css を共用） */
.reservation-calendar-page .lesson-calendar-table td .koma {
  align-items: flex-start;
  cursor: pointer; line-height: 1.25;
}
.reservation-calendar-page .lesson-calendar-table td .koma .teacher {
  display: block; font-size: 11px; opacity: .92; word-break: break-all;
}

/* ===== 凡例（reservation-page と同調） ===== */
.reservation-calendar-page .rc-legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
  margin: 0 0 14px; padding: 10px 2px;
  font-size: .85rem; color: var(--rc-muted);
}
.reservation-calendar-page .rc-legend-item { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.reservation-calendar-page .rc-dot { width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto; }
.reservation-calendar-page .rc-dot.is-future { background: #2f63bb; }   /* .koma と同色 */
.reservation-calendar-page .rc-dot.is-past   { background: #c4c5c5; }   /* .koma.end と同色 */
.reservation-calendar-page .rc-dot.is-today  { background: var(--rc-amber); }
.reservation-calendar-page .rc-legend-hint {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; color: var(--rc-muted2);
}
.reservation-calendar-page .rc-legend-hint .material-symbols-outlined { font-size: 18px; }

/* ===== 注意書きカード（manual-section / reservation-checks と同調） ===== */
.reservation-calendar-page .rc-notes {
  background: #fff; border: 1px solid var(--rc-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 20px 24px; margin-top: 24px;
}
.reservation-calendar-page h2.rc-notes-title {
  display: flex; align-items: center; gap: 10px; margin: 0 0 14px;
  font-size: 1.05rem; font-weight: 800; color: var(--rc-text);
  background: none; border: 0; padding: 0;
}
.reservation-calendar-page .rc-notes-bar { flex: 0 0 auto; width: 9px; height: 22px; border-radius: 5px; background: var(--rc-blue); }
.reservation-calendar-page ul.check-list { margin: 0; padding: 0; list-style: none; }
.reservation-calendar-page ul.check-list > li {
  position: relative; padding-left: 28px; margin-bottom: 14px;
  font-size: .92rem; line-height: 1.85; color: var(--rc-muted);
}
.reservation-calendar-page ul.check-list > li:last-child { margin-bottom: 0; }
/* ○の中に✓（reservation-page と同じ Font Awesome circle-check を流用） */
.reservation-calendar-page ul.check-list > li::before {
  content: "\f058"; font-family: "Font Awesome 6 Free", "FontAwesome"; font-weight: 400;
  position: absolute; left: 0; top: .2em; color: var(--rc-blue);
  font-size: 1.05em; line-height: 1.45; background: none; box-shadow: none; border-radius: 0;
}
.reservation-calendar-page ul.check-list .attention { color: var(--rc-red); font-weight: 700; }
.reservation-calendar-page ul.check-list a { color: #2b9fd6; text-decoration: underline; font-weight: 600; }

/* ===== スマホ ===== */
@media (max-width: 600px) {
  .reservation-calendar-page .rc-notes { padding: 18px 16px; }
  .reservation-calendar-page .rc-legend-hint { margin-left: 0; width: 100%; }
}

/* =========================================================================
   .logout-page : ログアウト完了（logout.blade.php）専用。
   見た目はほぼ「共通UIパーツ」を流用し、ここではログアウト固有の差分のみ定義する。
     - .page-col / .page-hero(.page-hero-icon/title/lead) / .page-card.is-feature /
       .section-head(.section-bar/.section-title) / .pill-btn / .nav-card* を使用。
   ========================================================================= */
.logout-page {
  --page-max: 760px;   /* このページの中央列幅 */
}

/* ヒーローのチェックアイコンは大きめ＆角丸強め（ログアウト演出） */
.logout-page .page-hero-icon {
  width: 84px; height: 84px; border-radius: 26px;
}
/* リードは読みやすい行長に制限して中央寄せ（.main-layout p{margin:0} に勝つ (0,2,0)） */
.logout-page .page-hero-lead {
  max-width: 30em; margin-left: auto; margin-right: auto; line-height: 1.8;
}
/* 再ログインカード内のボタン並び */
.logout-page .logout-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

@media (max-width: 600px) {
  .logout-page .page-hero-icon { width: 72px; height: 72px; border-radius: 22px; }
  .logout-page .page-card { padding: 26px 18px; }
}

/* =========================================================================
   .about-page : ジャパトークとは（about.blade.php）専用デザイン。
   FAQ(.faq-page)／ご利用方法(.manual-page) と同じデザイントークン・カード調で統一する。
   レイアウト土台（.main-layout / .main）・サイドバー(#sidebar)は上の共有定義を共用。
   ========================================================================= */
.about-page {
  --a-blue: #59b8e8;
  --a-blue-hover: #45a9dd;
  --a-blue-soft: #f0faff;
  --a-blue-bg: #eaf6fd;
  --a-amber: #ff9f43;
  --a-text: #1f2937;
  --a-muted: #4b5563;
  --a-muted2: #64748b;
  --a-faint: #94a3b8;
  --a-border: #eceff3;
  --a-border2: #e2e8f0;

  max-width: 880px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
  color: var(--a-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== ヒーロー ===== */
.about-hero { text-align: center; padding: 1rem 0 1.5rem; }
.about-hero-icon {
  width: 56px; height: 56px; margin: 0 auto 1.125rem; border-radius: 18px;
  background: var(--a-blue-bg); color: var(--a-blue);
  display: flex; align-items: center; justify-content: center;
}
.about-page h1.about-hero-title {
  margin: 0 0 .75rem; font-size: 1.85rem; font-weight: 800; letter-spacing: .02em;
  color: var(--a-text);
  /* style.css の h1.page-title 装飾（青帯）を打ち消す */
  background: none; border: 0; box-shadow: none; padding: 0;
}
@media (min-width: 768px) { .about-page h1.about-hero-title { font-size: 2rem; } }
.about-page .about-hero-lead {
  margin: 0 auto; max-width: 42em; font-size: 1rem; line-height: 1.8; color: var(--a-muted2);
}

/* ===== セクションカード（manual-section と同調） ===== */
.about-section {
  background: #fff; border: 1px solid var(--a-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 24px 26px; margin-bottom: 18px;
}
.about-section-head { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; }
.about-section-bar { flex: 0 0 auto; width: 9px; height: 24px; border-radius: 5px; background: var(--a-blue); }
.about-page h2.about-section-title {
  margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--a-text);
  background: none; border: 0; padding: 0; line-height: 1.45;   /* 旧 .title 装飾を打ち消し */
}

/* 本文テキスト（.main-layout p{margin:0} に勝つよう (0,2,1) でスコープ） */
.about-page .about-section p { margin: 0 0 .95rem; font-size: 15px; line-height: 1.95; color: var(--a-muted); }
.about-page .about-section p:last-child { margin-bottom: 0; }
.about-page .about-section b { color: var(--a-text); font-weight: 700; }
/* 本文中の通常リンク（ピルボタンは除外） */
.about-page .about-section a:not(.pill-btn) { color: #2b9fd6; text-decoration: underline; font-weight: 600; word-break: break-all; }
.about-page .about-section a:not(.pill-btn):hover { color: #1f7fb0; }

/* ===== 目的・悩みのチェックリスト（旧 #about-point を踏襲） =====
   ・チェックボックス（FontAwesome square-check）の羅列。
   ・先生の写真（images/about-point-bg.webp）を右下に背景として配置。
   ・各項目は左寄せ・短文なので、右側に写真が入ってもテキストに重ならない。 */
.about-goals {
  position: relative;
  list-style: none;
  margin: 8px 0 4px;
  padding: 22px 24px;
  min-height: 240px;                 /* 右下の写真を表示する高さを確保 */
  border: 1px solid #e3f1fb;
  border-radius: 14px;
  background-color: #f5f5f5;
  background-image: url('../../images/about-point-bg.webp');   /* 先生の写真（透過WebP） */
  background-repeat: no-repeat;
  background-position: right bottom !important;
  background-size: auto 92%;          /* 縦長写真を右下にすっきり収める */
}
.about-goals li {
  position: relative;
  max-width: 60%;                     /* テキストは左側に保ち、右の写真と重ねない */
  margin: 0 0 9px;
  padding-left: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--a-text);
}
.about-goals li:last-child { margin-bottom: 0; }
.about-goals li::before {
  content: "\f14a";                   /* FontAwesome 6 Free Solid: square-check */
  font-family: "Font Awesome 6 Free", "FontAwesome";
  font-weight: 900;
  position: absolute; left: 0; top: .12em;
  color: var(--a-blue);
  font-size: 1.05em; line-height: 1.4;
}

/* ===== ハイライト（心のこもったレッスン） ===== */
.about-page .about-callout {
  margin: 16px 0 0; padding: 14px 18px; border-radius: 12px;
  background: var(--a-blue-soft); border: 1px solid #dcefff; border-left: 4px solid var(--a-blue);
  font-size: 15px; line-height: 1.85; color: var(--a-muted);
}
.about-page .about-callout b { color: var(--a-blue-hover); }

/* ===== 画像つきセクション（テキスト＋写真） ===== */
.about-feature { display: flex; align-items: flex-start; gap: 24px; }
.about-feature-body { flex: 1 1 auto; min-width: 0; }
.about-feature-img { flex: 0 0 240px; max-width: 240px; }
.about-feature-img img {
  width: 100%; height: auto; border-radius: 14px;
  border: 1px solid var(--a-border); box-shadow: 0 4px 16px -6px rgba(0,0,0,.14);
}

/* ===== 会話の優しさ オプション ===== */
.about-options { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.about-options .about-options-label { font-size: 14px; font-weight: 700; color: var(--a-text); margin-right: 2px; }
.about-options .about-option {
  display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; background: var(--a-blue-soft);
  border: 1px solid #dceefb; color: var(--a-blue-hover);
}

/* ===== レッスン内容リスト（reservation の check-list と同じチェックアイコン） ===== */
.about-lessons { list-style: none; margin: 8px 0 14px; padding: 0; }
.about-lessons li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  font-size: 15px; line-height: 1.8; color: var(--a-muted);
}
.about-lessons li:last-child { margin-bottom: 0; }
.about-lessons li b { color: var(--a-text); font-weight: 700; }
.about-lessons li::before {
  content: "\f058"; font-family: "Font Awesome 6 Free", "FontAwesome"; font-weight: 400;
  position: absolute; left: 0; top: .15em; color: var(--a-blue);
  font-size: 1.05em; line-height: 1.5; background: none; box-shadow: none; border-radius: 0;
}

/* ===== ボタン行 ===== */
.about-page .about-btn-row { margin-top: 18px; }

/* ===== 無料登録 ===== */
.about-signup { text-align: center; margin-top: 32px; }

/* ===== スマホ ===== */
@media (max-width: 640px) {
  .about-feature { flex-direction: column; gap: 18px; }
  .about-feature-img { flex-basis: auto; max-width: 100%; align-self: center; }
  .about-feature-img img { max-width: 320px; display: block; margin: 0 auto; }
}
@media (max-width: 600px) {
  .about-section { padding: 20px 18px; }
  .about-goals {
    min-height: 0;
    padding: 18px 16px 92px;          /* 下に写真用の余白 */
    background-size: 128% auto;        /* スマホは写真を下いっぱいに */
    background-position: right bottom;
  }
  .about-goals li { max-width: 100%; font-size: 1rem; }
}

/* ===== 導入リード（目的リストの前置き） ===== */
.about-page .about-goals-lead { margin: 4px 0 8px; font-size: 15px; font-weight: 700; color: var(--a-text); }

/* ===== 目的別カード（「目的に合わせて学べます」） ===== */
.about-purpose-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 6px;
}
.about-purpose {
  background: #fff; border: 1px solid var(--a-border); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03); padding: 18px 18px 16px;
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.about-purpose:hover {
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.14); border-color: #dceefb; transform: translateY(-2px);
}
.about-purpose-icon {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--a-blue-soft); color: var(--a-blue);
}
.about-page h3.about-purpose-title {
  margin: 0 0 5px; font-size: 1rem; font-weight: 800; color: var(--a-text);
  background: none; border: 0; padding: 0; line-height: 1.4;
}
/* 説明文（.about-section p より詳細度を上げて上書き） */
.about-page .about-purpose .about-purpose-desc {
  margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--a-muted2);
}

@media (max-width: 860px) { .about-purpose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .about-purpose-grid { grid-template-columns: 1fr; } }

/* ===== 新機能ハイライト（「いろいろなレッスンができます」内の例文学習） ===== */
.about-newfeature {
  margin-top: 18px;
  border: 1px solid #dcefff;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 70%);
  padding: 18px 20px;
}
.about-newfeature-head {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 10px;
}
.about-newfeature-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  background: var(--a-blue); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.about-page h3.about-newfeature-title {
  margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--a-text);
  background: none; border: 0; padding: 0; line-height: 1.4;
}
/* 本文（.about-section p と同詳細度。後勝ちで上書きするため、この行は about ブロックより後に置く） */
.about-page .about-newfeature p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.85; color: var(--a-muted); }
.about-page .about-newfeature p:last-of-type { margin-bottom: 0; }
.about-newfeature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.about-newfeature-tag {
  display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  background: var(--a-blue-soft); border: 1px solid #dceefb; color: var(--a-blue-hover);
}
@media (max-width: 600px) { .about-newfeature { padding: 16px 16px; } }

/* ===== 先生写真を大きく見せる差別化パネル（about 冒頭の「他校との違い」） =====
   先生の写真（about-point-bg.webp / 259×336・透過）を、PCでは右側に大きく、
   スマホでは本文の下に大きく置き、テキストと重ならないよう余白を確保する。
   ※ .about-page を前置して詳細度を上げ、共有の .about-goals 既定値より確実に勝たせる。 */
.about-page .about-goals--lg {
  background-position: right bottom;
}
.about-page .about-goals--lg li { max-width: 56%; }   /* テキストは左側に保ち、大きな写真と重ねない */

@media (max-width: 600px) {
  .about-page .about-goals--lg {
    min-height: 0;
    padding: 18px 16px 300px;          /* 下に写真用の余白をしっかり確保（文字と被らない） */
    background-size: auto 280px;        /* スマホでも大きく（高さ280px） */
    background-position: center bottom; /* 下中央に大きく表示 */
  }
  .about-page .about-goals--lg li { max-width: 100%; }
}

/* =========================================================================
   .terms-page : ご利用規約（agreement.blade.php）専用デザイン。
   FAQ(.faq-page)／ご利用方法(.manual-page)／about(.about-page) と同じ
   デザイントークン・カード調で統一する。

   ▼ 共用（ここでは再定義しない）
     - レイアウト土台 : .main-layout / .main（上の共有定義）
     - サイドバー     : #sidebar 系（common-sidebar.css）
     - 中央寄せ列     : .page-col（--page-max で最大幅指定）
     - ヒーロー       : .page-hero / .page-hero-icon / .page-hero-title / .page-hero-lead
     - 白カード       : .page-card
     - 見出しバー     : .section-head / .section-bar / .section-title
     - ボタン         : .pill-btn
   ▼ ここで足すのは「規約本文の文字組み」だけ（段落・番号リスト・定義リスト・注記）。
     トークンは .main-layout の --ui-* を共用する。
   ========================================================================= */

/* 条文カード同士の間隔 */
.terms-page .page-card { margin-bottom: 14px; }
.terms-page .page-card:last-child { margin-bottom: 0; }

/* カード内の見出しバー（.section-head 既定の大きな上マージンを打ち消す） */
.terms-page .page-card > .section-head { margin: 0 0 14px; }

/* 前文リード（.main-layout p{margin:0} に勝つよう (0,2,0) でスコープ） */
.terms-page .terms-lead {
  margin: 0 0 20px; font-size: 15px; line-height: 1.95; color: var(--ui-muted);
}

/* 条文本文（同上の詳細度で margin を効かせる） */
.terms-page .page-card p { margin: 0 0 .85rem; font-size: 15px; line-height: 1.95; color: var(--ui-muted); }
.terms-page .page-card p:last-child { margin-bottom: 0; }
.terms-page .page-card b { color: var(--ui-text); font-weight: 700; }
.terms-page .page-card a:not(.pill-btn) { color: #2b9fd6; text-decoration: underline; font-weight: 600; word-break: break-all; }
.terms-page .page-card a:not(.pill-btn):hover { color: #1f7fb0; }

/* 番号つき小項目（（1）（2）… / a）b）…）。ぶら下げインデントは flex で実現 */
.terms-page .terms-list { margin: 6px 0 .9rem; padding: 0; list-style: none; }
.terms-page .terms-list:last-child { margin-bottom: 0; }
.terms-page .terms-list > li {
  display: flex; gap: .5em; margin-bottom: 8px;
  font-size: 15px; line-height: 1.85; color: var(--ui-muted);
}
.terms-page .terms-list > li:last-child { margin-bottom: 0; }
.terms-page .terms-num { flex: 0 0 auto; color: var(--ui-blue); font-weight: 700; }
.terms-page .terms-txt { min-width: 0; }
/* 入れ子（a）b）c）） */
.terms-page .terms-list .terms-list { margin: 8px 0 0; }
.terms-page .terms-list .terms-list .terms-num { color: var(--ui-muted2); }

/* サービス規定など「小見出し＋説明」の並び（第8条） */
.terms-page .terms-defs { margin: 4px 0 0; }
.terms-page .terms-def { padding: 13px 0; border-top: 1px solid var(--ui-border); }
.terms-page .terms-def:first-child { border-top: 0; padding-top: 0; }
.terms-page .terms-def:last-child { padding-bottom: 0; }
.terms-page .terms-def-term {
  display: flex; align-items: baseline; gap: 8px;
  margin: 0 0 5px; font-size: 15px; font-weight: 800; color: var(--ui-text); line-height: 1.5;
}
.terms-page .terms-def-term::before {
  content: ""; flex: 0 0 auto; align-self: center;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ui-blue);
}
.terms-page .terms-def p { margin: 0; font-size: 14.5px; line-height: 1.9; color: var(--ui-muted); }

/* 注記（※・補足） */
.terms-page .terms-note {
  margin: 8px 0 0; padding: 10px 14px; border-radius: 10px;
  background: #f8fafc; border: 1px solid var(--ui-border2);
  font-size: 13.5px; line-height: 1.8; color: var(--ui-muted2);
}

/* 重要ポイントの強調（Zoom運用など） */
.terms-page .terms-highlight {
  margin: 10px 0 0; padding: 12px 16px; border-radius: 12px;
  background: var(--ui-blue-soft); border: 1px solid #dcefff; border-left: 4px solid var(--ui-blue);
  font-size: 14.5px; line-height: 1.85; color: var(--ui-muted);
}
.terms-page .terms-highlight b { color: var(--ui-blue-hover); }

/* スマホ */
@media (max-width: 600px) {
  .terms-page .page-card { padding: 18px 16px; }
}

/* =========================================================================
   .information-page : お知らせ詳細（information_detail.blade.php）専用デザイン。
   FAQ(.faq-page)／ご利用方法(.manual-page)／about(.about-page) と同じ
   デザイントークン・カード調で統一する。

   ▼ 共用（ここでは再定義しない）
     - レイアウト土台 : .main-layout / .main（上の共有定義）
     - サイドバー     : #sidebar 系（common-sidebar.css）
     - 中央寄せ列     : .page-col（--page-max で最大幅指定）
     - ヒーロー       : .page-hero / .page-hero-icon / .page-hero-title / .page-hero-lead
     - 白カード       : .page-card
   ▼ ここで足すのは、DB由来の自由記述本文（$information->Body）を安全に読みやすく
     見せるための typography（段落・リンク・画像・リスト・表・見出し・引用）だけ。
   ========================================================================= */
.information-page {
  --info-blue: #59b8e8;
  --info-blue-hover: #45a9dd;
  --info-blue-soft: #f0faff;
  --info-text: #1f2937;
  --info-muted: #4b5563;
  --info-muted2: #64748b;
  --info-border: #eceff3;
  --info-border2: #e2e8f0;
}

/* ===== ヒーロー（タイトル） =====
   Title は DB 由来で長さが不定のため、page-hero-title 既定の letter-spacing / 1行想定を
   崩さないよう word-break を明示し、折り返しても綺麗に収まるようにする。 */
.information-page .info-hero { padding-bottom: 1.25rem; }
.information-page .info-hero .page-hero-title { word-break: break-word; }

/* ===== 本文カード ===== */
.information-page .info-card { padding: 28px 30px; }

/* ===== 本文タイポグラフィ（$information->Body の {!! !!} 出力範囲）=====
   .main-layout p{margin:0} 等の共通リセット (0,1,1) に確実に勝つよう
   .information-page .info-body ... で (0,3,0) 以上のスコープにしている。 */
.information-page .info-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--info-muted);
  word-break: auto-phrase;
}
.information-page .info-body > *:first-child { margin-top: 0; }
.information-page .info-body > *:last-child { margin-bottom: 0; }

.information-page .info-body p { margin: 0 0 1rem; }

.information-page .info-body a {
  color: #2b9fd6;
  text-decoration: underline;
  font-weight: 600;
  word-break: break-all;
}
.information-page .info-body a:hover { color: #1f7fb0; }

.information-page .info-body b,
.information-page .info-body strong { color: var(--info-text); font-weight: 700; }

.information-page .info-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 4px 0 1.1rem;
  border: 1px solid var(--info-border);
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.12);
}

.information-page .info-body ul,
.information-page .info-body ol {
  margin: 0 0 1rem;
  padding-left: 1.4em;
}
.information-page .info-body li { margin-bottom: 0.4rem; line-height: 1.85; }
.information-page .info-body li:last-child { margin-bottom: 0; }

.information-page .info-body h2,
.information-page .info-body h3,
.information-page .info-body h4 {
  margin: 1.7rem 0 0.85rem;
  font-weight: 800;
  color: var(--info-text);
  line-height: 1.5;
  background: none;
  border: 0;
  padding: 0;
}
.information-page .info-body h2:first-child,
.information-page .info-body h3:first-child,
.information-page .info-body h4:first-child { margin-top: 0; }
.information-page .info-body h2 { font-size: 1.15rem; }
.information-page .info-body h3 { font-size: 1.05rem; }
.information-page .info-body h4 { font-size: 1rem; }

.information-page .info-body hr {
  border: 0;
  border-top: 1px solid var(--info-border2);
  margin: 1.5rem 0;
}

.information-page .info-body blockquote {
  margin: 0 0 1rem;
  padding: 12px 16px;
  border-left: 4px solid var(--info-blue);
  background: var(--info-blue-soft);
  color: var(--info-muted);
  border-radius: 0 10px 10px 0;
}
.information-page .info-body blockquote p:last-child { margin-bottom: 0; }

.information-page .info-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.1rem;
  font-size: 14px;
}
.information-page .info-body table th,
.information-page .info-body table td {
  padding: 9px 12px;
  border: 1px solid var(--info-border2);
  text-align: left;
  vertical-align: top;
}
.information-page .info-body table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--info-text);
}

/* ===== スマホ ===== */
@media (max-width: 600px) {
  .information-page .info-card { padding: 20px 18px; }
}

/* =========================================================================
   .company-page : 会社概要（company.blade.php）専用デザイン。
   FAQ(.faq-page)／ご利用規約(.terms-page)／about(.about-page) と同じ
   デザイントークン・カード調で統一する。

   ▼ 共用（ここでは再定義しない）
     - レイアウト土台 : .main-layout / .main（上の共有定義）
     - サイドバー     : #sidebar 系（common-sidebar.css）
     - 中央寄せ列     : .page-col（--page-max で最大幅指定）
     - ヒーロー       : .page-hero / .page-hero-icon / .page-hero-title / .page-hero-lead
     - 白カード       : .page-card
     - 見出しバー     : .section-head / .section-bar / .section-title
     - ボタン         : .pill-btn
   ▼ ここで足すのは「会社情報の定義リスト（.company-table）」と
     お問い合わせカードの文字組みだけ。トークンは .main-layout の --ui-* を共用する。
   ========================================================================= */

/* カード同士の間隔（.terms-page と同じリズム） */
.company-page .page-card { margin-bottom: 14px; }
.company-page .page-card:last-child { margin-bottom: 0; }

/* カード内の見出しバー（.section-head 既定の大きな上マージンを打ち消す） */
.company-page .page-card > .section-head { margin: 0 0 16px; }

/* 会社情報の定義リスト（dl > .company-row > dt/dd の2カラム行） */
.company-page .company-table { margin: 0; }
.company-page .company-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 0 18px;
  padding: 14px 4px; border-top: 1px solid var(--ui-border);
  font-size: 15px; line-height: 1.85;
}
.company-page .company-row:first-child { border-top: 0; padding-top: 2px; }
.company-page .company-row:last-child { padding-bottom: 2px; }
.company-page .company-row > dt {
  display: flex; align-items: baseline; gap: 8px;
  margin: 0; font-weight: 800; color: var(--ui-text);
}
.company-page .company-row > dt::before {
  content: ""; flex: 0 0 auto; align-self: center;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ui-blue);
}
.company-page .company-row > dd { margin: 0; min-width: 0; color: var(--ui-muted); }

/* 社名の英語表記など補足行 */
.company-page .company-sub { font-size: 13.5px; color: var(--ui-muted2); }

/* 業務内容（チップ風の横並びリスト） */
.company-page .company-biz {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 2px 0 0; padding: 0; list-style: none;
}
.company-page .company-biz > li {
  padding: 5px 14px; border-radius: 999px;
  background: var(--ui-blue-soft); border: 1px solid #dcefff;
  font-size: 13.5px; font-weight: 700; color: #2b9fd6; line-height: 1.6;
}

/* お問い合わせカード */
.company-page .company-contact-lead {
  margin: 0 0 16px; font-size: 15px; line-height: 1.9; color: var(--ui-muted);
}
.company-page .company-contact-btn { margin: 0; text-align: center; }

/* スマホ：ラベルと値を縦積みに */
@media (max-width: 600px) {
  .company-page .page-card { padding: 18px 16px; }
  .company-page .company-row {
    grid-template-columns: 1fr; gap: 4px 0; padding: 12px 2px;
  }
}
