:root {
  --ink: #1f2f45;
  --muted: #62748a;
  --navy: #153b67;
  --blue: #2b86c5;
  --red: #2f8fd2;
  --red-dark: #1f6fa8;
  --gold: #bfe4ff;
  --paper: #f5faff;
  --surface: #fff;
  --line: #d8e8f5;
  --shadow: 0 18px 45px rgba(27, 82, 130, 0.11);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", "BIZ UDPGothic", "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

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

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

.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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: #fff;
  box-shadow: 0 6px 22px rgba(27, 82, 130, 0.1);
}

.header-info {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 7px 16px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.header-info p {
  margin: 0;
}

.header-info a {
  color: #fff;
}

.header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5px 0 7px;
}

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

.brand-logo {
  flex: 0 0 auto;
  width: 78px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  color: var(--navy);
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.header-tel {
  display: grid;
  justify-items: end;
  gap: 2px;
  flex: 0 0 auto;
  text-align: right;
  line-height: 1.15;
}

.header-contact-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.header-phone {
  color: var(--red);
}

.header-phone strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
}

.header-phone strong::before,
.phone-card strong::before {
  content: "\260E";
  display: inline-grid;
  place-items: center;
  width: 1.24em;
  height: 1.24em;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.64em;
  line-height: 1;
  transform: translateY(-0.02em);
}

.header-fax {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
}

.header-fax::before {
  content: "\213B";
  display: inline-grid;
  place-items: center;
  width: 1.24em;
  height: 1.24em;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.64em;
  line-height: 1;
}

.header-hours {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 300px;
  min-width: 220px;
}

.product-search input {
  width: 100%;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px 0 0 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.product-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 134, 197, 0.16);
}

.product-search button {
  height: 32px;
  border: 1px solid var(--blue);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  padding: 0 14px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.product-search-results {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, 90vw);
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 6px;
}

.product-search-results a,
.product-search-empty {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}

.product-search-results a:hover,
.product-search-results a:focus-visible {
  background: #edf7ff;
}

.product-search-results strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.product-search-results span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.product-search-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  justify-content: center;
  background: var(--red);
  color: #fff;
}

.site-nav a {
  min-width: 136px;
  padding: 13px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(540px, 68vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eaf6ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: saturate(0.95) contrast(1.02);
  transition: opacity 900ms ease;
}

.hero-bg.is-active {
  opacity: 0.94;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 59, 103, 0.56), rgba(43, 134, 197, 0.24) 48%, rgba(255, 255, 255, 0.04)),
    linear-gradient(0deg, rgba(21, 59, 103, 0.12), rgba(21, 59, 103, 0));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vh, 104px) 0 clamp(58px, 8vh, 92px);
  color: #fff;
}

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

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

section[id],
main[id] {
  scroll-margin-top: 150px;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: #fff;
  color: #fff;
}

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

.section-title {
  margin-bottom: 28px;
}

.section-title.centered {
  text-align: center;
}

.section-title p {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--navy);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-grid a {
  display: block;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  gap: 8px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
  text-align: center;
}

.category-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  background: #eef1f5;
}

.category-grid a[href*="audio-visual-lighting"] img,
.category-grid a[href*="other"] img {
  object-fit: contain;
  padding: 10px;
  background: #eef1f5;
}

