@charset "UTF-8";

/* ==============================================
   CUSTOM PROPERTIES
   ============================================== */
:root {
  /* --brand / --brand-dark / --brand-bright は header.php の <style> で動的に注入されます */
  --brand:        #1a56db; /* フォールバック：PHP未適用時のみ有効 */
  --brand-dark:   #1142b7;
  --brand-bright: #4a78e8;
  --gold:         #C8920C;
  --gold-2:       #F5A623;
  --gold-3:       #FFE07A;
  --bg:           #ffffff;
  --bg-2:         #f8f9fb;
  --bg-3:         #f0f2f5;
  --ink:          #0f172a;
  --ink-2:        #1e293b;
  --ink-3:        #64748b;
  --ink-4:        #94a3b8;
  --border:       #e2e8f0;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 2px 16px rgba(0,0,0,.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --max-w:        1200px;
  --nav-h:        72px;
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ==============================================
   TYPOGRAPHY UTILITIES
   ============================================== */
.en {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: .04em;
}

/* ==============================================
   LAYOUT
   ============================================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.sec {
  padding: 80px 0;
}
.sec--alt {
  background: var(--bg-2);
}
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-label {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
}
.sec-title span {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  margin-left: 4px;
}
.sec-sub {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 15px;
}
.center { text-align: center; }

/* ==============================================
   NAVIGATION
   ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-header--top .container {
  justify-content: space-between;
}
.site-header .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo .img {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .img__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo .img__icon svg {
  width: 100%;
  height: 100%;
}
.logo .img__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.logo .text {
  display: none;
}

/* Desktop navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto; /* push to right side */
}
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.site-nav a:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, white);
}

.contact-btn {
  margin-left: 16px; /* gap between nav and CTA buttons */
}
.contact-btn .btn-list {
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact-btn .btn a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .2s;
}
.contact-btn .btn:first-child a {
  background: var(--brand);
  color: #fff;
}
.contact-btn .btn:last-child a {
  background: #06C755;
  color: #fff;
}
.contact-btn .btn a:hover { opacity: .85; }
.contact-btn .btn .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-btn .btn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-btn .btn .text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.contact-btn .btn .text span:last-child {
  font-size: 10px;
  opacity: .85;
}

