:root {
  --ink: #1d2a2e;
  --muted: #5e6e70;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dce5df;
  --green: #35745b;
  --green-dark: #204c3a;
  --gold: #c98d3d;
  --blue: #2e5e7f;
  --shadow: 0 20px 50px rgba(29, 42, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 60px);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.45;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.3;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green-dark);
  background: transparent;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: min(64svh, 680px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 900ms ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 42, 46, 0.14), rgba(29, 42, 46, 0));
}

.slide-1 {
  background-image: url("assets/hero-mlink.png");
}

.slide-2 {
  background-image: url("assets/hero-cleaning.png");
}

.slide-3 {
  background-image: url("assets/hero-flower-warehouse.png");
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro,
.fit,
.content-section,
.services,
.entry,
.company,
.trust,
.contact {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fit-grid article {
  min-height: 96px;
  padding: 20px;
  background: #f4f8f5;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.fit-story {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.fit-story strong {
  color: #dcb778;
  font-size: 18px;
}

.fit-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid p,
.contact p {
  margin: 0;
}

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

.feature-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.feature-card p,
.flow p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.activity-results {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: 32px;
  padding: 28px;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--white);
}

.activity-results h3 {
  font-size: 26px;
}

.activity-results p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.activity-results .eyebrow {
  color: #dcb778;
}

.activity-results ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-results li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 700;
}

.growth-story {
  max-width: 960px;
  margin-top: 24px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.growth-story h3 {
  font-size: 28px;
}

.growth-story p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-service {
  background: #f4f8f5;
}

.helper-service {
  background: #f6f7fb;
}

.service-copy {
  max-width: 760px;
}

.service-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-info {
  margin: 0;
  border-top: 3px solid var(--green);
}

.service-info div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-info dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.service-info dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  font-weight: 700;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.nanden-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(92svh - 72px);
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.95), rgba(251, 250, 247, 0.78)),
    url("assets/hero-cleaning.png") center / cover;
}

.nanden-hero-copy {
  max-width: 780px;
}

