:root {
  --navy: #0c224d;
  --navy-deep: #061633;
  --blue: #174d97;
  --gold: #c7a14c;
  --gold-deep: #a98436;
  --text: #1a1f2b;
  --muted: #687086;
  --bg: #f4f6fa;
  --line: #d9dfeb;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(10, 24, 48, 0.12);
  --radius: 24px;
  --header-h: 88px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.l-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 22, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
}

.site-brand__text strong,
.site-brand__text small {
  display: block;
}

.site-brand__text strong {
  font-size: 1rem;
  letter-spacing: .04em;
}

.site-brand__text small {
  font-size: .78rem;
  opacity: .75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
}

.site-nav a {
  opacity: .88;
}

.site-nav a:hover {
  opacity: 1;
  color: #fff0c8;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(199,161,76,.18), transparent 22%),
    linear-gradient(135deg, #071633 0%, #0a2350 52%, #102f68 100%);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 51, .92) 0%, rgba(6, 22, 51, .30) 34%, rgba(6, 22, 51, .10) 62%, rgba(6, 22, 51, 0) 100%),
    linear-gradient(180deg, rgba(6, 22, 51, 0), rgba(6, 22, 51, .18)),
    url("../img/hero-truck.jpg") no-repeat right center / cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 140px,
      rgba(255,255,255,.04) 140px 141px
    );
  opacity: .55;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  height: 2px;
  background: rgba(255,255,255,.06);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 72px 0 64px;
}

.hero__content {
  width: min(680px, 100%);
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .18em;
  background: rgba(255,255,255,.03);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 5.8rem);
  line-height: 1.12;
  letter-spacing: .04em;
  font-weight: 800;
}

.hero__lead {
  margin: 18px 0 14px;
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #fbe6b3;
}

.hero__text {
  max-width: 40rem;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* 旧heroカードは使わない */
.hero__visual,
.hero-card,
.hero-card__label,
.hero-card__truck,
.hero-card__ad,
.truck-cabin,
.truck-box,
.truck-wheel {
  display: none !important;
}

/* =========================
   BUTTON
========================= */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.c-btn:hover {
  transform: translateY(-2px);
}

.c-btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e1c16f 100%);
  color: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(199,161,76,.3);
}

.c-btn--line {
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  background: rgba(255,255,255,.02);
}

.c-btn--line:hover {
  background: rgba(255,255,255,.08);
}

/* =========================
   SECTION COMMON
========================= */

.section {
  padding: 110px 0;
}

.section--light {
  background: var(--bg);
}

.section--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading__sub {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .85rem;
  letter-spacing: .18em;
  font-weight: 700;
}

.section-heading__sub--light {
  color: #f0d38f;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  line-height: 1.2;
}

.section-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
}

.section--dark .section-heading p,
.section--dark .section-heading h2 {
  color: #fff;
}

/* =========================
   BUSINESS
========================= */

.business-grid,
.truck-grid {
  display: grid;
  gap: 24px;
}

.business-grid {
  grid-template-columns: repeat(4, 1fr);
}

.truck-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.truck-card,
.contact-form-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
}

.info-card__icon {
  width: 100px;
  margin: 0 auto 18px;
}

.info-card__icon img {
  width: 100%;
  height: auto;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   FLOW
========================= */

.flow-section {
  margin-top: 56px;
  text-align: center;
}

.flow-section__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 2.5vw, 4.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.flow-section__sub {
  margin: 10px 0 34px;
  color: #707a92;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.flow-step {
  flex: 0 0 auto;
  width: 122px;
  text-align: center;
}

.flow-step__num {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.flow-step__circle {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  border: 2px solid #bcc8dd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step__circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.flow-step__label {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.flow-arrow {
  flex: 0 0 auto;
  width: 24px;
  height: 88px;
  position: relative;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 2px;
  width: 15px;
  height: 2px;
  background: var(--navy);
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: 39px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: rotate(45deg);
}

.flow-section__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================
   TRUCK
========================= */

.truck-card {
  overflow: hidden;
  border: 1px solid var(--line);
}

.truck-card__image {
  background-size: cover;
  background-position: center;
  position: relative;
	height:200px;
}
.truck-card__image img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.truck-card__image--large {
  background-image: linear-gradient(135deg, #8ba9d9, #dfe9f6 55%, #c7a14c 100%);
}

.truck-card__image--medium {
  background-image: linear-gradient(135deg, #9fc4d8, #f0f6fa 55%, #7b9de0 100%);
}

.truck-card__image--small {
  background-image: linear-gradient(135deg, #e0a7b7, #fff4f6 55%, #d2dff9 100%);
}

.truck-card__body {
  padding: 24px;
}

.truck-card__body h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  color: var(--navy);
}

.truck-card__body ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.truck-card__body li + li {
  margin-top: 6px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 34px;
  align-items: start;
}

.contact-copy {
  max-width: 420px;
  padding-top: 40px;
}

.contact-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 2.5vw, 3.6rem);
}

.contact-copy__lead {
  margin: 0 0 26px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,.9);
}

.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-points li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d38f, var(--gold));
}

/* =========================
   CONTACT FORM BOX
========================= */

