*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #FBF6EE;
  --cream2:   #F5EDE0;
  --warm:     #E8C9A0;
  --orange:   #D97B3A;
  --orange2:  #C26528;
  --orange-pale: #FDF0E4;
  --brown:    #7A4F2D;
  --brown-dark: #3D2410;
  --sage:     #8FA882;
  --sage-pale:#EEF4EB;
  --sage-dark:#5C7A52;
  --text:     #2C1A0E;
  --gray:     #8A7869;
  --border:   #E8D9C8;
  --white:    #FFFCF8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── GRAIN TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ─── MOCK BANNER ─── */
.mock-bar {
  background: var(--brown-dark); color: rgba(255,255,255,0.65);
  text-align: center; padding: 9px 20px;
  font-size: 11px; letter-spacing: 0.15em;
  position: relative; z-index: 999;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,238,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 18px;
  box-shadow: 0 2px 8px rgba(217,123,58,0.3);
}
.logo-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 17px; font-weight: 600; color: var(--brown-dark);
  line-height: 1.2;
}
.logo-text small {
  display: block; font-size: 10px; color: var(--gray);
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 13px; color: var(--gray); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--orange); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-tel {
  font-size: 13px; color: var(--brown); font-weight: 500;
  text-decoration: none; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 5px;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 68px);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 55% 45%;
}

/* Left panel */
.hero-left {
  padding: 80px 64px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

/* Decorative circle */
.hero-left::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,160,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 32px; height: 2px; background: var(--orange); border-radius: 2px;
}
.eyebrow-text {
  font-size: 11px; letter-spacing: 0.2em; color: var(--orange);
  font-weight: 500; text-transform: uppercase;
}

.hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.6;
  color: var(--brown-dark); margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.hero-title .accent {
  color: var(--orange); position: relative; display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px;
  background: var(--orange-pale);
  z-index: -1; border-radius: 2px;
}

.hero-body {
  font-size: 15px; line-height: 2; color: var(--gray);
  max-width: 420px; margin-bottom: 44px;
}

.hero-ctas {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 380px;
}
.cta-main {
  background: #06C755; color: white; border: none;
  padding: 18px 32px; border-radius: 14px;
  font-size: 16px; font-family: inherit; font-weight: 600;
  cursor: pointer; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(6,199,85,0.3);
  transition: all 0.25s;
}
.cta-main:hover { background: #05b34a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(6,199,85,0.4); }
.cta-sub-row { display: flex; gap: 12px; }
.cta-sub {
  flex: 1; background: var(--white); color: var(--orange2);
  border: 1.5px solid var(--warm); border-radius: 12px;
  padding: 14px 20px; font-size: 14px; font-family: inherit;
  font-weight: 500; cursor: pointer; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.cta-sub:hover { background: var(--orange-pale); border-color: var(--orange); transform: translateY(-1px); }
.cta-note {
  font-size: 11px; color: var(--gray); text-align: center;
  letter-spacing: 0.05em;
}

/* Trust badges */
.trust-row {
  display: flex; gap: 20px; margin-top: 48px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.trust-label { font-size: 11px; color: var(--gray); line-height: 1.5; }
.trust-label strong { display: block; font-size: 14px; color: var(--brown-dark); font-weight: 600; }

/* Right panel */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--cream2);
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,201,160,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(143,168,130,0.25) 0%, transparent 50%);
}

/* Big illustrative text */
.hero-big-word {
  position: absolute; bottom: -20px; right: -30px;
  font-family: 'DM Serif Display', serif;
  font-size: 200px; line-height: 1;
  color: rgba(122,79,45,0.06);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.hero-cards-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  padding: 60px 40px;
}

.h-card {
  background: var(--white); border-radius: 20px;
  padding: 24px 28px; width: 100%;
  box-shadow: 0 4px 24px rgba(122,79,45,0.08);
  border: 1px solid rgba(232,201,160,0.5);
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.h-card:hover { transform: translateX(-4px); }
.h-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 5px; background: var(--orange);
  border-radius: 0;
}
.h-card.sage::before { background: var(--sage-dark); }

.h-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.h-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.h-card.sage .h-card-icon { background: var(--sage-pale); }
.h-card-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px; font-weight: 600; color: var(--brown-dark);
}
.h-card-tag {
  margin-left: auto; font-size: 10px;
  background: var(--orange-pale); color: var(--orange2);
  border: 1px solid rgba(217,123,58,0.25);
  border-radius: 20px; padding: 3px 10px; letter-spacing: 0.05em; font-weight: 500;
}
.h-card.sage .h-card-tag { background: var(--sage-pale); color: var(--sage-dark); border-color: rgba(92,122,82,0.25); }
.h-card-body { font-size: 12px; color: var(--gray); line-height: 1.75; }

