/* --- サイトの既存CSSとの競合を解決するためのリセットCSS --- */
/* ※クラス名の `contenst` はtypoですが、CMS側の指定なのでこのままにしています */
.pane-contenst-container {
    max-width: none !important;
    min-width: 0 !important;
    width: auto !important;
    display: block !important;
    margin-top: 0 !important;
}
.pane-main { width: auto !important; }

/* ========================================
   TTG-HELLO LP 専用CSS 完成版
   色設計：濃紺 + 白 + ライムアクセント + CTAオレンジ
   ======================================== */
#ttg-hello-lp-wrapper {
    --ttg-navy: #102A43;
    --ttg-navy-2: #0B1F33;
    --ttg-lime: #D7F205;
    --ttg-lime-soft: #F4FBD6;
    --ttg-mint: #25D9C7;
    --ttg-cyan: #41AED9;
    --ttg-orange: #FF8A00;
    --ttg-orange-dark: #E8630A;
    --ttg-bg: #F5F7FA;
    --ttg-cream: #FFFDF2;
    --ttg-text: #222222;
    --ttg-muted: #666666;
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--ttg-text);
    line-height: 1.8;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
#ttg-hello-lp-wrapper * { box-sizing: border-box; }
#ttg-hello-lp-wrapper img { max-width: 100%; height: auto; }
#ttg-hello-lp-wrapper a { color: var(--ttg-orange-dark); text-decoration: none; transition: opacity 0.3s; }
#ttg-hello-lp-wrapper a:hover { opacity: 0.8; }

/* --- セクション共通 --- */
#ttg-hello-lp-wrapper .lp-section { padding: 60px 20px; }
#ttg-hello-lp-wrapper .lp-inner { max-width: 960px; margin: 0 auto; }
#ttg-hello-lp-wrapper .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ttg-navy-2);
    letter-spacing: 0.05em;
}
#ttg-hello-lp-wrapper .section-title::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ttg-lime), var(--ttg-mint));
    border-radius: 2px;
    margin: 14px auto 0;
    transition: width 0.8s ease 0.25s;
}
#ttg-hello-lp-wrapper .section-title.is-visible::after { width: 56px; }
#ttg-hello-lp-wrapper .section-subtitle { text-align: center; font-size: 15px; color: var(--ttg-muted); margin-bottom: 40px; }
#ttg-hello-lp-wrapper .bg-white { background: #fff; }
#ttg-hello-lp-wrapper .bg-light { background: var(--ttg-bg); }
#ttg-hello-lp-wrapper .bg-lime-light { background: var(--ttg-lime-soft); }
#ttg-hello-lp-wrapper .bg-dark { background: var(--ttg-navy-2); color: #fff; }
#ttg-hello-lp-wrapper .bg-dark .section-title { color: #fff; }
#ttg-hello-lp-wrapper .bg-dark .section-subtitle { color: #c8d3df; }

/* --- ファーストビュー --- */
#ttg-hello-lp-wrapper .fv {
    background: linear-gradient(135deg, var(--ttg-navy-2) 0%, var(--ttg-navy) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 70px;
    position: relative;
    overflow: hidden;
}
#ttg-hello-lp-wrapper .fv::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215,242,5,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: ttgFloatA 12s ease-in-out infinite;
}
#ttg-hello-lp-wrapper .fv::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,217,199,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: ttgFloatB 14s ease-in-out infinite;
}
#ttg-hello-lp-wrapper .fv .lp-inner { position: relative; z-index: 1; }
#ttg-hello-lp-wrapper .fv-badge {
    display: inline-block;
    background: var(--ttg-lime);
    color: var(--ttg-navy-2);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}
#ttg-hello-lp-wrapper .fv-logo { max-width: 220px; display: block; margin: 0 auto 24px; }
#ttg-hello-lp-wrapper .fv-product-name { font-size: 48px; font-weight: 900; color: var(--ttg-lime); margin-bottom: 6px; letter-spacing: 0.08em; }
#ttg-hello-lp-wrapper .fv h1 { font-size: 36px; font-weight: 800; margin: 0 0 12px; line-height: 1.4; letter-spacing: 0.03em; }
#ttg-hello-lp-wrapper .fv h1 span.highlight { color: var(--ttg-lime); }
#ttg-hello-lp-wrapper .fv .fv-sub { font-size: 18px; margin-bottom: 8px; font-weight: 600; color: #dce7ef; }
#ttg-hello-lp-wrapper .fv .fv-desc { font-size: 15px; color: #c6d1db; margin: 0 auto 32px; max-width: 680px; line-height: 1.9; }
#ttg-hello-lp-wrapper .fv .fv-dev { font-size: 13px; color: #aebbc8; margin-bottom: 30px; }
#ttg-hello-lp-wrapper .fv .fv-dev a { color: var(--ttg-lime); }
#ttg-hello-lp-wrapper .fv-hero-image { text-align: center; margin-top: 36px; position: relative; }
#ttg-hello-lp-wrapper .fv-hero-image img { max-width: 360px; width: 100%; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }

/* --- 音声ウェーブ --- */
#ttg-hello-lp-wrapper .fv-voicewave { display: flex; justify-content: center; align-items: flex-end; gap: 5px; height: 26px; margin: 2px auto 14px; }
#ttg-hello-lp-wrapper .fv-voicewave span { width: 4px; border-radius: 2px; background: linear-gradient(180deg, var(--ttg-lime) 0%, var(--ttg-mint) 100%); animation: ttgWave 1.1s ease-in-out infinite; transform-origin: bottom; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(1) { animation-delay: 0s; height: 40%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(2) { animation-delay: 0.15s; height: 70%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(3) { animation-delay: 0.3s; height: 100%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(4) { animation-delay: 0.45s; height: 60%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(5) { animation-delay: 0.6s; height: 90%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(6) { animation-delay: 0.75s; height: 55%; }
#ttg-hello-lp-wrapper .fv-voicewave span:nth-child(7) { animation-delay: 0.9s; height: 35%; }