.nanden-hero-panel {
  padding: 28px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nanden-hero-panel strong,
.nanden-hero-panel span {
  display: block;
}

.nanden-hero-panel p {
  margin: 8px 0 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.nanden-hero-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.work-tags span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.work-menu,
.price-grid,
.nanden-flow {
  display: grid;
  gap: 16px;
}

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

.work-menu article,
.price-grid article,
.nanden-flow div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.work-menu p,
.price-grid p,
.nanden-flow p {
  margin: 0;
  color: var(--muted);
}

.not-work,
.price-note {
  margin-top: 24px;
  padding: 22px 24px;
  background: #f4f8f5;
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.not-work p,
.price-note {
  color: var(--muted);
}

.scenes-section {
  background: var(--paper);
}

.scene-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scene-list article {
  min-height: 104px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.gallery-section {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  gap: 18px;
}

.before-after-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.ba-images figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--line);
  aspect-ratio: 4 / 3;
}

.ba-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-images figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(29, 42, 46, 0.76);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.gallery-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-section {
  background: var(--paper);
}

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

.price-grid span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.price-grid strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.price-badges span {
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.helper-app {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.helper-app .section-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 18px;
}

.app-panel {
  padding: clamp(20px, 3vw, 30px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.simulator-panel {
  background: #f4f8f5;
}

.panel-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.panel-title > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.panel-title h3 {
  margin-bottom: 4px;
}

.panel-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label,
.permission-box label,
.risk-checks label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
}

.form-grid textarea {
  resize: vertical;
}

.wide-field {
  grid-column: 1 / -1;
}

.estimate-box {
  margin-top: 18px;
  padding: 20px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.estimate-box span,
.estimate-box strong,
.estimate-box p {
  display: block;
}

.estimate-box span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
}

.estimate-box strong {
  margin-top: 4px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
}

.estimate-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.risk-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.risk-checks label,
.permission-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.photo-preview span {
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.permission-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  background: #f4f8f5;
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.permission-box strong {
  color: var(--green-dark);
}

.permission-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.receipt-box {
  margin-top: 18px;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.receipt-box[hidden] {
  display: none;
}

.receipt-box span,
.receipt-box strong,
.receipt-box p {
  display: block;
}

.receipt-box span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
}

.receipt-box strong {
  margin-top: 4px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
}

.receipt-box p {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.84);
}

.receipt-box .button {
  border-color: var(--white);
}

.admin-panel {
  position: sticky;
  top: 94px;
  background: var(--green-dark);
  color: var(--white);
}

.admin-panel .panel-title p,
.admin-panel .panel-title h3 {
  color: var(--white);
}

.admin-panel .panel-title p {
  color: rgba(255, 255, 255, 0.76);
}

.admin-panel .panel-title > span {
  color: var(--green-dark);
  background: #dcb778;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.admin-summary div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.admin-summary strong,
.admin-summary span {
  display: block;
}

.admin-summary strong {
  font-size: 30px;
  line-height: 1;
}

.admin-summary span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.request-list {
  display: grid;
  gap: 10px;
}

.empty-state {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.request-card {
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.request-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.request-card p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.request-card dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.request-card dl div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
}

.request-card dt,
.request-card dd {
  margin: 0;
  font-size: 13px;
}

.request-card dt {
  color: var(--green);
  font-weight: 900;
}

.request-card dd {
  color: var(--ink);
  font-weight: 700;
}

.request-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.status-pill {
  padding: 5px 8px;
  color: var(--green-dark);
  background: #f4f8f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.clear-button {
  width: 100%;
  margin-top: 14px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.app-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: #f6f7fb;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.app-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.nanden-flow strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  line-height: 1;
}

.relation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.relation p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.flow strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  line-height: 1;
}

.entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.entry-copy {
  max-width: 860px;
}

.entry-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.entry-fee {
  padding: 28px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.entry-fee span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.entry-fee strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.entry-fee p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.entry-fee ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 18px 0 0 1.2em;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.entry-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.entry-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.entry-grid p {
  margin: 0;
  color: var(--muted);
}

.entry-message {
  margin: 24px 0 0;
  padding: 22px 24px;
  color: var(--green-dark);
  background: #f4f8f5;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
}

.school-program {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: 24px;
  padding: 30px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.school-program .eyebrow {
  color: #dcb778;
}

.school-program h3 {
  font-size: 28px;
}

.school-program p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.school-program ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-program li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.school-program strong,
.school-program span {
  display: block;
}

.school-program span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.company-copy {
  max-width: 760px;
}

.company-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.company-panel {
  padding: 28px;
  background: #f4f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 1.2em;
  color: var(--muted);
}

.company-panel p {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.company-benefits {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.benefit-message {
  margin: 24px 0 0;
  padding: 22px 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
}

.company-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.company-flow div {
  min-height: 170px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-flow strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.company-flow span {
  display: block;
  margin-top: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.company-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.principles {
  margin-top: 20px;
  padding: 24px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.principles p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 20px;
  background: #f4f8f5;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 46, 0.05);
}

.faq-label {
  margin: 0 0 10px !important;
  color: var(--green) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.faq-grid p:not(.faq-label) {
  margin: 0;
  color: var(--muted);
}

.contact {
  max-width: 900px;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  color: var(--muted);
  font-size: 18px;
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-choice article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-choice p {
  margin: 0 0 20px;
  font-size: 16px;
}

.note {
  margin-top: 18px !important;
  font-size: 13px !important;
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.footer p + p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 420px;
    order: -1;
  }

  .intro-grid,
  .fit-grid,
  .feature-grid,
  .benefit-grid,
  .work-menu,
  .scene-list,
  .ba-images,
  .price-grid,
  .nanden-flow,
  .activity-results,
  .service-item,
  .entry,
  .entry-grid,
  .school-program,
  .company,
  .faq-grid,
  .contact-choice,
  .app-layout,
  .nanden-hero,
  .relation,
  .company-flow,
  .flow,
  .trust {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    position: static;
  }

  .fit-story {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .risk-checks,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}
