:root {
  --main: #2e8b3d;
  --main-dark: #1f6b34;
  --black: #111111;
  --accent: #f4c000;
  --accent-text: #111111;
  --text: #333333;
  --text-light: #777777;
  --border: #e0efe0;
  --bg-warm: #f2f9f2;
  --white: #ffffff;
  --font-heading: "Oswald", sans-serif;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 600;
  background: var(--main);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo-link { display: flex; align-items: baseline; gap: 10px; }
.logo-main {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.logo-main .accent { color: var(--accent); }
.logo-sub {
  font-size: 10px;
  color: #d9f0da;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { font-size: 13px; color: #fff; opacity: 0.9; font-family: var(--font-heading); letter-spacing: 0.03em; }
.header-nav a:hover { opacity: 1; }
.header-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.3); }
.header-cta {
  font-size: 12px;
  font-weight: 700;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--accent-text);
  white-space: nowrap;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.header-tel {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.header-right { display: flex; align-items: center; gap: 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 700;
}
.hamburger span { width: 24px; height: 2px; background: #fff; }

.mobile-menu {
  display: flex;
  position: fixed;
  top: 72px;
  right: 0;
  width: 260px;
  height: calc(100% - 72px);
  background: var(--white);
  z-index: 500;
  padding: 30px;
  flex-direction: column;
  gap: 22px;
  box-shadow: -2px 0 12px rgba(0,0,0,0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu a { font-size: 15px; color: var(--text); font-family: var(--font-heading); letter-spacing: 0.03em; }
.mobile-cta {
  background: var(--main);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-family: var(--font-heading);
}
.menu-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .header-nav, .header-divider, .header-cta, .header-tel { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 72px; padding: 0 20px; }
  .logo-main { font-size: 16px; }
  .logo-sub { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  padding: 56px 0 0;
  border-bottom: 1px solid var(--border);
}
.hero-inner { padding-bottom: 40px; }

.hero-photo {
  position: relative;
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--border);
  background-image: linear-gradient(90deg, rgba(15,40,20,0.86) 0%, rgba(15,40,20,0.55) 55%, rgba(15,40,20,0.2) 100%), url('images/garage-wide.jpg');
  background-size: cover;
  background-position: center;
}
.hero-photo .hero-title,
.hero-photo .hero-sub { color: #fff; }
.hero-photo .hero-sub { color: #d9e6da; }
.hero-photo .hero-eyebrow { color: var(--accent); }
.hero-photo .tag { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff; }
.hero-photo .btn-outline { border-color: #fff; color: #fff; }

@media (max-width: 900px) {
  .hero-photo { padding: 52px 0 40px; background-image: linear-gradient(180deg, rgba(15,40,20,0.55) 0%, rgba(15,40,20,0.85) 100%), url('images/garage-wide.jpg'); }
}

.appeal-card-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 14px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 18px;
}
.hero-title .accent { color: var(--main); }
.hero-sub {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 26px;
  max-width: 620px;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.btn-main { background: var(--accent); color: var(--accent-text); }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); clip-path: none; padding: 12.5px 26px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 16px;
  font-size: 12px;
  color: var(--text);
}

/* ---------- Service strip (icon band like the signage) ---------- */
.service-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-strip-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #dcecdc;
}
.service-strip-item:last-child { border-right: none; }
.service-strip-en {
  font-family: var(--font-heading);
  color: var(--main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.service-strip-jp { font-size: 11px; color: var(--text); }

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--main);
}
.stat-label { font-size: 11px; color: var(--text-light); margin-top: 4px; letter-spacing: 0.03em; }

/* ---------- Hook band ---------- */
.hook-band {
  background: var(--bg-warm);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hook-question {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.6;
}
.hook-answer {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Section common ---------- */
section { padding: 64px 0; }
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 36px;
}
.section-title.center { text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-warm);
  padding: 24px 18px;
  text-align: center;
}
.feature-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 6px;
}
.feature-label { font-size: 12px; color: var(--text); }

.appeal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.appeal-card {
  border-top: 3px solid var(--main);
  background: var(--bg-warm);
  padding: 26px 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.appeal-card.visible { opacity: 1; transform: none; }
.appeal-icon {
  font-family: var(--font-heading);
  color: var(--main);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 600;
}
.appeal-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.appeal-text { font-size: 13px; color: var(--text-light); line-height: 1.8; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  border: 1px solid var(--border);
  padding: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.review-card.visible { opacity: 1; transform: none; }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 13px; color: var(--text); line-height: 1.9; margin-bottom: 14px; }
.review-name { font-size: 12px; color: var(--text-light); text-align: right; font-family: var(--font-heading); }

.cta-section {
  background: var(--black);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-eyebrow { color: var(--accent); }
.cta-sub { font-size: 14px; margin-bottom: 26px; opacity: 0.85; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: var(--accent); color: #111; }
.btn-line-outline { border: 1.5px solid #fff; color: #fff; clip-path: none; padding: 12.5px 26px; }

.about-table { width: 100%; border-collapse: collapse; }
.about-table th, .about-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.about-table th { width: 180px; color: var(--text-light); font-weight: 500; background: var(--bg-warm); font-family: var(--font-heading); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--bg-warm);
  padding: 28px 26px;
}
.contact-info-card h3 { font-family: var(--font-heading); font-size: 17px; margin-bottom: 18px; }
.contact-info-row { display: flex; gap: 12px; font-size: 13px; margin-bottom: 14px; color: var(--text); }
.contact-info-row .k { color: var(--text-light); width: 70px; flex-shrink: 0; font-family: var(--font-heading); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.required-badge {
  background: var(--main);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin-left: 6px;
  font-family: var(--font-heading);
}
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; }
.form-success { text-align: center; padding: 40px 20px; }

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-size: 14px; font-weight: 500; display: flex; gap: 10px; }
.faq-q .q-mark { font-family: var(--font-heading); color: var(--main); }
.faq-a { font-size: 13px; color: var(--text-light); margin-top: 10px; line-height: 1.9; padding-left: 24px; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { min-width: 560px; width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 13px; text-align: left; }
.price-table th { background: var(--bg-warm); color: var(--text-light); font-weight: 500; font-family: var(--font-heading); }
.price-table .price { font-family: var(--font-heading); color: var(--main); font-weight: 600; }

footer { background: var(--black); color: #ccc; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-heading); color: #fff; font-size: 17px; margin-bottom: 10px; }
.footer-logo .accent { color: var(--accent); }
.footer-col h4 { color: #fff; font-size: 12px; margin-bottom: 14px; font-family: var(--font-heading); letter-spacing: 0.05em; }
.footer-col a { display: block; font-size: 13px; color: #aaa; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; font-size: 11px; text-align: center; color: #777; font-family: var(--font-heading); letter-spacing: 0.03em; }

.fade-up { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ---------- Mobile fixed CTA bar ---------- */
.mobile-fixed-cta { display: none; }
@media (max-width: 900px) {
  .mobile-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 550;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
  }
  .mobile-fixed-cta a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    font-size: 11px; color: var(--text); font-family: var(--font-heading);
  }
  .mobile-fixed-cta a:first-child { background: var(--main); color: #fff; }
  .mobile-fixed-cta .cta-icon { font-size: 18px; line-height: 1; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
}

/* Responsive */
@media (max-width: 900px) {
  .appeal-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .service-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .service-strip-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-table, .about-table tbody, .about-table tr,
  .about-table th, .about-table td { display: block; width: 100%; }
  .about-table th { font-size: 12px; padding: 8px 14px; border-bottom: none; }
  .about-table td { padding: 8px 14px 16px; }
  .section-title { font-size: 22px; line-height: 1.5; }
  .appeal-title { font-size: 16px; }
  .feature-num { font-size: 22px; }
  .stat-num { font-size: 24px; }
  .hero-title { font-size: 24px !important; line-height: 1.6; }
  .hero-sub { font-size: 13px; line-height: 1.8; }
  section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .appeal-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .section-title { font-size: 20px; }
  .appeal-text, .review-text, .faq-a { font-size: 13px; line-height: 1.85; }
  .hero-title { font-size: 22px !important; }
  .hook-question { font-size: 16px; }
  .hook-answer { font-size: 13px; }
  .service-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
.hero-title, .section-title, .appeal-title, .hook-question {
  word-break: keep-all;
  overflow-wrap: break-word;
}