#ttg-hello-lp-wrapper .voice-bubble { display: inline-block; background: #fff; color: var(--ttg-navy-2); font-size: 14px; font-weight: 700; line-height: 1.6; padding: 12px 22px; border-radius: 16px; position: relative; margin-bottom: 20px; max-width: 90%; box-shadow: 0 6px 24px rgba(0,0,0,0.25); animation: ttgBob 3s ease-in-out infinite; }
#ttg-hello-lp-wrapper .voice-bubble::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 9px solid transparent; border-top-color: #fff; }
#ttg-hello-lp-wrapper .voice-bubble .voice-bubble-text { transition: opacity 0.4s ease; }
#ttg-hello-lp-wrapper .voice-bubble .voice-bubble-text.fade { opacity: 0; }

/* --- CTAボタン --- */
#ttg-hello-lp-wrapper .cta-btn { display: inline-block; background: var(--ttg-orange); color: #fff !important; font-size: 16px; font-weight: 700; padding: 16px 40px; border-radius: 50px; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255,138,0,0.28); margin: 6px 8px; border: none; cursor: pointer; letter-spacing: 0.05em; position: relative; overflow: hidden; }
#ttg-hello-lp-wrapper .cta-btn:hover { background: var(--ttg-orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,138,0,0.36); opacity: 1; }
#ttg-hello-lp-wrapper .cta-btn.secondary { background: transparent; border: 2px solid var(--ttg-lime); color: var(--ttg-lime) !important; box-shadow: none; }
#ttg-hello-lp-wrapper .cta-btn.secondary:hover { background: var(--ttg-lime); color: var(--ttg-navy-2) !important; }
#ttg-hello-lp-wrapper .cta-btn.white-btn { background: var(--ttg-lime); color: var(--ttg-navy-2) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
#ttg-hello-lp-wrapper .cta-area { text-align: center; margin-top: 30px; }
#ttg-hello-lp-wrapper .cta-btn:not(.secondary)::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%); transform: skewX(-20deg); animation: ttgShine 4.5s ease-in-out infinite; pointer-events: none; }

/* --- お悩み --- */
#ttg-hello-lp-wrapper .worry-list { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; }
#ttg-hello-lp-wrapper .worry-item { background: #fff; border: 2px solid rgba(16,42,67,0.08); border-radius: 12px; padding: 28px 24px; width: calc(50% - 10px); min-width: 260px; text-align: center; transition: box-shadow 0.3s; }
#ttg-hello-lp-wrapper .worry-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
#ttg-hello-lp-wrapper .worry-icon { font-size: 36px; margin-bottom: 12px; }
#ttg-hello-lp-wrapper .worry-text { font-size: 15px; font-weight: 600; color: #45515c; line-height: 1.7; }

/* --- About --- */
#ttg-hello-lp-wrapper .about-grid { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
#ttg-hello-lp-wrapper .about-text { flex: 1; min-width: 300px; }
#ttg-hello-lp-wrapper .about-text h3 { font-size: 22px; color: var(--ttg-navy); margin-bottom: 16px; font-weight: 700; }
#ttg-hello-lp-wrapper .about-text p { margin-bottom: 16px; font-size: 15px; line-height: 1.9; }
#ttg-hello-lp-wrapper .about-visual { flex: 0 0 320px; text-align: center; }
#ttg-hello-lp-wrapper .product-image { max-width: 300px; width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
#ttg-hello-lp-wrapper .device-size { font-size:13px; color:#888; }
#ttg-hello-lp-wrapper .lang-flags-about { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; padding: 20px 24px; background: #fff; border-radius: 12px; border: 1px solid rgba(16,42,67,0.08); }
#ttg-hello-lp-wrapper .lang-flag-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
#ttg-hello-lp-wrapper .flag-emoji { font-size: 40px; line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12)); }
#ttg-hello-lp-wrapper .flag-label { font-size: 12px; color: #555; font-weight: 600; letter-spacing: 0.03em; }
#ttg-hello-lp-wrapper .lang-flags-compact { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
#ttg-hello-lp-wrapper .lang-flags-compact .flag-emoji { font-size: 26px; }
#ttg-hello-lp-wrapper .lang-flags-inline { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
#ttg-hello-lp-wrapper .lang-flags-inline .flag-emoji { font-size: 18px; }

/* --- サンプル音声 --- */
#ttg-hello-lp-wrapper .audio-sample-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
#ttg-hello-lp-wrapper .audio-sample-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 4px solid var(--ttg-lime); }
#ttg-hello-lp-wrapper .audio-lang-label { display: inline-block; background: var(--ttg-navy); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
#ttg-hello-lp-wrapper .audio-sample-card h3 { font-size: 18px; color: var(--ttg-navy-2); margin-bottom: 10px; }
#ttg-hello-lp-wrapper .audio-sample-card p { font-size: 14px; color: var(--ttg-muted); line-height: 1.8; margin-bottom: 18px; }
#ttg-hello-lp-wrapper .audio-sample-card audio { width: 100%; }

