@charset "utf-8";
:root {
  --green: #001530;
  --green-dark: #001530;
  --gold: #c89a45;
  --gold-soft: #f6ead6;
  --ink: #333;
  --text: #40524a;
  --muted: #6d7b76;
  --line: #e2ded4;
  --bg: #f8f5ee;
  --white: #fff;
  --danger: #b4001e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
section { padding: 88px 0; }
.inner { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.sp { display: none; }
.center { text-align: center; }
.topbar {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(31,91,67,.12);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(1160px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--green-dark);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.logo strong { display: block; font-size: 21px; line-height: 1.1; }
.logo small { display: block; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-tel { color: var(--green-dark); font-size: 19px; font-weight: 900; white-space: nowrap; }
.header-btn, .btn-main, .btn-sub, .btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.header-btn, .btn-main, .btn1 {
  background: linear-gradient(135deg, var(--gold), #b47b27);
  color: #fff;
  box-shadow: 0 14px 26px rgba(180,123,39,.22);
}
.btn-sub {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid rgba(31,91,67,.18);
}
.hero {
  width: 100%;
  padding: 0;
  line-height: 0;
  background: #fff;
}
.hero picture,
.hero img {
  display: block;
  width: 100%;
}
.hero picture {
  overflow: visible;
}
.hero img {
  height: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 38px;
}
.hero-points li {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(31,91,67,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(15,58,43,.06);
}
.section-head { max-width: 820px; margin: 0 auto 46px; text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}
h2 {
  color: var(--green-dark);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.38;
  font-weight: 900;
}
.lead { margin-top: 14px; color: var(--muted); font-size: 17px; }
.problem {
  --green-dark: #001530;
  background: var(--green-dark);
  padding-top: 34px;
  color: #fff;
}
.problem .eyebrow,
.problem h2,
.problem .lead,
.problem-card h3,
.problem-card p {
  color: #fff;
}
.problem-grid, .reason-grid, .service-grid {
  display: grid;
  gap: 20px;
}
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.problem-card, .reason-card, .service-card, .company-card, .faq-item {
  border: 1px solid rgba(31,91,67,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15,58,43,.07);
}
.problem-card {
  padding: 28px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.problem-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}
.problem-card h3, .service-card h3, .flow-content h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.45;
}
.problem-card h3{
color: var(--gold);
}
.problem-card p, .service-card p, .flow-content p, .reason-card p { color: var(--muted); }
.cta-mini {
  margin-top: 38px;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
}
.cta-mini strong { display: block; margin-bottom: 8px; font-size: 24px; }
.cta-mini-tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
}
.cta-mini-tel span,
.cta-mini-tel small {
  font-weight: 800;
  color: rgba(255,255,255,.86);
}
.cta-mini-tel a {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.reason { background: var(--bg); }
.reason-grid { grid-template-columns: repeat(2, 1fr); }
.reason-card { overflow: hidden; }
.reason-card img { width: 100%; height: 245px; object-fit: cover; }
.reason-body { padding: 30px; }
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 900;
}
.reason-card h3 { margin-bottom: 10px; color: var(--green-dark); font-size: 25px; line-height: 1.45; }
.service { background: var(--green-dark); color: #fff; }
.service h2, .service .lead { color: #fff; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  overflow: hidden;
  padding: 0 0 28px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.service-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.service-card h3,
.service-card p {
  padding-inline: 28px;
}
.service-card h3 { color: #fff; }
.service-card p { color: rgba(255,255,255,.82); }
.flow { background: #fff; }
.flow-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbf8f1);
}
.flow-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(31,91,67,.1);
}
.flow-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.flow-step { color: var(--gold); font-size: 20px; font-weight: 900; }
.message { background: var(--bg); }
.message-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.message img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(15,58,43,.12);
}
.message-box {
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15,58,43,.07);
}
.message-box p { margin-top: 18px; }
.sign { margin-top: 22px; color: var(--green-dark); font-size: 20px; font-weight: 900; text-align: right; }
.faq { background: #fff; }
.faq-wrap { max-width: 920px; margin: 0 auto; }
.faq-item { margin-bottom: 14px; padding: 24px; }
.faq-q { color: var(--green-dark); font-weight: 900; font-size: 18px; }
.faq-a { margin-top: 8px; color: var(--muted); }
.company { background: var(--bg); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.company-card { padding: 34px; }
.company-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
}
.company-card h3 { margin-bottom: 16px; color: var(--green-dark); font-size: 25px; }
.company-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,91,67,.1);
}
.company-list strong { color: var(--green); }
.cta {
  background: linear-gradient(135deg, var(--gold), #af7625);
  color: #fff;
  text-align: center;
}
.cta h2, .cta .lead { color: #fff; }
.cta .hero-actions { justify-content: center; }
.cta .btn-main { background: #fff; color: var(--green-dark); box-shadow: 0 16px 30px rgba(73,43,0,.18); }
.cta .btn-sub { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.34); color: #fff; }
#form { background: #fff; }
.form-lead { max-width: 820px; margin: 0 auto 34px; color: var(--muted); text-align: center; }
.ta1, .ta2 {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15,58,43,.07);
}
.ta1 th, .ta1 td, .ta2 th, .ta2 td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(31,91,67,.1);
  text-align: left;
  vertical-align: top;
}
.ta1 th, .ta2 th { width: 28%; background: #f5f0e6; color: var(--green); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(31,91,67,.22);
  border-radius: 8px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,154,69,.14);
}
.error { margin-top: 6px; color: var(--danger); font-size: 13px; font-weight: 700; }
.required { color: var(--danger); }
#privacy {
  margin-top: 52px;
  padding: 30px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
}
#privacy h3, #privacy h4 { color: var(--green-dark); }
#privacy p, #privacy ul { margin-top: 10px; }
.map { padding: 0; line-height: 0; }
.map iframe { width: 100%; height: 420px; border: 0; display: block; }
.footer {
  padding: 34px 0;
  background: var(--green-dark);
  color: rgba(255,255,255,.82);
}
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.footer-logo { margin-bottom: 8px; color: #fff; font-size: 22px; font-weight: 900; }
.copyright { font-size: 13px; }
.complete {
  min-height: 55vh;
  padding: 120px 0;
  background: var(--bg);
}
.complete-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(15,58,43,.07);
}
.complete-box h1 { margin-bottom: 18px; color: var(--green-dark); font-size: 36px; }
.edit-btn { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 800; text-decoration: underline; }
.fadeBlock { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.fadeBlock.active { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .header-inner { height: auto; min-height: 72px; flex-wrap: wrap; padding: 12px 0; gap: 12px; }
  .header-nav { order: 3; width: 100%; justify-content: center; gap: 16px; font-size: 13px; overflow-x: auto; }
  .header-actions { margin-left: auto; }
  .header-tel { display: none; }
  .hero-points, .problem-grid, .reason-grid, .service-grid, .company-grid, .message-wrap { grid-template-columns: 1fr; }
  .message img { height: 340px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .inner { width: min(100% - 28px, 520px); }
  .sp { display: block; }
  .topbar { height: auto; min-height: 34px; font-size: 12px; text-align: center; line-height: 1.5; }
  .logo { min-width: auto; }
  .logo strong { font-size: 18px; }
  .header-btn { min-height: 42px; padding: 0 16px; }
  .header-nav { justify-content: flex-start; }
  .hero picture {

    overflow: hidden;
  }
  .hero img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .btn-main, .btn-sub, .btn1 { width: 100%; min-height: 56px; }
  .cta-mini-tel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }
  .cta-mini-tel a { font-size: 28px; }
  .problem-card, .reason-body, .service-card, .message-box, .company-card, .flow-box, #privacy, .complete-box { padding: 24px; }
  .flow-item { grid-template-columns: 1fr; gap: 6px; }
  .ta1 th, .ta1 td, .ta2 th, .ta2 td { display: block; width: 100%; padding: 14px; }
  .company-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { display: block; }
  .copyright { margin-top: 18px; }
}
