/* ============================================
   株式会社クリック 採用サイト固有スタイル
   recruit.css
   ============================================ */

/* --- Recruit dropdown entry button --- */
.header__dropdown-menu .dropdown-entry {
  display: block;
  margin: 8px 20px 10px;
  padding: 8px 20px !important;
  background: var(--accent);
  color: #fff !important;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 13px !important;
  padding-left: 20px !important;
}
.header__dropdown-menu .dropdown-entry:hover {
  opacity: 0.85;
  background: var(--accent) !important;
}

/* --- Footer: company + nav grid for recruit pages --- */
.footer__company {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer__corp-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer__corp-link:hover { opacity: 0.7; }
.footer__grid {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* --- Footer CTA (common across recruit subpages) --- */
.footer-cta {
  padding: 80px 20px;
  text-align: center;
}

/* --- Recruit-specific CSS Variables --- */
/* CP's style.css provides: --primary, --secondary, --accent, --bg-main, etc. */
/* Below are recruit-only additions that don't exist in CP */
:root {
  --accent-sub: #D4A017;
  --bg-warm: #FAF7F2;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* --- Shared Components (recruit pages) --- */

.section-label {
  font-family: var(--font-data);
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
    }

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
    }

section {
  padding: 100px 0;
    }

.bg-warm {
  background-color: var(--bg-warm);
    }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
    }

@media (max-width: 1200px) {
  .grid-2 { grid-template-columns: 1fr !important; gap: 30px !important; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
    }

/* Components */
    .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
    }

.btn-accent {
  background-color: var(--accent);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
    }

.btn-accent:hover {
  background-color: #d47e2e;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(200, 148, 10, 0.3);
    }

.link-arrow {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  transition: gap 0.3s ease, color 0.3s, transform 0.3s;
    }

.link-arrow:hover {
  gap: 12px;
  color: var(--accent);
  transform: translateX(4px);
    }

.link-arrow.white {
  color: var(--text-on-dark);
    }

.link-arrow.white:hover {
  color: var(--accent-sub);
    }

.img-overlay {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
    }

.img-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
    }

.nav-dropdown {
  position: relative;
    }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  padding: 12px 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 100;
    }

.nav-dropdown:hover .dropdown-menu {
  display: block;
    }

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  transition: background 0.2s;
    }

.dropdown-menu a:first-child {
  font-weight: 700;
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
  padding-bottom: 12px;
    }

.dropdown-menu a:hover {
  background: #FAF7F2;
  color: #2E8B9A;
    }

/* Hero Carousel (Sec 1) */
    .hero {
  position: relative;
  height: 100vh;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-on-dark);
  padding: 0 20px;
  overflow: hidden;
    }

.hero-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
    }

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: top;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s linear;
  transform: scale(1.05); /* 少しズームアウトする演出用 */
    }

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
    }

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(27,42,74,0.3), rgba(27,42,74,0.1));
  z-index: 1;
    }

.hero-content, .hero-small, .scroll-indicator {
  position: relative;
  z-index: 2;
    }

.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

.hero-small {
  position: absolute;
  bottom: 120px;
  font-size: 12px;
  opacity: 0.8;
    }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  animation: bounce 2s infinite;
    }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
    }

/* Intro (Sec 2) */
    .intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 2.0;
  position: relative;
    }

.intro-text::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 30px;
    }

/* About (Sec 3) */
    .about-list {
  margin-top: 30px;
    }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
    }

.about-list i {
  color: var(--secondary);
  flex-shrink: 0;
    }

/* Growth (Sec 4) */
    .growth-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
    }

.step-card {
  flex: 1;
  background: var(--bg-main);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
    }

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-weight: bold;
  font-size: 20px;
  z-index: 1;
    }

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
    }

.step-title {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
    }

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
    }

.growth-quote {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  padding: 20px;
  background: rgba(46, 139, 154, 0.05);
  border-radius: var(--radius);
  display: inline-block;
  margin: 0 auto;
    }

/* Data & Voice (Sec 5) - 数値強調調整 */
    .sec-data {
  background-color: var(--primary);
  color: var(--text-on-dark);
    }

