

/* ////////////////////////////////////////
// news cms
//////////////////////////////////////// */
.news-list{
    width: 100%;
}
.news-item {
    background-image: linear-gradient(to right, #88B5C4, #88B5C4 4px, transparent 4px, transparent 8px);
    background-size: 8px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding: 20px;
    width: 100%;
    text-align: left;
    letter-spacing: 0.02em;
    line-height: 2;
    list-style: none;
}
.news-item a{
    text-decoration: underline;
    color: #003B51;
}
.news-date{
    display: block;
    color: #404040;
    font-weight: 700;
    margin-bottom: 8px;
}
.news-more {
    text-align: right;
    color: #88B5C4;
    margin-top: 42.5px;
    letter-spacing: 0.02em;
    margin-right: 3%;
}
.news-item:first-of-type .news-date{
    position: relative;
}
.news-item:first-of-type .news-date::after {
    content: 'NEW';
    display: block;
    background: #FF7979;
    padding: 0 12px;
    display: inline-block;
    font-size: 12px;
    color: #fff;
    margin-right: 0;
    margin-left: 10px;
    border-radius: 3px;
    letter-spacing: 0.06em;
}
.news-category {
    font-size: 14px;
    padding: 4px 16px;
    border: 1px solid #88B5C4;
    color: #88B5C4;
    border-radius: 50px;
    margin-right: 20px;
}

@media screen and (max-width: 1024px) {}



/* ////////////////////////////////////////
// お知らせ詳細
//////////////////////////////////////// */
/* @media screen and (min-width: 1025px) {
    body.dvh-container {
        display: grid;
        grid-template-rows: auto 1fr auto;
        min-height: 100vh;
    }
} */

.bl_news-list,.bl_news-detail {
    margin-top: 170px;
}
.bl_news-list .container,
.bl_news-detail .container{
    margin-top: 100px;
    margin-bottom: 100px;
}
.news-meta time{
    font-size: 16px;
    margin-right: 8px;
    color: #404040;
    font-weight: 700;
}
.news-detail h1{
    font-size: 28px;
    font-weight: 400;
    margin: 28px 0 0;
    position: relative;
    padding-left: 32px;
}
.news-detail h1::before{
    content: '';
    display: block;
    background: #003B51;
    width: 20px;
    height: 3px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}
.news-content{
    padding: 30px 30px 40px;
}
.news-content p{
    font-size: 16px;
    line-height: 1.75;
}
article.news-detail {
    background-image: linear-gradient(to right, #88B5C4, #88B5C4 4px, transparent 4px, transparent 8px);
    background-size: 8px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
.news-nav{
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 100px;
    position: relative;
}
.news-nav a{
    color: #fff;
    text-decoration: none;
    padding: 14px 45px 14px 55px;
    display: block;
    margin-top: 64px;
    background: #003B51;
    border-radius: 80px;
    font-size: 16px;
}
.news-nav::after {
    content: '';
    display: block;
    background: url('/assets/images/common/ico_arrow_left.svg') no-repeat center top;
    width: 8px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.news-content a{
    text-decoration: underline;
    color: #88B5C4;
}
@media screen and (max-width: 1024px) {
    .bl_news-detail {
        margin-top: 150px;
        margin-bottom: 200px;
    }
    .news-detail h1{
        font-size: 24px;
    }
    .news-detail h1::before{
        content: '';
        width: 20px;
        height: 3px;
        border-radius: 50px;
        position: absolute;
        top: 20px;
        left: 0%;
        transform: unset;
    }
    .news-content {
        padding: 25px 15px 40px;
    }
    .bl_news-list .news-item{
        padding-left: 0;
    }
    .news-date{
        width: fit-content;
        display: inline-block;
        margin-right: 10px;
    }
    .news-category{
        margin-right: 0;
    }
    .news-item a {
        display: block;
    }

}

/* pagination */
.pagination {
    margin: 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}
.pagination li {
    display: inline-flex;
}
.pagination li a,
.pagination li.current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0; /* 薄いボーダー */
}  
.pagination li a {
    color: #4a5568;
    background-color: #fff;
}
.pagination li a:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pagination li.current {
    background-color: #003B51;
    border-color: #003B51;
    color: #fff;
    cursor: default;
}
.pagination li a[href*="page"] {
    font-size: 0.9rem;
}
