@charset "UTF-8";
/* =========================================================
   style.css ｜ ベーススタイル
   SPRINT AUTO SERVICE サンプルサイト

   ・レイアウト／配色／各パーツの見た目はこのファイルにまとまっています。
   ・スクロール演出やメニューなど「動き」に関するCSSは effects.css 側です。
   ・読み込み順は必ず  style.css → effects.css  の順にしてください。
   ========================================================= */

:root {
 --red: #c8201e;
 --red-dark: #a8140f;
 --orange: #f08524;
 --bg: #ffffff;
 --bg-warm: #faf8f4;
 --bg-gray: #f4f1eb;
 --dark: #1f1f1f;
 --dark-soft: #2a2a2a;
 --text: #1a1a1a;
 --text-sub: #5c5c5c;
 --text-mute: #888888;
 --border: #e5e0d6;
 --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
 --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
 --gradient: linear-gradient(95deg, #c8201e 0%, #f08524 100%);
}

*,
*::before,
*::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}
html {
 scroll-behavior: smooth;
 -webkit-text-size-adjust: 100%;
}

body {
 font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
 background: var(--bg);
 color: var(--text);
 font-size: 18px;
 line-height: 1.85;
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
}

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

/* ============ INFO BAR ============ */
.infobar {
 background: var(--dark);
 color: #fff;
 font-size: 14px;
 padding: 10px 40px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.infobar .left {
 letter-spacing: 0.05em;
}
.infobar .left .badge {
 display: inline-block;
 background: var(--red);
 color: #fff;
 padding: 3px 12px;
 margin-right: 12px;
 font-weight: 700;
 font-size: 12px;
 letter-spacing: 0.1em;
}
.infobar .right {
 display: flex;
 gap: 24px;
 color: #b8b8b8;
}

/* ============ HEADER ============ */
header {
 background: #fff;
 border-bottom: 1px solid var(--border);
 padding: 18px 40px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 position: sticky;
 top: 0;
 z-index: 100;
}

.logo {
 display: flex;
 align-items: center;
 gap: 18px;
 text-decoration: none;
}
.logo-mark {
 width: 76px;
 height: 76px;
 background: var(--gradient);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 800;
 font-size: 42px;
 letter-spacing: -0.05em;
 transform: skew(-8deg);
 flex-shrink: 0;
}
.logo-mark span {
 transform: skew(8deg);
 font-style: italic;
}

.logo-text {
 height: 76px;
 display: flex;
 flex-direction: column;
 justify-content: center;
}
.brand-en {
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 800;
 font-style: italic;
 font-size: 46px;
 line-height: 1;
 background: var(--gradient);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
 letter-spacing: 0.01em;
}
.brand-en-sub {
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 700;
 font-style: italic;
 font-size: 18px;
 background: var(--gradient);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
 letter-spacing: 0.18em;
 margin-top: 6px;
}

nav.main-nav {
 display: flex;
 gap: 32px;
}
nav.main-nav a {
 color: var(--text);
 text-decoration: none;
 font-size: 18px;
 font-weight: 700;
 position: relative;
 padding: 8px 0;
 transition: color 0.2s;
}
nav.main-nav a::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 2px;
 background: var(--red);
 transform: scaleX(0);
 transition: transform 0.2s;
}
nav.main-nav a:hover {
 color: var(--red);
}
nav.main-nav a:hover::after {
 transform: scaleX(1);
}

.header-cta {
 display: flex;
 gap: 16px;
 align-items: center;
}
.tel-block {
 text-align: right;
}
.tel-block .label {
 font-size: 12px;
 color: var(--text-sub);
 font-weight: 700;
 letter-spacing: 0.05em;
}
.tel-block .num {
 font-family: "Barlow Condensed", sans-serif;
 font-size: 32px;
 font-weight: 800;
 color: var(--text);
 letter-spacing: 0.02em;
 line-height: 1;
 display: flex;
 align-items: center;
 gap: 8px;
}
.tel-block .num::before {
 content: "☎";
 font-size: 24px;
 color: var(--red);
}
.btn-cta {
 background: var(--red);
 color: #fff;
 padding: 16px 26px;
 text-decoration: none;
 font-weight: 700;
 font-size: 16px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 transition:
  background 0.2s,
  transform 0.2s;
 border: none;
 cursor: pointer;
 letter-spacing: 0.05em;
}
.btn-cta:hover {
 background: var(--red-dark);
 transform: translateY(-2px);
}
.btn-cta.large {
 padding: 22px 44px;
 font-size: 18px;
}
.btn-outline {
 border: 2px solid var(--text);
 color: var(--text);
 background: #fff;
 padding: 20px 38px;
 text-decoration: none;
 font-weight: 700;
 font-size: 18px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition:
  background 0.2s,
  color 0.2s;
}
.btn-outline:hover {
 background: var(--text);
 color: #fff;
}

