/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 06:58:22 */
/* ===================================================
   page-id-2369 専用スタイル（Lightning対応修正版）
=================================================== */

/* リセットをヒーロー内部のみに限定 */
.page-id-2369 .hero-survey *,
.page-id-2369 .hero-survey *::before,
.page-id-2369 .hero-survey *::after {
  box-sizing: border-box;
}

/* CSS変数 */
.page-id-2369 {
  --ink:     #1c1917;
  --paper:   #faf8f5;
  --warm:    #f0ede8;
  --accent:  #e85d2f;
  --accent2: #f5a623;
  --teal:    #0d7377;
  --teal-lt: #e6f4f4;
  --muted:   #78716c;
  --border:  rgba(28,25,23,0.10);
}

/* ===================================================
   Lightning の幅制限を突き抜けるための親要素修正
=================================================== */
.page-id-2369 .entry-body,
.page-id-2369 .l-main,
.page-id-2369 .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;  /* ← 全幅突き抜けに必須 */
}

/* ---------- ヒーロー全体 ---------- */
.page-id-2369 .hero-survey {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 0;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* ---------- 左サイドバー ---------- */
.page-id-2369 .hero-survey__sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.page-id-2369 .hero-survey__sidebar span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* ---------- メインコンテンツ ---------- */
.page-id-2369 .hero-survey__body {
  margin-left: 48px;
  display: grid !important;           /* Lightning上書き対策 */
  grid-template-columns: 1fr 1fr !important;
  min-height: 440px;
  width: auto;
}

.page-id-2369 .hero-survey__left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  float: none !important;             /* Lightningのfloat干渉を解除 */
  width: auto !important;
}

.page-id-2369 .hero-survey__right {
  background: var(--teal);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  float: none !important;             /* 同上 */
  width: auto !important;
}

/* ---------- ステップバッジ ---------- */
.page-id-2369 .hero-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  opacity: 0;
  animation: slideIn 0.5s ease 0.1s forwards;
}
.page-id-2369 .hero-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.page-id-2369 .hero-step__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* ---------- タイトル ---------- */
.page-id-2369 .hero-survey__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  padding: 0;
  border: none;                       /* LightningのH1ボーダー打ち消し */
  opacity: 0;
  animation: slideIn 0.6s ease 0.25s forwards;
}
.page-id-2369 .hero-survey__title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.page-id-2369 .hero-survey__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 4px;
  background: var(--accent2);
  border-radius: 2px;
  animation: lineExpand 0.6s ease 1s forwards;
}

/* ---------- サブタイトル ---------- */
.page-id-2369 .hero-survey__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 36px;
  padding: 0;
  opacity: 0;
  animation: slideIn 0.6s ease 0.4s forwards;
}

/* ---------- タグ群 ---------- */
.page-id-2369 .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: slideIn 0.6s ease 0.55s forwards;
}
.page-id-2369 .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid;
  margin: 0;
  text-decoration: none;
}
.page-id-2369 .hero-tag--anon  { color: var(--teal);   border-color: var(--teal);   background: var(--teal-lt); }
.page-id-2369 .hero-tag--time  { color: var(--accent); border-color: var(--accent); background: #fef3ee; }
.page-id-2369 .hero-tag--voice { color: #92400e;       border-color: #d97706;       background: #fffbeb; }

/* ---------- 右ビジュアル ---------- */
.page-id-2369 .hero-survey__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-id-2369 .bubble-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  z-index: 1;
  flex-shrink: 0;
}

.page-id-2369 .bubble-wrap .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  margin: 0;
  padding: 0;
}
.page-id-2369 .ring-1 { width: 260px; height: 260px; top: 0; left: 0; animation: ringPulse 4s ease-in-out infinite; }
.page-id-2369 .ring-2 { width: 190px; height: 190px; top: 35px; left: 35px; border-color: rgba(255,255,255,0.10); animation: ringPulse 4s ease-in-out 0.5s infinite; }

.page-id-2369 .bubble {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  white-space: nowrap;
  line-height: 1.4;
  margin: 0;
}
.page-id-2369 .bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-bottom: none;
}
.page-id-2369 .bubble-1 { top: 20px; left: 10px; animation: bubbleFloat 3.5s ease-in-out infinite; }
.page-id-2369 .bubble-2 { top: 70px; right: -35px; animation: bubbleFloat 4s ease-in-out 0.8s infinite; }
.page-id-2369 .bubble-2::after { left: auto; right: 18px; }
.page-id-2369 .bubble-3 { bottom: 30px; left: 20px; animation: bubbleFloat 3s ease-in-out 1.5s infinite; }

.page-id-2369 .bubble-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(232,93,47,0.20), 0 0 0 20px rgba(232,93,47,0.08);
  font-size: 30px;
  margin: 0;
  padding: 0;
  animation: iconPop 0.6s cubic-bezier(.34,1.56,.64,1) 0.8s both;
}

