@charset "UTF-8";

/* ========================================
   LP - オーディション専用スタイル
   PC: 左固定サイドバー + 右スクロールコンテンツ
   SP: 1カラム
   白ベース × 黒 × ミントグリーン
   ======================================== */

:root {
    --lp-mint: #2DD4A8;
    --lp-mint-dark: #1fb892;
    --lp-mint-light: #e8f8f3;
    --lp-mint-pale: #f2fcf8;
    /* アクセントカラー（LP管理画面で上書き可。未設定時はミントグリーン） */
    --lp-accent: var(--lp-accent);
    --lp-accent-dark: color-mix(in srgb, var(--lp-accent) 82%, black);
    --lp-accent-light: color-mix(in srgb, var(--lp-accent) 12%, white);
    --lp-accent-pale: color-mix(in srgb, var(--lp-accent) 6%, white);
    --lp-black: #1a1a1a;
    --lp-dark: #333333;
    --lp-gray: #666666;
    --lp-gray-light: #999999;
    --lp-border: #e0e0e0;
    --lp-white: #ffffff;
    --lp-bg: #fafafa;
    --lp-font-en: 'Lato', sans-serif;
    --lp-font-ja: 'Noto Sans JP', sans-serif;
    --lp-line-green: #06C755;
    --lp-main-width: 420px;
}

/* リセット */
.lp-page {
    margin: 0;
    padding: 0;
    background: var(--lp-white);
    color: var(--lp-black);
    font-family: var(--lp-font-ja);
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

.lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }

.lp-page a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.lp-page a:focus, .lp-page button:focus { outline: none; }

.lp-page img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

/* ========================================
   PC全画面動画背景（通常LP用）
   ======================================== */
.lp-body-bg-video {
    display: none; /* SPでは非表示 */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-body-bg-video video {
    position: absolute;
    width: var(--lp-video-size, 100%);
    min-width: 61%;
    height: auto;
    left: var(--lp-video-x, 50%);
    top: var(--lp-video-y, 50%);
    transform: translate(calc(-1 * var(--lp-video-x, 50%)), calc(-1 * var(--lp-video-y, 50%))) scale(1.02);
}

.lp-body-bg-video::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ========================================
   PC: 2カラムレイアウト
   ======================================== */

/* ラッパー */
.lp-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 左固定サイドバー */
.lp-sidebar {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-sidebar-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--lp-white);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 420px;
}

.lp-sidebar-logo {
    display: block;
    width: 100%;
    height: auto;
}

.lp-sidebar-subtitle {
    font-family: var(--lp-font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
}

.lp-sidebar-title {
    font-family: var(--lp-font-en);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0;
}

.lp-sidebar-period {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 28px;
    border: 1px solid var(--lp-period-border, rgba(255, 255, 255, 0.35));
    color: var(--lp-period-color, inherit);
}

.lp-sidebar-period-label {
    font-family: var(--lp-font-en);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    opacity: 0.7;
}

.lp-sidebar-period-date {
    font-family: var(--lp-font-en);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* サイドバーLINEボタン */
.lp-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    padding: 14px 36px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.lp-sidebar-btn--line {
    background: var(--lp-line-green);
    color: var(--lp-white);
}

.lp-sidebar-btn--line:hover {
    background: #05b64c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
}

.lp-sidebar-btn--disabled {
    background: #999;
    color: var(--lp-white);
    cursor: default;
    opacity: 0.7;
}

/* 右メインコンテンツ（固定幅420px、右寄せ） */
.lp-main {
    width: 420px;
    margin-left: auto;
    min-height: 100vh;
    background: var(--lp-white);
}

/* 右カラム内ヒーロー（PC・SP共通表示） */
.lp-hero-sp {
    position: relative;
    width: 100%;
    height: 80vh;       /* 通常LP: 80vh */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--lp-black);
}

/* ティザーは100vh */
.lp-teaser .lp-hero-sp {
    height: 100vh;
    min-height: 500px;
}

.lp-hero-sp-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 通常LP: 背景画像を横幅にフィット（縦はアスペクト比に従い、はみ出す場合はクリップ） */
.lp-audition:not(.lp-teaser) .lp-hero-sp-bg {
    background-size: 100% auto;
    background-position: center;
}

.lp-hero-sp-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* 通常LP: 動画を横幅にフィット（縦はアスペクト比に従い、はみ出す場合はクリップ） */
.lp-audition:not(.lp-teaser) .lp-hero-sp-video {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: auto;
    max-height: 90vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
}

.lp-hero-sp-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.lp-hero-sp-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--lp-white);
    padding: 0 24px;
}

