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

:root {
  --green-dark: #2e7d32;
  --green: #388e3c;
  --green-light: #c8e6c9;
  --green-pale: #f1f8f1;
  --accent: #43a047;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --line-green: #06c755;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 460px;
  background: url('hero.jpg') right center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.38) 0%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0) 70%
  );
  pointer-events: none;
}

/* 上段 */
.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 28px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  padding: 10px 18px 10px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* コンタクトボックス */
.contact-box {
  background: rgba(255,255,255,0.97);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  min-width: 240px;
}

.contact-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
}

.phone-number svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; }

.hours-table { font-size: 11px; color: var(--text-light); border-collapse: collapse; }
.hours-table td { padding: 1px 4px 1px 0; vertical-align: top; line-height: 1.8; }
.h-label { color: #555; white-space: nowrap; }
.h-day { white-space: nowrap; }
.h-time { white-space: nowrap; }
.h-note { font-size: 10px; padding-top: 2px; }

/* キャッチコピー */
.hero-body {
  position: relative;
  z-index: 2;
  padding: 28px 36px 52px;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.7);
}

.hero-desc {
  font-size: 14px;
  color: #222;
  line-height: 2;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
}

/* ===== SECTION COMMON ===== */
.section { padding: 60px 0; }

.section-title {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--green);
  margin: 10px auto 44px;
}

/* ===== FEATURES ===== */
.features { background: var(--white); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  border: 1px solid #e8f5e9;
  border-radius: 12px;
  padding: 40px 28px 36px;
  text-align: center;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(56,142,60,0.12);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.9;
  text-align: left;
}

/* ===== SERVICES ===== */
.services { background: var(--green-pale); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 16px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(56,142,60,0.13);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== INFO ===== */
.info { background: var(--white); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.info-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px dashed var(--green-light);
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.store-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.store-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  align-items: flex-start;
}

.si {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-dark);
  stroke: var(--green-dark);
}

.store-list a { color: var(--green-dark); font-weight: 500; }
.store-list a:hover { text-decoration: underline; }
.store-hours div { line-height: 2; }
.sh-note { font-size: 12px; color: var(--text-light); }

.map-container iframe { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); display: block; }
.map-address { margin-top: 10px; font-size: 12px; color: var(--text-light); text-align: center; }

/* ===== CTA ===== */
.cta-banner {
  background: linear-gradient(90deg, #2e7d32 0%, #43a047 100%);
  padding: 24px 28px;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-leaf { width: 24px; height: 36px; flex-shrink: 0; }
.cta-leaf-r { transform: scaleX(-1); }

.cta-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.cta-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: opacity 0.2s, transform 0.2s;
}

.cta-line-btn:hover { opacity: 0.9; transform: scale(1.03); }
.line-icon { width: 32px; height: 32px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #388e3c;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero { background-position: 65% center; }
  .hero-top { flex-direction: column; gap: 10px; padding: 16px 16px 0; }
  .contact-box { min-width: unset; width: 100%; }
  .phone-number { font-size: 22px; }
  .hero-body { padding: 20px 16px 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; gap: 6px; }
  .cta-text { white-space: normal; text-align: center; }
  .section { padding: 44px 0; }
}
