/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gc-green: #026538;
  --gc-green-dark: #014d2a;
  --gc-green-light: #038a4c;
  --gc-accent: #f5a623;
  --gc-white: #ffffff;
  --gc-black: #1a1a1a;
  --gc-gray: #666666;
  --gc-gray-light: #f5f5f5;
  --gc-gray-border: #e0e0e0;
  --font-base: 'Noto Sans JP', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--gc-black);
  line-height: 1.7;
  background: var(--gc-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--gc-gray-light);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-green);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--gc-black);
}

.section__title span {
  color: var(--gc-green);
}

.section__lead {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--gc-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn--primary {
  background: var(--gc-green);
  color: var(--gc-white);
  border-color: var(--gc-green);
}

.btn--primary:hover {
  background: var(--gc-green-dark);
  border-color: var(--gc-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  color: var(--gc-green);
  border-color: var(--gc-green);
}

.btn--outline:hover {
  background: var(--gc-green);
  color: var(--gc-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--gc-white);
  color: var(--gc-green);
  border-color: var(--gc-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--gc-white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn--arrow::after {
  content: '→';
  font-size: 1.1em;
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
  background: #c8d8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #014d2a 0%, #026538 45%, #038a4c 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-pattern::before,
.hero__bg-pattern::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero__bg-pattern::before {
  width: 800px;
  height: 800px;
  right: -200px;
  top: -200px;
}

.hero__bg-pattern::after {
  width: 500px;
  height: 500px;
  right: 100px;
  top: 50px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 80px;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease 0.2s forwards;
}

.hero__catch {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1.25;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.9s ease 0.4s forwards;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease 0.65s forwards;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollDown 1.5s ease-in-out infinite;
}

/* ===== STATS / NUMBERS SECTION ===== */
.stats {
  padding: 80px 0;
  background: var(--gc-black);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__number .count {
  color: #4ade80;
}

.stats__unit {
  font-size: 1.4rem;
  color: #4ade80;
  font-weight: 700;
}

.stats__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ===== MEMBERS / STAFF SECTION ===== */
.members__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.member-card {
  background: var(--gc-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.member-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
}

.member-card__body {
  padding: 24px;
}

.member-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gc-green);
  background: rgba(2, 101, 56, 0.1);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.member-card__name {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.member-card__comment {
  font-size: 0.9rem;
  color: var(--gc-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gc-green);
  transition: gap var(--transition);
}

.member-card__link:hover {
  gap: 12px;
}

.members__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== RECRUIT CARDS ===== */
.recruit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.recruit-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.recruit-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.recruit-card:hover .recruit-card__bg {
  transform: scale(1.04);
}

.recruit-card--newgrad .recruit-card__bg {
  background: linear-gradient(145deg, #014d2a 0%, #026538 100%);
}

.recruit-card--career .recruit-card__bg {
  background: linear-gradient(145deg, #1a1a1a 0%, #3a3a3a 100%);
}

.recruit-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.recruit-card__content {
  position: relative;
  z-index: 2;
}

.recruit-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.recruit-card__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* ===== BLOG SECTION ===== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--gc-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gc-white);
  background: var(--gc-green);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--gc-gray);
}

.blog-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--gc-black);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gc-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gc-white);
  letter-spacing: 0.05em;
}

.footer__logo span {
  color: #4ade80;
}

.footer__tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer__entry {
  margin-top: 8px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__nav-group h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gc-white);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-group ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__nav-group ul li a:hover {
  color: #4ade80;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__corp-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__corp-link:hover {
  color: rgba(255,255,255,0.7);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* ===== KEYFRAMES ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(1),
  .stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .members__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .recruit__grid {
    grid-template-columns: 1fr;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #014d2a 0%, #026538 60%, #038a4c 100%);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

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

.page-hero__en {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.page-hero__lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.9;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb__item a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.breadcrumb__item a:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb__item--current {
  color: rgba(255,255,255,0.85);
}

.breadcrumb__sep {
  font-size: 0.65rem;
  opacity: 0.4;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gc-white);
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gc-gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gc-green) 0%, #4ade80 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

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

.service-card__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(2, 101, 56, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-card__icon {
  margin-bottom: 16px;
}

.service-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card__title span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gc-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.8;
}

/* ===== STRENGTH CARDS ===== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--gc-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.strength-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gc-green);
  color: var(--gc-white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 20px;
}

.strength-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-bottom: 12px;
  line-height: 1.5;
}

.strength-card__desc {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.8;
}

/* ===== MISSION / VISION SECTION ===== */
.mission-block {
  background: var(--gc-black);
  padding: 80px 0;
  text-align: center;
}

.mission-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 20px;
}

.mission-block__text {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1.5;
}

.vision-block {
  background: var(--gc-green);
  padding: 72px 0;
  text-align: center;
}

.vision-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.vision-block__text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gc-white);
  line-height: 1.6;
}

/* ===== BACKGROUND TEXT SECTION ===== */
.bg-story {
  padding: 80px 0;
  background: var(--gc-gray-light);
}

.bg-story__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.bg-story__head {
  position: sticky;
  top: 100px;
}

.bg-story__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-green);
  margin-bottom: 12px;
}

