@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,400..1000&family=Gothic+A1:wght@600;900&family=IBM+Plex+Mono:wght@500;600;700&display=swap");

:root {
  --bg: #fcfbf7;
  --ink: #111718;
  --navy: #304044;
  --deep: #315462;
  --teal: #327b8d;
  --muted-blue: #748487;
  --olive: #7f8b62;
  --gold: #c1924d;
  --coral: #b96f55;
  --beige: #f3f0e8;
  --gray: #d9d9d9;
  --footer: #071012;
  --line: rgba(48, 64, 68, .78);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea { font: inherit; }

.inner {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 92px;
  background: rgba(252, 251, 247, .98);
  border-bottom: 1px solid var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
}
.header-inner {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-logo {
  color: #244b5a;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}
.global-nav a { white-space: nowrap; }
.global-nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 14px 25px;
  min-width: 105px;
  text-align: center;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--navy);
  background: transparent;
}
.menu-toggle span { display:block; height:2px; background:var(--navy); margin:5px 0; }

/* shared title / button */
.kicker-band {
  min-height: 198px;
  border-bottom: 1px solid var(--navy);
  display: flex;
  align-items: center;
}
.kicker-band strong {
  display: block;
  font: 900 34px/1.05 Arial, Helvetica, sans-serif;
  letter-spacing: .02em;
}
/* Page title: replaces the former 40px English title in the Figma/SVG */
.kicker-band .kicker-ja {
  display: block;
  margin: 0;
  color: var(--navy);
  font-family: "Google Sans Flex", "Gothic A1", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .05em;
}

.en-label {
  color: var(--deep);
  font: 800 10px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  letter-spacing: .01em;
}
.section-title-center {
  color: var(--deep);
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 44px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1px solid var(--navy);
  background: white;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .88; }
.btn-teal { background: var(--teal); color: white; }
.btn-coral { background: var(--coral); color: white; }
.btn-olive { background: var(--olive); color: white; }
.btn-gold { background: var(--gold); color: white; }
.btn-row { display:flex; flex-wrap:wrap; gap:18px; }
.image-placeholder { background: var(--gray); min-height: 220px; }

/* shared subpage hero */
.page-hero {
  padding: 95px 0 110px;
  border-bottom: 1px solid var(--navy);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 530px);
  align-items: center;
  gap: 82px;
}
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: .01em;
}
.page-hero p { margin: 0 0 26px; font-size: 14px; max-width: 620px; }
.page-hero .image-placeholder { height: 286px; }

.page-section {
  padding: 95px 0;
  border-bottom: 1px solid var(--navy);
}
.lead-small { margin-top: 54px; font-size: 14px; }
.lead-small + .lead-small { margin-top: 42px; }

/* shared flow */
.flow-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}
.flow-list { display: grid; gap: 28px; }
.flow-item {
  position: relative;
  background: var(--beige);
  min-height: 118px;
  padding: 30px 28px 22px;
}
.flow-step {
  position: absolute;
  left: 18px;
  top: -18px;
  background: var(--deep);
  color: white;
  min-width: 100px;
  padding: 6px 14px;
  font: 700 12px/1 "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: .08em;
}
.flow-item h3 { margin: 0 0 16px 104px; font-size: 20px; line-height:1.3; }
.flow-item p {
  margin: 0;
  background: white;
  padding: 20px 22px;
  font-size: 13px;
  font-weight: 600;
}

/* common CTA */
.final-cta {
  padding: 82px 0 86px;
  background: var(--beige);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}
.final-cta .eyebrow { font-size: 13px; margin:0; }
.final-cta h2 { font-size: 26px; line-height:1.4; margin: 3px 0 28px; }
.final-cta .btn-row { justify-content:center; }
.final-cta .note { font-size: 13px; line-height:1.6; margin: 22px 0 0; }

