:root {
  --navy: #0d2b5b;
  --navy-deep: #081d3d;
  --red: #d73a3a;
  --red-deep: #bc2d2d;
  --gold: #d6b16c;
  --bg: #f3f5f8;
  --line: #dbe3ec;
  --text: #202635;
  --muted: #667085;
  --white: #ffffff;
  --main: #111111;        /* メイン黒 */
  --sub: #1a1a1a;         /* 濃い黒 */
  --accent: #ff7a00;      /* オレンジ */
  --accent-deep: #e56700; /* 濃いオレンジ */
  --bg: #f5f5f5;
  --text: #222;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(7, 20, 43, 0.10);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: #ffffff; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 78px 0; }
.section.gray { background: var(--bg); }
.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
  text-align: center;
  color: var(--navy-deep);
  letter-spacing: .03em;
}
.section-title::after,
.sub-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  margin: 14px auto 0;
}
.section-lead { 
  max-width: 760px;
  margin: 0 auto 42px;

  color: var(--muted);
  font-size: 1rem;
}
.sub-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.35;
  color: var(--navy-deep);
}
.sub-title::after {   text-align: center; margin-left: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;  
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(215, 58, 58, .22);
}
.btn-primary:hover { background: var(--red-deep); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(13, 43, 91, .20);
}
.btn-secondary:hover { background: var(--navy-deep); }
.topbar {
  background:#ff7a00;
  color: rgba(255,255,255,.9);
  font-size: .84rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 0;
}
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8,29,61,.08);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 140px;
  height: auto;
  display: block;
}



.nav ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: .96rem;
}
.nav a {
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tel-box { text-align: right; }
.tel-box small {
  display: block;
  font-size: .75rem;
  line-height: 1.2;
  color: #ffffff;
}
.tel-box a {
  display: block;
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  line-height: 1.1;
  color: #FFF;
  font-weight: 900;
  margin-top: 2px;
  white-space: nowrap;
}
.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8,29,61,.84) 20%, rgba(8,29,61,.70) 62%, rgba(8,29,61,.50) 100%),
    url("../img/heroimg.jpg") center/cover no-repeat;
}
.hero-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: center;
  padding: 58px 0 48px;
}
.hero-copy { max-width: 760px; }
.hero-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.20);
  font-size: .92rem;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.18;
  letter-spacing: .02em;
}
.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 700;
}
.hero-points li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  flex-shrink: 0;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions .btn {
  min-width: 238px;
  min-height: 74px;
  justify-content: flex-start;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 1.08rem;
}
.hero-actions .label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.hero-actions small {
  font-size: .8rem;
  font-weight: 600;
  opacity: .92;
}
.hero-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  justify-self: end;
  background: radial-gradient(circle at 30% 30%, #efdeb7 0%, var(--gold) 45%, #b58b45 100%);
  border: 8px solid rgba(255,255,255,.14);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-badge small {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero-badge strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  margin: 10px 0 6px;
}
.hero-badge small,
.hero-badge strong {
  position: relative;
  z-index: 2;
}

.badge-img {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 120px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.service-links {
  background: var(--navy);
  color: var(--white);
}
.service-links .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service-links a {
  min-height: 112px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .2s ease;
}
.service-links a:last-child { border-right: none; }
.service-links a:hover { background: rgba(255,255,255,.08); }
.service-links strong {
  font-size: 1.04rem;
  line-height: 1.35;
}
.service-links span {
  font-size: .84rem;
  opacity: .86;
  line-height: 1.5;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,29,61,.06);
}
.card img {
  height: 170px;
  object-fit: cover;
}
.card-body {
  padding: 20px 18px 22px;
}
.card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 1.18rem;
  line-height: 1.4;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.reason {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.reason-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #eef4ff, #d7e5fb);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
}
.reason h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 1.3rem;
  line-height: 1.35;
}
.reason p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.vehicle-wrap {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 24px;
  align-items: stretch;
}
.panel,
.record-panel,
.box,
.recruit-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.panel,
.box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 28px;
}
.vehicle-types {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.vehicle-item { text-align: center; }
.vehicle-item .icon {
  width: 72px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f0ff, #c9daf8);
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-item span {
  display: block;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--navy-deep);
  font-weight: 700;
}
.vehicle-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.record-panel {
  color: var(--white);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(0deg, rgba(8,29,61,.80), rgba(8,29,61,.80)),
    url("../img/factory-inside.jpg") center/cover no-repeat;
}
.record-panel p { margin: 0; }
.record-panel strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}
.company-list {
  display: grid;
  gap: 8px;
  font-size: .97rem;
}
.company-list a{
  color: #000;
}
.company-list strong { color: var(--navy-deep); }
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}
.map-padding-off { padding: 0; }
.recruit-box {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.recruit-box img {
  height: 240px;
  object-fit: cover;
}
.recruit-content { padding: 28px; }
.recruit-content p {
  margin: 0 0 20px;
  color: var(--muted);
}
.box-actions { margin-top: 22px; }
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffffff 0%, #f6f8fb 100%);
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
}
.cta-copy h2 {
  margin: 0 0 6px;
  color: var(--navy-deep);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.3;
}
.cta-copy p {
  margin: 0;
  color: var(--muted);
}
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.9);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer .logo-text strong,
.footer-title { color: var(--white); }
.footer .logo-text span,
.footer p,
.footer a { color: rgba(255,255,255,.78); }
.footer-title {
  margin-bottom: 12px;
  font-weight: 800;
}
.footer-desc {
  margin: 18px 0 0;
  max-width: 340px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}