/* --- 理由カード --- */
#ttg-hello-lp-wrapper .reason-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
#ttg-hello-lp-wrapper .reason-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid var(--ttg-lime); }
#ttg-hello-lp-wrapper .reason-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
#ttg-hello-lp-wrapper .reason-num { display: inline-block; background: var(--ttg-navy); color: #fff; font-size: 13px; font-weight: 700; width: 32px; height: 32px; line-height: 32px; text-align: center; border-radius: 50%; margin-bottom: 16px; }
#ttg-hello-lp-wrapper .reason-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--ttg-navy-2); }
#ttg-hello-lp-wrapper .reason-card p { font-size: 14px; color: var(--ttg-muted); line-height: 1.8; }

/* --- 実証データ --- */
#ttg-hello-lp-wrapper .infographic-grid { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
#ttg-hello-lp-wrapper .infographic-item { text-align: center; flex: 1; min-width: 200px; max-width: 260px; }
#ttg-hello-lp-wrapper .bar-chart-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 10px; height: 200px; margin-bottom: 20px; padding: 0 20px; }
#ttg-hello-lp-wrapper .bar { width: 52px; border-radius: 6px 6px 0 0; position: relative; cursor: pointer; transition: filter 0.2s; }
#ttg-hello-lp-wrapper .bar:hover { filter: brightness(1.15); }
#ttg-hello-lp-wrapper .bar-before { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); height: 120px; }
#ttg-hello-lp-wrapper .bar-after { background: linear-gradient(180deg, var(--ttg-lime) 0%, var(--ttg-mint) 100%); box-shadow: 0 4px 16px rgba(215,242,5,0.28); }
#ttg-hello-lp-wrapper .bar-after.bar-sales { height: 149px; }
#ttg-hello-lp-wrapper .bar-after.bar-traffic { height: 144px; }
#ttg-hello-lp-wrapper .bar-after.bar-spend { height: 132px; }
#ttg-hello-lp-wrapper .bar::before { content: attr(data-tooltip); position: absolute; bottom: calc(100% + 14px); left: 50%; transform: translateX(-50%) scale(0.9); background: #fff; color: #333; font-size: 13px; font-weight: 600; padding: 10px 16px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 10; line-height: 1.5; }
#ttg-hello-lp-wrapper .bar::after { content: ""; position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%) scale(0.9); border: 6px solid transparent; border-top-color: #fff; opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 10; }
#ttg-hello-lp-wrapper .bar:hover::before, #ttg-hello-lp-wrapper .bar:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) scale(1); }
#ttg-hello-lp-wrapper .up-badge { display: inline-block; background: var(--ttg-lime); color: var(--ttg-navy-2); font-weight: 800; padding: 8px 20px; border-radius: 12px; margin-bottom: 8px; line-height: 1.2; box-shadow: 0 4px 16px rgba(215,242,5,0.24); animation: popIn 0.6s ease-out both; }
#ttg-hello-lp-wrapper .up-badge .up-pct { font-size: 36px; }
#ttg-hello-lp-wrapper .up-badge .up-unit { font-size: 16px; margin-left: 2px; opacity: 0.9; }
#ttg-hello-lp-wrapper .up-badge .up-arrow { font-size: 16px; display: block; margin-bottom: 2px; opacity: 0.8; }
#ttg-hello-lp-wrapper .infographic-category { font-size: 16px; font-weight: 700; color: #fff; margin-top: 4px; }
#ttg-hello-lp-wrapper .infographic-icon { font-size: 24px; display: block; margin-bottom: 4px; }
#ttg-hello-lp-wrapper .infographic-legend { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; font-size: 12px; color: #c8d3df; }
#ttg-hello-lp-wrapper .legend-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }
#ttg-hello-lp-wrapper .legend-dot.before { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
#ttg-hello-lp-wrapper .legend-dot.after { background: var(--ttg-lime); }
#ttg-hello-lp-wrapper .hover-hint { text-align: center; font-size: 11px; color: #9babb8; margin-bottom: 16px; letter-spacing: 0.05em; }
#ttg-hello-lp-wrapper .data-note { text-align: center; font-size: 12px; color: #aebbc8; margin-top: 20px; line-height: 1.7; }
#ttg-hello-lp-wrapper .insight-quote { background: rgba(255,255,255,0.05); border-left: 3px solid var(--ttg-lime); border-radius: 0 8px 8px 0; padding: 16px 20px; max-width: 640px; margin: 24px auto 0; font-size: 14px; color: #c8d3df; line-height: 1.9; }

/* --- 導入事例・活用シーン --- */
#ttg-hello-lp-wrapper .case-grid { display: flex; gap: 24px; flex-wrap: wrap; }
#ttg-hello-lp-wrapper .case-card { flex: 1; min-width: 260px; background: #fff; border-radius: 12px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
#ttg-hello-lp-wrapper .case-label { display: inline-block; background: var(--ttg-navy); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 4px; margin-bottom: 14px; }
#ttg-hello-lp-wrapper .case-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--ttg-navy-2); }
#ttg-hello-lp-wrapper .case-card p { font-size: 14px; color: var(--ttg-muted); line-height: 1.8; }
#ttg-hello-lp-wrapper .case-image-wrap { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
#ttg-hello-lp-wrapper .case-image-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; }
#ttg-hello-lp-wrapper .usecase-gallery { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
#ttg-hello-lp-wrapper .usecase-card { flex: 1; min-width: 280px; max-width: 420px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #fff; transition: transform 0.3s, box-shadow 0.3s; }
#ttg-hello-lp-wrapper .usecase-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
#ttg-hello-lp-wrapper .usecase-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
#ttg-hello-lp-wrapper .usecase-caption { padding: 16px 20px; font-size: 14px; color: #555; line-height: 1.7; }
#ttg-hello-lp-wrapper .usecase-caption strong { color: var(--ttg-navy-2); font-size: 15px; }

