:root {
  --ink: #171416;
  --muted: #6c6669;
  --line: #e4dfe1;
  --paper: #fbfaf9;
  --soft: #f6f4f3;
  --soft-green: #f6f4f3;
  --deep: #221f20;
  --green: #6c4152;
  --green-2: #303033;
  --red: #6c4152;
  --gold: #9b7a69;
  --white: #fff;
  --shadow: 0 22px 58px rgba(31, 29, 30, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.78;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
p { margin-bottom: 1em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 249, .94);
  border-bottom: 1px solid rgba(228, 223, 225, .9);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  min-width: 250px;
}
.brand-logo {
  width: min(260px, 26vw);
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.brand-name, .brand-sub { display: block; line-height: 1.2; }
.brand-name { font-weight: 900; }
.brand-sub { margin-top: 3px; color: var(--muted); font-size: 11px; }
.nav { display: flex; gap: clamp(10px, 1.1vw, 18px); color: var(--muted); font-size: 13px; font-weight: 800; }
.nav a { white-space: nowrap; transition: color .18s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.tel { color: var(--green-2); font-size: 18px; font-weight: 900; white-space: nowrap; }
.small-button {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  color: var(--white);
  background: #5f3a49;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}

.hero-v2 {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 86px);
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 20, .94) 0%, rgba(31, 28, 30, .82) 42%, rgba(31, 28, 30, .42) 68%, rgba(31, 28, 30, .12) 100%),
    linear-gradient(0deg, rgba(18, 18, 18, .58), rgba(108, 65, 82, .06)),
    url("./assets/hero-dsc0893.jpg") left center / 112% auto no-repeat;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(1220px, 100%);
  min-height: calc(100svh - 170px);
  margin: 0 auto;
}
.hero-v2-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.08;
}
.hero-title span { display: block; }
.hero-title span:nth-child(2) { white-space: nowrap; }
.hero-title span:nth-child(3) { white-space: nowrap; }
.no-break { white-space: nowrap; }
.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.7vw, 21px);
}
.hero-actions, .cta-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-grid;
  min-height: 58px;
  place-items: center;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover, .small-button:hover, .card:hover, .cargo-card:hover, .reason:hover, .consult-card:hover {
  transform: translateY(-2px);
}
.button.primary { color: var(--white); background: linear-gradient(135deg, #5f3a49, #443f41); }
.button.light { color: var(--deep); background: var(--white); }
.button.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.44); background: rgba(255,255,255,.12); }
.hero-phone {
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-phone a {
  margin-left: 10px;
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0;
}
.hero-scroll {
  right: clamp(20px, 4vw, 58px);
  bottom: 28px;
  z-index: 1;
}
.scroll-cue {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 148px) 0;
}
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading h2, .page-hero h1, .cta h2, .works-main h2, .area-section h2, .fleet-copy h2, .support-copy h2, .message-body h2, .promise-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.14;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.area-title {
  font-size: clamp(28px, 2.9vw, 42px);
  white-space: nowrap;
}
.section-heading p, .page-hero p, .lead-copy { color: var(--muted); }
.lead-copy { font-size: clamp(16px, 1.5vw, 18px); }

.cargo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.cargo-card, .reason, .consult-card, .item, .voice-card, .salary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16,24,22,.04);
}
.cargo-card {
  overflow: hidden;
  min-height: 300px;
  padding: 0;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cargo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cargo-body {
  padding: 20px 18px 18px;
}
.cargo-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}
.cargo-card h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.35; }
.cargo-card p { margin: 0; color: var(--muted); font-size: 13px; }

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background: var(--soft);
}
.reason-grid, .service-cards, .fleet-grid, .item-grid, .job-points, .voice-grid, .decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.decision-section {
  border-top: 1px solid var(--line);
}
.decision-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 22, .04);
}
.decision-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.decision-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}
.decision-grid p {
  margin: 0;
  color: var(--muted);
}
.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.reason {
  min-height: 310px;
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.reason span { color: var(--red); font-weight: 900; }
.reason h3 { margin: 18px 0 12px; font-size: 21px; line-height: 1.36; }
.reason p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.support-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  padding: clamp(50px, 7vw, 86px);
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.support-section h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.14;
}
.support-section .lead-copy {
  color: rgba(255,255,255,.78);
}
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.support-list {
  display: grid;
  gap: 12px;
}
.support-list article {
  padding: 22px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.support-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.support-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}
