/* ================================================================
 * おもてなしドットコム 統合デザインシステム CSS
 * 対象: meo.omotenashi.com Snow Monkey 子テーマ
 * バージョン: v6（真朱・金装飾・銀鼠背景）
 * 最終更新: 2026-04-09
 *
 * 配置場所: Snow Monkey 子テーマのフォルダ直下
 * 読込方法: functions.php で wp_enqueue_style で読み込む
 *
 * CSSクラスは全て om- プレフィックス付き
 * Snow Monkey 親テーマとの衝突を防ぐため
 * ================================================================ */


/* ============================================
 * 1. CSS変数（サイト全体で使用）
 * ============================================ */
:root {
  /* ブランド基調色（紺藍） */
  --om-primary-dark: #0E2F44;
  --om-primary: #1A5276;
  --om-primary-light: #2980B9;
  --om-primary-tint: #D4E6F1;

  /* CTA色（真朱・しんしゅ） */
  --om-cta: #D0353A;
  --om-cta-hover: #A82328;
  --om-cta-tint: #FBEAEB;

  /* 装飾色（金） */
  --om-gold: #B8860B;
  --om-gold-light: #D4A843;

  /* 背景・テキスト */
  --om-bg-page: #FFFFFF;
  --om-bg-alt: #E8ECF0;
  --om-text-1: #2C2C2A;
  --om-text-2: #5A6270;
  --om-border: #DFE2E6;
}


/* ============================================
 * 2. LP共通ラッパー（.om-lp で囲む）
 * ============================================ */
.om-lp {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--om-text-1);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

.om-lp a {
  color: var(--om-primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

.om-lp a:hover {
  color: var(--om-primary);
}

.om-lp .om-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================================
 * 3. ヘッダー（金ライン付き）
 * ============================================ */
.om-lp .om-hdr {
  background: var(--om-primary-dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid transparent;
  background-image:
    linear-gradient(var(--om-primary-dark), var(--om-primary-dark)),
    linear-gradient(90deg, var(--om-gold) 0%, var(--om-gold-light) 50%, var(--om-gold) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.om-lp .om-hdr .om-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.om-lp .om-logo {
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.om-lp .om-logo span {
  color: var(--om-gold-light);
}

.om-lp .om-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.om-lp .om-nav a {
  color: var(--om-primary-tint);
  font-size: 13px;
  font-weight: 500;
}

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

.om-lp .om-nav .om-cta-btn {
  background: var(--om-cta);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
}

.om-lp .om-nav .om-cta-btn:hover {
  background: var(--om-cta-hover);
}


/* ============================================
 * 4. セクション共通
 * ============================================ */
.om-lp .om-sec {
  padding: 80px 0;
}

.om-lp .om-sec-alt {
  background: var(--om-bg-alt);
}

.om-lp .om-sec-tint {
  background: var(--om-primary-tint);
}

.om-lp .om-sec-header {
  text-align: center;
  margin-bottom: 40px;
}

.om-lp .om-sec-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--om-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 10px 0 8px;
  display: block;
}

.om-lp .om-sec-ttl {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--om-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.om-lp .om-sec-sub {
  font-size: 15px;
  color: var(--om-text-2);
  margin-top: 8px;
}

.om-lp .om-gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--om-gold), var(--om-gold-light));
  margin-bottom: 24px;
  border-radius: 2px;
}


/* ============================================
 * 5. 金装飾（飾り罫線SVG）
 * ============================================ */
.om-lp .om-ornament-full {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.om-lp .om-ornament-full svg {
  display: block;
}


/* ============================================
 * 6. ボタン
 * ============================================ */
.om-lp .om-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  gap: 8px;
}

.om-lp .om-btn-cta {
  background: var(--om-cta);
  color: #fff;
  box-shadow: 0 2px 0 var(--om-gold), 0 6px 20px rgba(208, 53, 58, 0.22);
  position: relative;
}

.om-lp .om-btn-cta:hover {
  background: var(--om-cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 0 var(--om-gold), 0 10px 28px rgba(208, 53, 58, 0.32);
}

.om-lp .om-btn-sec {
  background: transparent;
  color: var(--om-primary);
  border: 2px solid var(--om-primary);
}

.om-lp .om-btn-sec:hover {
  background: var(--om-primary);
  color: #fff;
}

.om-lp .om-btn-ghost {
  background: transparent;
  color: var(--om-cta);
  border: 1.5px solid var(--om-cta);
  padding: 10px 20px;
  font-size: 14px;
}

.om-lp .om-btn-ghost:hover {
  background: var(--om-cta);
  color: #fff;
}

.om-lp .om-btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.om-lp .om-btn-block {
  display: flex;
  width: 100%;
}

.om-lp .om-btn-tel {
  background: var(--om-primary);
  color: #fff;
}


/* ============================================
 * 7. ヒーロー（ファーストビュー）
 * ============================================ */
.om-lp .om-hero {
  padding: 60px 0 40px;
}

.om-lp .om-hero .om-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.om-lp .om-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--om-primary);
  line-height: 1.35;
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--om-gold);
  position: relative;
}

.om-lp .om-hero h1::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, var(--om-gold-light), var(--om-gold));
}