/* --- 管理画面・スケジュール設定 --- */
#ttg-hello-lp-wrapper .admin-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
#ttg-hello-lp-wrapper .admin-feature-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.07); border: 1px solid rgba(16,42,67,0.08); }
#ttg-hello-lp-wrapper .admin-feature-card-wide { grid-column: span 2; }
#ttg-hello-lp-wrapper .admin-image-wrap { background: var(--ttg-bg); padding: 16px; }
#ttg-hello-lp-wrapper .admin-image-wrap img { width: 100%; display: block; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
#ttg-hello-lp-wrapper .admin-feature-text { padding: 22px 24px 26px; }
#ttg-hello-lp-wrapper .admin-feature-label { display: inline-block; background: var(--ttg-lime-soft); color: var(--ttg-navy-2); font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
#ttg-hello-lp-wrapper .admin-feature-text h3 { font-size: 18px; color: var(--ttg-navy-2); margin-bottom: 10px; }
#ttg-hello-lp-wrapper .admin-feature-text p { font-size: 14px; color: var(--ttg-muted); line-height: 1.8; }
#ttg-hello-lp-wrapper .admin-feature-note { text-align: center; font-size: 12px; color: #999; margin-top: 20px; }

/* --- ステップ --- */
#ttg-hello-lp-wrapper .step-flow { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
#ttg-hello-lp-wrapper .step-item { text-align: center; flex: 1; min-width: 180px; max-width: 220px; position: relative; }
#ttg-hello-lp-wrapper .step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--ttg-navy); color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; flex-direction: column; line-height: 1.3; }
#ttg-hello-lp-wrapper .step-circle .step-num { font-size: 11px; opacity: 0.8; }
#ttg-hello-lp-wrapper .step-circle .step-icon { font-size: 24px; }
#ttg-hello-lp-wrapper .step-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ttg-navy-2); }
#ttg-hello-lp-wrapper .step-item p { font-size: 13px; color: var(--ttg-muted); line-height: 1.7; }
#ttg-hello-lp-wrapper .step-arrow { display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--ttg-navy); flex: 0 0 30px; font-weight: 700; animation: ttgArrowPulse 1.6s ease-in-out infinite; }

/* --- 価格・スペック --- */
#ttg-hello-lp-wrapper .price-highlight { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
#ttg-hello-lp-wrapper .price-box { background: #fff; border-radius: 12px; padding: 28px 32px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); flex: 1; min-width: 260px; max-width: 400px; border-top: 4px solid var(--ttg-lime); }
#ttg-hello-lp-wrapper .price-label { font-size: 13px; color: #888; margin-bottom: 6px; font-weight: 600; }
#ttg-hello-lp-wrapper .price-amount { font-size: 36px; font-weight: 800; color: var(--ttg-navy); }
#ttg-hello-lp-wrapper .price-amount .yen { font-size: 18px; }
#ttg-hello-lp-wrapper .price-amount .tax { font-size: 13px; color: #888; font-weight: 400; }
#ttg-hello-lp-wrapper .price-note { font-size: 12px; color: #999; margin-top: 8px; }
#ttg-hello-lp-wrapper .spec-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; font-size: 14px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
#ttg-hello-lp-wrapper .spec-table th, #ttg-hello-lp-wrapper .spec-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eee; }
#ttg-hello-lp-wrapper .spec-table th { background: var(--ttg-navy); color: #fff; font-weight: 600; width: 200px; white-space: nowrap; }
#ttg-hello-lp-wrapper .spec-table td { color: #444; }

/* --- 注意事項・FAQ・はじめての方 --- */
#ttg-hello-lp-wrapper .notice-list { background: #fff; border-radius: 12px; padding: 30px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
#ttg-hello-lp-wrapper .notice-list li { font-size: 14px; color: #555; margin-bottom: 12px; padding-left: 20px; position: relative; line-height: 1.8; }
#ttg-hello-lp-wrapper .notice-list li::before { content: "●"; position: absolute; left: 0; color: var(--ttg-orange); font-size: 8px; top: 6px; }
#ttg-hello-lp-wrapper .faq-list { max-width: 760px; margin: 0 auto; }
#ttg-hello-lp-wrapper .faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; }
#ttg-hello-lp-wrapper .faq-q { padding: 20px 24px; font-size: 15px; font-weight: 700; cursor: pointer; position: relative; padding-right: 50px; color: var(--ttg-navy-2); transition: background 0.3s; }
#ttg-hello-lp-wrapper .faq-q:hover { background: var(--ttg-lime-soft); }
#ttg-hello-lp-wrapper .faq-q::before { content: "Q."; color: var(--ttg-orange); font-weight: 800; margin-right: 8px; }
#ttg-hello-lp-wrapper .faq-q::after { content: "＋"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--ttg-orange); transition: transform 0.3s ease, color 0.3s ease; }
#ttg-hello-lp-wrapper .faq-item.active .faq-q::after { content: "－"; }
#ttg-hello-lp-wrapper .faq-a { display: block; max-height: 0; overflow: hidden; opacity: 0; padding: 0 24px; font-size: 14px; color: #666; line-height: 1.9; border-top: 1px solid transparent; transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, border-color 0.35s ease; }
#ttg-hello-lp-wrapper .faq-a::before { content: "A."; color: var(--ttg-orange); font-weight: 800; margin-right: 8px; }
#ttg-hello-lp-wrapper .faq-item.active .faq-a { max-height: 500px; opacity: 1; padding-top: 16px; padding-bottom: 20px; border-top-color: #f0f0f0; }
#ttg-hello-lp-wrapper .beginner-box { background: #fff; border-radius: 16px; padding: 40px 36px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center; }
#ttg-hello-lp-wrapper .beginner-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--ttg-navy-2); }
#ttg-hello-lp-wrapper .beginner-points { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 24px 0; }
#ttg-hello-lp-wrapper .beginner-point { background: var(--ttg-lime-soft); border-radius: 10px; padding: 20px 18px; flex: 1; min-width: 200px; max-width: 280px; }
#ttg-hello-lp-wrapper .beginner-point .bp-icon { font-size: 28px; margin-bottom: 8px; }
#ttg-hello-lp-wrapper .beginner-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ttg-navy-2); }
#ttg-hello-lp-wrapper .beginner-point p { font-size: 13px; color: #666; line-height: 1.7; }

