/*
 * ファイル名: public/css/column/category/pores/2.css
 * 記事テーマ: 私の毛穴（体験談・カミングアウト）
 */

/* ----------------------------------
 * 1. 基本設定（pores/1.cssと共通部分が多い）
 * ---------------------------------- */
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
}

.article-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); /* 影を少しソフトに */
    border-radius: 8px;
}

.container {
 text-align: left !important;
}

/* ----------------------------------
 * 2. タイトルと見出し
 * ---------------------------------- */
.article-title {
    font-size: 2.3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 3px dashed #e74c3c; /* 感情を込めた赤系にアクセント変更 */
    padding-bottom: 10px;
}

h2 {
    font-size: 1.7em;
    color: #c0392b; /* 告白や共感を示す赤系 */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #e74c3c;
    padding-left: 15px;
}

/* ----------------------------------
 * 3. イントロ・カミングアウトセクション
 * ---------------------------------- */
.intro-section .lead-text {
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
    border-left: 4px solid #f39c12;
    padding-left: 15px;
    margin-bottom: 30px;
}

.confession-section h2 {
    color: #e74c3c;
    border-color: #e74c3c;
}

/* 引用ボックス (カミングアウトの感情を強調) */
.quote-text {
    background-color: #fef8f8; /* わずかにピンクがかった背景 */
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
}

/* ----------------------------------
 * 4. リスト（過去の失敗）
 * ---------------------------------- */
.check-list {
    list-style: none;
    padding-left: 0;
}
.check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px dotted #eee;
    padding-bottom: 5px;
    font-size: 0.95em;
    line-height: 1.5;
}
.check-list li::before {
    content: "💔"; /* 失敗を示すハートマーク */
    position: absolute;
    left: 0;
    top: 0;
}

/* ----------------------------------
 * 5. 決意ボックス
 * ---------------------------------- */
.determination-box {
    text-align: center;
    background-color: #ecf0f1;
    border: 2px solid #3498db;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.determination-box p {
    margin: 5px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.determination-box p:last-child {
    color: #3498db;
    font-size: 1.2em;
}

/* ----------------------------------
 * 6. 戻るボタンなど（共通部分）
 * ---------------------------------- */
.back-button-container {
    text-align: center;
    margin-top: 50px;
}

.btn-back {
    display: inline-block;
    padding: 10px 25px;
    background-color: #7f8c8d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-back:hover {
    background-color: #555;
}