/* kv ---------------------------------------------------*/

.kv{
    background: linear-gradient(to top right, rgba(246, 251, 255, 0), rgba(246, 251, 255, 0.6));
    position: relative;
    margin-bottom: 10rem;
}

section.kv{
    padding: 0 0 10rem
}

.kv h1{
    font-size: 5.6rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: absolute;
    left: 8rem;
    top: 20rem;
    z-index: 1;
}

.kv h1 span{
    color: var(--mainColor);
}

.kv img{
    width: 100rem;
    margin-left: auto;
    border-radius: 1rem 0 0 1rem;
}

.kv::before{
    content: "";
    background: linear-gradient(to top right, #FFABCE, #c4d8ed00);
    display: block;
    width: 85rem;
    height: 10rem;
    opacity: 0.1;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 0 0 0 1rem;
}

.flow_text {
    overflow: hidden;
    display: flex;
    width: 100%;
    margin-inline: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
}

.flow_text_item {
    font-family: var(--fontEn);
    font-size: 12rem;
    font-weight: 200;
    letter-spacing: 0;
    display: inline-block;
    padding: 0 2rem;
    flex-shrink: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    will-change: transform;
}

.flow_text_item:nth-child(odd) {
    animation: MoveLeft 50s -25s infinite linear;
}

.flow_text_item:nth-child(even) {
    animation: MoveLeft2 50s infinite linear;
}

@keyframes MoveLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

@keyframes MoveLeft2 {
    from { transform: translateX(0); }
    to { transform: translateX(-200%); }
}



/* about ---------------------------------------------------*/

.about{
    position: relative;
}

.about::before{
    content: "";
    background: var(--grad);
    display: block;
    width: 55rem;
    height: 39rem;
    border-radius: 0.5rem;
    position: absolute;
    right: 0;
    top: 10rem;
    z-index: -1;
}

.about_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16rem;
}

.about_inner{
    flex: 1;
}