/* --- お問い合わせフォーム・フッター --- */
#ttg-hello-lp-wrapper .footer-cta { background: linear-gradient(135deg, var(--ttg-navy) 0%, var(--ttg-navy-2) 100%); color: #fff; text-align: center; padding: 60px 20px; }
#ttg-hello-lp-wrapper .footer-cta h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
#ttg-hello-lp-wrapper .footer-cta p { font-size: 15px; margin-bottom: 30px; color: rgba(255,255,255,0.9); }
#ttg-hello-lp-wrapper .footer-info { text-align: center; padding: 24px 20px; background: var(--ttg-navy-2); color: #888; font-size: 12px; }
#ttg-hello-lp-wrapper .footer-info a { color: var(--ttg-lime); }
#ttg-hello-lp-wrapper #ttg-contact-form { max-width: 700px; margin: 40px auto 0; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); text-align: left; color: #333; }
#ttg-hello-lp-wrapper .form-preference { display: flex; margin-bottom: 24px; align-items: flex-start; }
#ttg-hello-lp-wrapper .form-title { width: 200px; display: flex; align-items: center; padding-top: 10px; }
#ttg-hello-lp-wrapper .form-title label { font-weight: 700; font-size: 15px; margin: 0; }
#ttg-hello-lp-wrapper .form-title span.required { background: var(--ttg-orange); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 3px; margin-left: 8px; font-weight: 700; }
#ttg-hello-lp-wrapper .form-input { flex: 1; }
#ttg-hello-lp-wrapper .form-input input[type="text"], #ttg-hello-lp-wrapper .form-input input[type="tel"], #ttg-hello-lp-wrapper .form-input input[type="email"], #ttg-hello-lp-wrapper .form-input select, #ttg-hello-lp-wrapper .form-input textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; background: #fafafa; transition: border-color 0.3s; }
#ttg-hello-lp-wrapper .form-input input:focus, #ttg-hello-lp-wrapper .form-input select:focus, #ttg-hello-lp-wrapper .form-input textarea:focus { border-color: var(--ttg-orange); outline: none; background: #fff; }
#ttg-hello-lp-wrapper .form-flex-input { display: flex; align-items: center; gap: 12px; }
#ttg-hello-lp-wrapper .form-flex-input label { font-size: 14px; color: #666; white-space: nowrap; }
#ttg-hello-lp-wrapper .form-submit-area { text-align: center; margin-top: 40px; }
#ttg-hello-lp-wrapper .form-submit-area input[type="submit"] { width: 100%; max-width: 320px; appearance: none; cursor: pointer; }

/* --- スクロール連動フェードイン --- */
#ttg-hello-lp-wrapper.js-anim .ttg-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
#ttg-hello-lp-wrapper.js-anim .ttg-reveal.is-visible { opacity: 1; transform: translateY(0); }
#ttg-hello-lp-wrapper.js-anim .bar { transform: scaleY(0); transform-origin: bottom; transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1); }
#ttg-hello-lp-wrapper.js-anim .bar.is-visible { transform: scaleY(1); }
#ttg-hello-lp-wrapper.js-anim .bar-after.is-visible { transition-delay: 0.25s; }
#ttg-hello-lp-wrapper.js-anim .up-badge { animation-play-state: paused; }
#ttg-hello-lp-wrapper.js-anim .infographic-item.is-visible .up-badge { animation-play-state: running; }
#ttg-hello-lp-wrapper.js-anim .step-item .step-circle { transform: scale(0.4); opacity: 0; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; }
#ttg-hello-lp-wrapper.js-anim .step-item.is-visible .step-circle { transform: scale(1); opacity: 1; }

