body {
    margin: 0 auto;
}

.fv_wrapper {
    padding-bottom: 30px;
}

.report-title {
    margin: auto;
    width: 95vw;
    max-width: 500px;
    margin-top: 120px;
}

.genba {
    margin: 20px auto 0;
    width: 40%;
    max-width: 200px;
}

#article {
    padding: 32px 8px;
}

#article .art-inner{
    margin: 10px auto;
}

#article h1 {
    text-decoration: none;
    text-align: center;
    background-color: white;
}

#article .art-inner h2 {
    text-align: center;
}

#article .art-inner img {
    display: block;
    width: 50vw;
    margin: 12px 0;
    border: 1px solid #000;
    max-width: 350px;
    object-fit: cover;
    box-shadow: 8px 8px 0 #FFD900;
    aspect-ratio: 7 / 5;
}

#article a {
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center; 
    gap: 12px; /* 画像と文章の間隔 */
    text-decoration: underline;
    text-underline-offset: 4px;
}

#article .ul-report {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    justify-content: center;
    justify-items: center;
    max-width: 1100px;
    list-style: none;
    padding: 0 10px;
    margin: 0 auto;
}

#article a {
    text-decoration: none;
    color: var(--font-color);
    display: flex;
    gap: 12px;
}

#article .ul-reportl .li-report .article_fv {
    width: 40vw;
    max-width: 410px;
}

#article .ul-report .li-report p {
    max-width: 410px;
    text-decoration: underline;
    text-underline-offset: 4px
}

#article .ul-report .li-report .article_date {
    margin: 0;
}

#article .ul-report .li-report .article_head {
    margin: 12px 0;
    color: var(--main-color);
}

@media (min-width:500px) {
    #article a {
        display: block;
    }

    #article .art-inner h2 {
        font-size: 40px;
        text-align: left;
    }

    #article .ul-report .li-report .article_fv {
        width: 40vw;
        aspect-ratio: 3/2;
    }

    #article .ul-report .li-report p {
        width: 40vw;
    }

    #article .inner {
        position: relative;
    }

    #article .inner:before {
        content: "→";
        position: absolute;
        right: 8px;
        bottom: 8px;
        width: 40px;
        height: 40px;
        background-color: #FFD900;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: #000;
        border: 1px solid #000;
    }
}

@media (min-width:800px) {
    #article .ul-report .li-report .article_fv {
        width: 28vw;
        max-width: 330px;
    }

    #article .ul-report .li-report p {
        width: 28vw;
        max-width: 330px;
    }

    #article a {
        transition: transform 0.2s ease;
    }

    #article a:hover {
        transform: scale(1.05);
    }
}

/*********
ページネーション
**********/
#article .pagination {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

#article .pagination .pagination_btn {
    display: flex;
    gap: 8px;
}

#article .prev-page::before {
    content: "<";
}

#article .next-page::after {
    content: ">";
}

#article .pagination .current_page {
    border-radius: 40px;
    border: 1.5px solid #000;
    line-height: 1em;
    aspect-ratio: 1;
    padding: 8px;
    text-align: center;
    width: 1em;
    background-color: white;;
}