.page-id-2369 .hero-count {
  position: absolute;
  bottom: 24px;
  right: 56px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(6px);
  z-index: 2;
  margin: 0;
}
.page-id-2369 .hero-count__num {
  font-size: 24px;
  font-weight: 900;
  display: block;
  font-family: 'DM Serif Display', serif;
  margin: 0;
  padding: 0;
}
.page-id-2369 .hero-count__label {
  font-size: 10px;
  opacity: 0.75;
  letter-spacing: 0.1em;
  display: block;
  margin: 0;
  padding: 0;
}

/* ---------- フッターバー ---------- */
.page-id-2369 .hero-survey__footer {
  margin: 0 0 0 48px;
  padding: 14px 48px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 32px;
}
.page-id-2369 .hero-footer__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}
.page-id-2369 .hero-footer__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

/* ===================================================
   キーフレーム
=================================================== */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lineExpand {
  to { width: 100%; }
}
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}
@keyframes iconPop {
  from { transform: translate(-50%,-50%) scale(0); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}

/* ===================================================
   レスポンシブ
=================================================== */
@media screen and (max-width: 768px) {
  .page-id-2369 .hero-survey__sidebar { display: none; }
  .page-id-2369 .hero-survey__body {
    margin-left: 0;
    grid-template-columns: 1fr !important;
  }
  .page-id-2369 .hero-survey__right {
    min-height: 260px;
    order: -1;
  }
  .page-id-2369 .hero-survey__left {
    padding: 36px 20px 32px;
  }
  .page-id-2369 .hero-survey__footer {
    margin-left: 0;
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .page-id-2369 .bubble-wrap {
    width: 200px;
    height: 200px;
    transform: scale(0.85);
  }
  .page-id-2369 .hero-count {
    bottom: 12px;
    right: 12px;
  }
}

/* ===================================================
   Lightning グリッド崩れ 追加修正
=================================================== */

/* Gutenbergのブロックラッパーが幅を絞っている場合の対策 */
.page-id-2369 .wp-block-html,
.page-id-2369 .wp-block-freeform {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* グリッドコンテナを強制確定 */
.page-id-2369 .hero-survey__body {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-auto-flow: column !important;  /* ← 追加 */
  width: 100% !important;
}

/* 子要素の width: 100% 上書きを解除 */
.page-id-2369 .hero-survey__body > * {
  width: auto !important;      /* ← これが核心 */
  max-width: none !important;
  float: none !important;
  clear: none !important;
}

/* 左右カラムを明示的にグリッド列に固定 */
.page-id-2369 .hero-survey__left {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 0;                /* グリッドのはみ出し防止 */
}
.page-id-2369 .hero-survey__right {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0;
}


/* ===================================================
   page-id-2369 専用：フォーム・共通パーツ
=================================================== */

/* ===== チェックポイント ===== */
.page-id-2369 .survey-points {
  background: #ffffff;
  border-left: 5px solid #3b82f6;
  border-radius: 12px;
  padding: 20px 20px 20px 18px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-id-2369 .survey-points p {
  margin: 8px 0;
  font-weight: 500;
  color: #333;
}

.page-id-2369 .survey-points p::before {
  content: "✔ ";
  color: #3b82f6;
  font-weight: bold;
}

/* ===== 区切り ===== */
.page-id-2369 .section-divider {
  width: 60px;
  height: 4px;
  background: #3b82f6;
  margin: 25px auto;
  border-radius: 2px;
}

/* ===== 説明 ===== */
.page-id-2369 .intro-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  margin: 25px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  line-height: 1.8;
  color: #444;
}

/* ===== CTAテキスト ===== */
.page-id-2369 .cta-text {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a2b49;
}

/* ===== フォーム（横幅改善＋スクロール対策） ===== */
.page-id-2369 .survey-wrap {
  width: 100vw;
  max-width: 1100px;
  margin-left: calc(50% - 50vw);
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: visible;
}

/* iframe */
.page-id-2369 .survey-wrap iframe {
  display: block;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  height: 1400px;
  border: none;
  border-radius: 12px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

/* ===== CTAボタン ===== */
.page-id-2369 .survey-cta {
  text-align: center;
  margin: 40px 0;
}

.page-id-2369 .survey-cta a {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.page-id-2369 .survey-cta a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* ===================================================
   アニメーション（グローバル定義）
=================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================
   レスポンシブ
=================================================== */
@media screen and (max-width: 768px) {
  .page-id-2369 .entry-body {
    padding: 30px 15px;
  }

  .page-id-2369 .hero {
    padding: 50px 15px 40px;
  }

  .page-id-2369 .hero h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .page-id-2369 .survey-wrap {
    padding: 10px;
  }

  .page-id-2369 .survey-wrap iframe {
    height: 1600px;
  }

  .page-id-2369 .survey-cta a {
    width: 100%;
    font-size: 15px;
  }
}