:root {
  --green: #0f8f70;
  --green-dark: #08644f;
  --blue: #2563eb;
  --ink: #17232f;
  --muted: #5d6b78;
  --line: #dce7e5;
  --soft: #eef8f5;
  --soft-blue: #eef5ff;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(23, 35, 47, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 156px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
}

.site-nav {
  position: fixed;
  inset: 66px 0 auto 0;
  display: none;
  padding: 18px 16px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 10px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--soft);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(15, 143, 112, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--green);
}

.btn-blue {
  color: var(--white);
  background: var(--blue);
}

.btn-row {
  display: grid;
  gap: 10px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #eaf7f3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 54, 45, 0.84), rgba(7, 54, 45, 0.56), rgba(255, 255, 255, 0.1)), var(--hero-image, url("../images/hero-store.svg")) center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 58px 0 82px;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #d8fff3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 5vw, 38px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.hero .lead {
  color: #f3fffb;
  font-size: clamp(16px, 3.8vw, 20px);
}

.hero-badges,
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid #cce9df;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-badges li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: #f7fbfa;
}

.section-blue {
  background: var(--soft-blue);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card,
.case-card,
.news-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(23, 35, 47, 0.04);
}

.card-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.55em + 3px);
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.service-link {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-link strong {
  color: var(--green-dark);
}

.cta-band {
  padding: 36px 0;
  color: var(--white);
  background: #0b6553;
}

.cta-box {
  display: grid;
  gap: 18px;
  align-items: center;
}

.cta-box p {
  margin-bottom: 0;
  color: #e9fff8;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green-dark);
  background: var(--soft);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 4495px;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd8d6;
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-22 {
  margin-top: 22px;
}

.site-footer {
  padding: 38px 0 84px;
  color: #d9e9e4;
  background: #10241f;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #f7fffc;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-cta .btn {
  min-height: 44px;
  padding: 10px;
  font-size: 14px;
}

.lp .hero::before {
  background: linear-gradient(90deg, rgba(6, 49, 42, 0.88), rgba(6, 49, 42, 0.62), rgba(6, 49, 42, 0.2)), url("../images/lp-nagoya-store.svg") center / cover no-repeat;
}

.lp .section {
  padding: 58px 0;
}

.price-box {
  padding: 24px;
  border: 1px solid #bcded4;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f0faf7);
}

@media (min-width: 760px) {
  .btn-row {
    display: flex;
    flex-wrap: wrap;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 44px;
  }
}