.om-lp .om-hero h1 em {
  font-style: normal;
  color: var(--om-cta);
}

.om-lp .om-hero-sub {
  font-size: 16px;
  color: var(--om-text-2);
  margin-bottom: 24px;
}

.om-lp .om-hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.om-lp .om-hero-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.om-lp .om-hero-stat .om-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--om-primary);
  font-family: 'Shippori Mincho', serif;
  line-height: 1.3;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--om-gold);
  display: block;
}

.om-lp .om-hero-stat .om-label {
  font-size: 12px;
  color: var(--om-text-2);
  margin-top: 6px;
}

.om-lp .om-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.om-lp .om-sv-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--om-border);
}

.om-lp .om-sv-box iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
}


/* ============================================
 * 8. 3カラムグリッド
 * ============================================ */
.om-lp .om-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* ============================================
 * 9. 課題カード（pain card）
 * ============================================ */
.om-lp .om-pain-card {
  background: var(--om-bg-page);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--om-border);
  border-top: 3px solid var(--om-gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.om-lp .om-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.om-lp .om-pain-card .om-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--om-primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.om-lp .om-pain-card .om-icon svg {
  width: 24px;
  height: 24px;
}

.om-lp .om-pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.om-lp .om-pain-card p {
  font-size: 14px;
  color: var(--om-text-2);
  line-height: 1.7;
}


/* ============================================
 * 10. メリットカード（大きな金装飾数字付き）
 * ============================================ */
.om-lp .om-merit-card {
  background: var(--om-bg-page);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--om-primary);
  position: relative;
}

.om-lp .om-merit-card .om-merit-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--om-gold);
  opacity: 0.35;
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: 'Shippori Mincho', serif;
  line-height: 1;
}

.om-lp .om-merit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--om-primary);
}

.om-lp .om-merit-card p {
  font-size: 14px;
  color: var(--om-text-2);
  line-height: 1.7;
}

.om-lp .om-merit-card .om-data {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--om-cta);
}

.om-lp .om-merit-card .om-data span {
  font-size: 13px;
  color: var(--om-text-2);
  font-weight: 400;
  margin-left: 4px;
}


/* ============================================
 * 11. 事例カード（case card）
 * ============================================ */
.om-lp .om-case-card {
  background: var(--om-bg-page);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--om-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.om-lp .om-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.om-lp .om-case-card iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

.om-lp .om-case-body {
  padding: 20px;
}

.om-lp .om-case-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  background: var(--om-bg-alt);
  color: var(--om-primary);
  border: 1px solid var(--om-gold);
  margin-bottom: 8px;
}

.om-lp .om-case-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.om-lp .om-case-meta {
  font-size: 13px;
  color: var(--om-text-2);
  margin-bottom: 12px;
}

.om-lp .om-case-more {
  text-align: center;
  margin-top: 32px;
}


/* ============================================
 * 12. 料金プラン
 * ============================================ */
.om-lp .om-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.om-lp .om-price-card {
  background: var(--om-bg-page);
  border-radius: 12px;
  padding: 32px 24px;
  border: 2px solid var(--om-border);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.om-lp .om-price-card:hover {
  transform: translateY(-4px);
}

.om-lp .om-price-card.om-recommended {
  border-color: var(--om-gold);
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.12);
}

.om-lp .om-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--om-gold);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.om-lp .om-price-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--om-text-2);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.om-lp .om-price-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--om-primary);
  margin-bottom: 4px;
  font-family: 'Shippori Mincho', serif;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--om-gold);
}

.om-lp .om-price-amount span {
  font-size: 16px;
  font-weight: 400;
}

.om-lp .om-price-tax {
  font-size: 12px;
  color: var(--om-text-2);
  margin-bottom: 16px;
}