/* ============ HERO ============ */
.hero {
 padding: 60px 40px 80px;
 position: relative;
 overflow: hidden;
}
.hero::before {
 content: "";
 position: absolute;
 right: -80px;
 top: 0;
 width: 50%;
 height: 100%;
 background: var(--bg-gray);
 z-index: -1;
}
.hero-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 max-width: 1320px;
 margin: 0 auto;
}
.hero-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 background: rgba(200, 32, 30, 0.08);
 color: var(--red);
 padding: 10px 18px;
 font-size: 14px;
 font-weight: 700;
 margin-bottom: 28px;
 letter-spacing: 0.05em;
}
.hero-eyebrow::before {
 content: "";
 width: 6px;
 height: 6px;
 background: var(--red);
 border-radius: 50%;
}
.hero h1 {
 font-size: clamp(40px, 5vw, 68px);
 font-weight: 900;
 line-height: 1.25;
 letter-spacing: 0.02em;
 margin-bottom: 28px;
}
.hero h1 .accent {
 color: var(--red);
 position: relative;
 display: inline-block;
}
.hero h1 .accent::after {
 content: "";
 position: absolute;
 bottom: 4px;
 left: 0;
 right: 0;
 height: 12px;
 background: rgba(240, 133, 36, 0.25);
 z-index: -1;
}
.hero p.lead {
 font-size: 19px;
 line-height: 2;
 color: var(--text-sub);
 margin-bottom: 40px;
 max-width: 540px;
}
.hero-actions {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
}
.hero-image {
 position: relative;
 aspect-ratio: 4 / 3;
 border-radius: 4px;
 overflow: hidden;
 box-shadow: var(--shadow);
}
.hero-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.hero-image-badge {
 position: absolute;
 bottom: 24px;
 left: 24px;
 background: #fff;
 padding: 18px 24px;
 box-shadow: var(--shadow);
 display: flex;
 align-items: center;
 gap: 16px;
}
.hero-image-badge .num {
 font-family: "Barlow Condensed", sans-serif;
 font-size: 46px;
 font-weight: 800;
 color: var(--red);
 line-height: 1;
}
.hero-image-badge .num span {
 font-size: 20px;
}
.hero-image-badge .desc {
 font-size: 13px;
 font-weight: 700;
 line-height: 1.5;
}

