:root {
  --color-text: #10233f;
  --color-muted: #5f718a;
  --color-subtle: #7f8fa3;
  --color-line: #dbe7f1;
  --color-bg: #ffffff;
  --color-bg-soft: #f6f9fc;
  --color-bg-blue: #edf7ff;
  --color-primary: #1d72d8;
  --color-primary-dark: #155bb4;
  --color-primary-soft: #eaf4ff;
  --color-danger: #ff4b5c;
  --color-danger-soft: #fff1f3;
  --color-success: #25a95a;
  --color-success-soft: #effaf3;
  --color-orange: #ff8a3d;
  --color-orange-soft: #fff4ea;
  --color-navy: #10233f;
  --color-navy-2: #07182d;
  --shadow-sm: 0 8px 24px rgba(7, 27, 61, .08);
  --shadow-md: 0 18px 44px rgba(7, 27, 61, .13);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  display: block;
  position: relative;
  top: -96px;
  height: 0;
  visibility: hidden;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  background: var(--color-bg);
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(0, 18, 38, .56);
}

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

img,
svg {
  max-width: 100%;
}

svg {
  width: 24px;
  height: 24px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sp-only {
  display: none;
}

.svg-sprite symbol * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
}

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

.brand-logo-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: .08em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.4;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a {
  transition: color .2s ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--color-primary);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link img {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.has-submenu:hover .nav-link img,
.has-submenu:focus-within .nav-link img {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--color-text);
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (min-width: 1081px) {
  .nav-link img {
    transform: rotate(90deg);
  }

  .has-submenu:hover .nav-link img,
  .has-submenu:focus-within .nav-link img {
    transform: rotate(-90deg);
  }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.header-cta {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.header-cta img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.header-cta:hover,
.button:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.button svg:last-child {
  width: 20px;
  height: 20px;
}

.button img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.button img:last-child {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  margin-left: 8px;
}

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

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

.button-ghost:hover {
  color: var(--color-primary-dark);
  background-color: var(--color-primary-soft);
  border-color: var(--color-primary);
}

.button-red {
  background: var(--color-danger);
  border-color: var(--color-danger);
}

.button-red:hover {
  background-color: #d90016;
  border-color: #d90016;
}

.button-outline-red {
  color: var(--color-danger);
  background: #fff;
  border-color: var(--color-danger);
}

.button-outline-red:hover {
  color: #d90016;
  background-color: #fff1f3;
  border-color: #d90016;
}

.button-green {
  background: var(--color-success);
  border-color: var(--color-success);
}

.button-green:hover {
  background-color: #128c31;
  border-color: #128c31;
}

.button-outline-orange {
  color: #ff5f00;
  background: #fff;
  border-color: var(--color-orange);
}

.button-outline-orange:hover {
  color: #e25300;
  background-color: var(--color-orange-soft);
  border-color: var(--color-orange);
}

.hero {
  background: linear-gradient(90deg, #fff 0%, #fff 47%, #f2f7fd 100%);
}

.hero-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(600px, 1fr) minmax(520px, .92fr);
  align-items: center;
  gap: 36px;
  max-width: 1220px;
  min-height: 520px;
  margin: 0 auto;
  padding: 58px 30px 50px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.small-title {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "\\";
  margin-inline: 10px;
}

.eyebrow::after {
  content: "/";
  margin-inline: 10px;
}

.hero h1 {
  margin: 17px 0 22px;
  font-size: clamp(43px, 4.5vw, 58px);
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-main,
.hero h1 em {
  font-size: 1em;
}

.hero-title-sub {
  font-size: .78em;
}

.hero h1 em {
  color: var(--color-primary);
  font-style: normal;
}

.lead {
  max-width: 560px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 600;
}

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

.hero-actions .button {
  flex: 0 0 292px;
  min-width: 0;
  white-space: nowrap;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-notes img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 660px);
  height: 390px;
  min-height: 390px;
  overflow: hidden;
  border-radius: 0 14px 14px 0;
  pointer-events: none;
}

.dummy-laptop,
.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.dummy-laptop {
  filter: drop-shadow(0 22px 22px rgba(7, 27, 61, .18));
}

.hero-image {
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center center;
  filter: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 100%);
}

.hero-single-image {
  background: #fff;
  overflow: hidden;
  padding: 34px 30px 30px;
}

.hero-single-image picture {
  display: block;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.hero-single-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.news-bar {
  padding: 24px 24px 30px;
  background: #fff;
}

.news-inner {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 38px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
}

.news-inner h2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding-right: 34px;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  border-right: 1px solid var(--color-line);
}

.news-inner ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-inner li {
  display: grid;
  grid-template-columns: 108px 78px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  justify-content: center;
  padding: 2px 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  background: var(--color-primary-soft);
  border-radius: 999px;
}

.tag-green {
  color: var(--color-success);
  background: var(--color-success-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.text-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 66px 24px;
}

.section-tint {
  max-width: none;
  padding-inline: 0;
  background: linear-gradient(180deg, #fff, #f9fbff 60%, #fff);
}

.section-tint > * {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

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

.section-heading h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.35;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--color-primary);
  border-radius: 999px;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

.symptom-strip {
  display: grid;
  grid-template-columns: 206px repeat(5, 1fr);
  overflow: hidden;
  margin-bottom: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.symptom-strip strong,
.symptom-strip span {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 18px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.symptom-strip span {
  white-space: nowrap;
}

.symptom-strip strong {
  background: #f9fbff;
}

.symptom-strip span {
  border-left: 1px dashed var(--color-line);
}

.symptom-strip img {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.service-cards,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-cards {
  max-width: 1240px;
  width: calc(100vw - 48px);
  margin-inline: 50%;
  transform: translateX(-50%);
}

.service-card,
.case-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.service-card {
  display: grid;
  position: relative;
  grid-template-rows: auto 150px auto 1fr auto;
  gap: 22px;
  padding-top: 32px;
  padding-bottom: 28px;
}

.service-card.create {
  padding-bottom: 28px;
}

.case-card {
  box-shadow: var(--shadow-sm);
}

.urgent {
  border-color: #ffd4da;
}

.create {
  border-color: #d2e5ff;
}

.support {
  border-color: #cdeed6;
}

.pill,
.case-label {
  justify-self: center;
  padding: 5px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  border-radius: 999px;
}

.pill.red,
.case-label.red {
  background: var(--color-danger);
}

.pill.blue,
.case-label.blue {
  background: var(--color-primary);
}

.pill.green {
  background: var(--color-success);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 150px;
}

.card-main-icon {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  padding: 19px;
  border-radius: 50%;
}

.urgent .card-main-icon {
  background: var(--color-danger-soft);
}

.create .card-main-icon {
  background: var(--color-primary-soft);
}

.support .card-main-icon {
  background: var(--color-success-soft);
}

.card-title h3 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 31px;
  line-height: 1.2;
  white-space: nowrap;
}

.urgent .card-title h3 {
  color: var(--color-danger);
}

.support .card-title h3 {
  color: var(--color-success);
}

.service-card p,
.case-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 7px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  background: #f8fbff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  line-height: 1.35;
}

.card-note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  margin: 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.service-card > .button {
  order: 5;
  align-self: end;
}

.support-banner,
.more-box,
.contact-band {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
}

.support-banner {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: 28px;
  max-width: 1240px;
  width: calc(100vw - 48px);
  min-height: 132px;
  margin-top: 28px;
  margin-inline: 50%;
  padding: 26px 24px 22px 260px;
  overflow: visible;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fff7e7 0%, #fffdf9 100%);
  border: 0;
}

.support-banner h3,
.more-box h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.support-banner h3 {
  white-space: nowrap;
}

.support-banner p,
.more-box p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.support-banner-person {
  position: absolute;
  bottom: -2px;
  left: 58px;
  width: 178px;
  height: 148px;
  object-fit: contain;
  object-position: left bottom;
}

.support-banner-copy {
  align-self: center;
}

.support-banner .button {
  min-height: 66px;
  color: var(--color-orange);
  font-size: 18px;
  background: #fff;
  border-color: var(--color-orange);
  border-radius: var(--radius-md);
  transform: none;
}

.support-banner .button:hover {
  color: #e25300;
  background-color: var(--color-orange-soft);
  border-color: var(--color-orange);
}

.case-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding-top: 86px;
}

.case-icon {
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
}

.case-icon img {
  width: 30px;
  height: 30px;
}

.case-icon.red {
  background: radial-gradient(circle at 32% 24%, #ff747b, #f0444f 72%);
}

.case-icon.blue {
  background: radial-gradient(circle at 32% 24%, #2d82ff, #0057d9 72%);
}

.case-label {
  position: absolute;
  top: 31px;
  left: 92px;
  justify-self: auto;
  padding: 5px 15px;
  color: #f0444f;
  font-size: 13px;
  background: var(--color-danger-soft);
}

.case-label.red {
  color: #f0444f;
  background: #ffe8eb;
}

.case-label.blue {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.case-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.45;
  text-align: left;
}

.case-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  padding-top: 16px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid var(--color-line);
}

.case-meta img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.case-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.more-box {
  grid-template-columns: 82px 1fr 280px;
  max-width: 990px;
  background: #fff;
  border: 1px dashed #bdd4f5;
}

.more-box > img {
  width: 64px;
  height: 64px;
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(240px, 300px);
  gap: 52px;
  align-items: end;
}

.reason-section .section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.reason-section .small-title {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 16px;
}

.reason-section .small-title::before,
.reason-section .small-title::after {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.reason-section .section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 50px);
  letter-spacing: .08em;
}

.reason-section .section-heading h2::after {
  display: none;
}

.reason-section .section-heading p:not(.small-title) {
  color: var(--color-text);
  line-height: 1.8;
}

.reason-list {
  display: grid;
}

.reason-list article {
  display: grid;
  grid-template-columns: 42px 280px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--color-line);
}

.reason-list article:first-child {
  border-top: 0;
}

.reason-list article img {
  width: 42px;
  height: 42px;
}

.reason-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  white-space: nowrap;
}

.reason-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  border-left: 1px solid var(--color-line);
  padding-left: 24px;
}

.reason-visual {
  display: grid;
  min-height: 330px;
  place-items: end center;
}

.reason-visual img {
  display: block;
  width: min(100%, 315px);
  height: auto;
}

.contact-band {
  grid-template-columns: minmax(330px, 1fr) minmax(300px, 360px) minmax(300px, 360px);
  max-width: var(--container);
  margin: 0 auto 36px;
  padding: 30px;
  background: linear-gradient(135deg, #f4f8ff 0%, #f8fbff 100%);
  border: 0;
}

.contact-band h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.45;
  white-space: nowrap;
}

.contact-band p {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 20px 0 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.contact-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.contact-notes img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  min-height: 136px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: var(--radius-md);
}

.contact-card.blue {
  color: var(--color-primary);
}

.contact-card.orange {
  color: var(--color-orange);
}

.contact-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
}

.contact-card-icon img {
  width: 29px;
  height: 29px;
}

.contact-card.blue .contact-card-icon {
  background: var(--color-primary);
}

.contact-card.orange .contact-card-icon {
  background: var(--color-orange);
}

.contact-card > span:not(.contact-card-icon) {
  display: grid;
  gap: 4px;
}

.contact-card small {
  font-size: 12px;
  font-weight: 800;
}

.contact-card.blue small {
  color: var(--color-primary);
}

.contact-card.orange small {
  color: var(--color-orange);
}

.contact-card strong {
  font-size: 19px;
  line-height: 1.35;
  white-space: nowrap;
}

.contact-card em {
  color: var(--color-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.contact-card-arrow {
  justify-self: end;
  width: 24px;
  height: 24px;
}

.service-page {
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 26px 24px 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.lower-hero {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  width: 100vw;
  margin-inline: 50%;
  padding: 42px 32px 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92) 0%, rgba(234, 244, 255, .88) 50%, rgba(209, 229, 255, .8) 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, .32) 58% 70%, transparent 70% 100%);
  border-radius: 0;
  transform: translateX(-50%);
}

.lower-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(29, 114, 216, .08) 64% 78%, transparent 78%),
    linear-gradient(135deg, transparent 0 78%, rgba(255, 255, 255, .42) 78% 90%, transparent 90%);
  pointer-events: none;
}

