/**
 * 業務JOZU LP用カスタムスタイル (lp.css)
 */

/* ==========================================
   共通・リセット設定
   ========================================== */
body {
  font-family: var(--jozu-font-base);
  color: var(--jozu-text-dark);
  background-color: var(--jozu-bg-white);
  line-height: 1.7;
}

.font-outfit {
  font-family: var(--jozu-font-outfit);
}

/* テキストカラーのオーバーライド */
.text-primary {
  color: var(--jozu-primary) !important;
}

.text-muted {
  color: var(--jozu-text-muted) !important;
}

/* ==========================================
   1. ヘッダー (Header / Navbar)
   ========================================== */
.navbar {
  background-color: var(--jozu-bg-white);
}

.navbar-brand {
  color: var(--jozu-text-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--jozu-text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--jozu-transition);
}

.navbar-nav .nav-link:hover {
  color: var(--jozu-primary) !important;
}

/* ==========================================
   2. ヒーローセクション (Hero Section)
   ========================================== */
.hero-section {
  position: relative;
  background-color: var(--jozu-bg-light);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem !important;
  overflow: hidden;
}

/* テキストが画像の下に隠れないようにするz-index設定 */
.z-1 {
  z-index: 1;
  position: relative;
}

.hero-title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--jozu-text-dark);
  letter-spacing: -0.5px;
}

.hero-title-main {
  font-size: 3.5rem;
  /* 業務をスマートに。のサイズアップ */
  display: inline-block;
  margin-bottom: 0.5rem;
}

.hero-title-sub {
  font-size: 2.5rem;
  /* AI導入の第一歩をJOZUに。の基本サイズ */
  display: inline-block;
}

.jozu-wrapper {
  position: relative;
  display: inline-block;
}

/* 未使用グラデーションクラスは削除されました */