@keyframes ttgFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ttgFloatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes ttgFloatB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -16px) scale(1.06); } }
@keyframes ttgWave { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }
@keyframes ttgBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes ttgShine { 0% { left: -80%; } 18% { left: 130%; } 100% { left: 130%; } }
@keyframes ttgArrowPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
@keyframes popIn { 0% { transform: scale(0.5); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    #ttg-hello-lp-wrapper .fv h1 { font-size: 24px; }
    #ttg-hello-lp-wrapper .fv .fv-product-name { font-size: 32px; }
    #ttg-hello-lp-wrapper .fv-hero-image img { max-width: 260px; }
    #ttg-hello-lp-wrapper .section-title { font-size: 22px; }
    #ttg-hello-lp-wrapper .lp-section { padding: 40px 16px; }
    #ttg-hello-lp-wrapper .worry-item { width: 100%; }
    #ttg-hello-lp-wrapper .about-grid { flex-direction: column; }
    #ttg-hello-lp-wrapper .about-visual { flex: 1; }
    #ttg-hello-lp-wrapper .lang-flags-about { gap: 14px; padding: 16px; }
    #ttg-hello-lp-wrapper .lang-flags-about .flag-emoji { font-size: 32px; }
    #ttg-hello-lp-wrapper .lang-flags-compact .flag-emoji { font-size: 22px; }
    #ttg-hello-lp-wrapper .data-card { max-width: 100%; }
    #ttg-hello-lp-wrapper .bar-chart-wrap { height: 160px; }
    #ttg-hello-lp-wrapper .bar-before { height: 90px; }
    #ttg-hello-lp-wrapper .bar-after.bar-sales { height: 112px; }
    #ttg-hello-lp-wrapper .bar-after.bar-traffic { height: 108px; }
    #ttg-hello-lp-wrapper .bar-after.bar-spend { height: 99px; }
    #ttg-hello-lp-wrapper .bar { width: 40px; }
    #ttg-hello-lp-wrapper .up-badge .up-pct { font-size: 28px; }
    #ttg-hello-lp-wrapper .infographic-legend { flex-direction: column; align-items: center; gap: 8px; }
    #ttg-hello-lp-wrapper .case-image-wrap img { height: 160px; }
    #ttg-hello-lp-wrapper .usecase-card { max-width: 100%; }
    #ttg-hello-lp-wrapper .usecase-card img { height: 180px; }
    #ttg-hello-lp-wrapper .admin-feature-grid { grid-template-columns: 1fr; }
    #ttg-hello-lp-wrapper .admin-feature-card-wide { grid-column: span 1; }
    #ttg-hello-lp-wrapper .step-flow { flex-direction: column; align-items: center; }
    #ttg-hello-lp-wrapper .step-item { max-width: 100%; }
    #ttg-hello-lp-wrapper .step-arrow { transform: rotate(90deg); flex: 0 0 auto; width: 100%; }
    #ttg-hello-lp-wrapper .price-box { max-width: 100%; }
    #ttg-hello-lp-wrapper .spec-table th { width: 120px; font-size: 13px; }
    #ttg-hello-lp-wrapper .cta-btn { display: block; margin: 8px auto; max-width: 320px; }
    #ttg-hello-lp-wrapper .beginner-box { padding: 28px 20px; }
    #ttg-hello-lp-wrapper #ttg-contact-form { padding: 24px 20px; }
    #ttg-hello-lp-wrapper .form-preference { flex-direction: column; }
    #ttg-hello-lp-wrapper .form-title { width: 100%; margin-bottom: 8px; padding-top: 0; }
    #ttg-hello-lp-wrapper .form-flex-input { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    #ttg-hello-lp-wrapper *, #ttg-hello-lp-wrapper *::before, #ttg-hello-lp-wrapper *::after { animation: none !important; transition: none !important; }
    #ttg-hello-lp-wrapper.js-anim .ttg-reveal, #ttg-hello-lp-wrapper.js-anim .step-item .step-circle { opacity: 1; transform: none; }
    #ttg-hello-lp-wrapper.js-anim .bar { transform: scaleY(1); }
    #ttg-hello-lp-wrapper .section-title::after { width: 56px; }
}

/* PC版の説明文：強制改行を前提にしない幅へ調整 */
#ttg-hello-lp-wrapper .fv .fv-desc {
    max-width: 840px;
    line-height: 2.0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 吹き出しとデバイス画像を縦並びにして、吹き出しを画像の上中央へ */
#ttg-hello-lp-wrapper .fv-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

#ttg-hello-lp-wrapper .voice-bubble {
    display: block;
    width: fit-content;
    max-width: min(90%, 560px);
    margin: 0 auto;
}

#ttg-hello-lp-wrapper .fv-hero-image img {
    display: block;
    margin: 0 auto;
}

@media (min-width: 769px) {
    #ttg-hello-lp-wrapper .fv .fv-desc {
        font-size: 16px;
        letter-spacing: 0.01em;
    }
}

@media (max-width: 768px) {
    #ttg-hello-lp-wrapper .fv .fv-desc {
        max-width: 100%;
        text-align: left;
    }
    #ttg-hello-lp-wrapper .voice-bubble {
        max-width: 92%;
        font-size: 13px;
    }
}

/* h1をモーション用ステージ化 */
#ttg-hello-lp-wrapper .fv h1.fv-catch-motion {
    position: relative;
    height: 76px;
    max-width: 900px;
    margin: 0 auto 18px;
    overflow: hidden;
    line-height: 1.35;
    letter-spacing: 0.03em;
}

#ttg-hello-lp-wrapper .fv-catch-motion .fv-motion-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    will-change: transform, opacity;
}

/* 1つ目：表示後、左へスクロールして消える */
#ttg-hello-lp-wrapper .fv-motion-copy-1 {
    animation: ttgCatchCopy01 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* 2つ目：右から現れて、中央で止まり、消える */
#ttg-hello-lp-wrapper .fv-motion-copy-2 {
    color: #D7F205;
    animation: ttgCatchCopy02 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* 3つ目：センターから現れる */
#ttg-hello-lp-wrapper .fv-motion-copy-3 {
    color: #D7F205;
    text-shadow: 0 0 18px rgba(215,242,5,0.22);
    animation: ttgCatchCopy03 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* 上部の TTG-HELLO を大きくする */
#ttg-hello-lp-wrapper .fv .fv-product-name {
    transform-origin: center center;
    animation: ttgProductNamePulse 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
    will-change: transform, letter-spacing, filter;
}

