/* ============================================================
   タクスル フォーム営業LP v1 - style.css
   - Elementor移植を想定：BEM風命名 / 各セクションは独立した塊
   - カラーは :root のCSS変数で一元管理（差し替えはここだけ）
   - レスポンシブ：max-width 1100px / 768px / 480px の3段
============================================================ */

/* ============================================================
   :root - ブランドカラー（taksul.com 2026-05-26 実測）
   差し替える場合はここの値だけ書き換える
============================================================ */
:root {
  --tk-primary:        #00338D; /* ネイビーブルー（メイン） */
  --tk-primary-dark:   #001F5C;
  --tk-primary-light:  #34ACFC; /* サブブルー */
  --tk-accent:         #FC8535; /* オレンジ（CTA） */
  --tk-accent-dark:    #E36E1F;
  --tk-highlight:      #FFF900; /* 強調イエロー */
  --tk-warn:           #CC3366; /* 注意ピンク */
  --tk-text:           #1a1a1a;
  --tk-text-sub:       #494C4F;
  --tk-text-light:     #ffffff;
  --tk-bg:             #ffffff;
  --tk-bg-gray:        #F3F4F6;
  --tk-bg-dark:        #00338D;
  --tk-border:         #e0e0e0;

  --tk-font-base:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  --tk-radius:         8px;
  --tk-radius-lg:      16px;
  --tk-shadow:         0 4px 16px rgba(0, 51, 141, 0.08);
  --tk-shadow-lg:      0 8px 32px rgba(0, 51, 141, 0.15);
  --tk-section-pad:    96px 0;
  --tk-section-pad-sp: 56px 0;
}

/* ============================================================
   Reset & Base
============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--tk-font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--tk-text);
  background: var(--tk-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tk-primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; }

/* ============================================================
   Layout: container / section
============================================================ */
.tk-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.tk-section {
  padding: var(--tk-section-pad);
}
.tk-section__eyebrow {
  color: var(--tk-primary-light);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 12px;
}
.tk-section__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--tk-primary);
}
.tk-section__title--light { color: var(--tk-text-light); }
.tk-section__lead {
  text-align: center;
  font-size: 17px;
  color: var(--tk-text-sub);
  margin-bottom: 56px;
  line-height: 1.9;
}
.tk-section__lead--light { color: var(--tk-text-light); opacity: .9; }

