:root {
  --color-navy: #071d3a;
  --color-deep: #0b2f63;
  --color-blue: #1268d6;
  --color-sky: #25a8e0;
  --color-aqua: #77d4ec;
  --color-ice: #f3f8fc;
  --color-soft-blue: #e8f3fb;
  --color-line: #dce8f2;
  --color-text: #162236;
  --color-muted: #647186;
  --color-white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(7, 29, 58, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 29, 58, 0.13);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1120px;
  --section-space: clamp(72px, 9vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-text);
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.85;
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 232, 242, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 29, 58, 0.08);
}

.header-inner {
  width: min(calc(100% - 40px), 1240px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--color-navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-deep), var(--color-blue) 58%, var(--color-sky));
  box-shadow: 0 14px 28px rgba(18, 104, 214, 0.22);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1rem;
  white-space: nowrap;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #233450;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--color-blue);
  background: var(--color-ice);
}

.global-nav .nav-contact {
  min-width: 132px;
  justify-content: center;
  margin-left: 10px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  box-shadow: 0 12px 24px rgba(18, 104, 214, 0.22);
}

.global-nav .nav-contact:hover,
.global-nav .nav-contact[aria-current="page"] {
  color: var(--color-white);
  background: linear-gradient(135deg, #0c54b5, #168bc2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: #071d3a;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  left: max(20px, calc((100vw - 1120px) / 2));
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 104, 214, 0.28), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
  padding: clamp(100px, 11vw, 156px) 0 clamp(96px, 10vw, 144px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.7rem, 6.1vw, 5.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero .eyebrow {
  color: #9fe7ff;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  box-shadow: 0 18px 34px rgba(18, 104, 214, 0.24);
}

.button.secondary {
  color: var(--color-navy);
  border-color: rgba(18, 104, 214, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.9);
}

.button.secondary:hover {
  border-color: rgba(18, 104, 214, 0.44);
  box-shadow: var(--shadow-sm);
}

.button.light {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: none;
}

.hero-panel {
  position: relative;
  min-height: 486px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(18, 104, 214, 0.18), rgba(37, 168, 224, 0.1));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 47, 0.94) 0%, rgba(6, 24, 47, 0.82) 34%, rgba(6, 24, 47, 0.42) 66%, rgba(6, 24, 47, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 24, 47, 0.08), rgba(6, 24, 47, 0.52));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(18, 104, 214, 0.12);
  border-radius: var(--radius);
}

.metric-card,
.hero-panel-text {
  position: relative;
  z-index: 2;
  width: min(100%, 270px);
  padding: 22px;
  border: 1px solid rgba(220, 232, 242, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  display: block;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-blue);
}

.metric-label {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.network-visual {
  position: absolute;
  inset: 68px 34px 74px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(18, 104, 214, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 214, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
}

.network-visual::before,
.network-visual::after {
  content: "";
  position: absolute;
  inset: 50% 12% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 104, 214, 0.48), transparent);
  transform: rotate(-22deg);
}

.network-visual::after {
  transform: rotate(24deg);
}

.network-visual span {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 8px rgba(37, 168, 224, 0.18);
}

.network-visual span:nth-child(1) { top: 18%; left: 16%; }
.network-visual span:nth-child(2) { top: 34%; right: 18%; }
.network-visual span:nth-child(3) { top: 58%; left: 34%; }
.network-visual span:nth-child(4) { bottom: 14%; right: 28%; }
.network-visual span:nth-child(5) { bottom: 22%; left: 12%; }

.hero-panel-text {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.hero-panel-text p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.section {
  padding: var(--section-space) 0;
}

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

.intro-section .image-split {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 68px);
}

.split,
.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: start;
}

.section-image,
.hero-image,
.business-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.section-image {
  margin-top: 28px;
  aspect-ratio: 16 / 10;
}

.intro-section .section-image {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 11;
  object-position: center center;
}

.about-image-column {
  position: relative;
}

.about-copy-column {
  margin-top: 0;
}