.hero-title-note {
  position: absolute;
  left: 50%;
  top: -0.8em;
  /* JOZUの文字の真上に配置 */
  transform: translateX(-50%);
  font-size: 0.42em;
  /* 真上に配置するためのサイズ。少し大きく変更 */
  color: var(--jozu-text-muted);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.85;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .hero-title-main {
    font-size: 2.6rem;
  }

  .hero-title-sub {
    font-size: 2.0rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title-main {
    font-size: 1.95rem;
    /* スマホ向けに縮小 */
  }

  .hero-title-sub {
    font-size: 1.35rem;
    /* スマホ向けに縮小 */
    margin-top: 0.25rem;
  }

  .hero-title-note {
    font-size: 0.38em;
    /* 小さいタイトルに合わせてルビサイズ調整 */
    top: -0.9em;
  }

  .hero-lead {
    font-size: 0.95rem;
    /* リード文もスマホ向けに少し小さく */
    line-height: 1.7;
  }
}

@media (min-width: 992px) {
  .hero-text-container {
    min-width: 520px;
    /* 最小幅を保証して段落ち防止 */
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .hero-title-main {
    font-size: 2.8rem;
    /* 中画面で文字をやや縮小 */
  }

  .hero-title-sub {
    font-size: 2.0rem;
    /* 中画面で文字をやや縮小 */
  }
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--jozu-text-muted);
}

/* HERO画像の設定 (右下絶対配置) */
.hero-img-absolute {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  /* 画面幅のきっかり50%を占めるように設定 */
  height: 100%;
  display: flex;
  align-items: flex-end;
  /* 下揃え */
  justify-content: flex-end;
  /* 右揃え */
  pointer-events: none;
  /* テキストの選択等の邪魔をしない */
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 115%;
  /* セクションの高さを少し超えて（最大115%）画像を大きく表示 */
  object-fit: contain;
  display: block;
}

/* タブレット・スマートフォン用のレスポンシブ調整 */
@media (max-width: 991.98px) {
  .hero-img-absolute {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 480px;
    margin: 2rem auto 0;
    display: block;
  }

  .hero-img {
    max-height: none;
  }
}

/* ==========================================
   共通コンポーネント: CTAボタン (Buttons)
   ========================================== */
.btn-jozu-primary {
  background-color: var(--jozu-accent);
  color: var(--jozu-text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  /* 横幅を少し広げて存在感をアップ */
  border-radius: var(--jozu-border-radius);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(255, 209, 3, 0.2);
  transition: var(--jozu-transition);
  text-decoration: none;
}

.btn-jozu-primary:hover {
  background-color: var(--jozu-accent);
  color: var(--jozu-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 209, 3, 0.3);
}

.btn-jozu-secondary {
  background-color: var(--jozu-bg-white);
  color: var(--jozu-text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  /* 横幅を少し広げて存在感をアップ */
  border-radius: var(--jozu-border-radius);
  border: 2px solid var(--jozu-text-dark);
  /* 枠線を黒（濃紺）に変更 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--jozu-transition);
  text-decoration: none;
}

.btn-jozu-secondary:hover {
  background-color: var(--jozu-bg-white);
  color: var(--jozu-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(17, 26, 36, 0.1);
}

.btn-arrow {
  font-family: var(--jozu-font-outfit);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ==========================================
   3. 課題提起セクション (Problem Section)
   ========================================== */
.problem-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
  .problem-section-title {
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .problem-section-title {
    font-size: 1.4rem;
  }

  .problem-icon-wrapper {
    width: 85px;
    /* 丸の直径をスマホ向けに縮小 */
    height: 85px;
    margin-bottom: 0.75rem;
  }

  .problem-text {
    font-size: 0.82rem;
    /* スマホ2カラムでの改行時バランスを調整 */
  }
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.problem-icon-wrapper {
  width: 105px;
  /* 丸の直径 */
  height: 105px;
  background-color: var(--jozu-bg-light);
  /* 淡い水色背景 */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 96, 182, 0.04);
  transition: var(--jozu-transition);
}

.problem-item:hover .problem-icon-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 96, 182, 0.12);
}

.problem-icon {
  width: 75%;
  /* 正円の中に余白をとって配置 */
  height: 75%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* 白背景を透過させて水色背景に馴染ませる */
  transition: var(--jozu-transition);
}

.problem-text {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--jozu-text-dark);
  text-align: center;
  letter-spacing: -0.2px;
}

/* ==========================================
   4. コンセプトセクション (Concept Section)
   ========================================== */
.concept-section {
  position: relative;
  background-color: var(--jozu-bg-light);
  overflow: hidden;
}

/* 前面表示用インデックス */
.concept-section .container {
  position: relative;
  z-index: 5 !important;
  /* 絶対配置のキャラクター画像(z-index: 1)より確実に前面に表示 */
}

.concept-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--jozu-text-dark);
  letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
  .concept-title {
    font-size: 1.85rem;
  }
}

/* 絶対配置のキャラクターコンテナ */
.concept-char-absolute {
  position: absolute;
  top: 0.5rem;
  /* 上揃えに調整 */
  right: 10%;
  /* 右側の位置 */
  width: 320px;
  /* イラストサイズ */
  z-index: 1;
  /* カード(z-index: 3)の背面に配置 */
  pointer-events: none;
  /* マウスイベントを無効化 */
  transition: var(--jozu-transition);
}

@media (max-width: 1199.98px) {
  .concept-char-absolute {
    right: 5%;
    width: 270px;
    top: 0.5rem;
  }
}

.concept-char-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* タブレット・スマートフォン用のレスポンシブ調整 */
@media (max-width: 991.98px) {
  .concept-char-absolute {
    position: relative;
    top: auto;
    /* absolute用のtopを解除 */
    right: auto;
    bottom: auto;
    margin: 2rem auto 0;
    width: 200px;
    z-index: 1;
    display: block;
  }
}

.concept-steps-container {
  width: 100%;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
  /* サメの画像(z-index: 1)より前面に配置し、ステップや矢印が被らないようにする */
}

.concept-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .concept-steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .concept-step-arrow {
    display: none !important;
  }
}

.concept-step-item {
  flex: 1;
  max-width: 180px;
}