.support-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.seo-hub {
  padding-top: 0;
}
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.seo-link-grid a {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16,24,22,.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.seo-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(108,65,82,.3);
  box-shadow: 0 16px 34px rgba(16,24,22,.08);
}
.seo-link-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.seo-link-grid strong {
  color: var(--deep);
  font-size: 19px;
  line-height: 1.35;
}
.seo-target {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}
.seo-points {
  display: grid;
  gap: 10px;
}
.seo-points span {
  padding: 18px 20px;
  color: var(--green-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.fleet-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.fleet-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.vehicle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 28px;
}
.vehicle-list span {
  display: block;
  padding: 15px 16px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}
.text-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.works-section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 148px) 0;
}
.works-main {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}
.works-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}
.works-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8,18,15,.9), rgba(8,18,15,.25));
}
.works-main div {
  position: relative;
  z-index: 1;
  width: min(640px, 100% - 36px);
  padding: clamp(46px, 7vw, 82px);
}
.works-main p { color: rgba(255,255,255,.82); }
.works-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.work-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16,24,22,.12);
}
.work-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}
.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(8,18,15,.88));
}
.work-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 22px;
}
.work-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.work-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 19px;
  line-height: 1.35;
}
.work-card:hover img {
  transform: scale(1.04);
}

.consult-card {
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.consult-card h3 { margin-bottom: 10px; font-size: 20px; }
.consult-card p { margin: 0; color: var(--muted); }
.section-link {
  margin-top: 26px;
}

.area-section {
  width: min(1360px, calc(100% - 28px));
  padding: clamp(30px, 4vw, 52px);
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(108,65,82,.08), transparent 28%),
    linear-gradient(135deg, #f6f2f3 0%, #f1eeee 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16,24,22,.08);
}
.area-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.area-layout {
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(720px, 1.45fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}
.area-copy {
  display: flex;
  flex-direction: column;
}
.area-copy .lead-copy {
  color: var(--muted);
}
.area-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0 26px;
}
.area-summary span {
  min-height: 92px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16,24,22,.07);
}
.area-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.1;
  white-space: nowrap;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.area-tags span {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 12px;
  color: var(--green-2);
  background: rgba(255,255,255,.72);
  border: 1px solid #d6e1dc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.area-map {
  position: relative;
  overflow: visible;
  align-self: start;
  padding: 4px;
  background: #f8faf8;
  border: 1px solid #d6e1dc;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16,24,22,.12);
}
.area-map img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 6px;
}
.company-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}
.company-note {
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background: var(--green-2);
  border-radius: 8px;
}
.company-note h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}
.company-note p {
  color: rgba(255,255,255,.78);
}
.company-note .text-link {
  color: var(--gold);
  border-color: rgba(201,169,106,.5);
}

