/* デフォルトで両方非表示 */
.only-pc,
.only-sp {
  display: none;
}

/* PC のみ表示 */
@media (min-width: 768px) {
  .only-pc { display: block; }
}

/* SP のみ表示 */
@media (max-width: 767px) {
  .only-sp { display: block; }
}

/* ===== FV Section ===== */
.fv-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #0d2248 30%, #1a3a6e 55%, #0f2a5a 80%, #081528 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Three.js 背景キャンバス ===== */
#fv-three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none;
  z-index: 0;
}



/* 背景のボケ光彩エフェクト */
.fv-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 30%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(80, 140, 255, 0.35) 0%, rgba(40, 100, 220, 0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fv-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(100, 160, 255, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* ===== ヘッダーロゴ ===== */
.fv-header {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.fv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fv-logo img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* ロゴ画像がない場合のフォールバック */
.fv-logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
}

.fv-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4a9eff, #2563eb);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== メインコンテンツエリア ===== */
.fv-content {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0 60px;
}

/* ===== 左カラム：キャッチコピー ===== */
.fv-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.fv-catch {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fv-tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
}

.fv-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 67.2px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.fv-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}

/* ===== 右カラム：フォーム ===== */
.fv-form-wrap {
  max-width:450px;
  width: 100%;
  flex-shrink: 0;
  padding: 50px 30px;
}

.fv-form-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-form-eyebrow {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 33px;
  color: #333333;
  margin: 0;
}

.fv-form-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  text-align: center;
  margin: 0;
}

/* ===== フォームフィールド ===== */
.fv-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  color: #000000;
}

.form-required {
  font-size: 11px;
  color: #da5d64;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  height: 39px;
  background: #f5f5f7;
  border: 1px solid #ccced5;
  border-radius: 2px;
  padding: 0 8px;
  font-size: 1em;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #333a56;
  background: #ffffff;
}

/* ===== セレクトボックス ===== */
.fv-form-fields .wpcf7-select {
  width: 100%;
  height: 39px;
  background-color: #f5f5f7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  border: 1px solid #ccced5;
  border-radius: 2px;
  padding: 0 32px 0 8px;
  font-size: 1em;
  font-family: inherit;
  color: #111;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.fv-form-fields .wpcf7-select:focus {
  border-color: #333a56;
  background-color: #ffffff;
}

.fv-form-fields .wpcf7-select option[value=""] {
  color: #888;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-field {
  flex: 1;
}

/* ===== チェックボックス ===== */
.fv-form-checks {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-check-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.form-check-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  border: 1px solid #767676;
  border-radius: 2.5px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #333a56;
}

.form-check-label {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  color: #000000;
  line-height: 18.2px;
}

/* ===== 送信ボタン ===== */
.fv-submit-btn {
  display: block;
  width: 100%;
  background: #333a56;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 20px 40px;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.fv-submit-btn:hover {
  background: #272f47;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 1100px) {
  .fv-inner {
    padding: 0 30px;
  }
  .fv-heading {
    font-size: 40px;
    line-height: 56px;
  }
}

@media (max-width: 900px) {
  .fv-content {
    flex-direction: column;
    padding: 30px 0 40px;
    gap: 40px;
  }
  .fv-info {
    padding-right: 0;
    width: 100%;
  }
  .fv-heading {
    white-space: normal;
    font-size: 34px;
    line-height: 50px;
  }
  .fv-form-wrap {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .custom-logo{
    width: 150px;
    height: 27px;
  }
  .fv-section {
    min-height: auto;
  }
  .fv-inner {
    padding: 0 20px;
  }
  .fv-heading {
    font-size: 32px;
    line-height: 50px;
    text-align: center;
  }
  .fv-tagline {
    font-size: 14px;
    text-align: center;
  }
  .fv-description {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ===== Contact Form 7 スタイル調整 ===== */

/* CF7 外枠のマージンリセット */
.fv-form-card .wpcf7 {
  margin: 0;
  padding: 0;
}

/* CF7 の form 要素をカード内レイアウトに合わせる */
.fv-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* wpcf7-form-control-wrap（span）をブロック要素化してレイアウト崩れを防ぐ */
.fv-form-card .wpcf7-form-control-wrap {
  display: block;
}

/* バリデーションエラーメッセージ */
.fv-form-card .wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: #da5d64;
  margin-top: 2px;
}

/* バリデーション失敗時の入力枠 */
.fv-form-card .wpcf7-not-valid {
  border-color: #da5d64 !important;
}

/* 送信結果メッセージ（成功・失敗共通） */
.fv-form-card .wpcf7-response-output {
  font-size: 12px;
  margin: 4px 0 0;
  padding: 6px 10px;
  border-radius: 4px;
}

/* acceptance / checkbox の label スタイル */
.fv-form-card .wpcf7-acceptance label,
.fv-form-card .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  color: #000000;
  line-height: 18.2px;
  cursor: pointer;
}

.fv-form-card .wpcf7-acceptance input[type="checkbox"],
.fv-form-card .wpcf7-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  accent-color: #333a56;
}

