/* ============================================
   介護転職LP スタイルシート
   ============================================ */

/* リセット & 基本設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* コンテナ */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* レスポンシブ表示切替 */
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}

/* ============================================
   ファーストビュー
   ============================================ */
.fv {
  background: linear-gradient(135deg, #1a5f4a 0%, #2d8a6e 50%, #1a5f4a 100%);
  color: #fff;
  padding: 60px 0 80px;
  text-align: center;
}

.fv-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.fv-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}

.fv-title .highlight {
  color: #ffd54f;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fv-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.fv-list {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.fv-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.fv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd54f;
  font-weight: bold;
}

.fv-message {
  margin-bottom: 40px;
}

.fv-message p {
  font-size: 17px;
  line-height: 1.8;
}

.fv-message strong {
  font-size: 20px;
  color: #ffd54f;
}

.fv-solution {
  margin-top: 20px;
}

.area-badge {
  display: inline-block;
  background: #fff;
  color: #1a5f4a;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}

/* CTAグループ */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: block;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

.cta-secondary {
  background: #fff;
  color: #1a5f4a;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-tertiary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-recommend {
  display: inline-block;
  background: #fff;
  color: #ff6b35;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.cta-main {
  display: block;
  font-size: 18px;
}

.cta-sub {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}

.fv-note {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.8;
}

/* ============================================
   共通セクションスタイル
   ============================================ */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

.text-accent {
  color: #1a5f4a;
}

.text-white {
  color: #ffd54f;
}

.section-lead {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.section-conclusion {
  text-align: center;
  font-size: 17px;
  margin-top: 30px;
  color: #333;
}

/* ============================================
   共感セクション
   ============================================ */
.section-empathy {
  background: #f8f9fa;
}

.problem-list {
  max-width: 500px;
  margin: 0 auto 30px;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  font-size: 15px;
}

.problem-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.empathy-message {
  text-align: center;
  font-size: 17px;
  background: #fff5f5;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #e57373;
  max-width: 500px;
  margin: 0 auto;
}

.empathy-message strong {
  color: #c62828;
}

/* ============================================
   問題の本質セクション
   ============================================ */
.section-problem {
  background: #fff;
}

.difference-box {
  background: #e8f5e9;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.difference-title {
  font-weight: 700;
  font-size: 15px;
  color: #1a5f4a;
  margin-bottom: 15px;
  text-align: center;
}

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

.difference-list li {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.difference-list li:last-child {
  grid-column: span 2;
}

/* ============================================
   解決策セクション
   ============================================ */
.section-solution {
  background: #f8f9fa;
}

.check-box {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.check-title {
  font-weight: 700;
  font-size: 16px;
  color: #1a5f4a;
  margin-bottom: 20px;
  text-align: center;
}

.check-list {
  margin-bottom: 25px;
}

.check-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed #e0e0e0;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '☑';
  position: absolute;
  left: 0;
  color: #1a5f4a;
  font-size: 18px;
}

.check-result {
  text-align: center;
  background: #e8f5e9;
  padding: 20px;
  border-radius: 10px;
  font-size: 15px;
}

.check-result strong {
  color: #1a5f4a;
  font-size: 17px;
}

/* ============================================
   サービス紹介セクション
   ============================================ */
.section-service {
  background: #fff;
}

.area-badge-large {
  display: inline-block;
  background: #1a5f4a;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 22px;
}

.service-points {
  max-width: 550px;
  margin: 40px auto 30px;
}

.service-points li {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.service-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #1a5f4a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.service-points li strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.service-points li p {
  font-size: 14px;
  color: #666;
}

.service-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   3つの申込セクション
   ============================================ */
.section-options {
  background: #f0f7f4;
}

.option-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 40px auto 0;
}

.option-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-primary {
  border: 3px solid #ff6b35;
}

.option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.option-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.option-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.option-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.option-primary .option-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

.option-secondary .option-btn,
.option-tertiary .option-btn {
  background: #1a5f4a;
  color: #fff;
}

.option-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   流れセクション
   ============================================ */
.section-flow {
  background: #fff;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 400px;
  margin: 40px auto 30px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  width: 100%;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: #1a5f4a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #333;
}

.flow-content p {
  font-size: 13px;
  color: #666;
}

.flow-arrow {
  width: 2px;
  height: 30px;
  background: #1a5f4a;
  position: relative;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #1a5f4a;
}

.flow-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  background: #fff5f5;
  padding: 15px;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   FAQセクション
   ============================================ */
.section-faq {
  background: #f8f9fa;
}

.faq-list {
  max-width: 600px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-q,
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-q {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.faq-a {
  font-size: 15px;
  color: #555;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #1a5f4a;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-label-a {
  background: #ff6b35;
}

/* ============================================
   最終CTAセクション
   ============================================ */
.section-final-cta {
  background: linear-gradient(135deg, #1a5f4a 0%, #2d8a6e 50%, #1a5f4a 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.section-final-cta .section-title {
  color: #fff;
}

.final-message {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.95;
}

.final-sub {
  font-size: 22px;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 40px;
}

.cta-group-final {
  margin-bottom: 0;
}

.cta-primary-final {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

.cta-secondary-final {
  background: #fff;
  color: #1a5f4a;
}

.cta-tertiary-final {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* ============================================
   フッター
   ============================================ */
.footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-note {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.5;
}

/* ============================================
   レスポンシブ対応
   ============================================ */
@media (max-width: 768px) {
  .fv {
    padding: 40px 0 60px;
  }

  .fv-title {
    font-size: 24px;
  }

  .fv-subtitle {
    font-size: 15px;
  }

  .fv-list {
    padding: 20px;
  }

  .fv-list li {
    font-size: 14px;
  }

  .fv-message p {
    font-size: 15px;
  }

  .fv-message strong {
    font-size: 17px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .area-badge-large {
    font-size: 18px;
    padding: 4px 12px;
  }

  .problem-list li {
    padding: 15px 18px;
    font-size: 14px;
  }

  .difference-list {
    grid-template-columns: 1fr;
  }

  .difference-list li:last-child {
    grid-column: span 1;
  }

  .check-box {
    padding: 25px 20px;
  }

  .service-points li {
    padding: 20px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .option-card {
    padding: 25px 20px;
  }

  .flow-step {
    padding: 20px;
  }

  .flow-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq-item {
    padding: 20px;
  }

  .section-final-cta {
    padding: 60px 0;
  }

  .final-message {
    font-size: 16px;
  }

  .final-sub {
    font-size: 19px;
  }

  .cta-main {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fv-title {
    font-size: 21px;
  }

  .section-title {
    font-size: 20px;
  }

  .cta-btn {
    padding: 16px 20px;
  }

  .cta-main {
    font-size: 15px;
  }
}