.lower-hero > div {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.lower-hero h1 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.2;
}

.lower-hero p {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.lower-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 560px);
  margin-top: 24px;
  padding: 14px 18px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
}

.lower-hero-note img {
  width: 28px;
  height: 28px;
}

.service-block {
  margin-top: 38px;
}

.lower-section-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--color-navy);
  font-size: 22px;
  line-height: 1.35;
}

.lower-section-title::after {
  content: "";
  height: 1px;
  background: var(--color-line);
}

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

.trouble-card,
.lower-case-card,
.faq-contact,
.flow-steps li {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.trouble-card {
  padding: 22px 20px 20px;
}

.trouble-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.trouble-card-title img {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}

.trouble-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.trouble-card ul {
  display: grid;
  gap: 7px;
  padding-left: 1em;
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
}

.scope-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.scope-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.scope-table th,
.scope-table td {
  padding: 12px 18px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.scope-table tr > *:last-child {
  border-right: 0;
}

.scope-table tbody tr:last-child > * {
  border-bottom: 0;
}

.scope-table thead th {
  color: var(--color-navy);
  background: var(--color-bg-soft);
  text-align: center;
}

.scope-table tbody th {
  width: 34%;
  color: var(--color-primary);
  text-align: left;
  white-space: nowrap;
}

.scope-table tbody th img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  vertical-align: middle;
}

.scope-table td {
  color: var(--color-text);
  font-weight: 600;
  text-align: left;
}

.table-note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.lower-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lower-case-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border-color: #cfe0f3;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lower-case-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.case-tag {
  justify-self: start;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.case-tag.red {
  color: var(--color-danger);
  background: var(--color-danger-soft);
}

.case-tag.green {
  color: var(--color-success);
  background: var(--color-success-soft);
}

.case-tag.blue {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.lower-case-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 19px;
  line-height: 1.5;
}

.lower-case-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px 12px;
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
}