.section h2,
.page-hero h1 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-copy-column h2 {
  margin-bottom: 24px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.section-text,
.section-heading p,
.strength-item p,
.service-card p,
.page-hero p {
  color: var(--color-muted);
}

.section-text {
  margin: 38px 0 0;
  font-size: 1.03rem;
}

.copy-stack p {
  margin: 0;
}

.copy-stack p + p,
.copy-stack .quote-list,
.copy-stack .section-actions {
  margin-top: 22px;
}

.quote-list {
  padding: 22px 24px;
  border-left: 4px solid var(--color-blue);
  border-radius: var(--radius);
  background: var(--color-ice);
  color: var(--color-navy);
  font-weight: 800;
}

.quote-list p + p {
  margin-top: 8px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-feature-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-feature-card {
  min-height: 132px;
  padding: 20px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: var(--shadow-sm);
  color: var(--color-navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-icon,
.strength-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--color-soft-blue);
}

.feature-icon::before,
.feature-icon::after,
.strength-icon::before,
.strength-icon::after {
  content: "";
  position: absolute;
}

.network-icon::before {
  inset: 13px;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  box-shadow: -12px -8px 0 -6px var(--color-blue), 12px 8px 0 -6px var(--color-sky);
}

.server-icon::before {
  left: 11px;
  right: 11px;
  top: 10px;
  height: 22px;
  border-top: 3px solid var(--color-blue);
  border-bottom: 3px solid var(--color-sky);
}

.server-icon::after {
  left: 13px;
  right: 13px;
  top: 20px;
  height: 2px;
  background: var(--color-blue);
}

.support-icon::before {
  inset: 10px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.support-icon::after {
  left: 20px;
  top: 6px;
  width: 3px;
  height: 30px;
  background: var(--color-sky);
  transform: rotate(42deg);
}

.service-highlight {
  background:
    radial-gradient(circle at 92% 8%, rgba(37, 168, 224, 0.13), transparent 22%),
    var(--color-ice);
}

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

.features-heading {
  max-width: 820px;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
}

.feature-card__label {
  color: rgba(18, 104, 214, 0.22);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}

.feature-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.feature-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.feature-card__logo img {
  width: min(100%, 132px);
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.feature-card__title {
  margin: 18px 0 12px;
  color: var(--color-navy);
  font-size: 1.28rem;
  line-height: 1.45;
}

.feature-card__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.78;
}

.feature-card__note {
  align-self: flex-start;
  margin: auto 0 0;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--color-blue);
  background: var(--color-soft-blue);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.features-actions {
  margin-top: 36px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading p {
  margin: 16px 0 0;
}

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

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

.service-card {
  position: relative;
  min-height: 292px;
  padding: 34px 30px 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.service-card:hover {
  border-color: rgba(18, 104, 214, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  display: block;
  color: rgba(18, 104, 214, 0.18);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.95;
}

.service-card h3,
.strength-item h3 {
  margin: 22px 0 10px;
  color: var(--color-navy);
  font-size: 1.2rem;
  line-height: 1.5;
}

.service-card p,
.strength-item p {
  margin: 0;
  font-size: 0.95rem;
}

.stat-card {
  min-height: 360px;
}

.stat-card p + p {
  margin-top: 14px;
}

.stat-card .note {
  color: var(--color-blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.business-grid {
  display: grid;
  gap: 28px;
}

.business-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(26px, 5vw, 52px);
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.business-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
}

.business-card .card-number,
.business-card h2,
.business-card .business-image,
.business-card .copy-stack {
  grid-column: 1;
}

.business-image {
  margin-top: 22px;
  aspect-ratio: 16 / 9;
}

.business-card h2 {
  margin: 12px 0 0;
  color: var(--color-navy);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.35;
}

.business-card .copy-stack {
  margin-top: 22px;
  color: var(--color-muted);
}

.service-scope {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-ice);
}

.service-scope h3 {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: 1rem;
}

.service-scope ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-scope li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue);
}

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

.page-guide-section,
.page-content-section {
  background: var(--color-white);
}

.recruit-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.recruit-message-content {
  min-width: 0;
}

.recruit-message-content .section-heading {
  margin-bottom: 28px;
}

.recruit-copy {
  max-width: 860px;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.recruit-message-visual {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: #eef5fa;
  box-shadow: 0 20px 48px rgba(10, 42, 67, 0.16);
}

.recruit-message-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.page-guide-card {
  display: block;
  min-height: 214px;
  padding: 28px 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 24px rgba(7, 29, 58, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-guide-card:hover {
  border-color: rgba(18, 104, 214, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.page-guide-card span {
  display: block;
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-guide-card strong {
  display: block;
  margin-top: 14px;
  color: var(--color-navy);
  font-size: 1.14rem;
}

.page-guide-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.placeholder-block {
  max-width: 860px;
}

.placeholder-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.placeholder-block p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.company-layout {
  display: grid;
  gap: clamp(48px, 7vw, 78px);
}

.company-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.company-table {
  margin: 30px 0 0;
  border-top: 1px solid var(--color-line);
}

.company-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
}

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

.company-table dd {
  margin: 0;
  color: var(--color-text);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.policy-card,
.management-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
}

.policy-card {
  position: relative;
  min-height: 246px;
  padding: 28px;
}

.policy-card__topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.policy-card__topline > span:not(.policy-card__symbol) {
  display: block;
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-card__symbol {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  border: 1px solid rgba(18, 104, 214, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8f3fb, #ffffff);
}

.policy-card__symbol::before,
.policy-card__symbol::after {
  content: "";
  position: absolute;
}

.policy-card__symbol--mission::before {
  left: 15px;
  bottom: 12px;
  width: 3px;
  height: 25px;
  border-radius: 2px;
  background: var(--color-blue);
}

.policy-card__symbol--mission::after {
  left: 18px;
  top: 12px;
  width: 17px;
  height: 13px;
  border-radius: 2px 8px 8px 2px;
  background: var(--color-sky);
}

.policy-card__symbol--vision::before {
  inset: 12px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.policy-card__symbol--vision::after {
  right: 10px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--color-sky);
  border-right: 3px solid var(--color-sky);
}

.policy-card__symbol--value::before {
  left: 12px;
  bottom: 12px;
  width: 24px;
  height: 7px;
  border-radius: 2px;
  background: var(--color-blue);
  box-shadow: 0 -10px 0 var(--color-sky), 0 -20px 0 rgba(18, 104, 214, 0.34);
}

.policy-card__symbol--value::after {
  right: 10px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
}

.policy-card h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1.2rem;
}

.policy-card p,
.policy-card ul,
.management-card p {
  margin: 0;
  color: var(--color-muted);
}

.policy-card ul {
  padding-left: 1.15em;
}

.management-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(135deg, #f3f8fc 0%, #ffffff 72%);
  font-size: 1.03rem;
  box-shadow: 0 18px 44px rgba(7, 43, 78, 0.09);
}

.management-card__content {
  min-width: 0;
}

.management-card__content h2 {
  margin-bottom: 24px;
}

.management-card__lead {
  line-height: 1.9;
}

.management-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.management-points li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(18, 104, 214, 0.12);
  border-radius: 10px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.management-points li::before {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
  transform: translateY(-50%);
}

.management-card__visual {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: #e8f1f7;
  box-shadow: 0 16px 36px rgba(7, 43, 78, 0.16);
}

.management-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.recruit-layout {
  display: grid;
  gap: clamp(50px, 7vw, 82px);
}

.recruit-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.recruit-emphasis {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.recruit-card-grid,
.tech-grid,
.benefit-grid,
.salary-case-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

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

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

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

.recruit-card,
.tech-grid article,
.benefit-grid article,
.salary-case-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
}

.recruit-card {
  padding: 28px;
}

.recruit-card h3,
.tech-grid h3,
.benefit-grid h2,
.benefit-grid h3,
.salary-case-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 1.15rem;
}

.recruit-card p,
.tech-grid p,
.salary-case-card p {
  color: var(--color-muted);
}

.tech-grid article,
.benefit-grid article,
.salary-case-card {
  padding: 26px;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.benefit-grid article::before {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.benefit-grid article h2 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.benefit-grid article ul {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.benefit-grid ul,
.summary-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-grid ul,
.summary-list {
  display: grid;
  gap: 10px;
}

.benefit-grid li,
.summary-list li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
}

.benefit-grid li::before,
.summary-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue);
}

.recruit-table {
  margin: 30px 0 0;
  border-top: 1px solid var(--color-line);
}

.recruit-table div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}

.recruit-table dt {
  color: var(--color-navy);
  font-weight: 900;
}

.recruit-table dd {
  margin: 0;
  color: var(--color-text);
}

.recruit-table span {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.salary-case-card strong {
  display: block;
  margin-top: 14px;
  color: var(--color-blue);
  font-size: 1.12rem;
}

.contact-layout {
  max-width: 920px;
}

.contact-intro {
  color: var(--color-muted);
  font-size: 1.03rem;
}

.contact-intro p {
  margin: 0;
}

.contact-intro p + p {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field.full,
.form-consent.full,
.form-actions.full,
.form-status.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--color-navy);
  font-weight: 800;
}

.required-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 0.75rem;
  line-height: 1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  background: var(--color-white);
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(18, 104, 214, 0.62);
  box-shadow: 0 0 0 4px rgba(18, 104, 214, 0.12);
}

.form-consent {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--color-ice);
  color: var(--color-muted);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.35em;
  accent-color: var(--color-blue);
  flex: 0 0 auto;
}

.form-consent p {
  margin: 0;
}

.form-consent a {
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.form-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--color-muted);
  background: transparent;
  line-height: 1.7;
}

.form-status:not(:empty) {
  margin-top: -4px;
  padding: 16px 18px;
}

.form-status.is-success {
  color: #0f5132;
  border-color: #badbcc;
  background: #f0f8f3;
}

.form-status.is-error {
  color: #842029;
  border-color: #f5c2c7;
  background: #fff5f6;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
  transform: none;
}

.button:disabled:hover,
.button[aria-disabled="true"]:hover {
  transform: none;
}

.page-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-navy);
  font-weight: 800;
  background: var(--color-white);
}

.page-link-grid a:hover {
  color: var(--color-blue);
  border-color: rgba(18, 104, 214, 0.32);
  background: var(--color-ice);
}

.privacy-policy {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(220, 232, 242, 0.72);
  border-radius: var(--radius);
  background: var(--color-white);
}

.privacy-policy__body {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.95;
}

.privacy-policy__body h2,
.privacy-policy__body h3,
.privacy-policy__body h4 {
  color: var(--color-navy);
  line-height: 1.55;
  letter-spacing: 0;
}

.privacy-policy__body h2 {
  margin: clamp(52px, 7vw, 76px) 0 22px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.privacy-policy__body h3 {
  margin: 46px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--color-blue);
  font-size: 1.2rem;
}

.privacy-policy__body h4 {
  margin: 34px 0 12px;
  color: var(--color-blue);
  font-size: 1.02rem;
}

.privacy-policy__subheading {
  margin-top: 22px;
  color: var(--color-navy);
  font-weight: 800;
}

.privacy-policy__body p,
.privacy-policy__body ul,
.privacy-policy__body ol,
.privacy-policy__body address {
  margin: 0;
}

.privacy-policy__body p + p,
.privacy-policy__body p + ul,
.privacy-policy__body p + ol,
.privacy-policy__body ul + p,
.privacy-policy__body ul + h4,
.privacy-policy__body ol + h2,
.privacy-policy__body address + h3,
.privacy-policy__body address + h4 {
  margin-top: 18px;
}

.privacy-policy__body a {
  color: var(--color-blue);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-policy__body ul,
.privacy-policy__body ol {
  padding-left: 1.35em;
}

.privacy-policy__body li + li {
  margin-top: 8px;
}

.privacy-policy__body li::marker {
  color: var(--color-blue);
  font-weight: 800;
}

.privacy-policy__date {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--color-ice);
  color: var(--color-navy);
  font-weight: 800;
}

.privacy-policy__body address {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--color-ice);
  color: var(--color-navy);
  font-style: normal;
  line-height: 1.9;
}

.strength-item {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 24px rgba(7, 29, 58, 0.06);
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.visual-page-hero .hero-image {
  aspect-ratio: 16 / 11;
  max-height: 430px;
}

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

.category-card {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
}

.category-card h2 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 1.35rem;
}

.category-card__description {
  margin: 0 0 22px;
  color: var(--color-muted);
  line-height: 1.85;
}

.category-card .plain-list {
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.notice-text {
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--color-blue);
  border-radius: var(--radius);
  background: var(--color-ice);
  color: var(--color-muted);
}

.works-heading {
  max-width: 840px;
}

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

.works-feature-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.works-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
}

.works-feature-card__number {
  margin: 0 0 18px;
  color: rgba(18, 104, 214, 0.22);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.works-feature-card h2 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 1.28rem;
  line-height: 1.45;
}

.works-feature-card p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.works-support-section,
.works-partner-section,
.works-number-section {
  margin-top: clamp(56px, 7vw, 82px);
}

.works-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.works-support-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(18, 104, 214, 0.18);
  border-radius: var(--radius);
  color: var(--color-navy);
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: var(--shadow-sm);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.4;
}