.page-hero {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 58px);
  background: var(--soft);
}
.service-hero, .contact-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 15, .9), rgba(8, 18, 15, .62)),
    url("./assets/detail-lift.jpg") center / cover;
}
.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 15, .9), rgba(8, 18, 15, .62)),
    url("./assets/trust-work.jpg") center / cover;
}
.service-hero p, .contact-hero p { color: rgba(255,255,255,.84); }
.service-hero .crumb, .contact-hero .crumb { color: rgba(255,255,255,.72); }
.service-hero .crumb a, .contact-hero .crumb a { color: var(--gold); }
.page-hero .inline-actions, .contact-hero-actions {
  margin-top: 28px;
}
.call-fallback {
  display: inline-grid;
  gap: 4px;
  margin-top: 16px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.call-fallback[hidden] {
  display: none;
}
.call-fallback span,
.call-fallback small {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 900;
}
.call-fallback strong a {
  color: var(--white);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .01em;
}
.page-hero-inner { width: min(1120px, 100%); margin: 0 auto; }
.crumb { margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 800; }
.crumb a { color: var(--green); }

.service-intro, .company-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.service-proof, .trust-numbers, .contact-proof {
  display: grid;
  gap: 12px;
}
.service-proof span, .trust-numbers span, .contact-proof span {
  display: block;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16,24,22,.05);
  color: var(--muted);
  font-weight: 800;
}
.service-proof strong, .trust-numbers strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-2);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.inline-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.inline-link-group .button {
  min-height: 50px;
  padding: 0 20px;
  box-shadow: 0 8px 22px rgba(16,24,22,.12);
}
.company-note .button.secondary,
.president-link-card .button.secondary {
  color: var(--deep);
  background: var(--white);
  border-color: rgba(255,255,255,.7);
}
.company-note .button.primary,
.president-link-card .button.primary {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { box-shadow: var(--shadow); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 24px; }
.card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.35; }
.card p { color: var(--muted); }

.table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.table-row { display: grid; grid-template-columns: .75fr 1.25fr; }
.table-row:first-child { color: var(--white); background: var(--green-2); font-weight: 900; }
.table-row span { padding: 18px; border-bottom: 1px solid var(--line); }
.table-row span + span { border-left: 1px solid var(--line); }
.table-row:last-child span { border-bottom: 0; }

