@charset "UTF-8";

/* ==========================================================================
   コラムページ専用スタイリング
   （HTMLの body に class="column-page" を指定してください）
   ========================================================================== */

.column-page {
    /* 丸ゴシック系のソフトな書体を優先的に適用 */
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic UI", "Meiryo UI", sans-serif;
    background-color: #f7f5f0; /* 少し温かみのある背景色 */
    color: #444444;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

/* コラム全体の飾り罫枠 */
.column-container {
    max-width: 650px;
    width: 100%;
    background-color: #ffffff;
    /* 飾り罫（二重線）のデザイン設定 */
    border: 4px double #bcaaa4; 
    border-radius: 12px; /* ソフトな印象にする角丸 */
    padding: 35px 30px 30px 30px;
    margin: 20px auto;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

/* 枠の上の「コラム」ラベル */
.column-badge {
    position: absolute;
    top: -15px; /* 枠線の真上に乗せる調整 */
    left: 30px;
    background-color: #bcaaa4; /* 飾り罫と同色のシックなトーン */
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 3px 15px;
    border-radius: 20px;
    letter-spacing: 2px;
}

/* コラムタイトル */
.column-title {
    font-size: 22px;
    color: #5d403 brown; /* 深みのあるブラウンでソフトさを維持 */
    color: #5d4037;
    margin-top: 5px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0d8d5; /* タイトル下の可愛い点線 */
    line-height: 1.4;
}

/* 本文エリア */
.column-content p {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: justify; /* 文末を綺麗に揃える */
}

/* 批判のポイントなどを際立たせるマイルドな強調 */
.highlight-text {
    background: linear-gradient(transparent 60%, #fff9c4 60%); /* 蛍光ペン風のアンダーライン */
    font-weight: bold;
    color: #c0392b;
}

/* 挿絵エリアのスタイリング */
.column-image-box {
    text-align: center;
    margin: 25px 0;
}
.column-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.column-image-caption {
    font-size: 13px;
    color: #6d4c41;
    margin-top: 8px;
    font-weight: bold;
}

/* フッター（日付やリンク） */
.column-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888888;
}

.back-link {
    color: #5d4037;
    text-decoration: none;
    font-weight: bold;
}
.back-link:hover {
    text-decoration: underline;
}