.lp-hero-sp--top {
    align-items: flex-start;
}
.lp-hero-sp--top .lp-hero-sp-content {
    padding-top: 60px;
}

.lp-hero-sp--bottom {
    align-items: flex-end;
}
.lp-hero-sp--bottom .lp-hero-sp-content {
    display: flex;
    padding-top: 6vw;
    padding-bottom: 9vw;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.lp-hero-sp-logo {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
}

.lp-hero-sp-subtitle {
    font-family: var(--lp-font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 12px;
}

.lp-hero-sp-title {
    font-family: var(--lp-font-en);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 20px;
}

.lp-hero-sp-period {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: min(3vw, 12px) min(4.5vw, 24px);
    border: 1px solid var(--lp-period-border, rgba(255, 255, 255, 0.35));
    color: var(--lp-period-color, inherit);
    margin-top: 16px;
}

.lp-hero-sp-period-label {
    font-family: var(--lp-font-en);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    opacity: 0.7;
}

.lp-hero-sp-period-date {
    font-family: var(--lp-font-en);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* コンテナ（.lp-main内なので最大幅はlp-main自体で制御） */
.lp-container {
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   ティザーモード（PCサイドバー非表示・1カラム中央）
   ======================================== */
.lp-teaser .lp-sidebar {
    display: none;
}

.lp-teaser .lp-wrapper {
    max-width: var(--lp-main-width);
}

.lp-teaser .lp-main {
    width: 100%;
    margin: 0 auto;
}

/* ティザー: FVのみ表示、他セクション・フッター非表示 */
.lp-teaser .lp-section,
.lp-teaser .lp-footer {
    display: none;
}

.lp-teaser .lp-hero-sp {
    display: flex;
}

.lp-teaser .lp-fixed-cta {
    display: none !important;
}

/* ========================================
   セクション共通
   ======================================== */
.lp-section {
    padding: 72px 0;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.lp-section-label {
    display: block;
    font-family: var(--lp-font-en);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--lp-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: min(6vw, 25px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--lp-black);
    margin: 0;
}

/* ========================================
   コンセプト
   ======================================== */
.lp-concept {
    background: var(--lp-white);
    text-align: center;
}

.lp-concept-heading {
    font-size: clamp(16px, 7vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin: 0 0 28px;
    color: var(--lp-black);
}

/* コンセプト見出し: サイズ中 */
.lp-concept-heading.lp-concept-heading--md {
    font-size: clamp(15px, 6vw, 1.5rem);
}

/* コンセプト見出し: サイズ小 */
.lp-concept-heading.lp-concept-heading--sm {
    font-size: clamp(14px, 5vw, 1.25rem);
}

.lp-concept-text {
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--lp-dark);
    margin: 0 auto;
}

/* ========================================
   応募資格
   ======================================== */
.lp-requirements {
    background: var(--lp-bg);
}

.lp-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-requirements-list li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.9rem;
    line-height: 1.8;
}

.lp-requirements-list li:last-child { border-bottom: none; }

.lp-requirements-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    /* padding-top(12px) + 行の中央(line-height:1.8 → 0.9em) - ドット半径(4px) */
    top: calc(12px + 0.9em - 4px);
    width: 8px;
    height: 8px;
    background: var(--lp-accent);
    border-radius: 50%;
}

.lp-requirements-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--lp-white);
    border-left: 3px solid var(--lp-accent);
    font-size: 0.8rem;
    color: var(--lp-gray);
    line-height: 2;
}

/* ========================================
   スケジュール（タイムライン）
   ======================================== */
.lp-schedule {
    background: var(--lp-white);
}

.lp-timeline {
    position: relative;
    padding-left: 48px;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--lp-accent), var(--lp-border));
}