.sec-data .section-title {
  color: var(--text-on-dark);
    }

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-bottom: 80px;
    }

.data-item {
  text-align: center;
    }

.data-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-data);
  line-height: 1;
  margin-bottom: 12px;
    }

.data-item .count-up {
  font-size: clamp(48px, 6vw, 72px); /* 数値を大きく */
  font-weight: 700;
    }

.data-item .data-unit {
  font-size: clamp(24px, 3vw, 36px); /* 単位のバランス */
  font-weight: 700;
  margin-left: 4px;
  font-family: var(--font-body);
    }

.data-item .data-label {
  font-size: 15px;
  opacity: 0.9;
    }

.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
    }

.voice-card {
  background: var(--bg-main);
  color: var(--text-primary);
  padding: 30px;
  border-radius: var(--radius);
    }

.voice-card h4 {
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
    }

.voice-rank {
  margin-bottom: 12px;
  font-size: 14px;
    }

.voice-rank strong {
  color: var(--secondary);
    }

.voice-comment {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-warm);
  padding: 12px;
  border-radius: 4px;
  margin-top: 16px;
    }

.star-rating {
  color: var(--accent-sub);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
    }

/* Interview (Sec 6) */
    .interview-card {
  background: var(--bg-main);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
    }

.interview-img {
  height: 240px;
  object-fit: cover;
  object-position: top;
  width: 100%;
    }

.interview-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
    }

.interview-meta {
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 700;
    }

.interview-name {
  font-size: 18px;
  margin-bottom: 16px;
    }

.interview-catch {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
    }

.interview-quote {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
    }

/* Mid CTA */
    .mid-cta {
  background: linear-gradient(135deg, var(--accent), #f0a65e);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-on-dark);
    }

.mid-cta h2 {
  font-size: 28px;
  margin-bottom: 24px;
    }

.btn-white {
  background: var(--bg-main);
  color: var(--accent);
  box-shadow: var(--shadow);
    }

/* FAQ (Sec 9) */
    .faq-list {
  max-width: 800px;
  margin: 0 auto;
    }

.faq-item {
  background: var(--bg-main);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
    }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 700;
  user-select: none;
    }

.faq-q-num {
  color: var(--accent);
  font-family: var(--font-data);
  font-size: 20px;
  margin-right: 16px;
  width: 30px;
    }

.faq-icon {
  margin-left: auto;
  color: var(--secondary);
  transition: transform 0.3s;
    }

.faq-item.active .faq-icon {
  transform: rotate(45deg);
    }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #fafafa;
    }

.faq-answer-inner {
  padding: 0 24px 24px 70px;
  color: var(--text-secondary);
  font-size: 14px;
    }

/* Teams (Sec 10) */
    .team-card {
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.3s;
    }

.team-card:hover {
  box-shadow: var(--shadow);
    }

.team-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
    }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
    }

.req-table .tech-tags {
  margin-top: 0;
}

.tech-tag {
  background: var(--bg-warm);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-family: var(--font-data);
    }

/* Wellbeing (Sec 11) */
    .wellbeing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
    }

.wb-item {
  display: flex;
  gap: 20px;
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.wb-icon {
  color: var(--accent);
  flex-shrink: 0;
    }

/* Entry (Sec 12) */
    .sec-entry {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-on-dark);
  text-align: center;
    }

.req-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
    }

.req-box li {
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
    }

.req-box li span:first-child {
  min-width: 80px;
  white-space: nowrap;
  font-weight: 700;
  color: var(--accent-sub);
    }

/* Utility Classes */
    .text-center { text-align: center; }

.text-secondary { color: var(--text-secondary); }

/* Animations */
    .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

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

