:root {
  --navy: #062c70;
  --navy-dark: #071426;
  --blue: #124ca3;
  --ink: #121923;
  --muted: #687385;
  --line: #dfe7f2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --gold: #c99a17;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(9, 31, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

section {
  scroll-margin-top: 98px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 86px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(150px, 0.45fr);
  align-items: center;
  gap: 22px;
  padding: 0 max(34px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(223, 231, 242, 0.9);
  box-shadow: 0 10px 30px rgba(9, 31, 68, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 14%;
  box-shadow: 0 0 0 1px rgba(9, 31, 68, 0.08);
}

.brand strong {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 34px);
  color: #243041;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav a {
  padding: 12px 0;
}

.site-nav a:hover {
  color: var(--navy);
}

.header-cta,
.primary-button,
.secondary-button,
.form-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 44, 112, 0.26);
}

.header-cta {
  justify-self: end;
  padding: 0 24px;
  font-size: 0.9rem;
}

.secondary-button,
.form-panel {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(6, 44, 112, 0.5);
}

.primary-button,
.secondary-button {
  min-width: 220px;
  padding: 0 28px;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-image-store {
  object-position: 44% center;
  opacity: 1;
  animation-delay: 0s;
}

.hero-image-yard {
  animation-delay: 6s;
}

.hero-image-metal {
  animation-delay: 12s;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72) 39%, rgba(255, 255, 255, 0.06) 69%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
}

@keyframes heroFade {
  0%,
  29% {
    opacity: 1;
  }

  36%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }

  .hero-image-store {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 5.5vw, 4.65rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--navy);
  font-size: 1.14em;
}

.hero-subtitle {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 7px 0;
  color: var(--navy);
  border-bottom: 4px solid var(--gold);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  font-weight: 950;
  line-height: 1.35;
}

.hero-lead {
  max-width: 630px;
  margin: 18px 0 0;
  color: #1a2532;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.notice-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.notice-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
}

.notice-inner strong {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 950;
}

.notice-list {
  display: grid;
  gap: 8px;
}

.notice-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.notice-item {
  display: grid;
  gap: 3px;
}

.notice-item time {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
}

.notice-item b {
  color: var(--ink);
  font-weight: 950;
}

.notice-item p {
  margin: 0;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.centered {
  text-align: center;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.centered h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--navy);
  border-radius: 999px;
}

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

.business-card {
  position: relative;
  min-height: 100%;
  padding-bottom: 26px;
  overflow: visible;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(9, 31, 68, 0.1);
}

.business-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin: -29px auto 18px;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  background: var(--navy);
  border: 5px solid #fff;
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(6, 44, 112, 0.24);
}

.business-card h3 {
  margin: 0 24px 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.35;
}

.business-card p {
  margin: 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.items-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.items-layout article {
  min-height: 210px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(9, 31, 68, 0.08);
}

.items-layout .items-main {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 44, 112, 0.96), rgba(18, 76, 163, 0.92)),
    url("assets/service-scrap.png") center / cover;
  border-color: transparent;
}

.items-layout h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.3;
}

.items-layout p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.items-main h3,
.items-main p {
  color: #fff;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.item-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.items-main .item-tags li {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.item-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.item-photo-grid figure {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #10233d;
  box-shadow: 0 14px 34px rgba(9, 31, 68, 0.1);
}

.item-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.item-photo-grid figure:hover img {
  transform: scale(1.04);
}

.item-photo-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 44, 112, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.cleanup-strip {
  margin-top: 20px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(9, 31, 68, 0.08);
}

.cleanup-strip strong {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.35;
}

.cleanup-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.features-section {
  background: linear-gradient(180deg, #f5f8fc, #eef4fb);
}

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

.feature-grid article {
  position: relative;
  min-height: 214px;
  padding: 46px 22px 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: var(--radius);
}

.feature-grid article::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 64px;
  height: 28px;
  transform: translateX(-50%);
  background: #f5f8fc;
  border-radius: 0 0 40px 40px;
}

.feature-grid span {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(6, 44, 112, 0.26);
}

.feature-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.12rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.area-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
}

.area-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.area-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.area-copy li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 900;
}

.area-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 9px;
  height: 9px;
  background: var(--navy);
  border-radius: 50%;
}

.area-section > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flow-section {
  background: #fff;
}

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

.flow-list li {
  position: relative;
  min-height: 218px;
  padding: 16px 20px 0;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -16px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--navy);
  border-right: 3px solid var(--navy);
  transform: rotate(45deg);
}

.flow-list span {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 950;
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

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

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

details {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(9, 31, 68, 0.06);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.contact-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.contact-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 44, 112, 0.96), rgba(6, 44, 112, 0.8)),
    linear-gradient(0deg, rgba(6, 44, 112, 0.22), rgba(6, 44, 112, 0.22));
}

.contact-inner {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  min-height: 230px;
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  gap: 40px;
  align-items: center;
}

.contact-inner .section-label,
.contact-inner h2,
.contact-inner p {
  color: #fff;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.25;
}

.contact-inner p {
  margin: 14px 0 0;
  font-weight: 760;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.phone-panel {
  display: block;
  color: #fff;
}

.phone-panel small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.phone-panel strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  line-height: 1.1;
}

.form-panel {
  min-height: 56px;
  border: 0;
  color: var(--navy);
  background: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8e0ea;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 750;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(201, 151, 39, 0.28);
  border-color: var(--gold);
}

.form-wide,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-submit {
  min-height: 54px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: #0f4c97;
}

.contact-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(9, 31, 68, 0.06);
}

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

th {
  width: 150px;
  color: var(--navy);
  background: #f5f8fc;
  font-weight: 950;
}

td {
  color: #3b4653;
  font-weight: 750;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.company-layout iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(9, 31, 68, 0.08);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #171a1c;
}

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.8fr 1fr;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 50%;
  background: #fff;
}

.footer-inner strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 950;
}

.footer-inner a,
.footer-inner p {
  display: block;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer small {
  display: block;
  padding: 16px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #7d8ca3;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-weight: 950;
}

.policy-main {
  background: var(--soft);
}

.policy-hero {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 34px;
}

.policy-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.16;
}

.policy-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.policy-content {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 86px;
  display: grid;
  gap: 18px;
}

.policy-content section {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(9, 31, 68, 0.06);
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-weight: 730;
}

.policy-content p {
  margin: 0;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.25em;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 82px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-cta {
    justify-self: end;
  }

  .business-grid,
  .items-layout,
  .area-section,
  .company-layout {
    grid-template-columns: 1fr;
  }

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

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

  .flow-list li:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 760px) {
  body {
    line-height: 1.65;
  }

  .site-header {
    position: static;
    padding: 12px 18px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    white-space: normal;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.84rem;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-image-store {
    object-position: 38% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8) 52%, rgba(255, 255, 255, 0.2)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.24));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 54px 0;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .notice-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .business-grid,
  .items-layout,
  .feature-grid,
  .flow-list,
  .faq-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .item-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .item-photo-grid figure,
  .item-photo-grid img {
    min-height: 128px;
  }

  .cleanup-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .feature-grid {
    gap: 38px;
  }

  .area-section > img {
    aspect-ratio: 4 / 3;
  }

  .flow-list li {
    min-height: auto;
    padding: 16px 8px 10px;
  }

  .contact-inner {
    width: calc(100% - 36px);
    gap: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .phone-panel strong {
    font-size: 2rem;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  td {
    border-top: 0;
  }

  .company-layout iframe {
    min-height: 320px;
  }

  .footer-inner {
    width: calc(100% - 36px);
    padding: 42px 0 36px;
  }

  .page-top {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }
}
