:root {
  --color-blue: #003f91;
  --color-blue-deep: #072a68;
  --color-blue-ink: #081f55;
  --color-blue-soft: #eaf3ff;
  --color-orange: #ff7a1a;
  --color-ink: #152348;
  --color-muted: #5b6680;
  --color-line: #d7e1ef;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(7, 42, 104, 0.12);
  --radius: 8px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.55);
  outline-offset: 4px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.l-container {
  width: min(calc(100% - 16px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 42px;
}

.section--tight {
  padding-top: 18px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--color-blue-ink);
  font-size: 1rem;
  font-weight: 900;
}

.section-title {
  margin: 0 0 20px;
  color: var(--color-blue);
  font-size: clamp(1.55rem, 7vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.42;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
  word-break: auto-phrase;
}

.section-title span {
  display: block;
}

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

.section-title--about {
  font-size: clamp(1.85rem, 5.2vw, 3rem);
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-title--about span {
  display: block;
}

.section-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.button,
.view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button {
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.button span {
  min-width: 0;
  white-space: nowrap;
}

.button svg,
.view-more::after {
  flex: 0 0 auto;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 0.25s ease;
}

.button:hover,
.view-more:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button--primary {
  background: linear-gradient(135deg, #004fb6 0%, #003886 100%);
  color: var(--color-white);
  box-shadow: 0 14px 24px rgba(0, 63, 145, 0.22);
}

.button--ghost,
.button--outline {
  border-color: var(--color-blue);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue);
}

.button--orange {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(255, 122, 26, 0.26);
}

.view-more {
  min-width: 120px;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-size: 0.84rem;
  white-space: nowrap;
}

.view-more::after {
  width: 7px;
  height: 7px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.view-more:hover::after {
  transform: translateX(4px) rotate(45deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(215, 225, 239, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(7, 42, 104, 0.09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 16px), var(--container));
  min-height: 64px;
  margin-inline: auto;
  gap: 14px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-ink);
  font-weight: 900;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-logo img {
  width: 152px;
  height: auto;
}

.site-logo:hover {
  color: var(--color-blue);
  transform: translateY(-1px);
}

.global-nav {
  position: fixed;
  top: 72px;
  right: 8px;
  left: 8px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.is-nav-open .global-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.global-nav a {
  position: relative;
  display: block;
  padding: 10px 4px;
  color: var(--color-blue-ink);
  font-size: 0.92rem;
  font-weight: 900;
  transition: color 0.25s ease;
}

.global-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.global-nav a:hover,
.footer-nav a:hover {
  color: var(--color-blue);
}

.global-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: none;
}

.header-contact:hover {
  background: var(--color-blue-deep);
  transform: translateY(-2px);
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-blue);
  cursor: pointer;
}

.nav-toggle {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 2px;
  transition: background-size 0.25s ease;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
}

.nav-toggle::before {
  transform: translate(-50%, -8px);
}

.nav-toggle::after {
  transform: translate(-50%, 6px);
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.is-nav-open .nav-toggle {
  background-size: 0 2px;
}

.is-nav-open .nav-toggle::before {
  transform: translate(-50%, -1px) rotate(45deg);
}

.is-nav-open .nav-toggle::after {
  transform: translate(-50%, -1px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 28px 24px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(90deg, #ffffff 0%, #fbfdff 58%, #eef5fd 100%);
}

.hero::before {
  content: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero__geometry {
  position: absolute;
  top: 8px;
  left: -32px;
  z-index: 2;
  width: min(66vw, 660px);
  max-width: 100%;
  height: auto;
  color: rgba(0, 63, 145, 0.16);
  pointer-events: none;
}

.hero__geometry-track path,
.hero__geometry-shapes path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.hero__geometry-track path {
  stroke-width: 1.2;
  stroke-dasharray: 18 14;
  animation: geometry-dash 18s linear infinite;
}

.hero__geometry-shapes {
  animation: geometry-drift 16s ease-in-out infinite;
}

.hero__geometry-shapes path {
  stroke-width: 1.4;
}

.hero__geometry-nodes rect {
  fill: rgba(0, 63, 145, 0.22);
  animation: geometry-node 4.8s ease-in-out infinite;
}

.hero__geometry-nodes rect:nth-child(2),
.hero__geometry-track path:nth-child(2) {
  animation-delay: 0.8s;
}

.hero__geometry-nodes rect:nth-child(3),
.hero__geometry-track path:nth-child(3) {
  animation-delay: 1.5s;
}

.hero__geometry-nodes rect:nth-child(4),
.hero__geometry-track path:nth-child(4) {
  animation-delay: 2.2s;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__title {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: clamp(2.05rem, 10vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.28;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
  word-break: auto-phrase;
}

.hero__title span {
  display: block;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(0.96rem, 3.2vw, 1.13rem);
  font-weight: 700;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero__lead span {
  display: inline;
}

.hero__actions {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero__actions .button {
  min-width: 0;
}

.hero__features {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__features li {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue);
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero__features span {
  min-width: 0;
  line-break: strict;
}

.hero__features svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue-soft);
  box-shadow: var(--shadow-soft);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 34%);
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual picture {
  position: absolute;
  inset: 0;
}

.hero__visual img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__visual picture::before,
.hero__visual picture::after,
.post-card__image::before,
.post-card__image::after,
.case-card__image::before,
.case-card__image::after {
  content: none !important;
}

.about {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.about__inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.about__content {
  min-width: 0;
}

.about__content p:not(.section-label) {
  margin: 0 0 22px;
  color: var(--color-ink);
  font-size: 0.96rem;
}

.about__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue-soft);
}

.about__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.business-grid,
.post-grid,
.case-grid,
.metric-grid {
  display: grid;
  gap: 12px;
}

.business-card,
.post-card,
.case-card,
.metric-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(7, 42, 104, 0.055);
}

.business-card {
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.business-card__icon {
  width: 76px;
  height: 76px;
  margin-inline: auto;
  color: var(--color-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.3;
}

.business-card h3 {
  margin: 14px 0 8px;
  color: var(--color-blue);
  font-size: 1.08rem;
  font-weight: 900;
}

.business-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.86rem;
  line-height: 1.85;
}

.posts,
.metrics {
  background: #ffffff;
}

.cases {
  padding-top: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.post-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover,
.case-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: var(--color-blue-soft);
}

.post-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.045);
}

.post-card__image span {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 8px;
  padding: 5px 11px;
  border-radius: 5px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.post-card__body {
  padding: 14px 14px 16px;
}

.post-card h3,
.case-card h3 {
  margin: 0;
  color: var(--color-blue);
  font-size: 0.98rem;
  font-weight: 900;
  line-break: strict;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  word-break: keep-all;
  word-break: auto-phrase;
}

.post-card h3 a,
.case-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 2px;
  transition: color 0.25s ease, background-size 0.28s ease, background-position 0s 0.28s;
}

.post-card h3 a:hover,
.case-card h3 a:hover {
  color: var(--color-blue-deep);
  background-position: 0 100%;
  background-size: 100% 2px;
  transition: color 0.25s ease, background-size 0.28s ease;
}

.post-meta {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.post-meta li {
  display: grid;
  grid-template-columns: 5.6em 1fr;
  gap: 8px;
  align-items: baseline;
}

.post-meta span {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.post-meta__term {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-weight: 900;
}

.post-meta__term::before {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  color: var(--color-blue);
  content: "i";
  font-size: 0.68rem;
  font-style: normal;
  line-height: 14px;
  text-align: center;
}

.post-meta li span:last-child {
  color: var(--color-ink);
}

.case-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-blue-soft);
}

.case-card__image img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-card__image img {
  transform: scale(1.05);
}

.case-card__body {
  min-width: 0;
}

.case-card p {
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: 0.78rem;
  line-height: 1.7;
}

.case-card__company {
  color: var(--color-muted);
  font-weight: 800;
}

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

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px 10px;
  place-items: center;
  text-align: center;
}

.metric-card svg {
  width: 46px;
  height: 46px;
  color: var(--color-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.metric-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-card strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 120px;
  color: var(--color-blue);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

.metric-card small {
  margin-left: 6px;
  color: var(--color-ink);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.metrics__note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.cta-section {
  padding-block: 10px 28px;
}

.cta-band {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 26px 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 5px 5px, rgba(255, 255, 255, 0.28) 1.7px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(135deg, #003f91 0%, #04225e 100%);
  color: var(--color-white);
  box-shadow: 0 18px 38px rgba(7, 42, 104, 0.2);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.35rem, 6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.45;
}

.cta-band p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

.site-footer__inner {
  display: grid;
  gap: 22px;
  padding-block: 24px;
}

.site-logo--footer {
  align-items: flex-start;
}

.site-logo--footer img {
  width: 176px;
}

.site-footer__brand p,
.site-footer__brand address {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.7;
}

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

.footer-nav a {
  position: relative;
  display: inline-block;
  width: max-content;
  color: var(--color-blue-ink);
  font-size: 0.78rem;
  font-weight: 900;
  transition: color 0.25s ease;
}

.site-footer__copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.page-top {
  position: fixed;
  right: 10px;
  bottom: 12px;
  z-index: 30;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.lower-hero {
  position: relative;
  overflow: hidden;
  padding-block: 30px 28px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.lower-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.58) 54%, rgba(255, 255, 255, 0.18) 100%),
    radial-gradient(circle at 88% 22%, rgba(0, 63, 145, 0.12), transparent 32%);
  content: "";
}

.lower-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--color-blue);
  content: "/";
}

.breadcrumb a {
  transition: color 0.25s ease;
}

.breadcrumb a:hover {
  color: var(--color-blue);
}

.lower-hero h1 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(1.55rem, 7.2vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.28;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
  word-break: auto-phrase;
}

.lower-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--color-ink);
  font-size: clamp(0.84rem, 2.8vw, 1.08rem);
  font-weight: 700;
  line-height: 1.8;
}

.lower-hero__media {
  margin: 0;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue-soft);
  box-shadow: var(--shadow-soft);
}

.lower-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lower-hero__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.page-section {
  padding-block: 42px;
}

.page-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lead-block {
  display: grid;
  gap: 18px;
}

.lead-block p {
  margin: 0;
  font-size: 0.96rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.info-card,
.flow-card,
.content-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(7, 42, 104, 0.055);
}

.feature-list li {
  padding: 18px;
}

.feature-list h3,
.info-card h3,
.flow-card h3,
.content-card h3 {
  margin: 0 0 8px;
  color: var(--color-blue);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
}

.feature-list p,
.info-card p,
.flow-card p,
.content-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.9rem;
  line-height: 1.85;
}

.info-grid,
.flow-grid,
.archive-grid {
  display: grid;
  gap: 12px;
}

.info-card,
.flow-card,
.content-card {
  padding: 18px;
}

.flow-card {
  position: relative;
}

.flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 900;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table,
.info-table tbody,
.info-table tr,
.info-table th,
.info-table td {
  display: block;
}

.info-table th,
.info-table td {
  padding: 0;
  border-bottom: 0;
  text-align: left;
  vertical-align: top;
}

.info-table tr {
  padding: 18px 16px;
  border-bottom: 1px solid var(--color-line);
}

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

.info-table th {
  width: auto;
  margin-bottom: 6px;
  color: var(--color-blue);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.info-table td {
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  cursor: default;
  font-size: 0.78rem;
  font-weight: 900;
}

button.tag-pill {
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

button.tag-pill:hover,
button.tag-pill:focus-visible,
button.tag-pill.is-active {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 63, 145, 0.14);
  transform: translateY(-1px);
}

button.tag-pill:focus-visible {
  outline: 3px solid rgba(0, 63, 145, 0.18);
  outline-offset: 3px;
}

.post-card.is-filtered-out,
.case-card.is-filtered-out {
  display: none;
}

.archive-empty {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 800;
  text-align: center;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-blue);
  font-size: 0.9rem;
  font-weight: 900;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-pagination a.page-numbers:hover,
.archive-pagination a.page-numbers:focus-visible,
.archive-pagination .page-numbers.current {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 63, 145, 0.14);
  transform: translateY(-1px);
}

.archive-pagination a.page-numbers:focus-visible {
  outline: 3px solid rgba(0, 63, 145, 0.18);
  outline-offset: 3px;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.article-main {
  min-width: 0;
}

.article-main figure {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue-soft);
}

.article-main figure img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-body {
  display: grid;
  gap: 24px;
}

.article-body h2 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 900;
  line-break: strict;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
  word-break: auto-phrase;
}

.article-body p {
  margin: 0;
  line-height: 2;
}

.side-box {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(7, 42, 104, 0.055);
}

.side-box h2 {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: 1rem;
}

.side-box .post-meta {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--color-blue-ink);
  font-weight: 900;
}

.form-row .required {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 12px 13px;
  color: var(--color-ink);
}

.form-row textarea {
  min-height: 180px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-blue);
  border-radius: var(--radius);
  background: var(--color-blue);
  color: #ffffff;
  cursor: pointer;
  padding: 0 26px;
  font-weight: 900;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: var(--color-blue-deep);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.contact-form input[name="submitBack"] {
  background: #ffffff;
  color: var(--color-blue);
}

.privacy-hero {
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.privacy-hero__inner {
  padding-block: 28px 36px;
}

.privacy-hero h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.15em;
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(2.05rem, 10vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.privacy-hero h1 span {
  display: inline-block;
  white-space: nowrap;
}

.privacy-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--color-ink);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 700;
  line-height: 1.8;
}

.privacy-section {
  padding-block: 44px 64px;
  background: #ffffff;
}

.privacy-content {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.privacy-content section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-line);
}

.privacy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-lead,
.privacy-content p,
.privacy-content li {
  color: var(--color-ink);
  font-size: clamp(0.95rem, 2.7vw, 1.02rem);
  line-height: 2;
}

.privacy-content h2 {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: clamp(1.18rem, 4.2vw, 1.48rem);
  font-weight: 900;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.privacy-content p {
  margin: 0;
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.privacy-content a {
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-content a:hover {
  color: var(--color-blue-deep);
}

.js-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes geometry-dash {
  to {
    stroke-dashoffset: -128;
  }
}

@keyframes geometry-drift {
  0%,
  100% {
    opacity: 0.62;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.95;
    transform: translate3d(14px, -10px, 0);
  }
}

@keyframes geometry-node {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }

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

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

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

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

@media (min-width: 760px) {
  .l-container,
  .site-header__inner {
    width: min(calc(100% - 64px), var(--container));
  }

  .section {
    padding-block: 56px;
  }

  .section--tight {
    padding-top: 24px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 42px;
  }

  .hero__lead span {
    display: block;
  }

  .hero__title span:nth-child(2),
  .hero__title span:nth-child(3) {
    display: inline;
  }

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

  .case-card {
    grid-template-columns: 132px 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 42px;
  }

  .cta-band .button {
    min-width: 288px;
  }

  .lower-hero {
    min-height: 500px;
    padding-block: 0;
  }

  .lower-hero__inner {
    min-height: 500px;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 0;
  }

  .lower-hero__inner > .js-fade-up:first-child {
    position: relative;
    z-index: 3;
    max-width: 560px;
  }

  .lower-hero__media {
    position: absolute;
    top: 0;
    right: calc((min(100vw, var(--container)) - 100vw) / 2);
    bottom: 0;
    z-index: 1;
    width: min(54vw, 980px);
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .lower-hero__media::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.76) 18%, rgba(255, 255, 255, 0.18) 42%, transparent 64%);
    content: "";
    pointer-events: none;
  }

  .lower-hero__media picture,
  .lower-hero__media img {
    width: 100%;
    height: 100%;
  }

  .lower-hero__media img {
    aspect-ratio: auto;
    object-position: center;
  }

  .page-section {
    padding-block: 62px;
  }

  .lead-block {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
    gap: 44px;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
  }

  .table-wrap {
    overflow: hidden;
  }

  .info-table {
    display: table;
    border-collapse: collapse;
  }

  .info-table tbody {
    display: table-row-group;
  }

  .info-table tr {
    display: table-row;
    padding: 0;
    border-bottom: 0;
  }

  .info-table th,
  .info-table td {
    display: table-cell;
    padding: 15px 16px;
    border-bottom: 1px solid var(--color-line);
    vertical-align: top;
  }

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

  .info-table th {
    width: 180px;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .info-table td {
    font-size: 1rem;
  }
}

@media (min-width: 940px) {
  .site-header__inner {
    min-height: 76px;
  }

  .site-logo img {
    width: 176px;
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    flex: 1 1 auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 46px);
  }

  .global-nav__list > li:has(> a[href*="/contact/"]) {
    display: none;
  }

  .global-nav a {
    padding: 8px 0;
    font-size: 0.88rem;
  }

  .header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: var(--radius);
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 900;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }

  .header-contact:hover {
    box-shadow: 0 12px 24px rgba(0, 63, 145, 0.18);
  }

  .hero {
    min-height: 424px;
    padding-block: 34px 26px;
  }

  .hero__inner {
    min-height: 424px;
    grid-template-columns: minmax(460px, 0.96fr) minmax(430px, 1fr);
    gap: 26px;
  }

  .hero__visual {
    position: absolute;
    top: -34px;
    right: calc((min(100vw, var(--container)) - 100vw) / 2);
    bottom: -26px;
    width: min(56vw, 980px);
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
  }

  .hero__visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 16%, rgba(255, 255, 255, 0.22) 36%, transparent 56%);
    content: "";
    pointer-events: none;
  }

  .hero__visual::after {
    z-index: 2;
  }

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

  .post-grid,
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

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

  .case-card {
    min-height: 160px;
  }

  .site-footer__inner {
    grid-template-columns: 1.1fr 2fr;
    align-items: start;
  }

  .footer-nav {
    grid-template-columns: repeat(6, auto);
    justify-content: end;
    gap: 28px;
  }

  .site-footer__copy {
    grid-column: 2;
    justify-self: end;
  }
}

