/* ==== company.css (会社概要ページ専用) ==== */
:root{
  --bg:#edf5fb; --ink:#0f172a; --muted:#64748b; --card:#ffffff; --line:#e6eef6;
  --brand:#2563eb; --accent:#60a5fa; --pill:#1d4ed8; --hero-from:#eff6ff; --hero-to:#e0f2fe;
  --shadow:0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.06);
  --radius:16px;
}

/* Hero (simple) */
.hero{
  background:
    radial-gradient(1200px 500px at 20% -50%, var(--hero-from), transparent 70%),
    radial-gradient(1200px 500px at 100% 0%, var(--hero-to), transparent 60%),
    #fff;
  border-top:1px solid var(--line);
}
.hero__wrap{display:grid;grid-template-columns:1fr;gap:24px;padding:64px 0}

/* Company table */
.kv{padding:20px}
.info-table{border:1px solid var(--line);border-radius:16px;overflow:hidden;background:#fff}
.info-row{display:grid;grid-template-columns:180px 1fr}
.info-row > div{padding:14px 16px;border-bottom:1px solid var(--line)}
.info-row .head{background:#f3f6fb;font-weight:700}
.info-row:last-child > div{border-bottom:none}
@media (max-width:640px){
  .info-row{grid-template-columns:1fr}
  .info-row .head{border-bottom:1px solid var(--line)}
}

/* CTA / Footer helpers */
.cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:10px}
.cta--flat .btn{border-radius:12px}

/* お問い合わせ CTA カード（法人・複数台・特殊ケース） */
.contact-cta{
  padding:22px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-cta__text{ margin-bottom:14px; }

/* 見出し・本文（折り返し制御は無し） */
.cta-eyebrow{
  display:inline-block;
  background:#eef2ff;
  color:#1e40af;
  border:1px solid #dbeafe;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}
.cta-title{
  font-size: clamp(22px, 2.6vw, 28px);
  line-height:1.3;
  margin:8px 0 6px;
  font-weight:900;
}
.cta-lead{
  color:#0f172a;
  opacity:.9;
  font-size:15px;
}

/* ▼ ボタン行：横並び・テキストに応じた幅 */
.contact-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  width:100%;
}
.contact-cta__actions--row{ align-items:stretch; }
.btn--row{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-size:16px;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
}

/* ボタン（全体のstyle.cssに既にあればこの節は省略OK） */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 16px;border-radius:10px;border:1px solid var(--line);text-decoration:none;font-weight:800}
.btn--brand{background:var(--brand);border-color:var(--brand);color:#fff}
.btn--ghost{background:#fff;color:#0f172a}
.btn--line{
  background:#06C755;  /* ヘッダーと同系のLINEカラー */
  color:#fff;border-color:#06C755;
}
.btn--lg{ font-size:18px; padding:14px 22px; border-radius:12px }

.cta-note{font-size:12px;color:#334155;margin-top:6px}

/* 予約帯（背景はそのまま、中身を枠で囲う） */
.cta-band{
  /* margin の上側で body の水色が見えるのを避けるため、上マージンをゼロに */
  margin: 0 0 0;
  padding:32px 0;
  background:linear-gradient(135deg, var(--hero-from), #e7f0ff);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  position:relative;
}

/* 中身をカードで囲んで余白は“内部”で確保 */
.cta-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:20px;
  /* 上に少し余白を持たせて見た目の間隔を作る（背景のにじみは発生しない） */
  margin-top:8px;
}

.cta-band__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:center;
}
@media(max-width:900px){
  .cta-band__inner{ grid-template-columns:1fr }
}
.cta-band__actions{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:10px;
}
.cta-note{font-size:12px;color:#334155}