/* Hamburger */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}
.hbg .line {
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: transform .3s, opacity .3s;
}
.hbg.is-hbg .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.is-hbg .line:nth-child(2) { opacity: 0; }
.hbg.is-hbg .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 24px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer.is-drawer {
  opacity: 1;
  pointer-events: auto;
}
.drawer .links { display: flex; flex-direction: column; gap: 0; }
.drawer .link a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.drawer .link a:hover { color: var(--brand); }
.drawer-contact-btn { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.drawer-contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
}
.drawer-contact-btn a:first-child { background: var(--brand); color: #fff; }
.drawer-contact-btn a:last-child { background: #06C755; color: #fff; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* Strengths ticker pinned to bottom of hero */
.ticker--strengths {
  position: relative;
  z-index: 2;
  margin-top: auto; /* pushes to bottom of flex column */
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero-bg-l {
  flex: 1;
  background: #fff;
}
.hero-bg-r {
  width: 42%;
  background: var(--brand);
}

.hero-trucks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-truck { position: absolute; }
.hero-truck-l {
  left: 2%;
  bottom: 0;
  width: 36%;
  max-height: 85%;
  object-fit: contain;
  object-position: bottom left;
  opacity: .18;
}
.hero-truck-r {
  right: 1%;
  bottom: 0;
  width: 38%;
  max-height: 90%;
  object-fit: contain;
  object-position: bottom right;
  opacity: .22;
}
.hero-truck-sp { display: none; }

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1; /* fills remaining space above ticker */
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

/* Hero left */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.hero-kicker {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: .15em;
  color: var(--ink-3);
  margin-bottom: 6px;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-h1-gold {
  display: block;
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  background: linear-gradient(90deg,
    #7A4800 0%, #C8920C 12%, #F5A623 28%,
    #FFE07A 48%, #F5A623 68%, #C8920C 84%, #7A4800 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

.hero-h1 {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-h1 br { display: inline; }

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-sub br { display: inline; }

/* Hero buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C8920C 0%, #F5A623 50%, #C8920C 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-gold:hover { opacity: .88; transform: translateY(-1px); }

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-line:hover { opacity: .88; transform: translateY(-1px); }

.ico-line {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
}
.badge-ico {
  width: 28px;
  height: 28px;
  color: var(--brand);
  flex-shrink: 0;
}
.badge-ico svg { width: 100%; height: 100%; }
.badge-txt {
  font-size: 12px;
  line-height: 1.3;
  color: var(--ink-2);
}
.badge-txt strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* Hero right – form card */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,146,12,.2);
  overflow: hidden;
  position: relative;
}

@keyframes cardShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.form-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg,
    #7A4800 0%, #C8920C 20%, #F5A623 40%,
    #FFE07A 60%, #F5A623 80%, #C8920C 90%, #7A4800 100%);
  background-size: 200% auto;
  animation: cardShimmer 3s linear infinite;
}

.form-card-head {
  background: var(--brand);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
}
.form-card-head .step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .85;
  margin-bottom: 2px;
}
.form-card-head .step-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.form-card-body {
  padding: 20px;
}

/* ==============================================
   FORM STYLES (PHP mail form – dl/dt/dd structure)
   ============================================== */
.form-style .form-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.form-style .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 6px;
}
.form-style .item dt.text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.3;
}
/* Remove old dot style */
.form-style .item dt.text i { display: none; }

/* Required badge */
.req {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.5;
  white-space: nowrap;
}
.form-style .item dd input,
.form-style .item dd select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-style .item dd select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.form-style .item dd input:focus,
.form-style .item dd select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-style .item dd.required input,
.form-style .item dd.required select {
  border-color: #fca5a5;
}

/* Step visibility */
.form-block { display: none; }
.form-block.is-show { display: block; }

/* Next / Back buttons */
.next-btn button,
.form-back-btn button {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: opacity .2s;
}
.next-btn button {
  background: var(--brand);
  color: #fff;
}
.next-btn button:hover { opacity: .85; }
.form-back-btn button {
  background: var(--bg-3);
  color: var(--ink-3);
  margin-top: 8px;
}
.form-back-btn button:hover { opacity: .75; }

/* Submit buttons */
.submit-btn input[type="button"],
.submit-btn input[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #C8920C 0%, #F5A623 50%, #C8920C 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.submit-btn input[type="button"]:hover,
.submit-btn input[type="submit"]:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.contact-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 10px;
}

/* ==============================================
   STAT BAR (ticker)
   ============================================== */
.stat-bar {
  background: var(--brand);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.stat-bar-inner {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: #fff;
}
.stat-num .unit {
  font-size: .55em;
  margin-left: 2px;
}
.stat-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.site-main__about { padding: 80px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-label {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.about-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.85;
}
.about-cta {
  margin-top: 28px;
}
.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: opacity .2s;
}
.btn-brand-outline:hover { opacity: .85; }
.about-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* ==============================================
   STRENGTH / FEATURES SECTION
   ============================================== */
.strength-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.strength-list .item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strength-list .item .icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.strength-list .item .contents .num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.strength-list .item .contents .title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.4;
}
.strength-list .item .contents .desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ==============================================
   COMPARISON TABLE
   ============================================== */
.comparison { margin-top: 56px; }
.comparison-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.table-block {
  min-width: 520px;
}
.item-list {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.item-list:last-child { border-bottom: none; }
.item-list .item {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-list .item:first-child {
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-2);
}
.item-list .item:last-child { border-right: none; }
.item-list .item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.item-list .item .inner .icon { width: 28px; height: 28px; }
.item-list .item .inner .icon img { width: 100%; height: 100%; object-fit: contain; }
.item-list .item .inner .text { font-size: 12px; line-height: 1.4; }

/* ==============================================
   CTA BAND
   ============================================== */
.site-main__cta {
  background: var(--brand);
  padding: 56px 0;
}
.site-main__cta .wrap {
  display: flex;
  justify-content: center;
}
.site-main__cta .column {
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}
.site-main__cta .inner .catch {
  color: #fff;
}
.site-main__cta .inner .catch--sub .front {
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
  margin-bottom: 6px;
}
.site-main__cta .inner .catch--main img {
  max-width: 340px;
}
.site-main__cta .inner .feature-list {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.site-main__cta .inner .feature-list .item {
  width: 80px;
}
.site-main__cta .cta {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px;
}
.site-main__cta .cta .area {
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.site-main__cta .cta .area .area-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.5);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.site-main__cta .cta .area .area-desc {
  font-size: 13px;
  opacity: .9;
  line-height: 1.6;
}
.site-main__cta .cta .btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-main__cta .cta .btns .btn {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.site-main__cta .cta .btns .btn .contents {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.site-main__cta .cta .btns .btn .contents .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.site-main__cta .cta .btns .btn .contents .icon img { width: 100%; height: 100%; object-fit: contain; }
.site-main__cta .cta .btns .btn .contents .text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.site-main__cta .cta .btns .btn .contents .text span { font-size: 12px; color: var(--ink-2); }
.site-main__cta .cta .btns .btn .contents .text span:first-child { font-weight: 700; font-size: 13px; }
.site-main__cta .cta .btns .btn .contact-btn a {
  display: block;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
  transition: background .2s;
}
.site-main__cta .cta .btns .btn .contact-btn a:hover { background: var(--bg-2); }
.site-main__cta .cta .btns .btn:last-child .contact-btn a { color: #06C755; }

/* ==============================================
   CASE STUDIES
   ============================================== */
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-list .item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.case-list .item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.case-list .item .thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.case-list .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.case-list .item:hover .thumb img { transform: scale(1.04); }
.case-list .item .contents {
  padding: 16px;
}
.case-list .item .title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.case-list .overview-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 10px;
}
.case-list .overview-list-item {
  display: flex;
  gap: 4px;
  font-size: 12px;
}
.case-list .overview-list-item dt {
  color: var(--ink-3);
  white-space: nowrap;
}
.case-list .overview-list-item dd {
  color: var(--ink-2);
  font-weight: 500;
}
.case-list .price {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.case-list .price .icon {
  width: 24px;
  height: 24px;
}
.case-list .price .icon img { width: 100%; height: 100%; object-fit: contain; }
.case-list .price .text {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.case-list .price .text--price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--brand);
}
.case-list .price .text--yen {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}
.case-list .more-btn {
  text-align: right;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
}
.case-list .more-btn a {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
}
.case-list .more-btn a:hover { text-decoration: underline; }

/* More button */
.more-btn {
  text-align: center;
  margin-top: 32px;
}
.more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  transition: background .2s, color .2s;
}
.more-btn a:hover { background: var(--brand); color: #fff; }

/* ==============================================
   REASON SECTION
   ============================================== */
.site-main__reason .content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
}

/* ==============================================
   FLOW SECTION
   ============================================== */
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: flow;
}
.flow-list .item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flow-list .item::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(255,255,255,.6);
  line-height: 1;
  z-index: 1;
}
.flow-list .item .img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.flow-list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-list .item .contents {
  padding: 16px;
}
.flow-list .item .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.flow-list .item .desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ==============================================
   COLUMN LIST
   ============================================== */
.column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.column-list .item a {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.column-list .item a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.column-list .item .thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.column-list .item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.column-list .item a:hover .thumb img { transform: scale(1.04); }
.column-list .item .contents {
  padding: 16px;
}
.column-list .item .date {
  font-size: 12px;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.column-list .item .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* ==============================================
   FAQ
   ============================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-list .item {
  border-bottom: 1px solid var(--border);
}
.faq-list .item:last-child { border-bottom: none; }
.faq-list .item dt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  background: #fff;
  transition: background .2s;
  user-select: none;
}
.faq-list .item dt:hover { background: var(--bg-2); }
.faq-list .item dt.is-rotate .label { background: var(--brand); }
.faq-list .item dt .label {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.faq-list .item dt .label img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.faq-list .item dt.is-rotate .label img {
  filter: brightness(0) invert(1);
}
.faq-list .item dt .text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.faq-list .item dd {
  padding: 0 20px 18px 60px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  display: none;
}

/* ==============================================
   CONTACT SECTION (Footer form)
   ============================================== */
.site-footer__contact {
  padding: 64px 0;
}
.site-footer__contact .wrap {
  max-width: 800px;
}
.site-footer__contact .inner {
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}
.site-footer__contact .inner .catch--sub .front {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
  margin-bottom: 6px;
}
.site-footer__contact .inner .catch--main img {
  max-width: 320px;
  margin: 0 auto 16px;
}
.site-footer__contact .inner .feature-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.site-footer__contact .inner .feature-list .item {
  width: 72px;
}

.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.form-title {
  color: #fff;
  text-align: center;
  padding: 16px 20px;
}
.form-title span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.form-inner {
  padding: 24px;
}
.form-inner-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Footer form – single step uses flat layout */
#mail_form .form-style {
  /* The form inside footer uses a slightly different structure */
}
#mail_form .form {
  display: block;
}
#mail_form .form-list .item {
  grid-template-columns: 110px 1fr;
}

#form_submit .submit-btn,
.js-submit-btn-wrap {
  margin-top: 16px;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer .other {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  background: var(--ink);
  flex-wrap: wrap;
}
.site-footer .other .privacy a {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.site-footer .other .privacy a:hover { color: #fff; }
.site-footer .other .cp small {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ==============================================
   HOME SECTION TITLES (backward compatible)
   ============================================== */
.home-sec-title {
  text-align: center;
  margin-bottom: 40px;
}
.home-sec-title--sub span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.home-sec-title--main {
  display: inline-block;
  color: #fff;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1.4;
  padding: 6px 20px;
  border-radius: 6px;
}

/* ==============================================
   INNER PAGE HERO
   ============================================== */
.page-hero {
  position: relative;
  background: var(--brand);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .pre {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .2em;
  opacity: .75;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
}
.page-hero .sub {
  font-size: 15px;
  opacity: .85;
  margin-top: 10px;
}

/* ==============================================
   PAGINATION
   ============================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.pagination a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); font-weight: 700; }

/* ==============================================
   STICKY MOBILE CTA
   ============================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  gap: 10px;
  opacity: 0;
  transform: translateY(100%);
}
.sticky-cta-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: linear-gradient(135deg, #C8920C 0%, #F5A623 50%, #C8920C 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
}
.sticky-cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 16px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.sticky-cta-line .ico-line {
  width: 18px;
  height: 18px;
}

/* ==============================================
   ABOUT SECTION (site-main__about)
   ============================================== */
.site-main__about { padding: 80px 0; }
.site-main__about .column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}
.site-main__about .contents { order: 1; }
.site-main__about .img { order: 2; }
.site-main__about .title-wrap .title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 14px;
}
.site-main__about .desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.85;
}
.site-main__about .img img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.site-main__reason { padding: 80px 0; background: var(--bg-2); }
.site-main__reason .content {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.85;
}

/* ==============================================
   SECTION SPACING
   ============================================== */
.site-main__case,
.site-main__strength,
.site-main__flow,
.site-main__column,
.site-main__faq { padding: 80px 0; }
.site-main__case--home { padding: 80px 0; }
.site-main__column--home { padding: 80px 0; background: var(--bg-2); }
.site-main__faq { background: var(--bg-2); }

/* ==============================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================== */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  .wrap { padding: 0 24px; }
  .hero-body {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
  .hero-bg-r { width: 0; }
  .hero { min-height: auto; }
  .hero-h1-gold { font-size: clamp(44px, 8vw, 72px); }
  .hero-h1 { font-size: clamp(20px, 3.5vw, 30px); }
  .hero-truck-l, .hero-truck-r { display: none; }
  .form-card { max-width: 540px; margin: 0 auto; }

  .strength-list { grid-template-columns: repeat(2, 1fr); }
  .case-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .column-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-main__about .column { grid-template-columns: 1fr; gap: 32px; }

  .site-nav { gap: 0; }
  .site-nav a { font-size: 12px; padding: 6px 8px; }
  .contact-btn .btn .text span:last-child { display: none; }
  .contact-btn .btn a { padding: 8px 12px; font-size: 12px; }

  .site-main__cta .column {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==============================================
   RESPONSIVE – MOBILE (≤640px)
   ============================================== */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .wrap { padding: 0 16px; }
  .sec { padding: 56px 0; }

  /* Nav */
  .site-nav { display: none; }
  .contact-btn { display: none; }
  .hbg {
    display: flex;
    margin-left: auto;
  }
  .drawer { display: block; }
  .logo { min-width: 0; overflow: hidden; }
  .logo .img__text {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .logo .img__icon { width: 30px; height: 30px; }

  /* Hero */
  .hero { min-height: calc(100svh - 60px); align-items: flex-start; }
  .hero-body {
    padding: 28px 16px 40px;
    gap: 24px;
    /* single column already set at 1024px breakpoint */
  }
  .hero-bg-l { flex: 1; }
  .hero-bg-r { width: 0; }
  .hero-kicker { font-size: 11px; }
  .hero-h1-gold {
    font-size: clamp(48px, 14vw, 68px);
    margin-bottom: 6px;
  }
  .hero-h1 { font-size: clamp(18px, 5.5vw, 26px); }
  .hero-sub { font-size: 14px; }
  .hero-sub br { display: none; }
  .hero-btns { gap: 8px; }
  .btn-gold, .btn-line { width: 100%; font-size: 14px; padding: 13px 16px; }
  .badges { gap: 8px; }
  .badge { padding: 7px 10px; }
  .badge-ico { width: 22px; height: 22px; }
  .badge-txt { font-size: 11px; }
  .badge-txt strong { font-size: 12px; }

  /* Hero trucks SP */
  .hero-truck-sp {
    display: block;
    width: 90%;
    max-width: 340px;
    margin: 16px auto 0;
    opacity: .15;
    position: relative;
  }
  .hero-trucks { position: relative; height: 0; }

  /* Stat bar */
  .stat-bar-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 14px 12px;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 36px; }

  /* Sections */
  .site-main__about .column { grid-template-columns: 1fr; }
  .strength-list { grid-template-columns: 1fr; }
  .case-list { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .column-list { grid-template-columns: 1fr; }

  /* Form */
  .form-style .item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .form-style .item dt.text {
    font-size: 13px;
  }
  /* Form card: full-width on mobile */
  .form-card {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: var(--radius-sm);
  }
  .form-card-body { padding: 16px; }
  #mail_form .form-list .item { grid-template-columns: 1fr; }

  /* CTA */
  .site-main__cta .column { grid-template-columns: 1fr; gap: 16px; }
  .site-main__cta .inner .catch--main img { max-width: 240px; }
  .site-main__cta .inner .feature-list .item { width: 64px; }
  .home-sec-title--main { font-size: clamp(17px, 5vw, 22px); padding: 5px 14px; }
  .home-sec-title--sub span { font-size: 12px; }

  /* Comparison */
  .comparison { margin-top: 40px; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }

  /* Footer */
  .site-footer .other { padding: 16px; flex-direction: column; gap: 8px; }
  .site-footer__contact { padding: 48px 0; }
  .form-inner { padding: 16px; }

  /* Sections padding */
  .site-main__case,
  .site-main__strength,
  .site-main__flow,
  .site-main__column,
  .site-main__faq { padding: 56px 0; }
  .site-main__case--home,
  .site-main__column--home { padding: 56px 0; }

  /* Footer contact mobile */
  .site-footer__contact {
    padding: 48px 0;
    overflow: hidden; /* prevent form from bleeding outside */
  }
  .footer-contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
    /* ensure grid children respect column width */
    min-width: 0;
  }
  .footer-line-btn { width: 100%; justify-content: center; }
  .footer-form-card {
    margin: 0;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  /* Force form elements to respect container width */
  .footer-form-card .form-style .item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-form-card .form-style .item dd input,
  .footer-form-card .form-style .item dd select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .footer-form-card .form-card-body { padding: 16px; }

  /* ---- feat-grid: horizontal scroll-snap carousel ---- */
  .feat-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    /* bleed to screen edges (cancel .wrap padding) */
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 20px;
  }
  .feat-grid::-webkit-scrollbar { display: none; }
  .feat-card {
    scroll-snap-align: start;
    flex: 0 0 82%;
    min-width: 0;
  }
  .feat-img-zone { height: 90px; }
  .feat-num { font-size: 64px; }

  /* ---- results-grid: horizontal scroll-snap carousel ---- */
  .results-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 20px;
    margin-bottom: 20px;
  }
  .results-grid::-webkit-scrollbar { display: none; }
  .rc {
    scroll-snap-align: start;
    flex: 0 0 88%;
    min-width: 0;
  }

  /* about section mobile */
  .about-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }

  /* Carousel scroll hint (shown only on mobile) */
  .carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-4);
    letter-spacing: .08em;
    margin-top: 4px;
    margin-bottom: 20px;
  }
  .carousel-hint::before,
  .carousel-hint::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--ink-4);
  }

  /* cta-band mobile */
  .cta-band { padding: 40px 20px; }
  .cta-band::before { display: none; }
  .cta-band-in { flex-direction: column; gap: 20px; text-align: center; }
  .cta-band-btns { flex-direction: column; width: 100%; }
  .btn-white { justify-content: center; }

  /* page hero mobile */
  .page-hero { padding: 36px 20px 32px; }
  .page-hero::after { font-size: 72px !important; right: 2%; }
  .ph-h1 { font-size: clamp(22px, 7vw, 32px); }
  .ph-sub { font-size: 13px; }

  /* col-layout / sidebar mobile */
  .col-layout { grid-template-columns: 1fr; }
  .area-chips { gap: 6px; }
  .area-chip { font-size: 12px; padding: 7px 12px; }
  .area-cards { grid-template-columns: repeat(2, 1fr); }

  .root-area-section { padding: 48px 0; }
  .root-area-section .sec-sub { margin-bottom: 24px; font-size: 14px; }
  .root-area-list { gap: 8px; }
  .root-area-btn { padding: 10px 16px; font-size: 14px; }

  /* mission numbers mobile */
  .mission { margin-top: 40px; }
  .mission::after { display: none; }
  .company-wrap { grid-template-columns: 1fr; gap: 32px; }
  .numbers { grid-template-columns: repeat(2, 1fr); }

  /* footer 3col mobile */
  .footer-in { flex-direction: column; gap: 32px; }
  .footer-nav-row { flex-direction: column; gap: 24px; }
  .footer-copy { flex-direction: column; gap: 4px; }
}