@media (min-width: 1160px) {
  .hero__visual {
    width: min(58vw, 1050px);
  }

  .hero__actions {
    grid-template-columns: 340px 300px;
  }

  .hero__features li {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .section-title {
    font-size: 1.42rem;
  }

  .hero__title {
    font-size: 1.92rem;
  }

  .case-card {
    grid-template-columns: 96px 1fr;
  }
}

.about-page-hero {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  padding-block: 34px;
  background: #2d4a8c;
  color: #ffffff;
  text-align: center;
}

.about-page-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.about-page-hero__breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: ">";
}

.about-page-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
}

.about-page-hero p {
  width: min(100%, 760px);
  margin: 14px auto 0;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}

.about-page-hero p::after {
  display: block;
  width: 60px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #f5a500;
  content: "";
}

.about-rich-section {
  padding-block: 48px;
}

.about-rich-title {
  margin: 0;
  color: #2d4a8c;
  font-size: clamp(1.55rem, 6vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
  word-break: keep-all;
  word-break: auto-phrase;
}

.about-rich-title::after {
  display: block;
  width: 48px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #f5a500;
  content: "";
}

.about-rich-lead {
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.about-background-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-background-layout .about-rich-lead {
  text-align: left;
}

.about-background-layout .about-rich-title::after {
  margin-inline: 0;
}

.about-generated-visual {
  margin: 0;
}

.about-generated-visual svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 46px rgba(7, 42, 104, 0.12));
}

