/* ===== 案C REBUILD — 白×ネイビー「建設の実直さ」 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #0D1A36;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --ink:   #0D1A36;
  --navy:  #162D5A;
  --blue:  #1E4FC2;
  --gold:  #C08A28;
  --white: #FFFFFF;
  --off:   #F5F7FA;
  --rule:  #DDE2EB;
  --sub:   #556070;
}

/* UTIL */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== HEADER ===== */
.hd {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
.hd.on { box-shadow: 0 2px 16px rgba(13,26,54,0.1); }
.hd-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-sq {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.gnav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.gnav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sub);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.gnav a:hover, .gnav a.active { color: var(--navy); }
.gnav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.gnav-cta:hover { background: var(--ink) !important; }
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--white);
}
.hero-overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--navy);
}
.hero-body-txt {
  font-size: 0.93rem;
  color: var(--sub);
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-fill {
  background: var(--navy);
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 13px 32px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-fill:hover { background: var(--ink); }
.btn-line {
  border: 1.5px solid var(--rule);
  color: var(--sub);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 12px 28px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-line:hover { border-color: var(--navy); color: var(--navy); }
.hero-r {
  overflow: hidden;
  position: relative;
}
.hero-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FIGURES ===== */
.figs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fig {
  padding: 36px 40px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fig:last-child { border-right: none; }
.fig-big {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.fig-sm {
  font-size: 0.76rem;
  color: var(--sub);
  letter-spacing: 0.04em;
}

/* ===== WORKS ===== */
.works {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.sh {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.label-lt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.sh-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.wlist li {
  display: grid;
  grid-template-columns: 56px 1fr 44px;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.wlist li:hover {
  background: var(--off);
  margin: 0 -48px;
  padding-left: 48px;
  padding-right: 48px;
}
.wn {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.1em;
}
.wd h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.wd p {
  font-size: 0.84rem;
  color: var(--sub);
  line-height: 1.6;
}
.warrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  font-size: 0.78rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.wlist li:hover .warrow {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ===== STRENGTH ===== */
.strength {
  background: var(--off);
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.str-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.str-lft {
  position: static;
}
.str-h {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}
.str-lead {
  font-size: 0.9rem;
  color: var(--sub);
  line-height: 1.85;
  margin-bottom: 28px;
}
.sitem {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.sitem:first-child { border-top: 1px solid var(--rule); }
.sno {
  font-size: 2rem;
  font-weight: 900;
  color: #C8D4E8;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -0.04em;
}
.sitem h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.sitem p {
  font-size: 0.85rem;
  color: var(--sub);
  line-height: 1.7;
}

/* ===== RECRUIT ===== */
.recruit {
  position: relative;
  background: var(--navy);
  padding: 96px 48px;
  overflow: hidden;
}
.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.recruit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.rec-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.rec-h {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.rec-body {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 40px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 15px 44px;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-gold:hover { background: #A87420; }

/* ===== FOOTER ===== */
.foot {
  background: var(--ink);
  padding: 64px 48px 28px;
}
.foot-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.foot-logo {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.foot-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.fc h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fc a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.fc a:hover { color: var(--white); }
.foot-copy {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

/* ===== COMPAT: sub-page variables & shared classes ===== */
:root {
  --navy-dark:  #0F1F5C;
  --navy-mid:   #2563EB;
  --blue-pale:  #EFF6FF;
  --blue-light: #DBEAFE;
  --off-white:  #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-900:   #0F172A;
  --text:       #1E293B;
  --text-sub:   #475569;
}
.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-desc {
  font-size: 0.92rem;
  color: var(--sub);
  line-height: 1.8;
  max-width: 560px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { height: 380px; order: -1; }
  .str-grid { grid-template-columns: 1fr; gap: 48px; }
  .str-lft { position: static; }
  .foot-in { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}
/* SERVICE CARD GRID — 5枚均等 */
.sv-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.sv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.sv-card-img { aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.sv-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sv-card:hover .sv-card-img img { transform: scale(1.06); }
.sv-card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.4rem;
}
.sv-card-n { font-size: 0.62rem; font-weight: 700; color: var(--navy-mid); letter-spacing: 0.18em; text-transform: uppercase; }
.sv-card-h { font-size: 0.88rem; font-weight: 900; color: var(--gray-900); line-height: 1.4; }
.sv-card-p {
  font-size: 0.75rem; color: var(--text-sub); line-height: 1.7; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.sv-card-arrow { font-size: 0.72rem; font-weight: 700; color: var(--navy-mid); margin-top: 0.5rem; }

@media (max-width: 640px) {
  .sv-card-grid { grid-template-columns: 1fr; gap: 12px; }
  .sv-card-img { aspect-ratio: 16/9; }
}

/* HEADER PHONE */
.hd-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.3rem 0.75rem;
  border: 1.5px solid rgba(22,45,90,0.3);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  margin-left: 24px;
  margin-right: 16px;
}
.hd-phone:hover { background: rgba(22,45,90,0.06); border-color: var(--navy); }
@media (max-width: 900px) { .hd-phone { display: none; } }

@media (max-width: 768px) {
  .hd-in { padding: 0 20px; }
  .ham { display: flex; }
  .gnav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--rule);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px 0;
  }
  .gnav.open { display: flex; }
  .gnav a { padding: 14px 20px; border-bottom: 1px solid var(--rule); }
  .gnav-cta { margin: 12px 20px; text-align: center; }
  .figs { grid-template-columns: repeat(2, 1fr); }
  .fig:nth-child(2) { border-right: none; }
  .fig:nth-child(3), .fig:nth-child(4) { border-top: 1px solid var(--rule); }
  .wrap { padding: 0 20px; }
  .works { padding: 64px 0; }
  .wlist li:hover { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
  .strength { padding: 64px 0; }
  .recruit { padding: 64px 20px; }
  .foot { padding: 48px 20px 24px; }
  .foot-in { padding: 0 0 32px; gap: 32px; }
  .foot-cols { grid-template-columns: 1fr; gap: 24px; }
  .hero-l { padding: 48px 20px; }
}

/* ===== LOGO IMG (画像ロゴ対応) ===== */
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ===== HERO: フルブリード写真版 (現行HTML対応) ===== */
.hero {
  margin-top: 64px;
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,26,54,0.84) 50%, rgba(13,26,54,0.28));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 0 clamp(24px, 6vw, 100px);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  width: 100%;
}
.hero-inner .hero-overline {
  color: rgba(255,255,255,0.9);
  border-left-color: var(--gold);
}
.hero-inner .hero-h1 {
  color: var(--white);
}
.hero-inner .hero-h1 em {
  color: var(--gold);
}
.hero-sub {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 40px;
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 12px 28px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* ===== NEWS ===== */
.news {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
.news-item {
  display: grid;
  grid-template-columns: 110px auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.news-item:first-child { border-top: 1px solid var(--rule); }
.news-date {
  font-size: 0.8rem;
  color: var(--sub);
  font-weight: 500;
}
.news-cat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 2px 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  justify-self: center;
  text-align: center;
}
.news-ttl {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}
.news-item-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.news-item:has(.news-item-link):hover {
  background: var(--off);
  margin: 0 -48px;
  padding-left: 48px;
  padding-right: 48px;
}
.news-item:has(.news-item-link):hover .news-ttl { color: var(--navy); }
@media (max-width: 768px) {
  .news-item:has(.news-item-link):hover { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
}

/* ===== SERVICE AREA SECTION ===== */
:root { --muted: rgba(255,255,255,0.55); }
.area-sec {
  background: var(--navy);
  padding: 96px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== BANNER LINKS ===== */
.banner-sec {
  background: var(--off-white, #f5f6f8);
  padding: 32px 40px;
}
.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.banner-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.banner-card:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.banner-card img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .banner-sec { padding: 24px 20px; }
  .banner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== SH MODIFIER ===== */
.sh-title--lt { color: var(--ink); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .hero-inner { padding: 48px 20px; }
  .news-item { grid-template-columns: 1fr; gap: 4px; }
  .news-item .news-cat { justify-self: start; }
  .area-sec { padding: 64px 0; }
}

/* ===== PAGE HERO (shared — about / service / recruit) ===== */
.page-hero {
  padding-top: 64px;
  background: var(--blue-pale);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
}
.page-hero-inner .section-label { margin-bottom: 10px; }
.page-hero-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.page-hero-inner > p {
  font-size: 0.95rem;
  color: var(--text-sub);
  max-width: 540px;
  line-height: 1.8;
}

/* ===== ABOUT PAGE ===== */
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--gray-200); }
.company-table th {
  font-size: 0.82rem; font-weight: 700; color: var(--navy-mid);
  text-align: left; padding: 16px 0; width: 120px; vertical-align: top;
}
.company-table td { font-size: 0.9rem; color: var(--text); padding: 16px 0; line-height: 1.7; }
.msg-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.co-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-section { background: var(--off-white); padding: 72px 40px; }
.map-inner { max-width: 1200px; margin: 0 auto; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.map-iframe {
  width: 100%; height: 380px; border: none;
  border-radius: 8px; box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.map-info {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 28px;
}
.map-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.map-info-item:last-child { margin-bottom: 0; }
.map-icon {
  width: 36px; height: 36px; background: var(--blue-pale);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.map-icon i { color: var(--navy-mid); font-size: 0.9rem; }
.map-info-label {
  font-size: 0.75rem; font-weight: 700; color: var(--navy-mid);
  letter-spacing: 0.08em; margin-bottom: 4px;
}
.map-info-val { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

/* ===== SERVICE PAGE ===== */
.sv-section { max-width: 1200px; margin: 0 auto; padding: 72px 40px; }
.sv-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 40px;
}
.sv-item.reverse { direction: rtl; }
.sv-item.reverse > * { direction: ltr; }
.sv-img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.sv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sv-img:hover img { transform: scale(1.04); }
.sv-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; color: var(--navy-mid);
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--blue-pale); padding: 4px 12px;
  border-radius: 20px; margin-bottom: 16px;
}
.sv-h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900;
  color: var(--gray-900); margin-bottom: 20px; line-height: 1.35;
}
.sv-desc { font-size: 0.92rem; color: var(--text-sub); line-height: 1.85; margin-bottom: 24px; }
.sv-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sv-tag {
  font-size: 0.78rem; font-weight: 700; color: var(--navy-mid);
  background: var(--blue-pale); border: 1px solid var(--blue-light);
  padding: 5px 14px; border-radius: 20px;
}
.sv-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; padding-bottom: 72px; border-bottom: 1px solid var(--gray-200);
}
.sv-gallery:last-child { border-bottom: none; padding-bottom: 0; }
.sv-gallery-item { border-radius: 8px; overflow: hidden; }
.sv-gallery-item img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.4s;
}
.sv-gallery-item:hover img { transform: scale(1.04); }
.sv-caption { font-size: 0.78rem; color: var(--text-sub); padding: 8px 4px 0; margin: 0; line-height: 1.5; }
.flow-section { background: var(--off-white); padding: 80px 40px; }
.flow-inner { max-width: 1200px; margin: 0 auto; }
.flow-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ===== INDEX: SERVICE AREA GRID ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

/* ===== RECRUIT PAGE ===== */
.hiring-banner {
  background: var(--navy); padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.hiring-left { display: flex; align-items: center; gap: 12px; }
.hiring-dot {
  width: 10px; height: 10px; background: #4ADE80;
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hiring-text { font-size: 0.92rem; font-weight: 700; color: #fff; }
.hiring-season {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1); padding: 4px 14px; border-radius: 20px;
}
.r-section { max-width: 1200px; margin: 0 auto; padding: 72px 40px; }
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.job-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.job-card:hover { box-shadow: 0 8px 32px rgba(30,58,138,0.1); transform: translateY(-3px); }
.job-card-header {
  background: var(--navy); padding: 20px 28px; display: flex; align-items: center; gap: 12px;
}
.job-card-header i { font-size: 1.2rem; color: rgba(255,255,255,0.7); }
.job-card-header h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.job-table { width: 100%; border-collapse: collapse; }
.job-table tr { border-bottom: 1px solid var(--gray-100); }
.job-table tr:last-child { border-bottom: none; }
.job-table th {
  font-size: 0.76rem; font-weight: 700; color: var(--navy-mid);
  text-align: left; padding: 14px 20px; width: 110px; min-width: 110px;
  vertical-align: top; letter-spacing: 0.04em; white-space: nowrap;
}
.job-table td {
  font-size: 0.88rem; color: var(--text); padding: 14px 28px 14px 0;
  line-height: 1.65; vertical-align: top;
}
.salary-highlight { font-size: 1.3rem; font-weight: 900; color: var(--navy); display: block; margin-bottom: 3px; }
.salary-note { font-size: 0.75rem; color: var(--gray-400); display: block; }
.benefits-full { background: var(--off-white); padding: 72px 40px; }
.benefits-inner { max-width: 1200px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 24px 20px; text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { border-color: var(--navy-mid); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.benefit-icon {
  width: 48px; height: 48px; background: var(--blue-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.benefit-icon i { font-size: 1.2rem; color: var(--navy-mid); }
.benefit-title { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.benefit-desc { font-size: 0.78rem; color: var(--text-sub); line-height: 1.6; }
.voice-section { max-width: 1200px; margin: 0 auto; padding: 72px 40px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.voice-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; }
.voice-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.voice-body { padding: 22px 20px 24px; }
.voice-quote {
  font-size: 0.9rem; color: var(--text); line-height: 1.7;
  margin-bottom: 14px; position: relative; padding-left: 18px;
}
.voice-quote::before {
  content: '"'; position: absolute; left: 0; top: -6px;
  font-size: 1.8rem; color: var(--navy-mid); line-height: 1; opacity: 0.5;
}
.voice-name { font-size: 0.78rem; color: var(--text-sub); }
.voice-name strong { color: var(--navy-mid); font-weight: 700; margin-right: 8px; }
.sch-section { background: var(--off-white); padding: 72px 40px; }
.sch-inner { max-width: 760px; margin: 0 auto; }
.sch-timeline { margin-top: 40px; position: relative; padding-left: 120px; }
.sch-timeline::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 86px;
  width: 2px; background: var(--blue-light);
}
.sch-item { position: relative; margin-bottom: 32px; display: flex; align-items: flex-start; gap: 20px; }
.sch-time {
  position: absolute; left: -120px; top: 2px; font-size: 0.95rem; font-weight: 900;
  color: var(--navy-mid); white-space: nowrap; text-align: right; width: 100px;
}
.sch-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--navy-mid);
  border: 3px solid var(--off-white); flex-shrink: 0; margin-top: 3px;
  position: relative; left: -20px;
}
.sch-content { flex: 1; margin-left: -6px; }
.sch-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.sch-desc { font-size: 0.83rem; color: var(--text-sub); line-height: 1.6; }
.apply-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-mid));
  padding: 80px 40px; text-align: center;
}
.apply-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.apply-section p { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-bottom: 40px; line-height: 1.75; }
.apply-card {
  display: inline-block; background: var(--white); border-radius: 8px;
  padding: 32px 56px; box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.apply-card .label {
  font-size: 0.75rem; font-weight: 700; color: var(--text-sub);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px;
}
.apply-tel {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  color: var(--navy); display: block; letter-spacing: 0.04em;
}
.apply-hours { font-size: 0.8rem; color: var(--text-sub); margin-top: 6px; }
.apply-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 24px; line-height: 1.75; }

/* ===== RESPONSIVE — PAGE-SPECIFIC ===== */
@media (max-width: 1024px) {
  .sv-item { grid-template-columns: 1fr; gap: 32px; }
  .sv-item.reverse { direction: ltr; }
  .msg-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-grid { grid-template-columns: 1fr; }
  .co-table-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero-inner { padding: 40px 20px; }
  .sv-section { padding: 48px 20px; }
  .sv-section .sv-item { padding: 40px 0 20px; }
  .sv-section .sv-gallery { padding-bottom: 40px; }
  .flow-section { padding: 56px 20px; }
  .flow-cards { grid-template-columns: 1fr; }
  .map-section { padding: 56px 20px; }
  .r-section { padding: 56px 20px; }
  .voice-section { padding: 56px 20px; }
  .benefits-full { padding: 56px 20px; }
  .sch-section { padding: 56px 20px; }
  .apply-section { padding: 64px 20px; }
  .apply-card { padding: 28px 32px; }
  .area-grid { grid-template-columns: 1fr; gap: 2rem; }
  .job-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .hiring-banner { padding: 14px 20px; }
}
@media (max-width: 640px) {
  .sv-gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sch-timeline { padding-left: 80px; }
  .sch-time { left: -80px; width: 64px; font-size: 0.82rem; }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.22s;
  display: block;
}
.lightbox-overlay.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-counter {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.08em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-img { max-width: 96vw; max-height: 80vh; }
}

/* ===== TOKUTEI GINOU (service page) ===== */
.tkg-sec {
  background: var(--off-white);
  padding: 80px 40px;
}
.tkg-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tkg-item {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
}
.tkg-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.tkg-item:hover img { transform: scale(1.04); }
.tkg-item .sv-caption {
  padding: 10px 12px;
  background: #fff;
}
@media (max-width: 1024px) {
  .tkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tkg-sec { padding: 56px 20px; }
  .tkg-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== NEWS LIST PAGE ===== */
.news-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
}
.news-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-filter-btn {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.news-filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.news-filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.news-list-row {
  display: grid;
  grid-template-columns: 110px 96px 1fr 20px;
  align-items: center;
  gap: 24px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
  transition: background 0.18s, padding-left 0.18s;
  margin: 0 -12px;
}
.news-list-row:first-child { border-top: 1px solid var(--gray-200); }
.news-list-row:hover { background: var(--blue-pale); }
.nl-date { font-size: 0.82rem; color: var(--text-sub); font-weight: 500; white-space: nowrap; }
.nl-cat {
  font-size: 0.68rem; font-weight: 700; color: var(--navy-mid);
  border: 1px solid var(--navy-mid); padding: 3px 10px;
  white-space: nowrap; letter-spacing: 0.06em;
  justify-self: center; text-align: center;
}
.nl-cat--koujiyou,
.news-cat--koujiyou { color: #059669; border-color: #059669; }
.nl-title { font-size: 0.9rem; color: var(--gray-900); font-weight: 500; line-height: 1.55; }
.news-list-row:hover .nl-title { color: var(--navy); }
.nl-arrow { color: var(--gray-400); font-size: 0.7rem; justify-self: end; }
.news-list-row:hover .nl-arrow { color: var(--navy-mid); }
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.news-page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  font-size: 0.82rem; color: var(--text-sub); font-weight: 700;
  cursor: pointer; background: transparent; transition: all 0.2s;
  text-decoration: none;
}
.news-page-btn:hover, .news-page-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ===== NEWS DETAIL PAGE ===== */
.news-article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}
.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-sub);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.news-breadcrumb a { color: var(--navy-mid); }
.news-breadcrumb a:hover { text-decoration: underline; }
.news-breadcrumb-sep { color: var(--gray-400); }
.news-article-head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
}
.news-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.news-article-date { font-size: 0.82rem; color: var(--text-sub); }
.news-article-title {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.4;
}
.news-article-body { font-size: 0.95rem; color: var(--text); line-height: 2; }
.news-article-body p { margin-bottom: 1.5rem; }
.news-article-body h2 {
  font-size: 1.1rem; font-weight: 900; color: var(--gray-900);
  margin: 2.4rem 0 1rem;
  padding-left: 14px;
  border-left: 4px solid var(--navy-mid);
  line-height: 1.45;
}
.news-article-body ul { margin: 0 0 1.5rem 1.2rem; list-style: disc; }
.news-article-body li { margin-bottom: 0.5rem; color: var(--text); }
.news-article-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 8px; display: block; margin: 2rem 0;
}
.news-article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.news-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.news-nav-prev {
  font-size: 0.82rem; font-weight: 700; color: var(--navy-mid);
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.news-nav-next {
  font-size: 0.82rem; font-weight: 700; color: var(--navy-mid);
  display: flex; align-items: center; gap: 6px; justify-content: flex-end;
  transition: opacity 0.2s;
  text-align: right;
}
.news-nav-prev:hover, .news-nav-next:hover { opacity: 0.65; }
.news-nav-center { text-align: center; }
.news-back-btn {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; color: var(--navy-mid);
  border: 1.5px solid var(--navy-mid);
  padding: 9px 24px; border-radius: 20px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.news-back-btn:hover { background: var(--navy-mid); color: #fff; }
.news-related {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}
.news-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.news-related-card {
  display: block;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.news-related-card:hover { border-color: var(--navy-mid); background: var(--blue-pale); }
.news-related-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.news-related-title {
  font-size: 0.85rem; font-weight: 700; color: var(--gray-900);
  line-height: 1.55;
}
.news-related-card:hover .news-related-title { color: var(--navy); }

/* Responsive — news */
@media (max-width: 768px) {
  .news-page-wrap { padding: 48px 20px; }
  .news-article-wrap { padding: 48px 20px 72px; }
  .news-list-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; margin: 0; }
  .news-list-row:first-child { border-top: 1px solid var(--gray-200); }
  /* バッジが横いっぱいに伸びないよう左寄せ */
  .nl-cat { justify-self: start; }
  .news-cat { justify-self: start; }
  .nl-arrow { display: none; }
  .news-nav { grid-template-columns: 1fr 1fr; }
  .news-nav-center { display: none; }
  .news-related-grid { grid-template-columns: 1fr; }
}

/* トップへ戻るボタン */
.totop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy-mid);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 900;
}
.totop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.totop:hover { background: var(--navy); }
@media (max-width: 768px) {
  .totop { bottom: 20px; right: 16px; width: 44px; height: 44px; }
}

/* ===== AUTO-MIGRATED INLINE STYLES ===== */
.x-section {
  background:var(--white);
  padding:72px 40px;
}
.x-div {
  max-width:1200px;
  margin:0 auto;
}
.x-section-label {
  margin-bottom:20px;
  display:inline-flex;
}
.x-section-title {
  margin-bottom:40px;
}
.x-div-2 {
  width:100%;
  aspect-ratio:3/4;
  background:var(--gray-100);
  border-radius:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0.8rem;
  margin-bottom:20px;
  border:1px solid var(--gray-200);
}
.x-fas {
  font-size:2.5rem;
  color:var(--gray-400);
}
.x-span {
  font-size:0.76rem;
  color:var(--gray-400);
}
.x-div-3 {
  background:var(--blue-pale);
  border-radius:8px;
  padding:20px 24px;
}
.x-div-4 {
  font-size:0.75rem;
  font-weight:700;
  color:var(--navy-mid);
  letter-spacing:0.1em;
  margin-bottom:6px;
}
.x-div-5 {
  font-size:1.3rem;
  font-weight:900;
  color:var(--gray-900);
}
.x-div-6 {
  font-size:0.8rem;
  color:var(--text-sub);
  margin-top:6px;
}
.x-div-7 {
  padding-top:8px;
}
.x-div-8 {
  width:48px;
  height:4px;
  background:var(--navy-mid);
  border-radius:2px;
  margin-bottom:28px;
}
.x-p {
  font-size:0.98rem;
  color:var(--text);
  line-height:2.1;
  margin-bottom:1.4rem;
}
.x-p-2 {
  font-size:0.98rem;
  color:var(--text);
  line-height:2.1;
}
.x-section-2 {
  background:var(--off-white);
  padding:72px 40px;
}
.x-div-9 {
  background:var(--white);
  border:1px solid var(--gray-200);
  border-top:3px solid var(--navy-mid);
  border-radius:8px;
  padding:24px;
  text-align:center;
}
.x-div-10 {
  font-size:1.9rem;
  font-weight:900;
  color:var(--navy-mid);
  line-height:1;
}
.x-div-11 {
  font-size:0.76rem;
  color:var(--text-sub);
  margin-top:6px;
}
.x-section-3 {
  max-width:1200px;
  margin:0 auto;
  padding:72px 40px;
}
.x-section-title-2 {
  margin-bottom:12px;
}
.x-p-3 {
  font-size:0.9rem;
  color:var(--text-sub);
  margin-bottom:2.5rem;
  max-width:600px;
  line-height:1.8;
}
.x-div-12 {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.x-span-2 {
  background:var(--blue-pale);
  border:1px solid var(--blue-light);
  color:var(--navy-mid);
  font-size:0.8rem;
  font-weight:500;
  padding:6px 14px;
  border-radius:20px;
}
.x-span-3 {
  background:var(--navy-mid);
  color:#fff;
  font-size:0.8rem;
  font-weight:700;
  padding:6px 14px;
  border-radius:20px;
}
.x-a {
  color:var(--navy-mid);
  font-weight:700;
}
.x-foot-logo-img {
  height:30px;
  width:auto;
  filter:brightness(0) invert(1);
}
.x-span-4 {
  font-size:0.45em;
  opacity:0.6;
}
.x-div-13 {
  text-align:right;
  margin-top:24px;
}
.x-label {
  display:block;
  margin-bottom:12px;
  color:var(--gold);
}
.x-h2 {
  font-size:clamp(1.6rem,3vw,2.4rem);
  font-weight:900;
  color:var(--white);
  line-height:1.2;
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.x-p-4 {
  font-size:0.92rem;
  color:rgba(255,255,255,0.85);
  line-height:1.85;
  margin-bottom:24px;
}
.x-a-2 {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold);
  color:#fff;
  font-weight:700;
  font-size:0.92rem;
  padding:12px 28px;
  transition:background 0.2s;
}
.x-span-5 {
  background:var(--gold);
  color:#fff;
  padding:6px 16px;
  font-size:0.82rem;
  font-weight:700;
}
.x-span-6 {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.25);
  color:rgba(255,255,255,0.85);
  padding:6px 16px;
  font-size:0.82rem;
}
.x-img {
  height:32px;
  width:auto;
  filter:brightness(0) invert(1);
  margin-bottom:4px;
}
.x-p-5 {
  display:none;
  color:var(--text-sub);
  font-size:0.9rem;
  padding:40px 0;
  text-align:center;
}
.x-div-14 {
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:16px;
  padding:2rem;
  display:flex;
  gap:1.4rem;
  align-items:flex-start;
}
.x-div-15 {
  width:56px;
  height:56px;
  background:var(--blue-pale);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.x-fas-2 {
  font-size:1.3rem;
  color:var(--navy-mid);
}
.x-div-16 {
  font-size:0.7rem;
  font-weight:700;
  color:var(--navy-mid);
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.x-h3 {
  font-size:0.95rem;
  font-weight:900;
  color:var(--gray-900);
  margin-bottom:6px;
}
.x-p-6 {
  font-size:0.78rem;
  color:var(--text-sub);
  line-height:1.7;
  margin:0;
}
.x-div-17 {
  grid-column:1/-1;
  background:var(--navy-mid);
  border-radius:16px;
  padding:2rem;
  display:flex;
  gap:1.4rem;
  align-items:center;
}
.x-div-18 {
  width:56px;
  height:56px;
  background:rgba(255,255,255,0.15);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.x-fas-3 {
  font-size:1.3rem;
  color:#fff;
}
.x-div-19 {
  font-size:0.7rem;
  font-weight:700;
  color:rgba(255,255,255,0.6);
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.x-h3-2 {
  font-size:0.95rem;
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}
.x-p-7 {
  font-size:0.78rem;
  color:rgba(255,255,255,0.72);
  line-height:1.7;
  margin:0;
}
