.section-1{
    width: 100%;
    height: 380px;
}
.section-1 h1{
    position: absolute;
    top: 200px;
    left: 100px;
    font-size: 40px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.section-2{
    width: 90%;
    height: auto;
    min-height: 300px;
    margin: 50px auto 160px auto;
    text-align: center;
    justify-content: space-around;
}
/* 個別ページ用 */
#date{
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    color: #999;

}
#title{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans JP', sans-serif;
}
#content{
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 20px 0;
}
#content p, #content img{
    margin-bottom: 20px;
    
}
.button{
    font-family: 'Carrois Gothic', sans-serif;  
    border-bottom: 1px solid; 
    font-weight: 600;
    width: 150px;
    margin: 50px auto;
    padding-bottom: 0.5%;
    text-align: center;
    justify-content: space-around; 

}
.button:hover, .button a:hover{
    color: #47763c;
    cursor: pointer;
}
.button a{
    text-decoration: none;
    color: #212121;
    width: 300px;
}
/*  */

/* newsトップ用 */
.news-feed{
    list-style: none;
    width: 70%;
    margin: 10px auto;
}
.news-item{
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.news-content{
    text-align: left;
}
.news-content .date{
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 3px 0;
    font-family: 'Inter', sans-serif;
}
.news-content .title{
    font-size: 18px;
    margin: 0;
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-weight: normal;
    font-family: 'Inter', sans-serif;
    padding-left: 1%;
}
.news-content a{
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-content a:hover{
    color: #47763c;
    cursor: pointer;
}
/* pagenation */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-top: 3%;
}

.wp-pagenavi span.current {
    background: #333;
    color: #fff;
    border-color: #333;
}
.wp-pagenavi span.pages {
    display: none;
}
@media (max-width: 700px){
    .section-1{
        height: 30vh;
        width: 100%;
    }
    .section-1 h1{
        position: absolute;
        top: 20%;
        left: 10%;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 28px;
    }
    #title{
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .news-feed{
        width: 90%;
        margin: 30px auto;
    }
    .button{
        width: 42%;
        margin: 30px auto;
    }
}
