/* ============================================================
  【BMP】人生ゴール診断個別セッションLP専用 CSS
  ファイル名：bmp-goal-lp.css
  スラッグ：goal-implementation-single
  読み込み条件：is_page('goal-implementation-single')
============================================================ */

.bmp-lp-wrapper {
    all: initial;

    --lp-primary: #00D2FF;
    --lp-primary-dark: #008CB4;
    --lp-primary-light: rgba(0, 210, 255, 0.1);
    --lp-accent: #00D2FF;
    --lp-bg: #0A0E14;
    --lp-bg-alt: #111827;
    --lp-text: #FFFFFF;
    --lp-text-muted: #94A3B8;
    --lp-border: rgba(255, 255, 255, 0.1);
    --lp-card-bg: rgba(255, 255, 255, 0.03);
    --lp-radius: 20px;

    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -140px !important;
    margin-bottom: -100px !important;
    padding-top: 80px !important;
    padding-bottom: 100px !important;
    z-index: 9999 !important;
    position: relative;

    background-color: var(--lp-bg);
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lp-text);
    line-height: 1.8 !important;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}

/* 固定背景やフッターの隙間を埋める */
body, #main, #container { background-color: #0A0E14 !important; }

.bmp-lp-wrapper *,
.bmp-lp-wrapper *::before,
.bmp-lp-wrapper *::after {
    box-sizing: border-box;
    font-family: inherit;
}

/* Cocoonの見出し装飾を一括リセット */
.bmp-lp-wrapper h1,
.bmp-lp-wrapper h2,
.bmp-lp-wrapper h3 {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}
.bmp-lp-wrapper h1::before, .bmp-lp-wrapper h1::after,
.bmp-lp-wrapper h2::before, .bmp-lp-wrapper h2::after,
.bmp-lp-wrapper h3::before, .bmp-lp-wrapper h3::after {
    content: none !important;
    display: none !important;
    border: none !important;
}

.lp-container { max-width: 1020px; margin: 0 auto; padding: 0 30px; }
.lp-phrase { display: inline-block; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.lp-em { color: var(--lp-primary); font-style: normal; font-weight: 900; }

/* ---------- HERO ---------- */
.lp-hero {
    background: radial-gradient(circle at 50% 30%, rgba(0, 210, 255, 0.15) 0%, var(--lp-bg) 70%);
    padding: 100px 0 100px;
    text-align: center;
}
.lp-hero-badge {
    display: inline-block;
    background: var(--lp-primary-light);
    border: 1px solid var(--lp-primary);
    color: var(--lp-primary);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}
.bmp-lp-wrapper .lp-hero h1 {
    font-size: 3.8rem !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
    margin-bottom: 40px !important;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.2));
}
.lp-hero-sub {
    font-size: 1.4rem;
    color: var(--lp-text-muted);
    max-width: 750px;
    margin: 0 auto 60px !important;
    font-weight: 700;
}

