#kv {
    background: url(../images/top/kv-bg.jpg) no-repeat;
    background-position: center;
    height: 100lvh;
}
#kv .inner {
    height: 100%;
}
.kv-txtarea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 80px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
.kv-txtarea .kv-catch {
    color: #fff;
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: .05em;
}
.kv-txtarea .kv-catch .big {
    font-size: 8rem;
}
.kv-txtarea .kv-description {
    font-size: 1.8rem;
    line-height: 2;
    color: #fff;
}

@media screen and (max-width:640px) {
    #kv {
        background: url(../images/top/kv-bg-sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        height: 70lvh;
    }
    .kv-txtarea {
        gap: 50px;
    }
    .kv-txtarea .kv-catch {
        font-size: 4rem;
    }
    .kv-txtarea .kv-catch .big {
        font-size: 5rem;
    }
    .kv-txtarea .kv-description {
        font-size: 1.4rem;
    }
}

.news-list {
    padding: 120px 0;
}
.top-news-layout {
    display: flex;
    justify-content: space-between;
}
.top-news-layout .title-area {
    display: flex;
    flex-direction: column;
}
.top-news-layout .title-area .more-btn-wrap {
    margin-top: auto;
}
.news-wrap {
    width: calc(100% - 400px);
    max-width: 980px;
}
.news-wrap .news-item {
    display: block;
    width: 100%;
    padding: 30px 0;
    border-bottom: solid 1px #aeaeae;
    color: #01092c;
    position: relative;
}
.news-wrap .news-item::before {
    content: "";
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url(../images/common/arrow_blue.svg) no-repeat;
    background-size: contain;
}
.news-wrap .news-item::after {
    content: "";
    width: 43px;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -1px;
    right: 0;
    background-color: #3048ae;
}
.news-wrap .news-item .date {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.news-wrap .news-item .news-title {
    font-size: 2rem;
    font-weight: 600;
}

@media screen and (max-width:640px) {
    .news-list {
        padding: 60px 0;
    }
    .top-news-layout {
        flex-direction: column;
    }
    .top-news-layout .title-area .more-btn-wrap {
        display: none;
    }
    .news-wrap {
        width: 100%;
        margin-top: 20px;
    }
    .news-wrap .news-item {
        padding: 20px 0;
    }
    .news-wrap .news-item .date {
        font-size: 1.3rem;
    }
    .news-wrap .news-item .news-title {
        font-size: 1.8rem;
    }
    .news-wrap .news-item::before {
        width: 20px;
        height: 20px;
    }
    .news-wrap .news-item::after {
        width: 40px;
    }
}