.works-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.works-partner-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.works-partner-card--alliance {
  background:
    linear-gradient(135deg, rgba(18, 104, 214, 0.08), rgba(255, 255, 255, 0.96)),
    var(--color-white);
}

.works-partner-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
}

.works-partner-card__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 86px;
}

.works-partner-card__visual img {
  width: min(100%, 140px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.works-partner-card__textmark {
  color: var(--color-blue);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.works-partner-card__label {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.works-partner-card h2 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1.32rem;
  line-height: 1.45;
}

.works-partner-card p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.82;
}

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

.works-number-card {
  min-height: 210px;
  padding: 26px 24px;
  border: 1px solid rgba(18, 104, 214, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.98)),
    var(--color-white);
  box-shadow: var(--shadow-sm);
}

.works-number-card span {
  display: block;
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.5;
}

.works-number-card strong {
  display: block;
  margin-top: 22px;
  color: var(--color-navy);
  font-size: clamp(2.35rem, 4.6vw, 3.45rem);
  font-weight: 900;
  line-height: 1.2;
}

.works-number-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.works-number-subgrid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
}

.works-number-subgrid span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.works-number-subgrid strong {
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.works-message {
  margin-top: clamp(44px, 6vw, 68px);
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(18, 104, 214, 0.18);
  border-left: 4px solid var(--color-blue);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 104, 214, 0.1), rgba(37, 168, 224, 0.08)),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.works-message h2 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.works-message p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.button.light-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.strength-icon {
  background: linear-gradient(135deg, var(--color-soft-blue), #ffffff);
}

.issue-icon::before {
  left: 12px;
  top: 11px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.issue-icon::after {
  right: 10px;
  bottom: 9px;
  width: 13px;
  height: 3px;
  background: var(--color-sky);
  transform: rotate(45deg);
}

.project-icon::before {
  left: 10px;
  top: 12px;
  width: 22px;
  height: 16px;
  border: 3px solid var(--color-blue);
  border-radius: 3px;
}

.project-icon::after {
  left: 15px;
  top: 7px;
  width: 12px;
  height: 8px;
  border: 3px solid var(--color-sky);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.operation-icon::before {
  inset: 10px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.operation-icon::after {
  left: 20px;
  top: 12px;
  width: 3px;
  height: 15px;
  background: var(--color-sky);
  transform-origin: bottom;
  transform: rotate(42deg);
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 20%, rgba(119, 212, 236, 0.24), transparent 28%),
    linear-gradient(120deg, #06182f, #0b3a78 62%, #1268d6);
}

.cta-section::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-section .section-label,
.cta-section h2,
.cta-section p {
  color: var(--color-white);
}

.cta-section h2 {
  max-width: 800px;
}

.cta-section p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-main {
  min-height: 52vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 120px) 0 clamp(96px, 10vw, 140px);
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 168, 224, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(243, 248, 252, 0.95), rgba(255, 255, 255, 1));
  border-bottom: 1px solid var(--color-line);
}

.page-hero p {
  max-width: 620px;
}

.page-hero p + p,
.page-hero p:last-child {
  margin: 18px 0 0;
}

.overlay-page-hero {
  display: flex;
  min-height: 500px;
  align-items: center;
  padding: clamp(88px, 9vw, 124px) 0;
  border-bottom: 0;
  background: #092f5d;
  isolation: isolate;
}

.overlay-page-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-page-hero .overlay-page-hero__image {
  object-position: center 42%;
}

.service-page-hero .overlay-page-hero__image {
  object-position: center center;
}

.works-page-hero .overlay-page-hero__image {
  object-position: center center;
}

.overlay-page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 35, 75, 0.92) 0%, rgba(10, 72, 140, 0.78) 48%, rgba(15, 100, 173, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 31, 66, 0.14), rgba(5, 31, 66, 0.42));
}

