@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/



:root {
  --bg: #ffffff;
  --gray-bg: #f5f6f8;
  --beige: #f6f0e3;
  --beige-deep: #ece2cb;
  --navy: #5a7090;
  --navy-deep: #3e5878;
  --navy-darker: #2a3f5a;
  --navy-bg: #eef2f7;
  --accent: #d8843b;
  --accent-hover: #b86d28;
  --text: #2c3a44;
  --text-sub: #5a6b73;
  --line: #e4dcc9;
  --line-gray: #dde1e8;
  --warning-bg: #fbf7eb;
  --pr-bg: #fff4de;
  --pr-border: #e8c884;
  --form-focus: #5a7090;
  --required: #b13a3a;
  --shadow-card: 0 2px 6px rgba(58, 80, 108, 0.06);
  --shadow-hover: 0 4px 12px rgba(58, 80, 108, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
a {
  color: var(--navy-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--text); }

/* ===== Header ===== */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line-gray);
  padding: 14px 20px;
}
.site-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.site-title a { color: inherit; text-decoration: none; }
.site-tagline {
  font-size: 12px;
  color: var(--text-sub);
  margin: 3px 0 0;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 10px 20px;
  background: var(--gray-bg);
  font-size: 13px;
  color: var(--text-sub);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb li::after {
  content: "›";
  margin-left: 6px;
  color: var(--text-sub);
}
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--text-sub); }

/* ===== Hero (LP style) ===== */
.hero {
  padding: 32px 20px 28px;
  background: linear-gradient(180deg, var(--navy-bg) 0%, #fff 100%);
  text-align: center;
}
.hero h1 {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.hero .hero-sub {
  margin: 0 0 20px;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
}
.hero-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px auto 16px;
  max-width: 420px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 16px 0 0;
  list-style: none;
  padding: 0;
}
.hero-chips li {
  background: #fff;
  border: 1px solid var(--navy);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
}
.hero-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin: 14px 0 0;
}

/* ===== Page head (sub pages) ===== */
.page-head {
  padding: 24px 20px 18px;
  background: var(--gray-bg);
  text-align: center;
}
.page-head h1 {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 8px;
}
.page-head .updated {
  font-size: 12px;
  color: var(--text-sub);
  margin: 0;
}
.page-head .lead {
  font-size: 14px;
  color: var(--text-sub);
  margin: 12px 0 0;
}

/* ===== Section ===== */
section {
  padding: 28px 20px;
  border-top: 1px solid var(--line-gray);
}
section.section-light { background: var(--gray-bg); }
section.section-narrow { padding: 22px 20px; }
section h2 {
  font-size: 19px;
  margin: 0 0 16px;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
}
section h2 .h2-sub {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 6px;
  font-weight: normal;
}
section h3 {
  font-size: 16px;
  margin: 18px 0 8px;
  color: var(--navy-deep);
}
section p { margin: 0 0 12px; font-size: 15px; }
section .lead {
  color: var(--text-sub);
  font-size: 14px;
  margin: 0 0 16px;
  text-align: center;
}
section .source-note {
  font-size: 12px;
  color: var(--text-sub);
  margin: 8px 0 0;
}

/* ===== Concern grid (LP style cards) ===== */
.concern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.concern-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  padding-right: 36px;
}
.concern-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  color: var(--text);
}
.concern-card::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}
.concern-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy-bg);
  color: var(--navy-deep);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.concern-card .label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}
.concern-card .desc {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.6;
}

/* ===== Steps (LP-style flow) ===== */
.steps-lp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps-lp li {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  padding: 16px 16px 16px 60px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.steps-lp li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  font-size: 15px;
}
.steps-lp .step-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}
.steps-lp .step-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.6;
}

/* ===== Capability tags (対応できる相談内容) ===== */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.capability-grid li {
  background: #fff;
  border: 1px solid var(--navy);
  color: var(--navy-deep);
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

/* ===== Mini info card (このページで分かること) ===== */
.info-card {
  background: var(--navy-bg);
  border-left: 4px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  margin: 0 0 20px;
}
.info-card .title {
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 6px;
  font-size: 14px;
}
.info-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}
.info-card li { margin-bottom: 2px; }

/* ===== Compact list (short content cards) ===== */
.compact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.compact-card {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}
.compact-card .label {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-deep);
  margin: 0 0 4px;
}
.compact-card .desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 0;
}
.compact-card .tags {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.compact-card .tags li {
  background: var(--gray-bg);
  border: 1px solid var(--line-gray);
  color: var(--text-sub);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Compare grid (2-column compare cards) ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 16px;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.compare-card.left { border-top: 4px solid var(--navy); }
.compare-card.right { border-top: 4px solid var(--accent); }
.compare-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text);
}
.compare-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
}
.compare-card li { margin-bottom: 4px; }