/* ==============================================
   SECTION LABEL (mockup pattern)
   ============================================== */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 10px;
}
.sec-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.sec-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}
.sec-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ==============================================
   TICKER
   ============================================== */
.ticker {
  display: flex;
  overflow: hidden;
  align-items: stretch;
}

/* Strengths ticker: lives inside .hero */
.ticker--strengths {
  background: var(--brand-dark);
  /* position/margin handled in .hero flex context (see .hero .ticker--strengths above) */
}

/* Results ticker: lives outside .hero */
.ticker--results {
  background: var(--brand);
}

.ticker-tag {
  background: rgba(0,0,0,.25);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  padding: 10px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickroll 28s linear infinite;
  padding: 10px 24px;
}
.ticker-inner span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-inner span::before {
  content: '◆';
  font-size: 7px;
  color: rgba(255,255,255,.35);
}
@keyframes tickroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================================
   FEAT GRID (features/strengths mockup style)
   ============================================== */
/* Carousel hint: hidden by default, shown only in mobile media query */
.carousel-hint { display: none; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Image zone: brand gradient area with number */
.feat-img-zone {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  height: 110px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
}
.feat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  color: rgba(255,255,255,.15);
  line-height: 1;
  position: absolute;
  right: 8px;
  bottom: -12px;
  pointer-events: none;
  letter-spacing: -.02em;
}
.feat-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.feat-icon-wrap svg { width: 20px; height: 20px; }