/* Free badge */
.free-badge {
  position: absolute; top: 24px; right: 24px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 8px; font-weight: 600; letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(217,123,58,0.45);
  animation: wobble 4s ease-in-out infinite;
}
.free-badge strong { font-size: 20px; font-weight: 700; line-height: 1; }
@keyframes wobble {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-4px); }
}

/* ─── SECTION BASE ─── */
.section { padding: 100px 80px; position: relative; z-index: 1; }
.s-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; color: var(--orange);
  font-weight: 600; text-transform: uppercase; margin-bottom: 14px;
}
.s-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.s-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; line-height: 1.55; color: var(--brown-dark);
  margin-bottom: 16px; letter-spacing: 0.03em;
}
.s-desc {
  font-size: 15px; color: var(--gray); line-height: 1.9;
}

/* ─── RECRUIT ─── */
.recruit { background: var(--white); }

.recruit-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 56px;
}

/* Left: big statement */
.recruit-left { }

.recruit-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 36px 0;
}
.r-stat {
  background: var(--orange-pale); border-radius: 16px;
  padding: 22px 20px; border: 1px solid rgba(217,123,58,0.2);
}
.r-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px; color: var(--orange2); line-height: 1;
  margin-bottom: 6px;
}
.r-stat-num span { font-size: 16px; }
.r-stat-label { font-size: 12px; color: var(--gray); line-height: 1.5; }

.recruit-promise {
  background: var(--sage-pale); border-radius: 16px;
  padding: 24px 24px; border: 1px solid rgba(92,122,82,0.2);
}
.recruit-promise p {
  font-size: 13px; color: var(--sage-dark); line-height: 1.9;
}
.recruit-promise strong { display: block; font-size: 15px; color: var(--brown-dark); margin-bottom: 8px; font-weight: 600; }

/* Right: job cards */
.recruit-right { display: flex; flex-direction: column; gap: 16px; }

.job-card {
  background: var(--cream); border-radius: 18px;
  border: 1.5px solid var(--border); overflow: hidden;
  transition: all 0.25s; cursor: pointer;
}
.job-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(217,123,58,0.12); transform: translateY(-2px); }

.job-card-top {
  padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 16px;
}
.job-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-pale); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.job-card-info { flex: 1; }
.job-type-badge {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; padding: 3px 10px; border-radius: 4px;
  margin-bottom: 6px;
}
.badge-full { background: var(--orange); color: white; }
.badge-part { background: var(--sage-dark); color: white; }
.job-title-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px; font-weight: 600; color: var(--brown-dark);
  margin-bottom: 6px;
}
.job-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-size: 11px; padding: 2px 9px; border-radius: 4px;
  background: var(--white); color: var(--gray);
  border: 1px solid var(--border);
}
.job-card-foot {
  padding: 14px 28px;
  background: rgba(217,123,58,0.04);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.job-card-foot span { font-size: 12px; color: var(--gray); }
.job-card-foot .arrow { color: var(--orange); font-size: 20px; }

.recruit-cta {
  background: var(--brown-dark); color: white; border: none;
  width: 100%; padding: 18px; border-radius: 14px;
  font-size: 15px; font-family: inherit; font-weight: 600;
  cursor: pointer; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s;
}
.recruit-cta:hover { background: var(--brown); transform: translateY(-1px); }

.contact-wrap {
  background: var(--cream2); padding: 100px 80px;
  position: relative; z-index: 1; overflow: hidden;
}
.contact-wrap::before {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,160,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.contact-wrap::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,168,130,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.contact-left { }
.contact-visual {
  position: relative;
}
.contact-bubble {
  background: var(--white); border-radius: 24px 24px 24px 4px;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(122,79,45,0.1);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  max-width: 360px;
}
.bubble-name {
  font-size: 11px; color: var(--orange); font-weight: 600;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.bubble-text {
  font-size: 14px; color: var(--brown-dark); line-height: 1.8;
}
.contact-bubble.reply {
  border-radius: 24px 24px 4px 24px;
  background: var(--orange-pale);
  margin-left: auto; border-color: rgba(217,123,58,0.2);
}
.contact-bubble.reply .bubble-name { color: var(--sage-dark); }

.contact-right { display: flex; flex-direction: column; gap: 20px; }


.tel-card {
  background: var(--white); border-radius: 20px;
  padding: 28px 32px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 20px;
}
.tel-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.tel-info { flex: 1; }
.tel-label { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 4px; }
.tel-number {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--brown-dark); letter-spacing: 0.05em;
}
.tel-hours { font-size: 11px; color: var(--gray); margin-top: 4px; }
.tel-call-btn {
  background: var(--orange); color: white; border: none;
  padding: 12px 20px; border-radius: 10px;
  font-size: 13px; font-family: inherit; font-weight: 600;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.05em;
}
.tel-call-btn:hover { background: var(--orange2); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--brown-dark); color: rgba(255,255,255,0.65);
  padding: 60px 80px 36px; position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.f-logo {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.f-desc { font-size: 13px; line-height: 1.85; margin-bottom: 20px; }
.f-tel {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: rgba(255,255,255,0.9); letter-spacing: 0.05em;
}
.f-tel small { font-family: 'Noto Sans JP', sans-serif; font-size: 10px; display: block; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-bottom: 4px; }
.f-col h4 { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); }

/* ─── FIXED LINE BUTTON ─── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(3deg); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.eyebrow       { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.2s; }
.hero-body     { animation-delay: 0.3s; }
.hero-ctas     { animation-delay: 0.4s; }
.trust-row     { animation-delay: 0.55s; }
.h-card:nth-child(1) { animation: fadeUp 0.6s 0.3s ease both; }
.h-card:nth-child(2) { animation: fadeUp 0.6s 0.5s ease both; }
.h-card:nth-child(3) { animation: fadeUp 0.6s 0.7s ease both; }

/* ─── TAXI ─── */
.taxi { background: var(--cream2); }

.taxi-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 56px;
}

.taxi-intro-box {
  background: var(--orange); color: white;
  border-radius: 20px; padding: 36px 36px;
  margin-bottom: 24px; position: relative; overflow: hidden;
}
.taxi-intro-box::before {
  content: '🚗';
  position: absolute; right: 24px; bottom: -10px;
  font-size: 96px; opacity: 0.15; line-height: 1;
}
.taxi-intro-label {
  font-size: 10px; letter-spacing: 0.18em; opacity: 0.75;
  margin-bottom: 10px; font-weight: 500;
}
.taxi-intro-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px; font-weight: 700; line-height: 1.55;
  margin-bottom: 12px;
}
.taxi-intro-body { font-size: 13px; opacity: 0.88; line-height: 1.85; }