@media (max-width: 991.98px) {
  .concept-step-item {
    flex: none;
    width: 45%;
    max-width: none;
  }

  .concept-step-card {
    height: auto;
    min-height: 125px;
    padding: 1.25rem 0.75rem;
  }

  .concept-step-num {
    font-size: 1.85rem;
  }

  .concept-step-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 575.98px) {
  .concept-step-card {
    min-height: 110px;
    padding: 1rem 0.5rem;
  }

  .concept-step-num {
    font-size: 1.6rem;
  }

  .concept-step-text {
    font-size: 0.85rem;
  }
}

.concept-step-card {
  position: relative;
  z-index: 3;
  /* キャラクターより手前に表示 */
  background-color: rgba(255, 255, 255, 0.88);
  /* 半透明にして裏側のキャラクターを透かす */
  backdrop-filter: blur(2px);
  /* ガラス調にして背後を美しく透過 */
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: none !important;
  /* 影なし */
  border: none !important;
  /* 罫線なし */
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--jozu-transition);
}

.concept-step-card:hover {
  transform: translateY(-3px);
}

.concept-step-num {
  font-size: 2.25rem;
  /* 大幅に拡大してインパクトを持たせる */
  font-weight: 700;
  color: var(--jozu-primary);
  margin-bottom: 0.25rem;
  line-height: 1;
  /* 行高を詰めて余白を最適化 */
  letter-spacing: -1px;
  /* 文字間を少し詰めてスタイリッシュに */
}

.concept-step-text {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--jozu-text-dark);
  margin-bottom: 0;
}

.concept-step-arrow {
  font-size: 1.25rem;
  color: var(--jozu-primary);
  opacity: 0.4;
  margin: 0 0.5rem;
}

/* ==========================================
   5. サービス内容セクション (Service Section)
   ========================================== */
.service-section {
  background-color: var(--jozu-bg-white);
}

.service-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
  .service-section-title {
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    padding: 2rem 1.25rem;
    /* スマホ向けに余白をスリム化 */
  }

  .service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .service-card-title {
    font-size: 1.15rem;
  }
}

.service-card {
  background-color: var(--jozu-bg-light);
  /* HEROの背景色と同じ薄い水色 */
  border-radius: 16px;
  /* 丸角大きめ */
  padding: 3rem 2rem;
  /* ゆったりしたパディング */
  text-align: center;
  border: none !important;
  /* ボーダーなし */
  box-shadow: none !important;
  /* シャドウなし */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--jozu-transition);
}

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

.service-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  /* アイコン表示領域 */
  height: 120px;
  overflow: hidden;
}

.service-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* 白背景画像をカードの水色背景に馴染ませる */
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--jozu-text-muted);
  margin-bottom: 0;
  text-align: center;
  /* 中央揃え */
}

/* ==========================================
   6. ユースケースセクション (Usecase Section)
   ========================================== */
.usecase-section {
  background-color: var(--jozu-bg-light);
  /* LPの薄い水色背景 */
}

.usecase-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
  .usecase-section-title {
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }
}

.usecase-card {
  background-color: var(--jozu-bg-white);
  /* 白背景 */
  border-radius: 16px;
  /* 丸角大きめ */
  padding: 2.5rem 2rem;
  /* パディング */
  text-align: center;
  border: none !important;
  /* ボーダーなし */
  box-shadow: none !important;
  /* シャドウなし */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--jozu-transition);
}

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

.usecase-icon-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  /* アイコン表示領域 */
  height: 95px;
  overflow: hidden;
}

.usecase-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* 白背景画像を馴染ませる */
}

.usecase-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.usecase-card-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--jozu-text-muted);
  margin-bottom: 0;
  text-align: center;
  /* 中央揃え */
}

/* ==========================================
   7. 導入の流れセクション (Flow Section)
   ========================================== */
.flow-section {
  background-color: var(--jozu-bg-white);
  /* 背景は白 */
}

.flow-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
  .flow-section-title {
    font-size: 1.85rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 991.98px) {
  .flow-step-card {
    height: auto;
    min-height: 220px;
    padding: 2.5rem 1.5rem 2rem;
  }
}

@media (max-width: 575.98px) {
  .flow-step-card {
    min-height: 180px;
    padding: 2rem 1rem 1.5rem;
  }

  .flow-step-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 0.75rem;
  }

  .flow-step-card-title {
    font-size: 1.05rem;
  }
}

