/* =====================
   Base & Reset
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #f45e00;
  --green-dark: #c94e00;
  --green-light: rgba(244, 94, 0, 0.12);
  --orange: #f45e00;
  --orange-dark: #c94e00;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --bg: #faf8f6;
  --white: #fff;
  --border: #e4e4e4;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }

/* =====================
   Placeholder
===================== */
.placeholder-img {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/* =====================
   Labels & Titles
===================== */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label.center { display: block; text-align: center; }
.section-label.white { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-title.white { color: var(--white); }

.section-desc { font-size: 15px; color: var(--text-light); margin-bottom: 48px; }
.section-desc.center { text-align: center; }
.section-desc.white { color: rgba(255,255,255,0.8); }

/* =====================
   Buttons
===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: var(--white); color: var(--green); }
.btn-full { width: 100%; }

/* =====================
   Header
===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--text-light); }
.logo-main { font-size: 28px; font-weight: 900; color: var(--green); }

.nav ul { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
.nav a:hover { color: var(--green); }
.nav-contact {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-contact:hover { background: var(--orange-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.sp-nav { display: none; background: var(--white); border-top: 1px solid var(--border); }
.sp-nav ul { list-style: none; }
.sp-nav a { display: block; padding: 16px 24px; font-weight: 700; border-bottom: 1px solid var(--border); }
.sp-nav.open { display: block; }

/* =====================
   Hero
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 50, 25, 0.82) 0%,
    rgba(20, 50, 25, 0.65) 55%,
    rgba(20, 50, 25, 0.35) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 32px 120px;
  width: 100%;
  flex: 1;
}
.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}
.hero-accent {
  color: #ffc87a;
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-person {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  flex-shrink: 0;
}
.hero-person img {
  height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4));
}

/* 実績バー */
.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 40px;
  gap: 4px;
}
.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* =====================
   地域密着セクション
===================== */
.local-section {
  background: var(--bg);
  padding: 96px 0;
}
.local-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.local-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.local-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 28px;
}
.local-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.local-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.lp-icon { color: var(--green); font-size: 16px; flex-shrink: 0; }

.local-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* =====================
   Services
===================== */
.services { background: var(--white); padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-img.placeholder-img { height: 220px; border-radius: 0; font-size: 15px; font-weight: 700; color: #666; }

.service-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 28px 20px 14px;
}
.service-body { padding: 20px 24px 24px; }
.service-body p { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.85; }
.service-link { font-size: 13px; font-weight: 700; color: var(--green); }
.service-link:hover { text-decoration: underline; }

/* =====================
   Pricing
===================== */
.pricing { background: var(--bg); padding: 96px 0; }

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}
.pricing-main-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pricing-main-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-icon { font-size: 28px; }
.pricing-main-head h3 { font-size: 18px; font-weight: 700; }

.price-rows { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.price-row { display: grid; grid-template-columns: 110px 1fr 110px; align-items: center; gap: 12px; }
.price-range { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.price-bar-wrap { background: var(--border); border-radius: 50px; height: 8px; overflow: hidden; }
.price-bar { height: 100%; background: linear-gradient(to right, var(--green), var(--green-dark)); border-radius: 50px; }
.price-val { font-size: 20px; font-weight: 900; color: var(--orange); text-align: right; }
.price-val span { font-size: 12px; font-weight: 500; color: var(--text-light); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.price-table th, .price-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-table th {
  background: var(--bg);
  font-weight: 700;
  color: var(--text-light);
  font-size: 12px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-num { font-weight: 700; font-size: 16px !important; color: var(--orange); }
.price-note { font-size: 12px; color: var(--text-light); line-height: 1.7; }

.pricing-sub-cards { display: flex; flex-direction: column; gap: 16px; }
.pricing-sub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-icon { font-size: 24px; }
.pricing-sub-card h4 { font-size: 15px; font-weight: 700; }
.ps-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}
.pricing-sub-card p:last-child { font-size: 13px; color: var(--text-light); }

/* =====================
   Works
===================== */
.works { background: var(--white); padding: 96px 0; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 24px;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.ba-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ba-side { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ba-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  width: fit-content;
}
.ba-tag.before { background: #fee; color: #c00; }
.ba-tag.after { background: #efe; color: var(--green); }
.ba-img { height: 130px; border-radius: 8px; overflow: hidden; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img.placeholder-img { height: 130px; border-radius: 8px; min-height: unset; }
.ba-arrow { font-size: 20px; color: var(--green); flex-shrink: 0; }
.work-title { font-size: 14px; font-weight: 700; color: var(--text-mid); }
.works-note { text-align: center; font-size: 13px; color: var(--text-light); }

/* =====================
   About
===================== */
.about { background: var(--bg); padding: 96px 0; }

.about-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.about-photo img { width: 100%; border-radius: 12px; object-fit: cover; }
.about-name { font-size: 24px; font-weight: 900; margin-bottom: 6px; }
.about-area { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.about-text p { font-size: 15px; line-height: 1.95; margin-bottom: 14px; color: var(--text-mid); }
.about-licenses {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
}
.about-licenses p { font-size: 12px; color: var(--text-light); margin-bottom: 4px; line-height: 1.6; }
.about-licenses p:last-child { margin-bottom: 0; }

/* =====================
   Contact
===================== */
.contact { background: #1a1a1a; padding: 96px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.contact-phone-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.cp-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.75); }
.cp-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.cp-number:hover { opacity: 0.85; }
.cp-hours { font-size: 13px; color: rgba(255,255,255,0.6); }
.btn-full-sp { display: none; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.cf-label { font-size: 14px; font-weight: 700; color: var(--text-mid); margin-bottom: 20px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.req {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* =====================
   Footer
===================== */
.footer { background: #111; color: var(--white); padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer .logo-sub { color: rgba(255,255,255,0.4); }
.footer .logo-main { color: var(--white); font-size: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--white); }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-info a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

/* =====================
   Page Top
===================== */
.page-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
}
.page-top.show { opacity: 1; pointer-events: auto; }
.page-top:hover { background: var(--green-dark); }

/* =====================
   Responsive
===================== */
@media (max-width: 900px) {
  .hero-person { display: none; }
  .local-inner { grid-template-columns: 1fr; }
  .local-img { order: -1; }
  .local-img img { max-height: 320px; object-fit: cover; width: 100%; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .about-photo img { max-width: 240px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .btn-full-sp { display: block; width: 100%; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .sp-only { display: block; }

  .hero-inner { padding: 60px 20px 100px; }
  .hero-stats { flex-wrap: wrap; padding: 0; }
  .stat-item { padding: 16px 20px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 20px; }

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

  .price-row { grid-template-columns: 90px 1fr 90px; }
  .price-val { font-size: 17px; }

  .contact-phone-box { padding: 28px 20px; }
  .cp-number { font-size: 30px; }
  .contact-form-box { padding: 24px 20px; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .page-top { bottom: 20px; right: 16px; }
}