@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr !important; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .voice-cards { grid-template-columns: repeat(2, 1fr); }
    .growth-steps { flex-wrap: wrap; }
    .step-card { min-width: calc(50% - 10px); }
    .step-card:nth-child(2)::after { display: none; }
    .office-section { flex-direction: column; gap: 30px; }
    .participants { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4, .voice-cards, .wellbeing-grid { grid-template-columns: 1fr !important; }
        /* Growth Steps */
  .step-card { min-width: 100%; }
    .step-card::after {
      content: '↓';
      right: auto;
      top: auto;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
  }
    .step-card:last-child::after { display: none; }
    /* Data */
  .data-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    /* Voice */
  .voice-grid { grid-template-columns: 1fr !important; gap: 20px; }
    /* Career Path */
  .career-path { flex-direction: column !important; align-items: stretch !important; padding-top: 0 !important; gap: 16px !important; }
  .path-step { margin-bottom: 0 !important; flex: none !important; }
  .path-step:not(:last-child)::after {
    right: 50% !important;
    top: auto !important;
    bottom: -14px !important;
    left: auto !important;
    transform: translateX(50%) !important;
    border-left: 6px solid transparent !important;
    border-right: 6px solid transparent !important;
    border-top: 8px solid var(--secondary) !important;
    border-bottom: none !important;
  }
    /* Flow steps (entry) */
  .flow-steps { flex-direction: column !important; align-items: stretch !important; gap: 0 !important; }
  .flow-step { padding: 0 !important; text-align: center !important; width: 100% !important; }
  .flow-container { padding: 24px !important; }
  .flow-step:not(:last-child)::after {
    content: '↓' !important;
    position: static !important;
    display: block !important;
    text-align: center !important;
    right: auto !important;
    top: auto !important;
    margin: 12px 0;
    font-size: 20px;
    color: var(--secondary);
  }
    /* Participants (crosstalk) */
  .participants { grid-template-columns: repeat(2, 1fr) !important; }
    /* Office section (wellbeing) */
  .office-section { flex-direction: column; gap: 30px; padding: 24px; }
    /* President profile */
  .president-profile { flex-direction: column; text-align: center; }
  .president-profile .img-overlay { width: 180px !important; margin: 0 auto; }
    /* FAQ */
  .faq-answer-inner { padding: 0 16px 20px 16px; }
}

/* --- about page --- */

.btn-outline { border: 2px solid var(--text-on-dark); color: var(--text-on-dark); background: transparent; }

.btn-outline:hover { background: var(--text-on-dark); color: var(--primary); }

/* Hero */
    .sub-hero {
  position: relative; min-height: 60vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: var(--text-on-dark); padding: 120px 20px 60px;
  margin-bottom: 60px;
  background: url('/recruit/images/sub-hero.jpg') top/cover no-repeat;
    }

.sub-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(27,42,74,0.3), rgba(27,42,74,0.1));
    }

.sub-hero-content { position: relative; z-index: 1; max-width: 800px; }

.sub-hero-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; line-height: 1.3; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.sub-hero-desc { font-size: 16px; font-weight: 400; opacity: 0.9; line-height: 1.8; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

/* Vision */
    .vision-statement {
  text-align: center; font-size: clamp(20px, 3vw, 28px); font-weight: 700;
  color: var(--primary); line-height: 1.8; padding: 20px 0;
    }

.vision-sub {
  font-family: var(--font-data); font-size: 16px; color: var(--secondary);
  letter-spacing: 0.1em; margin-top: 16px;
    }

/* Message */
    .message-text p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.9; }

.message-name { font-size: 16px; font-weight: 700; margin-top: 24px; color: var(--primary); }

.message-img { border-radius: var(--radius); overflow: hidden; }

.message-img img { object-fit: cover; object-position: top; width: 100%; aspect-ratio: 3/4; }

/* Numbers */
    .number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.number-card {
  text-align: center; padding: 30px 16px;
  background: var(--bg-main); border-radius: var(--radius); box-shadow: var(--shadow);
    }

.number-card .num {
  font-family: var(--font-data); font-size: 48px; font-weight: 700;
  color: var(--primary); line-height: 1.2;
    }

.number-card .num span { font-size: 20px; }

.number-card .label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }

/* Company Profile Table */
    .profile-table { max-width: 800px; margin: 0 auto; }

.profile-row {
  display: flex; border-bottom: 1px solid #eee; padding: 16px 0;
    }