/* ===== Sign list (修理サイン等) ===== */
.sign-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sign-list li {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 12px 14px 12px 44px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
.sign-list li::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
}
.sign-list .label {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.sign-list .desc {
  color: var(--text-sub);
  font-size: 13px;
}

/* ===== Checklist (interactive) ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  margin-bottom: 8px;
  background: #fff;
  transition: background 0.15s;
}
.checklist li:hover { background: var(--navy-bg); }
.checklist label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  line-height: 1.55;
}
.checklist input[type="checkbox"] {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--navy-deep);
}
.checklist .q { font-weight: 700; display: block; margin-bottom: 2px; font-size: 14px; }
.checklist .hint { font-size: 12px; color: var(--text-sub); display: block; }

.checklist-group {
  margin-bottom: 18px;
}
.checklist-group h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--navy-deep);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-gray);
}

/* ===== CTA box (送客導線) ===== */
.cta-box {
  background: linear-gradient(180deg, var(--navy-bg) 0%, #fff 100%);
  border: 1px solid var(--navy);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  margin: 8px 0;
  box-shadow: var(--shadow-card);
}
.cta-box .cta-lead {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--text);
}
.cta-box .cta-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0 0 16px;
  line-height: 1.7;
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  min-height: 48px;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(216, 132, 59, 0.25);
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.cta-button:hover { background: var(--accent-hover); color: #fff; }
.cta-button.secondary {
  background: #fff;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy);
  box-shadow: none;
}
.cta-button.secondary:hover { background: var(--navy-bg); color: var(--navy-deep); }
.cta-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin: 10px 0 0;
}

/* Mini inline CTA (small section-end CTA) */
.mini-cta {
  background: var(--navy-bg);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.mini-cta .text {
  font-size: 13px;
  color: var(--text);
  flex: 1;
  min-width: 180px;
}
.mini-cta .text strong { color: var(--navy-deep); }
.mini-cta a {
  background: var(--navy-deep);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.mini-cta a:hover { background: var(--text); color: #fff; }

/* ===== Form (consultation page) ===== */
.form-intro-card {
  background: var(--navy-bg);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 18px;
  text-align: center;
}
.form-intro-card .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
}
.form-intro-card .text {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  font-weight: 600;
}
.form-intro-card .sub {
  font-size: 13px;
  color: var(--text-sub);
  margin: 6px 0 0;
}

.form-step-indicator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0 0 24px;
  list-style: none;
  padding: 0;
  counter-reset: fstep;
}
.form-step-indicator li {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 10px 6px 8px;
  text-align: center;
  font-size: 11px;
  color: var(--text-sub);
  position: relative;
  border-top: 3px solid var(--line-gray);
  line-height: 1.4;
}
.form-step-indicator li::before {
  counter-increment: fstep;
  content: counter(fstep);
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.form-step-indicator li.active {
  background: #fff;
  border-top-color: var(--accent);
  color: var(--text);
  font-weight: 700;
}

.form-area {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 16px;
  box-shadow: var(--shadow-card);
}
.form-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line-gray);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.form-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 12px;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.form-section-title::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}
.form-row {
  margin-bottom: 16px;
}
.form-row:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text);
}
.form-label .required {
  display: inline-block;
  font-size: 10px;
  background: var(--required);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.form-label .optional {
  display: inline-block;
  font-size: 10px;
  background: var(--gray-bg);
  color: var(--text-sub);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  border: 1px solid var(--line-gray);
  vertical-align: middle;
}
.form-hint {
  font-size: 12px;
  color: var(--text-sub);
  margin: 0 0 6px;
  line-height: 1.6;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  color: var(--text);
  line-height: 1.5;
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 2px solid var(--form-focus);
  outline-offset: -1px;
  border-color: var(--form-focus);
}
.form-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.form-check-grid.full { grid-template-columns: 1fr; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.15s;
}
.form-check:hover {
  background: var(--navy-bg);
  border-color: var(--navy);
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navy-deep);
}
.form-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  min-height: 56px;
  font-family: inherit;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(216, 132, 59, 0.3);
}
.form-submit:hover { background: var(--accent-hover); }
.form-submit-area {
  text-align: center;
  padding: 8px 0 0;
}
.form-submit-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin: 8px 0 0;
}
.form-privacy-note {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-sub);
  margin: 0 0 16px;
  line-height: 1.6;
}

/* ===== Notice ===== */
.notice {
  background: var(--warning-bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}
.notice strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.notice-light {
  background: var(--gray-bg);
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}
.notice-light ul {
  margin: 4px 0 0;
  padding-left: 18px;
}
.notice-light li { margin-bottom: 2px; }

/* ===== Vendor notice ===== */
.vendor-notice {
  background: var(--gray-bg);
  border: 1px solid var(--line-gray);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-sub);
  margin: 16px 0;
  line-height: 1.6;
}

