:root {
  --w: 1440px;
  --header-h: 80px;

  --black: #0f0f0f;
  --black-2: #111111;
  --white: #ffffff;
  --muted: #666666;
  --muted-2: #444444;
  --line: rgba(17, 17, 17, 0.12);

  --gold: #c5a059; /* champagne gold */
  --gold-accent: #d4af37; /* 見出し・アイコン・CTA強調用 */

  /* Alias tokens for commitment section snippet */
  --sakura-pink: var(--gold);
  --navy-blue: var(--black-2);
  --dark-gray: rgba(17, 17, 17, 0.78);

  --radius: 14px;
  --radius-lg: 18px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

/* ----- Commitment ----- */
.gx-commitment__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sakura-pink);
  margin-bottom: 1rem;
}

.gx-commitment__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--navy-blue);
}

.gx-commitment__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.gx-commitment__media img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 900px;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--black-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent long dummy strings from overflowing on mobile */
h1,
h2,
h3,
p,
a,
li,
dt,
dd,
small,
span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none !important;
}

main {
  background: var(--white);
}

/* 下層ページの h1：中央揃え＋グラデーション下線（トップ以外の固定ページ） */
body.page:not(.home) main h1 {
  position: relative;
  text-align: center;
}

body.page:not(.home) main h1::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 6px;
  content: '';
  border-radius: 3px;
  background: linear-gradient(90deg, #fff2a1 0%, #ffd35b 35%, #d4af37 70%, #c5a059 100%);
}

.gx-wrap {
  width: min(var(--w), 100%);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 991.98px) {
  .gx-wrap {
    padding: 0 20px;
  }
}

/* Anchor offset for fixed header */
#top,
#news,
#services,
#vision-ir,
#sustainability,
#careers,
#contact {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* Header menu: hover shows Japanese label */
.hover-ja {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hover-ja__en {
  transition: opacity 160ms ease;
}

.hover-ja::after {
  content: attr(data-ja);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: inherit;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.hover-ja--start::after {
  justify-content: flex-start;
}

.hover-ja:hover .hover-ja__en,
.hover-ja:focus-visible .hover-ja__en {
  opacity: 0;
}

.hover-ja:hover::after,
.hover-ja:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

/* Headings: keep design, focus to Japanese */
.focus-ja {
  position: relative;
  display: inline-block;
}

.focus-ja__base {
  transition: opacity 160ms ease;
}

.focus-ja::after {
  content: attr(data-ja);
  position: absolute;
  inset: 0;
  white-space: pre-line;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.focus-ja:hover .focus-ja__base,
.focus-ja:focus-visible .focus-ja__base {
  opacity: 0;
}

.focus-ja:hover::after,
.focus-ja:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

/* Loading */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(15, 15, 15, 1);
  transition: opacity 600ms ease, visibility 600ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  text-align: center;
  padding: 24px;
}

.page-loader__brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  font-size: clamp(16px, 1.2vw + 10px, 22px);
}

.page-loader__line {
  width: 84px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(197, 160, 89, 0.95);
  transform-origin: left;
  animation: loaderLine 1.25s ease-in-out infinite;
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

/* Header */
.gx-header {
  height: var(--header-h);
  background: rgba(15, 15, 15, 0.5);
  z-index: 1030;
}

.gx-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gx-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  white-space: nowrap;
}

/* ロゴはホバーで文字を消さない（hover-ja 等の影響を受けない） */
.gx-logo:hover,
.gx-logo:focus-visible {
  color: var(--white);
  opacity: 1;
}
.gx-logo .hover-ja__en,
.gx-logo:hover .hover-ja__en,
.gx-logo:focus-visible .hover-ja__en {
  opacity: 1 !important;
}
.gx-logo::after {
  display: none !important;
}

.gx-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gx-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease;
}

.gx-nav__link:hover,
.gx-nav__link:focus-visible {
  color: var(--gold);
}

.gx-menu {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: 0;
  padding: 0;
}

.gx-menu__line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  display: block;
  margin-left: auto;
}

.gx-offcanvas {
  background: var(--black);
  color: var(--white);
}