/* Text content area */
.feat-content {
  padding: 20px 20px 22px;
  background: var(--bg);
  flex: 1;
}
.feat-ttl {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.45;
  color: var(--ink);
}
.feat-txt {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.75;
}

/* ==============================================
   RESULT CARDS (new rc style from mockup)
   ============================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.rc {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .2s;
  position: relative;
  border-radius: var(--radius);
}
.rc:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  letter-spacing: .08em;
  z-index: 2;
  border-radius: 2px;
}
.rc-img {
  width: 100%;
  height: 200px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rc-img-bg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  position: absolute;
  bottom: 4px;
  right: 8px;
  color: rgba(0,0,0,.06);
  letter-spacing: .05em;
  line-height: 1;
  pointer-events: none;
}
.rc-body { padding: 16px 20px 18px; }
.rc-maker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.rc-model {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.2;
}
.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.rc-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-meta-key {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: .08em;
  width: 52px;
  flex-shrink: 0;
}
.rc-meta-val {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.rc-area {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.rc-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.rc-price-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: .08em;
}
.rc-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--brand);
  line-height: 1;
}
.rc-price-unit {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink-3);
}
.rc-link {
  display: block;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  margin-top: 8px;
  letter-spacing: .05em;
  transition: color .2s;
}
.rc-link::after { content: ' →'; }
.rc-link:hover { color: var(--brand); }

/* ==============================================
   COMPARISON TABLE (proper <table>)
   ============================================== */