.om-lp .om-price-desc {
  font-size: 14px;
  color: var(--om-text-2);
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 16px 0;
  border-top: 1px solid var(--om-border);
  border-bottom: 1px solid var(--om-border);
}


/* ============================================
 * 13. 撮影の流れ（4ステップ）
 * ============================================ */
.om-lp .om-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.om-lp .om-flow-step {
  text-align: center;
  position: relative;
}

.om-lp .om-flow-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: var(--om-gold);
}

.om-lp .om-flow-step:last-child::after {
  display: none;
}

.om-lp .om-flow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--om-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.om-lp .om-flow-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.om-lp .om-flow-step p {
  font-size: 13px;
  color: var(--om-text-2);
}


/* ============================================
 * 14. FAQ
 * ============================================ */
.om-lp .om-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.om-lp .om-faq-item {
  background: var(--om-bg-page);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--om-border);
  overflow: hidden;
}

.om-lp .om-faq-q {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.om-lp .om-faq-q:hover {
  background: var(--om-bg-alt);
}

.om-lp .om-faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--om-primary);
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.om-lp .om-faq-item.om-open .om-faq-q::after {
  transform: rotate(45deg);
}

.om-lp .om-faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.om-lp .om-faq-item.om-open .om-faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.om-lp .om-faq-a p {
  font-size: 14px;
  color: var(--om-text-2);
  line-height: 1.8;
}


/* ============================================
 * 15. 信頼性セクション
 * ============================================ */
.om-lp .om-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.om-lp .om-trust-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--om-bg-page);
  border-radius: 12px;
  border: 1px solid var(--om-border);
  border-top: 3px solid var(--om-gold);
}

.om-lp .om-trust-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--om-primary);
  font-family: 'Shippori Mincho', serif;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--om-gold);
}

.om-lp .om-trust-label {
  font-size: 13px;
  color: var(--om-text-2);
  margin-top: 4px;
}

.om-lp .om-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.om-lp .om-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--om-primary-tint);
  color: var(--om-primary);
}


/* ============================================
 * 16. フォーム
 * ============================================ */
.om-lp .om-form-sec {
  background: var(--om-bg-alt);
}

.om-lp .om-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--om-bg-page);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--om-border);
}

.om-lp .om-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.om-lp .om-form-group {
  margin-bottom: 20px;
}

.om-lp .om-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.om-lp .om-form-group .om-req {
  color: var(--om-cta);
  font-size: 12px;
  margin-left: 4px;
}

.om-lp .om-form-group input,
.om-lp .om-form-group select,
.om-lp .om-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--om-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s;
  background: #FAFAFA;
}

.om-lp .om-form-group input:focus,
.om-lp .om-form-group select:focus,
.om-lp .om-form-group textarea:focus {
  outline: none;
  border-color: var(--om-primary-light);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.om-lp .om-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.om-lp .om-form-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: var(--om-bg-alt);
  border-radius: 8px;
  font-size: 14px;
  color: var(--om-text-2);
}

.om-lp .om-form-tel a {
  font-size: 20px;
  font-weight: 700;
  color: var(--om-primary);
}


/* ============================================
 * 17. 他業種リンク
 * ============================================ */
.om-lp .om-cross {
  padding: 60px 0;
  background: var(--om-bg-page);
}

.om-lp .om-cross-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: var(--om-primary);
  margin-bottom: 24px;
  text-align: center;
}

.om-lp .om-cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.om-lp .om-cross-card {
  background: var(--om-bg-page);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--om-border);
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: var(--om-text-1);
}

.om-lp .om-cross-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.om-lp .om-cross-card .om-cross-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.om-lp .om-cross-card .om-cross-icon svg {
  width: 32px;
  height: 32px;
}

.om-lp .om-cross-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.om-lp .om-cross-card p {
  font-size: 13px;
  color: var(--om-text-2);
}


/* ============================================
 * 18. フッター
 * ============================================ */
