/* ========================================
   保育士転職サポート LP - スタイルシート
   ======================================== */

/* リセット・ベース */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

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

/* セクションタイトル */
.section-title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}

/* ========================================
   PR表記
   ======================================== */
.pr-notice {
  background-color: #f7fafc;
  padding: 8px 16px;
  text-align: right;
}

.pr-notice span {
  font-size: 0.75rem;
  color: #718096;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  background-color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2b6cb0;
}

/* ========================================
   ファーストビュー（ヒーロー）
   ======================================== */
.hero {
  background: linear-gradient(135deg, #ebf8ff 0%, #fff5f5 100%);
  padding: 60px 0 80px;
  text-align: center;
}

.hero-sub {
  font-size: 1rem;
  color: #e53e3e;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #1a202c;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #2b6cb0;
  background: linear-gradient(transparent 60%, #bee3f8 60%);
}

.hero-description {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ペインリスト */
.pain-list {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.pain-icon {
  color: #e53e3e;
  font-weight: bold;
  flex-shrink: 0;
}

/* ========================================
   CTAボタン
   ======================================== */
.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: #fff;
  padding: 20px 48px;
  border-radius: 60px;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(237, 137, 54, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 137, 54, 0.5);
}

.cta-button.large {
  padding: 24px 56px;
}

.cta-main {
  font-size: 1.25rem;
}

.cta-sub {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 4px;
}

.cta-note {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 16px;
}

/* ========================================
   共感セクション
   ======================================== */
.empathy {
  background-color: #fff;
  padding: 80px 0;
}

.empathy-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.empathy-content p {
  margin-bottom: 24px;
  line-height: 2;
  color: #4a5568;
}

.empathy-highlight {
  background-color: #fffbeb;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #ed8936;
}

.empathy-content strong {
  color: #1a202c;
}

/* ========================================
   解決セクション
   ======================================== */
.solution {
  background-color: #f7fafc;
  padding: 80px 0;
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-item {
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solution-icon {
  width: 64px;
  height: 64px;
  background-color: #ebf8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2b6cb0;
}

.solution-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 12px;
}

.solution-item p {
  color: #4a5568;
  line-height: 1.8;
}

/* ========================================
   比較セクション
   ======================================== */
.comparison {
  background-color: #fff;
  padding: 80px 0;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-column {
  padding: 32px;
  border-radius: 12px;
}

.comparison-column.bad {
  background-color: #fff5f5;
  border: 2px solid #feb2b2;
}

.comparison-column.good {
  background-color: #f0fff4;
  border: 2px solid #9ae6b4;
}

.comparison-column h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.comparison-column.bad h3 {
  color: #c53030;
}

.comparison-column.good h3 {
  color: #276749;
}

.comparison-column ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-column ul li:last-child {
  border-bottom: none;
}

.icon-x {
  color: #c53030;
  font-weight: bold;
  flex-shrink: 0;
}

.icon-o {
  color: #276749;
  font-weight: bold;
  flex-shrink: 0;
}

/* ========================================
   安心セクション
   ======================================== */
.assurance {
  background-color: #f7fafc;
  padding: 80px 0;
}

.assurance-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.assurance-item {
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.assurance-icon {
  color: #2b6cb0;
  margin-bottom: 16px;
}

.assurance-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 8px;
}

.assurance-item p {
  color: #718096;
  font-size: 0.875rem;
}

.target-box {
  background-color: #fff;
  border: 2px solid #2b6cb0;
  border-radius: 12px;
  padding: 32px;
}

.target-box h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #2b6cb0;
  margin-bottom: 16px;
  text-align: center;
}

.target-box ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.target-box ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #2b6cb0;
  font-size: 0.5rem;
  top: 12px;
}

/* ========================================
   CTA中間セクション
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-message {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-section .cta-note {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FAQセクション
   ======================================== */
.faq {
  background-color: #fff;
  padding: 80px 0;
}

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

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}

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

.faq-question {
  font-size: 1rem;
  font-weight: bold;
  color: #2b6cb0;
  margin-bottom: 12px;
}

.faq-answer {
  color: #4a5568;
  line-height: 1.8;
  padding-left: 24px;
}

/* ========================================
   ラストCTA
   ======================================== */
.last-cta {
  background: linear-gradient(135deg, #fff5f5 0%, #ebf8ff 100%);
  padding: 80px 0;
  text-align: center;
}

.last-cta-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.5;
}

.last-cta-description {
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 2;
}

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

.footer-text {
  color: #a0aec0;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  color: #a0aec0;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .solution-content {
    flex-direction: row;
  }

  .solution-item {
    flex: 1;
  }

  .comparison-table {
    flex-direction: row;
  }

  .comparison-column {
    flex: 1;
  }

  .assurance-content {
    flex-direction: row;
  }

  .assurance-item {
    flex: 1;
  }

  .last-cta-title {
    font-size: 2.25rem;
  }
}