.lp-timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.lp-timeline-item:last-child { padding-bottom: 0; }

.lp-timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--lp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-timeline-number {
    font-family: var(--lp-font-en);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-timeline-content { padding-top: 4px; }

.lp-timeline-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-black);
    margin: 0 0 4px;
}

.lp-timeline-desc {
    font-size: 0.88rem;
    color: var(--lp-dark);
    margin: 0 0 4px;
}

.lp-timeline-date {
    font-family: var(--lp-font-en);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-accent-dark);
    margin: 4px 0;
}

.lp-timeline-note {
    font-size: 0.78rem;
    color: var(--lp-gray-light);
    margin: 4px 0 0;
}

.lp-timeline-status {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e53e3e;
    margin: 6px 0 0;
}

/* 注記リスト（空行区切りで項目分割。項目内改行はそのまま反映） */
.lp-schedule-note {
    font-size: 0.8rem;
    color: var(--lp-gray);
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.lp-schedule-note li {
    position: relative;
    padding-left: 1.2em;
    margin: 0 0 6px;
}

.lp-schedule-note li:last-child {
    margin-bottom: 0;
}

/* 各項目の先頭に※を自動付与（2行目以降はぶら下げインデント） */
.lp-schedule-note li::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
}

/* ========================================
   プロデューサー
   ======================================== */
.lp-producer {
    background: var(--lp-bg);
}

.lp-producer-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.lp-producer-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lp-producer-image {
    width: 200px;
    overflow: hidden;
}

.lp-producer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-producer-info {
    text-align: center;
}

.lp-producer-title {
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--lp-accent);
    text-transform: uppercase;
    margin: 0 0 6px;
}

/* 英字名（控えめ・添え書き） */
.lp-producer-name {
    font-family: var(--lp-font-en);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 0 0 4px;
    color: var(--lp-gray);
}

/* 日本語名（メインの見出し） */
.lp-producer-name-ja {
    font-size: min(7.5vw, 26px);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 14px;
    color: var(--lp-black);
}

.lp-producer-sns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.lp-producer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--lp-border);
    border-radius: 50%;
    color: var(--lp-dark);
    transition: all 0.3s ease;
}

.lp-producer-sns a:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
}

.lp-producer-bio {
    padding: 0 10px;
    font-size: 0.85rem;
    line-height: 2;
    color: var(--lp-dark);
    text-align: left;
}

/* ========================================
   メッセージ
   ======================================== */
.lp-message {
    background: var(--lp-white);
    position: relative;
}

/* セクション上部に吹き出しの△（上向き）を配置し、直上セクションとの繋がりを表現 */
.lp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 22px solid var(--lp-white);
}

.lp-message-body {
    text-align: center;
}

.lp-message-quote {
    font-size: 0.85rem;
    line-height: 2.2;
    color: var(--lp-dark);
    margin: 0;
    padding: 50px 24px 32px 24px;
    position: relative;
    background: var(--lp-accent-pale);
    border-radius: 4px;
    text-align: left;
}

.lp-message-quote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--lp-accent);
    opacity: 0.4;
    line-height: 1;
}


/* ========================================
   CTA
   ======================================== */
.lp-cta {
    position: relative;
    padding: 80px 0;
    background-color: var(--lp-black);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--lp-white);
}

.lp-cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
}

.lp-cta-heading {
    font-family: var(--lp-font-en);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0 0 10px;
}

.lp-cta-sub {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0 0 32px;
}

.lp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.lp-btn--line {
    background: var(--lp-line-green);
    color: var(--lp-white);
}

.lp-btn--line:hover {
    background: #05b64c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
}

/* CTAセクション内の白枠オプション（管理画面ON時） */
.lp-btn.lp-btn--bordered {
    border: 2px solid var(--lp-white);
}