.works-page-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 35, 75, 0.94) 0%, rgba(10, 67, 130, 0.82) 52%, rgba(12, 82, 148, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 31, 66, 0.18), rgba(5, 31, 66, 0.48));
}

.overlay-page-hero__inner {
  position: relative;
  z-index: 1;
}

.overlay-page-hero .section-label {
  color: #8fd9ff;
  letter-spacing: 0.14em;
}

.page-hero.overlay-page-hero h1 {
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(2.45rem, 4.8vw, 4.25rem);
  line-height: 1.2;
  text-shadow: 0 3px 18px rgba(3, 24, 52, 0.28);
}

.overlay-page-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(3, 24, 52, 0.3);
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #06182f;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 44px;
}

.footer-brand {
  color: var(--color-white);
}

.footer-inner p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 8px 24px;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .global-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    overflow: hidden;
    transition: grid-template-rows 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .global-nav.is-open {
    grid-template-rows: 1fr;
    padding: 12px 20px 22px;
    border-bottom-color: var(--color-line);
    box-shadow: 0 18px 30px rgba(7, 29, 58, 0.1);
  }

  .global-nav ul {
    display: grid;
    min-height: 0;
    gap: 6px;
    overflow: hidden;
  }

  .global-nav a,
  .global-nav .nav-contact {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

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

  .hero-visual {
    max-width: none;
  }

  .recruit-message-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .recruit-message-visual {
    max-width: 680px;
    justify-self: center;
  }

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

  .management-card__visual {
    max-width: 680px;
    justify-self: center;
  }

  .split,
  .image-split,
  .service-grid,
  .stats-grid,
  .policy-grid,
  .recruit-card-grid,
  .tech-grid,
  .benefit-grid,
  .salary-case-grid,
  .page-guide-grid,
  .strengths,
  .visual-hero-grid,
  .category-grid,
  .works-feature-grid,
  .works-partner-grid,
  .works-number-grid,
  .works-number-subgrid {
    grid-template-columns: 1fr;
  }

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

  .service-scope,
  .business-card .card-number,
  .business-card h2,
  .business-card .copy-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .section-text {
    margin-top: 0;
  }

  .about-feature-list {
    grid-column: auto;
  }

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 56px;
  }

  .container,
  .header-inner,
  .hero-inner,
  .footer-inner,
  .copyright {
    width: min(calc(100% - 40px), var(--container));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    max-width: 190px;
    white-space: normal;
    line-height: 1.35;
  }

  .hero-copy {
    width: min(calc(100% - 40px), var(--container));
    padding: 72px 0 64px;
  }

  .overlay-page-hero {
    min-height: 420px;
    padding: 72px 0;
  }

  .company-page-hero .overlay-page-hero__image {
    object-position: 52% center;
  }

  .service-page-hero .overlay-page-hero__image {
    object-position: 58% center;
  }

  .works-page-hero .overlay-page-hero__image {
    object-position: 72% center;
  }

  .overlay-page-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 35, 75, 0.9), rgba(8, 65, 125, 0.68)),
      linear-gradient(180deg, rgba(5, 31, 66, 0.2), rgba(5, 31, 66, 0.56));
  }

  .works-page-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 35, 75, 0.93), rgba(8, 61, 119, 0.78)),
      linear-gradient(180deg, rgba(5, 31, 66, 0.24), rgba(5, 31, 66, 0.62));
  }

  .page-hero.overlay-page-hero h1 {
    max-width: 10em;
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.24;
  }

  .overlay-page-hero p:last-child {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .works-feature-card {
    min-height: auto;
    padding: 24px;
  }

  .works-number-card {
    min-height: auto;
    padding: 20px;
  }

  .works-partner-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 24px;
  }

  .works-partner-card__visual {
    min-height: 112px;
  }

  .works-support-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .works-support-grid span {
    width: 100%;
  }

  .works-number-card strong {
    margin-top: 14px;
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .works-number-subgrid div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .privacy-policy {
    padding: 24px 22px;
  }

  .privacy-policy__body {
    font-size: 1rem;
    line-height: 1.9;
  }

  .privacy-policy__body h2 {
    margin-top: 46px;
    padding-top: 26px;
  }

  .privacy-policy__body h3 {
    margin-top: 38px;
    padding-left: 12px;
    font-size: 1.08rem;
  }

  .management-card {
    gap: 30px;
    padding: 24px;
    font-size: 0.96rem;
  }

  .management-card__content h2 {
    margin-bottom: 18px;
  }

  .management-points {
    gap: 9px;
    margin-top: 22px;
  }

  .management-points li {
    padding: 11px 12px 11px 36px;
  }

  .management-points li::before {
    left: 15px;
  }

  .management-card__visual img {
    aspect-ratio: 16 / 10;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.6vw, 2.15rem);
    line-height: 1.22;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions,
  .section-actions,
  .button,
  .page-link-grid a {
    width: 100%;
  }

  .hero-panel {
    min-height: 390px;
    padding: 18px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-visual::after {
    background:
      linear-gradient(90deg, rgba(6, 24, 47, 0.94) 0%, rgba(6, 24, 47, 0.74) 62%, rgba(6, 24, 47, 0.4) 100%),
      linear-gradient(180deg, rgba(6, 24, 47, 0.14), rgba(6, 24, 47, 0.66));
  }

  .hero-visual img {
    min-height: 100%;
    aspect-ratio: auto;
    object-position: 90% center;
  }

  .hero-panel::before {
    inset: 14px;
  }

  .network-visual {
    inset: 58px 18px 94px;
  }

  .hero-panel-text {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .split,
  .image-split {
    gap: 28px;
  }

  .intro-section .image-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image-column,
  .about-copy-column {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }

  .about-copy-column {
    padding: 0;
  }

  .intro-section .section-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
  }

  .section h2,
  .page-hero h1 {
    font-size: clamp(1.72rem, 7.5vw, 2.18rem);
    line-height: 1.32;
  }

  .about-copy-column h2 {
    margin-bottom: 18px;
    font-size: clamp(1.72rem, 7.5vw, 2.12rem);
  }

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

  .features__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .features-heading {
    margin-bottom: 30px;
  }

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

  .recruit-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .about-feature-card {
    min-height: 96px;
  }

  .service-card,
  .feature-card,
  .strength-item {
    min-height: auto;
    padding: 24px;
  }

  .feature-card__topline {
    align-items: center;
    gap: 12px;
  }

  .feature-card__logo {
    max-width: 140px;
    min-height: 48px;
    padding: 8px 12px;
  }

  .feature-card__logo img {
    width: min(100%, 118px);
    max-height: 32px;
  }

  .feature-card__label {
    font-size: 2.25rem;
  }

  .feature-card__title {
    margin-top: 16px;
    font-size: 1.16rem;
  }

  .feature-card__text {
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .feature-card__note {
    max-width: 100%;
    margin-top: 22px;
    font-size: 0.82rem;
  }

  .recruit-copy {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .summary-list {
    gap: 9px;
  }

  .summary-list li {
    line-height: 1.7;
  }

  .card-number {
    font-size: 2.85rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner,
  .hero-copy,
  .footer-inner,
  .copyright {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.92rem;
  }

  .hero-copy {
    padding: 62px 0 56px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8.4vw, 2rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .section h2,
  .page-hero h1,
  .about-copy-column h2 {
    font-size: clamp(1.58rem, 7.4vw, 1.95rem);
  }

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

  .intro-section .section-image,
  .visual-page-hero .hero-image {
    aspect-ratio: 4 / 3;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card__topline {
    flex-wrap: wrap;
  }

  .feature-card__logo {
    max-width: 132px;
  }

  .feature-card__logo img {
    width: min(100%, 112px);
  }
}

/* Keep the global navigation above page hero overlays. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  position: relative;
  z-index: 1;
}

.global-nav,
.global-nav ul,
.global-nav li,
.global-nav a {
  position: relative;
  pointer-events: auto;
}

.global-nav {
  isolation: isolate;
  z-index: 10;
}

.global-nav ul {
  z-index: 1;
}

.global-nav a {
  z-index: 2;
  cursor: pointer;
}

.overlay-page-hero::before,
.overlay-page-hero__image {
  pointer-events: none;
}

/* Recruit page */
.recruit-page-hero {
  min-height: 500px;
}

.recruit-page-hero .overlay-page-hero__image {
  object-position: center center;
}

.recruit-page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 29, 64, 0.97) 0%, rgba(7, 53, 105, 0.88) 52%, rgba(15, 88, 148, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 27, 58, 0.24), rgba(4, 27, 58, 0.62));
}

.recruit-page-hero .overlay-page-hero__inner {
  max-width: var(--container);
}

.recruit-page-hero h1 {
  max-width: 14em;
}

.recruit-page-hero .section-label,
.recruit-page-hero h1,
.recruit-page-hero .overlay-page-hero__inner > p:not(.section-label) {
  color: var(--color-white);
  text-shadow: 0 2px 14px rgba(2, 20, 43, 0.48);
}

.recruit-page-hero .overlay-page-hero__inner > p:not(.section-label) {
  max-width: 820px;
}

.recruit-page-hero__actions {
  margin-top: 30px;
}

.recruit-page-hero__actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.recruit-page-hero + section {
  display: none;
}

.recruit-layout {
  gap: clamp(28px, 4vw, 44px);
}

.recruit-block {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(34, 105, 157, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 14px 34px rgba(10, 42, 67, 0.08);
}

.recruit-block > h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(34, 105, 157, 0.16);
}

.section-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(34, 105, 157, 0.16);
  border-radius: 11px;
  background: linear-gradient(145deg, #ffffff, #eaf5fb);
  box-shadow: 0 6px 14px rgba(19, 104, 165, 0.14);
}

.section-icon::before {
  width: 22px;
  height: 22px;
  background-color: var(--color-blue);
  content: "";
  -webkit-mask: var(--section-icon) center / contain no-repeat;
  mask: var(--section-icon) center / contain no-repeat;
}

.section-icon--position {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18'/%3E%3C/svg%3E");
}

.section-icon--requirement {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='m8 9 1.5 1.5L12 8M8 15h8M13 10h3'/%3E%3C/svg%3E");
}

.section-icon--work {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M2 20h20M8 9l-2 2 2 2M16 9l2 2-2 2'/%3E%3C/svg%3E");
}

.section-icon--follow {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3v-7a4 4 0 0 1-1-3V7a4 4 0 0 1 4-4h11a4 4 0 0 1 4 4z'/%3E%3Cpath d='M7 9h10M7 13h6'/%3E%3C/svg%3E");
}

.section-icon--technology {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 8-4 4 4 4M16 8l4 4-4 4M14 4l-4 16'/%3E%3C/svg%3E");
}

.section-icon--conditions {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.section-icon--salary {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8 7 4 5 4-5M8 13h8M8 16h8M12 12v6'/%3E%3C/svg%3E");
}

.section-icon--case {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V5M4 20h16M7 16l4-4 3 2 5-7M15 7h4v4'/%3E%3C/svg%3E");
}

.section-icon--benefits {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.section-icon--holiday {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
}

.section-icon--summary {
  --section-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5h11M9 12h11M9 19h11M4 5l1 1 2-2M4 12l1 1 2-2M4 19l1 1 2-2'/%3E%3C/svg%3E");
}

.recruit-block > h2 + p {
  margin-top: 22px;
}

.recruit-table {
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

.recruit-table dt {
  position: relative;
  padding-left: 18px;
}

.recruit-table dt::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
}

.salary-case-card {
  position: relative;
  overflow: hidden;
}

.salary-case-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 5px;
  border-radius: 0 0 0 5px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
  content: "";
}

.salary-case-card strong {
  position: relative;
  margin-top: 22px;
  padding: 16px 54px 16px 18px;
  border: 1px solid rgba(34, 105, 157, 0.16);
  border-radius: 12px;
  color: var(--color-navy);
  background: linear-gradient(135deg, #edf7fc, #ffffff);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.35;
  box-shadow: inset 4px 0 0 var(--color-blue);
}

.salary-case-card strong::after {
  position: absolute;
  top: 50%;
  right: 14px;
  padding: 5px 7px;
  border-radius: 7px;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  content: "UP";
  transform: translateY(-50%);
}

.recruit-card-grid,
.tech-grid,
.benefit-grid,
.salary-case-grid {
  gap: 22px;
}

.recruit-card,
.tech-grid article,
.benefit-grid article,
.salary-case-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.recruit-card::before {
  content: none;
}

.recruit-icon,
.tech-grid article::before,
.benefit-grid article::before,
.salary-case-card::before {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 105, 157, 0.15);
  border-radius: 12px;
  background-color: #eaf4fa;
  background-image: var(--recruit-icon-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  box-shadow: 0 7px 16px rgba(19, 104, 165, 0.12);
  content: "";
}

.recruit-icon--briefcase,
.tech-grid article,
.benefit-grid article,
.salary-case-card {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2M3 12h18M10 12v2h4v-2'/%3E%3C/svg%3E");
}

.recruit-icon--learning {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21v-8M12 16c-5 0-8-3-8-8 5 0 8 3 8 8zM12 13c0-5 3-8 8-8 0 5-3 8-8 8z'/%3E%3C/svg%3E");
}

.recruit-icon--code,
.tech-grid article:nth-child(1) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8l-4 4 4 4M16 8l4 4-4 4M14 5l-4 14'/%3E%3C/svg%3E");
}

.recruit-icon--server,
.tech-grid article:nth-child(2) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='7' rx='2'/%3E%3Crect x='4' y='14' width='16' height='7' rx='2'/%3E%3Cpath d='M8 6.5h.01M8 17.5h.01M12 6.5h5M12 17.5h5'/%3E%3C/svg%3E");
}

.recruit-icon--network,
.tech-grid article:nth-child(3) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2.5'/%3E%3Ccircle cx='5' cy='18' r='2.5'/%3E%3Ccircle cx='19' cy='18' r='2.5'/%3E%3Cpath d='M12 7.5v4M5 15.5v-4h14v4'/%3E%3C/svg%3E");
}

.recruit-icon--tool,
.tech-grid article:nth-child(4) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 01-5 5L4 17l3 3 5.7-5.7a4 4 0 005-5l-2.5 2.5-3-3 2.5-2.5z'/%3E%3C/svg%3E");
}

.salary-case-card {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18l5-5 4 3 7-9M15 7h5v5'/%3E%3C/svg%3E");
}

.benefit-grid article:nth-child(1) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v5c0 5-3.4 8.3-8 10-4.6-1.7-8-5-8-10V6l8-3zM8.5 12l2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}

