html {
    scroll-behavior: smooth;
}

.lp-fujiwara {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    line-height: 1.9;
    margin: 0;
    padding: 0;
}

.eyecatch-bk {
    background: linear-gradient(#ffffff, #ffefca);
}

.start-center {
    text-align: center;
    margin: 0 auto;
}

/* スタートボタンのベーススタイル */
.lp-cta-btn {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    width: 100%;
    color: white;
    background-color: #15a11c;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px #0d8113;
    animation: bounce 1s infinite alternate;
    /* 上下に揺れるアニメーション */
}

/* スタートボタンのホバー時の効果 */
.lp-cta-btn:hover {
    background-color: #ff6338;
    box-shadow: 0 8px #fc4f3f;
}

/* キラキラエフェクト */
.lp-cta-btn::before, .lp-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    animation: sparkle 1.5s infinite alternate;
}

/* 上下に揺れるアニメーション */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
        /* 上に少し移動 */
    }
}

/* キラキラアニメーション */
@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
    }
}

.camp-insta-badge {
    background: #ff8e3d;
    border-radius: 10px;
    line-height: 1.7;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 2.3s ease;
    transition-delay: 0.3s;
}

.camp-insta-badge.show {
    opacity: 1;
    transform: translateY(0);
}

.moji-blue-nayami {
    color: #003560;
}

/* SP */
@media screen and (max-width: 520px) {
    .camp-insta-badge {
        padding: 12px 0;
    }
}

/* pc */
@media screen and (min-width: 521px) {
    .camp-insta-badge {
        max-width: 700px;
        padding: 22px 0;
    }
}

.bk-brown {
    background: #492e17;
}

.bk-youtube {
    border-color: #d2d2d2;
    background: url(/img/back/texture3.png);
    background-position: 1px 1px;
    background-size: 10px;
}

.text-shadow-white {
    text-shadow: -3px -3px 0 #fff, -3px -2px 0 #fff, -3px -1px 0 #fff, -3px 0 0 #fff, -3px 1px 0 #fff, -3px 2px 0 #fff, -3px 3px 0 #fff, -2px -3px 0 #fff, -2px -2px 0 #fff, -2px -1px 0 #fff, -2px 0 0 #fff, -2px 1px 0 #fff, -2px 2px 0 #fff, -2px 3px 0 #fff, -1px -3px 0 #fff, -1px -2px 0 #fff, -1px -1px 0 #fff, -1px 0 0 #fff, -1px 1px 0 #fff, -1px 2px 0 #fff, -1px 3px 0 #fff, 0 -3px 0 #fff, 0 -2px 0 #fff, 0 -1px 0 #fff, 0 0 0 #fff, 0 1px 0 #fff, 0 2px 0 #fff, 0 3px 0 #fff, 1px -3px 0 #fff, 1px -2px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, 1px 1px 0 #fff, 1px 2px 0 #fff, 1px 3px 0 #fff, 2px -3px 0 #fff, 2px -2px 0 #fff, 2px -1px 0 #fff, 2px 0 0 #fff, 2px 1px 0 #fff, 2px 2px 0 #fff, 2px 3px 0 #fff, 3px -3px 0 #fff, 3px -2px 0 #fff, 3px -1px 0 #fff, 3px 0 0 #fff, 3px 1px 0 #fff, 3px 2px 0 #fff, 3px 3px 0 #fff;
}

.btn-main {
    background: #00b900;
    color: #fff;
}