.lp-btn--disabled {
    background: #999;
    color: var(--lp-white);
    cursor: default;
    opacity: 0.7;
}

.lp-btn--primary {
    background: var(--lp-accent);
    color: var(--lp-white);
}

.lp-btn--primary:hover {
    background: var(--lp-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 212, 168, 0.35);
}

.lp-cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.8;
}

/* サイドバー・追従CTAバー内の補足文 */
.lp-cta-note-small {
    margin: 6px 0 0;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    opacity: 0.7;
    color: inherit;
}

/* PCサイドバー内の補足文は、募集期間と同じ色（管理画面の文字色）を使用 */
.lp-sidebar-content .lp-cta-note-small {
    color: var(--lp-period-color, inherit);
}

/* ========================================
   フッター
   ======================================== */
.lp-footer {
    padding: 36px 0;
    text-align: center;
    background: var(--lp-black);
    color: rgba(255, 255, 255, 0.5);
}

.lp-footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--lp-font-en);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--lp-white);
}

.lp-footer-logo img {
    max-width: 100px;
    height: auto;
    display: block;
    transition: filter 0.2s ease;
}

/* フッター背景が暗い場合にロゴを反転（白） */
.lp-footer-logo--invert img {
    filter: brightness(0) invert(1);
}

/* 明るい背景用のフッター配色（ロゴ色・テキスト色を黒系に） */
.lp-footer.lp-footer--light {
    color: rgba(26, 26, 26, 0.6);
}

.lp-footer.lp-footer--light .lp-footer-logo {
    color: var(--lp-black);
}

/* 運営表記（フッターロゴの上） */
.lp-footer-credit {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin: 0 0 18px;
}

.lp-footer-copy {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ========================================
   固定CTAバー（スマホ用）
   ======================================== */
.lp-fixed-cta {
    display: none;
}

.lp-fixed-cta .lp-fixed-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--lp-line-green);
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    border: none;
    cursor: pointer;
}

.lp-fixed-cta .lp-fixed-cta-btn--disabled {
    background: #999;
    cursor: default;
    opacity: 0.7;
}

/* ========================================
   アニメーション
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* スマホ専用改行 */
.sp-br { display: none; }

/* ========================================
   レスポンシブ: タブレット（960px以下）
   ======================================== */
@media (max-width: 960px) {
    .lp-main {
        width: 380px;
    }
}

/* ========================================
   レスポンシブ: PC（769px以上）
   ======================================== */
@media (min-width: 769px) {
    /* 動画背景を表示 */
    .lp-body-bg-video { display: block; }

    /* 通常LP（サイドバーあり）のSPヒーローをPC非表示 */
    .lp-audition:not(.lp-teaser) .lp-hero-sp { display: none; }
}

/* ========================================
   レスポンシブ: スマホ（1カラム）
   ======================================== */
@media (max-width: 768px) {
    .sp-br { display: inline; }

    /* サイドバー・body背景非表示 */
    .lp-sidebar { display: none; }
    .lp-body-bg { display: none; }

    /* ラッパー・メインを全幅に */
    .lp-wrapper {
        max-width: none !important;
    }
    .lp-main {
        width: 100%;
    }

    /* SP用ヒーロー上書き */
    .lp-hero-sp {
        height: 80svh;  /* 通常LP */
    }
    .lp-teaser .lp-hero-sp {
        height: 100svh; /* ティザー */
    }

    /* セクション */
    .lp-section { padding: 56px 0; }
    .lp-section-header { margin-bottom: 32px; }
    .lp-container { padding: 0 20px; }

    /* CTA */
    .lp-cta { padding: 56px 0 100px; }

    .lp-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* 固定CTAバー */
    .lp-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    /* タイムライン */
    .lp-timeline { padding-left: 40px; }
    .lp-timeline::before { left: 16px; }
    .lp-timeline-marker {
        left: -40px;
        width: 32px;
        height: 32px;
    }
    .lp-timeline-number { font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .lp-container { padding: 0 16px; }
}
