:root {
  --main: #c0392b;
  --main-dark: #971f16;
  --black: #111111;
  --text: #333333;
  --text-light: #777777;
  --border: #e6e4e0;
  --bg-warm: #f9f9f7;
  --white: #ffffff;
  --font-heading: "Shippori Mincho B1", 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: linear-gradient(180deg, #f6f6f4, #e6e5e2);
  border-bottom: 2px solid 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: 22px;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
}
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { font-size: 14px; color: var(--text); }
.header-nav a:hover { color: var(--main); }
.header-divider { width: 1px; height: 22px; background: var(--border); }
.header-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--main);
  color: #fff;
  white-space: nowrap;
}
.header-tel {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--main);
}
.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: var(--black); }

.mobile-menu {
  display: none;
  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);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--text); }
.mobile-cta {
  background: var(--main);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 400;
}
.menu-overlay.active { display: block; }

@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: 18px; }
  .logo-sub { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f6f6f4, #ffffff);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.hero-photo {
  position: relative;
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--border);
  background-image: linear-gradient(90deg, rgba(20,20,20,0.86) 0%, rgba(20,20,20,0.55) 55%, rgba(20,20,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: #ddd; }
.hero-photo .hero-eyebrow { color: #f0a89d; }
.hero-photo .tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }

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

.appeal-card-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}
.hero-eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-tags {
  opacity: 0;
  animation: heroFade 0.7s ease forwards;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title   { animation-delay: 0.25s; }
.hero-sub     { animation-delay: 0.4s; }
.hero-cta     { animation-delay: 0.55s; }
.hero-tags    { animation-delay: 0.7s; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 15px;
  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;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.btn-main { background: var(--main); color: #fff; }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--text);
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--bg-warm);
  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: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--main);
}
.stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ---------- Section common ---------- */
section { padding: 64px 0; }
.section-eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--main);
  font-weight: 500;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 36px;
}
.section-title.center { text-align: center; }
.section-head.center { text-align: center; }

/* feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
}
.feature-num {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 6px;
}
.feature-label { font-size: 13px; color: var(--text); }

/* appeal grid */
.appeal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.appeal-card {
  border-top: 3px solid var(--main);
  background: var(--bg-warm);
  border-radius: 0 0 10px 10px;
  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: "Oswald", sans-serif;
  color: var(--main);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.appeal-title { font-family: var(--font-heading); font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.appeal-text { font-size: 13px; color: var(--text-light); line-height: 1.8; }

/* review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  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(--main); 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; }

/* CTA band */
.cta-section {
  background: var(--main);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-eyebrow { color: #f3c9c2; }
.cta-sub { font-size: 14px; margin-bottom: 26px; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--main); }
.btn-line-outline { border: 1.5px solid #fff; color: #fff; }

/* about table */
.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); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 28px 26px;
}
.contact-info-card h3 { font-family: var(--font-heading); font-size: 18px; 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; }
.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);
  border-radius: 6px;
  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;
  border-radius: 3px;
  margin-left: 6px;
}
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; }
.form-success { text-align: center; padding: 40px 20px; }

/* faq */
.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: "Oswald", sans-serif; color: var(--main); }
.faq-a { font-size: 13px; color: var(--text-light); margin-top: 10px; line-height: 1.9; padding-left: 24px; }

/* table scroll (price table) */
.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; }
.price-table .price { font-family: "Oswald", sans-serif; color: var(--main); font-weight: 600; }

/* footer */
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: 18px; margin-bottom: 10px; }
.footer-col h4 { color: #fff; font-size: 13px; margin-bottom: 14px; }
.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: 12px; text-align: center; color: #777; }

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

/* 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); }
  .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; }
  .hero-title { font-size: 27px; }
}
@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; }
}