.bg-story__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
}

.bg-story__body p {
  font-size: 1rem;
  line-height: 2;
  color: #444;
  margin-bottom: 24px;
}

.bg-story__body p:last-child {
  margin-bottom: 0;
}

/* ===== MESSAGE LAYOUT ===== */
.message-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.message-photo {
  position: sticky;
  top: 100px;
}

.message-photo__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
}

.message-photo__caption {
  margin-top: 16px;
  text-align: center;
}

.message-photo__name {
  font-size: 1.1rem;
  font-weight: 900;
}

.message-photo__role {
  font-size: 0.82rem;
  color: var(--gc-gray);
  margin-top: 4px;
}

.message-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 32px;
  color: var(--gc-black);
}

.message-body h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gc-green);
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gc-green);
}

.message-body p {
  font-size: 0.975rem;
  line-height: 2;
  color: #444;
  margin-bottom: 20px;
}

.message-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gc-gray-border);
  font-size: 0.9rem;
  color: var(--gc-gray);
  text-align: right;
}

.message-signature strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-top: 4px;
}

/* ===== CAREER TIMELINE ===== */
.timeline {
  padding: 80px 0;
}

.timeline__grid {
  position: relative;
  padding-left: 40px;
}

.timeline__grid::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gc-green) 0%, rgba(2,101,56,0.1) 100%);
}

.timeline__item {
  position: relative;
  padding: 0 0 36px 28px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gc-green);
  border: 3px solid var(--gc-white);
  box-shadow: 0 0 0 2px var(--gc-green);
}

.timeline__year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc-green);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline__event {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--gc-black);
  margin-bottom: 4px;
}

.timeline__note {
  font-size: 0.85rem;
  color: var(--gc-gray);
}

/* ===== COMPANY TABLE ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--gc-gray-border);
}

.company-table tr:first-child {
  border-top: 1px solid var(--gc-gray-border);
}

.company-table th {
  width: 200px;
  padding: 22px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gc-green);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  background: rgba(2, 101, 56, 0.04);
}

.company-table td {
  padding: 22px 24px;
  font-size: 0.925rem;
  color: #333;
  line-height: 1.8;
  vertical-align: top;
}

/* ===== MAP GRID ===== */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.map-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-green);
  margin-bottom: 8px;
}

.map-item__address {
  font-size: 0.875rem;
  color: var(--gc-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.map-item__frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-item__frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* ===== RESPONSIVE: PHASE 2 ===== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bg-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bg-story__head {
    position: static;
  }

  .message-layout {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .message-layout {
    grid-template-columns: 1fr;
  }

  .message-photo {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .company-table th {
    width: 130px;
    padding: 16px;
  }

  .company-table td {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 120px 0 48px;
  }
}

/* ===== INTERVIEW LIST ===== */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.interview-card {
  display: block;
  background: var(--gc-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.interview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(2, 101, 56, 0.15);
  border-color: rgba(2, 101, 56, 0.2);
}

.interview-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
}

.interview-card__body {
  padding: 24px;
}

.interview-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gc-green);
  background: rgba(2,101,56,0.09);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.interview-card__name {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.interview-card__role {
  font-size: 0.8rem;
  color: var(--gc-gray);
  margin-bottom: 12px;
}

.interview-card__comment {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.interview-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #026538;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: gap 0.25s ease, border-color 0.25s ease;
}

.interview-card:hover .interview-card__link {
  gap: 12px;
  border-bottom-color: #026538;
}

/* ===== INDIVIDUAL INTERVIEW ===== */
.interview-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gc-gray-border);
}

.interview-profile__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
}

.interview-profile__initial {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gc-green);
  background: rgba(2,101,56,0.09);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.interview-profile__name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.interview-profile__role {
  font-size: 0.875rem;
  color: var(--gc-gray);
  margin-bottom: 28px;
}