.lower-case-card dl div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.lower-case-card dt {
  color: var(--color-navy);
}

.lower-case-card dd {
  margin: 0;
}

.lower-case-card h4 {
  margin: 2px 0 -6px;
  padding-left: 10px;
  color: var(--color-primary);
  font-size: 13px;
  border-left: 3px solid var(--color-primary);
}

.lower-case-card h4::before {
  content: none;
}

.lower-case-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.lower-more-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 20px auto 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
}

.service-block .lower-more-link {
  display: flex;
  justify-content: center;
}

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

.flow-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 174px;
  padding: 26px 16px 18px;
  text-align: center;
}

.flow-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: translateY(-50%) rotate(45deg);
}

.flow-steps li > span:first-child {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: var(--color-primary);
  border-radius: 50%;
}

.flow-icon {
  position: static;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.flow-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.flow-steps h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 15px;
}

.flow-steps p {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.faq-list {
  display: grid;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.faq-list details {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 17px 54px 17px 20px;
  color: var(--color-navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: translateY(-70%) rotate(45deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.faq-contact {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 34px 38px;
  background: linear-gradient(135deg, #f7fbff 0%, #edf5ff 100%);
}

.faq-contact > img {
  width: 64px;
  height: 64px;
}

.faq-contact h3 {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.55;
}

.faq-contact p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.faq-contact .button {
  grid-column: 1 / -1;
  min-height: 50px;
  margin-top: 8px;
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-primary);
}

.service-page .lower-contact-cta {
  width: 100%;
  max-width: none;
  margin-top: 64px;
  margin-inline: 0;
  margin-bottom: 0;
  transform: none;
}

.price-page {
  padding-bottom: 72px;
}

.price-page .lower-hero {
  margin-bottom: 38px;
}

.price-page .lower-hero-note {
  max-width: 780px;
}

.price-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.price-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 97, 230, .1);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 58, 140, .08);
}

.compact-heading {
  margin-bottom: 26px;
  text-align: center;
}

.compact-heading h2 {
  font-size: 24px;
}

.compact-heading h2::after {
  margin-inline: auto;
}

.compact-heading p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.price-choice {
  margin-top: 0;
  padding-block: 18px 26px;
}

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

.price-choice-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 222px;
  padding: 32px 22px 40px;
  color: var(--color-navy);
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  transition: transform .2s ease, border-color .2s ease;
}

.price-choice-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.price-choice-card.red::after {
  border-color: var(--color-danger);
}

.price-choice-card.blue::after {
  border-color: var(--color-primary);
}

.price-choice-card.green::after {
  border-color: var(--color-success);
}

.price-choice-card:hover {
  transform: translateY(-3px);
}

.price-choice-card.red {
  border-color: rgba(255, 37, 59, .22);
}

.price-choice-card.blue {
  border-color: rgba(0, 97, 230, .2);
}

.price-choice-card.green {
  border-color: rgba(22, 163, 74, .22);
}

.price-choice-card img {
  width: 58px;
  height: 58px;
  padding: 14px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.price-choice-card.red img {
  background: #fff1f3;
}

.price-choice-card.green img {
  background: #edfdf4;
}

.price-choice-card h3 {
  margin: 16px 0 4px;
  font-size: 20px;
  line-height: 1.45;
}

.price-choice-card.red h3 {
  color: var(--color-danger);
}

.price-choice-card.blue h3 {
  color: var(--color-primary);
}

.price-choice-card.green h3 {
  color: var(--color-success);
}

.price-choice-card strong {
  font-size: 13px;
}

.price-choice-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.price-section {
  position: relative;
  width: 100vw;
  margin-top: 34px;
  margin-inline: 50%;
  padding: 56px 24px;
  border-radius: 0;
  overflow: hidden;
  transform: translateX(-50%);
}

.price-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.price-section > * {
  position: relative;
  z-index: 1;
}

.price-section-red {
  background: linear-gradient(180deg, #fff7f8 0%, #fff 78%);
}

.price-section-blue {
  background: linear-gradient(180deg, #f5faff 0%, #fff 88%);
}

.price-section-green {
  background: linear-gradient(180deg, #f5fff9 0%, #fff 88%);
}

.price-section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.price-section-heading img {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.price-section-heading h2 {
  margin: 16px 0 2px;
  color: var(--color-navy);
  font-size: 38px;
  line-height: 1.25;
}

.price-section-red .price-section-heading h2 {
  color: var(--color-navy);
}

.price-section-red .price-section-heading img {
  box-shadow: none;
}

.price-section-red .price-section-heading h2 span {
  display: inline-block;
  color: var(--color-danger);
  font-size: 1.08em;
}

.price-section-blue .price-section-heading h2 span {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.08em;
}

.price-section-green .price-section-heading h2 {
  color: var(--color-navy);
}

.price-section-green .price-section-heading h2 span {
  display: inline-block;
  color: var(--color-success);
  font-size: 1.08em;
}

.price-section-heading p {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
}

.price-section-red .price-section-heading p {
  color: var(--color-danger);
}

.price-section-green .price-section-heading p {
  color: var(--color-success);
}

.price-section-heading > span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.urgent-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.price-panel,
.price-plan-box,
.option-box {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.price-panel {
  padding: 24px;
}

.price-section-red .price-panel {
  border-color: #ffc8cf;
}

.price-panel h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--color-danger);
  font-size: 16px;
}

.price-yen-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-danger);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
}

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

.price-check-list li,
.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.price-check-list li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("../img/common/icon_check_blue.svg") center / contain no-repeat;
}

.price-check-list.red li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  color: var(--color-danger);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--color-danger);
  border-radius: 50%;
}