.comp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comp-table {
  width: 100%;
  min-width: 540px; /* ensures horizontal scroll on mobile */
  border-collapse: collapse;
  margin-top: 32px;
}
.comp-table th,
.comp-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
}
.comp-table th:first-child,
.comp-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink-2);
  width: 140px;
}
.comp-table thead th {
  font-size: 12px;
  font-weight: 900;
  color: var(--ink-3);
  padding-bottom: 12px;
  letter-spacing: .04em;
}
.comp-table .ours {
  background: rgba(26, 86, 219, .07); /* fallback */
  background: color-mix(in srgb, var(--brand) 8%, white);
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  font-weight: 600;
}
.comp-table thead .ours {
  background: var(--brand);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  border-top: 2px solid var(--brand);
}
.comp-table tbody tr:last-child .ours {
  border-bottom: 2px solid var(--brand);
}
.mark-a {
  color: var(--brand);
  font-weight: 900;
  font-size: 16px;
}
.mark-b { color: var(--ink-3); }

/* ==============================================
   CTA BAND (mockup side-by-side style)
   ============================================== */
.cta-band {
  background: var(--brand);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'HIGH VALUE';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,.1);
  letter-spacing: .05em;
  white-space: nowrap;
  pointer-events: none;
}
.cta-band-in {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band-in h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}
.cta-band-in p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.cta-band-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .88; }
.btn-white::after { content: ' →'; }

