@charset "utf-8";
/* ======================================================
   LP追加用CSS — lp_custom.css
   ====================================================== */

/* ===== ローディング画面 ===== */
/* スクロール禁止 */
body.eld-no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
}

#eld-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

#eld-loading.eld-fadeout {
    opacity: 0;
    pointer-events: none;
}

/* --- 背景画像 --- */
.eld-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.eld-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 暗めオーバーレイ --- */
.eld-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(10, 10, 26, 0.5) 0%, rgba(10, 10, 26, 0.85) 100%);
}

/* --- コンテンツ --- */
.eld-loading-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 360px;
}

/* --- サブテキスト（上） --- */
.eld-loading-sub {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.35em;
    margin-bottom: 16px;
    opacity: 0;
    animation: eld-fade-in 0.8s ease forwards 0.2s;
}

/* --- ロゴ --- */
.eld-logo {
    opacity: 0;
    transform: scale(0.92);
    animation: eld-logo-show 1s ease forwards 0.5s;
    margin-bottom: 32px;
}

.eld-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(200, 168, 78, 0.35));
}

@keyframes eld-logo-show {
    to { opacity: 1; transform: scale(1); }
}

@keyframes eld-fade-in {
    to { opacity: 0.9; }
}

/* --- ローディングメーター --- */
.eld-meter-wrap {
    opacity: 0;
    animation: eld-fade-in 0.6s ease forwards 1s;
}

.eld-meter-track {
    width: 220px;
    height: 30px;
    margin: 0 auto;
    background: rgb(0, 0, 0);
    overflow: hidden;
    border: 5px solid rgb(14, 14, 14);
    border-radius: 3px;
}

.eld-meter-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #e2c000, #c7aa08, #e0dd16);
    animation: eld-meter-fill 1.8s ease-in-out forwards 1.2s;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

@keyframes eld-meter-fill {
    0%   { width: 0%; }
    20%  { width: 25%; }
    50%  { width: 55%; }
    75%  { width: 80%; }
    100% { width: 100%; }
}

.eld-meter-text {
    color: rgba(255, 238, 0, 0.85);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 12px;
    text-shadow: 0 0 8px rgba(200, 168, 78, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: eld-text-pulse 1.2s ease-in-out infinite 1s;
}

@keyframes eld-text-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* --- レスポンシブ --- */
@media (max-width: 600px) {
    .eld-loading-inner {
        width: 280px;
    }
    .eld-logo img {
        max-width: 240px;
    }
    .eld-loading-sub {
        font-size: 18px;
        letter-spacing: 0.3em;
    }
    .eld-meter-track {
        width: 180px;
    }
    .eld-meter-text {
        font-size: 13px;
    }
}

/* ===== ページ本体の初期状態 ===== */
#page-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

#page-content.show {
    opacity: 1;
}


/* ===== 実績スライドショー ===== */
.results-slider-section {
    overflow: hidden;
    padding: 20px 0;
    background: #000;
    position: relative;
    z-index: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.results-slider-section:active {
    cursor: grabbing;
}

.results-slider-track {
    display: flex;
    gap: 15px;
    width: fit-content;
    will-change: transform;
}

.results-slider-track.dragging {
    animation-play-state: paused !important;
}

.results-slide {
    height: 320px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .results-slide {
        height: 220px;
    }

    .results-slider-section {
        padding: 15px 0;
    }
}


/* ===== FV 2カラムレイアウト ===== */
.fv-wrap {
    display: flex;
    min-height: 100vh;
    position: relative;
    background-color: #000;
    background-image: url(../../../images/eld_main/base/eldorado_bg3PC.png);
	background-size: cover;
}
.fv-wrap:before {
	background-image: url(../../../images/eld_main/base/eldorado_bg3PC.png);
	background-image: no-repeat;
	background-position: top center;
	background-size: cover;
	content: "";
}

/* 左カラム：画像エリア */
.fv-left {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0 40px 0;
}

.fv-img-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.fv-img {
    display: block;
    height: auto;
    opacity: 0;
}

/* ① 左べた付け・サイズ半分 — 左からスッと伸びてくる */
.fv-img1 {
    max-width: 55%;
    margin-top: -20%;
    /* ↑ サイズ調整: この%を変更 */
    transform: translateX(-60px) scaleX(0.7);
    animation: fvSlideIn 0.6s 0.2s ease forwards;
    /* ↑ 0.6s=アニメ時間  0.2s=開始遅延 */
}

/* ② ロゴ 中央寄せ — 奥から拡大フェードイン */
.fv-img2 {
    max-width: 90%;
    /* ↑ サイズ調整: この%を変更 */
    align-self: center;
    margin-top: -10%;
    transform: scale(0.3);
    animation: fvZoomIn 0.6s 0.8s ease forwards;
    /* ↑ 0.6s=アニメ時間  0.8s=開始遅延 */
}

/* ③ 巻物テキスト ロゴに被せる — 奥から出現→点滅ループ */
.fv-img3 {
    max-width: 85%;
    /* ↑ サイズ調整: この%を変更 */
    align-self: center;
    margin-top: -14%;
    /* ↑ 被り具合調整: 負の値を大きくすると上に被る */
    position: relative;
    z-index: 1;
    transform: scale(0.3);
    animation: fvZoomIn 0.6s 1.4s ease forwards,
        fvPulse 3s 2.1s ease-in-out infinite;
    /* ↑ 1.4s=出現遅延  2.1s=点滅ループ開始遅延 */
}

@keyframes fvSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-60px) scaleX(0.7);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
}

