:root {
  --teal:        #2d5a6b;
  --teal-dark:   #1e3e4d;
  --teal-deeper: #162d38;
  --salmon:      #e07d5a;
  --salmon-dark: #c4633f;
  --cream:       #f7f3ee;
  --cream-dark:  #ede7de;
  --line:        #e2d9cd;
  --text:        #2a2a2a;
  --text-mid:    #4f5558;
  --white:       #ffffff;
  --serif: 'Cormorant Garamond', 'Noto Serif JP', 'Yu Mincho', serif;
  --sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --label: 'Montserrat', 'Noto Sans JP', sans-serif;
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 1 55 17v32L28 65 1 49V17zM28 65v32M1 49l-1 .6M55 49l1 .6' fill='none' stroke='%23ffffff' stroke-opacity='.06'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--salmon); outline-offset: 3px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 64px;
  background: rgba(22,45,56,.97);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.logo span { font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: .04em; }
.nav { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13px; white-space: nowrap; padding: 6px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--salmon); }
.nav .nav-cta { background: var(--salmon); color: var(--white); padding: 10px 20px; border: 0; }
.nav .nav-cta:hover { background: var(--salmon-dark); border: 0; }
.menu-btn { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px auto; transition: transform .25s, opacity .25s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- shared type ---------- */
.tag { font-family: var(--label); font-size: 11px; letter-spacing: .28em; color: var(--salmon); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.tag::before { content: ""; width: 28px; height: 1px; background: var(--salmon); }
.tag.center { justify-content: center; }
.tag.center::before { display: none; }
h1, h2, .display { font-family: var(--serif); font-weight: 400; letter-spacing: .03em; line-height: 1.45; }
h2 { font-size: clamp(24px, 3.4vw, 34px); color: var(--teal-dark); margin-bottom: 18px; }
h2 em, h1 em { font-style: italic; color: var(--salmon); }
h3 { font-size: 17px; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; line-height: 1.6; }
.lead { color: var(--text-mid); font-size: 15px; max-width: 46em; margin-bottom: 36px; }
.on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark .lead, .on-dark p { color: rgba(255,255,255,.84); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 34px; font-size: 15px; letter-spacing: .06em; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-family: var(--sans); transition: background .2s, color .2s, border-color .2s; }
.btn-primary { background: var(--salmon); color: var(--white); }
.btn-primary:hover { background: var(--salmon-dark); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--teal-dark); color: var(--white); }
.btn-dark:hover { background: var(--teal-deeper); }
.btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- top hero ---------- */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  min-height: min(620px, calc(100svh - 64px));
  display: flex; align-items: center;
  background: var(--teal-deeper);
}
.hero::before { content: ""; position: absolute; inset: 0; background: url("/img/trucks-wide.jpg") center 40% / cover no-repeat; opacity: .42; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(22,45,56,.94) 0%, rgba(22,45,56,.72) 48%, rgba(22,45,56,.25) 100%), var(--hex); }
.hero .wrap { position: relative; z-index: 1; width: 100%; padding-top: 56px; padding-bottom: 56px; }
.hero h1 { font-size: clamp(34px, 6.2vw, 64px); line-height: 1.3; margin-bottom: 24px; }
.hero-catch { display: inline-block; border-left: 3px solid var(--salmon); background: rgba(255,255,255,.1); padding: 8px 18px; font-size: 14px; letter-spacing: .2em; margin-bottom: 22px; }
.hero p.desc { max-width: 34em; font-size: 15px; color: rgba(255,255,255,.88); margin-bottom: 34px; }

/* ---------- page hero (sub pages) ---------- */
.page-hero { background: var(--teal) var(--hex); color: var(--white); padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.86); font-size: 15px; max-width: 44em; }
.crumb { font-size: 12px; color: rgba(255,255,255,.66); margin-bottom: 22px; }
.crumb a { color: rgba(255,255,255,.86); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--teal-dark) var(--hex); }
.bg-deeper { background: var(--teal-deeper); }