/* ============ TRUST BAR ============ */
.trust-bar {
 background: var(--bg-warm);
 padding: 56px 40px;
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.trust-grid {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 40px;
 text-align: center;
}
.trust-item {
 padding: 0 20px;
 border-right: 1px solid var(--border);
}
.trust-item:last-child {
 border-right: none;
}
.trust-icon {
 width: 68px;
 height: 68px;
 margin: 0 auto 18px;
 background: var(--red);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 32px;
 border-radius: 50%;
}
.trust-item h3 {
 font-size: 22px;
 font-weight: 900;
 margin-bottom: 10px;
 line-height: 1.3;
}
.trust-item p {
 font-size: 15px;
 color: var(--text-sub);
 line-height: 1.7;
}

/* ============ NUMBERS BAR ============ */
.numbers-bar {
 background: var(--dark);
 color: #fff;
 padding: 70px 40px;
 position: relative;
 overflow: hidden;
}
.numbers-bar::before {
 content: "NUMBERS";
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-size: 280px;
 font-weight: 800;
 color: rgba(255, 255, 255, 0.025);
 letter-spacing: -0.02em;
 pointer-events: none;
 line-height: 1;
 white-space: nowrap;
}
.numbers-head {
 text-align: center;
 margin-bottom: 50px;
 position: relative;
}
.numbers-head .label {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 color: var(--orange);
 font-size: 16px;
 font-weight: 800;
 letter-spacing: 0.3em;
 margin-bottom: 12px;
}
.numbers-head h2 {
 font-size: clamp(26px, 3vw, 36px);
 font-weight: 900;
 color: #fff;
}
.numbers-grid {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
 position: relative;
}
.num-card {
 text-align: center;
 padding: 30px 20px;
 border: 1px solid rgba(255, 255, 255, 0.1);
 background: rgba(255, 255, 255, 0.02);
}
.num-card .stat {
 font-family: "Barlow Condensed", sans-serif;
 font-size: 64px;
 font-weight: 800;
 color: #fff;
 line-height: 1;
 margin-bottom: 8px;
 background: var(--gradient);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.num-card .stat sup {
 font-size: 24px;
 vertical-align: super;
 -webkit-text-fill-color: #fff;
 background: none;
}
.num-card .stat-suffix {
 font-size: 28px;
 color: #fff;
 background: none;
 -webkit-text-fill-color: #fff;
}
.num-card .stat-label {
 font-size: 14px;
 color: rgba(255, 255, 255, 0.7);
 font-weight: 700;
 letter-spacing: 0.05em;
 line-height: 1.6;
}

/* ============ SECTION COMMON ============ */
section.block {
 padding: 100px 40px;
 max-width: 1320px;
 margin: 0 auto;
}
.section-head {
 text-align: center;
 margin-bottom: 60px;
}
.section-eyebrow {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 color: var(--red);
 font-size: 20px;
 font-weight: 800;
 letter-spacing: 0.25em;
 margin-bottom: 16px;
 text-transform: uppercase;
}
.section-title {
 font-size: clamp(30px, 3.5vw, 44px);
 font-weight: 900;
 line-height: 1.4;
 letter-spacing: 0.02em;
 margin-bottom: 20px;
}
.section-title .accent {
 color: var(--red);
}
.section-sub {
 font-size: 18px;
 color: var(--text-sub);
 line-height: 2;
 max-width: 720px;
 margin: 0 auto;
}

/* ============ WORRIES ============ */
.worries {
 background: var(--bg-warm);
 padding: 100px 40px;
}
.worries-inner {
 max-width: 1100px;
 margin: 0 auto;
}
.worries-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
}
.worry-card {
 background: #fff;
 border: 1px solid var(--border);
 border-left: 5px solid var(--red);
 padding: 32px 36px;
 display: grid;
 grid-template-columns: auto 1fr;
 gap: 28px;
 align-items: start;
 box-shadow: var(--shadow);
}
.worry-mark {
 background: var(--red);
 color: #fff;
 width: 56px;
 height: 56px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: "Barlow Condensed", sans-serif;
 font-size: 32px;
 font-weight: 800;
 flex-shrink: 0;
}
.worry-q {
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 14px;
 color: var(--text);
 line-height: 1.6;
}
.worry-q::before {
 content: "Q.";
 color: var(--red);
 margin-right: 10px;
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 800;
}
.worry-a {
 font-size: 18px;
 line-height: 2;
 color: var(--text-sub);
 padding-left: 36px;
 position: relative;
}
.worry-a::before {
 content: "A.";
 position: absolute;
 left: 0;
 top: -2px;
 color: var(--orange);
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 800;
 font-size: 24px;
}
.worry-a strong {
 color: var(--text);
 font-weight: 700;
}

/* ============ SERVICES ============ */
.services-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 32px;
}
.service-card {
 background: #fff;
 border: 1px solid var(--border);
 overflow: hidden;
 transition:
  transform 0.3s,
  box-shadow 0.3s;
 display: flex;
 flex-direction: column;
}
.service-card:hover {
 transform: translateY(-6px);
 box-shadow: var(--shadow-hover);
}
.service-image {
 aspect-ratio: 16 / 9;
 overflow: hidden;
 position: relative;
}
.service-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s;
}
.service-card:hover .service-image img {
 transform: scale(1.06);
}
.service-image .tag {
 position: absolute;
 top: 16px;
 left: 16px;
 background: var(--red);
 color: #fff;
 padding: 6px 14px;
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 0.05em;
}
.service-body {
 padding: 32px 32px 36px;
 flex: 1;
 display: flex;
 flex-direction: column;
}
.service-body h3 {
 font-size: 26px;
 font-weight: 900;
 margin-bottom: 12px;
 line-height: 1.4;
 letter-spacing: 0.02em;
}
.service-body .price {
 font-family: "Barlow Condensed", sans-serif;
 font-size: 16px;
 color: var(--red);
 font-weight: 700;
 letter-spacing: 0.05em;
 margin-bottom: 18px;
}
.service-body .price .num {
 font-size: 26px;
 font-weight: 800;
}
.service-body p {
 font-size: 18px;
 color: var(--text-sub);
 line-height: 1.9;
 margin-bottom: 24px;
 flex: 1;
}
.service-body .more {
 color: var(--red);
 text-decoration: none;
 font-weight: 700;
 font-size: 16px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 align-self: flex-start;
 transition: gap 0.2s;
}
.service-body .more:hover {
 gap: 14px;
}

/* ============ FLEET ============ */
.fleet {
 background: var(--dark);
 color: #fff;
 padding: 100px 40px;
 position: relative;
 overflow: hidden;
}
.fleet::before {
 content: "";
 position: absolute;
 inset: 0;
 background-image:
  linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
 background-size: 50px 50px;
}
.fleet-inner {
 max-width: 1200px;
 margin: 0 auto;
 position: relative;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 80px;
 align-items: center;
}
.fleet-image {
 aspect-ratio: 4 / 3;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.1);
}
.fleet-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.fleet-content .section-eyebrow {
 color: var(--orange);
}
.fleet-content .section-title {
 color: #fff;
 text-align: left;
}
.fleet-content .section-head {
 text-align: left;
 margin-bottom: 32px;
}
.fleet-content p {
 font-size: 18px;
 color: rgba(255, 255, 255, 0.78);
 line-height: 2;
 margin-bottom: 28px;
}
.fleet-features {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
 margin-bottom: 36px;
}
.fleet-feat {
 background: rgba(255, 255, 255, 0.04);
 border-left: 3px solid var(--orange);
 padding: 18px 20px;
 font-size: 16px;
 line-height: 1.6;
}
.fleet-feat strong {
 display: block;
 color: var(--orange);
 font-size: 13px;
 font-weight: 800;
 letter-spacing: 0.1em;
 margin-bottom: 6px;
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
}

