/*
=================================================
失業保険LP専用スタイル
assets/unemployment-lp.css

【配置場所】
wp-content/themes/swell-child/assets/unemployment-lp.css

【用途】
LP本体のスタイル（ヒーロー、セクション、カード、フォームなど）
=================================================
*/

/* 
=================================================
1. 基本設定
=================================================
*/
.unemployment-lp {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.unemployment-lp * {
  box-sizing: border-box;
}

.unemployment-lp h1,
.unemployment-lp h2,
.unemployment-lp h3 {
  margin: 0;
  padding: 0;
}

.unemployment-lp p {
  margin: 0;
}

/* 
=================================================
2. ヒーローセクション
=================================================
*/
.hero-section {
  background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
  padding: 80px 20px;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #f97316;
  color: white;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827;
}

.hero-title-highlight {
  color: #2563eb;
}

.hero-text {
  font-size: 20px;
  color: #374151;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.hero-card-highlight {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
  border-radius: 12px;
  padding: 24px;
  color: white;
  margin-bottom: 16px;
}

.hero-card-amount {
  font-size: 36px;
  font-weight: bold;
  margin: 8px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
}

.check-icon {
  color: #22c55e;
  font-size: 20px;
  flex-shrink: 0;
}

/* 
=================================================
3. ボタン
=================================================
*/
.btn-primary {
  background: #f97316;
  color: white !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ea580c;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #2563eb !important;
  padding: 16px 32px;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

/* 
=================================================
4. セクション共通
=================================================
*/
.section {
  padding: 80px 20px;
}

.section-gray {
  background: #f9fafb;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
  font-size: 16px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 
=================================================
5. グリッドレイアウト
=================================================
*/
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

/* 
=================================================
6. 悩みセクション
=================================================
*/
.problem-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.problem-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-icon-text {
  font-size: 24px;
  color: #ef4444;
  font-weight: bold;
}

.problem-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  color: #111827;
  line-height: 1.4;
}

.problem-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* 
=================================================
7. サービスカード
=================================================
*/
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #dbeafe;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.service-card-content {
  padding: 32px;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111827;
}

.service-desc {
  color: #374151;
  line-height: 1.6;
}

/* 
=================================================
8. シミュレーターセクション
=================================================
*/
.simulator-section {
  background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
  color: white;
  padding: 80px 20px;
}

.simulator-card {
  background: white;
  color: #111827;
  border-radius: 16px;
  padding: 32px;
  max-width: 1024px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #2563eb;
}

.result-card {
  background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-top: 32px;
  display: none;
}

.result-card.active {
  display: block;
}

.result-amount {
  font-size: 48px;
  font-weight: bold;
  color: #2563eb;
  margin: 8px 0;
}

/* 
=================================================
9. 利用の流れ
=================================================
*/
.flow-step {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.flow-step:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  width: 64px;
  height: 64px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 16px;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #111827;
}

.step-desc {
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

/* 
=================================================
10. お客様の声
=================================================
*/
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #dbeafe;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: bold;
  font-size: 18px;
  color: #111827;
}

.testimonial-age {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-amount-box {
  background: #eff6ff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.testimonial-amount {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
}

.testimonial-comment {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.stars {
  color: #fbbf24;
  margin-top: 16px;
  font-size: 18px;
}

/* 
=================================================
11. FAQ
=================================================
*/
.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  color: #111827;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: #eff6ff;
  border-top: 1px solid #dbeafe;
}

.faq-answer.active {
  padding: 16px 24px;
  max-height: 500px;
}

.faq-answer-text {
  color: #374151;
  line-height: 1.6;
}

/* 
=================================================
12. CTAセクション
=================================================
*/
.cta-section {
  background: linear-gradient(to bottom right, #f97316, #ea580c);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-value {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.contact-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* 
=================================================
14. 悩みハイライトボックス
=================================================
*/
.worry-highlight-box {
  background: white;
  border: 3px solid #f97316;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.worry-highlight-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.worry-highlight-icon {
  font-size: 32px;
}

.worry-highlight-title {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin: 0;
}

.worry-highlight-subtitle {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #111827;
  line-height: 1.5;
  margin-bottom: 24px;
}

.worry-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.worry-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  margin-bottom: 12px;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.worry-check-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

/* 
=================================================
15. 給与別受給事例セクション（改善版）
=================================================
*/
.benefit-cases-section {
  background: linear-gradient(to bottom, #f9fafb, white);
}

.benefit-cases-header {
  text-align: center;
  margin-bottom: 32px;
}

.benefit-cases-subtitle {
  font-size: 18px;
  color: #374151;
  margin-top: 8px;
}

.benefit-cases-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #111827;
  margin-bottom: 32px;
}

/* 改善版タブ */
.salary-tabs-improved {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.salary-tab-improved {
  background: white;
  color: #374151;
  padding: 14px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.salary-tab-improved:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.salary-tab-improved.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 改善版コンテンツ */
.salary-case-content-improved {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.salary-case-content-improved.active {
  display: block;
}

/* 大きな増額バッジ */
.increase-badge-large {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  display: inline-block;
  width: 100%;
}

/* シンプルな比較 */
.simple-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  padding: 24px;
  background: white;
  border-radius: 16px;
}

.simple-comparison-item {
  flex: 1;
  max-width: 200px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.simple-comparison-normal {
  background: #dbeafe;
}

.simple-comparison-support {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.simple-comparison-label {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
}

.simple-comparison-arrow {
  font-size: 32px;
  font-weight: bold;
  color: #2563eb;
}

/* グラデーション事例カード - 青系に変更 */
.case-card-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 20px;
  padding: 32px;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.case-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.case-badge {
  background: white;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 16px;
}

.case-profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-avatar-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
}

.case-profile-age {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.case-increase-section {
  text-align: center;
  margin-bottom: 32px;
}

.case-increase-label {
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.case-increase-amount-large {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-bars-comparison {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.case-bar-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.case-bar-support-item {
  background: rgba(251, 191, 36, 0.25);
}

.case-bar-top-label {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.case-bar-value-large {
  font-size: 32px;
  font-weight: bold;
}

.case-bar-value-highlight {
  font-size: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-increase-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #dc2626;
  color: white;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Coming Soon Box */
.coming-soon-box {
  background: white;
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: #6b7280;
}

.coming-soon-box p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.coming-soon-note {
  font-size: 14px;
  font-weight: normal;
}

/* 
=================================================
16. サービス特徴セクション（改善版）
=================================================
*/
.feature-highlight-section {
  background: linear-gradient(to bottom, white, #f0f9ff);
}

.feature-highlight-header {
  text-align: center;
  margin-bottom: 48px;
}

.feature-highlight-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 16px;
}

.feature-highlight-title {
  font-size: 40px;
  font-weight: bold;
  color: #111827;
  line-height: 1.3;
}

.feature-boxes-improved {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.feature-box-improved {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.feature-box-improved:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.feature-box-full {
  grid-column: 1 / -1;
}

.feature-box-number-large {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-box-title-large {
  font-size: 26px;
  font-weight: bold;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 28px;
}

.feature-box-subtitle-center {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 28px;
}

.feature-chart {
  text-align: center;
  margin: 32px 0;
}

.chart-icon {
  font-size: 80px;
  opacity: 0.3;
}

.feature-box-text-detailed {
  color: #374151;
  line-height: 1.9;
  font-size: 15px;
}

/* ミニ比較 */
.feature-comparison-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.comparison-item {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: white;
  border-radius: 8px;
}

.comparison-before {
  border: 2px solid #dbeafe;
}

.comparison-after {
  border: 2px solid #fbbf24;
  background: #fffbeb;
}

.comparison-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.comparison-period {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

.comparison-period-highlight {
  color: #f59e0b;
  font-size: 24px;
}

.comparison-arrow-mini {
  font-size: 24px;
  color: #2563eb;
  font-weight: bold;
}

/* サポートバッジ改善版 */
.support-badges-improved {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.support-badge-improved {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.support-badge-improved:hover {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.support-badge-icon-large {
  font-size: 48px;
  margin-bottom: 12px;
}

.support-badge-content {
  color: #111827;
}

.support-badge-small-label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 6px;
}

.support-badge-main-text {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

/* 
=================================================
17. 給付期間の差セクション
=================================================
*/
.payment-difference-section {
  background: white;
}

.payment-diff-header {
  text-align: center;
  margin-bottom: 32px;
}

.payment-diff-title {
  background: #9ca3af;
  color: white;
  padding: 20px;
  font-size: 32px;
  font-weight: bold;
  border-radius: 12px;
  display: inline-block;
  margin: 0 auto;
}

.payment-diff-subtitle {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #111827;
  line-height: 1.5;
  margin: 32px 0;
}

.payment-comparison {
  max-width: 800px;
  margin: 0 auto;
}

/* 6倍バッジ */
.times-badge {
  background: #6b7280;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.times-number {
  font-size: 28px;
  font-weight: bold;
}

.times-text {
  font-size: 14px;
}

.payment-comparison-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 32px;
}

/* 給付カード比較 - 新デザイン */
.payment-cards-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  padding: 40px 20px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.payment-card:hover {
  transform: translateY(-8px);
}

.payment-card-normal {
  width: 240px;
}

.payment-card-support {
  width: 280px;
}

.payment-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.payment-card-normal .payment-card-inner {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  min-height: 140px;
}

.payment-card-support .payment-card-inner {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  min-height: 320px;
}

.payment-card-amount {
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-card-support .payment-card-amount {
  font-size: 38px;
}

.payment-card-label {
  background: white;
  color: #111827;
  font-weight: bold;
  font-size: 18px;
  padding: 20px;
  text-align: center;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
}

/* 説明 */
.payment-explanation {
  text-align: center;
  margin: 32px 0;
}

.payment-explanation-badge {
  background: #6b7280;
  color: white;
  display: inline-flex;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: bold;
  margin-bottom: 16px;
}

.payment-explanation-text {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.payment-explanation-text strong {
  color: #dc2626;
  font-size: 18px;
}

/* 期間比較表 - シンプル一体型 */
.period-comparison-table {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  margin-top: 32px;
  overflow-x: auto;
}

/* テーブル全体をラップ */
.period-table-wrapper {
  display: grid;
  grid-template-columns: 140px 70px 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  min-width: 550px;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
}

.period-table-header,
.period-table-row {
  display: contents;
}

.period-table-cell {
  padding: 16px 8px;
  border-right: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: white;
  color: #374151;
  font-weight: 500;
  min-height: 80px;
}

/* ヘッダー行 */
.period-table-header .period-table-cell {
  background: #f3f4f6;
  font-weight: 600;
}

/* 右端のセルは右ボーダーなし */
.period-table-cell:nth-child(4n) {
  border-right: none;
}

/* 下の行のセルは下ボーダーなし */
.period-table-row .period-table-cell {
  border-bottom: none;
}

.period-cell-highlight {
  background: #fef3c7 !important;
  font-weight: bold;
}

.period-waiting,
.period-penalty {
  font-size: 10px;
  line-height: 1.4;
  display: block;
}

.period-waiting {
  margin-bottom: 4px;
}

.period-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 3px solid #e5e7eb;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  min-width: 550px;
}

.period-timeline span {
  padding: 4px 8px;
}

.period-timeline-dots {
  color: #9ca3af;
  font-weight: normal;
}

/* 
=================================================
13. レスポンシブ対応
=================================================
*/
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .grid-3,
  .grid-2,
  .grid-5,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .salary-tabs-improved {
    flex-direction: column;
  }
  
  .salary-tab-improved {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .increase-badge-large {
    font-size: 20px;
    padding: 12px 24px;
  }
  
  .case-bars-comparison {
    flex-direction: column;
  }
  
  .feature-boxes-improved {
    grid-template-columns: 1fr;
  }
  
  .feature-box-full {
    grid-column: 1;
  }
  
  .support-badges-improved {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-comparison-mini {
    flex-direction: column;
    gap: 12px;
  }
  
  .comparison-arrow-mini {
    transform: rotate(90deg);
  }
  
  .feature-highlight-title {
    font-size: 28px;
  }
  
  .feature-box-title-large {
    font-size: 22px;
  }
  
  .worry-highlight-subtitle {
    font-size: 18px;
  }
  
  .benefit-cases-title {
    font-size: 24px;
  }
  
  .payment-diff-title {
    font-size: 24px;
    padding: 16px;
  }
  
  .payment-diff-subtitle {
    font-size: 20px;
  }
  
  .payment-diff-title {
    font-size: 20px;
    padding: 12px 32px;
  }
  
  .payment-diff-subtitle {
    font-size: 24px;
    padding: 0 20px;
  }
  
  .times-badge {
    width: 100px;
    height: 100px;
  }
  
  .times-number {
    font-size: 36px;
  }
  
  .times-text {
    font-size: 14px;
  }
  
  .payment-comparison-title {
    font-size: 24px;
    padding: 0 20px;
  }
  
  .payment-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px;
  }
  
  .payment-card-normal,
  .payment-card-support {
    width: 100%;
    max-width: 320px;
  }
  
  .payment-card-normal .payment-card-inner {
    min-height: 140px;
    padding: 40px 24px;
  }
  
  .payment-card-support .payment-card-inner {
    min-height: 240px;
    padding: 48px 24px;
  }
  
  .payment-card-amount {
    font-size: 28px;
  }
  
  .payment-card-support .payment-card-amount {
    font-size: 32px;
  }
  
  .payment-explanation {
    margin: 32px 0;
    padding: 24px 16px;
  }
  
  .payment-explanation-badge {
    font-size: 16px;
    padding: 10px 24px;
    margin-bottom: 16px;
  }
  
  .payment-explanation-text {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .payment-explanation-text strong {
    font-size: 18px;
  }
  
  .period-comparison-table {
    padding: 16px;
  }
  
  .period-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: 110px 60px 1fr 1fr;
    min-width: 480px;
  }
  
  .period-table-cell {
    padding: 12px 6px;
    font-size: 11px;
    min-height: 70px;
  }
  
  .period-waiting,
  .period-penalty {
    font-size: 9px;
  }
  
  .period-timeline {
    min-width: 480px;
    font-size: 11px;
    margin-top: 20px;
    padding-top: 20px;
    overflow-x: auto;
  }
  
  .simple-comparison {
    flex-direction: column;
    gap: 16px;
  }
  
  .case-card-gradient {
    padding: 24px;
  }
  
  .case-increase-amount-large {
    font-size: 36px;
  }
  
  .case-bar-value-large {
    font-size: 24px;
  }
}