.about-rich-lead p:not(.section-label),
.about-section-head p:not(.section-label) {
  margin: 20px 0 0;
  color: #152348;
  font-size: 0.96rem;
  line-height: 1.9;
}

.about-section-head {
  width: min(100%, 820px);
  margin: 0 auto 28px;
  text-align: center;
}

.about-stat-grid,
.about-vision-grid,
.about-business-grid,
.about-kpi-grid,
.about-member-grid,
.about-partner-grid {
  display: grid;
  gap: 14px;
}

.about-stat-grid {
  margin-top: 28px;
}

.about-stat-card {
  padding: 24px 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(7, 42, 104, 0.055);
  text-align: center;
}

.about-stat-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  place-items: center;
  border: 1px solid rgba(45, 74, 140, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  color: #2d4a8c;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 42, 104, 0.08);
}

.about-stat-icon::before,
.about-stat-icon::after {
  position: absolute;
  content: "";
}

.about-stat-icon--workforce::before {
  left: 14px;
  bottom: 13px;
  width: 8px;
  height: 20px;
  border-radius: 4px 4px 0 0;
  background: #2d4a8c;
  box-shadow: 12px -8px 0 #2d4a8c, 24px -16px 0 #2d4a8c;
}

.about-stat-icon--workforce::after {
  right: 10px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-right: 3px solid #f5a500;
  border-bottom: 3px solid #f5a500;
  transform: rotate(45deg);
}