/* ============ SHOP/STAFF ============ */
.shop {
 padding: 100px 40px;
 background: var(--bg-warm);
}
.shop-inner {
 max-width: 1320px;
 margin: 0 auto;
}
.shop-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 60px;
 align-items: center;
 margin-bottom: 80px;
}
.shop-image {
 aspect-ratio: 4 / 3;
 overflow: hidden;
 box-shadow: var(--shadow);
}
.shop-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.shop-content .section-eyebrow,
.shop-content .section-title {
 text-align: left;
}
.shop-content .section-head {
 text-align: left;
 margin-bottom: 28px;
}
.shop-content p {
 font-size: 18px;
 line-height: 2;
 color: var(--text-sub);
 margin-bottom: 16px;
}
.shop-staff {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
.staff-card {
 background: #fff;
 text-align: center;
 border: 1px solid var(--border);
 overflow: hidden;
}
.staff-photo {
 aspect-ratio: 1 / 1;
 overflow: hidden;
}
.staff-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.staff-info {
 padding: 22px 16px;
}
.staff-info .role {
 font-size: 12px;
 color: var(--red);
 font-weight: 700;
 letter-spacing: 0.1em;
 margin-bottom: 6px;
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
}
.staff-info .name {
 font-size: 18px;
 font-weight: 900;
 margin-bottom: 4px;
}
.staff-info .qual {
 font-size: 13px;
 color: var(--text-sub);
}

/* ============ FLOW ============ */
.flow {
 padding: 100px 40px;
 max-width: 1320px;
 margin: 0 auto;
}
.flow-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 position: relative;
}
.flow-step {
 background: #fff;
 border: 1px solid var(--border);
 padding: 32px 28px;
 text-align: center;
 position: relative;
}
.flow-step .step-num {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-size: 14px;
 font-weight: 800;
 color: var(--red);
 letter-spacing: 0.2em;
 margin-bottom: 12px;
}
.flow-step .step-icon {
 width: 64px;
 height: 64px;
 background: var(--bg-gray);
 border-radius: 50%;
 margin: 0 auto 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 28px;
}
.flow-step h4 {
 font-size: 19px;
 font-weight: 900;
 margin-bottom: 10px;
}
.flow-step p {
 font-size: 16px;
 color: var(--text-sub);
 line-height: 1.7;
}
.flow-step:not(:last-child)::after {
 content: "▶";
 position: absolute;
 right: -18px;
 top: 50%;
 transform: translateY(-50%);
 color: var(--red);
 font-size: 16px;
 z-index: 2;
}

/* ============ CTA BIG ============ */
.cta-big {
 background: var(--red);
 padding: 80px 40px;
 color: #fff;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.cta-big::before {
 content: "CONTACT";
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-size: 280px;
 font-weight: 800;
 color: rgba(255, 255, 255, 0.08);
 letter-spacing: -0.02em;
 z-index: 0;
 line-height: 1;
 pointer-events: none;
 white-space: nowrap;
}
.cta-big-inner {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.cta-big h2 {
 font-size: clamp(28px, 4vw, 44px);
 font-weight: 900;
 margin-bottom: 18px;
 line-height: 1.4;
}
.cta-big p {
 font-size: 18px;
 line-height: 2;
 margin-bottom: 36px;
 opacity: 0.95;
}
.cta-big-actions {
 display: flex;
 gap: 20px;
 justify-content: center;
 flex-wrap: wrap;
 align-items: center;
}
.cta-tel {
 background: #fff;
 color: var(--text);
 padding: 16px 36px;
 text-decoration: none;
 display: inline-flex;
 flex-direction: column;
 align-items: center;
 gap: 4px;
 transition: transform 0.2s;
}
.cta-tel:hover {
 transform: translateY(-3px);
}
.cta-tel .lbl {
 font-size: 12px;
 color: var(--red);
 font-weight: 700;
 letter-spacing: 0.1em;
}
.cta-tel .num {
 font-family: "Barlow Condensed", sans-serif;
 font-size: 34px;
 font-weight: 800;
 color: var(--text);
 letter-spacing: 0.02em;
}
.btn-white-outline {
 background: transparent;
 color: #fff;
 border: 2px solid #fff;
 padding: 20px 40px;
 text-decoration: none;
 font-weight: 700;
 font-size: 18px;
 transition:
  background 0.2s,
  color 0.2s;
 display: inline-flex;
 align-items: center;
 gap: 10px;
}
.btn-white-outline:hover {
 background: #fff;
 color: var(--red);
}

/* ============ CONTACT FORM ============ */
.contact-form {
 padding: 100px 40px;
 max-width: 980px;
 margin: 0 auto;
}
.form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 28px 32px;
 margin-bottom: 32px;
}
.form-group {
 display: flex;
 flex-direction: column;
}
.form-group.full {
 grid-column: 1 / -1;
}
.form-label {
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 10px;
 display: flex;
 align-items: center;
 gap: 10px;
}
.form-label .req {
 background: var(--red);
 color: #fff;
 font-size: 11px;
 font-weight: 700;
 padding: 2px 8px;
 letter-spacing: 0.05em;
}
.form-label .opt {
 background: var(--text-mute);
 color: #fff;
 font-size: 11px;
 font-weight: 700;
 padding: 2px 8px;
 letter-spacing: 0.05em;
}
.form-input,
.form-select,
.form-textarea {
 background: var(--bg-warm);
 border: 2px solid var(--border);
 padding: 16px 18px;
 font-family: inherit;
 font-size: 17px;
 color: var(--text);
 width: 100%;
 transition:
  border-color 0.2s,
  background 0.2s;
 -webkit-appearance: none;
 appearance: none;
 border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
 outline: none;
 border-color: var(--red);
 background: #fff;
}
.form-textarea {
 resize: vertical;
 min-height: 160px;
 line-height: 1.7;
}
.form-select {
 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C8201E' d='M6 8L0 0h12z'/></svg>");
 background-repeat: no-repeat;
 background-position: right 18px center;
 padding-right: 48px;
}
.form-checkbox {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 16px;
 color: var(--text-sub);
 margin-bottom: 24px;
 cursor: pointer;
}
.form-checkbox input {
 width: 20px;
 height: 20px;
 accent-color: var(--red);
}
.form-checkbox a {
 color: var(--red);
 text-decoration: underline;
}
.form-submit {
 text-align: center;
}
.btn-submit {
 background: var(--red);
 color: #fff;
 border: none;
 font-family: inherit;
 font-size: 19px;
 font-weight: 700;
 padding: 22px 60px;
 letter-spacing: 0.05em;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 gap: 12px;
 transition:
  background 0.2s,
  transform 0.2s;
}
.btn-submit:hover {
 background: var(--red-dark);
 transform: translateY(-3px);
}
.btn-submit::after {
 content: "→";
 font-family: "Barlow Condensed", sans-serif;
 font-size: 24px;
}