/* CF7 の checkbox リストアイテムの余白をリセット */
.fv-form-card .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* submit ボタン（CF7 は input[type="submit"] を生成） */
.fv-form-card input[type="submit"].fv-submit-btn {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

/* CF7 送信中スピナーを非表示 */
.fv-form-card .wpcf7-spinner {
  display: none;
}

/* =============================================
   主要な機能セクション
============================================= */
.features-section {
  background: #ffffff;
  padding: 100px 0 120px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ── 左カラム：タイトル部 ── */
.features-info {
  flex: 0 0 420px;
  position: sticky;
  top: 100px;
}

.features-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #191919;
  margin: 0 0 32px;
  text-transform: uppercase;
}

/* セクション見出し */
.features-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.35;
  color: #191919;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.features-heading-accent {
  color: #d4380d;
  font-style: italic;
}

.features-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: #191919;
  margin: 0;
  margin-bottom: 15px;
}

/* ── 右カラム：グリッド ── */
.features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── カード ── */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* タイトル */
.feature-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #191919;
  margin: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* アイコン */
.feature-icon {
  width: 60px;
  height: 60px;
  opacity: 0.6;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* 説明文 */
.feature-desc {
  font-family: 'YuGothic', '游ゴシック', 'Yu Gothic', 'Hiragino Kaku Gothic ProN',
               'ヒラギノ角ゴ ProN W3', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  color: #191919;
  margin: 0;
  text-align: left;
}

/* ── レスポンシブ ── */
@media (max-width: 1024px) {
  .features-inner {
    flex-direction: column;
    gap: 48px;
  }
  .features-info {
    flex: none;
    width: 100%;
    position: static;
  }
  .features-heading {
    font-size: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 64px 0 72px;
  }
  .features-inner {
    padding: 0 24px;
    gap: 40px;
  }
  .features-heading {
    font-size: 32px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 48px 0 56px;
  }
  .features-inner {
    padding: 0 20px;
    gap: 32px;
  }
  .features-heading {
    font-size: 28px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 320px;
    margin: 0 auto;
  }
  .feature-title {
    min-height: auto;
  }
}

/* =============================================
   ご利用までの3ステップセクション
============================================= */
.steps-section {
  position: relative;
  background: #fcfcfc;
  overflow: hidden;
}

/* ── 上下ウェーブ ── */
.steps-wave-top,
.steps-wave-bottom {
  display: block;
  width: 100%;
  line-height: 0;
}

.steps-wave-top svg,
.steps-wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

.steps-wave-top {
  margin-bottom: -1px;
}

.steps-wave-bottom {
  margin-top: -1px;
}

/* ── インナー ── */
.steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* ── 見出し ── */
.steps-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-subtitle {
  font-family: 'YuGothic', '游ゴシック', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #888;
  letter-spacing: 1px;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.steps-subtitle strong {
  color: #00bd94;
  font-weight: 700;
}

.steps-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #0a1628;
  letter-spacing: 0.1em;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.steps-title-badge {
  display: inline-block;
  background: #0a1628;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 3px;
}

/* ── カードコンテナ ── */
.steps-cards {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin-bottom: 100px;
}

/* ── カード ── */
.step-card {
  flex: 1;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step-num {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #cccccc;
  text-align: center;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.step-divider {
  width: 20px;
  border: none;
  border-top: 2px solid #cccccc;
  margin: 0;
}

.step-name {
  font-family: 'YuGothic', '游ゴシック', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #0a1628;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.step-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 80%;
  height: 80%;
}

.step-desc {
  font-family: 'YuGothic', '游ゴシック', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #111111;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

/* ── 矢印 ── */
.step-arrow {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  color: #00bd94;
  line-height: 1;
}

/* ── フッターテキスト ── */
.steps-footer {
  font-family: 'YuGothic', '游ゴシック', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #888888;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.steps-footer-link {
  color: #00bd94;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.steps-footer-link:hover {
  text-decoration: none;
}

/* ── 3ステップ レスポンシブ ── */
@media (max-width: 900px) {
  .steps-inner {
    padding: 60px 24px;
    gap: 48px;
  }
  .steps-title {
    font-size: 40px;
  }
  .steps-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
  .step-card {
    width: 100%;
    max-width: 380px;
    padding: 40px 24px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 765px) {
  .steps-inner {
    padding: 48px 20px;
    gap: 36px;
  }
  .steps-subtitle {
    font-size: 16px;
  }
  .steps-title {
    font-size: 30px;
  }
  .steps-title-badge {
    padding: 8px 14px;
    margin-top: 15px;
  }
  .step-name {
    font-size: 20px;
  }
  .step-card {
    padding: 32px 20px;
    gap: 16px;
  }
  .step-icon {
    width: 80px;
    height: 80px;
  }
}


/* =============================================
   料金プランセクション（legalon レイアウト）
   ============================================= */
.pricing-section {
  padding: clamp(60px, 8vw, 120px) 0px;
  background: #f4f4f4;
}

.pricing-section .pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── ヘッドライン ── */
.pricing-headline {
  margin-bottom: 60px;
}

.pricing-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8a8a9a;
  margin: 0 0 12px;
}

.pricing-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  color: #191919;
  margin: 0;
  letter-spacing: .02em;
}

.pricing-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0 8px;
}
.pricing-price-label {
  font-size: 13px;
  letter-spacing: .06em;
  color: #8a8a9a;
}
.pricing-price-yen {
  font-size: 22px;
  color: #191919;
}
.pricing-price-amount {
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.03em;
  color: #191919;
}
.pricing-price-suffix {
  font-size: 14px;
  color: #8a8a9a;
  letter-spacing: .03em;
}

/* ── 2カラムグリッド ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(25, 25, 25, .08);
  margin-bottom: 24px;
}

/* ── パネル共通 ── */
.pricing-panel {
  background: #fff;
  padding: 44px 40px;
}
.pricing-panel--alt {
  background: #2c3338;
}

.pricing-panel-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c8a96e;
  margin: 0 0 12px;
}

.pricing-panel-sub {
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  margin: 0 0 32px;
  line-height: 1.8;
}
.pricing-panel-subr {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 32px;
  line-height: 1.8;
}
/* ── 料金ティア行 ── */
.pricing-tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(25, 25, 25, .08);
}

.pricing-tier-name {
  font-size: 16px;
  letter-spacing: .06em;
  color: #191919;
}

.pricing-tier-amount {
  font-size: 24px;
  font-weight: 600;
  color: #191919;
}
.pricing-tier-unit {
  font-size: 14px;
  font-weight: 400;
}
.pricing-tier-sub {
  font-size: 11px;
  color: #8a8a9a;
  display: block;
  text-align: right;
}

/* ── 初期費用・追加費用・縛りなしバッジ ── */
.pricing-no-extra {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.pricing-badge {
  background-color: rgba(245, 245, 245, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 100px;
  flex-shrink: 0;
  min-height: 108px;
  background: #f4f4f4;
}

.pricing-badge-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3339;
  white-space: nowrap;
  line-height: 1.6;
}

.pricing-badge-value {
  display: flex;
  align-items: flex-end;
  gap: 1px;
}

.pricing-badge-number {
  font-size: 48px;
  font-weight: 800;
  color: #c8a96e;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-badge-unit {
  font-size: 14px;
  font-weight: 300;
  color: #2c3339;
}

.pricing-badge--text {
  gap: 4px;
}

.pricing-badge-catch {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-no-extra-note {
  flex: 1 0 0;
  min-width: 160px;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  padding: 8px 0;
}

@media (max-width: 765px) {
  .pricing-no-extra {
    gap: 8px;
    flex-wrap: wrap;
  }

  .pricing-badge {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
  }

  .pricing-badge-number {
    font-size: 38px;
  }

  .pricing-no-extra-note {
    width: 100%;
    flex: none;
    min-width: 0;
  }
}

/* ── モジュールリスト ── */
.pricing-module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pricing-module-item {
  padding: 16px 0;
  border-top: 1px solid rgba(25, 25, 25, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-mod-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
}
.pricing-mod-sub {
  font-size: 0.9rem;
  color: #dcdcdc;
  letter-spacing: .04em;
  display: block;
}

.pricing-module-item--option {
  color: #ffffff;
  font-size: 16px;
  padding-top: 20px;
  border-top: none;
}
.pricing-module-item--option strong {
  font-size: 55px;
  font-weight: 800;
  color: #c8a96e;
  letter-spacing: -.02em;
}

/* ── 料金プラン レスポンシブ ── */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-price-amount {
    font-size: 42px;
  }
  .pricing-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 765px) {
  .pricing-headline {
    margin-bottom: 40px;
    padding: 20px;
    text-align: center;
  }
  .pricing-price-amount {
    font-size: 36px;
  }
  .pricing-panel {
    padding: 28px 20px;
  }
  .pricing-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 24px 0 8px;
    justify-content: center;
}
}


/* =============================================
   CTAセクション
   ============================================= */
.cta-section {
  background: #0a1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 120px 80px;
  gap: 47px;
  position: relative;
}

/* ── 白カード ── */
.cta-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 162, 126, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 100px;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}

/* ── ロゴ ── */
.cta-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-logo img {
  width: 287px;
  height: 60px;
  object-fit: contain;
}

/* ── キャッチコピー ── */
.cta-catchcopy {
  font-family: 'YuGothic', '游ゴシック', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #555;
  text-align: center;
  margin: 0;
  font-feature-settings: 'palt' 1;
}

/* ── ボタン群 ── */
.cta-buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 750px;
}