/* ============================================================
   Buttons
============================================================ */
.tk-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--tk-radius);
  font-weight: 700;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background-color .15s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15px;
}
.tk-btn:hover { transform: translateY(-2px); opacity: 1; }
.tk-btn--accent {
  background: var(--tk-accent);
  color: #fff;
  box-shadow: var(--tk-shadow);
}
.tk-btn--accent:hover { background: var(--tk-accent-dark); box-shadow: var(--tk-shadow-lg); }
.tk-btn--primary {
  background: var(--tk-primary);
  color: #fff;
}
.tk-btn--primary:hover { background: var(--tk-primary-dark); }
.tk-btn--outline {
  background: transparent;
  color: var(--tk-primary);
  border-color: var(--tk-primary);
}
.tk-btn--outline:hover { background: var(--tk-primary); color: #fff; }
.tk-btn--lg { padding: 18px 40px; font-size: 17px; }
.tk-btn--block { display: block; width: 100%; }

/* ============================================================
   Image placeholder（画像が入る前の枠）
   ※本番デプロイ時はこのスタイルだけ削除すればクリーンなレイアウトに
============================================================ */
.tk-section.tk-hero .tk-img-placeholder {
    background: none;
    border: none;
    border-radius: none; 
    text-align: center;
}

.tk-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-align: center;
  padding: 14px;
  min-height: 200px;
  position: relative;
}
.tk-img-placeholder__label {
  font-weight: 700;
  /* font-size: 14px; */
  font-size: 28px;
  letter-spacing: .12em;
  /* color: var(--tk-primary); */
  color: #8097c1;
  border-radius: 4px;
  display: block;
}
.tk-img-placeholder__hint {
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
}
/* ============================================================
   1. HEADER
============================================================ */
.tk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--tk-border);
}
.tk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.tk-header__nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.tk-header__nav a {
  color: var(--tk-text);
  font-weight: 500;
  font-size: 15px;
  font-weight: bold;
}
.tk-header__cta { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   2. HERO
============================================================ */
.tk-hero {
  /* 電話営業LP（v2 standalone）のFVと背景を統一：濃紺グラデーション */
  background: linear-gradient(135deg, var(--tk-primary) 0%, #001B5C 100%);
  color: var(--tk-text-light);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* 装飾：ぼかし円（電話営業LPのFVと同じ・オレンジ右上／サブブルー左下） */
.tk-hero::before{
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: var(--tk-accent);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}
.tk-hero::after{
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: var(--tk-primary-light);
  opacity: 0.20;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}
.tk-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  align-items: center;
  position: relative; /* ぼかし円より前面にテキストを置く */
  z-index: 1;
}
.tk-hero__eyebrow {
  color: var(--tk-primary-light);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 16px;
  margin-bottom: 16px;
}
.tk-hero__title {
  font-size: 44px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--tk-text-light); /* 濃紺背景に合わせ白文字 */
  margin-bottom: 24px;
}
.tk-hero__title--accent {
  color: var(--tk-highlight); /* 電話営業LPと同じイエローのアクセント */
}
.tk-hero__lead {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 32px;
  color: var(--tk-text-light);
}
.tk-hero__lead strong { color: #fff; font-weight: 700; }
.tk-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tk-hero__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
/* 濃紺ヒーロー上のアウトラインボタン（白枠・白文字／ホバーで反転） */
.tk-hero .tk-btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}
.tk-hero .tk-btn--outline:hover {
  background: #fff;
  color: var(--tk-primary);
  border-color: #fff;
}
.tk-hero__copy {
width: 100%;
}

/* ============================================================
   3. ISSUES（課題提示）
============================================================ */
.tk-issues { background: #fff; }
.tk-issues__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tk-issues__item {
  background: var(--tk-bg-gray);
  border-radius: var(--tk-radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.tk-issues__num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 36px;
  font-weight: 800;
  color: var(--tk-primary);
  opacity: .15;
}
.tk-issues__icon {
  width: 96px;
  height: 96px;
  margin: 12px auto 20px;
  min-height: auto;
  border-radius: 50%;
}
.tk-issues__title {
  font-size: 16px;
  color: var(--tk-primary);
  margin-bottom: 12px;
}
.tk-issues__item p {
  font-size: 14px;
  color: var(--tk-text-sub);
  line-height: 1.8;
}

/* ============================================================
   4. SERVICE
============================================================ */
.tk-service { background: var(--tk-bg-gray); }
.tk-service__flow img{
  border-radius: var(--tk-radius-lg) var(--tk-radius-lg) 0 0 ;
  box-shadow: var(--tk-shadow);
}
.tk-service__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: #fff;
  padding: 32px 24px;
  border-radius: 0 0 var(--tk-radius-lg) var(--tk-radius-lg);
  box-shadow: var(--tk-shadow);
}
.tk-service__steps li {
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 8px;
  border-right: 1px solid var(--tk-border);
}
.tk-service__steps li:last-child { border-right: none; }
.tk-service__steps strong { color: var(--tk-primary); font-size: 16px; display: block; margin-bottom: 8px; }

/* ============================================================
   5. NUMBERS（数字インフォグラフィック）
============================================================ */
.tk-numbers {
  background: var(--tk-primary);
  color: #fff;
}
.tk-numbers__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.tk-numbers__list li {
  text-align: center;
}
.tk-numbers__num {
  display: block;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--tk-highlight);
}
.tk-numbers__num small {
  font-size: 24px;
  font-weight: 700;
  opacity: .85;
}
.tk-numbers__unit {
  display: block;
  font-size: 14px;
  opacity: .85;
  margin: 8px 0 16px;
}
.tk-numbers__list p {
  font-size: 13px;
  opacity: .9;
  line-height: 1.6;
}

/* ============================================================
   6. PLANS
============================================================ */
.tk-plans { background: #fff; }
.tk-plans__highlight {
  color: var(--tk-accent);
  font-size: 1.1em;
}
.tk-plan-main {
  background: linear-gradient(135deg, var(--tk-primary) 0%, var(--tk-primary-dark) 100%);
  color: #fff;
  border-radius: var(--tk-radius-lg);
  padding: 48px;
  margin: 32px auto 56px;
  max-width: 760px;
  text-align: center;
  position: relative;
  box-shadow: var(--tk-shadow-lg);
}
.tk-plan-main__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tk-accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 999px;
  letter-spacing: .1em;
}
.tk-plan-main__name {
  font-size: 32px;
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.tk-plan-main__sub { font-size: 15px; opacity: .85; margin-bottom: 20px; }
.tk-plan-main__price {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--tk-highlight);
}
.tk-plan-main__price small {
  font-size: 16px;
  opacity: .85;
  font-weight: 500;
  color: #fff;
  margin-left: 4px;
}
.tk-plan-main__feats {
  text-align: left;
  margin: 0 auto 32px;
  max-width: 520px;
}
.tk-plan-main__feats li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.tk-plan-main__feats li::before {
  content: "✓";
  color: var(--tk-highlight);
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 8px;
}

.tk-plans__compare-title {
  font-size: 22px;
  text-align: center;
  margin: 56px 0 24px;
  color: var(--tk-primary);
}

/* テーブル共通 */
.tk-table-wrap { overflow-x: auto; }
.tk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: var(--tk-radius);
  overflow: hidden;
  box-shadow: var(--tk-shadow);
  min-width: 720px;
}
.tk-table th, .tk-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid var(--tk-border);
  border-right: 1px solid var(--tk-border);
}
.tk-table th:last-child, .tk-table td:last-child { border-right: none; }
.tk-table thead th {
  background: var(--tk-primary);
  color: #fff;
  font-weight: 700;
}
.tk-table thead th span {
  display: block;
  font-size: 13px;
  opacity: .9;
  font-weight: 500;
  margin-top: 4px;
}
.tk-table tbody td:first-child {
  background: var(--tk-bg-gray);
  text-align: left;
  font-weight: 600;
  color: var(--tk-text-sub);
}
.tk-table .tk-table__hl {
  background: rgba(252, 133, 53, 0.08);
  font-weight: 700;
  color: var(--tk-accent-dark);
}
.tk-table thead .tk-table__hl {
  background: var(--tk-accent);
  color: #fff;
}