.gx-offcanvas__title {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.gx-offcanvas__links {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.gx-offcanvas__link {
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.gx-offcanvas__link:hover {
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--gold);
}

/* Hero */
.gx-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: #000;
  display: grid;
  place-items: center;
  padding-top: var(--header-h);
  overflow: clip;
}

@media (min-width: 992px) {
  .gx-hero {
    min-height: 900px;
  }
}

.gx-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-sakura.svg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.gx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.44) 55%, rgba(0, 0, 0, 0.56) 100%);
}

.gx-hero__inner {
  position: relative;
  z-index: 1;
  padding: 90px 0 120px;
}

.gx-hero__copy {
  text-align: center;
}

.gx-hero__title {
  margin: 0;
  color: var(--white);
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1.12;
  font-size: clamp(2.25rem, 4.2vw + 0.75rem, 4rem); /* ~64px at desktop */
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.gx-hero__sub {
  margin: 24px 0 0;
  color: rgba(224, 224, 224, 0.98);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 18px;
  text-shadow: 0 16px 55px rgba(0, 0, 0, 0.55);
}

.gx-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.gx-scroll__text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
}

.gx-scroll__line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.65);
  transform-origin: top;
  animation: gxScroll 1.9s ease-in-out infinite;
}

@keyframes gxScroll {
  0% {
    transform: scaleY(0.35);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.35);
    opacity: 0.35;
  }
}

/* Sections */
.gx-section {
  padding: 120px 0;
}

@media (max-width: 991.98px) {
  .gx-section {
    padding: 96px 0;
  }
}

.gx-sectionHead__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black-2);
}

.gx-sectionHead__line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ダーク背景セクションはテキスト白で統一（全ページ共通） */
.gx-section--dark {
  color: #fff;
}
.gx-section--dark .gx-sectionHead__title {
  color: #fff !important;
}

/* Services section: match footer background */
.gx-section--services {
  position: relative;
  background-color: var(--black);
  background-image: url("../img/b5ae-5e6cf5f526f0_0.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* fallback */
}

.gx-section--services::before {
  content: "";
  position: absolute;
  inset: 0;
  /* keep readability over busy image */
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0.72) 60%, rgba(15, 15, 15, 0.82) 100%);
}

.gx-section--services > .gx-wrap {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .gx-section--services {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gx-section--services {
    background-attachment: scroll;
  }
}

.gx-section--services .gx-sectionHead__title {
  color: rgba(255, 255, 255, 0.96);
}

/* Performance section */
.gx-section--performance {
  background: var(--white);
}

.gx-section--performance .gx-metrics {
  margin-top: 0;
  padding-top: 0;
}

/* News */
.gx-section--news {
  padding: 100px 0;
}

.gx-news {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991.98px) {
  .gx-news {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.gx-news__title {
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: var(--black-2);
  line-height: 1.05;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .gx-news__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 40px;
  }
}

.gx-newsItem {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.gx-newsItem:last-child {
  border-bottom: 1px solid var(--line);
}

.gx-newsItem__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gx-newsItem__date {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.gx-badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black-2);
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
}

.gx-badge--ir {
  border-color: rgba(197, 160, 89, 0.55);
  color: #7a5f2a;
}

.gx-badge--press {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.12);
  color: #7a5f2a;
}

.gx-newsItem__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  transition: transform 160ms ease;
}

.gx-newsItem__text {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-2);
  line-height: 1.6;
}

.gx-newsItem__link i {
  color: rgba(17, 17, 17, 0.5);
}

.gx-newsItem__link:hover {
  transform: translateX(2px);
}

/* Cards */
.gx-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(197, 160, 89, 0.22);
}

.gx-card__media {
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
}

.gx-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.7);
}

.gx-card__body {
  padding: 18px 18px 20px;
}

.gx-card__title {
  margin: 2px 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.gx-card__text {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted-2);
}

.gx-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black-2);
  text-transform: uppercase;
}

.gx-card__link i {
  color: rgba(17, 17, 17, 0.55);
}

.gx-card__link:hover {
  color: var(--gold);
}

/* Metrics (KPI cards) */
.gx-metrics {
  margin-top: 64px;
  padding-top: 8px;
}

.gx-metrics__head {
  margin-top: 10px;
}

.gx-metrics__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.gx-metrics__title {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black-2);
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.gx-metrics__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 991.98px) {
  .gx-metrics__title {
    font-size: 24px;
  }
}

