/* Front Page Banner Styles */
/* 上書きスタイル：.imgコンテナをFlexbox化 */
body .post_area {
    letter-spacing: 0;
}

.top01 .mv .txt .img {
    display: flex;
    align-items: baseline;
    gap: 20px;
    max-width: none !important; /* 490px制限を解除 */
}

.top01 .mv .txt .img > a {
    flex: 0 0 1;
}

.banner-container {
    /* 既存のリセット */
    position: static;
    width: 480px; /* 横長にするため幅を広げる */
    max-width: 100%;
    margin-top: -10px; /* 微調整 */
}

.news-banner {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 430px;
}

.news-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.news-banner a {
    text-decoration: none;
    color: inherit;
    display: flex; /* Flexレイアウトに変更 */
    align-items: center;
}

/* サムネイル（左側） */
.news-banner-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    order: 1; /* 順序を1番目に指定して左側に配置 */
}

.news-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-banner:hover .news-banner-image img {
    transform: scale(1.05);
}

/* テキストブロック（右側） */
.news-banner-content {
    padding: 15px;
    flex-grow: 1;
    order: 2; /* 順序を2番目に指定して右側に配置 */
}

.news-banner-label {
    display: inline-block;
    background: #c0392b; /* Red/Accent color */
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.news-banner-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px;
    line-height: 1.4;
    color: #333;
}

.news-banner-excerpt {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .top01 .mv .txt .img {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 90% !important; /* SPでの幅制限を戻す */
        margin: 20px auto 50px;
    }

    /* モバイル：バナー群を縦並び */
    .banner-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100%; /* 横幅を親要素に合わせる */
        max-width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        z-index: 1;
    }
    
    .news-banner {
        /* SPではスタイル継承 */
        max-width: 100%;
        margin-bottom: 15px; /* 複数ある場合の余白 */
    }
    
    /* SPでも同じレイアウトを維持 */
    .news-banner-image {
        width: 100px;
        height: 100px;
    }

    .news-banner-content {
        padding: 10px 15px;
        text-align: left;
    }
    
    .news-banner-title {
        font-size: 14px;
        text-align: left;
    }
    
    .news-banner-excerpt {
        display: block;
        text-align: left;
    }
}
