:root {
  --green: #1f6f43;
  --deep: #16352a;
  --leaf: #3f7f2e;
  --mint: #e8f2e5;
  --soil: #6e4d2d;
  --paper: #fffdf7;
  --ink: #18231e;
  --muted: #657168;
  --line: #dce5d8;
  --shadow: 0 20px 50px rgba(22, 53, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 111, 67, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(15, 33, 27, 0.68);
  box-shadow: 0 8px 28px rgba(15, 33, 27, 0.16);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 8px 30px rgba(22, 53, 42, 0.12);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 12px;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.header-call {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 86px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 38, 25, 0.86), rgba(12, 38, 25, 0.56) 58%, rgba(12, 38, 25, 0.24)),
    url("assets/after/after-yard-main.jpg") center 54% / cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 27, 0.18), rgba(15, 33, 27, 0.08) 44%, rgba(15, 33, 27, 0.26));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 88px) 8svh;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(16px, 2vw, 19px);
}

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

.button,
.contact-form button,
.phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(560px, 100%);
  margin: 36px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-strip div {
  padding: 15px 18px;
}

.trust-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip dt {
  font-size: 12px;
  opacity: 0.72;
}

.trust-strip dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.section,
.band,
.contact {
  padding: 86px clamp(18px, 6vw, 88px);
}

.worker,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-visual {
  overflow: hidden;
  margin: 22px 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(22, 53, 42, 0.08);
}

.section-visual img {
  display: block;
  width: 100%;
  height: clamp(230px, 28vw, 380px);
  object-fit: cover;
  object-position: center 48%;
}

.section-visual figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.services-visual img {
  object-position: center 58%;
}

.local-needs-visual {
  margin-top: 18px;
}

.local-needs-visual img {
  height: clamp(170px, 18vw, 260px);
  object-position: center 58%;
}

h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 20px;
  line-height: 1.35;
}

p {
  margin: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.worker {
  padding-top: 0;
  padding-bottom: 34px;
  align-items: center;
}

.services-section {
  padding-top: 42px;
}

.worker-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--mint);
}

.worker-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.worker-copy {
  display: grid;
  gap: 18px;
}

.worker-copy p {
  color: var(--muted);
}

.before-section {
  padding-top: 44px;
}

.before-section .section-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
}

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

.comparison-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
  overflow: hidden;
}

.comparison-card h3 {
  padding: 18px 18px 0;
}

.comparison-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
}

.comparison-card img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.comparison-slider {
  position: relative;
  min-height: 360px;
  margin-top: 16px;
  background: var(--line);
}

.comparison-slider-img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center;
}

.comparison-slider-front > .comparison-slider-img {
  object-position: center 48%;
}

.comparison-slider-front .comparison-slider-before .comparison-slider-img {
  object-position: center 54%;
}

.comparison-slider-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 16px rgba(15, 33, 27, 0.32);
  transform: translateX(-1px);
}

.comparison-slider-labels {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.comparison-slider-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: block;
  padding: 0;
}

.comparison-slider.is-user-controlled .comparison-slider-control {
  opacity: 0.92;
}

.comparison-slider-control input {
  width: 100%;
  accent-color: var(--green);
  cursor: ew-resize;
}

.work-start-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.75fr);
  gap: 22px;
  align-items: center;
  margin-top: 22px;
}

.work-start-main {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.work-start-main img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  object-position: center 52%;
}

.work-start-main figcaption,
.media-card figcaption {
  padding: 11px 13px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.work-start-copy {
  display: grid;
  gap: 12px;
}

.work-start-copy p:last-child {
  color: var(--muted);
}

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

.media-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.media-card img,
.media-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mint);
}

.video-card {
  grid-column: span 1;
}

.video-card video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #0f211b;
}

.video-card-wide {
  grid-column: span 2;
}

.video-card-wide video {
  aspect-ratio: 16 / 9;
}

.work-video-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.54fr);
  gap: 16px;
  align-items: start;
}

.work-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.work-detail-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.work-detail-grid h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.work-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.work-detail-grid .media-card {
  margin-top: 4px;
  box-shadow: none;
}

.work-detail-grid .video-card-wide,
.work-detail-grid .video-card-portrait {
  grid-column: auto;
}

.work-detail-grid .video-card-portrait video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card-portrait video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #0f211b;
}

.single-video {
  width: min(760px, 100%);
  margin: 0;
}

.single-video video {
  aspect-ratio: 16 / 9;
}

.photo-section {
  padding-top: 34px;
}

.photo-section .section-heading p:last-child {
  max-width: 560px;
  color: var(--muted);
}

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

.image-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 10px 12px;
  color: var(--deep);
  font-weight: 900;
}

.photo-pair figure > span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(12, 38, 25, 0.88);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.profile-page {
  padding-top: 92px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding: 58px clamp(18px, 6vw, 88px) 30px;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(15, 33, 27, 0.78);
  color: #fff !important;
  font-size: 12px;
  line-height: 1.45;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.profile-heading {
  display: grid;
  gap: 18px;
}

.profile-heading h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
}

