/* =============================================
   lp-style.css
   トップページ（index.html）専用スタイル
   style.css とは独立したファイルです。
   ============================================= */

/* ---- カスタムプロパティ ---- */
:root {
    --lp-purple:       #667eea;
    --lp-violet:       #764ba2;
    --lp-orange:       #ff8800;
    --lp-orange-light: #ffb347;
    --lp-bg:           #ffffff;
    --lp-text-dark:    #1a1a2e;
    --lp-text-mid:     #4a4a6a;
}

/* =============================================
   ヒーローセクション全体
   ============================================= */
.lp-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.lp-hero::before,
.lp-hero::after {
    display: none;
}

/* 背景装飾：薄い輪郭円 */
.lp-deco-circle,
.lp-deco-circle-1,
.lp-deco-circle-2 {
    display: none;
}

/* パーティクル用キャンバス */
.lp-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* =============================================
   ヒーロー内：中央１カラム
   ============================================= */
.lp-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    width: 100%;
    gap: 32px;
}

/* ---- テキストエリア ---- */
.lp-hero-text {
    max-width: 100%;
}

/* バッジ */
.lp-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--lp-orange), var(--lp-orange-light));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* メインキャッチコピー */
.lp-headline {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.4;
    color: var(--lp-text-dark);
    margin: 0;
}

/* キャッチコピー内のグラデーション文字 */
.lp-headline .accent {
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

/* サブヘッドライン */
.lp-subheadline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--lp-text-mid);
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* ---- ボタン ---- */
.lp-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

/* メインボタン（オレンジ） */
.lp-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-orange) 0%, #e07000 100%);
    color: #fff !important;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(255, 136, 0, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-sizing: border-box;
}
.lp-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 32px rgba(255, 136, 0, 0.48);
}
.lp-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.3);
}

/* サブボタン（テキスト系） */
.lp-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--lp-text-mid);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(102, 126, 234, 0.4);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
}
.lp-btn-secondary:hover {
    border-color: var(--lp-purple);
    background: rgba(102, 126, 234, 0.06);
    color: var(--lp-purple);
}

/* 注記テキスト */
.lp-note {
    font-size: 0.82rem;
    color: #aaa;
    margin: 0;
    line-height: 1.9;
}

/* =============================================
   サブリンク群（チップ型）
   ============================================= */
.lp-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 720px;
    width: 100%;
    margin: 0;
    justify-content: center;
}

.lp-link-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.07), rgba(118, 75, 162, 0.07));
    border: 1.5px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--lp-text-mid);
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
    transition: all 0.22s ease;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
    box-sizing: border-box;
    min-height: 80px;
}
.lp-link-chip:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-color: var(--lp-purple);
    color: #4a3aaa;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.chip-note {
    font-size: 0.90rem;
    color: var(--lp-purple);
    font-weight: 600;
    letter-spacing: 0.04em;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding-top: 6px;
    width: 100%;
    text-align: center;
}


/* =============================================
   レスポンシブ：タブレット（1023px以下）
   ============================================= */
@media screen and (max-width: 1023px) {
    .lp-hero-inner {
        gap: 24px;
    }
}

/* =============================================
   レスポンシブ：スマートフォン（767px以下）
   ============================================= */
@media screen and (max-width: 767px) {
    .lp-hero-inner {
        align-items: center;
    }
    .lp-links {
        flex-direction: column;
        align-items: center;
    }
    .lp-link-chip {
        width: 70%;
        min-height: auto;
    }
    .lp-btn-primary {
        width: 70%;
        text-align: center;
    }
}

/* =============================================
   レスポンシブ：小型スマートフォン（480px以下）
   ============================================= */
@media screen and (max-width: 480px) {
    .lp-hero {
        padding: 32px 16px;
    }

    .lp-headline {
        font-size: 1.75rem;
    }

    .lp-btn-primary {
        width: 70%;
        text-align: center;
    }

    .lp-btn-secondary {
        width: 70%;
        text-align: center;
    }

    .lp-links {
        flex-direction: column;
        align-items: center;
    }
    .lp-link-chip {
        width: 70%;
        justify-content: center;
        min-height: auto;
    }
}