/* ============ ACCESS ============ */
.access {
 padding: 100px 40px;
 max-width: 1320px;
 margin: 0 auto;
}
.access-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
}
.access-info {
 background: var(--bg-warm);
 padding: 40px;
}
.access-info h3 {
 font-size: 24px;
 font-weight: 900;
 margin-bottom: 24px;
 border-bottom: 2px solid var(--red);
 padding-bottom: 14px;
}
.access-table {
 width: 100%;
 border-collapse: collapse;
 margin-bottom: 24px;
}
.access-table th,
.access-table td {
 padding: 16px 0;
 text-align: left;
 border-bottom: 1px solid var(--border);
 font-size: 16px;
 line-height: 1.7;
}
.access-table th {
 width: 130px;
 color: var(--red);
 font-weight: 700;
 font-size: 14px;
 letter-spacing: 0.05em;
}
.access-map {
 aspect-ratio: 3 / 4;
 overflow: hidden;
 border: 1px solid var(--border);
}
.access-map iframe {
 width: 100%;
 height: 100%;
 border: 0;
 display: block;
}
.access-link {
 margin-top: 16px;
 text-align: right;
}
.access-link a {
 color: var(--red);
 text-decoration: none;
 font-size: 14px;
 font-weight: 700;
 display: inline-flex;
 align-items: center;
 gap: 6px;
}
.access-link a:hover {
 text-decoration: underline;
}

/* ============ FOOTER ============ */
footer {
 background: var(--dark);
 color: rgba(255, 255, 255, 0.7);
 padding: 60px 40px 30px;
 position: relative;
}
.footer-inner {
 max-width: 1320px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 60px;
 margin-bottom: 50px;
}
.footer-brand .logo .brand-en {
 font-size: 36px;
}
.footer-brand .logo .brand-en-sub {
 font-size: 14px;
}
.footer-brand .logo .logo-mark {
 width: 60px;
 height: 60px;
 font-size: 32px;
}
.footer-brand .logo .logo-text {
 height: 60px;
}
.footer-brand p {
 font-size: 15px;
 line-height: 1.9;
 margin-top: 20px;
}
.footer-col h4 {
 color: var(--orange);
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-size: 17px;
 letter-spacing: 0.2em;
 margin-bottom: 18px;
 font-weight: 800;
}
.footer-col ul {
 list-style: none;
}
.footer-col li {
 margin-bottom: 10px;
}
.footer-col a {
 color: rgba(255, 255, 255, 0.7);
 text-decoration: none;
 font-size: 15px;
 transition: color 0.2s;
}
.footer-col a:hover {
 color: #fff;
}
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 24px;
 display: flex;
 justify-content: space-between;
 font-size: 13px;
}

/* ============ SAMPLE NOTICE (subtle, bottom right) ============ */
.sample-notice {
 position: absolute;
 bottom: 8px;
 right: 16px;
 color: rgba(255, 255, 255, 0.35);
 font-size: 11px;
 letter-spacing: 0.05em;
 pointer-events: none;
}