/* ===== Footer ===== */
footer.site-footer {
  padding: 24px 20px 36px;
  background: var(--gray-bg);
  border-top: 1px solid var(--line-gray);
  color: var(--text-sub);
  font-size: 13px;
}
footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
footer.site-footer li { margin-bottom: 6px; }
footer.site-footer a { color: var(--text); font-size: 13px; }
.footer-meta {
  font-size: 11px;
  color: var(--text-sub);
  margin: 0 0 6px;
  line-height: 1.6;
}
.footer-vendor-note {
  font-size: 11px;
  color: var(--text-sub);
  margin: 12px 0;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 6px;
  line-height: 1.6;
}

/* Footer legal nav (privacy / terms / disclaimer) */
.footer-legal-nav {
  list-style: none;
  padding: 8px 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}
.footer-legal-nav li {
  margin: 0;
  position: relative;
  padding-right: 14px;
}
.footer-legal-nav li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--line-gray);
}
.footer-legal-nav li:last-child::after { display: none; }
.footer-legal-nav li:last-child { padding-right: 0; }
.footer-legal-nav a {
  color: var(--text-sub);
  font-size: 12px;
}

/* Company info table (会社概要ページ) */
.company-info {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 10px;
  margin: 0 0 20px;
  overflow: hidden;
}
.company-info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.company-info dt {
  background: var(--gray-bg);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--line-gray);
}
.company-info dd {
  padding: 12px 14px;
  margin: 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--line-gray);
  line-height: 1.7;
  word-break: break-all;
}
.company-info dd:last-of-type { border-bottom: none; }

@media (min-width: 600px) {
  .company-info dl {
    grid-template-columns: 180px 1fr;
  }
  .company-info dt {
    border-right: 1px solid var(--line-gray);
  }
}

/* Honeypot (anti-spam, hidden from real users) */
.honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Agreement check row (consultation form before submit) */
.form-agree-row {
  background: var(--navy-bg);
  border: 1px solid var(--navy);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 14px;
}
.form-agree-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
}
.form-agree-row input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--navy-deep);
}
.form-agree-row a {
  color: var(--navy-deep);
  font-weight: 700;
}