.flow-steps-container {
  width: 100%;
}

.flow-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.flow-steps-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .flow-steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .flow-step-arrow {
    display: none !important;
  }
}

.flow-step-item {
  flex: 1;
  max-width: 280px;
}

@media (max-width: 991.98px) {
  .flow-step-item {
    flex: none;
    width: 45%;
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .flow-step-item {
    width: 100%;
  }
}

.flow-step-card {
  position: relative;
  background-color: var(--jozu-bg-light);
  /* 薄い水色の背景 */
  border-radius: 16px;
  /* 角丸 */
  padding: 3rem 2rem 2.5rem;
  /* パディング */
  text-align: center;
  border: none !important;
  /* ボーダーなし */
  box-shadow: none !important;
  /* シャドウなし */
  height: 250px;
  /* イラストとテキストが入るため高さを確保 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* 下側にテキストを配置 */
  align-items: center;
  transition: var(--jozu-transition);
}

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

.flow-step-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--jozu-primary);
  opacity: 0.6;
  line-height: 1;
}

.flow-step-icon-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  flex-grow: 1;
}

.flow-step-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* 白背景画像を馴染ませる */
}

.flow-step-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.flow-step-card-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--jozu-text-muted);
  margin-bottom: 0;
}

.flow-step-arrow {
  font-size: 1.25rem;
  color: var(--jozu-primary);
  opacity: 0.4;
  margin: 0 0.5rem;
}

/* ==========================================
   8. 料金プランセクション (Pricing Section)
   ========================================== */
.pricing-section {
  background-color: #f0f4f8;
  /* 一番おすすめ：ブランドカラーに調和する淡いブルーグレー */
}

.pricing-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.pricing-section-lead {
  font-size: 1rem;
  color: var(--jozu-text-muted);
  margin-bottom: 3.5rem;
}

@media (max-width: 991.98px) {
  .pricing-section-title {
    font-size: 1.85rem;
  }

  .pricing-section-lead {
    margin-bottom: 2rem;
  }
}

.pricing-card {
  background-color: var(--jozu-bg-white);
  /* 白背景 */
  border-radius: 16px;
  /* overflow: hidden; を解除してバッジのクリッピングを防ぐ */
  border: 2px solid rgba(0, 96, 182, 0.1) !important;
  /* 初期ボーダーを設定してガタつきを防ぐ */
  box-shadow: 0 10px 30px rgba(0, 96, 182, 0.05) !important;
  /* 軽い影で浮かせる */
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--jozu-transition);
  position: relative;
}

.pricing-card:hover {
  /* ふわっと浮き上がる動作（translateY）を廃止し、ボーダーカラーのみをアクティブ化 */
  border-color: var(--jozu-primary) !important;
  /* ホバー時に軽くうっすら青い光沢（グロー効果）を追加 */
  box-shadow: 0 15px 35px rgba(0, 96, 182, 0.18) !important;
}

/* おすすめプラン (スタータープラン) の強調表示 */
.pricing-card.featured {
  /* 初期状態ではボーダーを太くアクティブにしないため、ボーダーカラーの個別上書きを削除し他と統一 */
  z-index: 2;
}

/* PCサイズにおいてスタータープランを物理的に上下に突き出させる */
@media (min-width: 992px) {
  .pricing-card.featured {
    margin-top: -15px;
    margin-bottom: -15px;
    box-shadow: 0 15px 40px rgba(0, 96, 182, 0.12) !important;
  }
}