/* ============ ANIMATIONS ============ */
/* スクロール演出（.reveal / カウントアップ等）は effects.css に移動しました。
   index.html での読み込み順は  style.css → effects.css  にしてください。 */

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
 body {
  font-size: 17px;
 }
 .infobar {
  padding: 8px 16px;
  font-size: 12px;
 }
 .infobar .right {
  display: none;
 }
 header {
  padding: 12px 16px;
  flex-wrap: wrap;
  gap: 12px;
 }
 nav.main-nav {
  display: none;
 }
 .header-cta {
  width: 100%;
  justify-content: space-between;
 }
 .tel-block .num {
  font-size: 24px;
 }
 .brand-en {
  font-size: 32px;
 }
 .brand-en-sub {
  font-size: 13px;
 }
 .logo-mark {
  width: 56px;
  height: 56px;
  font-size: 30px;
 }
 .logo-text {
  height: 56px;
 }
 .logo {
  gap: 12px;
 }

 /* === HERO SP: FV画像をヘッダー直下・全幅に === */
 .hero {
  padding: 0;
 }
 .hero::before {
  display: none;
 }
 .hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
 }

 /* HTML上はcontent→imageの順だがSPでは画像を先に表示 */
 .hero-image {
  order: -1;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
 }
 .hero-content {
  order: 0;
  padding: 32px 20px 52px;
 }

 .hero h1 {
  font-size: 30px;
 }
 .hero p.lead {
  font-size: 17px;
 }
 .hero-image-badge {
  padding: 12px 16px;
  gap: 10px;
 }
 .hero-image-badge .num {
  font-size: 34px;
 }

 section.block,
 .worries,
 .fleet,
 .shop,
 .flow,
 .access,
 .cta-big,
 .numbers-bar,
 .contact-form {
  padding: 60px 20px;
 }

 .trust-grid {
  grid-template-columns: 1fr;
  gap: 32px;
 }
 .trust-item {
  border-right: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
 }
 .trust-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
 }

 .numbers-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
 }
 .num-card .stat {
  font-size: 48px;
 }

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

 .fleet-inner {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 .fleet-features {
  grid-template-columns: 1fr;
 }

 .shop-grid {
  grid-template-columns: 1fr;
 }
 .shop-staff {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
 }

 /* === FLOW: 1列の縦積みに変更（横幅フルで読みやすく） === */
 .flow-grid {
  grid-template-columns: 1fr;
  gap: 16px;
 }
 .flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 24px;
 }
 .flow-step .step-icon {
  margin: 0;
  width: 56px;
  height: 56px;
  font-size: 24px;
 }
 .flow-step .step-text {
  grid-column: 2;
 }
 .flow-step .step-num {
  grid-column: 2;
  margin-bottom: 4px;
  text-align: left;
 }
 .flow-step h4 {
  grid-column: 2;
  text-align: left;
  margin-bottom: 6px;
  font-size: 18px;
 }
 .flow-step p {
  grid-column: 2;
  text-align: left;
  font-size: 15px;
 }
 .flow-step:not(:last-child)::after {
  content: "▼";
  position: absolute;
  right: 50%;
  top: auto;
  bottom: -14px;
  transform: translateX(50%);
  color: var(--red);
  font-size: 14px;
 }

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

 .form-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }

 .footer-inner {
  grid-template-columns: 1fr;
  gap: 32px;
 }
 .footer-bottom {
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding-bottom: 20px;
 }

 .sample-notice {
  bottom: 6px;
  right: 12px;
  font-size: 10px;
 }

 .worry-card {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
 }
 .worry-mark {
  width: 44px;
  height: 44px;
  font-size: 22px;
 }
 .worry-q {
  font-size: 18px;
 }
 .worry-a {
  padding-left: 0;
  font-size: 16px;
 }
 .worry-a::before {
  position: static;
  display: inline-block;
  margin-right: 8px;
 }
}

/* =========================================================
   SUB PAGE ｜ 下層ページ共通スタイル
   プライバシーポリシー等のテキスト系ページで使用します。
   （新しい下層ページを作る時もこのスタイルを使い回せます）
   ========================================================= */

/* --- ページ見出し（ダーク帯） --- */
.page-header {
 background: var(--dark);
 color: #fff;
 padding: 66px 40px;
 position: relative;
 overflow: hidden;
}
/* 背景の大きな英字。data-bg 属性の文字が出ます */
.page-header::before {
 content: attr(data-bg);
 position: absolute;
 top: 50%;
 right: 40px;
 transform: translateY(-50%);
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-size: 190px;
 font-weight: 800;
 color: rgba(255, 255, 255, 0.045);
 letter-spacing: -0.02em;
 line-height: 1;
 pointer-events: none;
 white-space: nowrap;
}
.page-header-inner {
 max-width: 1320px;
 margin: 0 auto;
 position: relative;
}
.page-header .eyebrow {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 color: var(--orange);
 font-size: 18px;
 font-weight: 800;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 margin-bottom: 12px;
}
.page-header h1 {
 font-size: clamp(28px, 4vw, 42px);
 font-weight: 900;
 line-height: 1.4;
 letter-spacing: 0.02em;
}