.category-grid span {
  display: block;
  min-height: 3.2em;
  padding: 18px 14px 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.category-grid small {
  display: block;
  min-height: 3.4em;
  padding: 0 14px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.news {
  padding-top: 18px;
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--red);
  font-weight: 800;
}

.message-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.message-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.message-inner p:last-child {
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-title span {
  display: block;
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.rental-period {
  padding-top: 76px;
}

.rental-period-lead {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  margin-bottom: 24px;
}

.rental-period-lead > div,
.period-note,
.delivery-fee-base {
  background: #fff;
  box-shadow: var(--shadow);
}

.rental-period-lead > div {
  padding: clamp(24px, 4vw, 36px);
}

.rental-period-lead h3,
.delivery-fee-base h3 {
  color: var(--navy);
}

.rental-period-lead p,
.rental-methods p,
.delivery-fee-base p,
.delivery-fee-base dd {
  color: var(--muted);
}

.rental-term-diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.term-day {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  background: #f8fbfe;
  text-align: center;
}

.term-day::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  width: 22px;
  height: 22px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #c6d9eb;
  border-right: 2px solid #c6d9eb;
  content: "";
}

.term-day:last-child::after {
  display: none;
}

.term-day span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.term-day strong {
  color: var(--navy);
  font-size: 22px;
}

.term-day p {
  margin: 0;
  color: #111;
  font-weight: 900;
}

.term-day.is-active,
.term-day.is-return {
  border-top: 5px solid var(--blue);
}

.term-day.is-use {
  border-top: 5px solid var(--red);
  background: #fff8f8;
}

.term-day.is-closed {
  border-top: 5px solid #9ca3af;
  background: #f3f4f6;
}

.rental-period-lead .rental-term-note {
  margin-top: 14px;
  font-size: 14px;
}

.period-note {
  display: grid;
  align-content: center;
  border-left: 6px solid var(--red);
  background: #fff;
}

.period-note strong {
  display: block;
  color: var(--red);
  font-size: 19px;
  line-height: 1.35;
}

.period-note p {
  margin: 10px 0 0;
}

.period-note small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.rental-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.rental-method-heading {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 24px 0 14px;
  text-align: center;
}

.rental-method-heading p {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.rental-method-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
}

.rental-methods article {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 330px;
  padding: 26px;
  border-top: 6px solid var(--blue);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
}

.rental-methods h3 {
  color: var(--navy);
}

.rental-methods p {
  margin: 0;
}

.method-illustration {
  position: relative;
  display: grid;
  place-items: center;
  height: 116px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f8fafc, #eef3f9);
}

.method-illustration svg {
  width: 118px;
  height: 88px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.method-illustration img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.method-illustration img.method-image-wide {
  width: min(86%, 260px);
  height: 96px;
}

.method-counter {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.period-board {
  display: flex;
  overflow: hidden;
  margin-bottom: 24px;
  background: transparent;
}

.period-step {
  flex: 1 1 0;
  position: relative;
  min-height: 142px;
  margin-left: -30px;
  padding: 30px 12px 28px 42px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  color: #2878b5;
  background: #edf6fd;
  display: grid;
  grid-template-rows: 42px 58px;
  align-content: center;
  justify-items: center;
  row-gap: 14px;
  text-align: center;
}

.period-step:first-child {
  margin-left: 0;
  padding-left: 18px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
}

.period-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
}

.period-step.is-primary {
  color: #fff;
  background: #2d83bd;
}

.period-step.is-secondary {
  background: #dff0fb;
}

.period-step.is-muted {
  background: #edf5fb;
}

.period-step.is-last {
  background: #f6fbff;
}

.period-step-number {
  display: block;
  width: 90px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.period-step-number strong {
  font-size: 34px;
  line-height: 1;
}

.period-step b {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 0;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: normal;
}

.period-step b span {
  display: block;
  white-space: nowrap;
}

.rental-policy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.rental-policy article {
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}

.rental-policy h3 {
  color: var(--navy);
}

.rental-policy p {
  color: var(--muted);
}

.extension-note {
  border-left: 6px solid var(--blue);
}

.cancellation-policy {
  border-left: 6px solid var(--red);
}

.cancel-fee-table {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
}

.cancel-fee-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 52px;
  border-top: 1px solid var(--line);
}

.cancel-fee-table div:first-child {
  border-top: 0;
}

.cancel-fee-table span,
.cancel-fee-table p {
  display: grid;
  align-items: center;
  margin: 0;
  padding: 12px 16px;
}

.cancel-fee-table span {
  background: #f4f8fb;
  color: var(--navy);
  font-weight: 800;
}

.cancel-fee-table p {
  color: var(--ink);
  font-weight: 700;
}

.delivery-fee-base {
  padding: clamp(24px, 4vw, 36px);
}

.delivery-fee-base dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 0;
}

.delivery-fee-base dl div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.delivery-fee-base dt {
  color: var(--navy);
  font-weight: 800;
}

.delivery-fee-base dd {
  margin: 8px 0 0;
}

.payment-methods {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  box-shadow: var(--shadow);
}

.payment-methods .section-title {
  margin: 0;
}

.payment-methods .section-title h3 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}

.payment-lead {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #cfe5f4;
  border-left: 6px solid var(--blue);
  background: #f3f9fd;
  color: var(--navy);
  font-weight: 800;
}

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

.payment-method-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  background: #f8fafc;
}