.about-stat-icon--skill::before {
  left: 14px;
  top: 16px;
  width: 28px;
  height: 24px;
  border: 3px solid #2d4a8c;
  border-radius: 4px;
}

.about-stat-icon--skill::after {
  left: 18px;
  top: 23px;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #f5a500;
  box-shadow: 0 7px 0 #f5a500;
}

.about-stat-icon--cost::before {
  width: 30px;
  height: 30px;
  border: 3px solid #2d4a8c;
  border-radius: 50%;
}

.about-stat-icon--cost::after {
  width: 18px;
  height: 18px;
  border-top: 3px solid #f5a500;
  border-left: 3px solid #f5a500;
  transform: rotate(-45deg);
}

.about-stat-card strong,
.about-kpi-card strong {
  display: block;
  color: #f5a500;
  font-size: clamp(2.25rem, 12vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.about-stat-card p,
.about-kpi-card p {
  margin: 10px 0 0;
  color: #152348;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.65;
}

.about-vision {
  background: #f4f6fb;
}

.about-vision-card,
.about-partner-card,
.about-member-card {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(7, 42, 104, 0.08);
}

.about-vision-card {
  padding: 30px 22px;
  text-align: center;
}

.about-vision-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #003f91, #2d75d6);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(45, 74, 140, 0.18);
}

.about-vision-icon::before,
.about-vision-icon::after {
  position: absolute;
  content: "";
}

.about-vision-icon--people::before {
  width: 32px;
  height: 32px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.about-vision-icon--people::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5a500;
  box-shadow: 20px 0 0 rgba(245, 165, 0, 0.7), 10px 19px 0 rgba(245, 165, 0, 0.85);
}

.about-vision-icon--challenge::before {
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.about-vision-icon--challenge::after {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #f5a500;
  box-shadow: 0 -8px 0 rgba(245, 165, 0, 0.72), 0 8px 0 rgba(245, 165, 0, 0.72);
  transform: rotate(-28deg);
}

.about-vision-icon--flat::before {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 -12px 0 #ffffff, 0 12px 0 #ffffff;
}

.about-vision-icon--flat::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f5a500;
  box-shadow: -17px -12px 0 #f5a500, 17px 12px 0 #f5a500;
}

.about-vision-label {
  margin: 0 0 8px;
  color: #f5a500;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-vision-card h3,
.about-partner-card h3,
.about-member-card h3 {
  margin: 0 0 10px;
  color: #2d4a8c;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.about-vision-card p:last-child,
.about-partner-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-biz-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 12px;
  background: #2d4a8c;
  color: #ffffff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-biz-card::after {
  position: absolute;
  right: -32px;
  bottom: -40px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.about-biz-card:hover {
  box-shadow: 0 18px 44px rgba(26, 43, 94, 0.24);
  transform: translateY(-3px);
}

.about-biz-card > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #f5a500;
  font-size: clamp(2.4rem, 11vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.about-biz-card i {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.about-biz-card i::before,
.about-biz-card i::after {
  position: absolute;
  content: "";
}

.about-biz-card--education i::before {
  left: 12px;
  top: 14px;
  width: 28px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 3px;
}

.about-biz-card--education i::after {
  left: 18px;
  top: 33px;
  width: 16px;
  height: 10px;
  border-right: 3px solid #f5a500;
  border-bottom: 3px solid #f5a500;
  transform: rotate(45deg);
}

.about-biz-card--share i::before {
  left: 12px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 18px 0 0 #ffffff, 9px 18px 0 #ffffff;
}

.about-biz-card--share i::after {
  left: 18px;
  top: 24px;
  width: 18px;
  height: 12px;
  border-top: 3px solid #f5a500;
  border-bottom: 3px solid #f5a500;
}

.about-biz-card--project i::before {
  left: 10px;
  top: 25px;
  width: 32px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  transform: rotate(-24deg);
}

.about-biz-card--project i::after {
  left: 10px;
  top: 14px;
  width: 32px;
  height: 13px;
  border: 3px solid #f5a500;
  border-radius: 999px;
  transform: rotate(24deg);
}

.about-biz-card--advisor i::before {
  left: 13px;
  top: 11px;
  width: 26px;
  height: 28px;
  border: 3px solid #ffffff;
  border-radius: 8px;
}

.about-biz-card--advisor i::after {
  left: 19px;
  top: 20px;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: #f5a500;
  box-shadow: 0 8px 0 #f5a500;
}

.about-biz-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.55;
}

.about-biz-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.about-biz-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-biz-point {
  margin-top: 16px !important;
  color: #f5a500;
  font-weight: 900;
}

.about-future {
  background: #2d4a8c;
  color: #ffffff;
}

.about-future .section-label,
.about-future .about-rich-title,
.about-future .about-section-head p:not(.section-label) {
  color: #ffffff;
}

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

.about-kpi-card {
  min-height: 150px;
  padding: 22px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.about-kpi-card p {
  color: #ffffff;
}

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

.about-member-card {
  padding: 20px 12px;
  text-align: center;
}

.about-member-card--president {
  border: 2px solid #f5a500;
}

.about-member-photo {
  position: relative;
  overflow: hidden;
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--avatar-bg-1, #eaf3ff), var(--avatar-bg-2, #ffffff));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85), 0 12px 28px rgba(7, 42, 104, 0.12);
}

.about-member-photo::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 62%, rgba(45, 74, 140, 0.08) 63% 100%);
  content: "";
  pointer-events: none;
}

.about-member-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-member-avatar__face,
.about-member-avatar__hair,
.about-member-avatar__body {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.about-member-avatar__face {
  top: 28%;
  z-index: 2;
  width: 36%;
  height: 38%;
  border-radius: 46% 46% 48% 48%;
  background: var(--avatar-skin, #f0c7aa);
  box-shadow: inset 0 -6px 0 rgba(126, 82, 60, 0.08);
}

.about-member-avatar__hair {
  top: 21%;
  z-index: 3;
  width: 42%;
  height: 24%;
  border-radius: 50% 50% 44% 44%;
  background: var(--avatar-hair, #2f3442);
}

.about-member-avatar__body {
  bottom: 6%;
  z-index: 1;
  width: 62%;
  height: 34%;
  border-radius: 34% 34% 0 0;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(255, 255, 255, 0.8) 44% 56%, transparent 57%),
    var(--avatar-suit, #2d4a8c);
}

.about-member-avatar__face::before,
.about-member-avatar__face::after {
  position: absolute;
  top: 42%;
  width: 6%;
  height: 6%;
  border-radius: 50%;
  background: rgba(21, 35, 72, 0.78);
  content: "";
}

.about-member-avatar__face::before {
  left: 31%;
}

.about-member-avatar__face::after {
  right: 31%;
}

.about-member-photo--1 {
  --avatar-bg-1: #e8f1ff;
  --avatar-bg-2: #ffffff;
  --avatar-skin: #eec5a8;
  --avatar-hair: #2b2f3a;
  --avatar-suit: #173f82;
}

.about-member-photo--2 {
  --avatar-bg-1: #f0f6ff;
  --avatar-bg-2: #fff7eb;
  --avatar-skin: #f0c9ad;
  --avatar-hair: #3a302d;
  --avatar-suit: #2457a6;
}

.about-member-photo--3 {
  --avatar-bg-1: #eef7ff;
  --avatar-bg-2: #ffffff;
  --avatar-skin: #f2cdb7;
  --avatar-hair: #1f2937;
  --avatar-suit: #315a9f;
}

.about-member-photo--3 .about-member-avatar__hair {
  width: 48%;
  height: 30%;
  border-radius: 50% 50% 38% 38%;
}

.about-member-photo--4 {
  --avatar-bg-1: #e9f4ff;
  --avatar-bg-2: #fffdf8;
  --avatar-skin: #e9bfa2;
  --avatar-hair: #343846;
  --avatar-suit: #102f68;
}

.about-member-photo--5 {
  --avatar-bg-1: #edf7ff;
  --avatar-bg-2: #ffffff;
  --avatar-skin: #f0c6aa;
  --avatar-hair: #252a33;
  --avatar-suit: #2d4a8c;
}

.about-member-photo--6 {
  --avatar-bg-1: #f3f8ff;
  --avatar-bg-2: #fff5e8;
  --avatar-skin: #edc2a4;
  --avatar-hair: #2d2a2a;
  --avatar-suit: #174b94;
}

.about-member-photo--7 {
  --avatar-bg-1: #eaf3ff;
  --avatar-bg-2: #ffffff;
  --avatar-skin: #f1c9af;
  --avatar-hair: #202632;
  --avatar-suit: #204f9c;
}

.about-member-photo--7 .about-member-avatar__hair {
  width: 46%;
  height: 28%;
}

.about-member-card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  background: #2d4a8c;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.about-member-card h3 {
  margin-top: 10px;
}

.about-member-card p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.about-member-en {
  color: #152348 !important;
  font-weight: 800;
}

.about-member-comment {
  margin-top: 10px !important;
}

.about-partners {
  background: #f4f6fb;
}

.about-partner-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.about-partner-logo {
  display: flex;
  height: 54px;
  align-items: center;
  margin-bottom: 18px;
}

.about-partner-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 100%);
  max-height: 54px;
  object-fit: contain;
}

.about-partner-logo--empty {
  visibility: hidden;
}

.about-final-cta {
  padding-block: 56px;
  background: #f5a500;
  color: #ffffff;
  text-align: center;
}

.about-final-cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
}

.about-final-cta p {
  width: min(100%, 640px);
  margin: 16px auto 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.85;
}

.about-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 34px;
  border-radius: var(--radius);
  background: #2d4a8c;
  color: #ffffff;
  font-weight: 900;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.about-final-cta a:hover {
  background: #1a2b5e;
  transform: translateY(-2px);
}

@media (min-width: 760px) {
  .about-page-hero {
    min-height: 280px;
  }

  .about-rich-section {
    padding-block: 80px;
  }

  .about-background-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    gap: 48px;
  }

  .about-stat-grid,
  .about-vision-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .about-business-grid,
  .about-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .about-member-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .about-member-card {
    padding: 28px 20px;
  }

  .about-member-photo {
    width: 120px;
    height: 120px;
  }
}

.insight-section {
  position: relative;
  overflow: hidden;
}

.insight-section::before {
  position: absolute;
  top: 40px;
  right: max(16px, calc((100vw - var(--container)) / 2));
  width: 180px;
  height: 180px;
  border: 1px solid rgba(15, 76, 166, 0.08);
  border-radius: 50%;
  content: "";
}

.insight-section .lead-block {
  display: grid;
  gap: 24px;
  align-items: center;
}

.insight-visual {
  display: grid;
  gap: 16px;
}

.insight-visual__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(13, 37, 79, 0.08);
}

