.article-box {
    margin: 40px 0;
    padding: 40px;
    background-color: var(--bg02);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* シンプル文字のみ */
h2 {
    font-size: 2.2rem;
    color: var(--text01);
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    font-weight: bold;
}

h2::before,
h2::after {
    display: none;
}

.article-box h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text01);
}

.article-number {
    color: var(--article-number);
    font-weight: bold;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.article-box p {
    color: var(--text01);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

/* 記事専用のh4スタイル（タグ風） */
.article-box h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--text02);
    font-weight: bold;
    display: inline-block;
    background-color: var(--article-h4-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
}

/* 疾患リスト（3列グリッド） */
.disease-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.disease-list li {
    padding: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    background-color: var(--bg01);
}

/* 料金リスト（項目名左、料金右） */
.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: var(--item-bg);
    font-weight: bold;
    width: 100%;
}

.price-item {
    text-align: left;
    color: var(--text01);
}

.price-amount {
    text-align: right;
    color: var(--text01);
}



/* 記事内画像のスタイル */
.article-picture {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* スマホ版（768px以下）で2個横並びの3列に変更 */
@media (max-width: 768px) {
    .article-box {
        padding: 15px;
        margin: 15px 0;
    }
    
    .disease-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h2 {
        font-size: 1.8rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .article-box h3 {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .article-number {
        font-size: 2rem;
    }
    
    .article-picture {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}

.note {
    margin: 40px 0;
    padding: 20px;
    border: 2px solid var(--border01);
    border-radius: 8px;
    position: relative;
}

.note-title {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--note-title-bg);
    color: var(--note-title-text);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.note-content {
    margin-top: 10px;
}

.note-content p {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: var(--text01);
    line-height: 1.6;
    text-indent: -1em;
    padding-left: 1em;
}

.note-content p:last-child {
    margin-bottom: 0;
}
