:root {
  --navy: #0b2a4a;
  --navy-2: #123f69;
  --green: #2f855a;
  --green-2: #256f4a;
  --ink: #14212c;
  --muted: #5d6b78;
  --line: #dce5e8;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --soft-blue: #edf4f7;
  --soft-green: #eef7f2;
  --shadow: 0 18px 44px rgba(11, 42, 74, 0.11);
  --shadow-soft: 0 10px 24px rgba(11, 42, 74, 0.07);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

.keep-together {
  display: inline-block;
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 232, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark::before {
  content: "T";
  position: absolute;
  top: 1px;
  left: 12px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 23px;
  height: 4px;
  background: var(--green);
  transform: rotate(-34deg);
  transform-origin: right center;
}

.brand-mark span {
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green);
  transform: rotate(-34deg);
}

.brand-text {
  display: grid;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-text small {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

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

.site-nav .nav-contact {
  margin-left: 4px;
  color: #fff;
  background: var(--green);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: #fff;
  background: var(--green-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100vw - 40px));
  margin-left: clamp(28px, 6vw, 112px);
  margin-right: auto;
  padding: 96px 0 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.16;
  font-weight: 850;
}

.hero .lead {
  max-width: 500px;
  margin: 22px 0 0;
  color: #283947;
  font-size: 18px;
  font-weight: 700;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 229, 232, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

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

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

.button-primary:hover {
  background: var(--green-2);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

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

.section-intro {
  border-top: 1px solid var(--line);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.intro-band .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.intro-band p:last-child {
  color: var(--muted);
  max-width: 620px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.35;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

p {
  margin: 0;
}

.prose p + p {
  margin-top: 16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.service-section-visual {
  max-width: 860px;
  aspect-ratio: 16 / 9;
  margin: -4px auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-section-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

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

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

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

.service-card,
.plain-card,
.value-card,
.reason-card,
.contact-panel,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card,
.plain-card,
.reason-card {
  padding: 26px;
}

.service-card p,
.plain-card p,
.reason-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover,
.text-link:hover {
  text-decoration: underline;
}

.icon-box {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.service-card-feature {
  position: relative;
  min-height: 255px;
  overflow: hidden;
}

.service-card-feature::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  background: var(--soft-green);
  border-radius: 50%;
  z-index: 0;
}

.service-card-feature > * {
  position: relative;
  z-index: 1;
}

.icon-calendar::before,
.icon-clock::before,
.icon-truck::before,
.icon-chat::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.icon-calendar::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 19px;
  height: 2px;
  background: #fff;
}

.icon-clock::before {
  border-radius: 50%;
}

.icon-clock::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 14px;
  width: 8px;
  height: 11px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.icon-truck::before {
  inset: 15px 10px 15px 9px;
  border-radius: 3px;
}

.icon-truck::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 10px;
  height: 5px;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
}

.icon-chat::before {
  inset: 12px;
  border-radius: 9px;
}

.icon-chat::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  background: var(--navy);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-20deg);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.area-layout p {
  margin-top: 12px;
  color: var(--muted);
}

.area-lead {
  max-width: 500px;
}

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

.area-list li {
  padding: 15px 12px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.values-preview p {
  margin-top: 14px;
  color: var(--muted);
}

.value-stack {
  display: grid;
  gap: 12px;
}

.reason-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}

.mini-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--green-2);
  background: var(--soft-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.value-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: var(--soft-blue);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.value-stack strong {
  color: var(--navy);
  font-size: 20px;
}

.value-stack span {
  color: var(--muted);
  text-align: right;
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 133, 90, 0.16), transparent 45%),
    var(--navy);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-content .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cta-band .section-kicker,
.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #071d34;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  padding: clamp(72px, 12vw, 132px) 0 clamp(54px, 8vw, 88px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 82% 12%, rgba(47, 133, 90, 0.18), transparent 34%),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.readable-split .prose {
  max-width: 720px;
}

.prose-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.page-visual {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: -38px auto 0;
}

.page-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-page-intro {
  padding-top: 72px;
  background: linear-gradient(180deg, var(--soft-blue) 0%, #fbfdfc 100%);
}

.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.service-intro-copy h1 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.18;
}

.service-intro-copy p:last-child {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.service-main-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-main-visual img {
  width: 100%;
  aspect-ratio: 1491 / 1055;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 901px) {
  .service-main-visual {
    aspect-ratio: 16 / 9;
  }

  .service-main-visual img {
    height: 100%;
    aspect-ratio: auto;
  }
}

.service-page-cards h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.company-page-visual {
  max-width: 980px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.company-page-visual img {
  display: block;
  height: 100%;
  max-height: none;
  object-position: center;
}

.card-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.company-layout,
.contact-layout {
  display: grid;
  gap: clamp(28px, 6vw, 64px);
}

.company-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.company-layout p {
  margin-top: 12px;
  color: var(--muted);
}

.info-table,
.contact-list {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-table div,
.contact-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-top: 1px solid var(--line);
}

.info-table div:first-child,
.contact-list div:first-child {
  border-top: 0;
}

.info-table dt,
.contact-list dt {
  padding: 18px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.info-table dd,
.contact-list dd {
  margin: 0;
  padding: 18px;
}

.service-list {
  display: grid;
  gap: 22px;
}

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

.service-detail {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 0;
}

.service-detail:first-child {
  padding-top: 28px;
}

.service-detail h2 {
  font-size: clamp(24px, 3.5vw, 34px);
}

.service-detail p {
  margin-top: 12px;
  color: var(--muted);
}

.service-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.number {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

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

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

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

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

.values-page-intro {
  padding-top: 84px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.values-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
}

.values-intro-layout > * {
  min-width: 0;
}

.values-intro-copy h1 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(36px, 4.6vw, 50px);
  line-height: 1.16;
  word-break: keep-all;
}

.values-lead {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.values-main-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #eef4f8;
}

.values-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.values-card-heading {
  margin-bottom: 24px;
}

.values-card-heading h2 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
}

.value-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.value-card > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.value-card h2 {
  margin-top: 8px;
  font-size: 22px;
}

.value-card p {
  margin-top: 10px;
  color: var(--muted);
}

.value-card p + p {
  margin-top: 12px;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 92px;
  height: 92px;
  background: rgba(47, 133, 90, 0.08);
  border-radius: 50%;
}

.values-section .section-heading {
  margin-bottom: 36px;
}

.values-closing {
  max-width: 880px;
}

.values-closing p {
  color: var(--navy);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.55;
}

.values-closing p + p {
  margin-top: 14px;
}

.large-copy {
  color: var(--navy);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.45;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-form-primary {
  border-color: rgba(47, 133, 90, 0.42);
  box-shadow: 0 22px 52px rgba(11, 42, 74, 0.13);
}

.contact-panel h2,
.contact-form h2 {
  font-size: 26px;
}

.contact-list {
  margin-top: 18px;
}

.contact-primary > p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-list a {
  color: var(--green-2);
  font-weight: 800;
}

.required,
.optional {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}

.required {
  color: #fff;
  background: var(--green);
}

.optional {
  color: var(--muted);
  background: var(--soft-blue);
}

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

.mail-button {
  width: 100%;
  margin-top: 22px;
}

.contact-checks {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form p {
  margin-top: 8px;
  color: var(--muted);
}

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

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

.field-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #cbd8de;
  border-radius: 8px;
}

.privacy-consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 133, 90, 0.22);
  border-color: var(--green);
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
  font: inherit;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--green-2);
  font-weight: 800;
  scroll-margin-block: 24px;
}

.form-status:empty {
  display: none;
}

.form-status:focus {
  outline: 3px solid rgba(47, 133, 90, 0.3);
  outline-offset: 3px;
}

.form-status:not(:empty) + .button {
  margin-top: 14px;
}

.form-status.is-success {
  padding: 12px 14px;
  color: var(--green-2);
  background: var(--soft-green);
  border: 1px solid rgba(47, 133, 90, 0.25);
  border-radius: 8px;
}

.form-status.is-error {
  padding: 12px 14px;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

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

.contact-support-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-support-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.contact-support-card p {
  margin: 0;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  width: fit-content;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--soft-blue);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.contact-link-tel {
  color: #fff;
  background: var(--navy);
}

.line-button {
  width: fit-content;
}

.contact-line-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: start;
}

.line-qr {
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.line-qr img {
  width: 112px;
  height: auto;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav .nav-contact {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .split,
  .intro-band,
  .area-layout,
  .company-layout,
  .service-intro-layout,
  .values-intro-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.two,
  .card-grid.four,
  .service-showcase,
  .values-grid,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-content,
  .footer-inner {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: var(--container);
    margin-inline: auto;
    padding: 58px 0 68px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero .lead,
  .page-hero p:last-child {
    font-size: 16px;
  }

  .hero-points span {
    width: calc(50% - 5px);
    text-align: center;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-content .button,
  .line-button {
    width: 100%;
  }

  .page-visual {
    margin-top: -24px;
  }

  .page-visual img {
    max-height: 240px;
  }

  .service-page-intro {
    padding-top: 48px;
  }

  .values-page-intro {
    padding-top: 48px;
  }

  .values-page-intro .container,
  .values-section,
  .values-closing {
    width: auto;
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }

  .values-intro-copy,
  .values-lead,
  .values-main-visual,
  .values-grid,
  .value-card {
    min-width: 0;
    max-width: 100%;
  }

  .service-intro-copy h1 {
    font-size: 34px;
  }

  .values-intro-copy h1 {
    font-size: 32px;
    word-break: normal;
  }

  .service-intro-copy p:last-child {
    font-size: 16px;
  }

  .values-lead p {
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .value-card p {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .values-main-visual {
    margin-top: 4px;
  }

  .values-closing p {
    font-size: 23px;
  }

  .company-page-visual img {
    max-height: none;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .value-stack div {
    display: grid;
  }

  .value-stack span {
    text-align: left;
  }

  .info-table div,
  .contact-list div,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail {
    gap: 10px;
  }

  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-form,
  .contact-support-card,
  .service-card,
  .plain-card,
  .value-card,
  .reason-card,
  .prose-card,
  .service-detail,
  .contact-checks,
  .intro-band {
    padding: 22px;
  }

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

  .contact-line-card {
    grid-template-columns: 1fr;
  }

  .line-qr {
    width: fit-content;
  }
}