.profile-label {
  width: 160px; flex-shrink: 0; font-weight: 700; color: var(--primary); font-size: 14px;
    }

.profile-value { color: var(--text-secondary); font-size: 14px; }

/* History Timeline */
    .history-timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }

.history-timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 12px;
  width: 2px; background: #E2E8F0;
    }

.history-item { position: relative; margin-bottom: 32px; }

.history-item:last-child { margin-bottom: 0; }

.history-dot {
  position: absolute; top: 4px; left: -40px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-warm); z-index: 1;
    }

.history-year {
  font-family: var(--font-data); font-weight: 700; font-size: 20px;
  color: var(--primary); margin-bottom: 4px;
    }

.history-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* Strength Cards */
    .strength-card {
  background: var(--bg-main); padding: 30px; border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 4px solid var(--secondary);
    }

.strength-card i { color: var(--accent); margin-bottom: 16px; }

.strength-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary); }

.strength-card p { font-size: 14px; color: var(--text-secondary); }

/* --- business page --- */

/* Section 1: Infrastructure Cards */
    .infra-card {
  background: var(--bg-main);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary);
  height: 100%;
    }

.infra-card i {
  color: var(--accent);
  margin-bottom: 16px;
    }

.infra-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
    }

.infra-card p {
  font-size: 14px;
  color: var(--text-secondary);
    }

.customer-quote {
  margin-top: 50px;
  padding: 24px;
  background: rgba(46, 139, 154, 0.05);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  font-size: 18px;
    }

.team-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
    }

.team-card p {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 700;
    }

.emphasis-box {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 700;
  font-size: 18px;
    }

/* Section 3: Tech Stack */
    .tech-section {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.tech-category {
  margin-bottom: 30px;
    }

.tech-category:last-child {
  margin-bottom: 0;
    }

.tech-category h3 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
    }

/* Section 4: Daily Schedule Timeline */
    .schedule-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 30px;
    }

.schedule-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 6px;
  width: 2px;
  background-color: #E2E8F0;
    }

.schedule-item {
  position: relative;
  margin-bottom: 30px;
    }

.schedule-item:last-child {
  margin-bottom: 0;
    }

.schedule-dot {
  position: absolute;
  top: 6px; left: -30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg-warm);
  z-index: 1;
    }

.schedule-time {
  font-family: var(--font-data);
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  width: 80px;
  display: inline-block;
    }

.schedule-content {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
    }

.schedule-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-left: 84px; /* Align with content */
  font-weight: 400;
    }

.schedule-comment {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

/* --- crosstalk page --- */

/* Participants Intro */
    .participants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
    }

.member-card {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
    }

.member-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
    }

.member-role {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 4px;
    }

.member-name {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
    }

.member-desc {
  font-size: 13px;
  color: var(--text-secondary);
    }

/* Chat Layout */
    .topic-header {
  text-align: center;
  margin: 80px 0 40px;
  position: relative;
    }

.topic-header h2 {
  display: inline-block;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 20px;
    }

.chat-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
    }

.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 85%;
    }

.chat-row.right {
  align-self: flex-end;
  flex-direction: row-reverse;
    }

.chat-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
    }

.chat-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
    }

.chat-avatar span {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 700;
  white-space: nowrap;
    }

/* Speech Bubbles */
    .chat-bubble {
  background: var(--bg-main);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.8;
  border: 1px solid #E2E8F0;
    }

/* 中堅社員（左側）の吹き出しのしっぽ */
    .chat-row:not(.right) .chat-bubble::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: var(--bg-main);
  border-left: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  transform: rotate(45deg);
    }

/* 若手社員（右側）の吹き出しの色としっぽ */
    .chat-row.right .chat-bubble {
  background: var(--bg-warm); /* 若手は少し色を変えて差別化 */
  border-color: #f0eadd;
    }

.chat-row.right .chat-bubble::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--bg-warm);
  border-right: 1px solid #f0eadd;
  border-top: 1px solid #f0eadd;
  transform: rotate(45deg);
    }