.tk-plans__note {
  font-size: 12px;
  color: var(--tk-text-sub);
  background: #fffaf0;
  border-left: 3px solid var(--tk-accent);
  padding: 16px 20px;
  margin: 24px 0;
  line-height: 1.8;
}
.tk-plans__cta {
  text-align: center;
  margin-top: 32px;
}
.tk-container img.check{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: sub;
}
/* ============================================================
   7. COMPARE（競合比較）
============================================================ */
.tk-compare { background: var(--tk-bg-gray); }
.tk-compare__reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tk-compare__reasons li {
  background: #fff;
  border-radius: var(--tk-radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--tk-shadow);
}
.tk-compare__icon {
  display: inline-block;
  font-size: 40px;
  margin-bottom: 12px;
}
.tk-compare__reasons h3 {
  font-size: 16px;
  color: var(--tk-primary);
  margin-bottom: 8px;
}
.tk-compare__reasons p {
  font-size: 13px;
  color: var(--tk-text-sub);
  line-height: 1.7;
}
.tk-compare__reasons li .tk-compare__icon{
  width: 30%;
}

/* ============================================================
   8. VOICES（お客様の声）— パンフv2 p5/p6 準拠・電話営業LPと共通構造
============================================================ */
.tk-testimonials { background: var(--tk-bg-gray); }

/* ===== メイン3件（カード） ===== */
.tk-testimonials .voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  text-align: left; margin-top: 8px;
}
.voice-card {
  background: #fff; border: 1px solid var(--tk-border); border-radius: var(--tk-radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
  box-shadow: var(--tk-shadow); transition: all .25s ease;
}
.voice-card:hover { transform: translateY(-4px); border-color: var(--tk-primary); box-shadow: var(--tk-shadow-lg); }

/* 見出し（顔＋肩書き） */
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.voice-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--tk-border); box-shadow: 0 2px 8px rgba(0, 51, 141, .18);
}
.voice-avatar img, .voice-avatar svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.voice-name { font-size: 13.5px; font-weight: 800; color: var(--tk-primary); line-height: 1.45; }
.voice-role { font-size: 12.5px; color: var(--tk-text-sub); margin-top: 2px; line-height: 1.5; }

/* 反応率バッジ */
.voice-rate {
  display: inline-flex; align-items: baseline; gap: 8px; align-self: flex-start;
  background: #FFF3EA; border: 1px solid #FFD9BD; border-radius: 999px;
  padding: 7px 16px; margin-bottom: 18px;
}
.voice-rate-num { font-size: 22px; font-weight: 800; color: var(--tk-accent); line-height: 1; }
.voice-rate-label { font-size: 12px; font-weight: 700; color: var(--tk-text-sub); }

/* コメント */
.voice-comment {
  font-size: 14.5px; color: var(--tk-text); line-height: 1.9;
  position: relative; padding-top: 18px;
}
.voice-comment::before {
  content: "\201C"; position: absolute; top: -6px; left: -2px;
  font-size: 44px; font-weight: 800; color: var(--tk-accent); opacity: .35; line-height: 1; font-family: Georgia, serif;
}

