@charset "UTF-8";

/* ========
    共通
======== */
html {
    font-size: 100%;
}
html,
body {
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    display: block;
    transition: all 0.3 ease;
}
.main-contents {
    max-width: 390px;
    width: 100%;
    margin-left: 45%;
    position: relative;
    z-index: 1;
}
li {
    list-style: none;
}
/* ========
    エフェクト
======== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}
/* ========
    CTAボタン
======== */
/* ボタン共通 */
.cta {
    max-width: 367px;
    width: 94%;
    transition: all 0.3s ease;
}
.cta:hover {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
}
/* FV */
.fv__cta {
    position: absolute;
    top: min(140vw, 548px);
    left: 50%;
    transform: translateX(-50%);
}
/* 追従 */
.cta-fixed {
    width: 95%;
    position: fixed;
    left: calc(45% + 195px);
    transform: translateX(-50%);
    bottom: 25px;
    z-index: 100;
    cursor: pointer;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}
.cta-fixed:hover {
    transform: translateX(-50%) scale(1.1) !important;
    animation-play-state: paused; 
}
.pulse {
	animation: pulse 3s infinite;
}
@keyframes pulse {
	0% {
		transform: translateX(-50%) scale(1.05)
	}
	5% {
		transform: translateX(-50%) scale(1)
	}
	95% {
		transform: translateX(-50%) scale(1)
	}
	100% {
		-webkit-transform: translateX(-50%) scale(1.05)
	}
}
/* カルーセル下 */
.cta2 {
    position: relative;
}
.cta2__button {
    position: absolute;
    top: min(87vw, 340px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    width: 80%;
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.cta2__button.active {
    opacity: 1;  /* アクティブ時に表示 */
    width: 94%;
    transform: translateX(-50%) !important;
}

/* ========
    fv
======== */
.fv {
    position: relative;
}
.wrapper {
    position: relative;
    overflow-x: hidden;
}
/* ========
    コンテンツ
======== */
.member1 {
    position: relative;
    max-width: 390px;
    width: 100%;
    overflow-x: hidden;
}

.splide {
    position: absolute;
    top: 45%;
    overflow: hidden;
}

.splide__slide img {
    width: 100%;
    /* スライドの幅にフィット */
    height: auto;
    /* 縦横比を維持 */
    max-width: 138px;
}

/* ========
    ビデオ
======== */
.video__wrapper {
    position: relative;
    display: block;
}

.bg-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.video-thumbnail {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84.5%;
    max-width: 329px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.open {
    display: flex;
}

.modal-content {
    position: relative;
    padding-inline: 3rem;
    max-width: 100%;
    width: 100%;
    z-index: 1100;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.modalClose10 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modalClose10:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body video {
    width: 100%;
}

.modal-content {
    width: 50%;
}

.modal.open {
    display: flex;
}

/* ========
    faq
======== */
.faq__container {
    background-color: #01012C;
    color: #ffffff;
    font-family: "Hiragino Mincho Pro", "Noto Serif JP", "MS PMincho", serif;
    font-weight: 600;
    font-size: clamp(12px, 4.1vw, 16px);
    padding-block: min(9.2vw, 36px) min(13vw, 54px);
}

.faq__title,
.apply-step__title {
    font-size: clamp(12px, 6.1vw, 24px);
    line-height: 1.5;
    margin-bottom: min(7.6vw, 30px);
    text-align: center;
}

.faq_item {
    padding-inline: 21px;
    width: 95%;
    margin-inline: auto;
    border-bottom: 1px solid #ffffff;
}

.faq__border {
    border: 1px solid #ffffff;
}

.faq_q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-block: 10px 20px;
}

.faq01 {
    display: flex;
    align-items: center;
}

.letter_q {
    margin-right: 2.76vw;
}

.faq_q_text {
    margin-inline: 7px min(7.6vw, 30px);

}

.open-icon {
    background-image: url(images/button_close.svg);
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq_q.open {
    margin-bottom: min(5.6vw, 22px);
}

.faq_q.open .open-icon {
    background-image: url(images/button_open.svg);
    width: 14px;
    flex-shrink: 0;
}

.faq01,
.faq_a {
    display: flex;
    align-items: flex-start;
}

.faq_a {
    display: none;
}

.faq_a.open {
    display: flex;
    gap: 7px;
    padding-bottom: 20px;
}

.apply-step {
    background-color: #EEF1F3;
    color: #000000;
    font-family: "Hiragino Mincho Pro", "Noto Serif JP", "MS PMincho", serif;
    padding-block: min(10.7vw, 42px) min(30vw, 120px);
}

.apply-step__item {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.14;
    padding-inline: 21px;
}

.apply-step__item--title {
    margin-bottom: 11px;
}

.line {
    display: inline;
    color: #3690F0;
    border-bottom: 1px solid #3690F0;
}

.apply_border {
    margin-block: 16px;
}

/* ========
    レスポンシブ
======== */

@media screen and (min-width: 391px) {
    .bg_pc {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100svh;
        z-index: -1;
        overflow: hidden;
        background-image: url(images/bg_pc.webp);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        height: 100vh;
    }

    .bg_benefits {
        position: absolute;
        top: 20vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bg_cta {
        position: absolute;
        bottom: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bg_cta a:hover {
        opacity: 0.7;
    }

    .left {
        width: 45%;
        position: fixed;
        height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        position: fixed;
        z-index: 100;
        cursor: pointer;
        top: 21px;
        left: 28px;
    }
}


@media screen and (max-width: 768px) {

    .left,
    .logo {
        display: none;
    }

    .main-content {
        margin: 0 auto;
    }

    .bg_pc {
        visibility: hidden;
    }

    .main-contents {
        margin-inline: auto;
    }

    main {
        background-color: #1A1D2D;
    }

    .modal-content {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .main-content {
        width: 100%;
    }

    .cta-fixed {
        left: 50%;
    }
}