/* --- entry page --- */

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
    }

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--text-on-dark);
    }

/* Section 1: Beginner Notice */
    .beginner-card {
  background: var(--bg-warm);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  margin-top: -60px; /* ヒーローに少し重ねる */
  z-index: 10;
    }

.beginner-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
    }

.beginner-card p {
  font-size: 16px;
  color: var(--text-secondary);
    }

/* Section 2: Requirements Table */
    .req-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-main);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
    }

.req-table th, .req-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #E2E8F0;
  text-align: left;
    }

.req-table th {
  width: 25%;
  min-width: 5em;
  white-space: nowrap;
  vertical-align: middle;
  background-color: var(--bg-warm);
  color: var(--primary);
  font-weight: 700;
    }

.req-table td {
  color: var(--text-secondary);
    }

.req-table tr:last-child th,
    .req-table tr:last-child td {
  border-bottom: none;
    }

/* Section 3: Salary */
    .salary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
    }

.salary-card {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--secondary);
    }

.salary-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 8px;
    }

.salary-amount {
  font-family: var(--font-data);
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
    }

.salary-amount span {
  font-size: 14px;
  font-family: var(--font-body);
  margin-left: 2px;
    }

.bonus-info {
  background: rgba(46, 139, 154, 0.05);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  border: 1px dashed var(--secondary);
    }

/* Section 4: Ideal Candidate */
    .ideal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
    }

.ideal-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-main);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
    }

.ideal-icon {
  color: var(--accent);
  background: var(--bg-warm);
  padding: 18px;
  border-radius: 50%;
  flex-shrink: 0;
    }

.ideal-text {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
    }

/* Section 5: Flow */
    .flow-container {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
    }

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 10px;
    }

.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 25px;
  color: var(--secondary);
  font-weight: bold;
  font-size: 20px;
  z-index: 1;
    }

.flow-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
    }

.flow-step.final .flow-num {
  background: var(--accent);
    }

.flow-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
    }

.flow-desc {
  font-size: 13px;
  color: var(--text-secondary);
    }

.flow-highlight {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
  background: var(--bg-warm);
  padding: 16px;
  border-radius: var(--radius);
    }

/* Section 6: Universities */
    .univ-list {
  line-height: 2.2;
  color: var(--text-secondary);
  text-align: justify;
    }

.univ-list span {
  display: inline-block;
  margin-right: 12px;
  white-space: nowrap;
    }

/* Footer CTA (Entry Section) */
    .entry-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 100px 20px;
  text-align: center;
  color: var(--text-on-dark);
    }

.entry-box {
  background: var(--bg-main);
  border-radius: var(--radius);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.entry-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
    }

.external-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
  font-size: 14px;
  color: var(--text-secondary);
    }

.external-links a {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  color: var(--secondary);
  text-decoration: none;
  margin: 8px 6px 0;
  font-weight: 700;
  transition: all 0.3s;
    }

.external-links a:hover {
  background: var(--secondary);
  color: #fff;
    }

/* --- form page --- */

/* Hero */
    .page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-on-dark); padding: 120px 20px 60px; text-align: center;
    }

.page-hero h1 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 12px; }

.page-hero p { opacity: 0.85; font-size: 15px; }

/* Form Tabs */
.form-tabs {
  display: flex; gap: 0; margin-bottom: 32px; border-bottom: 2px solid #E5E7EB;
}

.form-tab {
  flex: 1; padding: 16px 24px; font-size: 16px; font-weight: 700;
  background: none; border: none; cursor: pointer; color: var(--text-secondary);
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.3s;
  font-family: var(--font-body);
}

.form-tab:hover { color: var(--primary); }

.form-tab.active {
  color: var(--primary); border-bottom-color: var(--primary);
}

.form-tab-content { display: none; }
.form-tab-content.active { display: block; }

/* Form */
    .form-section { padding: 80px 0; background: var(--bg-warm); }