.benefit-grid article:nth-child(2) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='12' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4M16 9c1.3 1 1.3 3 0 4M18.5 7c2.5 2.5 2.5 5.5 0 8'/%3E%3C/svg%3E");
}

.benefit-grid article:nth-child(3) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h5v-5h5V9h6M15 4h5v5'/%3E%3Cpath d='M20 4l-8 8'/%3E%3C/svg%3E");
}

.recruit-icon--clock,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(1) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.recruit-icon--timer,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(2) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2h6M12 5a8 8 0 108 8M12 9v4l3 2M18 5l2 2'/%3E%3C/svg%3E");
}

.recruit-icon--pin,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(3) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1116 0z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.recruit-icon--building,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(4) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M5 21V3h11v18M16 9h3v12M3 21h18M8 7h2M12 7h2M8 11h2M12 11h2M8 15h2M12 15h2'/%3E%3C/svg%3E");
}

.recruit-icon--map,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(5) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6l6-3 6 3 6-3v15l-6 3-6-3-6 3V6zM9 3v15M15 6v15'/%3E%3C/svg%3E");
}

.recruit-icon--id,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(6) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8' cy='11' r='2'/%3E%3Cpath d='M5.5 16c.7-2 4.3-2 5 0M14 10h4M14 14h4'/%3E%3C/svg%3E");
}