/* 共通ボタン */
.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 80px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}
.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* 資料ダウンロードボタン */
.cta-btn--dl {
  background: #fff;
  padding-left: 55px;
  font-family: 'YuGothic', '游ゴシック', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #555;
  font-feature-settings: 'palt' 1;
}

/* 無料で始めるボタン */
.cta-btn--start {
  background: #32373c;
  padding-left: 80px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.95px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-feature-settings: 'palt' 1;
}

.cta-btn span {
  white-space: nowrap;
}

/* ボタンアイコン */
.cta-btn-icon {
  flex-shrink: 0;
}

/* ボタン矢印 */
.cta-btn-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

/* ── 装飾：縦ライン ── */
.cta-deco-line {
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ── CTA レスポンシブ ── */
@media (max-width: 1024px) {
  .cta-section {
    padding: 120px 40px 60px;
  }
  .cta-card {
    padding: 60px 60px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 100px 24px 60px;
  }
  .cta-card {
    padding: 48px 30px;
    gap: 32px;
    border-radius: 20px;
  }
  .cta-logo img {
    width: 220px;
    height: auto;
  }
  .cta-catchcopy {
    font-size: 18px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .cta-btn {
    width: 100%;
    max-width: 360px;
  }
  .cta-btn--dl {
    padding-left: 40px;
    font-size: 17px;
  }
  .cta-btn--start {
    padding-left: 60px;
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 80px 16px 48px;
  }
  .cta-card {
    padding: 40px 20px;
    gap: 28px;
    border-radius: 16px;
  }
  .cta-logo img {
    width: 180px;
  }
  .cta-catchcopy {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .cta-btn {
    height: 64px;
  }
  .cta-btn--dl {
    padding-left: 30px;
    font-size: 15px;
  }
  .cta-btn--start {
    padding-left: 50px;
    font-size: 15px;
  }
}

/* ===== sec-3: 3つのことセクション ===== */

/* セクション基本スタイル */
.sec-3.common-section {
  padding: 80px 20px;
  background-color: #f7f9fb;
  position: relative;
}

.sec-3 .secInner {
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
.sec-3 .top-hdg2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 18px;
  color: #222;
  letter-spacing: 0.05em;
}

/* トップテキスト */
.sec-3 .top-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #444;
  margin: 0 auto 48px;
  max-width: 720px;
}

/* 3カラムグリッド（カード） */
.sec-3 .c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}


.sec-3 .c-grid .gridItem img {
  width: 100%;
  height: auto;
  display: block;
}

.sec-3 .c-grid .gridItem .content {
  padding: 24px 0px;
}

.sec-3 .c-grid .gridItem .content .title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #222;
  letter-spacing: 0.03em;
}