.interview-profile__task-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gc-green);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.interview-profile__task {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 28px;
}

.interview-profile__career {
  background: var(--gc-gray-light);
  border-radius: 8px;
  padding: 20px 24px;
}

.interview-profile__career-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gc-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.interview-profile__career-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.865rem;
  color: #444;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.interview-profile__career-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.interview-profile__career-step::before {
  content: '▶';
  color: var(--gc-green);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===== Q&A ===== */
.qa-section {
  max-width: 800px;
}

.qa-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--gc-gray-border);
}

.qa-item:first-child {
  padding-top: 0;
}

.qa-item:last-child {
  border-bottom: none;
}

.qa-question {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.qa-question__label {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--gc-green);
  color: var(--gc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.qa-question__text {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gc-black);
  line-height: 1.55;
  padding-top: 10px;
}

.qa-answer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-left: 60px;
}

.qa-answer__label {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(2,101,56,0.08);
  color: var(--gc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
}

.qa-answer__text {
  font-size: 0.975rem;
  line-height: 1.9;
  color: #444;
  padding-top: 10px;
}

/* ===== CROSSTALK ===== */
.crosstalk-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
}

.crosstalk-intro__vs {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gc-gray-border);
}

.crosstalk-member {
  text-align: center;
}

.crosstalk-member__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}

.crosstalk-member__initial {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gc-green);
  background: rgba(2,101,56,0.09);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.crosstalk-member__name {
  font-size: 0.95rem;
  font-weight: 900;
}

.crosstalk-member__role {
  font-size: 0.78rem;
  color: var(--gc-gray);
  margin-top: 2px;
}

.crosstalk-qa-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--gc-gray-border);
}

.crosstalk-qa-block:last-child {
  border-bottom: none;
}

.crosstalk-q-head {
  text-align: center;
  margin-bottom: 40px;
}

.crosstalk-q-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gc-green);
  margin-bottom: 8px;
}

.crosstalk-q-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gc-black);
  line-height: 1.5;
}

.crosstalk-bubbles {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.crosstalk-bubble {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.crosstalk-bubble--right {
  flex-direction: row-reverse;
}

.crosstalk-bubble__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.crosstalk-bubble__body {
  max-width: calc(100% - 80px);
}

.crosstalk-bubble__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gc-gray);
  margin-bottom: 6px;
}

.crosstalk-bubble--right .crosstalk-bubble__name {
  text-align: right;
}

.crosstalk-bubble__text {
  background: var(--gc-gray-light);
  padding: 18px 22px;
  border-radius: 4px 16px 16px 16px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #333;
}

.crosstalk-bubble--right .crosstalk-bubble__text {
  background: rgba(2,101,56,0.07);
  border-radius: 16px 4px 16px 16px;
}

/* ===== RESPONSIVE: PHASE 3 ===== */
@media (max-width: 1024px) {
  .interview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interview-profile {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .interview-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .interview-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .interview-profile__photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .qa-answer {
    padding-left: 0;
  }

  .crosstalk-intro {
    flex-direction: column;
    gap: 24px;
  }

  .crosstalk-intro__vs {
    transform: rotate(90deg);
    display: none;
  }

  .crosstalk-bubbles {
    max-width: 100%;
  }
}

/* ===== FORM STYLES ===== */
.entry-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gc-black);
  margin-bottom: 8px;
}

.form-label .required {
  display: inline-block;
  font-size: 0.65rem;
  color: var(--gc-white);
  background: #e53e3e;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 7px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-label .optional {
  font-size: 0.72rem;
  color: var(--gc-gray);
  font-weight: 400;
  margin-left: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gc-gray-border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-base);
  color: var(--gc-black);
  background: var(--gc-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gc-green);
  box-shadow: 0 0 0 3px rgba(2,101,56,0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gc-black);
  padding: 8px 16px;
  border: 2px solid var(--gc-gray-border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.form-radio-item:has(input:checked) {
  border-color: var(--gc-green);
  background: rgba(2,101,56,0.05);
}

.form-radio-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gc-green);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gc-green);
  color: var(--gc-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-base);
  cursor: pointer;
  letter-spacing: 0.08em;
  margin-top: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  background: var(--gc-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2,101,56,0.3);
}

.form-success {
  display: none;
  background: rgba(2,101,56,0.06);
  border: 1px solid rgba(2,101,56,0.2);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gc-green);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 0.9rem;
  color: var(--gc-gray);
  line-height: 1.9;
}

.casual-banner {
  background: var(--gc-black);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
  margin-top: 56px;
}

