/* --- ブログ記事ページ --- */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.2rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 15px;
    font-weight: 700; /* ★追加: 太字に */
}

.post-date {
    font-family: 'Rajdhani', sans-serif;
    color: #808090;
    font-size: 1rem;
}

.post-content .lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c0c0d0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700; /* ★変更: 太字に */
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #00f2ff;
    color: #ffffff;
    line-height: 1.4; /* ★追加: 行間を調整 */
}

.post-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 2; /* ★変更: 行間を広げて読みやすく */
    margin-bottom: 25px;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px) {
    .post-title {
        font-size: 1.8rem;
    }
}
/* --- ブログ記事内の配信リンク --- */
.post-streaming-links {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-streaming-links p {
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    color: #d0d0d0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.post-streaming-links .store-button {
    margin: 5px 8px;
}

/* --- パンくずリスト --- */
.breadcrumb {
    max-width: 800px;
    margin: 0 auto 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #a0a0b0;
}

.breadcrumb a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
}
/* --- Summary Box --- */
.summary-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #c18cff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.summary-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f0f0f0;
    font-weight: 700; /* ★追加: 太字に */
}

.summary-box ul {
    list-style: none;
    padding-left: 0;
}

.summary-box li {
    font-family: 'Noto Sans JP', sans-serif;
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.8; /* ★追加: 行間を調整 */
}

.summary-box li::before {
    content: '✓';
    color: #c18cff;
    position: absolute;
    left: 0;
}

/* --- Blockquote in post --- */
.post-content blockquote {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
    margin: 20px 0;
    color: #c0c0d0;
    font-style: italic;
}
/* 関連記事のサムネイル画像の調整 */
.blog-list-related .blog-thumbnail-related img {
    width: 100%; /* 親要素の幅いっぱいに広げる */
    height: auto; /* アスペクト比を維持 */
    display: block; /* 余分な余白を削除 */
    max-width: 150px; /* 必要に応じて最大幅を設定 */
    aspect-ratio: 16 / 9; /* サムネイル画像の理想的なアスペクト比を設定 (例: 16:9) */
    object-fit: cover; /* 画像がコンテナを覆うように拡大・縮小し、はみ出た部分は切り取る */
    border-radius: 8px; /* 角を丸める（任意） */
}

/* 親要素のコンテナに対する調整 (必要に応じて) */
.blog-list-related .blog-thumbnail-related {
    flex-shrink: 0; /* flexアイテムとして縮小させない */
    width: 150px; /* サムネイルコンテナの固定幅を設定 */
    margin-right: 15px; /* 右側の余白 */
    overflow: hidden; /* はみ出しを隠す */
}

/* リンク全体の高さ調整 (必要に応じて) */
.blog-list-related .blog-link-related {
    align-items: flex-start; /* 上揃えにする */
}