.price-estimate-list {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ffd9dd;
  border-radius: 8px;
}

.price-estimate-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid #ffd9dd;
}

.price-estimate-list div:last-child {
  border-bottom: 0;
}

.price-estimate-list dt,
.price-estimate-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.price-estimate-list dd {
  color: var(--color-danger);
}

.price-note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.price-feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1060px;
  margin: 22px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.price-feature-strip article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--color-line);
}

.price-feature-strip article:last-child {
  border-right: 0;
}

.price-feature-strip img {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.price-feature-strip h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 13px;
  line-height: 1.45;
}

.price-feature-strip p {
  margin: 0;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

.green-strip h3 {
  color: var(--color-success);
}

.urgent-feature-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border-color: #ffc8cf;
}

.price-section-red .price-panel,
.price-section-red .urgent-feature-table,
.price-section-red .price-urgent-cta {
  box-shadow: none;
}

.price-section-blue .price-plan-box,
.price-section-blue .plan-card,
.price-section-blue .option-box,
.price-section-green .plan-card,
.price-section-green .support-feature-table {
  box-shadow: none;
}

.price-section-blue .price-plan-box,
.price-section-blue .plan-card,
.price-section-blue .option-box {
  border-color: rgba(0, 97, 230, .28);
}

.price-section-blue .plan-card.recommended {
  border-color: var(--color-primary);
}

.price-section-green .plan-card,
.price-section-green .support-feature-table {
  border-color: rgba(22, 163, 74, .35);
}

.price-section-green .plan-card.recommended {
  border-color: var(--color-success);
}

.urgent-feature-table article {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) 1fr;
  align-items: center;
  justify-items: stretch;
  gap: 20px;
  padding: 18px 22px;
  text-align: left;
  border-right: 0;
  border-bottom: 1px solid #ffe0e4;
}

.urgent-feature-table article:last-child {
  border-bottom: 0;
}

.urgent-feature-table img {
  display: none;
}

.urgent-feature-table h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-danger);
  font-size: 16px;
  line-height: 1.55;
}

.urgent-feature-table h3::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--color-danger);
  border-radius: 50%;
}

.urgent-feature-table p {
  margin: 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.support-feature-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border-color: rgba(22, 163, 74, .35);
}

.support-feature-table article {
  display: grid;
  grid-template-columns: minmax(170px, .34fr) 1fr;
  align-items: center;
  justify-items: stretch;
  gap: 20px;
  padding: 18px 22px;
  text-align: left;
  border-right: 0;
  border-bottom: 1px solid rgba(22, 163, 74, .18);
}

.support-feature-table article:last-child {
  border-bottom: 0;
}

.support-feature-table img {
  display: none;
}

.support-feature-table h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-success);
  font-size: 16px;
  line-height: 1.55;
}

.support-feature-table h3::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--color-success);
  border-radius: 50%;
}

.support-feature-table p {
  margin: 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.price-urgent-cta {
  display: grid;
  grid-template-columns: 70px 1fr minmax(260px, .8fr) minmax(190px, .45fr);
  align-items: center;
  gap: 18px;
  max-width: 1060px;
  margin: 24px auto 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ffc8cf;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.price-urgent-cta > img {
  width: 60px;
  height: 60px;
  padding: 14px;
  background: #fff1f3;
  border-radius: 50%;
}

.price-urgent-cta small {
  display: block;
  color: var(--color-navy);
  font-weight: 900;
}

.price-urgent-cta strong {
  display: block;
  color: var(--color-navy);
  font-size: 23px;
  line-height: 1.25;
}

.price-urgent-cta strong span {
  color: var(--color-danger);
}

.price-urgent-cta .urgent-minutes b {
  font-size: 1.65em;
  line-height: 1;
}

.price-urgent-cta p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.price-plan-box {
  max-width: 1060px;
  margin: 0 auto 28px;
  padding: 28px 24px 30px;
  border-color: rgba(0, 97, 230, .18);
}

.price-plan-box h3,
.option-box h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
}

.price-plan-box h3 span {
  margin-left: 12px;
  color: var(--color-navy);
  font-size: 15px;
}

.price-plan-box > p {
  margin: 10px 0 24px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

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

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 318px;
  padding: 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}

.plan-card.recommended {
  border-color: var(--color-primary);
  box-shadow: 0 12px 36px rgba(0, 97, 230, .12);
}

.plan-card.green.recommended {
  border-color: var(--color-success);
  box-shadow: 0 12px 36px rgba(22, 163, 74, .12);
}

.recommend-label {
  position: absolute;
  top: -12px;
  left: 50%;
  min-width: 112px;
  padding: 4px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--color-primary);
  border-radius: 999px;
  transform: translateX(-50%);
}

.recommend-label.green {
  min-width: 132px;
  background: var(--color-success);
}

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

.plan-card > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1.1;
}

.plan-card.green > strong {
  color: var(--color-success);
}

.plan-card > strong span {
  font-size: 14px;
}

.plan-card > p {
  min-height: 48px;
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px 0 0;
  text-align: left;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.plan-card.green li::before {
  background-image: url("../img/common/icon_shield_green.svg");
}

.price-sim-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: min(640px, 100%);
  min-height: 54px;
  margin: 26px auto 0;
  padding: 12px 22px;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.5;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
}

.option-box {
  max-width: 1060px;
  margin: 0 auto;
  padding: 22px 24px 24px;
  border-color: rgba(0, 97, 230, .18);
}

.option-box h3 {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  background: var(--color-primary-soft);
  border-radius: 999px;
}

.option-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.option-box li {
  padding: 8px 12px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.option-box p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.support-plan-grid {
  max-width: 1060px;
  margin: 0 auto;
}

.about-page {
  padding-bottom: 72px;
}

.about-section {
  margin-top: 62px;
}

.about-section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.about-section-head h2 {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--color-navy);
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: .03em;
}

.about-section-head h2::before {
  content: "";
  position: absolute;
  top: .18em;
  left: 0;
  width: 4px;
  height: 1.2em;
  background: var(--color-primary);
  border-radius: 999px;
}