@keyframes fvZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fvPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 右カラム：フォームエリア */
.fv-right {
    flex: 1 1 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 20px;
}

.fv-form-inner {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.92);
    border: 3px solid rgb(255, 238, 0);
    border-image: linear-gradient(to right, rgb(168, 151, 0) 0%, rgb(255, 251, 0) 20%, rgb(128, 126, 0) 100%) 2;
    padding: 30px 20px 25px;
    box-shadow: 0px 0px 10px 3px #534d0086;
}

/* 「完全無料」タグ — 画像版 */
.fv-form-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 70%;
    max-width: 320px;
}

.fv-form-tag-img {
    width: 100%;
    height: auto;
    display: block;
}

/* SP：縦積み */
@media screen and (max-width: 768px) {
    .fv-wrap {
        flex-direction: column;
        min-height: auto;
        background-image: url(../../../images/eld_main/base/eldorado_bg1SP.png);
        background-size: cover;
    }

    .fv-left {
        padding: 30px 0 10px;
        margin-top: 20%;
        justify-content: flex-start;
    }

    .fv-img1 {
        max-width: 45%;
    }

    .fv-right {
        padding: 35px 2px 30px;
    }

    .fv-form-inner {
        max-width: 100%;
    }

    .fv-form-tag {
        width: 65%;
        max-width: 260px;
    }
}


/* ===== PC用スクロール誘導 ===== */
.fv-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    margin: 0 auto;
    text-align: center;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    animation: scrollFade 2.5s ease-in-out infinite;
}

.fv-scroll-text {
    color: rgba(255, 255, 255, 0.801);
    letter-spacing: 0.2em;
    font-family: 'Noto Serif JP', serif;
}

.fv-scroll-arrow {
    color: rgba(201, 166, 75, 0.7);
    font-size: 13px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollFade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* ===== 指アイコン（汎用） ===== */
/* 使い方: 任意の要素に class="yubi" を追加
   → 右下に指アイコンが表示され拡大縮小アニメーション */
.yubi {
    position: relative;
}

.yubi::after {
    content: "";
    position: absolute;
    right: -10px;
    /* ← 横位置調整 */
    bottom: -10px;
    /* ← 縦位置調整 */
    width: 55px;
    /* ← アイコンサイズ */
    height: 55px;
    background-image: url(../../../images/eld_main/regist/yubi.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 2;
    animation: yubiPulse 1.2s ease-in-out infinite;
}

@keyframes yubiPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

/* ===== フォーム上部：テキスト左 + 画像右回り込み ===== */
.form-top-block {
    margin-top: 30px;
    padding: 0 5%;
    overflow: hidden;
}

.form-top-img {
    float: right;
    width: 35%;
    /* ↑ 画像サイズ調整 */
    max-width: 350px;
    height: auto;
    margin: 0 0 10px 10px;
    /* ↑ 上 右 下 左の余白 */
}

.form-top-text {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .form-top-block {
        padding: 0 3%;
    }

    .form-top-img {
        width: 35%;
        max-width: 350px;
        margin: 8px 0px;
    }
}

/* === 吹き出しコンテナ === */

.balloon-wrap {
    margin-bottom: 20px;
}

/* === 吹き出し本体 === */
.balloon {
    position: relative;
    display: inline-block;
    background: #ffffff;
    border: 3px solid #111111;
    border-radius: 20px;
    padding: 18px 24px;
    color: #111111;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 700;
    max-width: 380px;
}

/* 三角の尻尾 */
.balloon::before {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 28px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 10px 0 10px;
    border-color: #111111 transparent transparent transparent;
}

.balloon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #ffffff transparent transparent transparent;
}

/* 強調テキスト */
.balloon strong {
    color: #111111;
    font-weight: 900;
}

.balloon .negative {
    color: #d42020;
    font-weight: 900;
}

.section {
    max-width: 600px;
    width: 100%;
}

.section-heading {
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}


/* ローディング中：FV画像のアニメーションを無効化 */
body.eld-no-scroll .fv-img1,
body.eld-no-scroll .fv-img2,
body.eld-no-scroll .fv-img3 {
    animation: none !important;
    opacity: 0 !important;
    transform: none !important;
}

/* ローディング解除後：アニメーションを再セット */
body:not(.eld-no-scroll) .fv-img1 {
    opacity: 0;
    transform: translateX(-60px) scaleX(0.7);
    animation: fvSlideIn 0.6s 0.2s ease forwards;
}

body:not(.eld-no-scroll) .fv-img2 {
    opacity: 0;
    transform: scale(0.3);
    animation: fvZoomIn 0.6s 0.8s ease forwards;
}

body:not(.eld-no-scroll) .fv-img3 {
    opacity: 0;
    transform: scale(0.3);
    animation: fvZoomIn 0.6s 1.4s ease forwards,
               fvPulse 3s 2.1s ease-in-out infinite;
}