/* footer */
.site-footer { background: var(--footer); color: white; }
.footer-main { padding: 72px 0 70px; }
.footer-grid { display:grid; grid-template-columns: 250px 1fr; gap: 80px; }
.footer-logo { font-size: 26px; font-weight: 900; color:#244b5a; letter-spacing:-.06em; margin-bottom: 16px; }
.footer-info, .footer-links { display:grid; gap: 5px; font-size: 13px; line-height:1.6; }
.footer-links { grid-template-columns: repeat(2, minmax(120px, 180px)); align-content:start; }
.footer-copy { height: 29px; background: #244b5a; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; letter-spacing:.04em; }

/* ===== HOME ===== */
.home-hero {
  position: relative;
  min-height: 2220px;
  overflow: hidden;
}
.home-hero-canvas {
  position: relative;
  width: min(1440px, 100%);
  height: 2220px;
  margin: 0 auto;
}
.hero-copy {
  position: absolute;
  left: 17%;
  top: 210px;
  z-index: 6;
  width: 580px;
}
.hero-copy .small { font-size: 25px; font-weight:900; line-height:1.3; }
.hero-copy h1 { margin: 0 0 30px; font-size: 54px; line-height:1.15; font-weight: 900; letter-spacing:-.035em; }
.hero-copy h1 em { color: var(--teal); font-style: normal; }
.hero-copy p { font-size: 16px; line-height:1.5; }
.hero-photo-main { position:absolute; right:0; top:120px; width:42%; height:760px; }
.hero-photo-main img { object-position: 53% 54%; }
.hero-service-cards {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 455px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  z-index: 8;
}
.hero-service-card {
  min-height: 205px;
  background: rgba(255,255,255,.94);
  border: 2px solid var(--navy);
  display:grid;
  grid-template-columns: 62px 1fr;
  padding: 28px 26px;
}
.hero-service-card .vertical {
  writing-mode: vertical-rl;
  font-size: 28px;
  font-weight: 900;
  line-height:1;
  letter-spacing:.14em;
  justify-self:center;
}
.hero-service-card p { margin:0; font-size:15px; line-height:1.6; }
.hero-service-card a { color:var(--teal); display:block; text-align:right; margin-top:12px; text-decoration:underline; text-underline-offset:6px; }
.hero-photo-flower { position:absolute; left:0; top:850px; width:49%; height:690px; }
.hero-photo-flower img { object-position:center center; }
.hero-listing-link {
  position:absolute;
  top:720px;
  right:16.4%;
  width:350px;
  height:92px;
  z-index:9;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  border: 3px solid white;
  outline: 1px solid var(--navy);
  background:var(--olive);
  color:white;
  font-size:28px;
  font-weight:900;
}
.hero-listing-link small { font-size:13px; }
.hero-sky-slice { position:absolute; right:0; top:900px; width:42%; height:205px; overflow:hidden; }
.hero-sky-slice img { height:760px; object-position:50% 0; transform:translateY(-20px); }
.hero-photo-truck { position:absolute; right:8%; top:1400px; width:28%; height:480px; overflow:hidden; }
.hero-photo-truck img { object-position: 45% 50%; }
.home-intro-box {
  position:absolute;
  left:14.4%;
  top:1735px;
  width:72%;
  min-height:405px;
  border:1px solid var(--navy);
  background:rgba(252,251,247,.96);
  padding:48px 38px 34px;
  z-index:7;
}
.home-intro-box h2 { margin:0 0 30px; font-size:29px; line-height:1.35; }
.home-intro-box h2 span { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 5px; text-underline-offset: 2px; }
.home-intro-box p { font-size:14px; line-height:1.75; max-width:950px; }
.home-intro-features { display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px; margin-top:26px; font-size:13px; }
.home-intro-features span::before { content:'●'; color:var(--olive); font-size:10px; margin-right:7px; }

.home-purpose { padding: 100px 0 110px; border-top:1px solid var(--navy); border-bottom:1px solid var(--navy); }
.purpose-lead { text-align:center; margin:-24px 0 70px; font-size:14px; }
.purpose-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.purpose-card { background:var(--beige); padding:0 32px 35px; position:relative; }
.purpose-card .tag-en { position:absolute; left:18px; top:20px; font:800 15px/1 Arial, sans-serif; }
.purpose-card .topbar { background:var(--footer); color:white; text-align:center; margin:0 -32px 30px 28px; padding:10px 12px; font-size:16px; }
.purpose-card h3 { text-align:center; font-size:22px; line-height:1.35; margin:0 0 22px; }
.purpose-card h3 em { color:var(--teal); font-style:normal; font-size:28px; }
.purpose-card ul { background:white; margin:0 0 32px; padding:24px 32px 24px 44px; min-height:240px; }
.purpose-card li { margin:8px 0; }
.purpose-card li::marker { color:var(--olive); }
.purpose-card .btn { display:flex; margin:auto; }
.listing-purpose {
  width:68%;
  margin:75px auto 0;
  border:1px solid var(--teal);
  padding:42px 34px 34px;
  text-align:center;
  position:relative;
}
.listing-purpose h3 { position:absolute; left:28px; top:-22px; margin:0; padding:0 12px; background:var(--bg); color:var(--deep); font-size:24px; }
.listing-purpose p { margin:0 0 16px; }
.listing-purpose strong { color:var(--gold); }

.home-strengths { padding:95px 0 100px; border-bottom:1px solid var(--navy); }
.strength-lead { text-align:center; font-size:14px; max-width:860px; margin:-24px auto 70px; }
.strength-row { display:grid; grid-template-columns: 42% 1fr; gap:70px; align-items:center; min-height:390px; border-bottom:1px solid var(--olive); padding:22px 0; }
.strength-row.reverse { grid-template-columns:1fr 42%; }
.strength-row.reverse .image-placeholder { order:2; }
.strength-row:last-child { border-bottom:0; }
.strength-row .image-placeholder { height:360px; }
.strength-num { color:var(--teal); font:900 22px/1 "Montserrat", Arial, sans-serif; }
.strength-row h3 { color:#748487; font-size:35px; line-height:1.25; margin:22px 0 18px; }
.strength-row p { font-size:14px; }

.vehicle-section { padding:95px 0 90px; }
.vehicle-lead { text-align:center; margin:-24px auto 55px; max-width:820px; font-size:14px; }
.vehicle-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.vehicle-card .vehicle-image { height:280px; background:var(--gray); position:relative; }
.vehicle-name, .vehicle-price { position:absolute; top:0; left:0; color:white; background:var(--teal); padding:3px 7px; font-size:15px; }
.vehicle-price { top:auto; left:auto; right:0; bottom:0; background:var(--gold); }
.vehicle-meta { font-size:13px; line-height:1.55; padding:12px 0; }
.vehicle-actions { display:flex; gap:8px; }
.vehicle-actions .btn { flex:1; padding:7px 10px; min-height:40px; }
.vehicle-more { margin-top:54px; padding:30px; background:var(--olive); display:flex; gap:28px; justify-content:center; }

.beginner-section { padding:88px 0 90px; background:var(--muted-blue); color:white; }
.beginner-section .section-title-center { color:white; }
.beginner-lead { text-align:center; max-width:850px; margin:-22px auto 62px; font-size:14px; }
.beginner-panel { background:var(--deep); padding:42px 50px; }
.trouble-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:38px 52px; }
.trouble-card { display:grid; grid-template-columns: 210px 1fr; gap:26px; align-items:center; }
.trouble-card .image-placeholder { height:165px; }
.trouble-card h3 { margin:0 0 15px; font-size:20px; line-height:1.35; }
.trouble-card h3 small { display:block; font-size:12px; }
.trouble-card h3::after { content:'・・・'; display:block; color:var(--gold); letter-spacing:.08em; }
.trouble-card p { grid-column:1 / -1; margin:-12px 0 0; font-size:13px; }
.beginner-lower { display:grid; grid-template-columns: 330px 1fr; margin-top:55px; gap:0; align-items:stretch; }
.concern-list { background:var(--footer); padding:30px 34px; font-size:14px; display:grid; align-content:center; gap:9px; }
.concern-list span::before { content:'✓'; color:var(--gold); margin-right:8px; }
.beginner-cta { background:var(--bg); color:var(--ink); padding:34px 48px; }
.beginner-cta h3 { color:var(--teal); font-size:24px; margin:0 0 12px; }
.beginner-cta p { font-size:13px; }

.home-flow { padding:95px 0 92px; border-bottom:1px solid var(--navy); }
.home-flow-track { display:flex; gap:32px; overflow-x:auto; padding:16px 4px 28px; scroll-snap-type:x mandatory; }
.home-flow-card { flex:0 0 31%; min-width:340px; background:white; padding:30px 24px 24px; scroll-snap-align:start; position:relative; }
.home-flow-card:not(:last-child)::after { content:'›'; position:absolute; right:-28px; top:52%; transform:translateY(-50%); color:var(--olive); font-size:56px; font-weight:300; }
.home-flow-card .step { color:var(--teal); font:800 12px/1 "Montserrat", Arial,sans-serif; }
.home-flow-card .step strong { display:block; font-size:28px; }
.home-flow-card h3 { font-size:19px; margin:10px 0 25px; }
.home-flow-card p { font-size:13px; min-height:70px; }
.home-flow-card .image-placeholder { height:240px; margin-top:20px; }

.faq-section { padding:88px 0 95px; }
.faq-layout { display:grid; grid-template-columns:260px 1fr; gap:80px; }
.faq-section .section-title-center { text-align:left; margin:0; }
.faq-list { display:grid; gap:6px; }
.faq-row { display:grid; grid-template-columns:52px 1fr; align-items:stretch; min-height:58px; }
.faq-row .mark { display:flex; align-items:center; justify-content:center; font:500 24px/1 Georgia,serif; }
.faq-row.q .mark { background:var(--olive); color:white; }
.faq-row.a .mark { border:1px solid var(--olive); color:var(--olive); }
.faq-row p { margin:0; padding:14px 18px; font-size:14px; display:flex; align-items:center; }

/* ===== SELL ===== */
.sell-method-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:60px; }
.sell-method-card { background:white; padding:28px 26px 26px; min-height:430px; position:relative; }
.sell-method-card .num { color:var(--teal); font:900 18px/1 "Montserrat", Arial,sans-serif; }
.sell-method-card .badge { position:absolute; top:24px; right:22px; border:1px solid var(--navy); padding:2px 9px; font-size:12px; }
.sell-method-card h3 { font-size:16px; margin:24px 0 18px; }
.sell-method-card p { font-size:13px; }
.check-list { list-style:none; padding:0; margin:20px 0 0; font-size:13px; }
.check-list li { margin:8px 0; }
.check-list li::before { content:'✓'; color:var(--gold); margin-right:8px; }

/* ===== BUY ===== */
.buy-listing .vehicle-grid { margin-top:58px; }
.buy-note { margin-top:38px; font-size:13px; }
.buy-note + .buy-note { margin-top:28px; }

/* ===== MOVE ===== */
.move-problem p { max-width:950px; }
.move-service-list { margin-top:65px; display:grid; gap:48px; }
.move-service-item { display:grid; grid-template-columns:245px 1fr 315px; gap:36px; align-items:start; }
.move-service-title { display:flex; gap:10px; align-items:flex-start; }
.move-service-title .num { color:var(--teal); font:900 15px/1.3 "Montserrat", Arial,sans-serif; }
.move-service-title h3 { font-size:28px; line-height:1.25; margin:0; }
.move-service-copy .ribbon { display:inline-block; background:var(--teal); color:white; padding:5px 8px; font-size:13px; margin-bottom:12px; }
.move-service-copy p { font-size:13px; margin:0; }
.move-service-item .image-placeholder { height:220px; }

/* ===== LISTING / publish ===== */
.publish-services { margin-top:70px; display:grid; gap:48px; }
.publish-service { display:grid; grid-template-columns: 48% 1fr; gap:55px; align-items:start; }
.publish-service .num { color:var(--teal); font:900 16px/1 "Montserrat", Arial,sans-serif; margin-right:4px; }
.publish-service h3 { margin:0; font-size:28px; line-height:1.25; }
.publish-service .ribbon { display:inline-block; background:var(--teal); color:white; padding:4px 8px; font-size:13px; margin-bottom:12px; }
.publish-service p { font-size:13px; margin:0; }

/* ===== COMPANY ===== */
.company-intro { padding:95px 0 120px; }
.company-intro .page-hero-grid { gap:70px; }
.company-message { padding:70px 0 90px; border-bottom:1px solid var(--navy); }
.company-message h2 { font-size:28px; margin:0 0 24px; }
.company-message p { font-size:14px; max-width:830px; }
.rep-section { padding:85px 0 120px; }
.rep-grid { display:grid; grid-template-columns: 470px 1fr; gap:110px; align-items:center; margin-top:60px; }
.rep-grid .image-placeholder { height:520px; }
.rep-copy p { font-size:14px; }
.rep-name { margin-top:65px; font-weight:800; }
.policy-section { padding:65px 0 85px; }
.policy-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:26px; margin-top:70px; }
.policy-card .num { color:var(--teal); font:900 17px/1 "Montserrat", Arial,sans-serif; margin-bottom:8px; }
.policy-card .image-placeholder { height:190px; }
.outline-section { padding:95px 0 105px; border-top:1px solid var(--navy); }
.outline-grid { display:grid; grid-template-columns: 280px 1fr; gap:105px; align-items:start; }
.outline-table { margin:0; }
.outline-row { display:grid; grid-template-columns:120px 1fr; border-bottom:1px solid var(--deep); padding:18px 0; font-size:13px; }
.outline-row:last-child { border-bottom:0; }