/* ===== Diagnostic UI (悩み選択型) ===== */
.diag-card {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 14px;
  padding: 18px 16px 20px;
  margin: 20px 0 0;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.diag-step-meta {
  display: inline-block;
  background: var(--navy-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin: 0 0 10px;
}
.diag-step-meta .of { opacity: 0.75; margin-left: 2px; }
.diag-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.5;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.choice-button {
  display: block;
  background: #fff;
  border: 1.5px solid var(--line-gray);
  border-radius: 10px;
  padding: 14px 36px 14px 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  transition: all 0.15s;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.choice-button::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
  font-weight: 700;
}
.choice-button:hover,
.choice-button:focus-visible {
  border-color: var(--navy);
  background: var(--navy-bg);
  color: var(--navy-deep);
  outline: none;
}
.diag-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin: 14px 0 0;
  text-align: center;
}

/* Choice button with sub-label (e.g. 自社サービス表記) */
.choice-button.has-sub {
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.45;
}
.choice-button .choice-sub-label {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: var(--text-sub);
  margin-top: 4px;
  letter-spacing: 0;
}

/* Step option with sub-label (consultation form) */
.step-option-label .option-text {
  flex: 1;
  line-height: 1.45;
}
.step-option-label .option-sub {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: var(--text-sub);
  margin-top: 2px;
}

/* HP info card (運営者の自社サービス説明ブロック) */
.hp-info-card {
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.hp-info-card strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 6px;
  font-size: 15px;
}
.hp-info-card p { margin: 0 0 8px; }
.hp-info-card p:last-child { margin-bottom: 0; }
.hp-info-card .hp-info-meta {
  color: var(--text-sub);
  font-size: 12px;
  border-top: 1px dashed var(--line-gray);
  padding-top: 8px;
  margin-top: 8px;
}

/* Diagnostic step block (consultation.html) */
.step-block {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  padding: 18px 16px 20px;
  margin: 0 0 14px;
  box-shadow: var(--shadow-card);
}
.step-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: 700;
  font-size: 14px;
}
.step-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.45;
}
.step-q .req-tag {
  display: inline-block;
  font-size: 10px;
  background: var(--required);
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.step-q .opt-tag {
  display: inline-block;
  font-size: 10px;
  background: var(--gray-bg);
  color: var(--text-sub);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  border: 1px solid var(--line-gray);
  vertical-align: middle;
}
.step-hint {
  font-size: 12px;
  color: var(--text-sub);
  margin: 0 0 10px;
  line-height: 1.6;
  padding-left: 40px;
}
.step-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-options.full { grid-template-columns: 1fr; }
.step-option-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-gray);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.15s;
  font-weight: 600;
}
.step-option-label:hover {
  border-color: var(--navy);
  background: var(--navy-bg);
  color: var(--navy-deep);
}
.step-option-label input[type="checkbox"],
.step-option-label input[type="radio"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navy-deep);
}
.step-contact-row {
  margin-bottom: 12px;
}
.step-contact-row:last-child { margin-bottom: 0; }
.step-contact-label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 13px;
  color: var(--text);
}
.step-contact-label .req-tag,
.step-contact-label .opt-tag {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.step-contact-label .req-tag { background: var(--required); color: #fff; }
.step-contact-label .opt-tag {
  background: var(--gray-bg);
  color: var(--text-sub);
  border: 1px solid var(--line-gray);
}

.diag-result-note {
  background: var(--navy-bg);
  border-left: 4px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  margin: 8px 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.diag-result-note strong {
  color: var(--navy-deep);
  display: block;
  margin-bottom: 4px;
}

/* ===== Trust row (small reassurance icons under hero) ===== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.trust-row li {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}
.trust-row li .trust-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

/* ===== Sticky bottom CTA (mobile only) ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line-gray);
  padding: 10px 16px;
  z-index: 50;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
}
.sticky-cta a {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(216, 132, 59, 0.3);
}
.sticky-cta a:hover { background: var(--accent-hover); color: #fff; }
.sticky-cta .sticky-meta {
  font-size: 11px;
  color: var(--text-sub);
  text-align: center;
  margin: 4px 0 0;
}
body.has-sticky-cta { padding-bottom: 88px; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ===== Responsive ===== */
/* ===== Hero v2 (image + strong headline + trust badges + main CTA) ===== */
.hero-v2 {
  background: linear-gradient(180deg, var(--navy-bg) 0%, #ffffff 100%);
  padding: 32px 20px 28px;
  border-top: none;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.hero-v2-text {
  text-align: left;
}
.hero-v2-eyebrow {
  display: inline-block;
  background: var(--navy-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 12px;
  margin: 0 0 14px;
}
.hero-v2-text h1 {
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 12px;
  font-weight: 700;
}
.hero-v2-h1-em {
  color: var(--navy-deep);
  position: relative;
  display: inline-block;
}
.hero-v2-h1-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(216, 132, 59, 0.18);
  z-index: -1;
}
.hero-v2-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0 0 18px;
}
.hero-v2-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-v2-badges li {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.hero-v2-badges .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-bg);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-v2-cta-row {
  margin: 0;
}
.hero-v2-cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  min-height: 56px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(216, 132, 59, 0.28);
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.15s;
}
.hero-v2-cta-main:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}
.hero-v2-cta-main .cta-arrow {
  font-size: 18px;
  line-height: 1;
}
.hero-v2-cta-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin: 8px 0 0;
  text-align: center;
}
.hero-v2-visual {
  text-align: center;
  order: -1;
}
.hero-v2-visual img {
  width: 100%;
  height: auto;
  max-width: 360px;
  display: block;
  margin: 0 auto;
}

/* Section that hosts the diag card directly after hero */
.section-diag-entry {
  padding: 28px 20px 32px;
  background: #fff;
  border-top: 1px solid var(--line-gray);
}
.section-diag-entry h2 {
  font-size: 19px;
  margin: 0 0 16px;
  text-align: center;
  color: var(--text);
}
.section-diag-entry .diag-card {
  margin: 0 auto;
  max-width: 720px;
}

@media (min-width: 720px) {
  .hero-v2 {
    padding: 56px 40px 44px;
  }
  .hero-v2-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }
  .hero-v2-text h1 {
    font-size: 36px;
    line-height: 1.35;
    margin-bottom: 16px;
  }
  .hero-v2-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-v2-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-v2-badges li {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    font-size: 12px;
  }
  .hero-v2-cta-main {
    max-width: 360px;
    width: auto;
    padding: 16px 32px;
  }
  .hero-v2-cta-meta { text-align: left; }
  .hero-v2-visual {
    order: 0;
  }
  .hero-v2-visual img {
    max-width: 100%;
  }
  .section-diag-entry { padding: 40px 40px 48px; }
}

@media (min-width: 1024px) {
  .hero-v2-text h1 {
    font-size: 42px;
  }
}

/* ============================================================
   New Design v3 — 小さなお店の開業ガイド
   写真中心・ベージュ/ブラウン/ネイビー・やわらかい高級感
   ============================================================ */

