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

.kv{
    padding: 4rem 0 8rem;
    margin-bottom: 8rem;
    position: relative;
}

.kv_content{
    background: linear-gradient(to top right, #F3F9FF, #F6FAFF);
    padding: 8rem;
    width: 80rem;
    height: 40rem;
    border-radius: 0 1rem 1rem 0;
}

.kv_img{
    width: 90rem;
    height: 40rem;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 1rem 0 0 1rem;
    overflow: hidden;
}

.kv_img img{
    height: 100%;
    object-fit: cover;
}

.kv_img.no_img{
    background: linear-gradient(to bottom, rgba(255, 241, 247, 0.8), rgba(255, 214, 214, 0.2));
}


/* page title ---------------------------------------------------*/

.page_title{
    color: var(--title);
    font-family: var(--fontEn);
    font-size: 8.8rem;
    font-weight: 700;
    display: flex;
    flex-flow: column;
}

.page_title span{
    color: var(--mainColor);
    font-family: var(--fontJa);
    font-size: 2.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page_title span::before{
    content: "";
    background: linear-gradient(to bottom, #317CD2, #C8DBF0);
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .kv_content{
        padding: 5rem;
        height: 30rem;
        width: 60%;
    }

    .kv_img{
        height: 30rem;
        width: 50%;
    }

    .page_title{
        font-size: 7rem;
    }
}


@media (max-width: 767px) {
    .kv{
        padding: 0 0 13rem;
        margin-bottom: 4rem;
    }

    .kv_content{
        padding: 3rem;
        width: 100%;
        height: 23rem;
        border-radius: 0;
    }

    .kv_img{
        width: 92%;
        height: 20rem;
        border-radius: 0.5rem;
    }

    .kv_img.kv_img.no_img{
        height: 10rem;
    }

    .kv:has(.no_img) {
        padding: 0 0 3rem;
    }

    .page_title{
        font-size: 4.8rem;
        flex-flow: column-reverse;
    }

    .page_title span{
        font-size: 2rem;
        font-weight: 700;
    }
}