.about-section-head p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.about-philosophy {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) 1.24fr;
  gap: clamp(46px, 8vw, 104px);
  align-items: start;
}

.about-philosophy .about-section-head {
  position: sticky;
  top: 108px;
}

.about-thoughts {
  position: relative;
  display: grid;
  gap: 34px;
}

.about-thoughts::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 104px;
  width: 1px;
  background: rgba(0, 97, 230, .22);
}

.about-thoughts article {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 70px;
  align-items: center;
}

.about-thoughts article::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 104px;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-thoughts img {
  width: 76px;
  height: 76px;
  padding: 18px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.about-thoughts h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.6;
}

.about-thoughts p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.about-scope {
  width: 100vw;
  margin-inline: 50%;
  padding: 62px 24px;
  background: linear-gradient(180deg, #f4f9ff 0%, #fff 100%);
  transform: translateX(-50%);
}

.about-scope > * {
  max-width: var(--container);
  margin-inline: auto;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-service-grid a {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 24px 30px;
  color: var(--color-navy);
  border-right: 1px solid var(--color-line);
}

.about-service-grid a:last-child {
  border-right: 0;
}

.about-service-grid img {
  width: 58px;
  height: 58px;
  padding: 15px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.about-service-grid h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.45;
}

.about-service-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.about-service-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
}

.about-service-grid span::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_arrow_right_blue.svg") center / contain no-repeat;
}

.about-extra-box {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 26px 32px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.about-extra-box strong {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.8;
}

.about-extra-box strong span {
  display: block;
}

.about-extra-box ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-extra-box li {
  position: relative;
  padding-left: 26px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.about-extra-box li::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../img/common/icon_check_circle_blue.svg") center / contain no-repeat;
}

.about-values-layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) 1.28fr;
  gap: clamp(42px, 6vw, 72px);
  align-items: start;
}

.about-values-intro {
  position: relative;
  display: grid;
  gap: 24px;
}

.about-values-lead {
  margin: 0;
  color: var(--color-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: .06em;
}

.about-values-lead span {
  color: var(--color-primary);
}

.about-values-intro > p:not(.about-values-lead) {
  margin: 0;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.2;
}

.about-values-intro figure {
  position: relative;
  width: min(100%, 520px);
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 0 0 58% 0 / 0 0 34% 0;
}

.about-values-intro figure::after {
  display: none;
}

.about-values-intro figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-value-list article {
  min-height: 266px;
  padding: 18px 38px 28px;
  border-right: 1px dashed rgba(0, 97, 230, .28);
  border-bottom: 1px dashed rgba(0, 97, 230, .28);
}

.about-value-list article:nth-child(3) {
  border-right: 0;
}

.about-value-list article:nth-child(n+4) {
  border-bottom: 0;
}

.about-value-list article:nth-child(5) {
  border-right: 0;
}

.about-value-person {
  display: grid;
  place-items: center;
  min-height: 312px;
  padding: 18px 24px 0;
}

.about-value-person img {
  width: min(100%, 250px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 42% 58%;
  border-radius: 50%;
}

.about-value-meta {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.about-value-meta span {
  color: var(--color-primary);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
}

.about-value-list h3 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: 18px;
  line-height: 1.65;
}

.about-value-list h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 18px;
  background: var(--color-primary);
  border-radius: 999px;
}

.about-value-list p {
  margin: 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 2.1;
}

.about-values {
  width: min(1560px, calc(100vw - 96px));
  margin-inline: 50%;
  transform: translateX(-50%);
}

.about-values .about-section-head h2 {
  font-size: 40px;
}

.about-values-layout {
  grid-template-columns: minmax(420px, .62fr) 1.38fr;
  gap: clamp(64px, 7vw, 96px);
}

.about-values-lead {
  font-size: 31px;
}

.about-values-intro figure {
  width: min(100%, 560px);
  margin-top: 30px;
}

.about-value-list article {
  min-height: 312px;
  padding: 28px 38px 34px;
}

.about-value-meta {
  gap: 24px;
  margin-bottom: 26px;
}

.about-value-meta span {
  font-size: 48px;
}

.about-value-list h3 {
  font-size: 19px;
}

.about-values-message {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding: 28px 56px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.8;
  background: #f2f7ff;
  border-radius: var(--radius-md);
}

.about-values-message::before {
  content: "";
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  background: var(--color-primary) url("../img/common/icon_about_light_white.svg") center / 34px 34px no-repeat;
  border-radius: 50%;
}

.about-values-message span {
  display: block;
  padding-left: 32px;
  border-left: 1px solid rgba(0, 97, 230, .28);
}

.about-profile {
  padding: 34px 42px 42px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 100%);
  border: 1px solid rgba(0, 97, 230, .12);
  border-radius: var(--radius-md);
}

.about-profile-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px 42px;
  align-items: center;
}

.about-avatar {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  background: var(--color-primary-soft);
  border-radius: 50%;
}

.about-avatar img {
  width: 82px;
  height: 82px;
}

.about-profile-copy h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 26px;
  letter-spacing: .08em;
}

.about-profile-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.about-profile-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 12px 0 0;
}

.about-profile-list div {
  padding: 0 24px;
  border-right: 1px solid var(--color-line);
}

.about-profile-list div:first-child {
  padding-left: 0;
}

.about-profile-list div:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-profile-list dt {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
}

.about-profile-list dd {
  margin: 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.about-profile-list dd a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-profile-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 24px 18px 28px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 2;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: none;
  position: relative;
}

.about-profile-note::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 18px;
  width: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.about-info-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  margin-top: 8px;
}

