/* 
* 統合されたCSSファイル
* ベースのstyle.cssと第二新卒向け専用のスタイルを統合
*/

/* ===== ベーススタイル ===== */
:root {
  /* カラー変数 */
  --color-primary: #3c6091;
  --color-primary-dark: #2c4f7c;
  --color-secondary: #f08080;
  --color-secondary-dark: #e06060;
  --color-second-graduate: #4e7ac7;
  --color-inexperienced: #42b883;
  --color-background: #f8f9fa;
  --color-text: #333f4d;
  --color-text-light: #6c757d;
  --color-white: #ffffff;
  --color-gray-light: #e9ecef;
  --color-gray: #dee2e6;
  --color-success: #28a745;
  --color-accent: #ffb6c1;
  
  /* フォントサイズ */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-xxl: 28px;
  
  /* スペーシング */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 50px;
  
  /* ブレークポイント */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  
  /* その他 */
  --border-radius-sm: 5px;
  --border-radius-md: 8px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  --box-shadow-lg: 0 4px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-background);
  overflow-x: hidden;
  font-size: var(--font-size-md);
}

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

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

/* コンテナ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* セクション共通 */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--color-text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: var(--spacing-sm) auto 0;
}

.highlight-text {
  color: var(--color-primary);
}

.emphasis {
  font-weight: bold;
  color: var(--color-primary);
}

/* =====================
   ヘッダーカスタマイズ
   ===================== */
.site-header {
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a, .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-box {
  width: 60px;
  height: 35px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  margin-right: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.logo-box::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 
      0 6px 0 rgba(255, 255, 255, 0.5),
      0 12px 0 rgba(255, 255, 255, 0.3);
}

.logo-text {
  font-weight: bold;
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

.logo-subtext {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  letter-spacing: 1px;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-menu li a {
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-weight: bold !important;
}

.nav-cta:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.menu-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  bottom: -8px;
}

.menu-toggle.active .menu-icon {
  background-color: transparent;
}

.menu-toggle.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* ===== ヒーローセクション ===== */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -100px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: var(--font-size-xxl);
  font-weight: bold;
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

.title-line {
  display: block;
}

.title-highlight {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  margin: var(--spacing-sm) 0;
  border-radius: var(--border-radius-sm);
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
}

.social-proof {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
}

.proof-icon {
  color: var(--color-secondary);
  font-weight: bold;
  margin: 0 var(--spacing-xs);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.hero-image {
  max-width: 450px;
  margin: 0 auto;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =====================
   第二新卒向けメインビジュアル
   ===================== */
.second-career-hero {
  background: linear-gradient(135deg, #4e7ac7, #3c6091);
  padding: 25px 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.accent-text {
  position: relative;
  display: inline-block;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 182, 193, 0.5);
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-top: 10px;
}

.badge-text {
  white-space: nowrap;
}

.badge-number {
  font-size: 20px;
  font-weight: bold;
  color: #ffb6c1;
  margin: 0 5px;
}

/* ===== ボタンスタイル ===== */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius-md);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: var(--color-white);
}

.btn-primary:hover {
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-gray);
}

.btn-secondary:hover {
  background-color: var(--color-gray-light);
}

.btn-diagnosis {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: var(--color-white);
  font-size: var(--font-size-lg);
  padding: var(--spacing-md) var(--spacing-xxl);
}

.btn-sm {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-sm);
}

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

.btn-large {
  padding: var(--spacing-md) var(--spacing-xxl);
  font-size: var(--font-size-lg);
}

.btn-view-all {
  display: block;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  margin: var(--spacing-lg) auto 0;
  max-width: 300px;
}

/* ===== パスセクション ===== */
.path-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.path-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.path-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-xl);
  transition: var(--transition);
  text-align: center;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.path-card.second-graduate {
  border-left: 4px solid var(--color-second-graduate);
}

.path-card.inexperienced {
  border-left: 4px solid var(--color-inexperienced);
}

.path-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-gray-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--spacing-md);
}

.path-card.second-graduate .path-icon {
  background-color: rgba(78, 122, 199, 0.1);
}

.path-card.inexperienced .path-icon {
  background-color: rgba(66, 184, 131, 0.1);
}

.path-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.path-features {
  text-align: left;
  margin-bottom: var(--spacing-lg);
}

.path-features li {
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-left: var(--spacing-xl);
  color: var(--color-text);
}

.path-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.path-agents {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.agent-tag {
  background-color: var(--color-gray-light);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text);
}

.path-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--border-radius-md);
  font-weight: bold;
  transition: var(--transition);
}

.path-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
  color: var(--color-white);
}