/* ---- v3 Color tokens ---- */
:root {
  --v3-bg-cream: #faf6ec;
  --v3-bg-beige: #f0e8d8;
  --v3-bg-beige-deep: #e2d6bb;
  --v3-line: #d8cdb4;
  --v3-line-soft: #e9e0cb;
  --v3-text: #3a3530;
  --v3-text-sub: #6f6453;
  --v3-text-mute: #968a72;
  --v3-brown: #a78a5f;
  --v3-brown-deep: #876c46;
  --v3-brown-hover: #6f5836;
  --v3-navy: #3e5878;
  --v3-navy-deep: #2a3f5a;
  --v3-footer-bg: #3a342f;
  --v3-footer-text: #d8cdb4;
  --v3-shadow-soft: 0 4px 16px rgba(58, 53, 48, 0.06);
  --v3-shadow-card: 0 6px 24px rgba(58, 53, 48, 0.08);
  --v3-shadow-hover: 0 10px 32px rgba(58, 53, 48, 0.14);
  --v3-mincho: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  --v3-gothic: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* ---- v3 Body base override ---- */
body.v3 {
  font-family: var(--v3-gothic);
  color: var(--v3-text);
  background: #ffffff;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
body.v3 a { color: var(--v3-brown-deep); }
body.v3 a:hover { color: var(--v3-brown-hover); }

/* ---- v3 Site Header ---- */
.v3-header {
  background: #ffffff;
  border-bottom: 1px solid var(--v3-line-soft);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 720px) {
  .v3-header { padding: 14px 40px; }
}
.v3-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.v3-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--v3-text);
  flex-shrink: 0;
}
.v3-logo-mark {
  width: 32px;
  height: 40px;
  color: var(--v3-brown-deep);
  flex-shrink: 0;
}
.v3-logo-text {
  font-family: var(--v3-mincho);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.v3-logo-text small {
  display: block;
  font-family: var(--v3-gothic);
  font-size: 10px;
  color: var(--v3-text-mute);
  font-weight: normal;
  margin-top: 2px;
  letter-spacing: 0.08em;
}
.v3-nav { display: none; }
.v3-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.v3-nav a {
  font-size: 13px;
  color: var(--v3-text-sub);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.v3-nav a:hover { color: var(--v3-brown-deep); }
.v3-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--v3-brown-deep);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(135, 108, 70, 0.3);
}
.v3-header-cta:hover { background: var(--v3-brown-hover); color: #ffffff !important; }

@media (min-width: 960px) {
  .v3-nav { display: block; }
  .v3-burger,
  .v3-mobile-menu,
  .v3-mobile-overlay { display: none !important; }
}

/* ---- v3 Hamburger Button (mobile) ---- */
.v3-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  margin-left: 14px;
  margin-right: 12px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.v3-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--v3-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.v3-burger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.v3-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.v3-burger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---- v3 Mobile Menu Overlay ---- */
.v3-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 53, 48, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.v3-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- v3 Mobile Menu Drawer ---- */
.v3-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(58, 53, 48, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  z-index: 100;
  padding: 88px 28px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.v3-mobile-menu.is-open {
  transform: translateX(0);
}
.v3-mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.v3-mobile-menu nav li {
  border-bottom: 1px solid var(--v3-line-soft);
}
.v3-mobile-menu nav a {
  display: block;
  padding: 16px 4px;
  color: var(--v3-text);
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  font-family: var(--v3-mincho);
  transition: color 0.2s;
}
.v3-mobile-menu nav a:hover {
  color: var(--v3-brown-deep);
}
.v3-mobile-menu-cta {
  display: block;
  background: var(--v3-brown-deep);
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.v3-mobile-menu-cta:hover {
  background: var(--v3-brown-hover);
  color: #ffffff !important;
}

/* ---- v3 Photo Placeholder ---- */
.v3-ph {
  position: relative;
  background: linear-gradient(135deg, var(--v3-bg-cream) 0%, var(--v3-bg-beige) 100%);
  border: 1px solid var(--v3-line-soft);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--v3-text-mute);
}
.v3-ph::before {
  content: attr(data-ph);
  font-family: var(--v3-mincho);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 8px 16px;
  opacity: 0.7;
}
.v3-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- v3 Hero ---- */
.v3-hero {
  position: relative;
  padding: 40px 16px 48px;
  background: var(--v3-bg-cream);
  overflow: hidden;
}
.v3-hero-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  height: 280px;
}
.v3-hero-collage .v3-ph { border-radius: 4px; }
.v3-hero-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--v3-shadow-card);
  padding: 28px 24px;
  margin: -64px auto 0;
  max-width: 720px;
  text-align: center;
  z-index: 2;
}
.v3-hero-card h1 {
  font-family: var(--v3-mincho);
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--v3-text);
  margin: 0 0 16px;
  font-weight: 600;
  text-align: center;
}
.v3-hero-card h1 .em {
  display: inline-block;
  color: var(--v3-brown);
  font-weight: 600;
}
.v3-hero-card-sub {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--v3-text-sub);
  margin: 0 0 22px;
  text-align: left;
}
.v3-hero-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.v3-btn-primary,
.v3-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px 14px 28px;
  border-radius: 999px;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  min-height: 48px;
  width: 100%;
  max-width: 320px;
  transition: all 0.18s;
}
.v3-btn-primary {
  background: var(--v3-brown-deep);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(135, 108, 70, 0.35);
}
.v3-btn-primary:hover {
  background: var(--v3-brown-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(135, 108, 70, 0.45);
}
.v3-btn-secondary {
  background: #ffffff;
  color: var(--v3-brown-deep);
  border: 1.5px solid var(--v3-brown);
  font-weight: 700;
}
.v3-btn-secondary:hover {
  background: var(--v3-bg-cream);
  color: var(--v3-brown-hover);
}
.v3-btn-primary::after,
.v3-btn-secondary::after {
  content: "›";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-58%);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

@media (min-width: 720px) {
  .v3-hero { padding: 56px 24px 64px; }
  .v3-hero-collage {
    grid-template-columns: repeat(4, 1fr);
    height: 380px;
  }
  .v3-hero-card { padding: 40px 48px; margin-top: -96px; }
  .v3-hero-card h1 { font-size: 34px; }
  .v3-hero-card-sub { font-size: 14.5px; text-align: center; }
  .v3-hero-card-ctas {
    flex-direction: row;
    justify-content: center;
  }
  .v3-btn-primary, .v3-btn-secondary { width: auto; min-width: 260px; }
}

/* ---- v3 Section common ---- */
.v3-section {
  padding: 56px 20px;
  background: #ffffff;
}
.v3-section.v3-section-cream { background: var(--v3-bg-cream); }
.v3-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.v3-section-head {
  text-align: center;
  margin: 0 0 36px;
}
.v3-section-head h2 {
  font-family: var(--v3-mincho);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--v3-text);
  margin: 0 0 12px;
  font-weight: 600;
}
@media (min-width: 720px) {
  .v3-section-head h2 {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}
.v3-section-head .v3-section-sub {
  font-size: 13px;
  color: var(--v3-text-sub);
  letter-spacing: 0.06em;
  margin: 0;
}
.v3-section-head .v3-divider-mark {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--v3-brown);
  margin: 0 12px;
  vertical-align: middle;
  opacity: 0.5;
}