.cta {
  padding: clamp(74px, 10vw, 124px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 15, .94), rgba(8, 18, 15, .76)),
    url("./assets/service-concrete.jpg") center / cover;
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.cta p { color: rgba(255,255,255,.82); }

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-heading {
  margin-bottom: 8px;
}
.form-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}
.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}
.contact-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 900; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7faf8;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form button { border: 0; font: inherit; cursor: pointer; }
.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form .button.secondary {
  color: var(--green-2);
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: none;
}
.form-status {
  min-height: 1.6em;
  margin: 0;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 900;
}
.note { color: var(--muted); font-size: 13px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}
.photo-guide {
  padding-top: 0;
}
.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.photo-guide-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 24, 22, .06);
}
.photo-guide-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-guide-grid div {
  padding: 24px;
}
.photo-guide-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.photo-guide-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.photo-guide-grid p {
  margin: 0;
  color: var(--muted);
}
.large-tel {
  display: inline-block;
  margin: 8px 0;
  color: var(--green-2);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
}
.checklist {
  margin: 28px 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.checklist h3 {
  margin-bottom: 14px;
  font-size: 20px;
}
.checklist ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.item { padding: 24px; }
.item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 900;
}
.item h3 { margin-bottom: 8px; font-size: 18px; }
.item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.item-cta {
  color: var(--white);
  background: var(--green-2);
  border-color: var(--green-2);
}
.item-cta p { color: rgba(255,255,255,.78); }
.item-cta .text-link { color: var(--gold); border-color: rgba(185,151,87,.5); }
.fleet-card-grid, .policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.policy-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.president-link-section {
  padding-top: 0;
}
.president-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  background: var(--soft-green);
  border: 1px solid rgba(108,65,82,.12);
  border-radius: 8px;
}
.president-link-card h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
}
.president-link-card p {
  margin: 0;
  color: var(--muted);
}
.president-message {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}
.president-photo-placeholder {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.president-photo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}
.president-photo-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(45,31,38,0) 48%, rgba(45,31,38,.78) 100%);
}
.president-photo-placeholder figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px 30px 30px;
}
.president-photo-placeholder span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.president-photo-placeholder p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.message-body {
  padding-top: 10px;
}
.message-body h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.18;
}
.message-body p {
  color: var(--muted);
  font-weight: 700;
  line-height: 2.1;
}
.president-sign {
  margin-top: 30px;
  color: var(--deep) !important;
}
.president-sign strong {
  font-size: 22px;
}
.brand-creed {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(135deg, #f7f4f3, #fbfaf9);
  border: 1px solid rgba(108,65,82,.12);
  border-radius: 8px;
}
.brand-creed-visual {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 38px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(108,65,82,.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16,24,22,.07);
}
.brand-creed-visual img {
  width: min(100%, 560px);
  height: auto;
  display: block;
}
.brand-creed-body h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.22;
}
.brand-creed-body > p {
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}
.creed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.creed-list article {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(108,65,82,.12);
  border-radius: 8px;
}
.creed-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 18px;
  font-weight: 900;
}
.creed-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.president-promise {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.promise-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.22;
}
.promise-copy p {
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.promise-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16,24,22,.05);
}
.promise-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.promise-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}
.promise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.message-quote-section {
  padding-top: 0;
}
.message-quote {
  padding: clamp(30px, 5vw, 56px);
  color: var(--ink);
  background: linear-gradient(135deg, #faf8f7 0%, #f2e9eb 58%, #eadde1 100%);
  border-radius: 8px;
  border: 1px solid rgba(108, 65, 82, .12);
  box-shadow: 0 18px 48px rgba(36, 31, 33, .1);
}
.message-quote p {
  max-width: 980px;
  margin: 0;
  color: #3a3335;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.8;
}
.message-quote p + p {
  margin-top: 22px;
}
.message-quote-sign {
  text-align: right;
  color: #6c4152 !important;
  font-size: clamp(16px, 1.7vw, 22px) !important;
  letter-spacing: .08em;
}
.fleet-card, .policy-card {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16,24,22,.05);
}
.fleet-card span, .policy-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fleet-card h3, .policy-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}
.fleet-card p, .policy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.next-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}
.next-links a {
  display: block;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16,24,22,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.next-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(108,65,82,.26);
  box-shadow: var(--shadow);
}
.next-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-links strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
}
.next-links small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.related-navigation {
  padding-top: 24px;
}
.home-return {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-2), #6c4152);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.home-return::after {
  content: "→";
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-2);
  background: var(--white);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
  transition: transform .18s ease;
}
.home-return:hover::after {
  transform: translateX(3px);
}
.home-return span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-return strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.3;
}
.faq-section {
  display: grid;
  gap: clamp(46px, 7vw, 82px);
}
.faq-group .section-heading {
  margin-bottom: 22px;
}
.faq-group .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}
.faq-list { display: grid; gap: 10px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}
details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}
.job-point {
  padding: 22px;
  color: var(--white);
  background: var(--green-2);
  border-radius: 8px;
}
.job-point strong { display: block; margin-bottom: 8px; font-size: 22px; }
.job-point p { margin-bottom: 0; color: rgba(255,255,255,.78); }