.form-card {
  background: var(--bg-main); border-radius: var(--radius);
  padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

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

.form-group label {
  display: block; font-weight: 700; font-size: 14px;
  margin-bottom: 8px; color: var(--text-primary);
    }

.form-group label .required {
  background: var(--accent); color: #fff; font-size: 11px;
  padding: 2px 8px; border-radius: 3px; margin-left: 8px; vertical-align: middle;
    }

.form-group label .optional {
  background: #9CA3AF; color: #fff; font-size: 11px;
  padding: 2px 8px; border-radius: 3px; margin-left: 8px; vertical-align: middle;
    }

.form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #D1D5DB;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 15px; transition: border-color 0.3s; background: #fff;
    }

.form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
  outline: none; border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46,139,154,0.1);
    }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-radio-group { display: flex; gap: 24px; padding: 8px 0; }

.form-radio-group label {
  display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer;
    }

.form-radio-group input[type="radio"] { accent-color: var(--secondary); }

.form-check {
  display: flex; align-items: center; gap: 10px; margin: 30px 0;
  padding: 20px; background: var(--bg-warm); border-radius: var(--radius);
    }

.form-check input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--secondary); flex-shrink: 0;
    }

.form-check label { font-size: 14px; font-weight: 400; margin-bottom: 0; }

.form-check a { color: var(--secondary); text-decoration: underline; }

.form-submit { text-align: center; margin-top: 30px; }

.form-submit button {
  padding: 18px 60px; background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s;
    }

.form-submit button:hover {
  transform: scale(1.05); box-shadow: 0 4px 12px rgba(232,146,62,0.3);
    }

.form-submit button:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none;
    }

.form-note {
  text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-secondary);
    }

/* --- growth page --- */

/* Timeline (Sec 1) */
    .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
    }

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 6px;
  width: 2px;
  background-color: #E2E8F0;
    }

.timeline-item {
  position: relative;
  margin-bottom: 40px;
    }

.timeline-item:last-child {
  margin-bottom: 0;
    }

.timeline-dot {
  position: absolute;
  top: 4px; left: -30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg-warm);
  z-index: 1;
    }

.timeline-date {
  font-family: var(--font-data);
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;
  background: rgba(46, 139, 154, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
    }

.timeline-content {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
    }

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
    }

/* Culture (Sec 2) */
    .culture-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
    }

.culture-icon {
  color: var(--secondary);
  flex-shrink: 0;
  background: var(--bg-warm);
  padding: 12px;
  border-radius: 50%;
    }

.culture-quote {
  margin-top: 30px;
  padding: 24px;
  background: var(--bg-warm);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 700;
    }

/* Activities (Sec 3) */
    .activity-card {
  background: var(--bg-main);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
    }

.activity-card i {
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
    }

.activity-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
    }

.activity-card p {
  font-size: 14px;
  color: var(--text-secondary);
    }

/* Career Support (Sec 4) */
    .career-box {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 40px;
    }

.career-box-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
    }

/* Qualifications Grid */
    .qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
    }

.qual-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-warm);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
    }

.qual-count {
  font-family: var(--font-data);
  color: var(--accent);
  font-size: 28px;
    }

.qual-count span {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 4px;
    }

/* Career Path Steps - Staircase */
    .career-path {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-top: 30px;
  padding-top: 80px;
    }

.path-step {
  flex: 1;
  background: var(--bg-main);
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  padding: 16px 10px;
  border-radius: var(--radius);
  position: relative;
  font-size: 14px;
    }

.path-step:nth-child(1) { margin-bottom: 0; }

.path-step:nth-child(2) { margin-bottom: 20px; }

.path-step:nth-child(3) { margin-bottom: 40px; }

.path-step:nth-child(4) { margin-bottom: 60px; }

.path-step:nth-child(5) { margin-bottom: 80px; }

.path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--secondary);
  z-index: 1;
    }

/* --- interview page --- */

/* Page Title */
    .page-header {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--bg-dark);
    }

.page-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 16px;
  color: var(--primary);
    }

.page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
    }

/* Tabs Navigation */
    .tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: -24px auto 40px;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 20px;
  flex-wrap: wrap;
    }

.tab-btn {
  background: var(--bg-main);
  border: 1px solid #E2E8F0;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
    }