.payment-method-grid span {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.payment-method-grid p,
.payment-note {
  color: var(--muted);
}

.payment-method-grid p {
  margin: 10px 0 0;
}

.payment-note {
  margin: 0;
  padding: 16px 18px;
  border-left: 6px solid var(--red);
  background: #fff7f7;
  font-weight: 700;
}

.service-feature {
  display: grid;
  gap: 28px;
}

.service-feature article {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-feature article:nth-child(even) {
  grid-template-columns: 1fr 42%;
}

.service-feature article:nth-child(even) img {
  order: 2;
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.service-feature div {
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 54px);
}

.service-feature h3 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.service-feature p,
.business-grid p,
.contact-cta p,
.form-note {
  color: var(--muted);
}

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

.business-grid article {
  min-height: 190px;
  padding: 28px;
  border-left: 6px solid var(--blue);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
}

.business-grid h3 {
  color: var(--navy);
}

.company {
  padding-top: 36px;
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
}

.company-logo {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.company-logo img {
  width: min(210px, 100%);
}

.company-logo p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.company-table {
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.company-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.company-table span {
  color: var(--navy);
  font-weight: 800;
}

.company-table p {
  margin: 0;
}

.company-table a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.business-list {
  margin: 0;
  padding-left: 1.2em;
}

.business-list li + li {
  margin-top: 6px;
}

.contact-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 70px);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 54px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: grid;
  gap: 18px;
}

.phone-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-left: 8px solid var(--red);
  background: #f8fafc;
}

.phone-card span {
  color: var(--muted);
  font-weight: 700;
}

.phone-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

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

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

.required-label {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #e8f4fc;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  vertical-align: middle;
}

.privacy-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.3em;
  flex: 0 0 auto;
}

.privacy-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd6e3;
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 87, 146, 0.2);
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .privacy-consent input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 40px 16px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.site-footer img {
  width: 96px;
  margin: 0 auto 8px;
  padding: 5px;
  background: #fff;
}

.site-footer p,
.site-footer address,
.site-footer small {
  margin: 0;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 840px;
}

.legal-page {
  display: grid;
  gap: 18px;
}

.legal-card,
.legal-note,
.legal-table {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
}

.legal-card,
.legal-note {
  padding: 24px;
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.legal-card p,
.legal-note p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card a,
.legal-table a {
  color: var(--blue);
  font-weight: 800;
}

.legal-table {
  overflow: hidden;
}

.legal-table div {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--line);
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table span,
.legal-table p {
  margin: 0;
  padding: 16px 18px;
}

.legal-table span {
  background: #eef7ff;
  color: var(--navy);
  font-weight: 800;
}

.faq-page {
  display: grid;
  gap: 22px;
}

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

.faq-lead-grid article,
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
}

.faq-lead-grid article {
  padding: 24px;
}

.faq-lead-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.faq-lead-grid h3,
.faq-item h3 {
  margin: 0;
  color: var(--navy);
}

.faq-lead-grid p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: clamp(20px, 3vw, 28px);
  border-left: 5px solid var(--blue);
}

.faq-item h3 {
  font-size: 19px;
}

.faq-fee-table {
  display: grid;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
}

.faq-fee-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}

.faq-fee-table div:last-child {
  border-bottom: 0;
}

.faq-fee-table span,
.faq-fee-table p {
  margin: 0;
  padding: 13px 16px;
}

.faq-fee-table span {
  background: #eef7ff;
  color: var(--navy);
  font-weight: 900;
}

.faq-fee-table p {
  color: #111;
  font-weight: 800;
}

.compact-header {
  position: static;
}

.category-hero {
  position: relative;
  display: grid;
  min-height: 460px;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  filter: saturate(0.95) contrast(1.02);
}

.category-hero img[src*="category-av"],
.category-hero img[src*="category-other"] {
  object-fit: contain;
  padding: clamp(24px, 6vw, 74px);
  background: #eef1f5;
}

.category-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 59, 103, 0.56), rgba(43, 134, 197, 0.24) 48%, rgba(255, 255, 255, 0.04)),
    linear-gradient(0deg, rgba(21, 59, 103, 0.12), rgba(21, 59, 103, 0));
  content: "";
}

.category-hero > div {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.category-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 18px;
}

.category-detail {
  display: grid;
  gap: 24px;
}