.casual-banner__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.casual-banner__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gc-white);
  margin-bottom: 10px;
}

.casual-banner__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ===== BLOG LIST ===== */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.blog-cat-btn {
  padding: 7px 18px;
  border: 1px solid var(--gc-gray-border);
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc-gray);
  background: var(--gc-white);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-base);
}

.blog-cat-btn:hover,
.blog-cat-btn.is-active {
  background: var(--gc-green);
  border-color: var(--gc-green);
  color: var(--gc-white);
}

/* ===== IDEAL PERSON CARDS ===== */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ideal-card {
  background: var(--gc-white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ideal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.ideal-card__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gc-green);
  border-radius: 50%;
  color: var(--gc-white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ideal-card__title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.4;
}

.ideal-card__desc {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.75;
}

/* ===== SELECTION FLOW ===== */
.selection-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.selection-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  position: relative;
}

.selection-step:last-child {
  padding-bottom: 0;
}

.selection-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gc-green) 0%, rgba(2,101,56,0.12) 100%);
}

.selection-step:last-child::before {
  display: none;
}

.selection-step__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gc-green);
  border-radius: 50%;
  color: var(--gc-white);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.selection-step__body {
  padding-top: 8px;
  flex: 1;
}

.selection-step__timing {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gc-green);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.selection-step__title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-bottom: 6px;
}

.selection-step__note {
  font-size: 0.855rem;
  color: var(--gc-gray);
  line-height: 1.7;
}

.selection-note {
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(2,101,56,0.06);
  border-left: 3px solid var(--gc-green);
  border-radius: 0 6px 6px 0;
  font-size: 0.875rem;
  color: #444;
}

/* ===== JOB CARDS (career.html) ===== */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--gc-white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gc-green);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.job-card__icon {
  margin-bottom: 14px;
}

.job-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.job-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-bottom: 10px;
}

.job-card__desc {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.8;
}

/* ===== REQUIREMENTS PERSON ===== */
.req-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.req-group {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gc-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.req-group__label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-top: 2px;
}

.req-group__label--required {
  background: var(--gc-green);
  color: var(--gc-white);
}

.req-group__label--welcome {
  background: rgba(2,101,56,0.1);
  color: var(--gc-green);
  border: 1px solid rgba(2,101,56,0.25);
}

.req-group__label--any {
  background: #ebebeb;
  color: #888;
}

.req-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.req-tag {
  font-size: 0.83rem;
  color: #333;
  background: var(--gc-gray-light);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ===== FAQ TABS & ACCORDION ===== */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gc-gray-border);
  margin-bottom: 48px;
}

.faq-tab {
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gc-gray);
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none;
  font-family: var(--font-base);
  letter-spacing: 0.03em;
  transition: color 0.2s, border-color 0.2s;
}

.faq-tab:hover {
  color: var(--gc-green);
}

.faq-tab.is-active {
  color: var(--gc-green);
  border-bottom-color: var(--gc-green);
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq-accordion {
  border-top: 1px solid var(--gc-gray-border);
}

.faq-item {
  border-bottom: 1px solid var(--gc-gray-border);
}

.faq-item__trigger {
  width: 100%;
  text-align: left;
  padding: 20px 44px 20px 16px;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--gc-black);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-base);
  line-height: 1.55;
  transition: color 0.2s, background 0.2s;
}

.faq-item__trigger:hover {
  color: var(--gc-green);
  background: rgba(2,101,56,0.03);
}

.faq-item__trigger.is-active {
  color: var(--gc-green);
  background: rgba(2,101,56,0.04);
}

.faq-item__q {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gc-green);
  color: var(--gc-white);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.faq-item__trigger.is-active .faq-item__q {
  background: var(--gc-green-dark);
}

.faq-item__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: var(--gc-green);
  transition: transform 0.25s ease;
}

.faq-item__trigger.is-active .faq-item__chevron {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__body.is-open {
  max-height: 400px;
}

.faq-item__answer {
  padding: 4px 16px 24px 58px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.faq-item__a {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(2,101,56,0.1);
  color: var(--gc-green);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.faq-item__text {
  font-size: 0.925rem;
  color: #444;
  line-height: 1.9;
}

/* ===== RESPONSIVE: PHASE 5 ===== */
@media (max-width: 1024px) {
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .job-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .faq-tab {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .faq-item__answer {
    padding-left: 16px;
  }
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--gc-white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gc-gray-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.benefit-card__icon {
  line-height: 1;
}

.benefit-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-green);
}

.benefit-card__value {
  font-size: 1rem;
  font-weight: 900;
  color: var(--gc-black);
  line-height: 1.4;
}

.benefit-card__note {
  font-size: 0.78rem;
  color: var(--gc-gray);
  line-height: 1.6;
}

/* ===== CAREER PATH TIMELINE (horizontal) ===== */
.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
  margin-top: 16px;
}

.career-path::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gc-green), rgba(2,101,56,0.15));
  z-index: 0;
}