.gx-stat .gx-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gx-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.62);
}

.gx-stat__value {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--black-2);
}

.gx-stat__unit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.55);
  margin-left: 6px;
}

.gx-stat__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.78);
}

/* Vision / IR */
.gx-vision {
  position: relative;
  height: 600px;
  min-height: 520px;
  color: var(--black-2);
  overflow: clip;
}

.gx-vision__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/FREs0f9-23.webp");
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .gx-vision__bg {
    background-attachment: fixed;
  }
}

.gx-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0) 70%);
}

.gx-vision__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 991.98px) {
  .gx-vision__inner {
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

.gx-vision__spacer {
  display: none;
}

@media (min-width: 992px) {
  .gx-vision__spacer {
    display: block;
  }
}

.gx-visionBox {
  margin-left: auto;
  width: min(560px, 100%);
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.gx-visionBox__title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gx-visionBox__lead {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.82);
}

.gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gx-btn--dark {
  background: var(--black-2);
  color: var(--white);
  border-color: rgba(17, 17, 17, 0.25);
}

.gx-btn--dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.gx-btn--gold {
  background:
    radial-gradient(120% 180% at 18% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #ffea6b 0%, #f6c945 42%, #c78b12 100%);
  color: #1a1408;
  border-color: rgba(255, 234, 107, 0.65);
  font-size: 16px;
  padding: 14px 32px;
  min-width: 240px;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -12px 20px rgba(0, 0, 0, 0.14);
}

.gx-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 78px rgba(212, 175, 55, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -12px 20px rgba(0, 0, 0, 0.14);
  background:
    radial-gradient(120% 180% at 18% 0%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #fff2a1 0%, #ffd35b 42%, #d4af37 100%);
}

/* カード・コンテナ内のゴールドボタンは小さい幅ではみ出さないようにする */
.gx-card .gx-btn--gold,
[class*="-card"] .gx-btn--gold,
[class*="-container"] .gx-btn--gold,
.gx-cta-section__buttons .gx-btn--gold,
.gx-vision-dashboard .gx-btn--gold,
.gx-sustainability-dashboard .gx-btn--gold {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Sustainability */
.gx-sus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .gx-sus {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.gx-sus__left {
  position: relative;
}

.gx-sus__watermark {
  position: absolute;
  inset: -10px 0 auto 0;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.06);
  pointer-events: none;
  user-select: none;
}

.gx-sus__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.gx-sus__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gx-sus__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.gx-sus__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(17, 17, 17, 0.78);
}

.gx-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black-2);
}

.gx-link:hover {
  color: var(--gold);
}

/* Careers */
.gx-section--careers {
  background: #f9f9f9;
  padding: 100px 0;
}

.gx-careersHead__title {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black-2);
}

.gx-careerCard {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gx-careerCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.16);
}

.gx-careerCard__media {
  aspect-ratio: 16 / 9;
}

.gx-careerCard__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.gx-careerCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.64) 100%);
}

.gx-careerCard__label,
.gx-careerCard__cta {
  position: absolute;
  left: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

.gx-careerCard__label {
  top: 16px;
  font-size: 12px;
  font-weight: 600;
}

.gx-careerCard__cta {
  bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gx-careerCard__cta i {
  opacity: 0.85;
}

/* Footer */
.gx-footer {
  background: var(--black);
  color: var(--white);
  min-height: 400px;
  padding: 80px 0 30px;
}

.gx-footer__top {
  padding-bottom: 44px;
}

.gx-footerCta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.gx-footerCta__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}

.gx-footerCta__title {
  font-size: 20px; /* 24px → 20px に縮小してテキスト量に合わせる */
  font-weight: 400; /* 600 → 400 に変更してブランド品格維持 */
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 18px;
}

.gx-footer__mid {
  padding-top: 10px;
  padding-bottom: 36px;
}

.gx-footer__brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.gx-footer__meta {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.9;
  font-size: 14px;
}

.gx-footer__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.gx-footer__list a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.gx-footer__list a:hover {
  color: var(--gold);
}

.gx-footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.gx-footer__snsLink {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gx-footer__snsLink:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--gold);
}

.gx-footer__bottom {
  text-align: center;
  color: #555555;
  font-size: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
img{
  border-radius: 10px;
}