@media (max-width: 991.98px) {
  .pricing-card.featured {
    margin-top: 1rem;
    /* 縦並び時に少し隙間をあけて強調 */
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-body {
    padding: 2rem 1.25rem;
    /* スマホ向けにパディング調整 */
  }

  .pricing-price {
    font-size: 2.25rem;
    /* スマホ向けに価格フォントサイズを縮小 */
  }

  .pricing-list li {
    font-size: 0.88rem;
  }
}

/* プランカードヘッダー */
.pricing-header {
  background-color: #3b82f6;
  /* デフォルトの青 */
  color: var(--jozu-bg-white);
  padding: 2.25rem 1.5rem 2rem;
  /* 余白を最適化 */
  text-align: center;
  /* 角丸をヘッダー側に適用（親の 16px - ボーダー 2px = 14px で同心円を一致させる） */
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.pricing-card.featured .pricing-header {
  background-color: var(--jozu-primary);
  /* メインのロイヤルブルー */
}

.pricing-title {
  font-size: 1.45rem;
  /* プラン名を少し大きく最適化 */
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-subtitle {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* プランカードボディ */
.pricing-body {
  padding: 2.5rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
}

.pricing-list li {
  font-size: 0.95rem;
  /* リストの文字サイズを少し大きく */
  color: var(--jozu-text-dark);
  font-weight: 500;
  margin-bottom: 0.85rem;
  /* 余白を微調整 */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-list li::before {
  content: "✓";
  color: var(--jozu-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* 金額表示を下部に配置 */
.pricing-price-box {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 96, 182, 0.1);
}

.pricing-price {
  font-size: 2.75rem;
  /* 価格サイズを大きく強調 */
  font-weight: 700;
  color: var(--jozu-text-dark);
  line-height: 1;
}

.pricing-price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--jozu-text-muted);
  margin-left: 0.25rem;
}

/* スタータープランの上部飛び出しバッジ */
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--jozu-accent);
  /* 黄色 */
  color: var(--jozu-text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 209, 3, 0.25);
  z-index: 3;
}

/* ==========================================
   9. 選ばれる理由セクション (Reason Section)
   ========================================== */
.reasons-section {
  background-color: var(--jozu-bg-light);
  /* 淡い水色背景 */
}

.reason-card {
  background-color: var(--jozu-bg-white);
  /* 白背景 */
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 96, 182, 0.04) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--jozu-transition);
}

.reason-card:hover {
  /* カード自体の浮き上がりは行わず、影がわずかに濃くなる上品な変化のみ */
  box-shadow: 0 10px 25px rgba(0, 96, 182, 0.08) !important;
}

.reason-icon {
  font-size: 2.75rem;
  color: var(--jozu-primary);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.reason-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--jozu-text-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================
   10. よくある質問セクション (FAQ Section)
   ========================================== */
.accordion-button {
  background-color: transparent !important;
  color: var(--jozu-text-dark) !important;
  box-shadow: none !important;
  font-size: 1.05rem;
  padding: 1.5rem 1rem;
}

.accordion-button:not(.collapsed) {
  color: var(--jozu-primary) !important;
  /* 開いている時はメインの青文字に */
}

.accordion-body {
  padding: 0 1rem 1.5rem;
  color: var(--jozu-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ==========================================
   11. フッターCTAセクション (Footer CTA Section)
   ========================================== */
#footer-cta {
  background-color: var(--jozu-primary) !important;
}

.footer-cta-char-absolute {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 350px;
  z-index: 1;
  pointer-events: none;
  transition: var(--jozu-transition);
}

.footer-cta-char-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .footer-cta-char-absolute {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 2rem auto 0;
    width: 180px;
    z-index: 1;
    display: block;
  }
}

@media (max-width: 575.98px) {
  #footer-cta .hero-title {
    font-size: 1.5rem !important;
    /* スマホでのCTAタイトルサイズ縮小 */
    line-height: 1.4;
  }

  .footer-cta-char-absolute {
    width: 140px;
    margin-top: 1.5rem;
  }
}

/* ==========================================
   12. フッター (Footer)
   ========================================== */
.footer-links-list a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--jozu-transition);
}

.footer-links-list a:hover {
  text-decoration: underline !important;
}

.hover-link {
  transition: var(--jozu-transition);
}

.hover-link:hover {
  text-decoration: underline !important;
}

/* フッターロゴのスタイリング */
.footer-logo-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  /* text-white-50 と同等 */
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-logo-main {
  font-weight: 700;
  /* fw-bold と同等 */
  font-size: 1.5rem;
  /* fs-3 と同等 */
  color: var(--jozu-bg-white);
  line-height: 1;
  margin-bottom: 0;
}