.taxi-note-box {
  background: var(--sage-pale); border-radius: 14px;
  padding: 20px 24px; border: 1px solid rgba(92,122,82,0.2);
}
.taxi-note-box p { font-size: 13px; color: var(--sage-dark); line-height: 1.85; }
.taxi-note-box strong { color: var(--brown-dark); }

/* Tables */
.fare-tables { display: flex; flex-direction: column; gap: 24px; }

.fare-card {
  background: var(--white); border-radius: 20px;
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: 0 2px 12px rgba(122,79,45,0.05);
}

.fare-card-head {
  padding: 18px 28px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.fare-card-head.orange { background: var(--orange-pale); }
.fare-card-head.sage   { background: var(--sage-pale); }
.fare-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.fare-card-head.orange .fare-card-icon { background: rgba(217,123,58,0.15); }
.fare-card-head.sage   .fare-card-icon { background: rgba(92,122,82,0.12); }
.fare-head-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px; font-weight: 700; color: var(--brown-dark);
  line-height: 1.3;
}
.fare-head-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }

.fare-table {
  width: 100%; border-collapse: collapse;
}
.fare-table tr { border-bottom: 1px solid var(--border); }
.fare-table tr:last-child { border-bottom: none; }
.fare-table td {
  padding: 14px 28px; font-size: 14px; color: var(--text);
  vertical-align: middle;
}
.fare-table td:first-child { color: var(--gray); font-size: 13px; width: 55%; }
.fare-table td:last-child {
  text-align: right; font-weight: 600;
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--orange2);
}
.fare-table tr.accent-row { background: rgba(217,123,58,0.04); }
.fare-table tr.accent-row td:last-child { color: var(--orange); }
.fare-table tr.sage-row { background: rgba(92,122,82,0.04); }
.fare-table tr.sage-row td:last-child { color: var(--sage-dark); font-size: 16px; }

.fare-addition {
  padding: 14px 28px; background: rgba(217,123,58,0.06);
  border-top: 1px dashed rgba(217,123,58,0.3);
  font-size: 13px; color: var(--orange2);
  display: flex; align-items: center; gap: 8px;
}
.fare-addition::before { content: '＋'; font-weight: 700; font-size: 16px; }

.fare-badge {
  display: inline-block; font-size: 10px; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: 4px; margin-left: 8px;
  background: var(--orange-pale); color: var(--orange2);
  border: 1px solid rgba(217,123,58,0.2); font-weight: 500;
  vertical-align: middle;
}
.fare-badge.sage { background: var(--sage-pale); color: var(--sage-dark); border-color: rgba(92,122,82,0.2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 28px; }
  .hero-right { min-height: 360px; }
  .section, .contact-wrap { padding: 64px 28px; }
  .recruit-layout, .contact-inner, .taxi-layout { grid-template-columns: 1fr; gap: 40px; }
  #disability > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr!important; }
  #disability > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr!important; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 28px 28px; }
}
