section{
    width: 100%;
}

.more {
    width: 140px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: aqua;
}

.more a {
    color: #1B1C1E;
    font-size: 16px;
}

.fv {
    position: relative;
    width: 100%;
    height: 700px;
}

.fv_img {
    position: fixed;
    width: 100%;
    height: 700px;
    background-image: url(../img/blog/26457008_l.jpg);
    background-size: cover;
    /* background-attachment: fixed; */
    z-index: -10;
    top: 0;
}

.fv-title {
    padding-top: 200px;
    width: 80%;
    margin: 0 auto;
    z-index: 2;
}

.fv-title h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
}
.fv-title p {
    font-size: 30px;
    line-height: 1.34em;
}

.news {
    width: 80%;
    margin: 0 auto;
    background-color: rgb(0, 0, 0, 0.5);
    padding-block: 30px;
    margin-bottom: 50px;
}

.news_content {
    width: 80%;
    height: 155px;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    background-color: black;
    padding: 20px 10px;
    margin-bottom: 10px;
}

.news_content img {
    height: 100%;
}

.news_content .news_text {
    width: 65%;
    height: auto;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 25%;
    margin: auto;
}

.news_content .news_text h3 {
    line-height: 25px;
    position: absolute;
    top: 50%; 
    transform: translate(0, -50%);  
}

.news_content .news_text p {
    position: absolute;
    bottom: 10%;
    right: 5%;
}

@media screen and (max-width: 800px){
    .fv {
        height: 430px;
    }
    .fv-title h2 {
        font-size: 60px;
    }
    
    .news_content {
        height: 65px;
    }

    .news_content .news_text p {
        font-size: 10px;
    }
}