.recruit-icon--calendar,
.recruit-layout > .recruit-block:nth-child(3) .recruit-table div:nth-child(7) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01'/%3E%3C/svg%3E");
}

.recruit-icon--growth,
.recruit-layout > .recruit-block:nth-child(4) .recruit-table div:nth-child(1) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18l5-5 4 3 7-9M15 7h5v5'/%3E%3C/svg%3E");
}

.recruit-icon--yen,
.recruit-layout > .recruit-block:nth-child(4) .recruit-table div:nth-child(2) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M7 4l5 7 5-7M12 11v9M7 13h10M7 17h10'/%3E%3C/svg%3E");
}

.recruit-icon--evaluation,
.recruit-layout > .recruit-block:nth-child(4) .recruit-table div:nth-child(3) {
  --recruit-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M9 3.5h6M8 9l1.5 1.5L12 8M8 15l1.5 1.5L12 14M14 9h2M14 15h2'/%3E%3C/svg%3E");
}

.recruit-layout > .recruit-block:nth-child(3) .recruit-table dt,
.recruit-layout > .recruit-block:nth-child(4) .recruit-table dt {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding-left: 48px;
}

.recruit-layout > .recruit-block:nth-child(3) .recruit-table dt::before,
.recruit-layout > .recruit-block:nth-child(4) .recruit-table dt::before {
  top: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(34, 105, 157, 0.15);
  border-radius: 10px;
  background-color: #eaf4fa;
  background-image: var(--recruit-icon-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px 21px;
  box-shadow: 0 5px 12px rgba(19, 104, 165, 0.1);
}

.recruit-card h3,
.tech-grid h3,
.benefit-grid h2,
.benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.5;
}

.recruit-card p,
.tech-grid p,
.benefit-grid p {
  line-height: 1.82;
}

.recruit-emphasis {
  position: relative;
  display: flex;
  width: 100%;
  min-height: auto;
  align-items: flex-start;
  padding: 24px 28px 24px 64px;
  border: 1px solid rgba(34, 105, 157, 0.18);
  border-radius: calc(var(--radius) + 4px);
  color: var(--color-navy);
  background: linear-gradient(135deg, #eaf6fc 0%, #ffffff 72%);
  font-size: 1.08rem;
  line-height: 1.75;
  box-shadow: 0 14px 30px rgba(10, 42, 67, 0.09);
}

.recruit-emphasis::before {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 22px;
  height: 22px;
  border: 6px solid #dceff8;
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
}

.tech-grid article,
.benefit-grid article {
  padding: 28px;
}

.tech-grid article p,
.tech-grid article ul,
.benefit-grid article p,
.benefit-grid article ul {
  margin-bottom: 0;
}

.tech-grid article li,
.benefit-grid article li {
  margin-top: 8px;
}

.benefit-grid article {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: 46px auto;
  align-items: start;
}

.benefit-grid article::before {
  align-self: start;
  margin-bottom: 0;
}

.benefit-grid article h2 {
  display: flex;
  min-height: 46px;
  align-items: center;
  margin: 0;
}

.benefit-grid article ul {
  align-self: start;
  margin-top: 20px;
}

.salary-case-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.salary-case-card strong {
  margin-top: auto;
}

.summary-list {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(34, 105, 157, 0.14);
  border-radius: var(--radius);
  background: rgba(239, 247, 252, 0.78);
}

.summary-list li {
  position: relative;
  min-height: 42px;
  padding: 9px 12px 9px 42px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(10, 42, 67, 0.05);
}

.summary-list li::before {
  top: 10px;
  left: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 900;
  content: "\2713";
}

@media (hover: hover) {
  .recruit-card:hover,
  .tech-grid article:hover,
  .benefit-grid article:hover,
  .salary-case-card:hover {
    border-color: rgba(34, 105, 157, 0.3);
    box-shadow: 0 18px 38px rgba(10, 42, 67, 0.12);
    transform: translateY(-3px);
  }
}

.recruit-environment-section {
  background: linear-gradient(145deg, #f2f8fc 0%, #ffffff 58%, #eef7fb 100%);
}

.recruit-environment-heading {
  max-width: 840px;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.recruit-environment-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.recruit-environment-heading > p:not(.section-label) {
  color: var(--color-muted);
  line-height: 1.9;
}

.recruit-environment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.recruit-environment-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(34, 105, 157, 0.16);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(10, 42, 67, 0.11);
}

.recruit-environment-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.recruit-environment-card:first-child > img {
  object-position: center 42%;
}

.recruit-environment-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
}

.recruit-environment-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recruit-environment-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 1.18rem;
}