.btn-main[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

/* SP */
@media screen and (max-width: 520px) {
    .lp-header {
        background: #ffffff;
        padding: 7px 0 7px 2px;
    }

    .lp-logo {
        width: 200px;
    }

    .lp-cta-btn {
        font-size: 18px;
        width: 90%;
        margin: 20px auto 60px auto;
        padding: 20px 0;
    }

    .arrow-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        /* 矢印の間隔 */
        margin: 20px 0;
    }

    .down-arrow {
        display: inline-block;
        width: 50px;
        height: 40px;
        background: #15a11c;
        clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
        animation: bounceArrow 1.5s infinite;
    }

    .down-arrow:nth-child(2) {
        animation-delay: 0.2s;
    }

    .down-arrow:nth-child(3) {
        animation-delay: 0.2s;
    }

    @keyframes bounceArrow {
        0% {
            transform: translateY(0);
        }

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

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

    #copyright {
        font-size: 12px;
        text-align: center;
        padding: 8px 0;
        background: #5D3A1B;
        color: #ffffff;
        margin-bottom: 0;
    }

    .bk-eyecatch-fujiwara {
        background-image: url(/lp-fujiwara/img/lp-bk-fujiwara.webp);
        background-size: 60%;
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: 2px;
        /* 縦位置を30px下に */
    }

    .midashi-h3 {
        border-bottom: 1px dotted;
    }

    .bk-cream {
        position: relative;
        padding: 18px 20px;
        background-image: url(/lp-fujiwara/img/bk-cream.jpg);
        background-repeat: repeat;
        background-size: 20px 20px;
        line-height: 1.9;
    }

    /* 流れ SP */
    .step-narabe {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        position: relative;
    }

    .step-narabe:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 72px;
        /* 点線の開始位置をSTEP円の下に設定 */
        left: 31px;
        /* 点線をSTEP円の中心に配置 */
        width: 2px;
        height: calc(100% - 38px);
        /* STEP円の高さ分を引いた点線の高さ */
        background: repeating-linear-gradient(#277707,
                #277707 2px,
                transparent 2px,
                transparent 10px);
        z-index: 0;
        /* 点線を後ろに配置 */
    }

    .flow-step {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #ffffff;
        font-size: 15px;
        font-weight: bold;
        line-height: 1.3;
        width: 62px;
        height: 62px;
        background-color: #277707;
        border-radius: 50%;
        box-shadow: 0 2px 3px rgba(125, 55, 4, 0.26);
        margin: 5px 12px 0 0;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        /* 点線より前に表示 */
    }

    .step-midashi {
        font-size: 16px;
        font-weight: bold;
        color: #277707;
        border-bottom: dotted 1px #277707;
        display: block;
        margin-bottom: 8px;
    }

    .step-detail {
        padding: 12px 14px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(125, 55, 4, 0.16);
        font-size: 12px;
        color: #5d3a1b;
    }

    .step-narabe>div:last-child {
        flex-grow: 1;
    }

    .h2-midashi-2 {
        position: relative;
        background: #277707;
        padding: 20px 0 23px 0;
        color: #ffffff;
        line-height: 1.8;
        text-align: center;
    }

    .h2-midashi-2:after {
        position: absolute;
        content: '';
        top: 100%;
        left: 47%;
        border: 15px solid transparent;
        border-top: 15px solid #277707;
        width: 0;
        height: 0;
    }

    .h2-midashi-3 {
        position: relative;
        background: #003560;
        padding: 20px 0 23px 0;
        color: #ffffff;
        line-height: 1.8;
        text-align: center;
    }

    .h2-midashi-3:after {
        position: absolute;
        content: '';
        top: 100%;
        left: 47%;
        border: 15px solid transparent;
        border-top: 15px solid #003560;
        width: 0;
        height: 0;
    }

    /* 画像横スクロールSP */

    @keyframes infinity-scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }

    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0
    }

    .scroll-infinity__list--left {
        animation: infinity-scroll-left 70s infinite linear 2s both;
    }

    .scroll-infinity__item {
        width: calc(1800px / 11);
    }

    .scroll-infinity__item>img {
        width: 100%;
    }

    /* ここまで画像横スクロールSP */

    /* 動画 */

    .video-wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .video-wrap video {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-stop-btn {
        display: block;
        /* 常にレイアウト上に存在 */
        margin: 15px auto 0;
        padding: 8px 16px;
        background-color: #444;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;

        visibility: hidden;
        /* 初期は見えない */
        opacity: 0;
        /* 初期は透明 */
        pointer-events: none;
        /* 初期はクリック不可 */

        transition: opacity .4s ease, visibility .4s ease;
        /* フェードアニメーション */
    }

    .video-stop-btn:hover {
        background-color: #222;
    }

    /* 表示状態（フェードイン） */
    .video-stop-btn.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    /* ブラウザのフルスクリーン（全画面）ボタンを非表示にする */
    video::-webkit-media-controls-fullscreen-button {
        display: none !important;
    }

    video::-webkit-media-controls-enclosure {
        overflow: hidden;
    }

    /* ここまで動画 */

    .line-cv-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
        padding: 25px 0 30px 0;
    }

    .line-cv-btn {
        display: block;
        margin: 0 auto;
        width: 80%;
        border: 0;
        border-radius: 12px;
        padding: 16px;
        font-weight: 700;
        font-size: 20px;
        cursor: pointer;
    }

}