.footer-copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  text-align: center;
  color: rgba(255,255,255,.65);
}
.floating-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1000;
  display: none;
  gap: 10px;
}
.floating-cta .btn {
  flex: 1;
  min-height: 58px;
  padding: 0 12px;
  font-size: 1rem;
}
@media (max-width: 1180px) {
  .header-inner,
  .hero-inner,
  .vehicle-wrap,
  .access-grid,
  .cta-band .container,
  .footer-grid { grid-template-columns: 1fr; }
  .header-right { justify-content: space-between; }
  .nav ul { justify-content: flex-start; }
  .hero-badge { justify-self: start; }
  .card-grid,
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-types { grid-template-columns: repeat(4, 1fr); }
  .service-links .container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .section { padding: 58px 0; }
  .topbar { display: none; }
  .header { position: static; }
  .header-right { width: 100%; }
  .nav { display: none; }
  .tel-box small { display: none; }
  .tel-box a { font-size: 1rem; }
  .header-right .btn {
    min-height: 48px;
    padding: 0 16px;
  }
  .hero-inner {
    min-height: auto;
    padding: 36px 0 28px;
  }
  .hero h1 { font-size: 2.35rem; }
  .hero-points li { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-badge {
    width: 180px;
    height: 180px;
  }
  .hero-badge strong { font-size: 2.5rem; }
  .service-links .container,
  .card-grid,
  .reason-grid,
  .vehicle-types { grid-template-columns: 1fr; }
  .service-links a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .service-links a:last-child { border-bottom: 0; }
  .card img { height: 220px; }
  .panel,
  .box,
  .recruit-content,
  .record-panel {
    padding: 22px 18px;
  }
  .map-box iframe { min-height: 280px; }
  .recruit-box img { height: 210px; }
  .cta-band .container { padding: 24px 0 86px; }
  .cta-band .btn { width: 100%; }
  .footer { padding-bottom: 96px; }
  .floating-cta { display: flex; }
}

.message-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
}



.message-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;  
}

@media (max-width: 767px) {
  .message-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.btn-primary {
  font-size: 13px;
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  background: #000;
  color: #fff;
}



.section-title::after {
  background: var(--accent);
}

.card {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

h1, h2, h3 {
  font-weight: 600;
}

.btn {
  min-height: 64px;
}

@media (max-width: 767px) {
  .vehicle-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vehicle-item .icon {
    width: 64px;
    height: 46px;
  }

  .vehicle-item span {
    font-size: 0.85rem;
    line-height: 1.35;
  }
}

@media (max-width: 767px) {
  .vehicle-item {
    padding: 10px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
  }
}

.sub-title {
  text-align: center;
}

.sub-title::after {
  display: block;
  margin: 12px auto 0;
}

.reason-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #081d3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.reason:hover .reason-icon {
  transform: translateY(-5px);
}

.recruit-cta {
  background: linear-gradient(135deg, #081d3d, #0d2b5b);
  padding: 50px 0;
  color: #fff;
}

.recruit-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.recruit-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
}

.recruit-copy p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.recruit-btn {
  background: #ff7a00;
  color: #fff;
  padding: 18px 32px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
  transition: 0.2s;
}

.recruit-btn:hover {
  background: #e56700;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .recruit-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .recruit-btn {
    width: 100%;
  }
    .logo-img {
    width: 90px;
  }
    .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

}

.price-cta {
  background: linear-gradient(135deg, #081d3d, #0d2b5b);
  color: #fff;
  padding: 60px 0;
}

.price-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.price-cta-left h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
}

.price-cta-left p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.price-cta-note {
  margin-top: 12px;
  color: #ff7a00;
  font-weight: bold;
}

.price-cta-btn {
  background: #ff7a00;
  color: #fff;
  padding: 20px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  transition: 0.2s;
  box-shadow: 0 12px 30px rgba(255,122,0,0.25);
}

.price-cta-btn:hover {
  background: #e56700;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .price-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .price-cta-btn {
    width: 100%;
  }
}