/* ==============================================
   PAGE HERO (inner pages)
   ============================================== */
.page-hero {
  position: relative;
  background: var(--brand);
  padding: 52px 40px 48px;
  overflow: hidden;
  color: #fff;
}
/* 左上から薄い暗オーバーレイで奥行きを演出 */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.22) 0%, transparent 60%);
  pointer-events: none;
}
/* 右側ウォーターマークテキスト */
.page-hero::after {
  content: '';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.07);
  letter-spacing: .05em;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}
.page-hero--case::after   { content: 'RESULTS'; }
.page-hero--area::after   { content: 'AREA';    }
.page-hero--column::after { content: 'COLUMN';  }
.page-hero--company::after{ content: 'COMPANY'; }
.page-hero--privacy::after{ content: 'POLICY';  }
.page-hero--thanks::after { content: 'THANKS';  }
.page-hero--sitemap::after { content: 'SITEMAP'; }
.ph-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .cur { color: var(--gold); }
.ph-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: .9;
}
.ph-h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.ph-sub {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  line-height: 1.8;
  margin-inline: auto;
}

/* ==============================================
   INNER PAGE CONTENT WRAPPER
   ============================================== */
.inner-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px;
}

/* ==============================================
   RICH TEXT (CMS出力コンテンツ共通)
   ============================================== */

/* セクション内見出し（各コンテンツブロックのタイトル） */
.section-heading {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.35;
}

.rich-text { font-size: 15px; color: var(--ink-2); line-height: 1.9; }

.rich-text h2 {
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 900;
  color: var(--ink);
  margin: 40px 0 14px;
  padding: 11px 16px;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.4;
}
.rich-text h2:first-child { margin-top: 0; }

.rich-text h3 {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  line-height: 1.45;
}
.rich-text h3:first-child { margin-top: 0; }

.rich-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  margin: 24px 0 8px;
  line-height: 1.45;
}

.rich-text p {
  margin-bottom: 16px;
  line-height: 1.9;
}
.rich-text p:last-child { margin-bottom: 0; }

.rich-text ul,
.rich-text ol {
  margin: 0 0 18px;
  padding-left: 1.6em;
}
.rich-text ul { list-style: disc; }
.rich-text ol { list-style: decimal; }
.rich-text li {
  margin-bottom: 7px;
  line-height: 1.8;
}
.rich-text li::marker { color: var(--brand); }

.rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.rich-text th {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  text-align: left;
  vertical-align: top;
}
.rich-text td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  color: var(--ink-2);
  line-height: 1.7;
  vertical-align: top;
}
.rich-text tr:nth-child(even) td { background: var(--bg-2); }

.rich-text strong { font-weight: 700; color: var(--ink); }
.rich-text em { font-style: italic; }
.rich-text a { color: var(--brand); text-decoration: underline; }
.rich-text a:hover { opacity: .8; }

.rich-text blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  color: var(--ink-3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  line-height: 1.8;
}