.facts { background: var(--teal-deeper); color: var(--white); padding: 0; }
.facts .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 26px 20px; border-left: 1px solid rgba(255,255,255,.1); }
.fact:first-child { border-left: 0; }
.fact b { display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--salmon); line-height: 1.3; }
.fact span { font-size: 12px; color: rgba(255,255,255,.78); letter-spacing: .08em; }

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-form { grid-template-columns: 1fr 1.5fr; align-items: start; }
.split-message { grid-template-columns: 1.6fr 1fr; align-items: start; }

.card { background: var(--white); border: 1px solid var(--line); padding: 32px 28px; }
.card p { font-size: 14px; color: var(--text-mid); }
.card .en { font-family: var(--label); font-size: 10.5px; letter-spacing: .2em; color: var(--salmon); margin-bottom: 12px; }
a.card { display: block; text-decoration: none; transition: transform .25s, box-shadow .25s, border-color .25s; }
a.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(22,45,56,.1); border-color: var(--salmon); }
a.card .more { margin-top: 16px; font-size: 13px; color: var(--teal); }
.card.dark { background: var(--teal-dark); border-color: var(--teal-dark); }
.card.dark h3 { color: var(--white); }
.card.dark p { color: rgba(255,255,255,.84); }
.card.main { border-top: 3px solid var(--salmon); }
.badge { display: inline-block; background: var(--salmon); color: var(--white); font-family: var(--label); font-size: 10px; letter-spacing: .16em; padding: 4px 10px; margin-bottom: 14px; }

/* photo slot: shows the pattern until /img/<name> exists */
.photo { position: relative; background: var(--teal-dark) var(--hex); overflow: hidden; aspect-ratio: 4 / 3; }
.photo.wide { aspect-ratio: 16 / 9; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--salmon); }

table.info { width: 100%; border-collapse: collapse; font-size: 14.5px; background: var(--white); }
table.info th, table.info td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.info th { width: 30%; color: var(--teal-dark); font-weight: 700; white-space: nowrap; background: var(--cream); }
table.info td { color: var(--text-mid); }
table.info a { color: var(--teal); }

.message { background: var(--white); border-top: 3px solid var(--salmon); padding: 40px 36px; }
.message p { color: var(--text-mid); font-size: 15px; margin-bottom: 1.4em; }
.message p:last-child { margin-bottom: 0; }
.ceo { text-align: center; }
.ceo img { width: 200px; height: 250px; object-fit: cover; object-position: top; margin: 0 auto 18px; }
.ceo .role { font-size: 12px; color: var(--text-mid); letter-spacing: .08em; }
.ceo .name { font-family: var(--serif); font-size: 24px; color: var(--teal-dark); }

.steps { counter-reset: s; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps li { counter-increment: s; background: var(--white); border: 1px solid var(--line); padding: 28px 22px; }
.steps li::before { content: "0" counter(s); display: block; font-family: var(--serif); font-size: 30px; color: var(--salmon); line-height: 1; margin-bottom: 12px; }
.steps p { font-size: 14px; color: var(--text-mid); }

/* ---------- CTA band ---------- */
.cta { background: var(--teal-deeper) var(--hex); color: var(--white); text-align: center; padding: 64px 0; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.84); font-size: 15px; margin-bottom: 28px; }
.cta .btns { justify-content: center; }
.cta .tel { font-family: var(--serif); font-size: 34px; letter-spacing: .04em; color: var(--white); text-decoration: none; display: inline-block; margin-bottom: 4px; }
.cta small { display: block; color: rgba(255,255,255,.7); font-size: 12px; margin-bottom: 26px; }