.about_inner h3{
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.about_inner h3::after{
    content: "";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background: var(--mainColor);
    margin: 2rem 0;
}

.about_inner p{
    margin-bottom: 4rem;
}

.about_img{
    flex: 1;
}

.about_img img{
    border-radius: 0.5rem;
}

.about .more_btn.sp{
    display: none;
}


/* faq ---------------------------------------------------*/

.faq{
    background: var(--mainBg);
}

.faq h3{
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.faq h3::after{
    content: "";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background: var(--mainColor);
    margin: 2rem 0;
}

.faq_content{
    margin: 4rem 0;
}

.faq .more_btn{
    margin-left: auto;
}


/* model ---------------------------------------------------*/

.model{
    display: grid;
    grid-template-columns: 1fr 128rem 1fr;
    position: relative;
}

.model::before{
    content: "";
    background: linear-gradient(to top right, #F3F9FF, #F2F9FF);
    display: block;
    width: 110rem;
    height: 71rem;
    border-radius: 1rem;
    position: absolute;
    bottom: 14rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}

.model_header{
    grid-column: 2;
}

.model_content{
    grid-column: 2 / 4;
}

.swiper2{
    padding-bottom: 5rem;
    margin: 8rem 0 4rem;
}

.swiper2 .swiper-slide img{
    aspect-ratio: 330 / 496;
    object-fit: cover;
}

.swiper2 .swiper-slide h3{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 2rem;
}

.swiper2 .swiper-scrollbar {
    display: block !important;
    opacity: 1 !important;
    background-color: #EFEFEF;
    width: 100% !important;
    height: 0.3rem !important;
    left: 0!important;
    border-radius: 1rem;
}

.swiper2 .swiper-scrollbar-drag {
    background-color: var(--mainColor);
    border-radius: 1rem;
    width: 86rem;
}

.model .more_btn{
    margin-left: auto;
    margin-right: 8rem;
}


/* flow ---------------------------------------------------*/

section.flow{
    padding: 4rem 0 10rem;
}

.flow .wrapper110{
    padding: 5rem 0;
    position: relative;
}

.flow_content{
    color: #fff;
    background: linear-gradient(to top right, #317CD2, #98C2F2);
    padding: 5rem;
    width: 60rem;
}

.flow .section_title{
    color: #fff;
    font-size: 4.8rem;
}

.flow .section_title span{
    color: #fff;
    font-size: 1.4rem;
}

.flow .section_title span::before{
    background: #fff;
}

.flow_detail{
    font-weight: 700;
    margin: 4rem 0 3rem;
}

.flow_inner{
    display: flex;
    flex-flow: column;
    border-top: solid 0.105rem #fff;
}

.flow_anker{
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: solid 0.105rem #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow .more_btn{
    width: 100%;
    text-align: center;
    line-height: 1.8;
    padding: 2rem;
    margin-top: 4rem;
}

.flow .more_btn:hover{
    border-color:#fff;
    background: #00000000;
}

.flow_img{
    position: absolute;
    width: 74rem;
    top: 0;
    right: 0;
    z-index: -1;
}


/* support ---------------------------------------------------*/

.support{
    background: var(--mainBg);
    position: relative;
}

.support .wrapper{
    z-index: 1;
    position: relative;
}

.support::before{
    content: "";
    background: linear-gradient(to top right, #D2E8FF, #E9F4FF);
    display: block;
    width: 130rem;
    height: 91rem;
    border-radius: 1rem 0 0 1rem;
    position: absolute;
    top: 18rem;
    right: 0;
}

.swiper3{
    margin: 4rem 0;
    overflow: unset;
}

.swiper3 .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.swiper3 .swiper-slide{
    filter: var(--filter);
}

@media (min-width: 768px) {
    .swiper3 .swiper-slide {
        width: 100% !important;
    }
}

.support_img{
    border-radius: 0.5rem 0.5rem 0 0;
}

.support_inner{
    background: #fff;
    padding: 2rem 3rem 3rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.support_inner h3{
    font-size: 2.8rem;
    font-weight: 700;
}

.support_inner p{
    color: var(--mainColor);
    font-size: 1.4rem;
    font-weight: 400;
}

.support .more_btn{
    margin-left: auto;
}


/* news ---------------------------------------------------*/

.news_content{
    display: flex;
    justify-content: space-between;
    gap: 36rem;
}

.news_header{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 6rem;
    flex: 1;
}

.news_inner{
    display: flex;
    flex-flow: column;
    flex: 2.8;
}

.news_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    padding: 2rem 0;
    border-bottom: solid 0.105rem var(--mainColor);
}

.news_info{
    transition: 0.3s;
}

.news_item:hover .news_info{
    opacity: 0.6;
}

.news_date{
    color: var(--mainColor);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.news_title{
    line-height: 1.8;
}

.news .arrow_round{
    border: solid 0.105rem var(--mainColor);
}

.news a:has(.arrow_round):hover .arrow_round {
    background: var(--mainColor);
}


/* sns ---------------------------------------------------*/

.sns{
    background: linear-gradient(to top right, #FCFDFF, #E9F4FF);
}

.sns_content{
    display: flex;
    gap: 8rem;
    margin-top: 6rem;
    overflow: hidden;
}

.sns_inner{
    display: flex;
    flex-flow: column;
    align-items: start;
    justify-content: space-between;
    gap: 4rem;
    flex: 1;
}

.sns_inner h3{
    font-family: var(--fontEn);
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sns_inner h3 img{
    width: 4rem;
}

.sns_item{
    width: 100%;
}

.sns_insta{
    padding-right: 8rem;
    border-right: solid 0.05rem var(--mainColor);
}

.sns_btn{
    color: var(--mainColor);
    background: #fff;
    font-weight: 700;
    border: solid 0.15rem var(--mainColor);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 3.5rem;
    transition: 0.3s;
}

.sns_btn svg{
    color: var(--mainColor);
    width: 2.5rem;
    transition: 0.3s;
}

.sns_btn:hover{
    color: #fff;
    background: var(--mainColor);
}

.sns_btn:hover svg{
    color: #fff;
}

.twitter-timeline iframe {
    position: static !important;
    visibility: visible !important;
    width: 100% !important;
    height: 600px !important;
}

.twitter-timeline{
    display: none;
}


@media (max-width: 1024px) {
    .kv h1{
        font-size: 4rem;
        left: 4rem;
    }

    .kv img{
        width: 80%;
    }

    .kv::before{
        width: 70%;
    }

    .about::before{
        width: 43rem;
        height: 30rem;
        top: 15rem;
    }

    .about_content{
        gap: 8rem;
    }

    .about_inner{
        flex: 1.1;
    }

    .about_img{
        margin-top: 6rem;
    }

    .faq{
        display: grid;
        grid-template-columns: 1fr 90% 1fr;
    }

    .faq .wrapper{
        grid-column: 2/4;
        max-width: 100%;
    }

    .faq .more_btn{
        margin-right: 5rem;
    }

    .model{
        grid-template-columns: 1fr 90% 1fr;
    }

    .model::before{
        width: 80%;
        height: 60%;
    }

    .model .more_btn{
        margin-right: 5rem;
    }

    .flow .wrapper110{
        padding: 10rem 0 0;
    }

    .flow_content{
        width: 55%;
    }

    .flow_img{
        width: 65%;
    }

    .support::before{
        width: 90%;
        height: 70%;
    }

    .swiper3 .swiper-wrapper{
        gap: 3rem;
    }

    .support_inner h3{
        font-size: 2rem;
    }

    .news_content{
        gap: 20rem;
    }

    .sns_content{
        gap: 6rem;
    }
}


@media (max-width: 767px) {
    .kv{
        margin-bottom: 3rem;
    }

    section.kv{
        padding: 10rem 0 4rem;
    }

    .kv h1{
        font-size: 2.8rem;
        left: 2rem;
        top: 3rem;
    }

    .kv img{
        width: 36rem;
    }

    .kv::before{
        width: 30rem;
    }

    .flow_text_item{
        font-size: 4rem;
        padding: 0 1rem;
    }

    .flow_text{
        bottom: 1rem;
    }

    .more_btn{
        width: 100%;
        text-align: center;
        padding: 2rem;
    }

    .about::before{
        width: 90%;
        top: auto;
        bottom: 24rem;
        height: 27rem;
    }

    .about_content{
        flex-flow: column;
        gap: 5.5rem;
    }

    .about_inner h3{
        font-size: 2rem;
    }

    .about_inner p{
        margin: 0;
    }

    .about_img{
        margin: 0;
    }

    .about_img img{
        height: 28rem;
        object-fit: cover;
    }

    .about .more_btn.pc{
        display: none;
    }

    .about .more_btn.sp{
        display: block;
    }

    .faq h3{
        font-size: 2rem;
        margin-right: 2rem;
    }

    .faq p{
        margin-right: 2rem;
    }

    .faq .more_btn{
        width: auto;
        margin-right: 2rem;
    }

    .model::before{
        width: 100%;
        height: 52rem;
        bottom: 11rem;
        border-radius: 0;
    }

    .swiper2{
        margin: 4rem 0;
        padding-bottom: 4rem;
    }

    .swiper2 .swiper-slide h3{
        font-size: 1.8rem;
    }

    .model .more_btn{
        width: auto;
        margin-right: 2rem;
    }

    section.flow{
        padding: 0 0 8rem;
    }

    .flow .wrapper110{
        max-width: 100%;
        padding-top: 35rem;
    }

    .flow_content{
        width: 90%;
        margin: auto;
        padding: 4rem 2.5rem;
        border-radius: 0.5rem;
    }

    .flow_detail{
        margin: 2rem 0 3rem;
    }

    .flow_img{
        width: 100%;
    }

    .flow_img img{
        height: 40rem;
        object-fit: cover;
    }

    .flow .more_btn{
        margin-top: 2rem;
    }

    .support{
        overflow: hidden;
    }

    .support::before{
        width: 88%;
        height: 57%;
        border-radius: 0.5rem 0 0 0.5rem;
    }

    .swiper3 .swiper-wrapper{
        display: flex;
    }

    .swiper3 .swiper-wrapper{
        gap: 0;
    }

    .news_content{
        flex-flow: column;
        gap: 1rem;
    }

    .news_header{
        flex-flow: row;
        gap: 0;
        align-items: start;
    }

    .news .section_title{
        flex-shrink: 0;
    }

    .news .more_btn{
        width: fit-content;
        padding: 2rem 6.5rem 2rem 3rem;
    }

    .news_title{
        overflow: hidden;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .news .arrow_round{
        display: none;
    }

    .sns_content{
        flex-flow: column;
        gap: 4rem;
        margin-top: 4rem;
    }

    .sns_inner h3{
        font-size: 2.4rem;
    }

    .sns_inner h3 img{
        width: 3rem;
    }

    .sns_insta{
        padding-right: 0;
        padding-bottom: 4rem;
        border-right: none;
        border-bottom: solid 0.05rem var(--mainColor);
    }

    .sns_btn{
        width: 100%;
        padding: 1.5rem;
        justify-content: space-between;
    }
}