.about-info-table,
.about-career-box {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.about-info-table {
  margin: 0;
  overflow: hidden;
}

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

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

.about-info-table dt,
.about-info-table dd {
  margin: 0;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
}

.about-info-table dt {
  color: var(--color-primary);
  font-weight: 900;
  background: #f7fbff;
}

.about-info-table dd {
  color: var(--color-navy);
  font-weight: 800;
}

.about-career-box {
  padding: 24px;
}

.about-career-box h3 {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: 20px;
}

.about-career-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-career-box li {
  position: relative;
  padding-left: 24px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.about-career-box li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
}

.about-career-box p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer {
  color: #d7e7ff;
  background: linear-gradient(135deg, #174a82 0%, #12385f 48%, #0d2746 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(180px, .8fr));
  gap: clamp(44px, 7vw, 88px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 24px 52px;
}

.site-footer .brand {
  align-items: center;
  min-width: 0;
}

.site-footer .brand-logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter: brightness(0) invert(1);
}

.brand.light strong {
  color: #fff;
}

.brand.light small {
  color: #a9c0de;
}

.footer-brand p {
  margin: 22px 0;
  color: #b8cce7;
  font-size: 14px;
}

address {
  display: grid;
  gap: 14px;
  font-style: normal;
}

address > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-weight: 800;
  line-height: 1.45;
}

address > span > span {
  min-width: 0;
}

address > span:first-child > span,
address > span:nth-child(2) > span {
  white-space: nowrap;
}

address img {
  width: 34px;
  height: 34px;
  padding: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

address small {
  display: block;
  margin-top: 3px;
  color: #9eb5d2;
  font-weight: 600;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.footer-col h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 12px;
  background: var(--color-primary);
}

.footer-col a {
  display: inline-grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #b8cce7;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: .35em;
  background: url("../img/common/icon_chevron_blue.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(770%) hue-rotate(174deg) brightness(88%) contrast(85%);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
  color: #9eb5d2;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .global-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.is-menu-open::after {
    display: none;
  }

  .site-header.is-menu-open .global-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    z-index: 30;
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    width: 100vw;
    padding: 14px 18px 18px;
    color: var(--color-text);
    background: #fff;
    border: 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    text-align: center;
    white-space: normal;
    transform: translateX(-50%);
  }

  .site-header.is-menu-open .global-nav > a,
  .site-header.is-menu-open .nav-link {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px;
    border-radius: var(--radius-sm);
  }

  .site-header.is-menu-open .nav-link img {
    position: absolute;
    right: 18px;
  }

  .site-header.is-menu-open .global-nav > a:hover,
  .site-header.is-menu-open .global-nav > a:focus-visible,
  .site-header.is-menu-open .nav-link:hover,
  .site-header.is-menu-open .nav-link:focus-visible {
    background: var(--color-primary-soft);
  }

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

  .site-header.is-menu-open .submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.is-menu-open .submenu::before {
    display: none;
  }

  .site-header.is-menu-open .submenu a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
    height: auto;
    min-height: auto;
    border-radius: var(--radius-lg);
  }

  .dummy-laptop {
    display: block;
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-image {
    max-width: 720px;
    margin-inline: auto;
    height: auto;
  }

  .symptom-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .symptom-strip strong {
    grid-column: 1 / -1;
  }

  .service-cards,
  .case-grid,
  .reason-layout,
  .contact-band,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-cards {
    width: 100%;
    margin-inline: 0;
    transform: none;
  }

  .support-banner {
    width: 100%;
    margin-inline: 0;
    transform: none;
  }

  .reason-layout {
    gap: 28px;
  }

  .reason-list article {
    grid-template-columns: 38px 1fr;
  }

  .reason-list h3 {
    white-space: normal;
  }

  .reason-list p {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .reason-visual img {
    width: min(100%, 280px);
  }

  .contact-band > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .site-header.is-menu-open::after {
    inset: 68px 0 0;
  }

  .brand small,
  .header-cta svg,
  .header-cta img {
    display: none;
  }

  .brand-mark,
  .brand-logo-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 18px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-inner {
    padding: 32px 18px 42px;
  }

  .hero-single-image {
    padding: 0 0 24px;
  }

  .hero-single-image picture {
    max-width: none;
    border-radius: 0;
  }

  .hero-copy,
  .service-card,
  .case-card,
  .contact-card,
  .footer-brand,
  .footer-col {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(27px, 7.7vw, 33px);
    line-height: 1.32;
  }

  .hero-title-line {
    display: block;
  }

  .lead {
    max-width: none;
    font-size: 15px;
  }

  .eyebrow {
    font-size: 12px;
  }

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

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .news-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .news-inner h2 {
    align-self: auto;
    padding-right: 0;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .news-inner li {
    grid-template-columns: 94px 70px 1fr;
    column-gap: 14px;
    row-gap: 8px;
  }

  .news-inner li a {
    grid-column: 1 / -1;
  }

  .news-inner .text-link {
    justify-self: end;
  }

  .section {
    padding: 54px 18px;
  }

  .section-tint > * {
    padding-inline: 18px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .small-title {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .symptom-strip,
  .service-cards,
  .case-grid,
  .support-banner,
  .more-box,
  .reason-layout,
  .contact-band,
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .symptom-strip {
    overflow: hidden;
  }

  .symptom-strip span {
    justify-content: flex-start;
    min-height: 72px;
    padding-inline: 18px;
    text-align: left;
    white-space: nowrap;
    border-left: 0;
    border-top: 1px dashed var(--color-line);
  }

  .symptom-strip span br {
    display: none;
  }

  .symptom-strip strong {
    min-height: 68px;
    padding-inline: 18px;
    text-align: left;
  }

  .service-card,
  .case-card {
    padding: 22px;
  }

  .service-card {
    grid-template-rows: auto;
    gap: 18px;
  }

  .case-card {
    flex: 0 0 min(82vw, 320px);
    padding-top: 78px;
    scroll-snap-align: start;
  }

  .case-card h3 {
    font-size: 23px;
  }

  .case-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .case-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card.create {
    padding-bottom: 22px;
  }

  .card-note {
    position: static;
    margin: -8px 0 0;
  }

  .card-title {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 16px;
    min-height: 0;
  }

  .card-main-icon {
    display: none;
  }

  .card-title h3 {
    font-size: 29px;
    text-align: center;
    white-space: normal;
  }

  .mini-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mini-list li {
    min-height: 54px;
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .mini-list li br {
    display: none;
  }

  .support-banner {
    padding: 18px;
  }

  .support-banner h3 {
    white-space: normal;
  }

  .support-banner-person {
    display: none;
  }

  .support-banner .button {
    width: 100%;
    min-height: 58px;
    font-size: 15px;
  }

  .more-box {
    text-align: center;
  }

  .more-box p {
    font-size: 13px;
  }

  .sp-only {
    display: block;
  }

  .more-box > img {
    justify-self: center;
  }

  .reason-list article {
    grid-template-columns: 34px 1fr;
  }

  .reason-list article img {
    width: 34px;
    height: 34px;
  }

  .reason-list article p {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .reason-visual {
    min-height: 230px;
  }

  .contact-band {
    margin-inline: 18px;
    padding: 20px;
  }

  .contact-band h2 {
    font-size: 22px;
    white-space: nowrap;
  }

  .contact-band p {
    font-size: 14px;
  }

  .contact-card {
    grid-template-columns: 46px 1fr 20px;
    min-height: 112px;
    gap: 12px;
    padding: 18px 14px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
  }

  .contact-card-icon img {
    width: 26px;
    height: 26px;
  }

  .contact-card strong {
    white-space: nowrap;
  }

  .contact-card small,
  .contact-card em {
    white-space: nowrap;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    padding: 42px 24px 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin: 16px 0;
  }

  .footer-col {
    gap: 8px;
  }

  .footer-col h2 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .footer-col h2::after {
    margin-top: 8px;
  }

  .footer-col a {
    gap: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
    padding: 20px 24px 26px;
  }

  .footer-bottom nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    width: 100%;
    font-size: 12px;
  }
}

@media (max-width: 1080px) {
  .service-page {
    padding-top: 22px;
  }

  .lower-hero {
    padding: 38px 28px 30px;
  }

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

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

  .lower-case-grid .lower-case-card:last-child {
    grid-column: 1 / -1;
  }

  .price-choice-grid,
  .urgent-price-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-choice-card:last-child,
  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .support-plan-grid .plan-card:last-child {
    grid-column: auto;
  }

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

  .price-feature-strip article:nth-child(3n) {
    border-right: 0;
  }

  .price-urgent-cta {
    grid-template-columns: 64px 1fr;
  }

  .price-urgent-cta .button {
    width: 100%;
  }

  .about-philosophy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-philosophy .about-section-head {
    position: static;
  }

  .about-values {
    width: auto;
    margin-inline: 0;
    transform: none;
  }

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

  .about-service-grid a {
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .about-service-grid a:nth-child(2n) {
    border-right: 0;
  }

  .about-service-grid a:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .about-extra-box,
  .about-values-layout,
  .about-profile-card,
  .about-profile-list {
    grid-template-columns: 1fr;
  }

  .about-info-layout {
    grid-template-columns: 1fr;
  }

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

  .about-value-list article:nth-child(2n),
  .about-value-list article:nth-child(3) {
    border-right: 0;
  }

  .about-value-list article:nth-child(3) {
    border-right: 1px dashed rgba(0, 97, 230, .28);
  }

  .about-value-list article:nth-child(4) {
    border-bottom: 0;
  }

  .about-value-list article:last-child {
    grid-column: auto;
    max-width: 360px;
    border-right: 0;
  }

  .about-value-person {
    min-height: 240px;
    padding: 18px 24px 0;
  }

  .about-profile-list div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-profile-list div:last-child {
    border-bottom: 0;
  }

  .flow-steps {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .flow-steps::-webkit-scrollbar {
    display: none;
  }

  .flow-steps li {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .service-page {
    padding: 16px 18px 44px;
  }

  .breadcrumb {
    gap: 8px;
    font-size: 12px;
    line-height: 1.6;
  }

  .lower-hero {
    min-height: auto;
    padding: 30px 20px 24px;
  }

  .lower-hero h1 {
    font-size: 29px;
  }

  .lower-hero p {
    font-size: 14px;
  }

  .lower-hero p br {
    display: none;
  }

  .lower-hero-note {
    align-items: flex-start;
    min-width: 0;
    padding: 13px 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .lower-hero-note img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .price-page {
    padding-bottom: 44px;
  }

  .price-page .lower-hero {
    margin-bottom: 34px;
  }

  .price-hero-points {
    gap: 8px;
  }

  .price-hero-points span {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .service-block {
    margin-top: 36px;
  }

  .lower-section-title {
    gap: 14px;
    font-size: 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .trouble-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .trouble-grid::-webkit-scrollbar {
    display: none;
  }

  .trouble-card {
    flex: 0 0 min(82vw, 330px);
    padding: 20px 18px;
    scroll-snap-align: start;
  }

  .trouble-card h3 {
    margin-top: 0;
  }

  .scope-table-wrap {
    margin-inline: -18px;
    overflow-x: auto;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .scope-table {
    min-width: 620px;
    font-size: 13px;
  }

  .scope-table thead {
    display: table-header-group;
  }

  .scope-table th,
  .scope-table td {
    padding: 11px 14px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .scope-table tbody th {
    width: 38%;
    white-space: nowrap;
  }

  .scope-table td {
    line-height: 1.6;
  }

  .lower-case-card {
    flex: 0 0 min(86vw, 340px);
    padding: 20px 18px;
    scroll-snap-align: start;
  }

  .lower-case-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .lower-case-grid::-webkit-scrollbar {
    display: none;
  }

  .lower-case-grid .lower-case-card:last-child {
    grid-column: auto;
  }

  .lower-case-card:hover {
    box-shadow: none;
    transform: none;
  }

  .compact-heading {
    margin-bottom: 20px;
  }

  .compact-heading h2 {
    font-size: 21px;
  }

  .price-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .price-choice {
    padding-block: 6px 14px;
  }

  .price-choice-grid::-webkit-scrollbar {
    display: none;
  }

  .price-choice-card,
  .price-choice-card:last-child {
    grid-column: auto;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    justify-items: start;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 16px 18px;
    text-align: left;
    row-gap: 4px;
  }

  .price-choice-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
  }

  .price-choice-card img {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .price-choice-card strong {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    line-height: 1.35;
  }

  .price-choice-card p {
    display: none;
  }

  .price-choice-card::after {
    top: 50%;
    right: 20px;
    bottom: auto;
    left: auto;
    width: 9px;
    height: 9px;
    transform: translateY(-60%) rotate(45deg);
  }

  .price-section {
    padding: 42px 18px;
  }

  .price-section-heading {
    margin-bottom: 26px;
  }

  .price-section-heading h2 {
    font-size: 30px;
  }

  .price-section-heading p {
    font-size: 16px;
  }

  .urgent-price-grid,
  .plan-grid,
  .support-plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card:last-child,
  .support-plan-grid .plan-card:last-child {
    grid-column: auto;
  }

  .price-panel,
  .price-plan-box,
  .option-box {
    padding: 20px 18px;
  }

  .price-estimate-list div {
    gap: 10px;
    padding: 10px 12px;
  }

  .price-estimate-list dt,
  .price-estimate-list dd {
    font-size: 12px;
  }

  .price-feature-strip {
    display: flex;
    gap: 12px;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .price-feature-strip::-webkit-scrollbar {
    display: none;
  }

  .price-feature-strip article,
  .price-feature-strip article:nth-child(3n) {
    flex: 0 0 172px;
    min-height: 158px;
    padding: 18px 14px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    scroll-snap-align: start;
  }

  .urgent-feature-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ffc8cf;
    border-radius: var(--radius-sm);
  }

  .urgent-feature-table article,
  .urgent-feature-table article:nth-child(3n) {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 6px;
    flex: initial;
    min-height: 0;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid #ffe0e4;
    border-radius: 0;
  }

  .urgent-feature-table article:last-child,
  .urgent-feature-table article:nth-child(3n):last-child {
    border-bottom: 0;
  }

  .urgent-feature-table h3 {
    font-size: 15px;
  }

  .urgent-feature-table p {
    font-size: 13px;
  }

  .support-feature-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(22, 163, 74, .35);
    border-radius: var(--radius-sm);
  }

  .support-feature-table article,
  .support-feature-table article:nth-child(3n) {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 6px;
    flex: initial;
    min-height: 0;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid rgba(22, 163, 74, .18);
    border-radius: 0;
  }

  .support-feature-table article:last-child,
  .support-feature-table article:nth-child(3n):last-child {
    border-bottom: 0;
  }

  .support-feature-table h3 {
    font-size: 15px;
  }

  .support-feature-table p {
    font-size: 13px;
  }

  .price-urgent-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 18px;
    text-align: center;
  }

  .price-urgent-cta strong {
    font-size: 21px;
  }

  .price-plan-box {
    margin-bottom: 22px;
  }

  .price-plan-box h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .price-plan-box h3 span {
    display: block;
    margin: 4px 0 0;
    font-size: 13px;
  }

  .plan-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .plan-card h4 {
    font-size: 19px;
  }

  .plan-card > strong {
    font-size: 28px;
  }

  .plan-card > p {
    min-height: 0;
  }

  .price-sim-link {
    min-height: 58px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .option-box ul {
    gap: 8px;
  }

  .option-box li {
    font-size: 12px;
  }

  .about-page {
    padding-bottom: 44px;
  }

  .about-section {
    margin-top: 44px;
  }

  .about-section-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .about-section-head h2 {
    padding-left: 16px;
    font-size: 25px;
  }

  .about-section-head p {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-thoughts {
    gap: 18px;
  }

  .about-thoughts::before,
  .about-thoughts article::after {
    display: none;
  }

  .about-thoughts article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
  }

  .about-thoughts img {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .about-thoughts h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .about-thoughts p {
    font-size: 13px;
    line-height: 1.8;
  }

  .about-scope {
    padding: 44px 18px;
  }

  .about-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-service-grid a,
  .about-service-grid a:nth-child(2n),
  .about-service-grid a:nth-last-child(-n+2) {
    min-height: 0;
    padding: 20px 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
  }

  .about-service-grid img {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .about-service-grid h3 {
    font-size: 18px;
  }

  .about-service-grid p {
    font-size: 13px;
  }

  .about-extra-box {
    gap: 16px;
    padding: 20px 18px;
  }

  .about-extra-box strong {
    font-size: 16px;
  }

  .about-extra-box ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-values-layout {
    gap: 28px;
  }

  .about-values-lead {
    font-size: 22px;
  }

  .about-values-intro > p:not(.about-values-lead) {
    font-size: 14px;
    line-height: 2;
  }

  .about-values-intro figure {
    width: 100%;
    margin-top: 4px;
  }

  .about-value-list {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .about-value-list article,
  .about-value-list article:nth-child(2n),
  .about-value-list article:nth-child(3),
  .about-value-list article:nth-child(4),
  .about-value-list article:last-child {
    grid-column: auto;
    max-width: none;
    min-height: 0;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-value-person {
    display: none;
  }

  .about-value-list article:last-child {
    border-bottom: 0;
  }

  .about-value-meta {
    gap: 14px;
    margin-bottom: 14px;
  }

  .about-value-meta span {
    font-size: 34px;
  }

  .about-value-meta img {
    width: 56px;
    height: 56px;
    padding: 13px;
  }

  .about-value-list h3 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .about-value-list h3::after {
    margin-top: 12px;
  }

  .about-value-list p {
    font-size: 13px;
    line-height: 1.9;
  }

  .about-values-message {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: 6px;
    padding: 22px 18px;
    text-align: center;
    font-size: 14px;
  }

  .about-values-message span {
    padding-left: 0;
    border-left: 0;
  }

  .about-values-message::before {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    background-size: 28px 28px;
  }

  .about-profile {
    padding: 24px 18px;
  }

  .about-profile-card {
    gap: 20px;
  }

  .about-avatar {
    width: 112px;
    height: 112px;
  }

  .about-avatar img {
    width: 62px;
    height: 62px;
  }

  .about-profile-copy h3 {
    font-size: 21px;
  }

  .about-profile-copy p {
    font-size: 14px;
  }

  .about-profile-note {
    padding: 16px 18px 16px 28px;
    font-size: 13px;
  }

  .about-profile-note::before {
    left: 14px;
  }

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

  .about-info-table dt,
  .about-info-table dd {
    padding: 12px 16px;
    font-size: 13px;
  }

  .about-info-table dd {
    padding-top: 10px;
  }

  .about-career-box {
    padding: 20px 18px;
  }

  .about-career-box h3 {
    font-size: 18px;
  }

  .lower-case-card dl {
    grid-template-columns: 1fr;
  }

  .lower-case-card h3 {
    font-size: 18px;
  }

  .flow-steps {
    margin-inline: -18px;
    padding: 0 18px 8px;
  }

  .flow-steps li {
    flex: 0 0 auto;
    min-height: 168px;
  }

  .flow-steps li:not(:last-child)::after {
    right: -20px;
  }

  .flow-icon {
    width: 54px;
    height: 54px;
  }

  .flow-icon img {
    width: 31px;
    height: 31px;
  }

  .faq-list summary {
    padding: 15px 46px 15px 16px;
    font-size: 14px;
  }

  .faq-list p {
    padding-inline: 16px;
    font-size: 13px;
  }

  .service-page .lower-contact-cta {
    margin-top: 52px;
    margin-inline: 0;
    width: 100%;
    transform: none;
  }

  .faq-contact {
    grid-template-columns: 58px 1fr;
    padding: 24px 20px;
  }

  .faq-contact > img {
    width: 52px;
    height: 52px;
  }

  .faq-contact h3 {
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 25px;
  }

  .hero-inner {
    padding-inline: 14px;
  }
}