.recruit-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 24, 20, .88), rgba(13, 24, 20, .5)),
    url("./assets/fleet-blue.jpg") center / cover;
}
.recruit-hero .page-hero-inner { padding: clamp(84px, 11vw, 150px) 0; }
.recruit-hero h1 { max-width: 900px; font-size: clamp(40px, 6vw, 76px); line-height: 1.08; }
.recruit-hero p { color: rgba(255,255,255,.86); }
.recruit-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.recruit-badges span {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.notice-box {
  padding: clamp(22px, 4vw, 34px);
  background: #f3eafa;
  border: 1px solid #eadcf4;
  border-radius: 8px;
}
.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: #a9578a;
  font-size: clamp(22px, 3vw, 32px);
}
.salary-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.05;
}
.timeline { display: grid; gap: 12px; max-width: 760px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.timeline-item time { color: var(--green); font-weight: 900; }
.voice-card { padding: clamp(24px, 4vw, 34px); }
.voice-card h3 { margin-bottom: 18px; font-size: 20px; }
.voice-card p { color: var(--muted); }
.voice-card p:last-child { margin-bottom: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

.footer {
  padding: 34px clamp(18px, 4vw, 58px);
  color: rgba(255,255,255,.72);
  background: var(--green-2);
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.footer p { margin: 0; }
.mobile-cta { display: none; }

@media (max-width: 1120px) {
  .nav { display: none; }
  .cargo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav, .header-actions .small-button { display: none; }
  .hero-v2-inner, .split, .fleet-section, .area-section, .company-summary-grid, .cta-inner, .service-intro, .company-lead, .president-message, .brand-creed, .president-promise { grid-template-columns: 1fr; }
  .area-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-cards, .fleet-grid, .item-grid, .job-points, .voice-grid, .reason-grid, .consult-grid, .seo-link-grid, .decision-grid, .photo-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-target, .support-section { grid-template-columns: 1fr; }
  .fleet-card-grid, .policy-grid, .next-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-list { grid-template-columns: repeat(2, 1fr); }
  .works-sub { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 66px; }
  .site-header { min-height: 66px; padding: 10px 14px; }
  .brand { min-width: 0; }
  .brand-logo { width: min(190px, 52vw); height: 44px; }
  .brand-name { font-size: 14px; }
  .brand-sub { font-size: 10px; }
  .tel { display: none; }
  .hero-v2 {
    min-height: calc(100svh - 66px);
    padding: 64px 14px 92px;
    background:
      linear-gradient(180deg, rgba(20, 19, 20, .92) 0%, rgba(36, 31, 33, .78) 48%, rgba(36, 31, 33, .62) 100%),
      url("./assets/hero-dsc0893.jpg") 52% center / cover no-repeat;
  }
  .hero-v2-inner { min-height: auto; gap: 28px; }
  h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .area-title { white-space: normal; }
  .hero-title span:nth-child(2),
  .hero-title span:nth-child(3) { white-space: normal; }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; min-height: 56px; }
  .hero-phone a { display: block; margin: 4px 0 0; }
  .scroll-cue { display: none; }
  .hero-v2-copy .hero-actions,
  .hero-phone { display: none; }
  .section, .works-section { width: min(100% - 28px, 1120px); padding: 66px 0; }
  .band { padding-left: 14px; padding-right: 14px; }
  .area-section {
    width: min(100% - 28px, 1120px);
    padding: 22px;
  }
  .area-summary { grid-template-columns: 1fr; }
  .cargo-grid, .service-cards, .reason-grid, .fleet-grid, .item-grid, .job-points, .voice-grid, .consult-grid, .vehicle-list, .works-sub, .fleet-card-grid, .policy-grid, .next-links, .seo-link-grid, .seo-target, .support-section, .creed-list, .promise-grid, .decision-grid, .photo-guide-grid { grid-template-columns: 1fr; }
  .president-link-card { align-items: stretch; flex-direction: column; }
  .president-link-card .button { width: 100%; }
  .president-photo-placeholder, .president-photo-placeholder img { min-height: 420px; }
  .brand-creed { padding: 26px 18px; }
  .brand-creed-visual { padding: 18px; }
  .support-section {
    width: min(100% - 28px, 1120px);
    padding: 34px 22px;
  }
  .seo-hub { padding-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .reason { min-height: 0; padding: 24px; }
  .works-main { min-height: 560px; }
  .works-main div { width: min(100% - 28px, 1120px); padding: 40px 0; margin: 0 auto; }
  .work-card, .work-card img { min-height: 250px; }
  .fleet-photo img { aspect-ratio: 4 / 3; }
  .area-map { padding: 5px; }
  .area-map img { aspect-ratio: 16 / 9; }
  .timeline-item { grid-template-columns: 68px 1fr; }
  .table-row { grid-template-columns: 1fr; }
  .table-row span + span { border-left: 0; }
  .footer-inner { display: block; }
  .footer p + p { margin-top: 6px; }
  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(251,252,250,.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(31,29,30,.18);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--green-2);
    border-radius: 6px;
    font-weight: 900;
  }
  .mobile-cta a:first-child { background: linear-gradient(135deg, #5f3a49, #443f41); }
}