.career-step {
  text-align: center;
  padding: 0 16px 40px;
  position: relative;
}

.career-step__dot {
  width: 36px;
  height: 36px;
  background: var(--gc-green);
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--gc-white);
  box-shadow: 0 0 0 2px var(--gc-green);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-step__dot-num {
  color: var(--gc-white);
  font-size: 0.72rem;
  font-weight: 900;
}

.career-step__year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gc-green);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.career-step__title {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gc-black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.career-step__role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gc-green);
  background: rgba(2,101,56,0.09);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.career-step__desc {
  font-size: 0.82rem;
  color: var(--gc-gray);
  line-height: 1.75;
}

/* ===== TRAINING FEATURES ===== */
.training-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.training-feature {
  background: var(--gc-white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gc-green);
}

.training-feature__icon {
  margin-bottom: 14px;
}

.training-feature__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.training-feature__title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.training-feature__desc {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.8;
}

/* ===== NUMBERS (culture/numbers.html) ===== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.number-card__icon {
  margin-bottom: 16px;
}

.number-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.stats__icon {
  margin-bottom: 8px;
}

.stats__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.number-card {
  background: var(--gc-white);
  border-radius: 16px;
  padding: 48px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--gc-gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.number-card__value {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gc-black);
  line-height: 1;
  margin-bottom: 10px;
}

.number-card__value .count {
  color: var(--gc-green);
}

.number-card__unit {
  font-size: 1.6rem;
  color: var(--gc-green);
  font-weight: 700;
}

.number-card__label {
  font-size: 0.9rem;
  color: var(--gc-gray);
  font-weight: 500;
}

.number-card__sub {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  margin-top: 6px;
}

/* ===== OFFICE ===== */
.office-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--gc-gray-border);
}

.office-block:last-child {
  border-bottom: none;
}

.office-block__head {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.office-block__badge {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-white);
  background: var(--gc-green);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.office-block__name {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.office-block__address {
  font-size: 0.875rem;
  color: var(--gc-gray);
  line-height: 1.8;
}

.office-block__access {
  font-size: 0.82rem;
  color: var(--gc-gray);
  margin-top: 6px;
}

.office-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.office-photos--2col {
  grid-template-columns: repeat(2, 1fr);
}

.office-photo {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.office-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* ===== RESPONSIVE: PHASE 4 ===== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-path {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .career-path::before {
    display: none;
  }

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

  .office-photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .career-path {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .career-step {
    text-align: left;
    padding: 0 0 24px 52px;
  }

  .career-step__dot {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .training-features {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .office-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== IMG ELEMENT OVERRIDES (replaces placeholder divs) ===== */
.interview-profile__photo {
  width: 100%;
  max-width: 320px;
  height: 380px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.crosstalk-member__photo {
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.crosstalk-bubble__avatar {
  object-fit: cover;
  object-position: center 10%;
  display: block;
  flex-shrink: 0;
}

.office-photo {
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
}

.interview-card__photo-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 4px;
}

/* ===== HERO BACKGROUND IMAGE ===== */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  display: block;
  z-index: 0;
}

/* ===== SCENE PHOTO (training / general) ===== */
.scene-photo-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.scene-photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.scene-photo-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .scene-photo-2col {
    grid-template-columns: 1fr;
  }
}

/* ===== OVERVIEW CARDS (TOP page: 会社を知る / 環境を知る) ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.overview-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  background: var(--gc-white);
  border-radius: 10px;
  border: 1px solid var(--gc-gray-border);
  text-decoration: none;
  color: var(--gc-black);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.overview-card__icon {
  margin-bottom: 16px;
}

.overview-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.overview-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gc-green);
  margin-bottom: 10px;
  line-height: 1.4;
}

.overview-card__desc {
  font-size: 0.8rem;
  color: var(--gc-gray);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 18px;
}

.overview-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc-green);
  letter-spacing: 0.02em;
}

/* gray bg sections need white cards — already default */
.section--gray .overview-card {
  background: var(--gc-white);
}

/* ===== MEMBER CARD CIRCLE PHOTO ===== */
.member-card__photo-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

.member-card__photo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