/* --- パンくずリスト --- */
.breadcrumb {
 background: var(--bg-gray);
 padding: 14px 40px;
 font-size: 13px;
}
.breadcrumb ol {
 max-width: 1320px;
 margin: 0 auto;
 list-style: none;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
}
.breadcrumb a {
 color: var(--text-sub);
 text-decoration: none;
}
.breadcrumb a:hover {
 color: var(--red);
 text-decoration: underline;
}
.breadcrumb li:not(:last-child)::after {
 content: "›";
 margin: 0 8px;
 color: var(--text-mute);
}
.breadcrumb li[aria-current] {
 color: var(--red);
 font-weight: 700;
}

/* --- 本文（テキストページ共通） --- */
.legal {
 max-width: 880px;
 margin: 0 auto;
 padding: 80px 40px 100px;
}
.legal-lead {
 font-size: 17px;
 line-height: 2;
 color: var(--text-sub);
}
.legal-block {
 padding: 36px 0;
 border-bottom: 1px solid var(--border);
}
.legal-block:last-of-type {
 border-bottom: none;
}
.legal-num {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-weight: 800;
 color: var(--red);
 font-size: 15px;
 letter-spacing: 0.12em;
 margin-bottom: 6px;
}
.legal-block h2 {
 font-size: 22px;
 font-weight: 900;
 line-height: 1.5;
 letter-spacing: 0.02em;
 margin-bottom: 16px;
 padding-left: 16px;
 border-left: 4px solid var(--red);
}
.legal-block p {
 font-size: 16px;
 line-height: 1.95;
 color: var(--text-sub);
 margin-bottom: 14px;
}
.legal-block p:last-child {
 margin-bottom: 0;
}
.legal-block a {
 color: var(--red);
}
.legal-note {
 font-size: 14px;
 color: var(--text-mute);
 line-height: 1.8;
 background: var(--bg-warm);
 border-left: 3px solid var(--orange);
 padding: 12px 16px;
 margin-top: 14px;
}

/* 箇条書き（オレンジの四角マーカー） */
.legal-list {
 list-style: none;
 margin: 8px 0 14px;
}
.legal-list li {
 position: relative;
 padding-left: 22px;
 font-size: 16px;
 line-height: 1.9;
 color: var(--text-sub);
 margin-bottom: 6px;
}
.legal-list li:last-child {
 margin-bottom: 0;
}
.legal-list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 12px;
 width: 8px;
 height: 8px;
 background: var(--orange);
}

/* お問い合わせ窓口ボックス */
.legal-contact {
 background: var(--bg-warm);
 border: 1px solid var(--border);
 border-top: 4px solid var(--red);
 padding: 28px 32px;
 margin-top: 8px;
}
.legal-contact dl {
 display: grid;
 grid-template-columns: 130px 1fr;
 gap: 12px 16px;
 margin: 0;
}
.legal-contact dt {
 font-weight: 700;
 color: var(--red);
 font-size: 15px;
}
.legal-contact dd {
 margin: 0;
 color: var(--text-sub);
 font-size: 15px;
 line-height: 1.7;
}

/* 制定日・改定日 */
.legal-date {
 text-align: right;
 font-size: 14px;
 color: var(--text-mute);
 margin-top: 44px;
 line-height: 1.9;
}

/* --- 下層ページ レスポンシブ --- */
@media (max-width: 900px) {
 .page-header {
  padding: 44px 20px;
 }
 .page-header::before {
  font-size: 104px;
  right: 12px;
 }
 .breadcrumb {
  padding: 12px 20px;
 }
 .legal {
  padding: 48px 20px 64px;
 }
 .legal-block {
  padding: 30px 0;
 }
 .legal-block h2 {
  font-size: 19px;
 }
 .legal-contact {
  padding: 22px 20px;
 }
 .legal-contact dl {
  grid-template-columns: 1fr;
  gap: 2px 0;
 }
 .legal-contact dt {
  margin-top: 10px;
 }
 .legal-contact dt:first-child {
  margin-top: 0;
 }
}

/* =========================================================
   RECRUIT ｜ 採用情報ページ用スタイル
   ========================================================= */

/* --- 募集職種カード --- */
.job-cards {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
 margin: 10px 0 4px;
}
.job-card {
 background: #fff;
 border: 1px solid var(--border);
 border-top: 4px solid var(--red);
 padding: 26px 24px;
}
.job-card .tags {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 margin-bottom: 14px;
}
.job-card .tag {
 font-size: 12px;
 font-weight: 700;
 padding: 4px 11px;
 background: var(--bg-warm);
 color: var(--text-sub);
 border: 1px solid var(--border);
}
.job-card .tag.is-primary {
 background: var(--red);
 color: #fff;
 border-color: var(--red);
}
.job-card h3 {
 font-size: 20px;
 font-weight: 900;
 margin-bottom: 10px;
}
.job-card p {
 font-size: 15px;
 line-height: 1.85;
 color: var(--text-sub);
}