.category-detail h2 {
  color: var(--navy);
}

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

.category-detail li {
  border-left: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
  font-weight: 800;
}

.category-detail li a {
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 18px 20px;
}

.category-detail li span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.category-detail li small {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.category-detail li:hover,
.category-detail li:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(27, 82, 130, 0.12);
}

.product-hero {
  background: var(--navy);
  color: #fff;
}

.product-hero > div {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 3.5vw, 36px) 0;
}

.product-hero h1 {
  max-width: 860px;
}

.product-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: 15px;
}

.product-detail {
  display: grid;
  gap: 24px;
}

.product-lineup {
  display: grid;
  gap: 18px;
}

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

.lineup-card {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  padding: 0 22px 22px;
  border-top: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 82, 130, 0.08);
}

.lineup-card.is-targeted {
  outline: 4px solid rgba(43, 134, 197, 0.34);
  outline-offset: 4px;
}

.lineup-image-slot {
  display: grid;
  place-items: center;
  min-height: 156px;
  margin: 0 -22px 4px;
  background: #eef1f5;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lineup-image-slot img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
}

.lineup-image-slot img.lineup-image-contain {
  object-fit: contain;
  background: #fff;
}

.lineup-image-slot img.lineup-image-small {
  box-sizing: border-box;
  padding: 56px;
}

.lineup-card h3 {
  color: var(--navy);
  font-size: 20px;
}

.lineup-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.lineup-card dl div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
}

.lineup-card dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.lineup-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lineup-card .price-row dd {
  color: #111;
  font-weight: 800;
}

.product-panel {
  padding: clamp(26px, 5vw, 46px);
  border-left: 6px solid var(--red);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-panel h2 {
  color: var(--navy);
}

.product-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button.secondary.dark {
  border-color: var(--navy);
  color: var(--navy);
}

@media (max-width: 920px) {
  .header-info,
  .header-tel {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .product-search {
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
  }

  .header-main {
    row-gap: 10px;
  }

  .product-search-results {
    right: auto;
    left: 0;
    width: 100%;
  }

  .site-nav {
    display: none;
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-width: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

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

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

  .rental-period-lead,
  .rental-methods,
  .rental-policy,
  .faq-lead-grid,
  .payment-method-grid,
  .delivery-fee-base dl {
    grid-template-columns: 1fr;
  }

  .cancel-fee-table div,
  .faq-fee-table div {
    grid-template-columns: 1fr;
  }

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

  .term-day::after {
    display: none;
  }

  .legal-table div {
    grid-template-columns: 1fr;
  }

  .legal-table span {
    padding-bottom: 8px;
  }

  .legal-table p {
    padding-top: 10px;
  }

  .period-board {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .period-step {
    flex: 0 0 212px;
    min-height: 128px;
    margin-left: -28px;
    padding: 26px 14px 24px 42px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%, 28px 50%);
  }

  .period-step:first-child {
    padding-left: 22px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  }

  .period-step:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 28px 50%);
  }

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

  .message-inner,
  .company-layout,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .service-feature article,
  .service-feature article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-feature article:nth-child(even) img {
    order: 0;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 126px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 126px;
  }

  .header-main,
  .section,
  .message-inner,
  .contact-cta {
    width: min(100% - 24px, 1120px);
  }

  .brand-logo {
    width: 70px;
    height: 46px;
  }

  .brand-name {
    font-size: 16px;
  }

  .product-search input,
  .product-search button {
    height: 40px;
    font-size: 13px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  h1 {
    font-size: 38px;
  }

  .section {
    padding: 52px 0;
  }

  .category-grid,
  .business-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .period-step {
    flex-basis: 196px;
    min-height: 118px;
    padding: 22px 12px 20px 40px;
  }

  .period-step-number {
    width: 82px;
    font-size: 16px;
  }

  .period-step-number strong {
    font-size: 30px;
  }

  .period-step b {
    font-size: 14px;
    line-height: 1.3;
  }

  .period-step b span {
    white-space: nowrap;
  }

  .lineup-card {
    min-width: 0;
  }

  .lineup-card h3,
  .lineup-card dd {
    overflow-wrap: anywhere;
  }

  .news-list li,
  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-cta {
    padding: 28px 20px;
    margin-bottom: 52px;
  }

  .category-detail ul {
    grid-template-columns: 1fr;
  }
}