@media (max-width: 1020px) {
  .global-nav { gap:17px; font-size:12px; }
  .home-hero { min-height:2070px; }
  .home-hero-canvas { height:2070px; }
  .hero-copy { left:8%; top:160px; }
  .hero-service-cards { left:5%; right:5%; top:450px; }
  .hero-photo-main { width:50%; }
  .home-intro-box { left:8%; width:84%; top:1660px; }
  .hero-photo-truck { top:1290px; }
  .hero-photo-flower { top:820px; }
  .listing-purpose { width:82%; }
  .move-service-item { grid-template-columns:210px 1fr 260px; gap:24px; }
  .publish-service { grid-template-columns:42% 1fr; }
}

@media (max-width: 860px) {
  body { line-height:1.7; }
  .inner { width:min(100% - 36px, var(--max)); }
  .site-header { height:72px; }
  .header-inner { width:calc(100% - 28px); }
  .site-logo { font-size:22px; }
  .menu-toggle { display:block; }
  .global-nav {
    position:absolute;
    top:72px;
    left:0;
    right:0;
    display:none;
    background:var(--bg);
    border-bottom:1px solid var(--navy);
    padding:22px;
    flex-direction:column;
    gap:0;
    align-items:stretch;
  }
  .global-nav.is-open { display:flex; }
  .global-nav a { padding:12px 5px; border-bottom:1px solid rgba(48,64,68,.16); }
  .global-nav .nav-cta { margin-top:8px; border:0; }
  .kicker-band { min-height:145px; }
  .kicker-band strong { font-size:28px; }
  .page-hero { padding:62px 0 70px; }
  .page-hero-grid { grid-template-columns:1fr; gap:34px; }
  .page-hero .image-placeholder { height:230px; }
  .page-section { padding:70px 0; }
  .flow-layout, .faq-layout, .outline-grid { grid-template-columns:1fr; gap:40px; }
  .flow-item h3 { margin-left:0; margin-top:16px; }
  .footer-grid { grid-template-columns:1fr; gap:35px; }
  .footer-links { grid-template-columns:1fr 1fr; }

  /* home mobile */
  .home-hero { min-height:0; overflow:visible; }
  .home-hero-canvas { width:100%; height:auto; display:flex; flex-direction:column; }
  .hero-copy,
  .hero-photo-main,
  .hero-service-cards,
  .hero-photo-flower,
  .hero-listing-link,
  .hero-sky-slice,
  .hero-photo-truck,
  .home-intro-box { position:relative; left:auto; right:auto; top:auto; width:auto; height:auto; }
  .hero-copy { order:1; margin:60px 24px 30px; }
  .hero-copy .small { font-size:18px; }
  .hero-copy h1 { font-size:40px; }
  .hero-photo-main { order:2; margin-left:18%; height:420px; }
  .hero-service-cards { order:3; margin:-70px 18px 30px; grid-template-columns:1fr; z-index:8; gap:12px; }
  .hero-service-card { min-height:0; grid-template-columns:52px 1fr; }
  .hero-photo-flower { order:4; width:78%; height:440px; }
  .hero-listing-link { order:5; margin:18px 18px 18px auto; width:78%; height:74px; font-size:22px; }
  .hero-sky-slice { display:none; }
  .hero-photo-truck { order:6; width:55%; height:360px; margin:35px 7% 0 auto; }
  .home-intro-box { order:7; margin:-32px 18px 65px; padding:36px 24px 28px; z-index:7; }
  .home-intro-features { grid-template-columns:1fr 1fr; }
  .home-purpose, .home-strengths, .vehicle-section, .beginner-section, .home-flow, .faq-section { padding-block:70px; }
  .purpose-grid, .sell-method-grid, .vehicle-grid, .trouble-grid, .policy-grid { grid-template-columns:1fr; }
  .listing-purpose { width:100%; }
  .strength-row, .strength-row.reverse { grid-template-columns:1fr; gap:28px; min-height:0; padding:40px 0; }
  .strength-row.reverse .image-placeholder { order:0; }
  .strength-row .image-placeholder { height:280px; }
  .vehicle-more { flex-direction:column; }
  .trouble-card { grid-template-columns:120px 1fr; }
  .trouble-card .image-placeholder { height:120px; }
  .beginner-panel { padding:26px 20px; }
  .beginner-lower { grid-template-columns:1fr; }
  .home-flow-card { flex-basis:84%; min-width:285px; }
  .faq-section .section-title-center { text-align:center; }

  .move-service-item { grid-template-columns:1fr; gap:18px; border-bottom:1px solid rgba(48,64,68,.2); padding-bottom:36px; }
  .move-service-item .image-placeholder { height:240px; }
  .publish-service { grid-template-columns:1fr; gap:18px; border-bottom:1px solid rgba(48,64,68,.2); padding-bottom:34px; }
  .rep-grid { grid-template-columns:1fr; gap:36px; }
  .rep-grid .image-placeholder { height:420px; }
  .outline-row { grid-template-columns:100px 1fr; }
}