.om-lp .om-ft {
  background: var(--om-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 20px;
  font-size: 13px;
}

.om-lp .om-ft-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

.om-lp .om-ft-brand {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.om-lp .om-ft-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.om-lp .om-ft-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.om-lp .om-ft-links a:hover {
  color: #fff;
}

.om-lp .om-ft-copy {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================
 * 19. モバイル追従CTA
 * ============================================ */
.om-lp .om-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--om-bg-page);
  border-top: 2px solid var(--om-gold);
  padding: 10px 16px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.om-lp .om-mobile-cta .om-inner {
  display: flex;
  gap: 10px;
}

.om-lp .om-mobile-cta .om-btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  text-align: center;
}


/* ============================================
 * 20. スクロールアニメーション
 * ============================================ */
.om-lp .om-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================
 * 21. レスポンシブ（モバイル）
 * ============================================ */
@media (max-width: 768px) {
  .om-lp .om-nav {
    display: none;
  }

  .om-lp .om-hero .om-inner {
    grid-template-columns: 1fr;
  }

  .om-lp .om-hero h1 {
    font-size: 24px;
  }

  .om-lp .om-sv-box iframe {
    height: 260px;
  }

  .om-lp .om-grid-3,
  .om-lp .om-price-grid {
    grid-template-columns: 1fr;
  }

  .om-lp .om-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .om-lp .om-flow-step::after {
    display: none;
  }

  .om-lp .om-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .om-lp .om-cross-grid {
    grid-template-columns: 1fr;
  }

  .om-lp .om-ft-grid {
    grid-template-columns: 1fr;
  }

  .om-lp .om-ft-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .om-lp .om-form-row {
    grid-template-columns: 1fr;
  }

  .om-lp .om-sec-ttl {
    font-size: 22px;
  }

  .om-lp .om-mobile-cta {
    display: block;
  }

  .om-lp body {
    padding-bottom: 72px;
  }

  .om-lp .om-form {
    padding: 24px;
  }

  .om-lp .om-sec {
    padding: 48px 0;
  }
}


/* ============================================
 * 22. ブロック間の余白をリセット
 * ============================================ */
.om-lp > .wp-block-html + .wp-block-html,
.om-lp > * + * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.om-lp {
  --wp--style--block-gap: 0;
}


/* ============================================
 * 23. LPページタイトル非表示
 * ============================================ */
.om-lp .c-entry__header,
.om-lp .entry-header,
body:has(.om-lp) .c-entry__title,
body:has(.om-lp) .c-entry__header {
  display: none !important;
}


/* ============================================
 * 23. Snow Monkey Forms カスタマイズ
 * ============================================ */

/* フォーム全体の最大幅とセンタリング */
.om-lp .snow-monkey-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--om-bg-page);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--om-border);
}

/* 入力欄の幅を統一 */
.om-lp .smf-text-control__control,
.om-lp .smf-email-control__control,
.om-lp .smf-tel-control__control,
.om-lp .smf-select-control__control,
.om-lp .smf-textarea-control__control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--om-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s;
  background: #FAFAFA;
  box-sizing: border-box;
}

.om-lp .smf-text-control__control:focus,
.om-lp .smf-email-control__control:focus,
.om-lp .smf-tel-control__control:focus,
.om-lp .smf-select-control__control:focus,
.om-lp .smf-textarea-control__control:focus {
  outline: none;
  border-color: var(--om-primary-light);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.om-lp .smf-textarea-control__control {
  min-height: 120px;
  resize: vertical;
}

/* ラベルのスタイル */
.om-lp .smf-item__label__text {
  font-size: 14px;
  font-weight: 700;
}

/* アイテム間の余白 */
.om-lp .smf-item {
  margin-bottom: 20px;
}

/* ボタンのスタイル */
.om-lp .smf-action .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--om-cta);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 0 var(--om-gold), 0 6px 20px rgba(208, 53, 58, 0.22);
}

.om-lp .smf-action .smf-button-control__control:hover {
  background: var(--om-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 var(--om-gold), 0 10px 28px rgba(208, 53, 58, 0.32);
}

/* 戻るボタン */
.om-lp .smf-action .smf-button-control__control[data-action="back"] {
  background: transparent;
  color: var(--om-primary);
  border: 2px solid var(--om-primary);
  box-shadow: none;
  width: auto;
}

.om-lp .smf-action .smf-button-control__control[data-action="back"]:hover {
  background: var(--om-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* プログレストラッカー */
.om-lp .smf-progress-tracker__item--complete {
  color: var(--om-primary);
}

.om-lp .smf-progress-tracker__item--complete .smf-progress-tracker__item__number {
  background: var(--om-primary);
  color: #fff;
}

/* 必須バッジ */
.om-lp .smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
  content: '\5FC5\9808';
  color: var(--om-cta);
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
}

/* 隠しフィールド */
.smf-item:has(#smf-page-source) {
  display: none !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .om-lp .snow-monkey-form {
    padding: 24px;
  }
}