/* pc */
@media screen and (min-width: 521px) {
    .lp-header {
        background: #ffffff;
        padding: 7px 0 9px 5px;
    }

    .lp-header-pc {
        width: 1000px;
        margin: 0 auto;
    }

    .lp-logo {
        width: 400px;
    }

    .pc-haba-1000 {
        max-width: 1000px;
        height: auto;
        margin: 0 auto;
    }

    .pc-haba-800 {
        max-width: 800px;
        height: auto;
        margin: 0 auto;
    }

    .lp-cta-btn {
        font-size: 30px;
        width: 650px;
        margin: 30px auto 100px auto;
        padding: 35px 0;
    }

    .arrow-container {
        display: flex;
        justify-content: center;
        gap: 50px;
        /* 矢印の間隔 */
        margin: 50px 0 20px 0;
    }

    .down-arrow {
        display: inline-block;
        width: 70px;
        height: 50px;
        background: #15a11c;
        clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
        animation: bounceArrow 1.5s infinite;
    }

    .down-arrow:nth-child(2) {
        animation-delay: 0.2s;
    }

    .down-arrow:nth-child(3) {
        animation-delay: 0.2s;
    }

    @keyframes bounceArrow {
        0% {
            transform: translateY(0);
        }

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

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

    #copyright {
        font-size: 12px;
        text-align: center;
        padding: 8px 0;
        background: #5D3A1B;
        color: #ffffff;
    }

    .bk-eyecatch-fujiwara {
        background-image: url(/lp-fujiwara/img/lp-bk-fujiwara.webp);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: -15px;
        /* 縦位置を30px下に */
    }

    .midashi-h3 {
        border-bottom: 1px dotted;
    }

    .bk-cream {
        position: relative;
        padding: 37px 44px;
        background-image: url(/lp-fujiwara/img/bk-cream.jpg);
        background-repeat: repeat;
        background-size: 20px 20px;
        line-height: 1.9;
    }

    /* 流れ PC */

    .step-narabe {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        position: relative;
    }

    .step-narabe:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 106px;
        /* 点線の開始位置をSTEP円の下に設定 */
        left: 45px;
        /* 点線をSTEP円の中心に配置 */
        width: 2px;
        height: calc(100% - 65px);
        /* STEP円の高さ分を引いた点線の高さ */
        background: repeating-linear-gradient(#277707,
                #277707 2px,
                transparent 2px,
                transparent 10px);
        z-index: 0;
        /* 点線を後ろに配置 */
    }

    .flow-step {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        line-height: 1.3;
        width: 90px;
        height: 90px;
        background-color: #277707;
        border-radius: 50%;
        box-shadow: 0 2px 3px rgba(125, 55, 4, 0.26);
        margin: 5px 16px 0 0;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        /* 点線より前に表示 */
    }

    .step-midashi {
        font-size: 21px;
        font-weight: bold;
        color: #277707;
        border-bottom: dotted 1px #277707;
        display: block;
        margin-bottom: 12px;
    }

    .step-detail {
        padding: 15px 23px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(125, 55, 4, 0.16);
        font-size: 18px;
        color: #5d3a1b;
    }

    .step-narabe>div:last-child {
        flex-grow: 1;
    }

    .h2-midashi-2 {
        position: relative;
        background: #277707;
        padding: 31px 0 44px 0;
        color: #ffffff;
        line-height: 1.7;
        text-align: center;
    }

    .h2-midashi-2:after {
        position: absolute;
        content: '';
        top: 100%;
        left: 48%;
        border: 23px solid transparent;
        border-top: 23px solid #277707;
        width: 0;
        height: 0;
    }

    .h2-midashi-3 {
        position: relative;
        background: #003560;
        padding: 31px 0 44px 0;
        color: #ffffff;
        line-height: 1.7;
        text-align: center;
    }

    .h2-midashi-3:after {
        position: absolute;
        content: '';
        top: 100%;
        left: 48%;
        border: 23px solid transparent;
        border-top: 23px solid #003560;
        width: 0;
        height: 0;
    }

    /* 画像横スクロールPC */

    @keyframes infinity-scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }

    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0
    }

    .scroll-infinity__list--left {
        animation: infinity-scroll-left 60s infinite linear 2s both;
    }

    .scroll-infinity__item {
        width: calc(3200px / 11);
    }

    .scroll-infinity__item>img {
        width: 100%;
    }

    /* ここまで画像横スクロールPC */

    /* 動画 */

    .video-wrap {
        max-width: 700px;
        margin: 0 auto;
    }

    .video-wrap video {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-stop-btn {
        display: block;
        /* 常にレイアウト上に存在 */
        margin: 18px auto 0;
        padding: 8px 16px;
        background-color: #444;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 17px;

        visibility: hidden;
        /* 初期は見えない */
        opacity: 0;
        /* 初期は透明 */
        pointer-events: none;
        /* 初期はクリック不可 */

        transition: opacity .4s ease, visibility .4s ease;
        /* フェードアニメーション */
    }

    .video-stop-btn:hover {
        background-color: #222;
    }

    /* 表示状態（フェードイン） */
    .video-stop-btn.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    /* ブラウザのフルスクリーン（全画面）ボタンを非表示にする */
    video::-webkit-media-controls-fullscreen-button {
        display: none !important;
    }

    video::-webkit-media-controls-enclosure {
        overflow: hidden;
    }

    /* ここまで動画 */

    .line-cv-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
        padding: 30px 0 40px 0;
    }

    .line-cv-btn {
        display: block;
        margin: 0 auto;
        width: 70%;
        border: 0;
        border-radius: 12px;
        padding: 20px;
        font-weight: 700;
        font-size: 26px;
        cursor: pointer;
    }
}