.recruit-environment-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .recruit-page-hero .overlay-page-hero__image {
    object-position: 66% center;
  }

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

}

@media (max-width: 640px) {
  .recruit-page-hero {
    min-height: 460px;
    padding: 68px 0 62px;
  }

  .recruit-page-hero .overlay-page-hero__image {
    object-position: 72% center;
  }

  .recruit-page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 29, 64, 0.98), rgba(6, 49, 99, 0.91)),
      linear-gradient(180deg, rgba(4, 27, 58, 0.3), rgba(4, 27, 58, 0.7));
  }

  .recruit-page-hero h1 {
    max-width: 11em;
  }

  .recruit-page-hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .recruit-block {
    padding: 24px 18px;
  }

  .recruit-card,
  .tech-grid article,
  .benefit-grid article,
  .salary-case-card {
    padding: 24px 20px;
  }

  .recruit-icon,
  .tech-grid article::before,
  .benefit-grid article::before,
  .salary-case-card::before {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    margin-bottom: 16px;
    border-radius: 11px;
    background-size: 23px 23px;
  }

  .recruit-emphasis {
    padding: 20px 18px 20px 50px;
    font-size: 1rem;
  }

  .recruit-emphasis::before {
    top: 21px;
    left: 18px;
  }

  .summary-list {
    padding: 14px;
  }

  .recruit-block > h2 {
    align-items: flex-start;
    gap: 11px;
    padding-bottom: 15px;
  }

  .section-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 9px;
  }

  .section-icon::before {
    width: 19px;
    height: 19px;
  }

  .recruit-table {
    padding: 0 16px;
  }

  .salary-case-card strong {
    padding: 14px 48px 14px 14px;
    font-size: 1.28rem;
  }

  .recruit-environment-heading {
    margin-bottom: 28px;
  }

  .recruit-environment-heading h2 {
    font-size: clamp(1.68rem, 7.2vw, 2.05rem);
  }

  .recruit-environment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruit-environment-card__body {
    padding: 24px 20px;
  }
}

/* Welfare page */
.welfare-support-intro-title {
  max-width: 18em;
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.35;
}

.welfare-support-intro-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.welfare-support-intro-lead + p {
  display: none;
}

.welfare-page-hero {
  min-height: 460px;
  padding: clamp(76px, 8vw, 108px) 0;
}

.welfare-page-hero .overlay-page-hero__image {
  object-position: center center;
}

.welfare-page-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 46, 88, 0.9) 0%, rgba(20, 91, 148, 0.72) 52%, rgba(66, 143, 188, 0.38) 100%),
    linear-gradient(180deg, rgba(12, 48, 79, 0.12), rgba(8, 42, 72, 0.42));
}

.welfare-page-hero .overlay-page-hero__inner {
  max-width: var(--container);
}

.welfare-page-hero h1 {
  max-width: 13em;
}

.welfare-page-hero .overlay-page-hero__inner > p:last-child {
  max-width: 760px;
}

.welfare-intro-section {
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
}

.welfare-support-section {
  overflow: hidden;
  background: linear-gradient(145deg, #f2f8fc 0%, #ffffff 58%, #eef7fb 100%);
}

.welfare-support-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.welfare-support-heading > h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.welfare-support-heading > p:not(.section-label) {
  color: var(--color-muted);
  line-height: 1.9;
}

.welfare-support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.welfare-support-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(34, 105, 157, 0.16);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(10, 42, 67, 0.11);
}

.welfare-support-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
}

.welfare-support-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.welfare-support-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-size: 1.18rem;
  line-height: 1.5;
}

.welfare-support-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.welfare-support-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .welfare-page-hero .overlay-page-hero__image {
    object-position: 64% center;
  }

  .welfare-support-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .welfare-support-card {
    min-height: auto;
  }

}

@media (max-width: 640px) {
  .welfare-support-intro-title {
    max-width: none;
    font-size: clamp(1.68rem, 7.2vw, 2.05rem);
  }

  .welfare-support-intro-lead {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .welfare-page-hero {
    min-height: 400px;
    padding: 68px 0 62px;
  }

  .welfare-page-hero .overlay-page-hero__image {
    object-position: 68% center;
  }

  .welfare-page-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 42, 82, 0.94), rgba(15, 78, 136, 0.76)),
      linear-gradient(180deg, rgba(6, 34, 67, 0.18), rgba(6, 34, 67, 0.58));
  }

  .welfare-page-hero h1 {
    max-width: 11em;
  }

  .welfare-support-heading {
    margin-bottom: 28px;
  }

  .welfare-support-heading > h2 {
    margin-bottom: 18px;
    font-size: clamp(1.68rem, 7.2vw, 2.05rem);
  }

  .welfare-support-card > img {
    aspect-ratio: 16 / 10;
  }

  .welfare-support-card__body {
    padding: 24px 20px;
  }
}

/* Unified lower-page hero presentation. The top-page hero is intentionally excluded. */
.page-main > .overlay-page-hero {
  height: 520px;
  min-height: 520px;
  box-sizing: border-box;
  padding: 68px 0;
}

.page-main > .overlay-page-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 46, 88, 0.9) 0%, rgba(20, 91, 148, 0.72) 52%, rgba(66, 143, 188, 0.38) 100%),
    linear-gradient(180deg, rgba(12, 48, 79, 0.12), rgba(8, 42, 72, 0.42));
}

.page-main > .overlay-page-hero .section-label,
.page-main > .overlay-page-hero h1,
.page-main > .overlay-page-hero .overlay-page-hero__inner > p:not(.section-label) {
  color: var(--color-white);
  text-shadow: 0 2px 14px rgba(2, 20, 43, 0.36);
}

@media (max-width: 640px) {
  .page-main > .overlay-page-hero {
    height: auto;
    min-height: 520px;
    padding: 56px 0;
  }

  .page-main > .overlay-page-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 42, 82, 0.94), rgba(15, 78, 136, 0.76)),
      linear-gradient(180deg, rgba(6, 34, 67, 0.18), rgba(6, 34, 67, 0.58));
  }
}

/* Contact page */
.contact-page .page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 460px;
  align-items: center;
  overflow: hidden;
  background-color: #0b4d83;
  background-image: url("../images/contact-support-staff.png");
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: cover;
}

.contact-page .page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 29, 64, 0.94) 0%, rgba(7, 53, 105, 0.78) 48%, rgba(15, 88, 148, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 27, 58, 0.04), rgba(4, 27, 58, 0.3));
  content: "";
  pointer-events: none;
}

.contact-page .page-hero .container {
  position: relative;
  z-index: 1;
}

.contact-page .page-hero .section-label,
.contact-page .page-hero h1,
.contact-page .page-hero p {
  color: var(--color-white);
  text-shadow: 0 2px 14px rgba(2, 20, 43, 0.42);
}

.contact-page .page-hero p:not(.section-label) {
  max-width: 760px;
}