/* 持ち味タグ */
.voice-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.voice-tags span {
  font-size: 11.5px; font-weight: 700; color: var(--tk-primary);
  background: #EAF0FB; border-radius: 6px; padding: 5px 10px;
}

/* ===== その他の声（吹き出しジグザグ行） ===== */
.voice-more-label {
  margin: 56px auto 24px; display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 800; color: var(--tk-primary); letter-spacing: .04em;
}
.voice-more-label::before, .voice-more-label::after {
  content: ""; width: 36px; height: 2px; background: var(--tk-border);
}
.voice-more {
  display: flex; flex-direction: column; gap: 18px;
  max-width: none; margin: 0 auto;
}
.voice-row { display: flex; align-items: center; gap: 18px; }
.voice-row.right { flex-direction: row-reverse; }
.voice-mini-avatar {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 51, 141, .15);
}
.voice-mini-avatar svg { width: 100%; height: 100%; display: block; }
.voice-row-id { flex-shrink: 0; width: 118px; text-align: left; }
.voice-row.right .voice-row-id { text-align: right; }
.voice-row-name { font-size: 13px; font-weight: 800; color: var(--tk-primary); line-height: 1.4; }
.voice-row-rate { font-size: 11.5px; font-weight: 700; color: var(--tk-accent); margin-top: 3px; }
.voice-bubble {
  position: relative; flex: 1; background: #fff; border: 1px solid var(--tk-border);
  border-radius: 14px; padding: 13px 18px; font-size: 14px; color: var(--tk-text);
  line-height: 1.7; box-shadow: var(--tk-shadow); text-align: left;
}
/* 吹き出しのしっぽ（顔の方向へ） */
.voice-row:not(.right) .voice-bubble::after,
.voice-row:not(.right) .voice-bubble::before { right: auto; }
.voice-row:not(.right) .voice-bubble::before {
  content: ""; position: absolute; top: 50%; left: -9px; transform: translateY(-50%) rotate(45deg);
  width: 16px; height: 16px; background: #fff;
  border-left: 1px solid var(--tk-border); border-bottom: 1px solid var(--tk-border);
}
.voice-row.right .voice-bubble::before {
  content: ""; position: absolute; top: 50%; right: -9px; transform: translateY(-50%) rotate(45deg);
  width: 16px; height: 16px; background: #fff;
  border-right: 1px solid var(--tk-border); border-top: 1px solid var(--tk-border);
}

/* すべての声を見るボタン */
.voice-more-cta { margin-top: 40px; }
.voice-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 2px solid var(--tk-primary); border-radius: 999px;
  color: var(--tk-primary); font-weight: 800; font-size: 15px; background: #fff; transition: all .2s ease;
}
.voice-more-btn:hover { background: var(--tk-primary); color: #fff; }

.voice-note {
  font-size: 12.5px; color: var(--tk-text-sub); line-height: 1.8;
  margin-top: 36px; max-width: 880px; margin-left: auto; margin-right: auto; text-align: left;
}

/* ============================================================
   9. FAQ
============================================================ */
.tk-faq { background: var(--tk-bg-gray); }
.tk-faq__list { max-width: 820px; margin: 0 auto; }
.tk-faq__item {
  background: #fff;
  border-radius: var(--tk-radius);
  margin-bottom: 16px;
  box-shadow: var(--tk-shadow);
  overflow: hidden;
}
.tk-faq__item dt {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--tk-primary);
  font-size: 16px;
  border-bottom: 1px solid var(--tk-border);
  background: #fcfdff;
}
.tk-faq__item dd {
  margin: 0;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--tk-text);
  line-height: 1.9;
}

/* ============================================================
   10. FINAL CTA + FORM
============================================================ */
.tk-final-cta {
  background: linear-gradient(135deg, var(--tk-primary) 0%, var(--tk-primary-dark) 100%);
  color: #fff;
  text-align: center;
}
.tk-final-cta__buttons {
  margin: 32px 0 48px;
}