/* ---------- BUTTONS ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 60px;
    background: var(--lp-primary);
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 950;
    font-size: 1.6rem;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
}
.lp-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 210, 255, 0.6); }

/* ---------- EMPATHY ---------- */
.lp-empathy { background: var(--lp-bg-alt); }
.bmp-lp-wrapper .lp-sec-title {
    font-size: 2.6rem !important;
    font-weight: 950 !important;
    margin-bottom: 60px !important;
    line-height: 1.3 !important;
}
.lp-check-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 60px 50px;
    margin-bottom: 50px;
}
.lp-check-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.lp-check-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px !important;
    font-size: 1.3rem;
    font-weight: 700;
}
.lp-check-list li:last-child { margin-bottom: 0 !important; }
.lp-check-list li svg {
    color: var(--lp-primary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 6px;
}
.lp-empathy-punch { font-size: 1.4rem; font-weight: 950; margin-bottom: 20px !important; }
.lp-empathy-sub { font-size: 1.2rem; color: var(--lp-text-muted); }

/* ---------- MESSAGE BOX ---------- */
.lp-msg-box {
    background: linear-gradient(135deg, var(--lp-primary-light), transparent);
    border-left: 6px solid var(--lp-primary);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 40px 0 0;
}

/* ---------- ROLE ---------- */
.lp-role-lead { font-size: 1.25rem; font-weight: 700; }
.lp-role-bridge {
    margin: 40px 0 !important;
    font-size: 1.4rem;
    font-weight: 950;
    color: var(--lp-primary);
}
.lp-role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 60px; }
.lp-role-item {
    background: var(--lp-card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-role-close { margin-top: 60px !important; font-weight: 700; }

/* ---------- BENEFITS ---------- */
.lp-benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-benefit-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    padding: 40px;
    border-radius: var(--lp-radius);
    text-align: left;
    transition: all 0.3s ease;
}
.lp-benefit-card:hover { border-color: var(--lp-primary); background: rgba(0, 210, 255, 0.05); }
.lp-benefit-num { color: var(--lp-primary); font-weight: 950; font-size: 1.2rem; margin-bottom: 10px; display: block; opacity: 0.5; }
.lp-benefit-body { font-size: 1.3rem; font-weight: 800; line-height: 1.4 !important; }

/* ---------- TARGETS ---------- */
.lp-target-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.lp-target-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
}
.lp-target-box.suitable { border-top: 4px solid var(--lp-primary); background: rgba(0, 210, 255, 0.05); }
.lp-target-box:not(.suitable) { border-top: 4px solid #ef4444; }
.bmp-lp-wrapper .lp-target-box h3 {
    font-size: 1.5rem !important;
    font-weight: 950 !important;
    margin-bottom: 30px !important;
    color: #fff !important;
}
.bmp-lp-wrapper .lp-target-box.suitable h3 { color: var(--lp-primary) !important; }
.bmp-lp-wrapper .lp-target-box:not(.suitable) h3 { color: #ef4444 !important; }
.lp-target-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.lp-target-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px !important;
    font-size: 1.08rem;
    color: #fff;
    line-height: 1.55 !important;
    text-wrap: pretty;
}
.lp-target-list li svg {
    color: var(--lp-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}
.lp-target-list.not li svg { color: #ef4444; }

/* ---------- PROFILE ---------- */
.lp-profile-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: #000;
    padding: 80px 50px;
    border-radius: 40px;
    border: 1px solid var(--lp-border);
}
.lp-profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--lp-primary);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}
.lp-profile-label {
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: 0.2em;
    margin-bottom: 10px !important;
}
.bmp-lp-wrapper .lp-profile-body h3 {
    font-size: 2rem !important;
    font-weight: 950 !important;
    margin-bottom: 25px !important;
    color: var(--lp-primary) !important;
}
.lp-profile-text { font-size: 1.15rem; color: var(--lp-text-muted); font-weight: 500; }
.lp-profile-text p { margin-bottom: 20px !important; }
.lp-profile-text p:last-child { margin-bottom: 0 !important; }