.insight-visual__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.insight-flow__step {
  min-height: 92px;
  padding: 16px 12px;
  border: 1px solid rgba(15, 76, 166, 0.16);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(13, 37, 79, 0.06);
}

.insight-flow__step span {
  display: block;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.insight-flow__step strong {
  display: block;
  margin-top: 6px;
  color: var(--color-blue);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.45;
}

.insight-table {
  margin-top: 24px;
}

.insight-table .info-table tr:not(:first-child) th,
.insight-table .info-table tr:not(:first-child) td {
  color: var(--color-ink);
}

.common-faq {
  padding-block: 56px;
  background: #ffffff;
}

.common-faq__list {
  display: grid;
  gap: 12px;
}

.common-faq__item {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(13, 37, 79, 0.06);
}

.common-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px;
  color: var(--color-blue);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

.common-faq__item summary::-webkit-details-marker {
  display: none;
}

.common-faq__item summary::after {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(15, 76, 166, 0.24);
  border-radius: 50%;
  background-image:
    linear-gradient(var(--color-blue), var(--color-blue)),
    linear-gradient(var(--color-blue), var(--color-blue));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 2px, 2px 11px;
  content: "";
  transition: background-color 0.2s ease, background-image 0.2s ease, transform 0.2s ease;
}

.common-faq__item[open] summary::after {
  background: var(--color-blue);
  background-image: linear-gradient(#ffffff, #ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 2px;
}

.common-faq__item p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.85;
}

@media (min-width: 760px) {
  .insight-section .lead-block {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 40px;
  }

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

  .insight-table {
    margin-top: 32px;
  }

  .common-faq {
    padding-block: 72px;
  }

  .common-faq__list {
    gap: 14px;
  }

  .common-faq__item summary {
    padding: 20px 24px;
  }

  .common-faq__item p {
    padding: 0 24px 24px;
  }
}