.contact-form-box {
  background: #fff;
  border-radius: 24px;
  padding: 34px 34px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.contact-form-fallback {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #cbd4e4;
  color: #58637a;
  font-size: .95rem;
}

/* =========================
   CONTACT FORM (CF7)
========================= */

.rg-contact-form {
  width: 100%;
}

.rg-contact-form .wpcf7-form-control-wrap {
  display: block;
}

.rg-form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.rg-form-label {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}

.rg-form-row--textarea .rg-form-label {
  padding-top: 6px;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.rg-badge--required {
  background: var(--navy);
  color: #fff;
}

.rg-badge--optional {
  background: #9ba4b6;
  color: #fff;
}

.rg-form-input input,
.rg-form-input textarea,
.rg-form-input select {
  width: 100%;
  border: 1px solid #d6dce8;
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rg-form-input input,
.rg-form-input select {
  height: 48px;
  padding: 0 14px;
}

.rg-form-input textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
  line-height: 1.8;
}

.rg-form-input input:focus,
.rg-form-input textarea:focus,
.rg-form-input select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,161,76,.12);
}

.rg-form-input ::placeholder {
  color: #a5aec0;
}

.rg-form-submit {
  margin-top: 24px;
  text-align: center;
}

.rg-form-submit .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #dfbf69 100%);
  color: var(--navy-deep);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.rg-form-submit .wpcf7-submit:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.rg-contact-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.rg-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d93025;
  font-size: 0.85rem;
  line-height: 1.5;
}

.rg-contact-form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 12px 14px !important;
  font-size: 0.9rem;
  line-height: 1.7;
  border-radius: 10px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #071633;
  color: rgba(255,255,255,.82);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  padding: 52px 0 26px;
}

.site-brand--footer {
  margin-bottom: 16px;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.site-footer__info dl {
  margin: 0;
}

.site-footer__info dt {
  margin-bottom: 4px;
  color: #f0d38f;
  font-weight: 700;
}

.site-footer__copy {
  margin: 0;
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .88rem;
}

.page-default__inner {
  max-width: 900px;
}

.page-default__title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .truck-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrap,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(6, 22, 51, .30) 0%, rgba(6, 22, 51, .75) 100%),
      url("../img/hero-truck.jpg") no-repeat center center / cover;
  }

  .flow-steps {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 6px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .flow-steps::-webkit-scrollbar {
    height: 8px;
  }

  .flow-steps::-webkit-scrollbar-thumb {
    background: rgba(12, 34, 77, 0.18);
    border-radius: 999px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    background: rgba(6, 22, 51, .98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 18px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .hero__inner {
    min-height: auto;
    padding: 58px 0 56px;
  }
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .rg-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .rg-form-label {
    font-size: 0.98rem;
    padding-top: 0;
  }

  .rg-form-row--textarea .rg-form-label {
    padding-top: 0;
  }

  .rg-form-input input,
  .rg-form-input select {
    height: 44px;
    font-size: 0.95rem;
  }

  .rg-form-input textarea {
    min-height: 170px;
    font-size: 0.95rem;
  }

  .rg-form-submit .wpcf7-submit {
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .l-container {
    width: min(100% - 28px, 1200px);
  }

  .site-brand__mark {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .site-brand__text strong {
    font-size: .92rem;
  }

  .site-brand__text small {
    font-size: .72rem;
  }

  .section {
    padding: 82px 0;
  }

  .hero::after {
    bottom: 56px;
  }

  .hero__inner {
    padding: 46px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 4.2rem);
    line-height: 1.18;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__text {
    font-size: .95rem;
    line-height: 1.9;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .c-btn {
    min-width: 100%;
  }

  .business-grid,
  .site-footer__info {
    grid-template-columns: 1fr;
  }

  .flow-section {
    margin-top: 40px;
  }

  .flow-section__title {
    font-size: 2.2rem;
  }

  .flow-section__sub {
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .flow-step {
    width: 96px;
  }

  .flow-step__num {
    font-size: 1.2rem;
    margin-bottom: 7px;
  }

  .flow-step__circle {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }

  .flow-step__circle img {
    width: 35px;
    height: 35px;
  }

  .flow-step__label {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .flow-arrow {
    width: 16px;
    height: 70px;
  }

  .flow-arrow::before {
    top: 35px;
    width: 10px;
  }

  .flow-arrow::after {
    top: 31px;
    width: 7px;
    height: 7px;
  }

  .flow-section__note {
    font-size: 0.9rem;
    margin-top: 18px;
  }
}

/* CF7が勝手に入れるpタグの余白を消す */
.rg-contact-form p {
  margin: 0;
}

/* フォーム内の行間をスマホだけ少し締める */
@media (max-width: 767px) {
  .rg-form-row {
    gap: 6px;
    margin-bottom: 12px;
  }

  .rg-form-label {
    margin: 0;
    line-height: 1.35;
  }

  .rg-form-input {
    margin: 0;
  }

  .rg-form-input textarea {
    min-height: 140px;
  }
}

/*送信後*/
.rg-contact-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid #d8e7d0 !important;
  background: #f4fbef;
  color: #23401f;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.rg-contact-form form.sent .wpcf7-response-output {
  border-color: #d8e7d0 !important;
  background: #f4fbef;
  color: #23401f;
}

.rg-contact-form form.invalid .wpcf7-response-output,
.rg-contact-form form.failed .wpcf7-response-output,
.rg-contact-form form.aborted .wpcf7-response-output {
  border-color: #f0c7c7 !important;
  background: #fff5f5;
  color: #7a1f1f;
}
.rg-contact-form form.sent .wpcf7-response-output {
  position: relative;
  padding-left: 44px !important;
}

.rg-contact-form form.sent .wpcf7-response-output::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #7fb36a;
  color: #fff;
  font-size: 0.85rem;
  line-height: 20px;
  text-align: center;
  font-weight: 700;
}