.sec-3 .c-grid .gridItem .content .text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* 2つ目のセクション（secondBox） */
.sec-3 .secondBox {
  margin-bottom: 48px;
}

.sec-3 .secondBox .top-hdg2 {
  margin-bottom: 40px;
}

/* 3カラムグリッド（統計情報） */
.sec-3 .c-grid.-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}

.sec-3 .c-grid.-bottom .gridItem {
  padding: 32px 24px;
  text-align: center;
}

.sec-3 .c-grid.-bottom .gridItem .content .title.-center {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.sec-3 .c-grid.-bottom .gridItem .content .bottomText {
  font-size: 36px;
  font-weight: 800;
  color: #0070c9;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.sec-3 .c-grid.-bottom .gridItem .content .subText {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  margin: 0;
}

/* ボタンエリア */
.sec-3 .top-buttonArea {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.sec-3 .c-button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  min-width: 240px;
}

.sec-3 .c-button.-primary {
  background-color: #0070c9;
  color: #ffffff;
  border: 2px solid #0070c9;
}

.sec-3 .c-button.-primary:hover {
  background-color: #005a9e;
  border-color: #005a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 201, 0.3);
}

.sec-3 .c-button.-secondary2Bg {
  background-color: #ffffff;
  color: #0070c9;
  border: 2px solid #0070c9;
}

.sec-3 .c-button.-secondary2Bg:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 201, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 765px) {
  .sec-3.common-section {
    padding: 60px 20px;
  }

  .sec-3 .secInner {
    padding: 0;
  }

  .sec-3 .top-hdg2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .sec-3 .top-text {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .sec-3 .c-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .sec-3 .c-grid .gridItem .content {
    padding: 20px 0px;
  }

  .sec-3 .c-grid .gridItem .content .title {
    font-size: 1.3rem;
  }

  .sec-3 .c-grid .gridItem .content .text {
    font-size: 14px;
  }

  .sec-3 .secondBox {
    margin-bottom: 40px;
  }

  .sec-3 .secondBox .top-hdg2 {
    margin-bottom: 32px;
  }

  .sec-3 .c-grid.-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sec-3 .c-grid.-bottom .gridItem {
    padding: 28px 20px;
  }

  .sec-3 .c-grid.-bottom .gridItem .content .title.-center {
    font-size: 16px;
  }

  .sec-3 .c-grid.-bottom .gridItem .content .bottomText {
    font-size: 28px;
  }

  .sec-3 .top-buttonArea {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }

  .sec-3 .c-button {
    width: 100%;
    max-width: 320px;
    padding: 16px 32px;
    font-size: 15px;
  }
}

/* ===== 会社概要セクション ===== */
.company-section {
  padding: 80px 20px;
  background-color: #fff;
}

.company-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.company-heading {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.company-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #e3e8f0;
}

.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #e3e8f0;
}

