:root {
  /* Fresh green primary, white/cream base. "red" tokens kept as accent slot (now warm orange-coral). */
  --red: #f08838;          /* accent / sale tag (warm coral) */
  --red-dark: #c46217;
  --yellow: #ffd34d;       /* sub accent */
  --yellow-soft: #fff2bf;
  --navy: #2e7d57;         /* primary green */
  --navy-dark: #1f6244;
  --orange: #ff9b3d;
  --green: #3aa56d;        /* fresh leaf green */
  --green-light: #e9f6ee;
  --cream: #fffdf6;
  --paper: #ffffff;
  --ink: #1f2a24;
  --line: #d8e6dc;
  --hgothic: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --gothic: "Noto Sans JP", system-ui, sans-serif;
  --pop: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --rock: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--gothic);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  font-feature-settings: "palt";
  min-width: 1280px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: 1180px; margin: 0 auto; }

/* ============ Marquee top bar ============ */
.alert-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--navy) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0;
  overflow: hidden;
}
.alert-bar .scroll {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.alert-bar span { padding-right: 24px; }
.alert-bar .pop { color: var(--yellow-soft); font-family: var(--hgothic); font-size: 14px; font-weight: 900; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Header ============ */
.top-info {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 4px 0;
}
.top-info .wrap { display: flex; justify-content: space-between; align-items: center; }
.top-info .badges { display: flex; gap: 6px; }
.top-info .badge {
  background: #fff; color: var(--navy); padding: 1px 8px;
  border-radius: 2px; font-weight: 700; font-size: 11px;
}
.top-info .crumbs { opacity: .8; }

.header {
  background: #fff;
  border-bottom: 4px solid var(--red);
  padding: 10px 0;
}
.header .wrap { display: flex; align-items: center; gap: 24px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo .mark {
  width: 56px; height: 56px;
  background: var(--red);
  display: grid; place-items: center;
  color: #fff; font-family: var(--hgothic); font-size: 20px; font-weight: 900; line-height: 1;
  position: relative;
  clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0 50%);
}
.logo .text { line-height: 1.15; }
.logo .text .sub {
  font-size: 10px; color: var(--red); font-weight: 700;
  background: var(--yellow); padding: 1px 6px; display: inline-block;
}
.logo .text .name {
  font-family: var(--hgothic); font-size: 22px; font-weight: 900;
  color: var(--navy); letter-spacing: -.01em;
}
.logo .text .en { font-size: 10px; color: #999; letter-spacing: .12em; }

.header-claims {
  flex: 1;
  display: flex; gap: 14px;
  font-weight: 700; font-size: 12px;
}
.claim-chip {
  background: var(--cream);
  border: 2px solid var(--navy);
  padding: 4px 10px;
  display: flex; align-items: center; gap: 6px;
  line-height: 1.2;
}
.claim-chip .big { font-family: var(--hgothic); color: var(--red); font-size: 18px; font-weight: 900; }

.header-cta {
  display: flex; gap: 8px; align-items: stretch;
}
.tel-block {
  background: linear-gradient(180deg, #fff 0%, #fff5d4 100%);
  border: 2px solid var(--red);
  padding: 6px 12px;
  text-align: left;
  line-height: 1.1;
}
.tel-block .lbl {
  font-size: 10px; font-weight: 700;
  background: var(--red); color: #fff; padding: 2px 6px; display: inline-block;
}
.tel-block .num {
  font-family: var(--hgothic); font-size: 26px; color: var(--red); letter-spacing: -.02em;
  display: flex; align-items: center; gap: 4px; font-weight: 900;
}
.tel-block .num::before {
  content: "📞"; font-size: 18px;
}
.tel-block .hrs { font-size: 10px; color: #555; }
.cta-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px 14px; font-weight: 900; color: #fff; min-width: 90px;
  font-size: 11px; line-height: 1.2; text-align: center;
  position: relative;
}
.cta-btn .big { font-size: 14px; font-family: var(--hgothic); }
.cta-btn.green { background: var(--green); }
.cta-btn.orange { background: var(--orange); }

/* ============ Global nav ============ */
.gnav {
  background: var(--navy);
  color: #fff;
}
.gnav .wrap {
  display: grid; grid-template-columns: repeat(7, 1fr);
}
.gnav a {
  padding: 12px 4px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
  font-weight: 700; font-size: 13px;
  position: relative;
  transition: background .15s;
}
.gnav a:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.gnav a:hover { background: var(--red); }
.gnav a .en { display: block; font-size: 9px; color: var(--yellow); letter-spacing: .15em; font-weight: 700; margin-top: 2px; }

/* ============ Hero ============ */
.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(233,246,238,.6) 100%),
    repeating-linear-gradient(45deg, #2e7d57 0 12px, #266b48 12px 24px);
  padding: 24px 0 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "雨漏り 屋根修理 葺き替え カバー工法 瓦 スレート 棟板金 漆喰 雨樋 ";
  position: absolute; top: 0; left: 0; right: 0;
  white-space: nowrap;
  font-family: var(--hgothic); font-weight: 900;
  color: rgba(255,255,255,.05);
  font-size: 76px;
  letter-spacing: .1em;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px; }

.hero-main {
  background: #fff;
  padding: 22px 24px 18px;
  border: 4px solid var(--green);
  position: relative;
}
.hero-tag {
  display: inline-block;
  background: var(--navy); color: #fff;
  font-weight: 900; font-size: 16px;
  padding: 4px 14px;
  font-family: var(--hgothic);
}
.hero-tag .y { color: var(--yellow); }
.hero h1 {
  font-family: var(--hgothic);
  font-size: 54px;
  line-height: 1.1;
  margin: 10px 0 8px;
  color: var(--navy);
  letter-spacing: -.02em;
  font-weight: 900;
}
.hero h1 .red { color: var(--red); }
.hero h1 .yellow {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}
.hero h1 .small { font-size: 36px; }
.hero-bullets {
  display: flex; gap: 8px; margin: 14px 0;
}
.hero-bullet {
  background: var(--red); color: #fff; padding: 6px 10px;
  font-weight: 900; font-size: 16px; line-height: 1.1;
  font-family: var(--hgothic);
  position: relative;
}
.hero-bullet::after {
  content: ""; position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border-top: 6px solid var(--red);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.hero-bullet.alt { background: var(--navy); }
.hero-bullet.alt::after { border-top-color: var(--navy); }

.hero-price {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 18px;
}
.price-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  padding: 10px 12px;
  position: relative;
}
.price-card .ttl {
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 2px 8px; margin: -10px -12px 8px;
  display: flex; justify-content: space-between;
}
.price-card .price {
  font-family: var(--hgothic);
  color: var(--red);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
}
.price-card .price .yen { font-size: 18px; }
.price-card .price .tilde { font-size: 16px; color: #666; }
.price-card .price .strike {
  text-decoration: line-through; color: #999; font-size: 14px;
  font-family: var(--gothic); display: block; line-height: 1;
}
.price-card .note { font-size: 11px; color: #555; margin-top: 4px; }

.hero-side {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
}
.hero-photo {
  background:
    repeating-linear-gradient(135deg, #d4c4a0 0 8px, #c9b890 8px 16px);
  border: 3px solid #fff;
  outline: 2px solid var(--navy);
  height: 180px;
  display: grid; place-items: center;
  position: relative;
  color: #5a4a20; font-family: monospace; font-size: 11px;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(0,0,0,.25);
}
.hero-photo .stamp {
  position: absolute; right: -8px; top: -10px;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--hgothic); font-size: 12px; font-weight: 700;
  display: grid; place-items: center; text-align: center;
  line-height: 1.1;
  transform: rotate(-8deg);
}
.hero-photo .stamp .big { font-size: 22px; display: block; color: var(--yellow-soft); font-weight: 900; }

.review-card {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 8px 10px;
  display: grid; grid-template-columns: 56px 1fr; gap: 10px;
  align-items: center;
}
.review-card .stars { color: var(--orange); font-size: 14px; }
.review-card .num {
  font-family: var(--hgothic); font-size: 28px; color: var(--red); font-weight: 900;
  line-height: 1; text-align: center;
}
.review-card .num .small { font-size: 12px; color: #555; }
.review-card h3 { margin: 0; font-size: 13px; color: var(--navy); font-family: var(--hgothic); }

.hero-form-mini {
  background: var(--yellow-soft);
  padding: 10px 12px;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  align-items: center;
  border: 2px solid var(--navy);
}
.hero-form-mini .b {
  white-space: nowrap;
}
.hero-form-mini h3 {
  margin: 0; font-family: var(--hgothic); font-size: 18px; font-weight: 900;
  color: var(--red); line-height: 1.2;
}
.hero-form-mini h3 .sm { font-size: 12px; color: var(--ink); display: block; }
.hero-form-mini .b {
  background: var(--green); color: #fff;
  padding: 10px 14px; font-weight: 900; font-size: 14px;
  line-height: 1.1; text-align: center;
}

/* ============ Trust banner ============ */
.trust-bar {
  background: var(--paper);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 14px 0;
}
.trust-bar .wrap {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.trust-cell {
  text-align: center; line-height: 1.2;
  border-right: 1px dashed var(--line); padding: 6px 8px;
}
.trust-cell:last-child { border-right: none; }
.trust-cell .lbl {
  font-size: 10px; font-weight: 700; color: #fff;
  background: var(--navy); padding: 1px 8px; display: inline-block;
  margin-bottom: 8px;
}
.trust-cell .big {
  font-family: var(--hgothic); font-size: 28px; color: var(--red); line-height: 1; font-weight: 900;
  margin-bottom: 8px;
}
.trust-cell .big .u {
  font-size: 12px; color: var(--ink); font-family: var(--gothic);
}
.trust-cell .sub { font-size: 11px; color: #555; margin-top: 4px; }

/* ============ Section header ============ */
.section { padding: 40px 0; }
.section.dark { background: var(--navy); color: #fff; }
.section.cream { background: var(--green-light); }
.section.stripe {
  background: repeating-linear-gradient(45deg, #ffffff 0 16px, #f3faf5 16px 32px);
}

.sec-head {
  text-align: center; margin-bottom: 26px;
}
.sec-head .en {
  display: inline-block;
  font-family: var(--hgothic); font-size: 11px; color: var(--red); font-weight: 700;
  letter-spacing: .3em;
}
.sec-head h2 {
  font-family: var(--hgothic); font-size: 32px;
  margin: 4px 0 6px; color: var(--navy);
  letter-spacing: -.01em; line-height: 1.2;
  font-weight: 900;
}
.section.dark .sec-head h2 { color: #fff; }
.sec-head h2 .red { color: var(--red); }
.sec-head h2 .yellow {
  background: linear-gradient(180deg, transparent 55%, var(--yellow) 55%);
  padding: 0 4px;
}
.sec-head .sub { color: #666; font-size: 13px; }
.section.dark .sec-head .sub { color: #b8c4dc; }

/* ============ Campaign banner row ============ */
.campaign-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px;
}
.cbanner {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  padding: 14px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  min-height: 168px;
}
.cbanner.red {
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.15) 0 30%, transparent 31%),
    var(--red);
}
.cbanner.navy {
  background: var(--navy);
}
.cbanner.yellow {
  background: var(--yellow);
  color: var(--ink);
  text-shadow: none;
}
.cbanner .stamp-tag {
  display: inline-block; background: var(--yellow); color: var(--red);
  font-weight: 900; font-size: 13px; padding: 2px 8px; font-family: var(--hgothic);
  transform: rotate(-3deg);
}
.cbanner.yellow .stamp-tag { background: var(--red); color: #fff; }
.cbanner h3 {
  font-family: var(--hgothic); font-size: 24px; font-weight: 900;
  margin: 8px 0 4px; line-height: 1.15;
}
.cbanner h3 .huge { font-size: 38px; }
.cbanner h3 .y { color: var(--yellow); }
.cbanner.yellow h3 .y { color: var(--red); }
.cbanner .ribbon {
  position: absolute; right: -32px; top: 12px;
  background: var(--yellow); color: var(--red);
  font-weight: 900; padding: 2px 36px;
  font-family: var(--hgothic); font-size: 12px;
  transform: rotate(35deg);
  border-top: 1px dashed var(--red); border-bottom: 1px dashed var(--red);
}
.cbanner.yellow .ribbon { background: var(--red); color: var(--yellow); border-color: var(--yellow); }
.cbanner small { display: block; opacity: .85; font-size: 11px; margin-top: 6px; }
.cbanner .due {
  display: inline-block;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 11px; padding: 2px 8px; margin-top: 8px; font-weight: 700;
}
.cbanner.yellow .due { background: var(--ink); }

/* ============ Reasons grid ============ */
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.reason {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 16px 16px 14px;
  position: relative;
}
.reason .num {
  position: absolute; top: -12px; left: 12px;
  background: var(--red); color: #fff;
  font-family: var(--hgothic); font-size: 12px; font-weight: 700;
  padding: 3px 10px; letter-spacing: .12em;
}
.reason .num b { font-size: 18px; font-weight: 900; }
.reason .icon {
  width: 100%; height: 100px;
  background: repeating-linear-gradient(45deg, #fff5d4 0 8px, #ffe8a0 8px 16px);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
  font-family: monospace; font-size: 11px; color: #8a6a20;
  margin-bottom: 10px;
}
.reason h3 {
  font-family: var(--hgothic); font-size: 20px;
  margin: 4px 0 6px; color: var(--navy);
  line-height: 1.2;
}
.reason h3 .mk {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
}
.reason p { font-size: 12px; color: #444; margin: 0; }
.reason .check {
  display: flex; gap: 4px; margin-top: 8px;
  flex-wrap: wrap;
}
.reason .check span {
  background: var(--cream); border: 1px solid var(--navy);
  font-size: 11px; padding: 2px 6px; font-weight: 700;
}

/* ============ Service menu ============ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.svc {
  background: #fff;
  border: 2px solid var(--line);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: var(--red);
}
.svc:hover .img .more {
  opacity: 1;
  transform: translateX(0);
}
.svc:hover .img::after {
  background: rgba(232,32,31,0.15);
}
.svc .img {
  height: 130px;
  background:
    repeating-linear-gradient(135deg, #cdbf94 0 10px, #b8a778 10px 20px);
  display: grid; place-items: center;
  color: #5a4a20; font-family: monospace; font-size: 11px;
  position: relative;
  overflow: hidden;
}
.svc .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.15s ease;
  pointer-events: none;
}
.svc .img .label {
  position: absolute; left: 0; top: 0;
  background: var(--red); color: #fff;
  font-weight: 900; padding: 3px 10px;
  font-size: 12px;
  z-index: 2;
}
.svc .img .more {
  position: absolute;
  right: 8px; bottom: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--red);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 3px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  pointer-events: none;
}
.svc .body { padding: 10px 12px 12px; }
.svc h4 {
  margin: 0 0 4px; font-size: 17px; color: var(--navy);
  font-family: var(--hgothic);
}
.svc p { font-size: 12px; color: #555; margin: 0 0 8px; }
.svc .price {
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px dashed var(--line); padding-top: 6px;
}
.svc .price .lbl { font-size: 11px; color: #777; }
.svc .price .val {
  font-family: var(--hgothic); color: var(--red); font-size: 22px;
  line-height: 1; font-weight: 900;
}
.svc .price .val .y { font-size: 12px; }
.svc .price .val .t { font-size: 11px; color: #555; }

/* ============ Before / After ============ */
.ba-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.ba-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px 16px;
  overflow: hidden;
}
.ba-card h4 {
  font-family: var(--hgothic);
  font-size: 15px; color: var(--navy); margin: 0 0 10px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.ba-card h4 .case-num {
  background: var(--navy); color: #fff;
  font-size: 11px; padding: 2px 8px; font-weight: 900;
  letter-spacing: 0.08em;
}
.ba-card h4 .tag {
  background: var(--red); color: #fff;
  font-size: 11px; padding: 1px 8px; font-weight: 700;
  margin-left: auto;
}
/* Story section */
.ba-story {
  margin-top: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.ba-story .story-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  align-items: start;
}
.ba-story .story-row p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #333;
}
.ba-story .story-label {
  display: inline-block;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  padding: 2px 0;
  text-align: center;
  letter-spacing: 0.06em;
  border-radius: 3px;
  color: #fff;
}
.ba-story .story-label.bg { background: var(--navy); }
.ba-story .story-label.fd { background: var(--orange); }
.ba-story .story-label.wk { background: var(--green); }
.ba-story .story-label.vc { background: var(--red); }
.ba-story .story-row.voice {
  background: #fff8d6;
  border: 1px solid var(--yellow);
  padding: 8px 10px;
  border-radius: 6px;
  margin-top: 2px;
}
.ba-story .story-row.voice p {
  font-style: italic;
  color: #5a4a10;
  font-weight: 500;
}
.ba-pair {
  display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center;
  gap: 6px;
}
.ba-pair .arrow {
  color: var(--red); font-weight: 900; font-size: 22px; text-align: center;
}
.ba-img {
  position: relative; aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, #b89c7c 0 8px, #a08866 8px 16px);
  display: grid; place-items: center;
  font-family: monospace; font-size: 10px; color: #3a2a14;
}
.ba-img.after {
  background:
    repeating-linear-gradient(135deg, #6b8aa8 0 8px, #5a7a98 8px 16px);
  color: #e8eef4;
}
.ba-img .corner {
  position: absolute; left: 0; top: 0;
  background: var(--ink); color: #fff;
  font-size: 10px; padding: 1px 6px; font-weight: 700;
}
.ba-img.after .corner { background: var(--red); }
.ba-meta {
  display: flex; gap: 6px; font-size: 11px; color: #444; margin-top: 8px;
  flex-wrap: wrap;
}
.ba-meta span {
  background: var(--cream); border: 1px solid var(--line);
  padding: 1px 6px;
}

/* ============ Process flow ============ */
.flow-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
  position: relative;
}
.flow-step {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 12px 8px;
  text-align: center; position: relative;
  font-size: 12px;
}
.flow-step .step-n {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  padding: 1px 12px; font-family: var(--pop); font-size: 13px;
}
.flow-step h4 {
  font-family: var(--hgothic); font-size: 14px;
  color: var(--navy); margin: 8px 0 4px;
}
.flow-step .ic {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 8px auto;
  background: var(--cream);
  border: 1px dashed var(--line);
  display: grid; place-items: center; font-size: 11px;
  color: #888; font-family: monospace;
  border-radius: 8px;
  overflow: hidden;
}
.flow-step .ic-emoji {
  background: var(--yellow-soft);
  border: 2px solid var(--green);
  font-size: 36px;
  color: var(--navy);
  font-family: inherit;
}
.flow-step .ic-img {
  border: 3px solid var(--green);
  background-color: var(--cream);
  font-size: 0;
}
.flow-step .sub {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}
.flow-step::after {
  content: "▶"; color: var(--red); font-size: 16px;
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.flow-step:last-child::after { content: none; }

/* ============ Reviews ============ */
.review-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.review {
  background: #fff;
  border: 2px solid var(--line);
  padding: 14px;
  position: relative;
}
.review::before {
  content: "“"; position: absolute; right: 10px; top: 0;
  font-family: serif; font-size: 80px; color: var(--yellow); line-height: 1;
}
.review .head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--navy);
  display: grid; place-items: center;
  font-weight: 900; color: var(--navy);
  font-family: var(--hgothic);
}
.review .meta { font-size: 11px; color: #555; line-height: 1.3; }
.review .meta b { color: var(--ink); font-size: 13px; }
.review .stars { color: var(--orange); }
.review h4 {
  font-family: var(--hgothic); font-size: 15px;
  color: var(--navy); margin: 4px 0 6px;
  line-height: 1.3;
}
.review p { font-size: 12px; color: #444; margin: 0; }
.review .pill {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; padding: 1px 6px; font-weight: 700;
  margin-right: 4px;
}

/* ============ FAQ ============ */
.faq-list {
  display: grid; gap: 8px;
}
.faq {
  background: #fff;
  border: 2px solid var(--line);
}
.faq .q {
  padding: 10px 14px;
  display: grid; grid-template-columns: 32px 1fr 24px; gap: 8px;
  align-items: center;
  font-weight: 700; font-size: 14px; color: var(--navy);
  cursor: pointer;
}
.faq .q .mk {
  background: var(--navy); color: #fff;
  width: 28px; height: 28px; display: grid; place-items: center;
  font-family: var(--hgothic); font-size: 14px; font-weight: 900;
}
.faq .q .tg { color: var(--red); font-weight: 900; font-size: 18px; }
.faq.open .q .tg { transform: rotate(45deg); }
.faq .a {
  display: none;
  padding: 0 14px 14px 54px;
  font-size: 13px; color: #444;
  border-top: 1px dashed var(--line);
}
.faq.open .a { display: block; }
.faq .a .mk {
  background: var(--red); color: #fff;
  width: 28px; height: 28px; display: inline-grid; place-items: center;
  font-family: var(--hgothic); font-size: 14px; font-weight: 900; margin-right: 8px;
  vertical-align: middle;
}

/* ============ Area map ============ */
/* ============ Area v2 (redesigned) ============ */
.area-block-v2 {
  display: grid;
  gap: 14px;
}
.area-tokyo {
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.area-tokyo .head {
  background: linear-gradient(135deg, var(--red) 0%, #c41a1a 100%);
  color: #fff;
  padding: 22px 20px;
  position: relative;
}
.area-tokyo .head .ribbon {
  display: inline-block;
  background: var(--yellow);
  color: var(--red);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 3px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.area-tokyo .head h3 {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 32px;
  margin: 0;
  line-height: 1.1;
}
.area-tokyo .head p {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.5;
}
.area-tokyo .city-list {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  align-content: center;
}
.area-tokyo .city {
  background: #fff7e6;
  border: 1px solid #e5d6a8;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px 4px;
  border-radius: 4px;
}
.area-other-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.area-other-row .prefecture {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-other-row .pref-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}
.area-other-row .prefecture h4 {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.02em;
}
.area-other-row .pref-en {
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.18em;
}
.area-other-row .prefecture p {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}
.area-callout {
  background: #fafaf3;
  border: 1px solid #d6cfb8;
  border-left: 5px solid #c9a96e;
  border-radius: 8px;
  padding: 18px 24px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.area-callout > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.area-callout .kicker {
  display: inline-block;
  background: #c9a96e;
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 3px 12px;
  margin-bottom: 0;
}
.area-callout p {
  margin: 0;
  font-family: var(--hgothic);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.area-callout .tel-cta {
  display: grid;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  min-width: 240px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.area-callout .tel-cta .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.area-callout .tel-cta .num {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ============ Area callout banner (unused, kept for reference) ============ */
.area-callout-banner {
  position: relative;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.4) 0 30%, transparent 31%),
    linear-gradient(135deg, var(--yellow) 0%, #ffb547 100%);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 26px 32px 28px 240px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

/* Stamp on top-left (角度付きスタンプ) */
.area-callout-banner .callout-stamp {
  position: absolute;
  top: 18px; left: 22px;
  background: var(--red);
  color: #fff;
  font-family: "Reggae One","RocknRoll One",var(--hgothic),sans-serif;
  font-size: 18px;
  font-weight: 900;
  padding: 12px 14px;
  text-align: center;
  line-height: 1.15;
  transform: rotate(-8deg);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 3;
  border-radius: 4px;
}

/* Ribbon on top-right */
.area-callout-banner .callout-ribbon {
  position: absolute;
  right: -40px; top: 20px;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 13px;
  padding: 4px 52px;
  transform: rotate(35deg);
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
}

/* Illustration row (left side) */
.area-callout-banner .callout-illust {
  position: absolute;
  left: 32px; bottom: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.area-callout-banner .illust-big {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.20));
}
.area-callout-banner .illust-q {
  font-family: "Reggae One",sans-serif;
  font-size: 38px;
  color: var(--red);
  font-weight: 900;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.area-callout-banner .illust-arrow {
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
}
.area-callout-banner .illust-tel {
  font-size: 42px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.20));
}

/* Text block */
.area-callout-banner .callout-text {
  position: relative;
  z-index: 2;
}
.area-callout-banner .callout-kicker {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.area-callout-banner .callout-title {
  margin: 0 0 10px;
  font-family: var(--hgothic);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.area-callout-banner .callout-title .line-1 {
  display: inline-block;
  font-size: 18px;
}
.area-callout-banner .callout-title .line-2 {
  display: inline-block;
  font-size: 28px;
  color: var(--red);
}
.area-callout-banner .callout-title .line-2 .accent {
  font-family: "Reggae One",sans-serif;
  font-size: 36px;
  color: var(--red);
  vertical-align: -2px;
}
.area-callout-banner .callout-title .line-3 {
  display: block;
  font-size: 18px;
  margin-top: 4px;
}
.area-callout-banner .callout-title .line-3 .ok {
  background: var(--red);
  color: #fff;
  font-family: "Reggae One",sans-serif;
  font-size: 20px;
  padding: 2px 12px;
  margin-left: 6px;
  border-radius: 3px;
}
.area-callout-banner .callout-lead {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
}

/* Tel CTA */
.area-callout-banner .callout-tel {
  display: grid;
  background: var(--red);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 6px 14px rgba(232,32,31,0.45);
  border: 3px solid #fff;
  position: relative;
  z-index: 2;
}
.area-callout-banner .callout-tel .tel-lbl {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.area-callout-banner .callout-tel .tel-num {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 2px 0;
}
.area-callout-banner .callout-tel .tel-cta-txt {
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 11px;
  background: rgba(255,255,255,0.20);
  padding: 2px 10px;
  border-radius: 3px;
  margin-top: 4px;
}

/* legacy area-block kept for backward compat */
.area-block {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px;
  background: #fff;
  border: 2px solid var(--line);
  padding: 18px;
}
.area-map {
  height: 320px;
  background:
    radial-gradient(circle at 35% 60%, rgba(232,32,31,.15) 0 20%, transparent 21%),
    radial-gradient(circle at 60% 50%, rgba(14,58,130,.15) 0 16%, transparent 17%),
    repeating-linear-gradient(0deg, #f0f0e0 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, #f0f0e0 0 1px, transparent 1px 24px),
    #fafaf3;
  border: 2px solid var(--navy);
  position: relative;
  font-family: monospace; font-size: 11px;
}
.area-map .pin {
  position: absolute; font-family: var(--hgothic);
  font-size: 11px; font-weight: 700;
  background: #fff; padding: 2px 6px;
  border: 1px solid var(--navy);
}
.area-map .pin::before {
  content: "📍"; margin-right: 2px;
}
.area-info h3 {
  font-family: var(--hgothic); font-size: 20px;
  color: var(--navy); margin: 0 0 8px;
}
.area-info .areas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  font-size: 12px; margin-bottom: 12px;
}
.area-info .areas span {
  background: var(--cream); border: 1px solid var(--line);
  padding: 4px 6px; text-align: center;
}
.area-info .areas span.featured {
  background: var(--red); color: #fff; font-weight: 700; border-color: var(--red);
}
.area-info .callout {
  background: var(--yellow); border: 2px solid var(--ink);
  padding: 10px 12px;
  font-weight: 700; font-size: 13px; line-height: 1.4;
}
.area-info .callout b { color: var(--red); font-size: 17px; }

/* ============ Contact form ============ */
.form-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px;
}
.form-left {
  background: #fff; border: 3px solid var(--red);
  padding: 20px;
}
.form-left h3 {
  font-family: var(--hgothic); color: var(--red); font-size: 22px; font-weight: 900;
  margin: 0 0 4px;
}
.form-left .row {
  display: grid; grid-template-columns: 100px 1fr; gap: 8px;
  align-items: center; margin: 8px 0;
}
.form-left label {
  font-weight: 700; font-size: 13px; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.form-left label .req {
  background: var(--red); color: #fff; font-size: 10px;
  padding: 1px 5px; font-weight: 700;
}
.form-left input, .form-left textarea, .form-left select {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 8px 10px; font-family: inherit; font-size: 13px;
  width: 100%;
}
.form-left textarea { min-height: 80px; resize: vertical; }
.form-left .submit {
  display: block; width: 100%; margin-top: 12px;
  background: var(--red); color: #fff;
  font-family: var(--hgothic); font-size: 20px; font-weight: 900;
  padding: 14px;
  text-align: center; position: relative;
  letter-spacing: .05em;
}
.form-left .submit::after {
  content: "▶"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
}

.form-right {
  display: grid; gap: 10px;
}
.form-right .big-tel {
  background: var(--navy); color: #fff;
  padding: 14px 16px;
  text-align: center;
}
.form-right .big-tel .lbl {
  background: var(--yellow); color: var(--red);
  font-weight: 900; font-size: 12px;
  padding: 2px 10px; display: inline-block; margin-bottom: 4px;
}
.form-right .big-tel .num {
  font-family: var(--hgothic); font-size: 42px; font-weight: 900;
  letter-spacing: -.02em; line-height: 1.05;
}
.form-right .big-tel .num .y { color: var(--yellow); }
.form-right .big-tel .hrs { font-size: 12px; margin-top: 4px; opacity: .9; }

.form-right .line-cta {
  background: #06c755; color: #fff;
  padding: 12px 14px; display: grid;
  grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center;
}
.form-right .line-cta .lg {
  width: 48px; height: 48px;
  background: #fff; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--hgothic); font-size: 16px; font-weight: 900; color: #06c755;
}
.form-right .line-cta h4 {
  margin: 0; font-family: var(--hgothic); font-size: 18px;
}
.form-right .line-cta p { margin: 0; font-size: 11px; opacity: .9; }
.form-right .line-cta .arrow { font-size: 22px; }

.form-right .doc {
  background: var(--cream);
  border: 2px solid var(--navy);
  padding: 10px 12px;
  font-size: 12px; color: #444;
}
.form-right .doc h4 {
  margin: 0 0 4px; font-family: var(--hgothic);
  font-size: 14px; color: var(--navy);
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-dark);
  color: #c5dcd0;
  padding: 30px 0 100px;
  font-size: 12px;
}
.footer .wrap { display: grid; grid-template-columns: 1.2fr 2fr; gap: 30px; }
.footer h4 {
  color: #fff; font-family: var(--hgothic); font-size: 14px;
  margin: 0 0 8px; padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer .info p { margin: 4px 0; }
.footer .info b { color: #fff; }
.foot-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.foot-links ul { list-style: none; padding: 0; margin: 0; }
.foot-links li { padding: 3px 0; }
.foot-links li::before { content: "› "; color: var(--yellow); }
.footer .copy {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 20px; padding-top: 14px;
  text-align: center; font-size: 11px;
}

/* ============ Sticky bottom CTA ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(31, 98, 68, .96);
  color: #fff; z-index: 50;
  padding: 8px 0;
  border-top: 3px solid var(--yellow);
}
.sticky-cta .wrap {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px;
  align-items: center;
}
.sticky-cta .msg {
  font-family: var(--hgothic); font-weight: 900; font-size: 15px;
  line-height: 1.2;
}
.sticky-cta .msg .y { color: var(--yellow); }
.sticky-cta .msg .small { font-size: 11px; font-weight: 400; opacity: .9; }
.sticky-cta .tel {
  background: #fff; color: var(--red);
  padding: 6px 14px; display: flex; align-items: center; gap: 8px;
}
.sticky-cta .tel .num {
  font-family: var(--hgothic); font-size: 24px; line-height: 1; font-weight: 900;
}
.sticky-cta .btn {
  font-family: var(--hgothic); font-weight: 900;
  padding: 12px 20px; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.sticky-cta .btn.green { background: var(--green); color: #fff; }
.sticky-cta .btn.orange { background: var(--orange); color: #fff; }

/* ============ Float side CTA ============ */
.float-side {
  position: fixed; right: 0; top: 30%; z-index: 49;
  display: grid; gap: 4px;
}
.float-side a {
  background: var(--red); color: #fff;
  writing-mode: vertical-rl;
  padding: 16px 6px;
  font-family: var(--hgothic); font-weight: 900;
  font-size: 13px; letter-spacing: .15em;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.float-side a.green { background: var(--green); }
.float-side a.navy { background: var(--navy); }

/* ============ Misc utilities ============ */
.kicker {
  display: inline-block;
  font-family: var(--hgothic); font-weight: 700;
  color: var(--red);
  font-size: 11px; letter-spacing: .3em;
}
.divider-zigzag {
  height: 4px;
  background: var(--red);
  opacity: .5;
}

/* Reasons-row second style (warranty / cert) */
.cert-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2848 100%);
  padding: 18px 16px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cert {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cert .seal {
  width: 56px; height: 56px;
  border-radius: 0;
  background: var(--yellow);
  border: none;
  display: grid; place-items: center;
  font-family: var(--hgothic);
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
  position: relative;
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}
.cert .seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0,0,0,0.18);
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.cert .label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* News list */
.news-block {
  background: #fff;
  border: 2px solid var(--line);
  padding: 14px 18px;
}
.news-block h3 {
  font-family: var(--hgothic); font-size: 18px;
  color: var(--navy); margin: 0 0 10px;
  border-bottom: 2px solid var(--red); padding-bottom: 4px;
}
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li {
  display: grid; grid-template-columns: 100px 80px 1fr;
  gap: 10px; padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.news-list li .date { color: #666; font-family: monospace; }
.news-list li .cat {
  background: var(--navy); color: #fff;
  font-size: 11px; padding: 1px 8px; font-weight: 700;
  text-align: center;
}
.news-list li .cat.r { background: var(--red); }
.news-list li .cat.o { background: var(--orange); }

/* ============ CEO greeting ============ */
.ceo-block {
  background: #fff;
  border: 3px solid var(--navy);
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}
.ceo-block::before {
  content: "MESSAGE";
  position: absolute; top: -12px; left: 24px;
  background: var(--navy); color: var(--yellow-soft);
  font-family: var(--hgothic); font-size: 12px; font-weight: 700;
  padding: 3px 14px; letter-spacing: .25em;
}
.ceo-photo {
  background:
    repeating-linear-gradient(135deg, #c9b890 0 10px, #b6a070 10px 20px);
  display: grid; place-items: center;
  font-family: monospace; font-size: 11px; color: #5a4a20;
  border-right: 3px solid var(--navy);
  position: relative;
  min-height: 380px;
}
.ceo-photo::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px dashed rgba(0,0,0,.3);
}
.ceo-photo .seal {
  position: absolute; right: -18px; bottom: 20px;
  width: 96px; height: 96px;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--hgothic); font-size: 12px; line-height: 1.2; font-weight: 700;
  color: var(--navy);
  transform: rotate(-6deg);
}
.ceo-photo .seal .big { font-size: 22px; display: block; color: var(--red); }

.ceo-text { padding: 30px 36px 28px; }
.ceo-text .title-tag {
  display: inline-block; background: var(--cream);
  border: 2px solid var(--navy);
  font-size: 12px; font-weight: 700; padding: 2px 10px;
  color: var(--navy);
}
.ceo-text h3 {
  font-family: var(--hgothic); font-size: 28px; font-weight: 900;
  color: var(--navy); margin: 8px 0 12px;
  line-height: 1.3; letter-spacing: -.01em;
}
.ceo-text h3 .red { color: var(--red); }
.ceo-text h3 .yellow {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
}
.ceo-text p { font-size: 13px; color: #333; margin: 0 0 10px; line-height: 1.85; }
.ceo-text .quote {
  background: var(--cream);
  border-left: 6px solid var(--red);
  padding: 10px 14px;
  font-family: var(--hgothic);
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin: 12px 0;
  line-height: 1.4;
}
.ceo-text .quote .mk {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
}
.ceo-sign {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  align-items: center;
}
.ceo-sign .role {
  font-size: 11px; color: #666; line-height: 1.3;
}
.ceo-sign .name {
  font-family: var(--hgothic); font-size: 24px; font-weight: 900;
  color: var(--ink); letter-spacing: .04em;
}
.ceo-sign .name .en {
  font-size: 11px; color: #888; font-family: monospace;
  letter-spacing: .15em; display: block;
}
.ceo-sign .hanko {
  width: 60px; height: 60px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--hgothic); font-size: 16px; font-weight: 900;
  display: grid; place-items: center;
  transform: rotate(-4deg);
  line-height: 1;
}

.ceo-values {
  background: var(--navy);
  color: #fff;
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}
.ceo-values .v {
  padding: 14px 16px;
  border-right: 1px dashed rgba(255,255,255,.25);
}
.ceo-values .v:last-child { border-right: none; }
.ceo-values .v .n {
  font-family: var(--hgothic); color: var(--yellow-soft); font-weight: 700;
  font-size: 11px; letter-spacing: .25em;
}
.ceo-values .v h4 {
  font-family: var(--hgothic); font-size: 18px;
  margin: 4px 0 4px;
}
.ceo-values .v p {
  font-size: 12px; margin: 0; opacity: .88;
}

/* ============ Staff cards ============ */
.staff-tabs {
  display: flex; gap: 4px; justify-content: center;
  margin-bottom: 16px;
}
.staff-tabs button {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 6px 18px;
  font-weight: 700; font-size: 13px;
  color: var(--navy);
  font-family: var(--hgothic);
}
.staff-tabs button.on {
  background: var(--navy); color: #fff;
}
.staff-tabs button .c {
  background: var(--yellow); color: var(--ink);
  font-size: 10px; padding: 1px 6px; margin-left: 4px;
  font-family: var(--gothic);
}
.staff-tabs button.on .c { background: var(--red); color: #fff; }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.staff-card {
  background: #fff;
  border: 2px solid var(--line);
  overflow: hidden;
  position: relative;
}
.staff-card .pic {
  height: 200px;
  background:
    repeating-linear-gradient(135deg, #c2b08a 0 10px, #ad9a72 10px 20px);
  position: relative;
  display: grid; place-items: center;
  font-family: monospace; font-size: 10px; color: #4a3a18;
  border-bottom: 2px solid var(--line);
}
.staff-card .pic .role-tag {
  position: absolute; left: 0; top: 0;
  background: var(--red); color: #fff;
  font-weight: 900; padding: 3px 10px;
  font-size: 11px;
}
.staff-card .pic .years {
  position: absolute; right: 8px; bottom: 8px;
  background: var(--cream);
  border: 1px solid var(--navy);
  font-family: var(--hgothic); font-size: 12px; color: var(--ink);
  padding: 1px 8px; font-weight: 700;
  line-height: 1.1;
}
.staff-card .pic .years b {
  font-size: 18px; color: var(--red);
}
.staff-card .body { padding: 10px 12px 12px; }
.staff-card .name {
  font-family: var(--hgothic);
  font-size: 17px; color: var(--navy);
  margin: 0; line-height: 1.2;
}
.staff-card .name .en {
  display: block; font-family: monospace;
  font-size: 10px; color: #888; letter-spacing: .12em;
  margin-top: 2px;
}
.staff-card .specs {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin: 6px 0;
}
.staff-card .specs span {
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 10px;
  padding: 1px 6px;
  font-weight: 700;
  color: var(--navy);
}
.staff-card .quote {
  background: var(--cream);
  border-left: 4px solid var(--red);
  padding: 6px 8px;
  font-size: 12px; color: #333;
  line-height: 1.5;
  margin: 8px 0 0;
}
.staff-card .quote::before {
  content: "「"; color: var(--red); font-weight: 900;
}
.staff-card .quote::after {
  content: "」"; color: var(--red); font-weight: 900;
}
.staff-card .meta {
  font-size: 11px; color: #666;
  display: grid; grid-template-columns: auto 1fr; gap: 4px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}
.staff-card .meta dt {
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 1px 4px; margin: 0;
  text-align: center;
  align-self: center;
}
.staff-card .meta dd { margin: 0; align-self: center; }

/* Stat band */
.stat-band {
  background: var(--green);
  color: #fff;
  padding: 28px 0 32px;
  position: relative;
}
.stat-band::before, .stat-band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 4px;
  background: var(--yellow);
  opacity: .6;
}
.stat-band::before { top: 0; }
.stat-band::after { bottom: 0; }
.stat-band .wrap {
  display: block;
  text-align: left;
}
.stat-band .worries-head {
  text-align: center;
  margin-bottom: 18px;
}
.stat-band .kicker-white {
  display: inline-block;
  background: #fff;
  color: var(--green);
  font-family: var(--hgothic); font-weight: 900;
  font-size: 12px; letter-spacing: 0.22em;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.stat-band .worries-head h3 {
  font-family: var(--hgothic); font-weight: 900;
  font-size: 30px; line-height: 1.25;
  margin: 0;
  color: #fff;
}
.stat-band .worries-head h3 .y { color: var(--yellow-soft); }
.stat-band .worries-head p {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .92;
}
.stat-band .worries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.stat-band .worry-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.stat-band .worry-item .check {
  width: 28px; height: 28px;
  background: var(--yellow);
  color: var(--green);
  font-weight: 900;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 14px;
}
.stat-band .worry-item .txt b {
  display: block;
  font-family: var(--hgothic); font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.35;
}
.stat-band .worry-item .txt small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.stat-band .item-legacy-keep-for-no-use {
  display: none;
}
/* ============ Anchor scroll offset ============ */
section[id], #reason, #service, #works, #voice, #flow, #company, #contact {
  scroll-margin-top: 90px;
}

html { scroll-behavior: smooth; }

/* ============ Phone-bold CTA (universal) ============ */
.phone-bold {
  display: inline-grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.phone-bold .ic {
  font-size: 18px;
}
.phone-bold .num {
  display: block;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.phone-bold .lbl {
  display: block;
  font-size: 10px;
  color: #555;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.phone-bold.emergency {
  border-color: var(--orange);
  background: #fff;
}
.phone-bold.emergency .num {
  color: var(--red);
}

/* ============ Section "詳しく見る" pill button ============ */
.section-more-pill {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(232,32,31,0.30);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.15s ease;
}
.section-more-pill:hover {
  background: var(--navy);
  transform: translateX(4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.20);
}

/* Inline title link (ServicesSection only) */
.sec-title-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.15s ease;
}
.sec-title-link:hover {
  opacity: 0.78;
}
.sec-title-link .sec-title-arrow {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 28px;
  color: var(--red);
  background: var(--yellow);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.sec-title-link:hover .sec-title-arrow {
  transform: translateX(6px);
  background: var(--red);
  color: #fff;
}

/* ============ Page Hero (sub-pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2848 100%);
  color: #fff;
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 16px,
    rgba(255,255,255,0.03) 16px 17px
  );
  pointer-events: none;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero-crumbs {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.page-hero-crumbs a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.page-hero-crumbs a:hover {
  color: var(--yellow);
}
.page-hero-crumbs .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.page-hero .kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.02em;
}
.page-hero-sub {
  margin: 12px 0 0;
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.7;
  max-width: 720px;
}

/* GNav: home-link */
.gnav .home-link {
  background: rgba(0,0,0,0.06);
}

/* ============ FAQ Detail (categorized) ============ */
.faq-cat-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--line);
}
.faq-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: all 0.15s ease;
}
.faq-cat-btn .icon {
  font-size: 28px;
  margin-bottom: 6px;
}
.faq-cat-btn .lbl {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 4px;
}
.faq-cat-btn .count {
  font-size: 11px;
  background: var(--cream);
  padding: 1px 8px;
  border-radius: 999px;
  color: #555;
  font-weight: 700;
}
.faq-cat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.faq-cat-btn[class*="cat-"] {
  border-color: var(--line);
}
.faq-cat-btn[class*="cat-"]:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.faq-cat-btn[class*="cat-"]:hover .count {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.faq-cat-block {
  margin-bottom: 28px;
  scroll-margin-top: 100px;
}
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.faq-cat-header .icon { font-size: 26px; }
.faq-cat-header h3 {
  margin: 0;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 19px;
  flex: 1;
}
.faq-cat-header .cat-count {
  background: rgba(255,255,255,0.20);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 900;
}
.faq-cat-block[class*="cat-"] .faq-cat-header { background: var(--navy); }

.faq-cat-items {
  background: #fff;
  border: 2px solid var(--line);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.faq-d-item {
  border-bottom: 1px solid var(--line);
}
.faq-d-item:last-child { border-bottom: none; }
.faq-d-q {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 0.15s ease;
}
.faq-d-q:hover { background: var(--cream); }
.faq-d-q .mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 14px;
}
.faq-d-q .text {
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.faq-d-q .toggle {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  text-align: center;
}
.faq-d-item.open .faq-d-q { background: var(--cream); }
.faq-d-a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 0 18px 16px 18px;
  background: #fafaf3;
}
.faq-d-a .mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 14px;
  margin-top: 4px;
}
.faq-d-a p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
}

.faq-bottom-cta {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--yellow-soft) 100%);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.faq-bottom-cta p {
  margin: 0;
  font-family: var(--hgothic);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.faq-bottom-link {
  background: var(--red);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(232,32,31,0.30);
  white-space: nowrap;
}
.faq-bottom-link:hover {
  background: #c41a1a;
}

/* ============ Company Leader (CEO profile + Q&A) ============ */
.leader-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  margin-bottom: 32px;
  align-items: stretch;
}
.leader-photo {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  border: 4px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.leader-stamp {
  position: absolute;
  right: -10px; top: -10px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--hgothic);
  font-weight: 900;
  transform: rotate(-8deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  text-align: center;
  line-height: 1.1;
}
.leader-stamp .big {
  font-size: 32px;
  color: var(--yellow-soft);
  display: block;
}
.leader-stamp .sub {
  font-size: 12px;
  display: block;
}

.leader-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-role {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 14px;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-bottom: 12px;
}
.leader-name {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 36px;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.leader-name .leader-en {
  display: block;
  font-size: 12px;
  color: #777;
  font-family: var(--gothic);
  letter-spacing: 0.18em;
  margin-top: 4px;
}
.leader-motto {
  font-family: var(--hgothic);
  font-size: 18px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: var(--yellow-soft);
  border-left: 4px solid var(--red);
  line-height: 1.5;
}
.leader-meta {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px 14px;
  font-size: 13px;
  margin: 0;
}
.leader-meta dt {
  background: var(--cream);
  color: #555;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
}
.leader-meta dd {
  margin: 0;
  padding: 4px 0;
  color: #222;
}
.leader-qual {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 9px;
  margin: 2px 4px 2px 0;
  border-radius: 3px;
}

.leader-section-title {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  padding-right: 40px;
}

.leader-career-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.leader-career-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.leader-career-item:last-child { border-bottom: none; }
.leader-career-item .year {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 16px;
  color: var(--red);
}
.leader-career-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #2a2a2a;
}

.leader-qa-list {
  display: grid;
  gap: 14px;
}
.leader-qa-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.leader-qa-item .qa-q,
.leader-qa-item .qa-a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.leader-qa-item .qa-q {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.leader-qa-item .qa-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
}
.leader-qa-item .qa-q .qa-mark { background: var(--red); }
.leader-qa-item .qa-a .qa-mark { background: var(--green); }
.leader-qa-item .qa-q p {
  margin: 0;
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  padding-top: 5px;
}
.leader-qa-item .qa-a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #2d2d2d;
  padding-top: 6px;
}

/* ============ Company Info table ============ */
.company-info-grid {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.company-info-table {
  width: 100%;
  border-collapse: collapse;
}
.company-info-table tr {
  border-bottom: 1px solid var(--line);
}
.company-info-table tr:last-child { border-bottom: none; }
.company-info-table th {
  width: 200px;
  text-align: left;
  background: var(--navy);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 18px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.company-info-table td {
  padding: 12px 20px;
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.7;
  background: #fff;
}

/* ============ History timeline ============ */
.history-timeline {
  position: relative;
  padding: 8px 0;
}
.history-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  position: relative;
}
.history-item:last-child { padding-bottom: 0; }
.history-year {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 24px;
  color: var(--red);
  text-align: right;
  padding-top: 2px;
  letter-spacing: 0.02em;
}
.history-line {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}
.history-line::before {
  content: "";
  position: absolute;
  top: 12px; bottom: -22px;
  width: 3px;
  background: var(--green);
}
.history-item:last-child .history-line::before { display: none; }
.history-line .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--green);
  margin-top: 6px;
  z-index: 1;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.history-body {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 12px 18px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.history-body h3 {
  margin: 0 0 6px;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 17px;
  color: var(--navy);
}
.history-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

/* ============ Flow Timeline (detail page only) ============ */
.flow-timeline {
  position: relative;
  padding: 8px 0;
}
.flow-tl-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  padding-bottom: 30px;
}
.flow-tl-step:last-child { padding-bottom: 0; }

.flow-tl-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-tl-num {
  background: var(--red);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
  z-index: 2;
}
.flow-tl-icon {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  background: var(--yellow-soft);
  border: 4px solid var(--green);
  display: grid;
  place-items: center;
  font-size: 76px;
  z-index: 2;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  overflow: hidden;
}
.flow-tl-icon.has-img {
  background-color: var(--cream);
  font-size: 0;
}
.flow-tl-line {
  position: absolute;
  top: 218px;
  bottom: -30px;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--green) 0 8px,
    transparent 8px 14px
  );
  z-index: 1;
}

.flow-tl-body {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  position: relative;
}
.flow-tl-body::before {
  content: "";
  position: absolute;
  left: -10px; top: 24px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--line) transparent transparent;
}
.flow-tl-body::after {
  content: "";
  position: absolute;
  left: -7px; top: 25px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #fff transparent transparent;
}

.flow-tl-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.flow-tl-head h3 {
  margin: 0;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}
.flow-tl-sub {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.flow-tl-duration {
  margin-left: auto;
  background: var(--cream);
  border: 1px solid var(--yellow);
  color: #5a4a10;
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 3px;
}

.flow-tl-detail {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: #2a2a2a;
}

.flow-tl-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.flow-tl-action {
  background: #fafaf3;
  border-left: 4px solid var(--navy);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
}
.flow-tl-action.customer {
  border-left-color: var(--orange);
  background: #fff8d6;
}
.flow-tl-action.staff {
  border-left-color: var(--green);
  background: #effaf0;
}
.flow-tl-action .lbl {
  display: block;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: var(--navy);
}
.flow-tl-action.customer .lbl { color: #a85a18; }
.flow-tl-action.staff .lbl { color: #1f7a40; }
.flow-tl-action p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

/* ============ Works Details (detail page only) ============ */
.works-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  color: #fff;
}
.works-stat {
  text-align: center;
  border-right: 1px dashed rgba(255,255,255,0.25);
  padding: 0 6px;
}
.works-stat:last-child { border-right: none; }
.works-stat .lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
}
.works-stat .val {
  display: block;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
}
.works-stat .val .u {
  font-size: 13px;
  color: #fff;
  margin-left: 2px;
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--line);
}
.works-filter-btn {
  background: #fff;
  border: 2px solid var(--line);
  color: var(--ink);
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.works-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.works-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 10px rgba(232,32,31,0.30);
}
.works-filter-btn .count {
  background: rgba(0,0,0,0.10);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 900;
}
.works-filter-btn.active .count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.works-empty {
  padding: 40px 20px;
  text-align: center;
  color: #777;
  background: #fafafa;
  border-radius: 10px;
}

.works-detail-list {
  display: grid;
  gap: 24px;
}
.works-detail-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.works-detail-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.works-detail-head .case-num {
  background: var(--navy);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 3px;
}
.works-detail-head h3 {
  margin: 0;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
}
.works-detail-head .type-tag {
  background: var(--red);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 3px;
}
.works-detail-head .rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.works-detail-head .rating .stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 1px;
}
.works-detail-head .rating .rate-text {
  font-size: 10px;
  color: #555;
  font-weight: 700;
}

.works-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  padding: 18px 20px;
}
.works-detail-photos .photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.works-detail-photos .photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}
.works-detail-photos .photo .ph-label {
  position: absolute;
  top: 0; left: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
}
.works-detail-photos .photo.after .ph-label {
  background: var(--red);
}

.works-detail-info .meta-table {
  margin: 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 6px 12px;
  font-size: 12px;
}
.works-detail-info .meta-table dt {
  color: #555;
  font-weight: 700;
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 3px;
}
.works-detail-info .meta-table dd {
  margin: 0;
  padding: 5px 0;
  color: #222;
  font-weight: 500;
}
.works-detail-info .meta-table dd.cost {
  color: var(--red);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 16px;
}
.works-detail-info .rel-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--navy);
}
.works-detail-info .rel-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.works-detail-story {
  background: #faf8f1;
  padding: 18px 22px 20px;
  border-top: 1px solid var(--line);
}
.works-detail-story .story-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 12px;
  align-items: start;
}
.works-detail-story .story-step:last-of-type { margin-bottom: 0; }
.works-detail-story .step-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
}
.works-detail-story .step-mark.bg { background: var(--navy); }
.works-detail-story .step-mark.fd { background: var(--orange); }
.works-detail-story .step-mark.wk { background: var(--green); }
.works-detail-story .step-mark.ep { background: #8a6d9a; }
.works-detail-story .step-body h4 {
  margin: 0 0 4px;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
}
.works-detail-story .step-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}
.works-detail-story .story-voice {
  margin-top: 14px;
  padding: 14px 18px;
  background: #fff8d6;
  border: 1px solid var(--yellow);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  position: relative;
}
.works-detail-story .story-voice .voice-mark {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.works-detail-story .story-voice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5a4a10;
  font-weight: 500;
  font-style: italic;
}

/* ============ Service Details (each SERVICES expanded) ============ */
.svc-detail {
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  scroll-margin-top: 100px;
}
.svc-detail:target {
  border-color: var(--red);
  animation: svcDetailHighlight 1.6s ease;
}
@keyframes svcDetailHighlight {
  0% { box-shadow: 0 0 0 4px rgba(232,32,31,0.6), 0 6px 16px rgba(0,0,0,0.10); }
  100% { box-shadow: 0 6px 16px rgba(0,0,0,0.10); }
}
.svc-detail-head {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1f4d 100%);
  border-bottom: 4px solid var(--yellow);
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.svc-detail-icon {
  position: relative;
  height: 90px;
  width: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.30);
  z-index: 1;
}
.svc-detail-icon .label {
  position: absolute;
  top: 5px; left: 5px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.svc-detail-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 16px,
    rgba(255,255,255,0.035) 16px 17px
  );
  pointer-events: none;
}
.svc-detail-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}
.svc-detail-title .num {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 2px 10px;
  width: fit-content;
  border-radius: 2px;
}
.svc-detail-title h3 {
  margin: 0;
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.svc-detail-title .desc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: 0.03em;
}
.svc-detail-head .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--yellow);
  border-radius: 8px;
  padding: 12px 20px;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 2px solid #fff;
}
.svc-detail-head .price .lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  background: var(--navy);
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  align-self: center;
}
.svc-detail-head .price .val {
  font-family: var(--hgothic);
  font-weight: 900;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.svc-detail-head .price .val .y {
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
  font-family: var(--hgothic);
  margin-left: 2px;
}
.svc-detail-body {
  padding: 20px 22px 22px;
  background: #faf8f1;
}
.svc-detail-body .lead {
  font-size: 15px;
  line-height: 1.85;
  color: #2a2a2a;
  margin: 0 0 18px;
  padding: 14px 20px;
  background: #fff;
  border-left: 5px solid #c9a96e;
  border-radius: 0 6px 6px 0;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 12px;
}
.svc-detail-grid .block {
  background: #fff;
  border: 1px solid #e6dfd0;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  position: relative;
}
.svc-detail-grid .block h4 {
  margin: 0;
  padding: 11px 16px;
  font-family: var(--hgothic);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
  background: #6e7d8a;
  position: relative;
}
.svc-detail-grid .block ul {
  margin: 0;
  padding: 12px 16px 14px;
  list-style: none;
}
.svc-detail-grid .block li {
  font-size: 13px;
  line-height: 1.7;
  padding: 0;
  color: #353535;
  position: relative;
  padding-left: 16px;
  margin-top: 4px;
  font-weight: 500;
}
.svc-detail-grid .block li:first-child { margin-top: 0; }
.svc-detail-grid .block li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 8px;
  top: 0.6em;
}
.svc-detail-grid .block p {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #353535;
}

/* Banner-style color per block (softer palette) */
.svc-detail-grid .block.symptoms h4 { background: #b56a78; }
.svc-detail-grid .block.symptoms li::before { color: #b56a78; }

.svc-detail-grid .block.methods h4 { background: #5a82a8; }
.svc-detail-grid .block.methods li::before { color: #5a82a8; }

.svc-detail-grid .block.duration h4 { background: #b58a6c; }
.svc-detail-grid .block.duration p {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--hgothic);
  color: #8a6042;
  text-align: center;
  padding: 22px 14px;
  letter-spacing: 0.02em;
}

.svc-detail-grid .block.pros h4 { background: #6e9c7e; }
.svc-detail-grid .block.pros li::before { color: #6e9c7e; }

.svc-detail-grid .block.caution {
  grid-column: span 3;
  margin-top: 10px;
}
.svc-detail-grid .block.caution h4 {
  background: #ac6a52;
}
.svc-detail-grid .block.caution h4::before {
  content: "⚠ ";
  margin-right: 4px;
}
.svc-detail-grid .block.caution li::before { color: #ac6a52; }
.svc-detail-grid .block.caution ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  padding: 14px 18px 15px;
}
