@charset "UTF-8";

/**
 * ニュース用スタイル
 * news.css
 */

/* ニュースカード */
.news-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ニュースヘッダー */
.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.news-date {
    color: #666;
    font-size: 14px;
}

.news-category {
    display: inline-block;
    background: #007bff;
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
}

/* ニュースタイトル */
.news-title {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    color: #333;
    line-height: 1.4;
}

/* ニュース画像 */
.news-image {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* ニュース本文 */
.news-content {
    /* style.cssにデザイン面の記述がありますが、必要があれば追加してください */
}

/* 折りたたみ表示 */
.news-content.collapsible {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-content.collapsible.expanded {
    -webkit-line-clamp: unset !important;
    display: block;
}

/* 続きを読むボタン */
.news-expand-btn {
    display: block;
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 0;
    margin-top: 15px;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
}

.news-expand-btn:hover {
    background: #e9ecef;
    color: #0056b3;
}

/* 追加メディアコンテナ */
.news-extra {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
}

/* YouTube埋め込み */
.news-video {
    margin: 15px 0;
}

.news-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
}

/* 関連ギャラリーリンク */
.news-gallery-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.gallery-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.gallery-link-btn:hover {
    background: #e9ecef;
}

.gallery-link-btn img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

/* ニュース一覧コンテナ */
.news-list {

}

/* トップページ新着セクション */
.news-latest-section {
    margin: 40px auto;
    padding: 0 20px;
}


/* ニュースなしの場合 */
.no-news {
    text-align: center;
    color: #999;
    padding: 40px;
}

/* タグセクション（ギャラリーと共通） */
.news-tag-section {
    margin: 30px 0;
    text-align: center;
}

.news-tag-section h3 {
    color: #333;
    margin-bottom: 15px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .news-card {
        padding: 15px;
    }

    .news-title {
        font-size: 1.1em;
    }

    .news-image img {
        max-height: 250px;
    }

    .gallery-link-btn {
        flex-direction: column;
        text-align: center;
    }

    .gallery-link-btn img {
        width: 80px;
        height: 80px;
    }
}