section .newsbox ul {
    margin-bottom: min(4vw, 60px);
}

section .newsbox li {
    margin-bottom: 1em;
}

section .newsbox li a {
    display: flex;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(45deg, #fff1f9, #fff);
    padding: min(3vw, 40px) 2em;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    outline: 1px solid #ffbce2;
    outline-offset: -8px;
    color: var(--gray);
}

section .newsleft {
    width: 95%;
}

section .newsright {
    width: 5%;
    display: flex;
    align-items: center;
}

section .news_date {
    font-size: min(3vw, 16px);
    margin-right: 2em;
    color: #fe56b6;
}

section .news_ttl {
    font-size: min(3.5vw, 20px);
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
}

section .newsbox .newsright p {
    font-size: 24px;
    transition: 0.2s;
    color: #fe56b6;
}

section .newsbox .newsright p::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../img/arrow.png);
    background-size: cover;
    background-position: center center;
}

section .newsbox li a:hover .newsright p {
    margin-left: 1em;
}

.news_in .content .imgbox img {
    width: 100%;
    margin-bottom: 1em;
}

.news_in .content .news_ttl {
    font-weight: 700;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    border-bottom: 4px dotted var(--pink2);
}

.news_in .content .news_text {
    font-weight: 400;
    line-height: 2;
}

.news_in .content .videobox iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1em;
}

@media screen and (max-width:800px) {
    section .newsbox .newsright p::after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../img/arrow.png);
        background-size: cover;
        background-position: center center;
    }

    section .newsbox .newsbox li a:hover .newsright p {
        margin-left: 0.5em;
    }


    section .newsbox li a {
        outline-offset: -4px;
        padding: min(3vw, 40px) 1.5em;
    }
}