@media (max-width: 520px) {
  .page-hero h1 { font-size:30px; }
  .btn-row { gap:9px; }
  .btn { padding-inline:16px; min-height:48px; }
  .final-cta .btn-row .btn { flex:1 1 100%; }
  .footer-links { grid-template-columns:1fr; }
  .hero-copy { margin-top:45px; }
  .hero-copy h1 { font-size:35px; }
  .hero-photo-main { margin-left:12%; height:330px; }
  .hero-service-cards { margin-top:-45px; }
  .hero-service-card { padding:22px 18px; }
  .hero-photo-flower { width:90%; height:360px; }
  .hero-listing-link { width:88%; }
  .hero-photo-truck { width:65%; height:320px; }
  .home-intro-features { grid-template-columns:1fr; }
  .section-title-center { font-size:28px; }
  .purpose-card { padding-inline:20px; }
  .purpose-card .topbar { margin-left:28px; margin-right:-20px; }
  .trouble-card { grid-template-columns:1fr; }
  .trouble-card p { grid-column:auto; margin:0; }
  .beginner-cta { padding:28px 22px; }
  .faq-row { grid-template-columns:44px 1fr; }
  .faq-row p { font-size:13px; padding-inline:12px; }
  .sell-method-card { min-height:0; }
  .flow-item { padding:30px 16px 18px; }
  .flow-item p { padding:16px; }
  .policy-grid { grid-template-columns:1fr 1fr; }
}


