body { font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; line-height: 1.7; color: #333; background-image: url("../img01/bkg01.jpg"); background-repeat: no-repeat; background-size: cover; background-attachment: fixed; margin: 0; padding: 0; }     
header { background-color: transparent; border-bottom: 1px solid #e0e0e0; padding: 15px 0; text-align: center; }
/* タイトルバナー（サイズ400px制限） */
.header-logo { width: 100%; max-width: 400px; height: auto; display: block; margin: 0 auto; }
.container { max-width: 900px; margin: 40px auto; padding: 0 20px; }
/* サイト紹介エリア（開設の思い） */
.intro { background-color: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-bottom: 30px; border-left: 5px solid #333; }
.intro h2 { margin-top: 0; font-size: 22px; color: #111; margin-bottom: 20px; }
.intro p { font-size: 15px; margin-bottom: 15px; }
/* 参考サイトリンク */
.reference-links { margin-top: 20px; padding-top: 15px; border-top: 1px dashed #ddd; font-size: 14px; color: #555; }
.reference-links a { color: #c0392b; text-decoration: none; font-weight: bold; }
.reference-links a:hover { text-decoration: underline; }
/* 管理人プロフィール */
.profile-box { background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 6px; padding: 15px 20px; margin-top: 25px; }
.profile-title { font-size: 13px; font-weight: bold; color: #555; margin-bottom: 5px; }
.profile-text { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }
/* 新着情報エリア */
.news-section { background-color: #ffffff; padding: 20px 25px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-bottom: 40px; }
.news-section h2 { font-size: 18px; margin-top: 0; margin-bottom: 15px; color: #111; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.news-list { list-style: none; padding: 0; margin: 0; }
.news-item { padding: 10px 0; border-bottom: 1px dashed #eee; font-size: 14px; display: flex; align-items: baseline; }
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-date { font-weight: bold; color: #777; margin-right: 15px; flex-shrink: 0; }
.news-badge { background-color: #c0392b; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 3px; margin-right: 10px; font-weight: bold; flex-shrink: 0; }
.news-text a { color: #333; text-decoration: none; } 
.news-text a:hover { text-decoration: underline; color: #c0392b; }
/* ジャンルごとのセクションスタイル */
.genre-section { margin-bottom: 40px; }
.genre-title { font-size: 20px; color: #2c3e50; border-bottom: 2px solid #2c3e50; padding-bottom: 5px; margin-bottom: 20px; font-weight: bold; }
     
/* 記事一覧グリッド（レスポンシブ向上のためminmaxを300pxに調整） */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
     
/* サブタイトルのスタイル定義 */
.card-subtitle { font-size: 14px; color: #7f8c8d; margin-top: -8px; margin-bottom: 10px; font-weight: normal; }
     
/* カードの基本設定 */
.card { background: #ffffff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 25px; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; justify-content: space-between; }
.card:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.card h3 { margin-bottom: 12px; font-size: 19px; margin-top: 0; color: #111; }
/* サブタイトルがある場合の調整 */
.card h3.has-subtitle { margin-bottom: 8px; }
.card.highlight h3 { color: #c0392b; }
.card p { font-size: 14px; color: #555; flex-grow: 1; margin: 10px 0 20px 0; line-height: 1.6; }
.read-more { display: inline-block; background-color: #333; color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 4px; font-size: 13px; font-weight: bold; text-align: center; transition: background-color 0.2s; }
.read-more:hover { background-color: #c0392b; }
footer { text-align: center; padding: 20px 0; font-size: 14px; color: #777; border-top: 1px solid #e0e0e0; background-color: #fff; margin-top: 60px; }

/* コラム枠専用の差別化スタイル */
.card.column-card {
    background-color: #fcf8f2; /* 淡いベージュで読み物感を演出 */
    border-left: 5px solid #8e7355; /* 左側にブラウンのアクセント線 */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.card.column-card h3 {
    color: #5c4731; /* 柔らかいダークブラウン of 文字色 */
    display: flex;
    align-items: center;
}
/* 文字化け対策：CSSで正方形を直接描画 */
.card.column-card h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #8e7355;
    margin-right: 8px;
    flex-shrink: 0;
}
.card.column-card .read-more {
    background-color: #8e7355; /* コラムの世界観に合わせたボタン色 */
}
.card.column-card .read-more:hover {
    background-color: #a68b6d;
}

/* スマートフォン向けメディアクエリ（ブレイクポイントを640pxに微調整） */
@media (max-width: 640px) {
    .article-grid { grid-template-columns: 1fr; }
    .news-item { flex-direction: column; align-items: flex-start; }
    .news-date { margin-bottom: 5px; }
}