@media (min-width: 720px) {
  .v3-section { padding: 80px 32px; }
  .v3-section-head h2 { font-size: 28px; }
  .v3-section-head { margin-bottom: 48px; }
}

/* ---- v3 Concerns (6 cards with line icons) ---- */
.v3-concerns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-auto-rows: 1fr;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.v3-concerns > li { list-style: none; }
.v3-concern-card {
  background: #ffffff;
  border: 1px solid var(--v3-line-soft);
  border-radius: 8px;
  padding: 22px 16px 20px;
  text-align: center;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v3-concern-card .v3-concern-desc { margin-top: auto; }
.v3-concern-card:hover {
  border-color: var(--v3-brown);
  box-shadow: var(--v3-shadow-card);
  transform: translateY(-2px);
}
.v3-concern-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--v3-brown);
}
.v3-concern-title {
  font-family: var(--v3-mincho);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--v3-text);
  margin: 0 0 8px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.v3-concern-desc {
  font-size: 12px;
  color: var(--v3-text-sub);
  line-height: 1.75;
  margin: 0;
}

@media (min-width: 720px) {
  .v3-concerns { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .v3-concern-card { padding: 28px 20px 24px; }
  .v3-concern-icon { width: 52px; height: 52px; margin-bottom: 18px; }
  .v3-concern-title { font-size: 16px; }
  .v3-concern-desc { font-size: 13px; }
}

@media (min-width: 1024px) {
  .v3-concerns { grid-template-columns: repeat(6, 1fr); }
}

/* ---- v3 Categories (6 photo cards + icon) ---- */
.v3-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  grid-auto-rows: 1fr;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.v3-categories > li { list-style: none; }
.v3-category-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--v3-text);
  box-shadow: var(--v3-shadow-soft);
  transition: all 0.2s;
  height: 100%;
}
.v3-category-card .v3-category-body { flex: 1; display: flex; flex-direction: column; }
.v3-category-card .v3-category-desc { margin-top: auto; }
.v3-category-card:hover {
  box-shadow: var(--v3-shadow-hover);
  transform: translateY(-3px);
  color: var(--v3-text);
}
.v3-category-photo {
  aspect-ratio: 4 / 3;
  background: var(--v3-bg-beige);
  position: relative;
}
.v3-category-photo.v3-ph::before {
  font-size: 11px;
}
.v3-category-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v3-shadow-soft);
  color: var(--v3-brown-deep);
}
.v3-category-icon svg { width: 24px; height: 24px; }
.v3-category-body {
  text-align: center;
  padding: 30px 12px 18px;
}
.v3-category-title {
  font-family: var(--v3-mincho);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
}
.v3-category-desc {
  font-size: 11px;
  color: var(--v3-text-sub);
  margin: 0;
  line-height: 1.7;
}
.v3-categories-cta {
  text-align: center;
  margin-top: 32px;
}
.v3-categories-cta a {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid var(--v3-line);
  background: #ffffff;
  color: var(--v3-text);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.v3-categories-cta a:hover {
  border-color: var(--v3-brown);
  color: var(--v3-brown-deep);
}

@media (min-width: 720px) {
  .v3-categories { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .v3-category-icon { width: 52px; height: 52px; }
  .v3-category-icon svg { width: 28px; height: 28px; }
  .v3-category-body { padding: 36px 16px 22px; }
  .v3-category-title { font-size: 16px; }
  .v3-category-desc { font-size: 12px; }
}

@media (min-width: 1100px) {
  .v3-categories { grid-template-columns: repeat(6, 1fr); }
}

/* ---- v3 Flow (3 steps + photo right) ---- */
.v3-flow-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.v3-flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.v3-flow-step,
.v3-flow-step::marker {
  list-style: none;
}
.v3-flow-step::marker {
  content: '';
}
.v3-flow-step {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--v3-line-soft);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  height: 100%;
}
.v3-flow-step .v3-flow-step-desc { margin-top: auto; }
.v3-flow-step-meta {
  font-family: var(--v3-mincho);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--v3-brown);
  margin-bottom: 4px;
}
.v3-flow-step-num {
  font-family: var(--v3-mincho);
  font-size: 22px;
  font-weight: 600;
  color: var(--v3-brown-deep);
  margin-bottom: 14px;
}
.v3-flow-step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--v3-brown);
}
.v3-flow-step-title {
  font-family: var(--v3-mincho);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--v3-text);
}
.v3-flow-step-desc {
  font-size: 12px;
  color: var(--v3-text-sub);
  line-height: 1.75;
  margin: 0;
}
.v3-flow-photo {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

@media (min-width: 720px) {
  .v3-flow-wrap { grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
  .v3-flow-steps { grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; }
  .v3-flow-step { padding: 28px 14px; }
  .v3-flow-step-icon { width: 56px; height: 56px; }
  .v3-flow-step-title { font-size: 16px; }
}

/* ---- v3 Articles (article cards 5) ---- */
.v3-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-auto-rows: 1fr;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.v3-articles > li { list-style: none; }
.v3-article-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--v3-text);
  box-shadow: var(--v3-shadow-soft);
  transition: all 0.18s;
  height: 100%;
}
.v3-article-card .v3-article-body { flex: 1; display: flex; flex-direction: column; }
.v3-article-card .v3-article-desc { margin-top: auto; }
.v3-article-card:hover {
  box-shadow: var(--v3-shadow-hover);
  transform: translateY(-2px);
  color: var(--v3-text);
}
.v3-article-photo {
  aspect-ratio: 4 / 3;
  position: relative;
}
.v3-article-photo .v3-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v3-brown-deep);
}
.v3-article-photo .v3-overlay-icon svg { width: 18px; height: 18px; }
.v3-article-body {
  padding: 14px 14px 16px;
}
.v3-article-title {
  font-family: var(--v3-mincho);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.v3-article-desc {
  font-size: 11.5px;
  color: var(--v3-text-sub);
  line-height: 1.7;
  margin: 0;
}
.v3-articles-cta {
  text-align: center;
  margin-top: 28px;
}
.v3-articles-cta a {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid var(--v3-line);
  background: #ffffff;
  color: var(--v3-text);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
}

@media (min-width: 720px) {
  .v3-articles { grid-template-columns: repeat(5, 1fr); gap: 18px; }
  .v3-article-title { font-size: 14px; }
}

/* ---- v3 Big CTA band ---- */
.v3-big-cta {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #4a3f33 0%, #6f5b46 100%);
  overflow: hidden;
}
.v3-big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58, 45, 30, 0.45);
  z-index: 1;
}
.v3-big-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.v3-big-cta h2 {
  font-family: var(--v3-mincho);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 600;
}
.v3-big-cta p {
  font-size: 13px;
  margin: 0 0 28px;
  opacity: 0.92;
  line-height: 1.85;
}
.v3-big-cta .v3-btn-primary {
  background: var(--v3-brown-deep);
  color: #ffffff !important;
  border: none;
}

