: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: 10px;
  display: grid; grid-template-columns: 60px 1fr; gap: 10px;
}
.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: 8px;
  align-items: center;
  border: 2px solid var(--navy);
}
.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: 0 6px;
}
.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: 4px;
}
.trust-cell .big {
  font-family: var(--hgothic); font-size: 28px; color: var(--red); line-height: 1; font-weight: 900;
}
.trust-cell .big .u {
  font-size: 12px; color: var(--ink); font-family: var(--gothic);
}
.trust-cell .sub { font-size: 11px; color: #555; }

/* ============ 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;
}
.cbanner.red {
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.15) 0 30%, transparent 31%),
    var(--red);
  color: #fff;
}
.cbanner.navy {
  background: var(--navy);
  color: #fff;
}
.cbanner.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.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;
}
.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;
}
.svc .img .label {
  position: absolute; left: 0; top: 0;
  background: var(--red); color: #fff;
  font-weight: 900; padding: 3px 10px;
  font-size: 12px;
}
.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(3, 1fr); gap: 12px;
}
.ba-card {
  background: #fff;
  border: 2px solid var(--line);
  padding: 10px;
}
.ba-card h4 {
  font-family: var(--hgothic);
  font-size: 14px; color: var(--navy); margin: 0 0 8px;
  display: flex; justify-content: space-between;
}
.ba-card h4 .tag {
  background: var(--red); color: #fff;
  font-size: 11px; padding: 1px 6px; font-weight: 700;
}
.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: 48px; height: 48px;
  margin: 4px auto; background: var(--cream);
  border: 1px dashed var(--line);
  display: grid; place-items: center; font-size: 11px;
  color: #888; font-family: monospace;
}
.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-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: 8px;
  margin-top: 16px;
}
.cert {
  background: #fff; border: 2px solid var(--navy);
  padding: 8px;
  text-align: center; font-size: 11px; line-height: 1.2;
}
.cert .seal {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 4px;
  background: var(--cream);
  border: 2px solid var(--navy);
  display: grid; place-items: center;
  font-family: var(--hgothic); color: var(--navy); font-weight: 900;
  font-size: 18px;
}

/* 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: 22px 0;
  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: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  text-align: center;
}
.stat-band .item {
  border-right: 1px dashed rgba(255,255,255,.35);
  padding: 0 10px;
}
.stat-band .item:last-child { border-right: none; }
.stat-band .lbl {
  font-family: var(--hgothic); font-weight: 700; font-size: 13px;
  background: rgba(0,0,0,.2); padding: 2px 10px; display: inline-block;
}
.stat-band .num {
  font-family: var(--hgothic); font-size: 46px; line-height: 1; font-weight: 900;
  color: var(--yellow-soft);
  margin: 4px 0 0;
}
.stat-band .num .u { font-size: 18px; color: #fff; }
.stat-band .sub { font-size: 11px; opacity: .9; }