/* FAQ (dl/dt/dd パターン) */
.rich-text dl { margin-bottom: 20px; }
.rich-text dt {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.rich-text dd {
  padding-left: 1em;
  color: var(--ink-2);
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ==============================================
   COLUMN LIST (with sidebar)
   ============================================== */
.col-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* Article list rows */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.article-item {
  background: var(--bg);
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
  transition: background .2s;
}
.article-item:hover { background: var(--bg-2); }
.ai-img {
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 90px;
}
.ai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 90px;
}
.ai-body { padding: 14px 18px; }
.ai-date {
  font-size: 11px;
  color: var(--ink-4);
  margin-bottom: 5px;
  letter-spacing: .04em;
}
.ai-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  transition: color .2s;
}
.article-item:hover .ai-title { color: var(--brand); }

/* Sidebar */
.sidebar-widget {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}
.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--brand);
}
.sw-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--ink-4);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sw-cta {
  background: var(--brand);
  border: none;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}
.sw-cta::before { display: none; }
.sw-cta-title {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #fff;
}
.sw-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
  line-height: 1.6;
}
.sw-btn {
  display: block;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 11px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 8px;
  transition: opacity .2s;
}
.sw-btn:hover { opacity: .85; }
.sw-btn-line {
  display: block;
  background: #06C755;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 9px;
  text-align: center;
  border-radius: 2px;
  transition: opacity .2s;
}
.sw-btn-line:hover { opacity: .85; }

/* ==============================================
   AREA LIST
   ============================================== */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  transition: all .2s;
  cursor: pointer;
  border-radius: 4px;
}
.area-chip:hover,
.area-chip.major {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, white);
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.area-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.area-card-img {
  height: 80px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.area-card-img span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: rgba(0,0,0,.06);
  letter-spacing: .1em;
}
.area-card-body { padding: 14px 16px; }
.area-card-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
}
.area-card-sub {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 10px;
}
.area-card-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: .06em;
  transition: color .2s;
}
.area-card-link:hover { color: var(--brand); }
.area-card-link::after { content: ' →'; }

/* ==============================================
   ROOT TOP - 対応エリアセクション
   ============================================== */
.root-area-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid #ccc;
}
.root-area-section .sec-label { margin-bottom: 8px; }
.root-area-section .sec-title { margin-bottom: 12px; }
.root-area-section .sec-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.root-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.root-area-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, transform .15s;
}
.root-area-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, white);
  transform: translateY(-1px);
}
.root-area-btn-arrow {
  font-size: 14px;
  opacity: .7;
  transition: transform .2s;
}
.root-area-btn:hover .root-area-btn-arrow {
  transform: translateX(2px);
}
.root-area-empty {
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
  padding: 24px 0;
}

/* ==============================================
   COMPANY PAGE
   ============================================== */
.company-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-3);
  padding: 16px 0;
  width: 140px;
  vertical-align: top;
}
.company-table td {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 16px 0;
  line-height: 1.75;
}
.company-table td strong {
  font-weight: 900;
  color: var(--ink);
  font-size: 15px;
}
.company-table td a { color: var(--brand); }
.company-table td a:hover { text-decoration: underline; }

.license-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.license-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: color-mix(in srgb, var(--gold) 8%, white);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.lb-title {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.lb-val { font-size: 12px; color: var(--ink-3); line-height: 1.5; }

.company-side {}
.company-img-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
}
.company-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.company-map {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}
.cm-title {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--ink-4);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cm-address { font-size: 12px; color: var(--ink-3); line-height: 1.75; }
.cm-address strong { font-size: 14px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.map-box {
  position: relative;
  background: var(--bg-3);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: .08em;
  border-radius: var(--radius-sm);
}
.map-box iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

.mission {
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  padding: 32px;
  margin: 64px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mission::after {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  position: absolute;
  right: -10px;
  top: -40px;
  color: rgba(0,0,0,.04);
  line-height: 1;
  pointer-events: none;
}
.mission-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--brand);
  margin-bottom: 12px;
}
.mission-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}
.mission-text em { color: var(--brand); font-style: normal; }
.mission-sub {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}
.num-card {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}
.num-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.num-val em { color: var(--brand); font-style: normal; font-size: .58em; }
.num-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .1em;
}

/* ==============================================
   FOOTER (3-column layout from mockup)
   ============================================== */
.footer-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(255,255,255,.9);
}
.footer-brand p em { color: var(--gold); font-style: normal; }
.footer-brand small {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  display: block;
}
.footer-nav-row { display: flex; gap: 48px; }
.footer-nav-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.28);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 8px; }
.footer-nav-col a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  letter-spacing: .08em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Override old footer styles */
.site-footer .other { display: none; }

/* ==============================================
   FOOTER CONTACT SECTION (new form-card layout)
   ============================================== */
.site-footer__contact {
  background: var(--brand);
  padding: 72px 0;
}
.footer-contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}
.footer-contact-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.footer-contact-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 28px;
}
.footer-contact-heading span {
  background: none;
  color: var(--gold);
  padding: 0;
  border-radius: 0;
  margin-left: 0;
}
.footer-contact-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-contact-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.footer-contact-feats li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-line-btn {
  display: inline-flex;
  font-size: 14px;
  padding: 14px 24px;
}

/* Footer form card overrides */
.footer-form-card {
  box-shadow: 0 16px 64px rgba(0,0,0,.25);
}

/* ==============================================
   SITEMAP PAGE
   ============================================== */
