/* WordPress テーマのスタイルをリセット・上書き */
.lp-special-page {
  all: initial;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
}

.lp-special-page * {
  box-sizing: border-box;
}

/* コンテナ */
.lp-special-page .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ヒーローセクション */
/* background-imageをHTMLファイル側で指定するため削除 */
.lp-special-page .hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px !important;
  text-align: center;
  color: #2a2a2a;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-special-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

.lp-special-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-special-page .hero-section h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 2rem !important;
  line-height: 1.4 !important;
  color: #2a2a2a !important;
  text-align: center !important;
}

.lp-special-page .hero-section p {
  font-size: 1.7rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.8 !important;
  color: #555 !important;
  text-align: center !important;
}

.lp-special-page .expert-badge {
  display: inline-block;
  background: white;
  color: #0066cc !important;
  padding: 12px 32px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin: 1.5rem 0 !important;
  border: 2px solid #0066cc;
  box-shadow: none;
  text-align: center !important;
}

.lp-special-page .cta-button {
  display: inline-block;
  background: #0066cc;
  color: white !important;
  padding: 18px 50px !important;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  margin-top: 2rem !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.lp-special-page .cta-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* セクション共通スタイル */
.lp-special-page .section {
  padding: 80px 20px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-special-page .section-title {
  font-size: 3rem !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 3rem !important;
  color: #2a2a2a !important;
}

.lp-special-page .section-subtitle {
  text-align: center;
  color: #555 !important;
  margin-bottom: 3rem !important;
  font-size: 1.7rem !important;
  line-height: 1.8 !important;
}

/* カードグリッド */
.lp-special-page .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.lp-special-page .card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.lp-special-page .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.15);
}

.lp-special-page .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem !important;
}

.lp-special-page .card-icon svg {
  width: 36px;
  height: 36px;
  color: #0066cc;
}

.lp-special-page .card h3 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #2a2a2a !important;
}

.lp-special-page .card p {
  color: #555 !important;
  line-height: 1.8 !important;
  font-size: 1.5rem !important;
  margin: 0 !important;
}

/* 背景色付きセクション */
.lp-special-page .bg-gray {
  background: #f8fafc;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* ステップカード */
.lp-special-page .step-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lp-special-page .step-number {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
}

.lp-special-page .step-content h3 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: #2a2a2a !important;
}

.lp-special-page .step-content p {
  color: #555 !important;
  line-height: 1.8 !important;
  font-size: 1.5rem !important;
  margin: 0 !important;
}

/* セキュリティバッジ */
.lp-special-page .security-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.lp-special-page .security-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.8rem !important;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lp-special-page .security-badge svg {
  width: 28px;
  height: 28px;
  color: #0066cc;
}

.lp-special-page .security-badge span {
  font-weight: 600 !important;
  color: #2a2a2a !important;
  font-size: 1.5rem !important;
}

/* FAQ アコーディオン */
.lp-special-page .faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.lp-special-page .faq-question {
  width: 100%;
  padding: 1.8rem !important;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: #2a2a2a !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.lp-special-page .faq-question:hover {
  background: #f8fafc;
}

.lp-special-page .faq-icon {
  transition: transform 0.3s ease;
  color: #0066cc !important;
}

.lp-special-page .faq-icon.active {
  transform: rotate(180deg);
}

.lp-special-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lp-special-page .faq-answer.active {
  max-height: 500px;
}

.lp-special-page .faq-answer-content {
  padding: 0 1.8rem 1.8rem !important;
  color: #555 !important;
  line-height: 1.8 !important;
  font-size: 1.5rem !important;
}

/* CTA セクション */
/* CTAセクションを白背景に変更し、画面幅100%に */
.lp-special-page .cta-section {
  background: white;
  color: #2a2a2a;
  padding: 40px 20px !important;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.lp-special-page .cta-section h2 {
  font-size: 3rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #0066cc !important;
}

.lp-special-page .cta-section p {
  font-size: 1.7rem !important;
  margin-bottom: 0 !important;
  color: #555 !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .lp-special-page .hero-section {
    padding: 80px 20px !important;
    min-height: 60vh;
  }

  .lp-special-page .hero-section h1 {
    font-size: 2.5rem !important;
  }

  .lp-special-page .hero-section p {
    font-size: 1.3rem !important;
  }

  .lp-special-page .expert-badge {
    font-size: 1.3rem !important;
  }

  .lp-special-page .section {
    padding: 60px 20px !important;
  }

  .lp-special-page .section-title {
    font-size: 2.5rem !important;
  }

  .lp-special-page .section-subtitle {
    font-size: 1.3rem !important;
  }

  .lp-special-page .card h3 {
    font-size: 1.7rem !important;
  }

  .lp-special-page .card p {
    font-size: 1.3rem !important;
  }

  .lp-special-page .faq-question {
    font-size: 1.5rem !important;
  }

  .lp-special-page .faq-answer-content {
    font-size: 1.3rem !important;
  }

  .lp-special-page .card-grid {
    grid-template-columns: 1fr;
  }

  .lp-special-page .cta-section h2 {
    font-size: 2.5rem !important;
  }

  .lp-special-page .cta-section p {
    font-size: 1.3rem !important;
  }
}

/* フェードインアニメーション */
.lp-special-page .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ｌｐの背景色付きセクションを画面幅いっぱいにするための設定 */
.lp-special-page .section.bg-gray {
  width: 100vw;
  max-width: 100vw; /* max-widthも上書き */
  margin-left: calc(50% - 50vw);
  padding-left: 0;  /* sectionクラスのpaddingをリセット */
  padding-right: 0; /* sectionクラスのpaddingをリセット */
}

/* ｌｐのフル幅セクションの内側コンテンツを中央寄せにする設定 */
.lp-special-page .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}