/* ---------- FLOW ---------- */
.lp-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.lp-flow-card { text-align: center; position: relative; }
.lp-flow-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -28px;
    top: 25px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lp-primary);
    opacity: 0.5;
}
.lp-flow-num {
    width: 50px;
    height: 50px;
    background: var(--lp-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}
.lp-flow-name { font-weight: 900; font-size: 1.2rem; margin-bottom: 10px; display: block; }
.lp-flow-desc { font-size: 0.95rem; color: var(--lp-text-muted); line-height: 1.6 !important; }

/* ---------- PRICE ---------- */
.lp-price-card {
    background: linear-gradient(135deg, #1f2937, #111827);
    max-width: 600px;
    margin: 60px auto 0;
    padding: 80px 40px;
    border-radius: 40px;
    border: 2px solid var(--lp-primary);
    text-align: center;
}
.lp-price-label { font-size: 1.3rem; font-weight: 800; color: var(--lp-primary); margin-bottom: 15px; display: block; }
.lp-price-monitor {
    font-size: 1rem;
    font-weight: 950;
    color: #111827;
    background: var(--lp-primary);
    margin: 0 auto 10px;
    padding: 4px 14px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}
.lp-price-val { font-size: 4rem; font-weight: 950; line-height: 1; margin: 20px 0 !important; }
.lp-price-val span { font-size: 1.5rem; }
.lp-price-strong { font-weight: 800; font-size: 1.1rem; color: #fff; }
.lp-price-note { color: var(--lp-text-muted); font-size: 1rem; margin-top: 30px !important; line-height: 1.9 !important; }

/* ---------- FAQ ---------- */
.lp-faq-wrap { max-width: 800px; margin: 0 auto; }
.lp-faq-item {
    margin-bottom: 30px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
}
.lp-faq-q {
    padding: 25px 30px;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
}
.lp-faq-q::after {
    content: '▼';
    font-size: 0.9rem;
    color: var(--lp-primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.lp-faq-a {
    padding: 0 30px 25px;
    color: var(--lp-text-muted);
    display: none;
    font-size: 1.1rem;
    line-height: 1.7;
}
.lp-faq-item.active .lp-faq-q::after { transform: rotate(180deg); }
.lp-faq-item.active .lp-faq-a {
    display: block;
    border-top: 1px solid var(--lp-border);
    padding-top: 25px;
}

/* ---------- FORM ---------- */
.lp-form-section { background: var(--lp-bg-alt); padding: 150px 0; }
.lp-form-head { margin-bottom: 60px; }
.lp-form-lead {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-text-muted);
    line-height: 1.7 !important;
}
.lp-form-card {
    background: #000;
    padding: 80px 60px;
    border-radius: 40px;
    border: 1px solid var(--lp-border);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.lp-form-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(45deg, var(--lp-primary), transparent, var(--lp-primary));
    z-index: -1;
    opacity: 0.3;
}
.lp-form-title {
    font-size: 2rem;
    font-weight: 950;
    margin-bottom: 25px;
    color: var(--lp-primary);
}
.lp-form-note {
    color: var(--lp-text-muted);
    font-weight: 700;
    margin-bottom: 50px !important;
    line-height: 1.9 !important;
}

/* CF7 RESET & CUSTOM */
.cf7-custom-wrapper .field-wrap { margin-bottom: 30px; }
.cf7-custom-wrapper label { display: block; font-weight: 900; font-size: 1.1rem; margin-bottom: 12px; color: #fff; }
.cf7-custom-wrapper .required {
    background: var(--lp-primary);
    color: #000;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}
.cf7-custom-wrapper input[type="text"],
.cf7-custom-wrapper input[type="email"],
.cf7-custom-wrapper textarea {
    width: 100% !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--lp-border) !important;
    padding: 18px !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    transition: all 0.3s;
}
.cf7-custom-wrapper input:focus,
.cf7-custom-wrapper textarea:focus {
    border-color: var(--lp-primary) !important;
    outline: none;
    background: rgba(255,255,255,0.08) !important;
}
.cf7-custom-wrapper .acceptance-wrap { margin: 40px 0; text-align: center; }
.cf7-custom-wrapper .acceptance-wrap label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    cursor: pointer;
}
.cf7-custom-wrapper input[type="checkbox"] { width: 22px; height: 22px; cursor: pointer; }

.wpcf7-submit {
    width: 100% !important;
    background: var(--lp-primary) !important;
    color: #000 !important;
    font-weight: 950 !important;
    font-size: 1.6rem !important;
    padding: 25px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.4) !important;
}
.wpcf7-submit:hover:not(:disabled) { transform: translateY(-4px); box-shadow: 0 15px 50px rgba(0, 210, 255, 0.6); }
.wpcf7-submit:disabled {
    background: #374151 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    opacity: 0.5;
}

/* ---------- 無料メルマガ ---------- */
.lp-newsletter-section { background: linear-gradient(180deg, var(--lp-bg) 0%, #101826 100%); }
.lp-newsletter-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 60px 50px;
    max-width: 700px;
    margin: 0 auto;
}
.lp-newsletter-card p { font-size: 1.2rem; line-height: 1.9 !important; }
.lp-newsletter-bonus {
    font-weight: 900;
    color: var(--lp-primary);
    font-size: 1.1rem !important;
    margin: 25px 0 30px !important;
}
.lp-newsletter-embed iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
}

/* ---------- FOOTER ---------- */
.lp-footer {
    background: transparent;
    padding: 60px 0 20px;
    border-top: 1px solid var(--lp-border);
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}
.lp-footer a { color: inherit; text-decoration: none; margin: 0 10px; }
.lp-footer a:hover { color: var(--lp-primary); }
.lp-footer-brand { margin-top: 20px !important; color: #fff; font-weight: 900; font-size: 1.2rem; }
.lp-footer-copy { margin-top: 10px !important; opacity: 0.5; }

/* ---------- MOBILE OPTIMIZATION ---------- */
@media (max-width: 768px) {
    .bmp-lp-wrapper { font-size: 16px; }
    .bmp-lp-wrapper .lp-hero h1 { font-size: 2.4rem !important; }
    .lp-hero-sub { font-size: 1.1rem; }
    .bmp-lp-wrapper .lp-sec-title { font-size: 1.8rem !important; }
    .lp-role-grid, .lp-benefit-grid, .lp-target-wrap, .lp-flow-grid { grid-template-columns: 1fr; }
    .lp-check-card { padding: 40px 25px; }
    .lp-flow-card:not(:last-child)::after {
        content: '↓';
        right: auto;
        left: calc(50% - 10px);
        top: auto;
        bottom: -32px;
        transform: none;
    }
    .lp-flow-grid { gap: 50px; }
    .lp-profile-wrap { flex-direction: column; align-items: center; text-align: center; padding: 50px 30px; }
    .lp-profile-img { width: 200px; height: 200px; }
    .lp-price-val { font-size: 3rem; }
    .lp-price-card { padding: 60px 25px; }
    .lp-form-card { padding: 40px 20px; }
    .lp-newsletter-card { padding: 40px 25px; }
    .lp-btn { padding: 20px 40px; font-size: 1.3rem; }
    .lp-faq-q { padding: 20px; font-size: 1.05rem; }
    .lp-faq-a { padding: 0 20px 20px; }
    .lp-faq-item.active .lp-faq-a { padding-top: 20px; }
}