/* ===== 2026-08 fine tuning ===== */
/* Typography values below are taken from the text-preserving Figma SVG exports. */
.kicker-band { min-height: 142px; }
.kicker-ja {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .02em;
}
.hero-listing-link > span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

/* flow: STEP badge overlaps the panel while title sits directly to its right */
.flow-list { gap: 34px; }
.flow-item {
  padding: 0 28px 22px;
  margin-top: 18px;
}
.flow-title-row {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(-14px);
  margin-bottom: -2px;
}
.flow-step {
  position: static;
  flex: 0 0 auto;
  min-width: 100px;
  padding: 7px 14px;
}
.flow-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.flow-item p { margin-top: 0; }

/* footer groups: brand / main links / utility links */
.footer-grid { grid-template-columns: 250px 1fr; gap: 100px; }
.footer-nav-groups {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(180px, 240px);
  gap: 70px;
  align-content: start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.6;
}

/* company outline / access */
.outline-grid { align-items: stretch; }
.outline-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.access-section {
  padding: 88px 0 100px;
  border-top: 1px solid var(--navy);
}
.access-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 105px;
  align-items: center;
}
.access-heading h2 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.35;
}
.access-heading p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.access-map {
  height: 430px;
  background: var(--gray);
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* blog list */
.blog-index-section { padding: 94px 0 110px; }
.blog-index-head { margin-bottom: 64px; }
.blog-index-head h1 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.35;
}
.blog-index-head p { margin: 0; font-size: 14px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 28px;
}
.blog-card a { display: block; }
.blog-thumb { height: 250px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 12px;
  font-size: 12px;
}
.blog-card-meta time { color: var(--deep); font-weight: 700; }
.blog-card-meta span {
  display: inline-block;
  min-width: 72px;
  padding: 3px 10px;
  border: 1px solid var(--teal);
  color: var(--teal);
  text-align: center;
}
.blog-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.65;
}
.blog-card p { margin: 0 0 16px; font-size: 13px; }
.blog-more {
  display: inline-block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 75px;
}
.pagination a {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  font-size: 13px;
}
.pagination .is-current { background: var(--deep); color: white; }