@keyframes ttgCatchCopy01 {
    0%   { opacity: 0; transform: translateX(0); }
    6%   { opacity: 1; transform: translateX(0); }
    24%  { opacity: 1; transform: translateX(0); }
    35%  { opacity: 0; transform: translateX(-120%); }
    100% { opacity: 0; transform: translateX(-120%); }
}

@keyframes ttgCatchCopy02 {
    0%   { opacity: 0; transform: translateX(120%); }
    28%  { opacity: 0; transform: translateX(120%); }
    40%  { opacity: 1; transform: translateX(0); }
    58%  { opacity: 1; transform: translateX(0); }
    68%  { opacity: 0; transform: translateX(0) scale(0.96); }
    100% { opacity: 0; transform: translateX(0) scale(0.96); }
}

@keyframes ttgCatchCopy03 {
    0%   { opacity: 0; transform: scale(0.78); filter: blur(8px); }
    62%  { opacity: 0; transform: scale(0.78); filter: blur(8px); }
    74%  { opacity: 1; transform: scale(1); filter: blur(0); }
    91%  { opacity: 1; transform: scale(1); filter: blur(0); }
    100% { opacity: 0; transform: scale(1.04); filter: blur(3px); }
}

@keyframes ttgProductNamePulse {
    0%, 62% {
        transform: scale(1);
        letter-spacing: 0.08em;
        filter: drop-shadow(0 0 0 rgba(215,242,5,0));
    }
    76% {
        transform: scale(1.16);
        letter-spacing: 0.12em;
        filter: drop-shadow(0 0 18px rgba(215,242,5,0.35));
    }
    91% {
        transform: scale(1.16);
        letter-spacing: 0.12em;
        filter: drop-shadow(0 0 18px rgba(215,242,5,0.35));
    }
    100% {
        transform: scale(1);
        letter-spacing: 0.08em;
        filter: drop-shadow(0 0 0 rgba(215,242,5,0));
    }
}

/* PC版の説明文と吹き出し位置もあわせて補正 */
#ttg-hello-lp-wrapper .fv .fv-desc {
    max-width: 840px;
    line-height: 2.0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#ttg-hello-lp-wrapper .fv-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

#ttg-hello-lp-wrapper .voice-bubble {
    display: block;
    width: fit-content;
    max-width: min(90%, 560px);
    margin: 0 auto;
}

#ttg-hello-lp-wrapper .fv-hero-image img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #ttg-hello-lp-wrapper .fv h1.fv-catch-motion {
        height: 92px;
        margin-bottom: 14px;
    }
    #ttg-hello-lp-wrapper .fv-catch-motion .fv-motion-copy {
        font-size: 24px;
        white-space: normal;
        padding: 0 8px;
    }
    #ttg-hello-lp-wrapper .fv .fv-desc {
        max-width: 100%;
        text-align: left;
    }
    #ttg-hello-lp-wrapper .voice-bubble {
        max-width: 92%;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #ttg-hello-lp-wrapper .fv-motion-copy-1,
    #ttg-hello-lp-wrapper .fv-motion-copy-2,
    #ttg-hello-lp-wrapper .fv-motion-copy-3,
    #ttg-hello-lp-wrapper .fv .fv-product-name {
        animation: none !important;
    }
    #ttg-hello-lp-wrapper .fv-motion-copy-1 {
        opacity: 1;
        transform: none;
    }
    #ttg-hello-lp-wrapper .fv-motion-copy-2,
    #ttg-hello-lp-wrapper .fv-motion-copy-3 {
        display: none;
    }
}
/* ========================================
   FV 上部余白・キャッチコピー表示補正
   ======================================== */

/* ファーストビュー全体の上余白を詰める */
#ttg-hello-lp-wrapper .fv {
    padding-top: 45px;
    padding-bottom: 56px;
}

/* バッジ下の余白を詰める */
#ttg-hello-lp-wrapper .fv-badge {
    margin-bottom: 18px;
}

/* ロゴ下の余白を詰める */
#ttg-hello-lp-wrapper .fv-logo {
    margin-bottom: 18px;
}

/* TTG-HELLO文字の下余白を詰める */
#ttg-hello-lp-wrapper .fv-product-name {
    margin-bottom: 4px;
}

/* 音声ウェーブまわりを少し詰める */
#ttg-hello-lp-wrapper .fv-voicewave {
    margin: 0 auto 10px;
}

/* キャッチコピーの表示ステージ */
#ttg-hello-lp-wrapper .fv h1.fv-catch-motion {
    position: relative;
    height: 88px;
    max-width: 980px;
    margin: 0 auto 18px;
    overflow: hidden;
    line-height: 1.35;
    letter-spacing: 0.03em;
}

/* strongが全部同時に見える問題を止める */
#ttg-hello-lp-wrapper .fv-catch-motion .fv-motion-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    will-change: transform, opacity;
}

/* 1つ目：表示後、左へ流れて消える */
#ttg-hello-lp-wrapper .fv-motion-copy-1 {
    animation: ttgCatchCopy01 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* 2つ目：右から現れて、中央で止まり、消える */
#ttg-hello-lp-wrapper .fv-motion-copy-2 {
    color: #D7F205;
    animation: ttgCatchCopy02 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* 3つ目：中央から現れる */
#ttg-hello-lp-wrapper .fv-motion-copy-3 {
    color: #D7F205;
    text-shadow: 0 0 18px rgba(215,242,5,0.22);
    animation: ttgCatchCopy03 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* TTG-HELLOを最後に大きくする */