.sitemap-content { max-width: 800px; margin: 0 auto; }
.sitemap-block { margin-bottom: 40px; }
.sitemap-h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.sitemap-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-2);
  margin: 24px 0 10px 0;
}
.sitemap-h3:first-child { margin-top: 0; }
.sitemap-lead { font-size: 14px; color: var(--ink-3); margin-bottom: 16px; }
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list li { margin-bottom: 6px; }
.sitemap-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.sitemap-list a:hover { color: var(--brand); }
.sitemap-sub { padding-left: 1.2em; font-size: 14px; }
.sitemap-sub a { font-weight: 500; }
.sitemap-pref { margin-bottom: 8px; }

/* BACK BTN */
.back-btn { text-align: center; margin-top: 32px; }
.back-btn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  transition: all .2s;
}
.back-btn a::before { content: '←'; }
.back-btn a:hover { border-color: var(--brand); color: var(--brand); }

/* Tablet responsive for new elements */
@media (min-width: 641px) and (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: repeat(3, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .company-wrap { grid-template-columns: 1fr; gap: 32px; }
  .col-layout { grid-template-columns: 1fr 240px; gap: 32px; }
  .inner-content { padding: 48px 24px; }
  .cta-band { padding: 48px 24px; }
  .page-hero { padding: 48px 24px 40px; }
  .footer-contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__contact { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   MOBILE FINAL OVERRIDES
   ※ ベーススタイルより後に記述し、カスケードで確実に上書きする
   ============================================================ */
@media (max-width: 640px) {

  /* ---- 選ばれる理由: 横スクロールカルーセル ---- */
  .site-main__strength { overflow-x: hidden; } /* ページ横スクロール防止 */
  .feat-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 -16px;            /* wrap のパディングを打ち消して画面端まで延伸 */
    padding: 4px 16px 20px;
    background: transparent;
  }
  .feat-grid::-webkit-scrollbar { display: none; }
  .feat-card {
    flex: 0 0 82%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .feat-img-zone { height: 90px; }
  .feat-num { font-size: 64px; }

  /* ---- 買取実績: 横スクロールカルーセル ---- */
  .site-main__case--home { overflow-x: hidden; }
  .results-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 -16px;
    padding: 4px 16px 20px;
    margin-bottom: 16px;
  }
  .results-grid::-webkit-scrollbar { display: none; }
  .rc {
    flex: 0 0 88%;
    min-width: 0;
    scroll-snap-align: start;
  }
  /* 価格数値が改行されないよう ensure */
  .rc-price-row { flex-wrap: nowrap; }
  .rc-price-num { white-space: nowrap; }

  /* ---- フッター査定フォーム: レイアウト崩れ修正 ---- */
  .site-footer__contact {
    padding: 48px 0;
    overflow: hidden;
  }
  .footer-contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }
  .footer-contact-heading { font-size: clamp(22px, 6vw, 32px); }
  .footer-form-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .footer-form-card .form-card-body { padding: 16px; }
  .footer-form-card .form-style .item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-form-card .form-style .item dd input,
  .footer-form-card .form-style .item dd select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* ---- 運営会社: SP レイアウト修正 ---- */
  /* ベーススタイル(1fr 340px)を1カラムに上書き */
  .company-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* テーブルのSP最適化 */
  .company-table th {
    width: 100px;
    padding: 12px 0;
    font-size: 11px;
  }
  .company-table td {
    padding: 12px 0;
    font-size: 13px;
  }
  /* ナンバーズ: 4カラム→2カラム */
  .numbers {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .num-card { padding: 20px 12px; }
  .num-val { font-size: 36px; }
  /* ミッションのSP最適化 */
  .mission {
    padding: 20px 16px;
    margin: 40px 0 0;
  }
  .mission::after { display: none; }
  .mission-text { font-size: clamp(16px, 5vw, 22px); }

  /* ---- エリア一覧: SP レイアウト修正 ---- */
  /* ベーススタイル(repeat(4,1fr))を2カラムに上書き */
  .area-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .area-card-img { height: 64px; }
  .area-card-body { padding: 10px 12px; }
  .area-card-name { font-size: 14px; }

  /* エリアチップのSP調整 */
  .area-chips { gap: 6px; }
  .area-chip { font-size: 12px; padding: 7px 12px; }

  /* ---- コラム一覧・詳細: SP レイアウト修正 ---- */
  /* ベーススタイル(1fr 280px)を1カラムに上書き */
  .col-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* サイドバーをメインコンテンツの下に移動 */
  .col-layout > aside {
    order: 2;
  }

  /* inner-content のパディングをSP向けに縮小 */
  .inner-content {
    padding: 32px 16px;
  }

  /* page-hero パディング修正 */
  .page-hero {
    padding: 36px 16px 28px;
  }

  /* article-item のサムネイル幅をSP向けに縮小 */
  .article-item {
    grid-template-columns: 88px 1fr;
  }
  .ai-img img {
    min-height: 72px;
  }
  .ai-body {
    padding: 10px 12px;
  }
  .ai-title {
    font-size: 13px;
  }
}