.company-term,
.company-desc {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.company-term {
  font-weight: 600;
  color: #444;
  background-color: #f7f9fb;
  display: flex;
  align-items: flex-start;
}

.company-desc {
  color: #333;
  background-color: #fff;
}

@media (max-width: 765px) {
  .company-section {
    padding: 60px 16px;
  }

  .company-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-term {
    padding: 14px 16px 6px;
    font-size: 13px;
    background-color: #f7f9fb;
  }

  .company-desc {
    padding: 6px 16px 14px;
    font-size: 14px;
  }
}

/* ===== ABOUTセクション ===== */
/* ===== ABOUTセクション ===== */
.about-section {
  display: flex;
  width: 100%;
  min-height: 600px;
}

/* 左右パネル共通 */
.about-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* パネル背景画像 */
.about-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-panel-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.05); /* blurエッジ対策 */
  pointer-events: none;
}

/* カラーオーバーレイ */
.about-panel-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 30px;
  height: 100%;
}

.about-panel-overlay--teal {
  background: rgba(25, 98, 114, 0.6);
}

.about-panel-overlay--dark {
  background: rgba(0, 0, 0, 0.6);
}

/* ホワイトカード */
.about-panel-card {
  background: #f7f9fb;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

/* ロゴ列 */
.about-service-logo-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  width: 232px;
}

.about-service-number {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

.about-service-logo {
  width: 100%;
}

.about-service-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文カード */
.about-service-body {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.about-service-text {
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  margin: 0;
}

/* ===== レスポンシブ (SP: 767px以下) ===== */
@media (max-width: 767px) {
  .about-section {
    flex-direction: column;
  }

  .about-panel-overlay {
    padding: 60px 20px;
    min-height: auto;
  }

  .about-panel-card {
    padding: 24px;
    max-width: 100%;
  }

  .about-service-logo-col {
    width: 100%;
  }

  .about-service-logo img {
    max-width: 180px;
  }

  .about-service-title {
    font-size: 18px;
  }
}
