@charset "UTF-8";
/* CSS Document */

/*下層MV*/
#news-single #lower_mv {
    background: url("../../assets/img/news/mv.webp") no-repeat;/*各ページごとに変更*/
    background-size: cover;
    background-position: center;
}
#news-single main {
    margin-top: 80px;/*各ページごとに変更*/
}
@media (max-width: 768px) {
    #news-single main {
        margin-top: 40px;
    }
}

#news-post {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}
#news-post article {
    width: 73%;
}
#news-post aside {
    width: 27%;
}

#news-post article h2 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
#news-post article .date {
    color: var(--LB-color);
    font-weight: 300;
}
#news-post article #content {
    margin-top: 40px;
    line-height: 1.8;
}

#news-post .wp-block-button__link {
    display: inline-block;
    width: 300px;
    padding: 18px 0;
    background: rgb(48,188,235);
    background: linear-gradient(120deg, rgba(48,188,235,1) 0%, rgba(22,86,164,1) 58%);
    background-size: 100%;
    background-position: center;
    color: #FFFFFF;
    font-size: 1.4rem;
    text-align: center;
    box-shadow: 1px 2px 4px rgba(0,0,0,.15);
    transition: 0.3s;
}
#news-post .wp-block-button__link::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 5px;
    border-bottom: 1px solid #FFF;
    border-right: 1.5px solid #FFF;
    transform: skew(30deg);
    position: relative;
    top: -3px;
    left: 5px;
    transition: 0.3s;
}
#news-post .wp-block-button__link:hover {
    background-size: 150%;
    background-position: 5% 50%;
}
#news-post .wp-block-button__link:hover::after {
    left: 8px;
}


#news-post aside h3 {
    font-size: 1.8rem;
    font-weight: 400;
    padding-bottom: 16px;
    padding-left: 4px;
    border-bottom: 2px solid var(--LB-color);
}
#news-post aside ul li {
    padding: 24px 0;
    border-bottom: 1px solid #868F96;
    font-size: 1.5rem;
}
#news-post aside ul li .date {
    color: var(--LB-color);
    font-size: 1.3rem;
}

@media (max-width: 1080px) {
    #news-post {
        flex-direction: column;
        gap: 80px;
        margin-bottom: 100px;
    }
    #news-post article {
        width: 100%;
    }
    #news-post aside {
        width: 100%;
    }
    #news-post aside ul li {
        padding: 16px 0;
    }
}
@media (max-width: 768px) {
    #news-post aside ul li {
        padding: 10px 0;
    }
}

/*コンテンツ*/
#content p {
    margin-bottom: 18px;
    line-height: 1.8;
}
#content figure {
    margin-bottom: 20px;
}
#content a {
    color: #128FB9;
    transition: 0.3s;
}
#content a:hover {
    opacity: 0.8;
}
#content .btn_bl a {
    color: #FFFFFF;
}

/*黒ボタン*/
.btn_bl {
    display: inline-block;
    margin-top: 40px;
}
.btn_bl a {
    display: inline-block;
    width: 300px;
    padding: 18px 0;
    background: #000000;
    color: #FFFFFF;
    font-size: 1.4rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    transition: 0.3s;
}
.btn_bl a::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 5px;
    border-bottom: 1px solid #FFF;
    border-right: 1.5px solid #FFF;
    transform: skew(30deg);
    position: relative;
    top: -3px;
    left: 5px;
    transition: 0.3s;
}
.btn_bl a:hover {
    background: #1F1F1F;
}
.btn_bl a:hover::after {
    left: 8px;
}

#news-post .back-btn_wrap {
    text-align: center;
}

/*グラデーションボタン*/
.btn_gradient {
    display: inline-block;
}
.btn_gradient a {
    display: inline-block;
    width: 300px;
    padding: 18px 0;
    background: rgb(48,188,235);
    background: linear-gradient(120deg, rgba(48,188,235,1) 0%, rgba(22,86,164,1) 58%);
    background-size: 100%;
    background-position: center;
    color: #FFFFFF;
    font-size: 1.4rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    transition: 0.3s;
}
.btn_gradient a::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 5px;
    border-bottom: 1px solid #FFF;
    border-right: 1.5px solid #FFF;
    transform: skew(30deg);
    position: relative;
    top: -3px;
    left: 5px;
    transition: 0.3s;
}
.btn_gradient a:hover {
    background-size: 150%;
    background-position: 5% 50%;
}
.btn_gradient a:hover::after {
    left: 8px;
}