.tab-btn img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
    }

.tab-btn:hover {
  border-color: var(--secondary);
  color: var(--primary);
    }

.tab-btn.active {
  background: var(--primary);
  color: var(--text-on-dark);
  border-color: var(--primary);
    }

/* Tab Content Area */
    .tab-content {
  padding-bottom: 100px;
    }

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
    }

.tab-pane.active {
  display: block;
    }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
    }

/* Interview Profile Area */
    .interview-profile {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
    }

.profile-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
    }

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
    }

.profile-meta {
  font-family: var(--font-data);
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: 700;
    }

.profile-name {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
    }

.profile-name span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
    }

.profile-catch {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--bg-warm);
    }

/* Q&A Section */
    .qa-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
    }

.qa-item {
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.qa-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
    }

.qa-q::before {
  content: 'Q.';
  color: var(--accent);
  font-family: var(--font-data);
  font-size: 24px;
  line-height: 1;
    }

.qa-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
    }

.qa-a::before {
  content: 'A.';
  color: var(--secondary);
  font-family: var(--font-data);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
    }

/* Utility: data font label */
    .data-label {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
    }

/* --- president page --- */

/* Subpage Hero (President specific) */
    .president-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 120px 40px 60px;
  background: url('/recruit/images/president-interview.jpg') top/cover no-repeat;
    }

.president-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* 下部に暗いグラデーションを敷いてテキストを際立たせる */
  background: linear-gradient(to bottom, rgba(27,42,74,0.2), rgba(27,42,74,0.85));
    }

.president-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  color: var(--text-on-dark);
    }

.president-title {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

.president-role {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-sub);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
    }

/* --- real page --- */

.num-font { font-family: var(--font-data); }

.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(27,42,74,0.85), rgba(27,42,74,0.6));
    }

.hero .hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }

.hero p { opacity: 0.8; }

.data-card { background: #FFF; border: 1px solid var(--border); padding: 32px; opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; text-align: center; }

.data-card.visible { opacity: 1; transform: translateY(0); }

.data-card .num { font-size: 48px; color: var(--primary); display: block; font-weight: 700; }

.data-unit-sub { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-left: 2px; }

.data-card .label { color: var(--text-secondary); }

/* Sales Graph - 修正の肝 */
    .sales-section { margin-top: 60px; margin-bottom: 80px; }

.graph-container {
  margin-top: 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 300px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  position: relative;
    }

.bar-wrapper { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 12px; z-index: 1; }

.bar {
  width: 60%;
  background: var(--secondary);
  height: 0; /* 初期状態は0 */
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
    }

.bar.highlight { background: var(--accent); }

/* 画面に入った時(is-visible)に高さを適用 */
    .sales-section.visible .bar { height: var(--h); }

.bar-val { position: absolute; top: -36px; left: 50%; transform: translateX(-50%); font-size: 15px; font-weight: 700; opacity: 0; transition: 0.5s 1s; white-space: nowrap; }

.bar.highlight .bar-val { font-size: 20px; color: var(--accent); top: -42px; }

.sales-section.visible .bar-val { opacity: 1; }

.bar-label { font-size: 14px; color: var(--text-secondary); font-weight: 700; }

/* Charts 1-D */
    .chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 80px; }

.chart-card { border: 1px solid var(--border); padding: 40px; border-radius: 8px; }

.pie-chart { width: 140px; height: 140px; border-radius: 50%; background: conic-gradient(var(--secondary) 0% 84%, var(--accent) 84% 100%); margin: 20px 0; }

.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.progress-bg { background: #EEE; height: 12px; border-radius: 6px; overflow: hidden; margin-top: 8px; }

.progress-bar { height: 100%; width: 0; transition: width 1.5s ease-out; }

.voice-card.visible .progress-bar { width: var(--w); }

.honest-note { background: var(--bg-note); padding: 20px; border-radius: 6px; margin-top: 20px; font-size: 14px; display: flex; gap: 10px; }

.btn-primary { background: var(--accent); color: #FFF; }

/* --- voice page --- */

.voice-card { transition: none; }
.voice-card:hover { transform: none; box-shadow: none; }

.voice-card-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top;
    }

.voice-card-body { padding: 24px; }

.voice-card-label {
  font-family: var(--font-data); font-size: 12px; color: var(--secondary);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
    }

.voice-card-title { font-size: 20px; margin-bottom: 12px; color: var(--primary); }

.voice-card-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }

/* --- wellbeing page --- */

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

/* Holiday Cards */
    .holiday-card {
  background: var(--bg-warm);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  border-top: 4px solid var(--accent);
    }

.holiday-card i {
  color: var(--accent);
  margin-bottom: 16px;
    }

.holiday-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
    }

.holiday-card p {
  font-size: 14px;
  color: var(--text-secondary);
    }

.holiday-number {
  font-family: var(--font-data);
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
    }

.holiday-number span {
  font-size: 16px;
  font-family: var(--font-body);
    }

/* Allowance Table */
    .allowance-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-main);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
    }

.allowance-table th, .allowance-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #E2E8F0;
  text-align: left;
    }

.allowance-table th {
  width: 30%;
  background-color: var(--bg-warm);
  color: var(--primary);
  font-weight: 700;
    }

.allowance-table td {
  color: var(--text-secondary);
    }

.allowance-table tr:last-child th,
    .allowance-table tr:last-child td {
  border-bottom: none;
    }

/* Feature List (Assets & Health) */
    .feature-list {
  list-style: none;
    }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-main);
  margin-bottom: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--primary);
    }

.feature-list i {
  color: var(--secondary);
  background: rgba(46, 139, 154, 0.1);
  padding: 10px;
  border-radius: 50%;
    }

/* Events & Clubs */
    .event-card {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
    }

.event-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
    }

.event-card ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 15px;
    }

.event-card ul li {
  margin-bottom: 12px;
    }

/* Office */
    .office-section {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--bg-main);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
    }

.office-img {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
    }

.office-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
    }

.office-text {
  flex: 1;
    }

.office-text ul {
  margin-top: 20px;
    }

.office-text li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
    }

.office-text i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
    }

/* --- Recruit Sub-Navigation --- */
.recruit-subnav {
  position: sticky;
  top: 72px;
  z-index: 990;
  background: var(--bg-main, #fff);
  border-bottom: 1px solid var(--border, #E2E6EA);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.recruit-subnav__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.recruit-subnav__inner::-webkit-scrollbar { display: none; }
.recruit-subnav__inner > a,
.recruit-subnav__dropdown > a {
  display: block;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary, #5A6370);
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.recruit-subnav__inner > a:hover,
.recruit-subnav__dropdown > a:hover {
  color: var(--primary, #1B2A4A);
}
.recruit-subnav__inner > a.active,
.recruit-subnav__dropdown > a.active {
  color: var(--primary, #1B2A4A);
  border-bottom-color: var(--secondary, #2E8B9A);
}
.recruit-subnav__dropdown {
  position: relative;
}
.recruit-subnav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border, #E2E6EA);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
}
.recruit-subnav__dropdown:hover .recruit-subnav__dropdown-menu {
  display: block;
}
.recruit-subnav__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-primary, #1A1A1A);
  transition: background 0.15s;
}
.recruit-subnav__dropdown-menu a:hover {
  background: var(--bg-section, #F4F6F8);
}
.recruit-subnav__cta {
  display: block;
  margin-left: auto;
  padding: 8px 20px !important;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  background: var(--accent, #C8940A);
  border-radius: 6px;
  border-bottom: none !important;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.recruit-subnav__cta:hover {
  opacity: 0.85;
  color: #fff !important;
}

@media (max-width: 768px) {
  .recruit-subnav__inner {
    padding: 0 16px;
    gap: 0;
  }
  .recruit-subnav__inner > a,
  .recruit-subnav__dropdown > a {
    font-size: 12px;
    padding: 12px 8px;
  }
  .recruit-subnav__cta {
    padding: 6px 14px !important;
    font-size: 12px;
  }
}