/* ---------- form ---------- */
.form { background: var(--white); border: 1px solid var(--line); padding: 36px 32px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
.field .req { color: var(--salmon-dark); font-weight: 400; margin-left: 6px; font-size: 12px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #cfc6b9; background: #fffdfb; font: inherit; font-size: 16px; color: var(--text); border-radius: 0; }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 0; border-color: var(--teal); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .note { font-size: 12.5px; color: var(--text-mid); margin-bottom: 18px; }
.form .note a { color: var(--teal); }
.form button { width: 100%; }
.form button[disabled] { opacity: .6; cursor: progress; }
.form-msg { margin-top: 18px; padding: 14px 16px; font-size: 14px; display: none; }
.form-msg.ok { display: block; background: #e9f3ec; color: #1f5a33; border-left: 3px solid #2f8a4f; }
.form-msg.ng { display: block; background: #fbebe6; color: #8a2e14; border-left: 3px solid var(--salmon-dark); }
.contact-side h3 { margin-top: 26px; }
.contact-side h3:first-child { margin-top: 0; }
.contact-side .big { font-family: var(--serif); font-size: 32px; color: var(--teal-dark); text-decoration: none; letter-spacing: .03em; }
.contact-side p { color: var(--text-mid); font-size: 14px; }

/* ---------- footer ---------- */
.site-foot { background: var(--teal-deeper); color: rgba(255,255,255,.72); padding: 52px 0 32px; font-size: 13px; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 22px; }
.foot-top address { font-style: normal; line-height: 1.9; margin-top: 14px; }
.foot-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 40px; list-style: none; align-content: start; }
.site-foot a { color: rgba(255,255,255,.88); text-decoration: none; }
.site-foot a:hover { color: var(--white); text-decoration: underline; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; color: rgba(255,255,255,.55); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  a.card { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .menu-btn { display: block; }
  .nav { position: fixed; inset: 64px 0 auto 0; background: var(--teal-deeper); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 28px 28px; transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100svh - 64px); overflow-y: auto; }
  .nav.open { transform: none; }
  .nav a { display: block; padding: 16px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav .nav-cta { text-align: center; margin-top: 18px; padding: 16px; }
  .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .split-form, .split-message { grid-template-columns: 1fr; gap: 36px; }
  .facts .wrap { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .site-head { padding: 0 16px 0 20px; }
  section { padding: 52px 0; }
  .g2, .g3, .g4, .steps, .row2 { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero .wrap { padding-top: 64px; padding-bottom: 64px; }
  .btns .btn { width: 100%; }
  .form, .message { padding: 28px 20px; }
  table.info th, table.info td { display: block; width: 100%; }
  table.info th { border-bottom: 0; padding-bottom: 6px; }
  table.info td { padding-top: 6px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .cta .tel { font-size: 28px; }
}

/* ---------- recruit ---------- */
.job { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--salmon); margin-bottom: 36px; }
.job-head { padding: 32px 32px 24px; border-bottom: 1px solid var(--line); }
.job-head .en { font-family: var(--label); font-size: 10.5px; letter-spacing: .2em; color: var(--salmon); margin-bottom: 10px; }
.job-head h3 { font-size: 22px; margin-bottom: 6px; }
.salary { font-family: var(--serif); font-size: 26px; color: var(--teal-dark); margin-bottom: 14px; line-height: 1.4; }
.salary small { display: block; font-family: var(--sans); font-size: 13px; color: var(--text-mid); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { background: var(--cream); border: 1px solid var(--line); font-size: 12px; padding: 4px 12px; color: var(--teal-dark); }
.job-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; padding: 28px 32px; }
.job-sec h4 { font-size: 13px; letter-spacing: .1em; color: var(--salmon-dark); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.job-sec ul { padding-left: 1.2em; font-size: 14px; color: var(--text-mid); }
.job-sec li { margin-bottom: 4px; }
.sched { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 14px; color: var(--text-mid); }
.sched dt { font-family: var(--label); color: var(--teal-dark); font-weight: 500; }
.job-apply { padding: 0 32px 32px; }
.benefits div { text-align: center; padding: 28px 16px; border: 1px solid rgba(255,255,255,.15); }
.benefits b { display: block; font-family: var(--serif); font-size: 54px; font-weight: 400; color: var(--salmon); line-height: 1.1; margin-bottom: 8px; }
.benefits b span { font-size: 22px; margin-left: 4px; }
.benefits p { font-size: 14px; }
.policy h2 { font-size: 19px; margin: 36px 0 10px; padding-left: 14px; border-left: 3px solid var(--salmon); }
.policy p, .policy li { color: var(--text-mid); font-size: 15px; }
.policy ul { padding-left: 1.4em; }
.policy a { color: var(--teal); }
@media (max-width: 600px) {
  .job-head, .job-body, .job-apply { padding-left: 20px; padding-right: 20px; }
  .job-body { grid-template-columns: 1fr; }
}
