:root {
    --brand-dark: #182b38;
    --brand-mid: #45546c;
    --brand-gold: #fab549;
    --brand-green: #77b800;
    --brand-ivory: #faf6e4;
    --brand-white: #ffffff;
    --brand-teal: #799aa3;
}

.wp-lp * { margin: 0; padding: 0; box-sizing: border-box; }
.wp-lp {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--brand-white);
    color: #1e293b;
    line-height: 1.6;
}

/* ===== ヘッダー（ロゴのみ） ===== */
.wp-header {
    background: var(--brand-white);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    max-width: 1100px;
    margin: 0 auto;
}
.wp-header-logo {
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}
.wp-header-logo img { height: 32px; display: block; }

/* ===== ヒーロー ===== */
.wp-hero {
    background: var(--brand-ivory);
    padding: 36px 40px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.wp-hero-left { display: flex; flex-direction: column; min-width: 0; }

/* -- バッジ -- */
.wp-target-badge-wrap { margin-bottom: 12px; }
.wp-target-badge {
    display: inline-block;
    background: var(--brand-green);
    color: white;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* -- タイトル -- */
.wp-title-wrap { margin-bottom: 10px; }
.wp-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}
.wp-subtitle-wrap { margin-bottom: 20px; }
.wp-subtitle {
    font-size: 14px;
    color: var(--brand-mid);
    line-height: 1.7;
}

/* -- スライダー -- */
.wp-slider-wrap { margin-bottom: 20px; min-width: 0; overflow: hidden; }
.wp-slider-container {
    background: var(--brand-mid);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.wp-slider-track {
    display: flex;
    transition: transform 0.35s ease;
    min-width: 0;
}
.wp-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-slide img {
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.wp-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}
.wp-slider-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.wp-slider-btn:hover { background: rgba(255, 255, 255, 0.25); }
.wp-slider-dots { display: flex; gap: 6px; }
.wp-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.2s;
    cursor: pointer;
}
.wp-slider-dot.active { background: var(--brand-gold); }
.wp-slide-counter { font-size: 11px; color: rgba(255, 255, 255, 0.5); }

/* 単一スライドの場合ナビ非表示 */
.wp-slider-container.single .wp-slider-nav { display: none; }

/* -- ベネフィット -- */
.wp-benefits-wrap { margin-bottom: 0; }
.wp-benefits-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.wp-benefit-list { list-style: none; padding: 0; }
.wp-benefit-list li {
    padding: 6px 0;
    font-size: 12px;
    color: var(--brand-mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.wp-benefit-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-green);
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ===== フォーム ===== */
.wp-form-card {
    background: var(--brand-white);
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}
.wp-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-green));
    border-radius: 12px 12px 0 0;
}
.wp-form-header { text-align: center; margin-bottom: 16px; }
.wp-form-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}
.wp-form-desc { font-size: 12px; color: var(--brand-teal); }
.wp-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfccb;
    color: #365314;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px;
}
.wp-hubspot-form { margin-top: 8px; }

.wp-form-note {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 8px;
}
.wp-form-note a { color: var(--brand-teal); }

.wp-form-divider { border: none; border-top: 1px solid #e2e8f0; margin: 14px 0; }
.wp-estimate-cta { text-align: center; }
.wp-estimate-cta p {
    font-size: 12px;
    color: var(--brand-mid);
    margin-bottom: 6px;
}
.wp-estimate-link {
    display: inline-block;
    padding: 8px 18px;
    border: 1.5px solid var(--brand-green);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    transition: all 0.15s;
}
.wp-estimate-link:hover { background: var(--brand-green); color: white; }

/* ===== フッター ===== */
.wp-footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 32px;
    font-size: 12px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.wp-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin: 0 8px;
}
.wp-footer a:hover { text-decoration: underline; }

/* ===== ランディング（/whitepaper/ 直接アクセス時） ===== */
.wp-landing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px;
}
.wp-landing h1 {
    font-size: 24px;
    color: var(--brand-dark);
    margin-bottom: 24px;
}
.wp-landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wp-landing-card {
    display: block;
    background: var(--brand-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--brand-dark);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.wp-landing-card:hover {
    border-color: var(--brand-gold);
    color: var(--brand-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.wp-landing-banner {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1374 / 1145;
    object-fit: cover;
}
.wp-landing-text { padding: 16px 18px; }
.wp-landing-card h2 { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.wp-landing-card p { font-size: 12px; color: var(--brand-mid); line-height: 1.6; }

@media (max-width: 900px) {
    .wp-hero {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }
    .wp-title { font-size: 22px; }
}
