.news {
    /* display: flex; */
    text-align: center;
}

#key {
	background-image: url(../img/index/key.jpg);
}
/* 追加 11月22日　小河原貫志*/
.front-blog__item {
	width: 33.3333%;
}
/* 追加 11月19日　小河原貫志 margin*/
.wrap,.clearfix{
    margin: 0 auto;
}
#pagetop.visible {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 999;
}
.col .clearfix {
    display: flex;
}
.clearfix dd {
    margin: 0;
}
#socialbuttons.clearfix {
    display: flex;
    justify-content: center;
}  
footer address {
    font-style: normal;
}
/* 追加 11月22日　小河原貫志*/
.nav-inline ul {
	display: flex;
    justify-content: center;
    gap: 10px;
}
/* 追加 12月5日　小河原貫志*/
.nav-inline ul li a {
	color: #8e8e8e;
}

/* ===================================
   ブログ一覧 - ミニマルデザイン
=================================== */

#ajax-load-more .alm-listing,.alm-ajax,.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.news_item {
    background: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* サムネイル */
.news_item .thumb {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news_item .thumb img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news_item:hover .thumb img {
    transform: scale(1.05);
}

/* コンテンツエリア */
.news_item h2 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 16px 20px 8px;
    color: #333;
}

.news_item h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news_item h2 a:hover {
    color: #C2185B;
}

/* 日付 */
.news_item .news_date {
    font-size: 0.75rem;
    color: #999;
    margin: 0 20px 12px;
    letter-spacing: 0.5px;
}

/* 抜粋 */
.news_item .excerpt {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #666;
    margin: 0 20px 20px;
    min-height: 4.5em;
}

/* 続きを読むボタン */
.news_item .readmore {
    margin: 0 20px 20px;
}

.news_item .readmore a {
    display: inline-block;
    padding: 6px 14px;
    border: 2px solid #C2185B;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.news_item .readmore a:hover {
    background: #C2185B;
    color: #fff;
}
.thumb img {
    margin: 0 auto;
}   


/* レスポンシブ */
@media (max-width: 900px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 16px;
        margin: 0 auto;
    }
    
    .news_item h2 {
        font-size: 0.95rem;
    }
}