/* blog detail */
.blog-detail-section { padding: 90px 0 110px; }
.blog-detail-inner { max-width: 940px; }
.blog-detail-head { margin-bottom: 44px; }
.blog-detail-head .blog-card-meta { margin-top: 0; }
.blog-detail-head h1 {
  margin: 18px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.5;
}
.blog-detail-hero { height: 500px; margin-bottom: 65px; }
.blog-content { width: min(760px, 100%); margin: 0 auto; }
.blog-content p { margin: 0 0 32px; font-size: 15px; line-height: 2; }
.blog-content h2 {
  margin: 70px 0 30px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--deep);
  font-size: 28px;
  line-height: 1.5;
}
.blog-content h3 {
  margin: 55px 0 24px;
  padding-left: 16px;
  border-left: 5px solid var(--teal);
  font-size: 22px;
  line-height: 1.5;
}
.blog-content-image { height: 390px; margin: 50px 0; }
.blog-content ul {
  margin: 0 0 36px;
  padding: 26px 30px 26px 52px;
  background: var(--beige);
}
.blog-content li { margin: 8px 0; font-size: 14px; }
.blog-detail-back { text-align: center; margin-top: 75px; }

@media (max-width: 860px) {
  .kicker-band { min-height: 110px; }
  .kicker-ja { font-size: 18px; }
  .flow-title-row { gap: 12px; }
  .flow-step { min-width: 88px; padding-inline: 10px; }
  .flow-item h3 { font-size: 17px; }
  .footer-nav-groups { grid-template-columns: 1fr 1fr; gap: 38px; }
  .access-grid { grid-template-columns: 1fr; gap: 34px; }
  .access-map { height: 360px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-detail-hero { height: 380px; }
}

@media (max-width: 520px) {
  .flow-item { padding-inline: 14px; }
  .flow-title-row { align-items: flex-start; }
  .flow-step { min-width: 82px; }
  .flow-item h3 { padding-top: 2px; }
  .footer-nav-groups { grid-template-columns: 1fr 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; gap: 44px; }
  .blog-thumb { height: 220px; }
  .blog-detail-hero { height: 260px; margin-bottom: 45px; }
  .blog-content h2 { font-size: 24px; }
  .blog-content h3 { font-size: 20px; }
  .blog-content-image { height: 240px; }
}


/* ===== 2026-08 Figma typography / detail pass ===== */
:root {
  --font-main: "IBM Plex Mono", "Noto Sans CJK JP", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  --font-display: "Google Sans Flex", "IBM Plex Mono", Arial, sans-serif;
  --font-logo: "HOT-SenshuSumoLarge Std", "Gothic A1", "Noto Sans CJK JP", sans-serif;
  --font-sign: "SOT-Yose", "Noto Sans CJK JP", "Yu Mincho", serif;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: .05em;
}
.site-logo,
.footer-logo {
  font-family: var(--font-logo);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}
.global-nav {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}
.nav-cta {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.btn {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}

/* top page label: Japanese title now takes the former 40px English-title role */
.kicker-band { min-height: 142px; }
.kicker-ja {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .05em;
  color: var(--navy);
}

.page-hero h1,
.company-intro h1 {
  font-family: var(--font-main);
  font-size: 40px !important;
  font-weight: 700;
  line-height: 1.35 !important;
  letter-spacing: .05em;
}
.page-hero p,
.company-intro p,
.company-message p,
.rep-copy p,
.lead-small,
.buy-note,
.move-service-copy p,
.publish-service p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .05em;
}
.section-head h2,
.page-section h2,
.company-message h2,
.rep-section h2,
.policy-section h2,
.outline-heading h2,
.access-heading h2,
.section-title-center {
  font-family: var(--font-main);
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .05em;
}

/* HOME typography from HOME(1).svg */
.hero-copy .small {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
}
.hero-copy h1 {
  font-family: var(--font-main);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
}
.hero-copy p,
.hero-service-card p,
.home-intro-box p,
.home-intro-features,
.purpose-lead,
.strength-lead,
.strength-row p,
.vehicle-lead,
.vehicle-meta,
.beginner-lead,
.trouble-card p,
.concern-list,
.beginner-cta p,
.home-flow-card p,
.faq-row p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}
.hero-service-card .vertical,
.hero-listing-link > span {
  font-family: "Gothic A1", var(--font-main);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
}
.hero-service-card a,
.hero-listing-link > small {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}
.home-intro-box h2 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .05em;
}
.home-intro-box h2 span { font-size: 32px; }
.section-title-center {
  font-size: 32px !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.purpose-card .topbar,
.purpose-card h3,
.listing-purpose h3,
.listing-purpose p,
.vehicle-name,
.vehicle-price,
.vehicle-actions .btn,
.vehicle-more .btn {
  font-family: var(--font-main);
  letter-spacing: .05em;
}
.purpose-card .topbar { font-size: 18px; font-weight: 700; }
.purpose-card h3 { font-size: 24px; font-weight: 700; }
.purpose-card ul { font-size: 18px; }
.strength-num,
.sell-method-card .num,
.move-service-title .num,
.publish-service .num,
.policy-card .num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
}
.strength-row h3 {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .05em;
}
.vehicle-name { font-size: 24px; font-weight: 700; }
.vehicle-price { font-size: 20px; font-weight: 700; }
.trouble-card h3,
.beginner-cta h3 { font-family: var(--font-main); font-size: 24px; font-weight: 700; letter-spacing: .05em; }
.home-flow-card .step { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .05em; }
.home-flow-card h3 { font-family: var(--font-main); font-size: 24px; font-weight: 700; letter-spacing: .05em; }
.faq-row .mark { font-family: var(--font-main); font-size: 24px; font-weight: 500; }