#ttg-hello-lp-wrapper .fv .fv-product-name {
    transform-origin: center center;
    animation: ttgProductNamePulse 10.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
    will-change: transform, letter-spacing, filter;
}

@keyframes ttgCatchCopy01 {
    0%   { opacity: 0; transform: translateX(0); }
    6%   { opacity: 1; transform: translateX(0); }
    24%  { opacity: 1; transform: translateX(0); }
    35%  { opacity: 0; transform: translateX(-120%); }
    100% { opacity: 0; transform: translateX(-120%); }
}

@keyframes ttgCatchCopy02 {
    0%   { opacity: 0; transform: translateX(120%); }
    28%  { opacity: 0; transform: translateX(120%); }
    40%  { opacity: 1; transform: translateX(0); }
    58%  { opacity: 1; transform: translateX(0); }
    68%  { opacity: 0; transform: translateX(0) scale(0.96); }
    100% { opacity: 0; transform: translateX(0) scale(0.96); }
}

@keyframes ttgCatchCopy03 {
    0%   { opacity: 0; transform: scale(0.78); filter: blur(8px); }
    62%  { opacity: 0; transform: scale(0.78); filter: blur(8px); }
    74%  { opacity: 1; transform: scale(1); filter: blur(0); }
    91%  { opacity: 1; transform: scale(1); filter: blur(0); }
    100% { opacity: 0; transform: scale(1.04); filter: blur(3px); }
}

@keyframes ttgProductNamePulse {
    0%, 62% {
        transform: scale(1);
        letter-spacing: 0.08em;
        filter: drop-shadow(0 0 0 rgba(215,242,5,0));
    }
    76% {
        transform: scale(1.14);
        letter-spacing: 0.11em;
        filter: drop-shadow(0 0 18px rgba(215,242,5,0.35));
    }
    91% {
        transform: scale(1.14);
        letter-spacing: 0.11em;
        filter: drop-shadow(0 0 18px rgba(215,242,5,0.35));
    }
    100% {
        transform: scale(1);
        letter-spacing: 0.08em;
        filter: drop-shadow(0 0 0 rgba(215,242,5,0));
    }
}

/* 説明文の改行も自然に */
#ttg-hello-lp-wrapper .fv .fv-desc {
    max-width: 840px;
    line-height: 2.0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 吹き出しは画像の上中央へ */
#ttg-hello-lp-wrapper .fv-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

#ttg-hello-lp-wrapper .voice-bubble {
    display: block;
    width: fit-content;
    max-width: min(90%, 560px);
    margin: 0 auto;
}

#ttg-hello-lp-wrapper .fv-hero-image img {
    display: block;
    margin: 0 auto;
}

/* スマホ版は詰めすぎない */
@media (max-width: 768px) {
    #ttg-hello-lp-wrapper .fv {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    #ttg-hello-lp-wrapper .fv h1.fv-catch-motion {
        height: 96px;
        margin-bottom: 14px;
    }

    #ttg-hello-lp-wrapper .fv-catch-motion .fv-motion-copy {
        font-size: 24px;
        white-space: normal;
        padding: 0 8px;
    }

    #ttg-hello-lp-wrapper .fv .fv-desc {
        max-width: 100%;
        text-align: left;
    }

    #ttg-hello-lp-wrapper .voice-bubble {
        max-width: 92%;
        font-size: 13px;
    }
}

/* 動きを抑える設定への配慮 */
@media (prefers-reduced-motion: reduce) {
    #ttg-hello-lp-wrapper .fv-motion-copy-1,
    #ttg-hello-lp-wrapper .fv-motion-copy-2,
    #ttg-hello-lp-wrapper .fv-motion-copy-3,
    #ttg-hello-lp-wrapper .fv .fv-product-name {
        animation: none !important;
    }

    #ttg-hello-lp-wrapper .fv-motion-copy-1 {
        opacity: 1;
        transform: none;
    }

    #ttg-hello-lp-wrapper .fv-motion-copy-2,
    #ttg-hello-lp-wrapper .fv-motion-copy-3 {
        display: none;
    }
}

/* ========================================
   FINAL OVERRIDE: FVロゴ削除・フッターロゴ追加 2026-08-01
   ======================================== */

/* ファーストビュー上部の白枠ロゴは使わない */
#ttg-hello-lp-wrapper .fv-logo {
    display: none !important;
}

/* ロゴ削除後のファーストビュー余白調整 */
#ttg-hello-lp-wrapper .fv {
    padding-top: 34px;
    padding-bottom: 52px;
}

#ttg-hello-lp-wrapper .fv-badge {
    margin-bottom: 22px;
}

#ttg-hello-lp-wrapper .fv-product-name {
    margin-top: 0;
    margin-bottom: 2px;
}

#ttg-hello-lp-wrapper .fv-voicewave {
    margin: 0 auto 8px;
}

#ttg-hello-lp-wrapper .fv h1.fv-catch-motion {
    height: 78px;
    margin: 0 auto 14px;
}

/* フッターのTTG-HELLOロゴ */
#ttg-hello-lp-wrapper .footer-logo-area {
    text-align: center;
    margin: 0 auto 14px;
}

#ttg-hello-lp-wrapper .footer-logo-area img {
    display: inline-block;
    max-width: 150px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

@media (max-width: 768px) {
    #ttg-hello-lp-wrapper .fv {
        padding-top: 30px;
        padding-bottom: 44px;
    }

    #ttg-hello-lp-wrapper .fv-badge {
        margin-bottom: 18px;
    }

    #ttg-hello-lp-wrapper .footer-logo-area img {
        max-width: 130px;
    }
}