.profile-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.profile-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 36px;
}

.profile-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.profile-panel h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.profile-panel p,
.profile-panel ul {
  color: var(--muted);
}

.profile-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

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

.worker-history article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.worker-history h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.worker-history ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.worker-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.worker-details div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.worker-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.worker-details dd {
  margin: 4px 0 0;
  color: var(--deep);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.card,
.price-card,
.schedule-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.card {
  padding: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--soil);
  font-size: 13px;
  font-weight: 900;
}

.card p,
.price-card p,
.guidance-grid p,
.guidance-grid li,
.split p,
.faq p,
.contact p,
.note {
  color: var(--muted);
}

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

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

.guidance-grid article,
.price-hint {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.card-photo {
  overflow: hidden;
  margin: -24px -24px 18px;
  border-radius: 8px 8px 0 0;
}

.card-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guidance-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.band {
  background: var(--mint);
}

.schedule .section-heading p:last-child {
  max-width: 520px;
  color: var(--muted);
}

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

.schedule-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px;
}

.schedule-card.featured {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
}

.schedule-card.featured h3,
.schedule-card.featured p {
  color: #fff;
}

.schedule-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--deep);
  font-weight: 800;
}

.schedule-card.featured .card-link {
  background: var(--green);
  color: #fff;
}

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

.price-card {
  min-width: 0;
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.price-card.featured h3,
.price-card.featured p {
  color: #fff;
}

.price-hint {
  margin-top: 16px;
  background: #fffdf7;
}

.price-hint p {
  color: var(--muted);
}

.price {
  margin: 14px 0 12px;
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.price-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

.price-table th {
  color: var(--deep);
  background: rgba(232, 242, 229, 0.7);
  font-size: 14px;
}

.price-table td {
  color: var(--muted);
}

.price-table td:last-child {
  color: var(--deep);
  font-weight: 900;
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 18px;
  font-size: 14px;
}

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

.flow-visual {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(22, 53, 42, 0.08);
}

.flow-visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
  object-position: center 60%;
}

.flow-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 54, 42, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border-left: 5px solid var(--leaf);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.faq {
  padding-top: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  color: var(--deep);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding-top: 12px;
}

.contact {
  color: #fff;
  background: var(--deep);
}

.contact > div:first-child {
  display: grid;
  gap: 18px;
}

.contact h2,
.contact p {
  color: #fff;
}

.phone-cta {
  width: fit-content;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.phone-note,
.profile-note {
  font-size: 0.95rem;
  line-height: 1.7;
}

.phone-note {
  margin-top: 0;
  max-width: 520px;
}

.profile-note {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-card h3 {
  margin-bottom: 14px;
}

.contact-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

.footer {
  padding: 30px clamp(18px, 6vw, 88px);
  background: #0f211b;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer strong {
  color: #fff;
}

.footer a,
.profile-panel a:not(.card-link) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call {
  display: none;
}

@media (max-width: 920px) {
  body {
    padding-bottom: 76px;
  }

  .nav {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .service-grid,
  .price-layout,
  .schedule-grid,
  .guidance-grid,
  .comparison-grid,
  .work-start-feature,
  .work-video-grid,
  .work-detail-grid,
  .photo-card-grid,
  .profile-hero,
  .profile-content,
  .worker,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .photo-pair img {
    height: 260px;
  }

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

  .price-card.featured {
    transform: none;
  }

  .mobile-call {
    position: fixed;
    z-index: 20;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(260px, calc(100% - 32px));
    min-height: 52px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(15, 33, 27, 0.28);
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .guidance-grid,
  .schedule-grid,
  .comparison-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) and (min-width: 921px) {
  .site-header {
    gap: 18px;
    justify-content: flex-start;
    padding-right: 28px;
    padding-left: 28px;
  }

  .brand {
    min-width: 190px;
  }

  .header-call {
    margin-left: auto;
    margin-right: 0;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > p,
  .section-heading > div + p {
    margin-top: 14px;
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .price-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 104px;
    padding-bottom: 118px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.12;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin: 0 24px;
  }

  .service-grid,
  .trust-strip,
  .worker-history,
  .worker-details,
  .media-grid,
  .work-video-grid,
  .work-detail-grid,
  .photo-pair,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .trust-strip {
    margin-bottom: 20px;
  }

  .section,
  .band,
  .contact {
    padding: 64px 18px;
  }

  .contact {
    padding-top: 88px;
  }

  .contact > div:first-child {
    gap: 22px;
  }

  .section-heading {
    display: block;
  }

  .price-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 53, 42, 0.06);
  }

  .price-table td {
    display: grid;
    grid-template-columns: 8em 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .price-table td::before {
    color: var(--deep);
    font-weight: 900;
  }

  .price-table td:nth-child(1)::before {
    content: "広さ";
  }

  .price-table td:nth-child(2)::before {
    content: "場所";
  }

  .price-table td:nth-child(3)::before {
    content: "料金";
  }

  .video-card-wide {
    grid-column: span 1;
  }

}