/* Correct underline: in the Figma SVG the line belongs to the small button label, not the heading. */
.hero-listing-link > span { text-decoration: none !important; }
.hero-listing-link > small {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  line-height: 1.1;
}

/* Check marks: use actual check glyphs, never the mathematical square-root glyph. */
.concern-list span::before,
.check-list li::before {
  content: '✓' !important;
  font-family: sans-serif;
  font-weight: 700;
}

/* Sell / move / publish cards */
.sell-method-card h3,
.sell-method-card p,
.check-list,
.move-service-title h3,
.move-service-copy .ribbon,
.publish-service h3,
.publish-service .ribbon {
  font-family: var(--font-main);
  letter-spacing: .05em;
}
.sell-method-card h3 { font-size: 20px; font-weight: 700; }
.sell-method-card p,
.check-list { font-size: 18px; }
.sell-method-card .badge { font-size: 18px; }
.move-service-title h3,
.publish-service h3 { font-size: 32px; font-weight: 700; }
.move-service-copy .ribbon,
.publish-service .ribbon { font-size: 20px; font-weight: 700; }

/* Flow: STEP badge overlaps the panel and its title begins immediately to the right. */
.flow-item { padding: 0 28px 22px; }
.flow-title-row {
  min-height: 52px;
  gap: 20px;
  transform: translateY(-16px);
  margin-bottom: -2px;
}
.flow-step {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  min-width: 120px;
  padding: 8px 14px;
}
.flow-item h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .05em;
}
.flow-item p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}