@media (min-width: 720px) {
  .v3-big-cta { padding: 88px 32px; }
  .v3-big-cta h2 { font-size: 28px; }
  .v3-big-cta p { font-size: 14.5px; }
}

/* ---- v3 Vendor block (subtle) ---- */
.v3-vendor {
  background: var(--v3-bg-cream);
  padding: 36px 20px;
  border-top: 1px solid var(--v3-line-soft);
}
.v3-vendor-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.v3-vendor-text strong {
  display: block;
  font-family: var(--v3-mincho);
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--v3-text);
}
.v3-vendor-text p {
  font-size: 12px;
  color: var(--v3-text-sub);
  margin: 0;
  line-height: 1.75;
}
.v3-vendor-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.v3-vendor-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v3-brown-deep);
  box-shadow: var(--v3-shadow-soft);
}
.v3-vendor-icon svg { width: 22px; height: 22px; }
.v3-vendor-link {
  font-size: 12px;
  color: var(--v3-brown-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 720px) {
  .v3-vendor-inner { grid-template-columns: 60px 1fr auto; gap: 24px; }
  .v3-vendor-icons { gap: 12px; }
  .v3-vendor-icon { width: 50px; height: 50px; }
}

/* ---- v3 Footer ---- */
.v3-footer {
  background: var(--v3-footer-bg);
  color: var(--v3-footer-text);
  padding: 48px 20px 28px;
}
.v3-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.v3-footer-brand .v3-logo-mark { color: #d8cdb4; }
.v3-footer-brand .v3-logo-text { color: #f0e8d8; font-size: 16px; }
.v3-footer-brand .v3-logo-text small { color: #968a72; }
.v3-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.v3-footer-col h4 {
  font-family: var(--v3-mincho);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #d8cdb4;
  margin: 0 0 12px;
  font-weight: 600;
}
.v3-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v3-footer-col li { margin-bottom: 8px; }
.v3-footer-col a {
  color: #b8ad95;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.v3-footer-col a:hover { color: #f0e8d8; }
.v3-footer-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,205,180,0.16);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.v3-footer-cta p {
  font-size: 12px;
  color: #b8ad95;
  margin: 0 0 12px;
  line-height: 1.75;
}
.v3-footer-cta .v3-btn-primary {
  width: 100%;
  max-width: 280px;
  background: var(--v3-brown);
}
.v3-footer-bottom {
  border-top: 1px solid rgba(216,205,180,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 10.5px;
  color: #6f6453;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

@media (min-width: 720px) {
  .v3-footer { padding: 64px 32px 36px; }
  .v3-footer-inner {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 48px;
  }
  .v3-footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---- v3 Sticky mobile CTA ---- */
.v3-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--v3-line-soft);
  padding: 10px 16px;
  z-index: 90;
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(58,53,48,0.08);
}
.v3-sticky-cta a {
  display: block;
  background: var(--v3-brown-deep);
  color: #ffffff !important;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(135, 108, 70, 0.3);
}
body.v3.has-v3-sticky { padding-bottom: 76px; }

@media (min-width: 720px) {
  .v3-sticky-cta { display: none; }
  body.v3.has-v3-sticky { padding-bottom: 0; }
}

/* ============================================================
   End v3
   ============================================================ */

/* ===== Original .hero retained for sub-pages compatibility ===== */
@media (min-width: 720px) {
  .hero { padding: 48px 20px 36px; }
  .hero h1 { font-size: 30px; }
  .page-head { padding: 32px 20px 24px; }
  .page-head h1 { font-size: 26px; }
  section { padding: 36px 20px; }
  section h2 { font-size: 22px; }
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
  .hero-ctas {
    grid-template-columns: 1fr 1fr;
    max-width: 540px;
  }
  .concern-grid {
    grid-template-columns: 1fr 1fr;
  }
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-options {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-options.full {
    grid-template-columns: 1fr;
  }
  .step-block { padding: 22px 22px 24px; }
  .step-hint { padding-left: 44px; }
  .steps-lp {
    grid-template-columns: repeat(3, 1fr);
  }
  .capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .compact-list {
    grid-template-columns: 1fr 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sign-list {
    grid-template-columns: 1fr 1fr;
  }
  header.site-header,
  .breadcrumb,
  .hero,
  .page-head,
  section,
  footer.site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  header.site-header > *,
  .breadcrumb > *,
  .hero > *,
  .page-head > *,
  section > *,
  footer.site-footer > * {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Hide SWELL default main visual & header decorations on front page */
.home .p-mainVisual,
.home #post_slider,
.home .l-topTitleArea { display: none !important; }
.home #content { padding-top: 0 !important; }


/* Hide sidebar on home + full-width content + reset SWELL post_content overrides for v3 sections */
.home .l-sidebar { display: none !important; }
.home .l-content { width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
.home #content { padding: 0 !important; }
.home .l-container { max-width: none !important; padding: 0 !important; }
.home .v3-front-wrap { width: 100%; }
.home .v3-section h2, .home .v3-hero h1 { background: none !important; padding: 0 !important; color: inherit !important; }
.home .v3-section h2::before, .home .v3-section h3::before, .home .v3-section h2::after { content: none !important; background: none !important; }
.home .v3-section a { text-decoration: none !important; }
.home .v3-hero h1::before { content: none !important; }