.second-graduate .path-button {
  background: linear-gradient(135deg, var(--color-second-graduate), #3b68b3);
}

.inexperienced .path-button {
  background: linear-gradient(135deg, var(--color-inexperienced), #36a472);
}

/* =====================
   悩みセクション
   ===================== */
.pain-points {
  background-color: #f8f9fa;
  padding: 25px 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pain-header {
  text-align: center;
  margin-bottom: 20px;
}

.pain-title {
  font-size: 20px;
  font-weight: bold;
  color: #333f4d;
  line-height: 1.4;
  margin: 0;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.check-icon {
  background-color: #4e7ac7;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.pain-text {
  font-size: 15px;
  color: #333f4d;
  line-height: 1.4;
}

/* =====================
   メリットセクション
   ===================== */
.benefits-section {
  padding: 25px 20px;
  margin-bottom: 25px;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #4e7ac7;
}

.benefit-number {
  background: linear-gradient(135deg, #4e7ac7, #3c6091);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-content {
  flex-grow: 1;
}

.benefit-title {
  font-size: 16px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
  margin: 0;
}

/* ===== 特徴セクション ===== */
.feature-section {
  background-color: var(--color-background);
  padding: var(--spacing-xxl) 0;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  padding: var(--spacing-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.feature-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: var(--color-text);
  line-height: 1.6;
}

/* =====================
   エージェントランキング
   ===================== */
.agent-ranking {
  padding: 25px 20px;
  margin-bottom: 25px;
  background-color: #f8f9fa;
  border-radius: 15px;
}

.ranking-description {
  text-align: center;
  font-size: 14px;
  color: #495057;
  margin-bottom: 25px;
}

.agent-card {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.rank-first {
  border: 2px solid #ffd700;
}

.rank-second {
  border: 2px solid #c0c0c0;
}

.rank-third {
  border: 2px solid #cd7f32;
}

.rank-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.agent-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.agent-logo {
  max-width: 180px;
  height: auto;
}

.agent-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.feature-tag {
  background-color: #f0f0f0;
  color: #333f4d;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.feature-tag.best {
  background-color: #ffd700;
  color: #333;
  font-weight: bold;
}

.agent-body {
  padding: 20px;
}

.agent-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 14px;
  font-weight: bold;
  color: #333f4d;
}

.agent-name {
  font-size: 18px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 10px;
}

.agent-text {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
  margin-bottom: 15px;
}

.agent-points {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.point-title {
  font-size: 14px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 10px;
}

.point-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #495057;
}

.point-list li {
  margin-bottom: 5px;
}

.agent-footer {
  padding: 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-button {
  background: linear-gradient(135deg, #4e7ac7, #3c6091);
  color: white;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  text-decoration: none;
  flex-grow: 1;
  max-width: 200px;
}

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

.agent-detail-link {
  color: #3c6091;
  font-size: 14px;
  text-decoration: none;
}

.agent-detail-link:hover {
  text-decoration: underline;
}

/* ===== 診断セクション ===== */
.diagnosis-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.diagnosis-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -150px;
  left: -150px;
}

.diagnosis-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.diagnosis-content {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.diagnosis-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.diagnosis-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.diagnosis-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.diagnosis-step {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.step-text {
  flex-grow: 1;
}

.diagnosis-note {
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-md);
  opacity: 0.8;
}

.diagnosis-image {
  max-width: 350px;
  margin: 0 auto;
}

/* =====================
   診断バナー
   ===================== */
.diagnosis-banner {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.banner-content {
  max-width: 500px;
  margin: 0 auto;
}

.banner-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner-text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.banner-button {
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
  margin: 0 auto;
}

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

/* =====================
   選び方のポイント
   ===================== */
.selection-points {
  padding: 25px 20px;
  margin-bottom: 25px;
}

.point-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.point-card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.point-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.point-icon img {
  max-width: 40px;
  height: auto;
}

.point-content {
  flex-grow: 1;
}

.point-title {
  font-size: 16px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 8px;
}

.point-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
  margin: 0;
}

.multi-register {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
}

.multi-title {
  font-size: 18px;
  font-weight: bold;
  color: #333f4d;
  margin-bottom: 15px;
  text-align: center;
}

.multi-content {
  display: flex;
  align-items: flex-start;
}

.advisor-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advice-content {
  flex-grow: 1;
}

.advice-text {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
  margin-bottom: 10px;
}

.advisor-name {
  font-size: 12px;
  font-weight: bold;
  color: #3c6091;
}

/* ===== エージェントタブセクション ===== */
.agents-section {
  background-color: var(--color-white);
  padding: var(--spacing-xxl) 0;
}

.tabs-container {
  margin-top: var(--spacing-xl);
}

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: var(--spacing-xl);
}

.tab-btn {
  padding: var(--spacing-md) var(--spacing-xl);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-text-light);
  position: relative;
  transition: var(--transition);
}

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

.tab-btn.active {
  color: var(--color-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
}

.tab-content {
  position: relative;
}

.agent-list {
  display: none;
}

.agent-list.active {
  display: block;
}

/* =====================
   よくある質問
   ===================== */
.faq-section {
  padding: 25px 20px;
  margin-bottom: 25px;
  background-color: #f8f9fa;
  border-radius: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.question-mark {
  color: #4e7ac7;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}

.question-text {
  font-size: 14px;
  font-weight: bold;
  color: #333f4d;
  flex-grow: 1;
  padding-right: 20px;
}

.toggle-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #6c757d;
}

.faq-answer {
  display: flex;
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 15px;
}

.answer-mark {
  color: #f08080;
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}

.answer-content {
  flex-grow: 1;
}

.answer-content p {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
  margin: 0;
}

/* ===== 記事セクション ===== */
.articles-section {
  background-color: var(--color-background);
  padding: var(--spacing-xxl) 0;
}

.article-list {
  display: none;
}

.article-list.active {
  display: block;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.article-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.article-card a {
  color: var(--color-text);
  text-decoration: none;
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: var(--spacing-lg);
}

.article-title {
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.article-excerpt {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
}

.article-meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.article-date {
  display: inline-block;
}

/* =====================
   関連記事
   ===================== */
.related-articles {
  padding: 25px 20px;
  margin-bottom: 25px;
}

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

.article-cards .article-card {
  text-decoration: none;
  color: inherit;
}

.article-cards .article-card:hover {
  transform: translateY(-3px);
}

.article-description {
  font-size: 14px;
  color: #495057;
  padding: 0 15px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.read-more {
  font-size: 14px;
  color: #4e7ac7;
  padding: 0 15px 15px;
  font-weight: bold;
}

/* ===== CTAセクション ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* =====================
   CTA（第二新卒向け）
   ===================== */
.bottom-cta {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
}

.cta-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.cta-button {
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  display: inline-block;
  text-align: center;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
  margin-bottom: 15px;
}

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

.cta-note {
  font-size: 12px;
  opacity: 0.8;
}

/* ===== フッター ===== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
}

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

.footer-logo .logo-subtext {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.footer-title {
  font-size: var(--font-size-md);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.footer-links-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.footer-links-column ul li a:hover {
  color: var(--color-white);
}

.copyright {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== モーダル ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-white);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow-lg);
  overflow-y: auto;
  padding: var(--spacing-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  z-index: 10;
}

.modal-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-gray);
}

.modal-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.modal-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
}

.modal-content {
  padding: var(--spacing-md) 0;
}

.modal-placeholder {
  text-align: center;
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
}

/* ===== レスポンシブ対応 ===== */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .diagnosis-steps {
    flex-direction: row;
  }
  
  .agent-card {
    flex-direction: row;
    align-items: center;
  }
  
  .agent-logo {
    margin-right: var(--spacing-lg);
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .second-career-hero {
    flex-direction: row;
    align-items: center;
    padding: 30px;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    margin-top: 0;
  }
  
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-content {
    text-align: left;
    margin-bottom: 0;
    flex-basis: 50%;
  }
  
  .hero-image {
    flex-basis: 45%;
  }
  
  .path-cards {
    flex-direction: row;
  }
  
  .feature-cards {
    flex-direction: row;
  }
  
  .benefit-cards, .point-cards, .article-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .diagnosis-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .diagnosis-content {
    flex-basis: 60%;
    text-align: left;
    margin-bottom: 0;
  }
  
  .diagnosis-image {
    flex-basis: 35%;
  }
  
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-links {
    flex-direction: row;
    gap: var(--spacing-xxl);
  }
  
  .agent-stats {
    max-width: 60%;
  }
}

@media (min-width: 992px) {
  .point-cards, .article-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-xl);
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: var(--spacing-md) 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .logo-text {
    font-size: var(--font-size-md);
  }
  
  .logo-box {
    width: 50px;
    height: 30px;
  }
  
  .hero-title {
    font-size: var(--font-size-xl);
  }
  
  .section-title {
    font-size: var(--font-size-lg);
  }
  
  .diagnosis-title,
  .cta-title {
    font-size: var(--font-size-lg);
  }
  
  .diagnosis-description,
  .cta-description {
    font-size: var(--font-size-md);
  }
}

/* ===== アクセシビリティ対応 ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* アクセシビリティ向上のためのフォーカス対応 */
a:focus, button:focus {
  outline: 2px solid #4e7ac7;
  outline-offset: 2px;
}

/* ===== 印刷用スタイル ===== */
@media print {
  .nav-cta,
  .btn,
  .menu-toggle {
    display: none !important;
  }
  
  .site-header {
    position: static;
    box-shadow: none;
  }
  
  .hero-section,
  .diagnosis-section,
  .cta-section,
  .second-career-hero, 
  .diagnosis-banner, 
  .bottom-cta {
    background: #f0f0f0 !important;
    color: var(--color-text) !important;
  }
  
  .hero-title .title-highlight {
    color: var(--color-text) !important;
  }
  
  a {
    text-decoration: underline;
    color: var(--color-text) !important;
  }
  
  .agent-button, .banner-button, .cta-button {
    background: #ccc !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}