:root {
  --ink: #071b57;
  --ink-soft: #12306f;
  --blue: #1a5bd7;
  --blue-strong: #154ec1;
  --blue-soft: #eef5ff;
  --line: #dce8f6;
  --wash: #f6faff;
  --section-title-size: clamp(1.78rem, 2.18vw, 2.42rem);
  --section-lead-size: clamp(1.04rem, 1.12vw, 1.2rem);
  --card-title-size: clamp(1.28rem, 1.46vw, 1.56rem);
  --card-body-size: clamp(1rem, 1.08vw, 1.14rem);
  --list-text-size: clamp(1.1rem, 1.34vw, 1.4rem);
  --label-size: clamp(0.94rem, 1.06vw, 1.12rem);
  --note-size: clamp(0.86rem, 0.96vw, 1rem);
  --section-title-tablet-size: clamp(1.52rem, 5.65vw, 1.96rem);
  --section-title-mobile-size: clamp(1.5rem, 6.3vw, 1.9rem);
  --section-lead-mobile-size: clamp(1rem, 4.1vw, 1.12rem);
  --card-title-mobile-size: clamp(1.16rem, 4.25vw, 1.56rem);
  --card-body-mobile-size: clamp(1rem, 4.1vw, 1.12rem);
  --list-text-mobile-size: clamp(1rem, 4.1vw, 1.16rem);
  --label-mobile-size: clamp(1rem, 4.1vw, 1.04rem);
  --note-mobile-size: clamp(1rem, 4.1vw, 1.04rem);
  --micro-mobile-size: clamp(1rem, 4.1vw, 1rem);
  --hero-title-mobile-size: clamp(1.82rem, 7.05vw, 2.3rem);
  --hero-title-compact-size: clamp(1.48rem, 7vw, 1.72rem);
  --hero-lead-mobile-size: clamp(1rem, 4.1vw, 1.08rem);
  --button-mobile-size: clamp(0.9rem, 3.65vw, 1.1rem);
  --page-gutter: clamp(24px, 4vw, 56px);
  --content-width: 1120px;
  --content-wide: 1360px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic UI", Meiryo, system-ui, sans-serif;
  background:
    radial-gradient(circle at 88% 34%, rgba(237, 246, 255, 0.84) 0 14%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

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

.site-header {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 var(--page-gutter);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 231, 248, 0.95);
}

.brand {
  font-size: clamp(2rem, 2.42vw, 2.62rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(34px, 4.1vw, 68px);
  font-size: clamp(0.92rem, 1.04vw, 1.16rem);
  font-weight: 600;
}

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

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #2f70df 0%, #1854c3 100%);
  box-shadow: 0 10px 22px rgba(21, 78, 193, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.header-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3a7cea 0%, #1c5dd0 100%);
  box-shadow: 0 16px 30px rgba(21, 78, 193, 0.2);
}

.header-cta:active,
.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(21, 78, 193, 0.16);
}

.header-cta:focus-visible,
.primary-cta:focus-visible {
  outline: 3px solid rgba(47, 112, 223, 0.28);
  outline-offset: 4px;
}

.header-cta {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: clamp(0.9rem, 0.96vw, 1.06rem);
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 52px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 47px;
  height: 4px;
  margin: 7px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  width: min(100%, var(--content-wide));
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(24px, 2.8vw, 52px);
  margin: 0 auto;
  padding: clamp(34px, 4.4vh, 46px) var(--page-gutter) clamp(18px, 2.2vw, 30px);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 715px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 22px;
  padding: 0 22px 0 20px;
  border-left: 4px solid var(--blue);
  background: linear-gradient(90deg, rgba(237, 245, 255, 0.92) 0%, rgba(250, 252, 255, 0.82) 100%);
  color: var(--blue-strong);
  font-size: clamp(0.94rem, 1.12vw, 1.22rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.82rem, 3.33vw, 3.64rem);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 em {
  display: inline-block;
  color: inherit;
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 26px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.06vw, 1.14rem);
  line-height: 1.72;
  font-weight: 500;
}

.marker-highlight {
  padding: 0 0.04em 0.06em;
  background: linear-gradient(transparent 58%, rgba(255, 221, 92, 0.56) 58%);
  font-weight: 700;
}

.pc-break {
  display: block;
}

.sp-break {
  display: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 625px;
  margin: 0 0 28px;
}

.stat-card {
  min-width: 0;
  min-height: 104px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 15px;
  padding: 16px 22px;
  border: 1px solid rgba(200, 216, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(22, 61, 117, 0.045);
}

.stat-card > div {
  min-width: 0;
}

.stat-icon {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.stat-label,
.stat-number {
  display: block;
}

.stat-label {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.02vw, 1.1rem);
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.stat-number {
  display: inline-flex;
  align-items: baseline;
  color: var(--blue-strong);
  font-size: clamp(2rem, 2.55vw, 2.75rem);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.stat-number span {
  flex: 0 0 auto;
  margin-left: 4px;
  font-size: 0.46em;
  white-space: nowrap;
}

.primary-cta {
  width: min(374px, 100%);
  min-height: 64px;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px 0 30px;
  border-radius: 8px;
  font-size: clamp(0.96rem, 1.06vw, 1.16rem);
  font-weight: 700;
}

.cta-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.cta-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.96);
  border-right: 2px solid rgba(255, 255, 255, 0.96);
  transform: translateX(-1px) rotate(45deg);
}

.primary-cta:hover .cta-arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  align-self: start;
  padding-top: 0;
  margin-top: -32px;
  margin-right: -18px;
}

.hero-illustration {
  display: block;
  width: min(108%, 990px);
  margin-left: auto;
  filter: drop-shadow(0 24px 38px rgba(43, 82, 138, 0.065));
}

.hero-photo-strip {
  position: relative;
  z-index: 2;
  width: min(86%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: -132px 26px 0 auto;
  padding: 0;
}

.hero-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(218, 230, 247, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(24, 66, 125, 0.08);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: clamp(108px, 8.3vw, 138px);
  object-fit: cover;
  border-radius: 0;
}

.hero-photo-card figcaption {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px 10px;
  color: var(--blue-strong);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 82%, #f5f9ff 100%);
  text-align: center;
  font-size: clamp(0.94rem, 1.1vw, 1.1rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.dot-pattern {
  position: absolute;
  top: 3%;
  left: 17%;
  width: 112px;
  height: 92px;
  opacity: 0.34;
  background-image: radial-gradient(circle, #8bb5f4 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.soft-shape {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 260px;
  height: 210px;
  border-radius: 45% 55% 50% 50%;
  background: rgba(237, 246, 255, 0.78);
  z-index: -1;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .hero-content {
    max-width: 860px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 880px);
    padding-top: 10px;
    margin-top: 0;
    margin-right: 0;
  }

  .hero-photo-strip {
    width: min(88%, 700px);
    margin: -110px auto 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    z-index: 20;
    height: 56px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
    gap: 14px;
  }

  .brand {
    grid-column: auto;
    justify-self: start;
    font-size: clamp(1.36rem, 5.7vw, 1.62rem);
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    position: relative;
    z-index: 22;
    display: block;
    width: 38px;
    height: 34px;
    border-radius: 8px;
  }

  .menu-button span {
    width: 28px;
    height: 2px;
    margin: 5px auto;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    z-index: 21;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(200, 216, 238, 0.96);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(22, 61, 117, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
  }

  .mobile-menu a + a {
    border-top: 1px solid rgba(220, 231, 248, 0.72);
  }

  .mobile-menu a:active,
  .mobile-menu a:focus-visible {
    background: var(--blue-soft);
  }

  .hero {
    min-height: auto;
    padding: 26px 22px 0;
  }

  .hero-eyebrow {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 14px 0 15px;
    border-left-width: 4px;
    font-size: var(--label-mobile-size);
  }

  h1 {
    font-size: var(--hero-title-mobile-size);
    line-height: 1.3;
  }

  .hero-lead {
    margin: 17px 0 18px;
    font-size: var(--hero-lead-mobile-size);
    line-height: 1.72;
  }

  .pc-break {
    display: none;
  }

  .sp-break {
    display: block;
  }

  .stats {
    gap: 10px;
    max-width: none;
    margin-bottom: 16px;
  }

  .stat-card {
    min-height: 72px;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 10px 10px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    background-size: 112px 112px;
  }

  .stat-label {
    font-size: clamp(0.62rem, 2.55vw, 0.9rem);
  }

  .stat-number {
    font-size: clamp(1.32rem, 5.8vw, 1.86rem);
  }

  .primary-cta {
    width: min(280px, 100%);
    min-height: 54px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 17px 0 22px;
    font-size: var(--button-mobile-size);
  }

  .cta-arrow {
    width: 30px;
    height: 30px;
  }

  .hero-visual {
    width: calc(100% + 44px);
    margin: 10px -22px 0;
    padding-top: 0;
  }

  .hero-illustration {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    object-position: center top;
    transform: translateX(3.5%);
  }

  .hero-photo-strip {
    width: calc(100% - 16px);
    gap: 8px;
    margin: -72px auto 0;
  }

  .hero-photo-card img {
    height: clamp(92px, 24vw, 108px);
  }

  .hero-photo-card {
    position: relative;
    border-radius: 7px;
  }

  .hero-photo-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 42px;
    padding: 7px 4px 8px;
    color: #fff;
    background: linear-gradient(180deg, rgba(7, 27, 87, 0) 0%, rgba(7, 27, 87, 0.68) 58%, rgba(7, 27, 87, 0.9) 100%);
    font-size: var(--label-mobile-size);
    text-shadow: 0 1px 6px rgba(4, 18, 54, 0.45);
  }

  .dot-pattern,
  .soft-shape {
    display: none;
  }
}

@media (max-width: 390px) {
  .site-header {
    height: 56px;
    padding: 0 18px;
  }

  .brand {
    font-size: 1.38rem;
  }

  .menu-button {
    width: 38px;
  }

  .menu-button span {
    width: 28px;
    height: 2px;
    margin: 5px auto;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-visual {
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-left: -18px;
  }

  .hero-eyebrow {
    min-height: 32px;
    margin-bottom: 14px;
    font-size: var(--label-mobile-size);
  }

  h1 {
    font-size: var(--hero-title-compact-size);
  }

  .stats {
    width: min(100%, 354px);
    max-width: 354px;
  }

  .stat-card {
    grid-template-columns: 28px 1fr;
  }
}

.issue-section {
  padding: clamp(32px, 3.6vw, 46px) var(--page-gutter) clamp(42px, 4.8vw, 60px);
  background:
    radial-gradient(circle at 18% 22%, rgba(237, 246, 255, 0.78), transparent 26%),
    #fff;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--blue-strong);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-kicker span {
  width: 34px;
  height: 2px;
  background: var(--blue);
}

.issue-section h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
}

.issue-lead {
  margin: 0 auto 24px;
  color: var(--ink-soft);
  text-align: center;
  font-size: var(--section-lead-size);
  line-height: 1.72;
  font-weight: 500;
}

.issue-cards {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.issue-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 22px 19px;
  border: 1px solid rgba(200, 216, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(22, 61, 117, 0.04);
}

.issue-icon-wrap {
  width: 190px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.issue-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.issue-card:nth-child(2) .issue-icon-wrap {
  width: 245px;
  height: 138px;
}

.issue-card:nth-child(3) .issue-icon-wrap {
  width: 260px;
  height: 138px;
}

.issue-card:first-child .issue-icon-wrap {
  width: 220px;
  height: 138px;
}

.issue-card h3 {
  margin: 0 0 11px;
  color: var(--blue-strong);
  text-align: center;
  font-size: var(--card-title-size);
  line-height: 1.25;
  font-weight: 700;
}

.issue-card p {
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: var(--card-body-size);
  line-height: 1.68;
  font-weight: 500;
}

@media (max-width: 900px) {
  .issue-section {
    padding: 32px 26px 36px;
  }

  .section-kicker {
    gap: 14px;
    font-size: var(--label-mobile-size);
  }

  .section-kicker span {
    width: 34px;
  }

  .issue-section h2 {
    margin: 16px 0 16px;
    font-size: var(--section-title-tablet-size);
    line-height: 1.34;
  }

  .issue-lead {
    margin-bottom: 22px;
    font-size: var(--section-lead-mobile-size);
    line-height: 1.78;
  }

  .issue-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .issue-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 32% 1px 1fr;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 8px;
  }

  .issue-card::before {
    content: "";
    grid-column: 2;
    width: 1px;
    height: 100%;
    min-height: 138px;
    border-left: 4px dotted rgba(94, 177, 246, 0.58);
  }

  .issue-icon-wrap {
    width: 100%;
    height: 168px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .issue-card:first-child .issue-icon-wrap,
  .issue-card:nth-child(2) .issue-icon-wrap,
  .issue-card:nth-child(3) .issue-icon-wrap {
    width: 100%;
    height: 168px;
  }

  .issue-card:first-child .issue-icon-wrap img {
    object-position: center;
  }

  .issue-card-copy {
    grid-column: 3;
    grid-row: 1;
  }

  .issue-card h3,
  .issue-card p {
    text-align: left;
  }

  .issue-card h3 {
    margin-bottom: 12px;
    font-size: var(--card-title-mobile-size);
  }

  .issue-card h3 .sp-break {
    display: none;
  }

  .issue-card p {
    font-size: var(--card-body-mobile-size);
    line-height: 1.68;
  }

  .issue-card p br {
    display: none;
  }

}

@media (max-width: 520px) {
  .issue-section {
    padding: 30px 20px 34px;
  }

  .issue-section h2 {
    font-size: var(--section-title-mobile-size);
  }

  .issue-card {
    grid-template-columns: 34% 1px 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .issue-icon-wrap {
    height: 128px;
  }

  .issue-card:first-child .issue-icon-wrap,
  .issue-card:nth-child(2) .issue-icon-wrap,
  .issue-card:nth-child(3) .issue-icon-wrap {
    height: 128px;
  }

  .issue-card::before {
    min-height: 116px;
  }

}

.service-section {
  padding: clamp(32px, 3.6vw, 46px) var(--page-gutter) clamp(42px, 4.8vw, 60px);
  background:
    radial-gradient(circle at 50% 6%, rgba(237, 246, 255, 0.7), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.service-kicker {
  flex-direction: column;
  gap: 8px;
}

.service-kicker span {
  width: 34px;
}

.service-section h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
}

.service-section h2 span {
  display: block;
}

.service-lead {
  max-width: 980px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  text-align: center;
  font-size: var(--section-lead-size);
  line-height: 1.68;
  font-weight: 500;
}

.service-mobile-break {
  display: none;
}

.service-narrow-break {
  display: none;
}

.service-cards {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-rows: 34px 58px 150px auto;
  align-items: start;
  padding: 12px clamp(24px, 2.6vw, 34px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card + .service-card {
  border-left: 1px solid rgba(151, 188, 236, 0.55);
}

.service-tag {
  justify-self: center;
  min-width: 144px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--blue-strong);
  background: linear-gradient(180deg, #f0f6ff 0%, #e9f2ff 100%);
  font-size: clamp(1rem, 1.04vw, 1.1rem);
  line-height: 1;
  font-weight: 700;
}

.service-card h3 {
  width: 100%;
  align-self: center;
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: clamp(1.42rem, 1.72vw, 1.84rem);
  line-height: 1.24;
  font-weight: 700;
}

.service-icon-frame {
  align-self: center;
  justify-self: center;
  width: 250px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-frame-experience {
  width: 290px;
  height: 142px;
}

.service-icon-frame-materials {
  width: 270px;
  height: 142px;
}

.service-icon {
  display: block;
  width: 238px;
  height: 134px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.service-icon-experience {
  width: 286px;
  height: 136px;
}

.service-icon-materials {
  width: 266px;
  height: 136px;
}

.plan-list {
  width: max-content;
  min-width: 248px;
  max-width: 100%;
  display: grid;
  gap: 13px;
  margin: 0 auto;
  padding: 14px 0 0;
  border-top: 1px solid rgba(151, 188, 236, 0.6);
  list-style: none;
}

.plan-list li {
  position: relative;
  min-height: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: clamp(1.02rem, 1.2vw, 1.24rem);
  line-height: 1.45;
  font-weight: 600;
}

.plan-list li + li {
  padding-top: 10px;
  border-top: 1px dashed rgba(151, 188, 236, 0.48);
}

.plan-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23154EC1'/%3E%3Cpath d='M6.15 10.85L9.35 14.05L15.95 7.45' fill='none' stroke='white' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  box-shadow: 0 5px 10px rgba(21, 78, 193, 0.16);
}

.plan-list li::after {
  content: none;
}

.service-footnote {
  margin: 0 auto;
  color: var(--ink-soft);
  text-align: center;
  font-size: clamp(0.86rem, 0.96vw, 1.02rem);
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 980px) {
  .service-section {
    padding: 32px 26px 36px;
  }

  .service-section h2 {
    margin: 16px 0 16px;
    font-size: var(--section-title-tablet-size);
    line-height: 1.34;
  }

  .service-lead {
    margin-bottom: 22px;
    font-size: var(--section-lead-mobile-size);
    line-height: 1.78;
    font-weight: 500;
  }

  .service-cards {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    gap: 0;
  }

  .service-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto;
    padding: 28px 28px;
    border-left: 0;
  }

  .service-card + .service-card {
    border-left: 0;
    border-top: 1px solid rgba(151, 188, 236, 0.45);
  }

  .service-card h3 {
    font-size: var(--card-title-mobile-size);
    text-align: center;
  }

  .service-icon-frame,
  .service-icon-frame-experience,
  .service-icon-frame-materials {
    width: 270px;
    height: 150px;
  }

  .service-icon {
    width: 248px;
    height: 140px;
  }

  .service-icon-materials {
    width: 264px;
    height: 142px;
  }

  .service-icon-experience {
    width: 292px;
    height: 144px;
  }
}

@media (max-width: 520px) {
  .stats {
    width: min(100%, 346px);
    max-width: 346px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card {
    min-height: 72px;
    grid-template-columns: 28px 1fr;
    gap: 6px;
    padding: 9px 6px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }

  .stat-label {
    font-size: clamp(0.76rem, 3.25vw, 0.94rem);
  }

  .stat-number {
    font-size: clamp(1.42rem, 6.6vw, 1.84rem);
  }

  .service-section {
    padding: 38px 20px 42px;
    background:
      radial-gradient(circle at 50% 6%, rgba(237, 246, 255, 0.9), transparent 34%),
      linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  }

  .service-section h2 {
    margin: 0 0 14px;
    font-size: var(--section-title-mobile-size);
    line-height: 1.26;
  }

  .service-section h2 .sp-break {
    display: none;
  }

  .service-mobile-break {
    display: block;
  }

  .service-narrow-break {
    display: block;
  }

  .service-lead {
    max-width: 31em;
    margin-bottom: 26px;
    font-size: var(--section-lead-mobile-size);
    line-height: 1.78;
    font-weight: 500;
    text-align: center;
  }

  .service-cards {
    gap: 18px;
  }

  .service-card {
    grid-template-columns: minmax(86px, 29%) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    row-gap: 10px;
    align-items: center;
    justify-items: start;
    padding: 24px 16px 24px 14px;
    border: 1px solid rgba(218, 230, 247, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 28px rgba(22, 61, 117, 0.08);
  }

  .service-card + .service-card {
    border-left: 1px solid rgba(218, 230, 247, 0.72);
    border-top: 1px solid rgba(218, 230, 247, 0.72);
  }

  .service-tag {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
    min-height: 32px;
    margin: 0;
    padding: 0 14px;
    font-size: var(--label-mobile-size);
  }

  .service-card h3 {
    grid-column: 2;
    margin: 2px 0 4px;
    font-size: clamp(1.3rem, 5.05vw, 1.7rem);
    line-height: 1.32;
    text-align: left;
  }

  .service-icon-frame,
  .service-icon-frame-experience,
  .service-icon-frame-materials {
    grid-column: 1;
    grid-row: 1 / 4;
    justify-self: center;
    width: min(100%, 112px);
    max-width: none;
    height: 112px;
  }

  .service-icon {
    width: min(100%, 104px);
    height: 104px;
  }

  .service-icon-materials {
    width: min(100%, 106px);
    height: 104px;
  }

  .service-icon-experience {
    width: min(100%, 108px);
    height: 104px;
  }

  .plan-list {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding-top: 2px;
    border-top: 0;
  }

  .plan-list li {
    min-height: 31px;
    justify-content: flex-start;
    padding: 0;
    gap: 10px;
    font-size: var(--card-body-mobile-size);
    line-height: 1.42;
  }

  .plan-list li + li {
    padding-top: 10px;
  }

  .plan-list li::before {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    background:
      url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%232A66D4'/%3E%3Cpath d='M5.1 8.8L7.75 11.35L12.9 6.45' fill='none' stroke='white' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    box-shadow: 0 3px 7px rgba(21, 78, 193, 0.1);
  }
}

.reason-section {
  padding: clamp(32px, 3.6vw, 46px) var(--page-gutter) clamp(42px, 4.8vw, 60px);
  background:
    radial-gradient(circle at 50% 10%, rgba(237, 246, 255, 0.62), transparent 30%),
    #fff;
}

.reason-section h2 {
  margin: 14px 0 28px;
  color: var(--ink);
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
}

.reason-section h2 span {
  display: block;
}

.reason-compare {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.compare-panel {
  overflow: hidden;
  border: 1px solid rgba(200, 216, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 28px rgba(22, 61, 117, 0.06);
}

.compare-panel-muted {
  border-color: rgba(185, 194, 208, 0.82);
}

.compare-panel-primary {
  border-color: rgba(26, 91, 215, 0.44);
  box-shadow: 0 16px 34px rgba(21, 78, 193, 0.1);
}

.compare-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
  border-bottom: 1px solid rgba(200, 216, 238, 0.75);
}

.compare-panel-primary .compare-header {
  color: #fff;
  background: linear-gradient(135deg, #1f67d7 0%, #0a48b5 100%);
  border-bottom-color: rgba(26, 91, 215, 0.45);
}

.compare-header p {
  margin: 0;
  color: inherit;
  font-size: clamp(1.46rem, 1.8vw, 1.9rem);
  line-height: 1.2;
  font-weight: 700;
}

.compare-body {
  padding: 42px clamp(28px, 3.2vw, 48px) 38px;
}

.compare-body h3 {
  margin: 0 0 28px;
  color: var(--ink);
  text-align: center;
  font-size: var(--card-title-size);
  line-height: 1.35;
  font-weight: 700;
}

.compare-panel-primary .compare-body h3 {
  color: var(--blue-strong);
}

.compare-list {
  width: fit-content;
  min-width: min(100%, 360px);
  max-width: 100%;
  display: grid;
  gap: 22px;
  margin: 0 auto;
  padding: 28px 0 0;
  border-top: 1px solid rgba(151, 188, 236, 0.58);
  list-style: none;
}

.compare-list li {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: var(--list-text-size);
  line-height: 1.55;
  font-weight: 600;
}

.compare-list li::before,
.compare-list li::after {
  content: "";
  display: block;
}

.compare-list-negative li::before,
.compare-list-negative li::after {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #687080;
}

.compare-list-negative li::before {
  transform: rotate(45deg);
}

.compare-list-negative li::after {
  transform: rotate(-45deg);
}

.compare-list-positive li::before {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: 23px;
  height: 23px;
  border: 3px solid var(--blue-strong);
  border-radius: 50%;
}

.compare-list-positive li::after {
  display: none;
}

@media (max-width: 900px) {
  .reason-section {
    padding: 32px 26px 36px;
  }

  .reason-section h2 {
    margin: 16px 0 24px;
    font-size: var(--section-title-tablet-size);
    line-height: 1.34;
  }

  .reason-compare {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100%, 720px);
  }

  .compare-body {
    padding: 32px 28px 30px;
  }
}

@media (max-width: 520px) {
  .reason-section {
    padding: 30px 20px 34px;
  }

  .reason-section h2 {
    font-size: var(--section-title-mobile-size);
  }

  .compare-header {
    min-height: 62px;
    padding: 14px 18px;
  }

  .compare-header p {
    font-size: var(--card-title-mobile-size);
  }

  .compare-body {
    padding: 26px 22px 24px;
  }

  .compare-body h3 {
    margin-bottom: 22px;
    font-size: var(--card-title-mobile-size);
  }

  .compare-list {
    width: 100%;
    min-width: 0;
    gap: 18px;
    padding-top: 22px;
  }

  .compare-list li {
    grid-template-columns: 26px 1fr;
    gap: 12px;
    font-size: var(--list-text-mobile-size);
  }
}

.seniors-section {
  position: relative;
  padding: clamp(44px, 4.8vw, 66px) var(--page-gutter) clamp(46px, 5.2vw, 70px);
  background:
    radial-gradient(circle at 6% 46%, rgba(237, 246, 255, 0.86), transparent 24%),
    radial-gradient(circle at 96% 58%, rgba(237, 246, 255, 0.72), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.seniors-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--blue-strong);
  text-align: center;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.seniors-note::before,
.seniors-note::after {
  content: "";
  width: 54px;
  height: 8px;
  opacity: 0.55;
  background-image: radial-gradient(circle, var(--blue) 2px, transparent 2.5px);
  background-size: 12px 8px;
  background-repeat: repeat-x;
}

.seniors-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
}

.seniors-summary {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--ink-soft);
  text-align: center;
}

.seniors-data {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
  line-height: 1.45;
  font-weight: 700;
}

.seniors-source {
  margin: 4px 0 14px;
  color: rgba(8, 35, 90, 0.58);
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  line-height: 1.45;
  font-weight: 500;
}

.seniors-copy {
  margin: 0;
  font-size: var(--section-lead-size);
  line-height: 1.8;
  font-weight: 500;
}

.seniors-layout {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 4.1vw, 60px);
  margin: 0 auto;
}

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

.seniors-photo {
  width: 100%;
  height: clamp(178px, 13vw, 220px);
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 61, 117, 0.08);
}

.seniors-photo-main {
  grid-column: 1 / -1;
  height: auto;
  aspect-ratio: 1.92 / 1;
}

.seniors-feature-panel {
  padding: clamp(24px, 2.9vw, 36px) clamp(26px, 3.2vw, 42px);
  border: 1px solid rgba(200, 216, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(22, 61, 117, 0.07);
}

.seniors-feature-panel h3 {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 0 6px 9px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue-strong);
  text-align: center;
  font-size: clamp(1.42rem, 1.72vw, 1.84rem);
  line-height: 1.25;
  font-weight: 700;
}

.seniors-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.seniors-features li {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 12px 12px;
  color: var(--ink-soft);
  text-align: center;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.42;
  font-weight: 600;
}

.seniors-features li:nth-child(2),
.seniors-features li:nth-child(3),
.seniors-features li:nth-child(5),
.seniors-features li:nth-child(6) {
  border-left: 1px solid rgba(151, 188, 236, 0.45);
}

.seniors-features li:nth-child(n + 4) {
  border-top: 1px solid rgba(151, 188, 236, 0.45);
}

.seniors-features img {
  width: 106px;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .seniors-section {
    padding: 34px 26px 42px;
  }

  .seniors-section h2 {
    margin-bottom: 16px;
    font-size: var(--section-title-tablet-size);
  }

  .seniors-summary {
    margin-bottom: 28px;
  }

  .seniors-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 720px);
  }

  .seniors-feature-panel {
    padding: 30px 28px;
  }

  .seniors-features li {
    min-height: 164px;
    font-size: var(--card-body-mobile-size);
  }
}

@media (max-width: 620px) {
  .seniors-section {
    padding: 30px 20px 36px;
  }

  .seniors-note {
    gap: 8px;
    font-size: var(--label-mobile-size);
  }

  .seniors-note::before,
  .seniors-note::after {
    width: 26px;
  }

  .seniors-section h2 {
    margin-bottom: 14px;
    font-size: var(--section-title-mobile-size);
  }

  .seniors-summary {
    margin-bottom: 24px;
    text-align: left;
  }

  .seniors-data {
    text-align: center;
    font-size: var(--label-mobile-size);
  }

  .seniors-source {
    text-align: center;
    font-size: var(--note-mobile-size);
  }

  .seniors-copy {
    font-size: var(--section-lead-mobile-size);
    line-height: 1.78;
  }

  .seniors-copy br {
    display: none;
  }

  .seniors-photos {
    width: min(100%, 420px);
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8px;
    margin: 0 auto 8px;
  }

  .seniors-photo {
    height: clamp(112px, 27vw, 142px);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(22, 61, 117, 0.06);
  }

  .seniors-photo-main {
    grid-column: 1 / -1;
    height: auto;
    aspect-ratio: 2.6 / 1;
  }

  .seniors-feature-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .seniors-feature-panel h3 {
    margin: 0 auto 24px;
    padding: 0 8px 10px;
    font-size: clamp(1.42rem, 5.3vw, 1.72rem);
  }

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

  .seniors-features li {
    min-height: 142px;
    padding: 16px 10px;
    font-size: var(--card-body-mobile-size);
  }

  .seniors-features li:nth-child(2),
  .seniors-features li:nth-child(3),
  .seniors-features li:nth-child(5),
  .seniors-features li:nth-child(6) {
    border-left: 0;
  }

  .seniors-features li:nth-child(even) {
    border-left: 1px solid rgba(151, 188, 236, 0.45);
  }

  .seniors-features li:nth-child(n + 3) {
    border-top: 1px solid rgba(151, 188, 236, 0.45);
  }

  .seniors-features img {
    width: 92px;
    height: 76px;
  }
}

.cases-section {
  padding: clamp(28px, 3.2vw, 42px) var(--page-gutter) clamp(34px, 4vw, 50px);
  background:
    radial-gradient(circle at 50% 10%, rgba(237, 246, 255, 0.62), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.cases-kicker {
  flex-direction: column;
  gap: 8px;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  letter-spacing: 0.08em;
}

.cases-kicker span {
  width: 34px;
}

.cases-section h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cases-lead {
  max-width: 860px;
  margin: 0 auto 22px;
  color: var(--ink-soft);
  text-align: center;
  font-size: var(--section-lead-size);
  line-height: 1.72;
  font-weight: 500;
}

.case-cards {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.case-card {
  overflow: hidden;
  padding: 12px 12px 14px;
  border: 1px solid rgba(200, 216, 238, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(22, 61, 117, 0.04);
}

.case-photo {
  width: 100%;
  display: block;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.case-card h3 {
  width: min(100%, 300px);
  position: relative;
  margin: 12px auto 11px;
  padding-bottom: 9px;
  color: var(--blue-strong);
  text-align: center;
  font-size: clamp(1.04rem, 1.14vw, 1.22rem);
  line-height: 1.26;
  font-weight: 700;
}

.case-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(26, 91, 215, 0.28);
  transform: translateX(-50%);
}

.case-details {
  width: min(100%, 320px);
  margin: 0 auto;
  border-top: 0;
}

.case-details div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(151, 188, 236, 0.26);
}

.case-details div:last-child {
  border-bottom: 0;
}

.case-details dt,
.case-details dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 0.96vw, 1.02rem);
  line-height: 1.55;
}

.case-details dt {
  position: relative;
  padding-left: 0;
  color: var(--blue-strong);
  font-weight: 600;
  white-space: nowrap;
}

.case-details dt::before {
  content: none;
}

.case-details dd {
  font-weight: 500;
}

.cases-note {
  margin: 18px 0 0;
  color: var(--blue-strong);
  text-align: center;
  font-size: clamp(1rem, 4.1vw, 1.06rem);
  line-height: 1.6;
  font-weight: 500;
}

.cases-note-break {
  display: none;
}

@media (max-width: 980px) {
  .cases-section {
    padding: 30px 26px 38px;
  }

  .cases-section h2 {
    font-size: var(--section-title-tablet-size);
  }

  .cases-lead {
    margin-bottom: 20px;
    font-size: var(--section-lead-mobile-size);
  }

  .case-cards {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    gap: 16px;
  }

  .case-card {
    padding: 14px;
  }

  .case-card h3 {
    font-size: var(--card-title-mobile-size);
  }
}

@media (max-width: 520px) {
  .cases-section {
    padding: 28px 20px 34px;
  }

  .cases-section h2 {
    font-size: var(--section-title-mobile-size);
    letter-spacing: 0.04em;
  }

  .cases-lead {
    text-align: left;
  }

  .cases-note {
    text-align: center;
  }

  .cases-note-break {
    display: block;
  }

  .case-card {
    padding: 12px 12px 14px;
  }

  .case-details div {
    grid-template-columns: 82px 1fr;
    gap: 10px;
  }

  .case-details dt,
  .case-details dd {
    font-size: var(--card-body-mobile-size);
  }
}

.materials-section {
  padding: clamp(54px, 6vw, 84px) var(--page-gutter) clamp(58px, 6vw, 88px);
  background:
    radial-gradient(circle at 10% 6%, rgba(237, 246, 255, 0.86), transparent 25%),
    radial-gradient(circle at 92% 58%, rgba(237, 246, 255, 0.72), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
}

.materials-card,
.network-card {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.materials-card {
  padding: 0;
}

.materials-card h2,
.network-copy h2 {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: clamp(1.42rem, 1.74vw, 1.96rem);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.materials-card h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 6px auto 5px;
  border-radius: 999px;
  background: var(--blue);
}

.materials-lead {
  margin: 0 auto 14px;
  color: var(--ink-soft);
  text-align: center;
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  line-height: 1.62;
  font-weight: 500;
}

.materials-table {
  border: 1px solid rgba(200, 216, 238, 0.92);
  background: rgba(255, 255, 255, 0.78);
}

.materials-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.68);
}

.materials-row + .materials-row {
  border-top: 1px solid rgba(200, 216, 238, 0.82);
}

.materials-category {
  min-height: 46px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 7px 22px;
  border-right: 1px solid rgba(151, 188, 236, 0.52);
}

.materials-category img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.materials-category h3 {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(1.08rem, 1.22vw, 1.32rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.materials-row p {
  margin: 0;
  padding: 9px 30px;
  color: var(--ink);
  font-size: clamp(0.96rem, 1.04vw, 1.12rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.sp-material-text {
  display: none;
}

.network-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(30px, 3.5vw, 46px);
  border-top: 1px solid rgba(151, 188, 236, 0.36);
}

.network-map {
  position: relative;
  min-height: 148px;
  border-right: 1px solid rgba(151, 188, 236, 0.6);
}

.network-map img {
  width: min(100%, 280px);
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.network-copy h2 {
  text-align: left;
}

.network-copy p {
  max-width: 720px;
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.62;
  font-weight: 500;
}

.region-list {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.region-list li {
  min-width: 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(21, 78, 193, 0.16);
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #2f70df 0%, #1554c4 100%);
  box-shadow: 0 8px 18px rgba(21, 78, 193, 0.12);
  font-size: clamp(0.86rem, 0.96vw, 1rem);
  line-height: 1;
  font-weight: 700;
}

.network-copy .network-note {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 980px) {
  .materials-section {
    padding: 28px 26px 34px;
  }

  .materials-card {
    padding: 22px 22px;
  }

  .materials-card h2,
  .network-copy h2 {
    font-size: var(--section-title-tablet-size);
  }

  .materials-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .materials-category {
    border-right: 0;
    border-bottom: 1px solid rgba(151, 188, 236, 0.38);
    padding: 12px 20px;
  }

  .materials-row p {
    padding: 12px 20px 16px;
  }

  .network-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .network-map {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(151, 188, 236, 0.52);
    padding-bottom: 18px;
  }

  .network-copy h2,
  .network-copy p {
    text-align: center;
  }

  .network-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .region-list {
    justify-content: center;
  }

  .network-copy .network-note {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .materials-section {
    width: 100%;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 42px 18px 44px;
    overflow: hidden;
  }

  .materials-card,
  .network-card {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-right: 0;
    margin-left: 0;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .materials-card {
    padding: 0;
  }

  .materials-card h2,
  .network-copy h2 {
    font-size: clamp(1.42rem, 7vw, 1.72rem);
    line-height: 1.28;
    letter-spacing: 0.02em;
    text-wrap: balance;
  }

  .network-copy h2 {
    font-size: clamp(1.36rem, 6vw, 1.58rem);
  }

  .materials-card h2::after {
    width: 32px;
    height: 3px;
    margin: 6px auto 7px;
  }

  .materials-lead {
    max-width: 100%;
    width: 100%;
    margin-bottom: 18px;
    text-align: left;
    font-size: clamp(1rem, 4.1vw, 1.08rem);
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .materials-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(200, 216, 238, 0.82);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
  }

  .materials-row {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: stretch;
    padding: 13px 14px 14px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .materials-row + .materials-row {
    border-top: 1px solid rgba(200, 216, 238, 0.72);
  }

  .materials-category {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-bottom: 0;
  }

  .materials-category img {
    width: 34px;
    height: 34px;
  }

  .materials-category h3 {
    max-width: 100%;
    text-align: left;
    font-size: clamp(1rem, 4.65vw, 1.16rem);
    line-height: 1.28;
    letter-spacing: 0.02em;
    overflow-wrap: normal;
  }

  .materials-row p {
    max-width: 100%;
    padding: 7px 0 0 44px;
    text-align: left;
    font-size: clamp(1rem, 4.1vw, 1.08rem);
    line-height: 1.45;
    letter-spacing: 0;
    overflow-wrap: normal;
  }

  .pc-material-text {
    display: none;
  }

  .sp-material-text {
    display: inline;
  }

  .network-card {
    gap: 14px;
    margin-top: 30px;
    padding: 30px 0 0;
    justify-items: stretch;
    overflow: hidden;
  }

  .network-map {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .network-map img {
    width: min(86%, 300px);
  }

  .network-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
    overflow: hidden;
  }

  .network-copy h2::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    margin: 6px auto 7px;
    border-radius: 999px;
    background: var(--blue);
  }

  .network-copy p {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 14px;
    text-align: left;
    font-size: clamp(1rem, 4.1vw, 1.08rem);
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .network-copy p br {
    display: none;
  }

  .region-list {
    width: min(100%, 280px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
  }

  .region-list li {
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    border-radius: 6px;
    font-size: clamp(1rem, 4.1vw, 1.08rem);
  }

  .network-copy .network-note {
    max-width: 100%;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    font-size: clamp(1rem, 4.1vw, 1.04rem);
    line-height: 1.48;
    overflow-wrap: anywhere;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 88px) var(--page-gutter);
  background:
    linear-gradient(135deg, rgba(47, 112, 223, 0.16) 0 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, #071b57 0%, #0b2a76 54%, #154ec1 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px) 0 0 / 92px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  margin: 0 auto;
}

.contact-copy {
  min-width: 0;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(0.86rem, 0.96vw, 1rem);
  line-height: 1.5;
  font-weight: 700;
}

.contact-inner h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.78rem, 2.55vw, 2.86rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-inner h2 span {
  display: block;
}

.contact-inner h2 .contact-mobile-line {
  display: block;
}

.contact-inner p:not(.contact-label) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.16vw, 1.22rem);
  line-height: 1.72;
  font-weight: 500;
}

.contact-inner .contact-support {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.18vw, 1.24rem);
  font-weight: 700;
}

.contact-support span {
  display: inline;
  color: #ffe57a;
  text-shadow: 0 1px 10px rgba(255, 214, 73, 0.18);
}

.contact-button {
  width: 100%;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px 0 30px;
  border-radius: 8px;
  color: var(--blue-strong);
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.02rem, 1.16vw, 1.22rem);
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  color: var(--blue-strong);
  background: #f2f7ff;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.contact-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.52);
  outline-offset: 4px;
}

.contact-button .cta-arrow {
  background: linear-gradient(135deg, #2f70df 0%, #1854c3 100%);
}

.contact-button:hover .cta-arrow {
  transform: translateX(3px);
  background: linear-gradient(135deg, #3a7cea 0%, #1c5dd0 100%);
}

.site-footer {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid rgba(202, 218, 240, 0.72);
}

.subpage-main {
  background:
    radial-gradient(circle at 88% 18%, rgba(237, 246, 255, 0.86), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.subpage-hero {
  padding: clamp(58px, 7vw, 96px) var(--page-gutter) clamp(34px, 4.4vw, 56px);
  text-align: center;
}

.subpage-hero p {
  margin: 0 0 12px;
  color: var(--blue-strong);
  font-size: clamp(0.94rem, 1.06vw, 1.12rem);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.subpage-hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.25;
  white-space: normal;
}

.subpage-content {
  width: min(100%, 980px);
  margin: 0 auto clamp(56px, 6vw, 88px);
  padding: clamp(28px, 3.8vw, 48px);
  border: 1px solid rgba(200, 216, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(22, 61, 117, 0.06);
}

.info-table {
  margin: 0;
}

.info-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(151, 188, 236, 0.35);
}

.info-table div:first-child {
  padding-top: 0;
}

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

.info-table dt,
.info-table dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

.info-table dt {
  color: var(--blue-strong);
  font-weight: 700;
}

.info-table dd {
  font-weight: 500;
}

.info-table a,
.policy-content a {
  color: var(--blue-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-content {
  padding-top: clamp(24px, 3vw, 38px);
  padding-bottom: clamp(24px, 3vw, 38px);
}

.company-content .info-table div {
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom-color: rgba(151, 188, 236, 0.24);
}

.company-content .info-table dt,
.company-content .info-table dd {
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.82;
  letter-spacing: 0;
}

.company-content .info-table dt {
  color: rgba(8, 35, 90, 0.62);
  font-weight: 600;
}

.company-content .info-table dd {
  color: var(--ink);
  font-weight: 400;
}

.company-content .info-table a {
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration-color: rgba(18, 48, 111, 0.28);
  text-decoration-thickness: 1px;
}

.company-content .info-table a:hover {
  color: var(--blue-strong);
  text-decoration-color: rgba(21, 78, 193, 0.45);
}

.policy-content {
  color: var(--ink-soft);
}

.policy-content h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.34vw, 1.42rem);
  line-height: 1.45;
  font-weight: 700;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  margin: 0;
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.86;
  font-weight: 500;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 1.25em;
}

.policy-list li {
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.72;
  font-weight: 500;
}

.footer-inner {
  width: min(100%, var(--content-wide));
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(34px, 6vw, 92px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px) var(--page-gutter) 38px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-strong);
  font-size: clamp(1.5rem, 1.72vw, 1.9rem);
  line-height: 1;
  font-weight: 700;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(8, 35, 90, 0.68);
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  line-height: 1.75;
  font-weight: 500;
}

.footer-brand p span {
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.3vw, 48px);
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.3;
  font-weight: 700;
}

.footer-links a {
  display: block;
  width: fit-content;
  padding: 6px 0;
  color: rgba(8, 35, 90, 0.62);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.45;
  font-weight: 500;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover {
  color: var(--blue-strong);
  transform: translateX(3px);
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(47, 112, 223, 0.5);
  outline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(202, 218, 240, 0.72);
  padding: 18px 0 22px;
}

.footer-bottom p {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  color: rgba(8, 35, 90, 0.46);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) {
  .subpage-hero {
    padding: 48px 26px 30px;
  }

  .subpage-content {
    width: min(100% - 52px, 720px);
  }

  .info-table div {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }

  .company-content .info-table div {
    grid-template-columns: 140px 1fr;
    gap: 18px;
  }

  .contact-section {
    padding: 34px 26px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 24px;
    padding: 30px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 42px 26px 34px;
  }
}

@media (max-width: 620px) {
  .subpage-hero {
    padding: 38px 22px 26px;
  }

  .subpage-content {
    width: calc(100% - 40px);
    padding: 24px 22px;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 0;
  }

  .company-content .info-table div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 15px 0;
  }

  .company-content .info-table dt {
    font-size: var(--note-mobile-size);
    line-height: 1.45;
  }

  .company-content .info-table dd {
    font-size: var(--card-body-mobile-size);
    line-height: 1.76;
  }

  .contact-section {
    padding: 36px 20px;
  }

  .contact-inner {
    width: 100%;
    max-width: calc(100vw - 40px);
    justify-items: center;
    gap: 22px;
    margin: 0 auto;
    padding: 0;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-label {
    justify-content: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 0 16px;
    font-size: clamp(1rem, 4.1vw, 1.08rem);
  }

  .contact-inner h2 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(1.3rem, 5.45vw, 1.52rem);
    line-height: 1.32;
    overflow-wrap: normal;
  }

  .contact-inner h2 .contact-mobile-line {
    display: block;
    white-space: nowrap;
  }

  .contact-inner p:not(.contact-label) {
    max-width: 22em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1rem, 4vw, 1.12rem);
    line-height: 1.72;
  }

  .contact-inner .contact-support {
    margin-top: 14px;
    font-size: clamp(1rem, 4.1vw, 1.14rem);
  }

  .contact-button {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 72px;
    margin-top: 2px;
    padding: 0 62px 0 24px;
    border-radius: 8px;
    font-size: clamp(1rem, 4.2vw, 1.14rem);
  }

  .contact-button .cta-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    flex: 0 0 30px;
    transform: translateY(-50%);
  }

  .footer-inner {
    gap: 20px;
    padding: 28px 22px 20px;
  }

  .footer-logo {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .footer-brand p {
    max-width: none;
    font-size: 0.78rem;
    line-height: 1.58;
  }

  .footer-brand p span {
    white-space: nowrap;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .footer-links h2 {
    margin-bottom: 7px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .footer-links a {
    padding: 3px 0;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .footer-bottom {
    padding: 12px 0 14px;
  }

  .footer-bottom p {
    padding: 0 22px;
    font-size: 0.72rem;
  }
}