.contact-page .page-content-section {
  background: linear-gradient(180deg, #f4f9fc, #ffffff);
}

.contact-page .contact-form {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(34, 105, 157, 0.16);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(10, 42, 67, 0.11);
}

.contact-page .contact-form label {
  color: var(--color-navy);
  font-weight: 800;
}

.contact-page .contact-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #bfd1df;
  border-radius: 10px;
  color: var(--color-text);
  background: #fbfdff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-page .contact-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  outline: 0;
  border-color: var(--color-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(34, 105, 157, 0.13);
}

.contact-page .contact-form button[type="submit"],
.contact-page .contact-form input[type="submit"] {
  min-width: min(100%, 280px);
  min-height: 56px;
  justify-self: center;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), #1687c5);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(19, 104, 165, 0.24);
  cursor: pointer;
}

.contact-page .contact-form [aria-invalid="true"] {
  border-color: #b84242;
  background: #fffafa;
}

.contact-page .contact-form [role="alert"],
.contact-page .contact-form .form-error,
.contact-page .contact-form .form-success,
.contact-page .contact-form .form-message {
  padding: 14px 16px;
  border-radius: 10px;
  line-height: 1.7;
}

.contact-page .contact-form [role="alert"],
.contact-page .contact-form .form-error {
  border: 1px solid #e7b7b7;
  color: #8e2f2f;
  background: #fff4f4;
}

.contact-page .contact-form .form-success {
  border: 1px solid #acd4c1;
  color: #17603f;
  background: #f0faf5;
}

.contact-page .contact-form > *:has(input[type="checkbox"]),
.contact-page .contact-form .contact-consent,
.contact-page .contact-form .consent-field,
.contact-page .contact-form .checkbox-field {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: flex-start;
  grid-column: 1 / -1;
  gap: 10px;
  writing-mode: horizontal-tb;
}

.contact-page .contact-form input[type="checkbox"] {
  position: static;
  float: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  margin: 0.2em 0 0;
  padding: 0;
  writing-mode: horizontal-tb;
  accent-color: var(--color-blue);
}

.contact-page .contact-form input[type="checkbox"] + label,
.contact-page .contact-form label:has(input[type="checkbox"]),
.contact-page .contact-form .contact-consent label,
.contact-page .contact-form .consent-field label,
.contact-page .contact-form .checkbox-field label {
  position: static;
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  writing-mode: horizontal-tb;
  line-height: 1.7;
}

.contact-page .contact-form input[type="checkbox"] + label a,
.contact-page .contact-form label:has(input[type="checkbox"]) a,
.contact-page .contact-form .contact-consent a,
.contact-page .contact-form .consent-field a,
.contact-page .contact-form .checkbox-field a {
  display: inline;
  position: static;
  float: none;
  width: auto;
  white-space: normal;
  writing-mode: horizontal-tb;
}

.contact-page .contact-form > textarea,
.contact-page .contact-form > *:has(textarea) {
  width: 100%;
  min-width: 0;
  grid-column: 1 / -1;
}

.contact-guidance-section {
  padding-top: 0;
  background: var(--color-white);
}

.contact-guidance-heading {
  margin-bottom: 30px;
}

.contact-guidance-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

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

.contact-guidance-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(34, 105, 157, 0.15);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, #ffffff, #f7fbfe);
  box-shadow: 0 12px 28px rgba(10, 42, 67, 0.08);
}

.contact-guidance-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 105, 157, 0.14);
  border-radius: 12px;
  background-color: #eaf4fa;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.contact-guidance-card__icon--consultation {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H9l-5 4V5zM8 9h8M8 12h5'/%3E%3C/svg%3E");
}

.contact-guidance-card__icon--reply {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.contact-guidance-card__icon--privacy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5d9a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v5c0 5-3.4 8.3-8 10-4.6-1.7-8-5-8-10V6l8-3zM9 11V9a3 3 0 016 0v2M8 11h8v6H8z'/%3E%3C/svg%3E");
}

.contact-guidance-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
}

.contact-guidance-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.contact-guidance-card__link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: none;
}

.contact-guidance-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .contact-guidance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page .page-hero {
    min-height: 400px;
    padding: 64px 0 58px;
    background-position: 62% 28%;
  }

  .contact-page .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 29, 64, 0.96), rgba(7, 53, 105, 0.76) 60%, rgba(15, 88, 148, 0.34)),
      linear-gradient(180deg, rgba(4, 27, 58, 0.06), rgba(4, 27, 58, 0.34));
  }

  .contact-page .contact-form {
    padding: 26px 18px;
  }

  .contact-page .contact-form textarea {
    min-height: 160px;
  }

  .contact-page .contact-form button[type="submit"],
  .contact-page .contact-form input[type="submit"] {
    width: 100%;
  }

  .contact-guidance-card {
    padding: 24px 20px;
  }
}

/* Header brand logo */
.site-header .brand-mark:not(img) {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  color: transparent;
  background: transparent url("../images/itc_logo_icon.png") center / contain no-repeat;
  box-shadow: 0 5px 14px rgba(10, 42, 67, 0.12);
  font-size: 0;
}

.site-header img.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 5px 14px rgba(10, 42, 67, 0.12);
}

@media (max-width: 640px) {
  .site-header .brand-mark:not(img),
  .site-header img.brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile fixes: navigation collapse and safe hero overlays */
@media (max-width: 980px) {
  .global-nav:not(.is-open) {
    visibility: hidden;
    height: 0;
    min-height: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    box-shadow: none;
    overflow: hidden;
    pointer-events: none;
  }

  .global-nav.is-open {
    visibility: visible;
  }

  .page-hero .section-label,
  .overlay-page-hero .section-label,
  .visual-page-hero .section-label,
  .cta-section .section-label {
    display: inline-block;
    width: auto;
    max-width: max-content;
    margin-right: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .page-hero .section-label::before,
  .page-hero .section-label::after,
  .overlay-page-hero .section-label::before,
  .overlay-page-hero .section-label::after,
  .visual-page-hero .section-label::before,
  .visual-page-hero .section-label::after,
  .cta-section .section-label::before,
  .cta-section .section-label::after {
    display: none;
    content: none;
  }

  .hero::after {
    display: none;
    content: none;
  }
}

@media (max-width: 640px) {
  .page-main > .overlay-page-hero::before,
  .overlay-page-hero::before,
  .contact-page .page-hero::before {
    display: block;
    content: "";
  }
}

/* ============================================================
   Fix: Top hero の右上に出る短い白線
   (.eyebrow / .section-label の疑似要素由来) をモバイルで完全除去。
   既存の `.page-hero .section-label::before` パッチと同じ思想で、
   .hero 配下を追加対象にする。
   ============================================================ */
@media (max-width: 980px) {
  .hero .eyebrow,
  .hero .section-label {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }

  .hero .eyebrow::before,
  .hero .eyebrow::after,
  .hero .section-label::before,
  .hero .section-label::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
}
