@charset "UTF-8";

/* =========================================
   1. タイポグラフィと全体レイアウト
   ========================================= */
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #3e454d; /* 真っ黒を避け、高級感のある濃いグレーに */
    line-height: 1.9; /* 行間をさらに広げて可読性アップ */
    background-color: #fbfcff; /* ほんのり青みのある白で清潔感を */
}

.article-body {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}

/* 段落間の余白を広めに取り、「詰まった感」を解消 */
.article-body p {
    margin-bottom: 2.2rem;
}

/* =========================================
   2. 
   ========================================= */
/* H2: 存在感はあるが圧迫感のないデザイン */
.article-body h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 2.5rem;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(to right, #f8faff, #fff); /* 繊細なグラデーション */
    border-left: 6px solid #0d6efd;
    border-radius: 4px;
    color: #2c3238;
}

/* H3: 下線にドットを組み合わせて知的な印象に */
.article-body h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #eef0f2;
    position: relative;
}
.article-body h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #0d6efd; /* アクセントカラーの短い下線 */
}

/* =========================================
   3. カードとボックスのデザイン
   ========================================= */
/* リストアイテムを「浮き上がるカード」へ */
.article-body ul li {
    background: #fff;
    border: none; /* 枠線を消して影で見せるのが今風 */
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* 非常に柔らかい影 */
    transition: all 0.3s ease;
}

.article-body ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* メリット・デメリットの装飾（色を優しく） */
.pros-box {
    color: #1e7e34;
    background: #e6f4ea;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}
.cons-box {
    color: #d93025;
    background: #fce8e8;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* =========================================
   4. 比較表のアップグレード
   ========================================= */
.article-body table {
    border: none;
    box-shadow: 0 0 0 1px #eee; /* 薄い枠線 */
    border-radius: 12px;
}

.article-body th {
    background-color: #f8fafc;
    border-bottom: 2px solid #edf2f7;
    color: #4a5568;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   5. カスタムバッジ（初心者マークなど）
   ========================================= */
.badge-beginner {
    background: linear-gradient(135deg, #ffec99 0%, #ffc107 100%);
    color: #5c4300;
    border: none;
    padding: 5px 12px;
    border-radius: 50px; /* カプセル型 */
    font-size: 0.75rem;
    box-shadow: 0 2px 5px rgba(255, 193, 7, 0.3);
}

/* =========================================
   6. PR表記（ステマ規制対応）
   ========================================= */
.badge-pr {
    display: inline-block;
    font-size: 0.8rem;
    color: #6c757d; /* 落ち着いたグレー */
    background-color: #f0f2f5; /* 背景に馴染む薄いグレー */
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    letter-spacing: 0.05em;
}