.tk-form {
  background: #fff;
  color: var(--tk-text);
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--tk-radius-lg);
  text-align: left;
  box-shadow: var(--tk-shadow-lg);
}
.tk-form__intro {
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--tk-primary);
}
.tk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.tk-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tk-text-sub);
  margin-bottom: 16px;
}
.tk-form label span {
  display: inline-block;
  background: var(--tk-warn);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.tk-form input[type="text"],
.tk-form input[type="email"],
.tk-form textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.tk-form input:focus, .tk-form textarea:focus {
  outline: none;
  border-color: var(--tk-primary-light);
  box-shadow: 0 0 0 3px rgba(52, 172, 252, 0.15);
}
.tk-form__privacy {
  font-size: 13px;
  margin-bottom: 20px;
}
.tk-form__privacy label {
  display: inline;
  font-weight: 400;
}

/* ============================================================
   11. FOOTER
============================================================ */
.tk-footer {
  background: #0a1530;
  color: #b8c5e0;
  padding: 56px 0 24px;
  font-size: 14px;
}
.tk-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tk-footer__brand img { margin-bottom: 12px; filter: brightness(0) invert(1); }
.tk-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-content: start;
}
.tk-footer__nav a { color: #b8c5e0; font-size: 13px; }
.tk-footer__nav a:hover { color: #fff; }
.tk-footer__disclaimer {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  border-radius: var(--tk-radius);
  padding: 24px;
  margin-top: 24px;
}
.tk-footer__disclaimer h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.tk-footer__disclaimer ul {
  font-size: 12px;
  line-height: 1.8;
}
.tk-footer__disclaimer li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.tk-footer__disclaimer li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.tk-footer__disclaimer a { color: var(--tk-primary-light); }
.tk-footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  opacity: .6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 24px;
}
/* ============================================================
   Responsive: Tablet (max 1110px)
============================================================ */
@media (max-width: 1110px) {
.tk-hero::before,
.tk-hero::after{
  display: none;
}
}
/* ============================================================
   Responsive: Tablet (max 1100px)
============================================================ */
@media (max-width: 1100px) {
  .tk-btn--lg {
    width: 47%;
    padding: 18px 0;
    font-size: 12px;
  }
}

/* ============================================================
   Responsive: Tablet (max 980px)
============================================================ */
@media (max-width: 980px) {
  .tk-section { padding: var(--tk-section-pad-sp); }
  .tk-section__title { font-size: 28px; }
  .tk-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  /* .tk-hero__title { font-size: 32px; } */
  .tk-issues__list { grid-template-columns: repeat(2, 1fr); }
  .tk-service__steps { grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
  .tk-service__steps li { border-right: none; border-bottom: 1px solid var(--tk-border); padding: 12px 0 30px; }
  .tk-numbers__list { grid-template-columns: repeat(2, 1fr); }
  .tk-compare__reasons { grid-template-columns: repeat(2, 1fr); }
  .tk-testimonials .voice-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tk-header__nav { display: none; }
  .tk-plan-main { padding: 32px 24px; }
  .tk-plan-main__price { font-size: 42px; }
  .tk-form__row { grid-template-columns: 1fr; }
  .tk-footer__inner { grid-template-columns: 1fr; }
  .sp-none{display: none;}
  .tk-btn--lg {width: 49%; font-size: 17px;}
  .tk-hero-bg{background-image: none;}
  .tk-service__steps li:last-child {
    border-bottom: none;}
  .tk-service__steps strong {margin-bottom: 0;}
    .tk-btn--lg {
    width: 47%;
    padding: 18px 0;
    font-size: 12px;
  }
}
/* ============================================================
   Responsive: Tablet (max 846px)
============================================================ */
@media (max-width: 846px) {
.tk-btn--lg {width: 100%;}
.tk-section.tk-hero{padding-bottom: 45px;}
}
/* ============================================================
   Responsive: Tablet (max 640px)
============================================================ */
@media (max-width: 640px) {
  .tk-container.tk-header__inner{padding: 0 14px;}
  .tk-header__cta {padding: 10px 10px;font-size: 12px;}
}

/* ============================================================
   Responsive: Mobile (max 540px)
============================================================ */
@media (max-width: 540px) {
  .tk-section__title { font-size: 24px; }
  .tk-section__title .sp-on{display: block; }
  .tk-hero { padding: 56px 0 64px; }
  .tk-hero__title { font-size: 26px; }
  .tk-hero__ctas { flex-direction: column; }
  .tk-hero__ctas .tk-btn { width: 100%; }
  .tk-issues__list { grid-template-columns: 1fr; }
  .tk-numbers__list { grid-template-columns: 1fr; }
  .tk-compare__reasons { grid-template-columns: 1fr; }
  .tk-numbers__num { font-size: 44px; }
  .tk-plan-main__name { font-size: 24px; }
  .tk-form { padding: 24px 20px; }
  .tk-btn--lg { padding: 14px 24px; font-size: 15px; }
  /* お客様の声：吹き出し行を縦積みに */
  .voice-row, .voice-row.right { flex-direction: column; text-align: center; gap: 10px; }
  .voice-row-id, .voice-row.right .voice-row-id { width: auto; text-align: center; }
  .voice-bubble { width: 100%; }
  .voice-bubble::before { display: none; }
}