/* --- 募集要項テーブル（職種名バー＋定義リスト） --- */
.spec-title {
 background: var(--dark);
 color: #fff;
 font-size: 17px;
 font-weight: 800;
 padding: 14px 20px;
 margin-top: 10px;
}
.spec-title .sub {
 font-size: 13px;
 font-weight: 500;
 color: var(--orange);
 margin-left: 10px;
}
.spec-table {
 margin: 0 0 4px;
}
.spec-table .row {
 display: grid;
 grid-template-columns: 160px 1fr;
 border-bottom: 1px solid var(--border);
}
.spec-table dt {
 background: var(--bg-warm);
 padding: 16px 20px;
 font-weight: 700;
 font-size: 15px;
 color: var(--text);
}
.spec-table dd {
 margin: 0;
 padding: 16px 20px;
 font-size: 15px;
 line-height: 1.85;
 color: var(--text-sub);
}
.spec-table dd ul {
 list-style: none;
 margin: 0;
}
.spec-table dd li {
 position: relative;
 padding-left: 18px;
 margin-bottom: 5px;
}
.spec-table dd li:last-child {
 margin-bottom: 0;
}
.spec-table dd li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 10px;
 width: 6px;
 height: 6px;
 background: var(--orange);
}

/* --- 応募の流れ（縦並びステップ） --- */
.flow-mini {
 list-style: none;
 counter-reset: fm;
 margin: 12px 0 4px;
}
.flow-mini li {
 position: relative;
 counter-increment: fm;
 padding: 0 0 28px 58px;
}
.flow-mini li:last-child {
 padding-bottom: 0;
}
.flow-mini li:not(:last-child)::after {
 content: "";
 position: absolute;
 left: 19px;
 top: 44px;
 bottom: 4px;
 width: 2px;
 background: var(--border);
}
.flow-mini li::before {
 content: counter(fm);
 position: absolute;
 left: 0;
 top: 0;
 width: 40px;
 height: 40px;
 background: var(--red);
 color: #fff;
 font-family: "Barlow Condensed", sans-serif;
 font-weight: 800;
 font-size: 21px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.flow-mini h3 {
 font-size: 17px;
 font-weight: 800;
 margin-bottom: 5px;
 padding-top: 7px;
}
.flow-mini p {
 font-size: 15px;
 line-height: 1.8;
 color: var(--text-sub);
}

/* --- 本文中のボタン --- */
.legal-btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: var(--red);
 color: #fff !important;
 text-decoration: none;
 font-weight: 700;
 font-size: 16px;
 padding: 15px 32px;
 margin-top: 18px;
 transition: background 0.2s;
}
.legal-btn:hover {
 background: var(--red-dark);
}

/* =========================================================
   SITEMAP ｜ サイトマップページ用スタイル
   ========================================================= */
.sitemap-group {
 padding: 30px 0;
 border-bottom: 1px solid var(--border);
}
.sitemap-group:last-child {
 border-bottom: none;
}
.sitemap-group > h2 {
 font-family: "Barlow Condensed", sans-serif;
 font-style: italic;
 font-weight: 800;
 font-size: 16px;
 letter-spacing: 0.12em;
 color: var(--red);
 margin-bottom: 14px;
}
.sitemap-list {
 list-style: none;
}
.sitemap-list > li {
 margin-bottom: 4px;
}
.sitemap-list > li > a {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 font-size: 18px;
 font-weight: 800;
 color: var(--text);
 text-decoration: none;
 padding: 8px 0;
}
.sitemap-list > li > a::before {
 content: "";
 width: 14px;
 height: 14px;
 background: var(--red);
 flex-shrink: 0;
}
.sitemap-list > li > a:hover {
 color: var(--red);
}
.sitemap-sub {
 list-style: none;
 margin: 2px 0 16px 6px;
 padding-left: 24px;
 border-left: 2px solid var(--border);
}
.sitemap-sub a {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 15px;
 color: var(--text-sub);
 text-decoration: none;
 padding: 6px 0;
}
.sitemap-sub a::before {
 content: "›";
 color: var(--red);
 font-weight: 800;
}
.sitemap-sub a:hover {
 color: var(--red);
 text-decoration: underline;
}

/* --- 採用・サイトマップ レスポンシブ --- */
@media (max-width: 900px) {
 .job-cards {
  grid-template-columns: 1fr;
  gap: 14px;
 }
 .spec-table .row {
  grid-template-columns: 1fr;
 }
 .spec-table dt {
  padding: 12px 16px 6px;
 }
 .spec-table dd {
  padding: 10px 16px 14px;
 }
 .flow-mini li {
  padding-left: 52px;
 }
 .sitemap-list > li > a {
  font-size: 16px;
 }
}
