/*
 * ファイル名: public/css/column/category/acne/shikori.css
 * 記事テーマ: しこりニキビの治し方（情報提供）
 */

/* ----------------------------------
 * 1. 基本設定
 * ---------------------------------- */
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.75; /* 行間を広げ、読みやすさを向上 */
    color: #333;
    background-color: #f9f9f9;
    text-align: left; /* テキストは左寄せ */
}

.article-container {
    max-width: 850px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

/* ----------------------------------
 * 2. タイトルと見出し
 * ---------------------------------- */
.article-title {
    font-size: 2.1em;
    font-weight: 700;
    color: #c0392b; /* 炎症をイメージした深めの赤 */
    margin-bottom: 25px;
    border-bottom: 3px solid #e74c3c; /* 強い赤のライン */
    padding-bottom: 15px;
}

h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 45px;
    margin-bottom: 20px;
    padding: 8px 0;
    border-left: 6px solid #e74c3c;
    padding-left: 15px;
    background-color: #fceae9; /* 薄い背景色でセクション分け */
}

h3 {
    font-size: 1.4em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px dotted #e74c3c;
    padding-bottom: 5px;
}

h4 {
    font-size: 1.1em;
    color: #c0392b;
    margin: 10px 0;
    font-weight: 700;
}

/* ----------------------------------
 * 3. 記事本文
 * ---------------------------------- */
.intro-section .lead-text {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    border-left: 4px solid #f39c12;
    padding-left: 15px;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    text-align: left; /* 明示的に左寄せ */
}


/* ----------------------------------
 * 4. リスト（ニキビの進行・治療法など）
 * ---------------------------------- */
.acne-stages, .medical-care, .self-care, .distinction-points, .prevention-methods {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.acne-stages li, .distinction-points li {
    background-color: #fff;
    border: 1px solid #f39c12;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}
.acne-stages li h4, .distinction-points li h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #e67e22; /* ステージの色 */
}

.medical-care li, .self-care li, .prevention-methods li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px;
}

.medical-care li::before {
    content: "🏥";
    position: absolute;
    left: 0;
    top: 5px;
}
.self-care li::before {
    content: "💊";
    position: absolute;
    left: 0;
    top: 5px;
}
.prevention-methods li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
    top: 5px;
}

.article-image-wrapper {
    text-align: center; /* 画像を中央揃えにする */
    margin: 30px 0; /* 上下の余白 */
}

.article-image-responsive {
    max-width: 90%; /* コンテナ幅の90%に設定 */
    height: auto; /* 高さは自動調整 */
    display: block; /* 中央揃えを効かせるためブロック要素にする */
    margin: 0 auto;
    border: 1px solid #ddd; /* 視認性を高めるための細い枠線 */
    border-radius: 6px;
}

/* ----------------------------------
 * 5. 戻るボタンなど
 * ---------------------------------- */
.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;
}