/* CTA / footer typography */
.final-cta .eyebrow,
.final-cta .note { font-family: var(--font-main); font-size: 18px; font-weight: 500; letter-spacing: .05em; }
.final-cta h2 { font-family: var(--font-main); font-size: 24px; font-weight: 700; letter-spacing: .05em; }
.footer-info,
.footer-links { font-family: var(--font-main); font-size: 18px; font-weight: 500; letter-spacing: .05em; }
.footer-copy { font-family: "Gothic A1", sans-serif; font-size: 14px; font-weight: 900; letter-spacing: .05em; }
.rep-name { font-family: var(--font-sign); font-size: 18px; font-weight: 400; letter-spacing: .05em; }

/* Company outline */
.outline-heading { justify-content: center; }
.outline-row { font-family: var(--font-main); font-size: 18px; font-weight: 500; letter-spacing: .05em; }
.outline-row strong { font-weight: 700; }

/* Office / access block */
.access-grid { align-items: start; }
.access-content { display: grid; gap: 28px; }
.office-card {
  border-top: 1px solid var(--deep);
  border-bottom: 1px solid var(--deep);
  padding: 24px 0;
}
.office-name {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .05em;
}
.office-data { display: grid; gap: 10px; }
.office-data-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .05em;
}
.office-data-row dt { font-weight: 700; }
.office-data-row dd { margin: 0; }
.access-map { height: 430px; }
.map-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--teal);
}

/* Blog: one page title only. */
.blog-index-head { display: none; }
.blog-index-section { padding-top: 82px; }
.blog-card-meta,
.blog-card h2,
.blog-card p,
.blog-more,
.blog-detail-head h1,
.blog-content p,
.blog-content h2,
.blog-content h3,
.blog-content li { font-family: var(--font-main); letter-spacing: .05em; }
.blog-card-meta { font-size: 14px; }
.blog-card h2 { font-size: 20px; font-weight: 700; }
.blog-card p { font-size: 18px; }
.blog-more { font-size: 18px; }
.blog-detail-head h1 { font-size: 40px; font-weight: 700; }
.blog-content p { font-size: 18px; }
.blog-content h2 { font-size: 32px; font-weight: 700; }
.blog-content h3 { font-size: 24px; font-weight: 700; }
.blog-content li { font-size: 18px; }

@media (max-width: 1180px) {
  .global-nav { font-size: 15px; gap: 16px; }
  .nav-cta { font-size: 14px; }
}

@media (max-width: 860px) {
  .site-logo { font-size: 26px; }
  .global-nav { font-size: 16px; }
  .kicker-ja { font-size: 32px; }
  .page-hero h1,
  .company-intro h1 { font-size: 34px !important; }
  .page-hero p,
  .company-intro p,
  .company-message p,
  .rep-copy p,
  .lead-small,
  .buy-note,
  .move-service-copy p,
  .publish-service p { font-size: 16px; }
  .section-head h2,
  .page-section h2,
  .company-message h2,
  .rep-section h2,
  .policy-section h2,
  .outline-heading h2,
  .access-heading h2,
  .section-title-center { font-size: 28px !important; }
  .flow-item h3 { font-size: 20px; }
  .flow-item p { font-size: 16px; }
  .flow-step { font-size: 15px; min-width: 100px; }
  .office-data-row { grid-template-columns: 90px 1fr; font-size: 16px; }
  .office-name { font-size: 21px; }
  .footer-info, .footer-links { font-size: 16px; }
  .hero-copy .small { font-size: 28px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy p,
  .hero-service-card p,
  .home-intro-box p,
  .home-intro-features,
  .purpose-lead,
  .strength-lead,
  .strength-row p,
  .vehicle-lead,
  .vehicle-meta,
  .beginner-lead,
  .trouble-card p,
  .concern-list,
  .beginner-cta p,
  .home-flow-card p,
  .faq-row p { font-size: 16px; }
}

@media (max-width: 520px) {
  .kicker-ja { font-size: 28px; }
  .page-hero h1,
  .company-intro h1 { font-size: 30px !important; }
  .btn { font-size: 15px; }
  .flow-title-row { gap: 10px; }
  .flow-step { min-width: 82px; font-size: 13px; padding-inline: 8px; }
  .flow-item h3 { font-size: 17px; }
  .office-data-row { grid-template-columns: 1fr; gap: 2px; }
  .access-map { height: 320px; }
  .hero-copy .small { font-size: 23px; }
  .hero-copy h1 { font-size: 40px; }
}

/* FINAL OVERRIDE: subpage title uses the exact 40px role of the former Figma English title at every viewport. */
.kicker-band .kicker-ja {
  font-size: 40px !important;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

/* Company outline: office row */
.outline-row-office > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.outline-address {
  line-height: 1.75;
}
.outline-map-link {
  margin-top: 2px;
}
