/* ページタイトルの統一スタイル */
.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

/* タイトル付きセクション（PC版1行表示） */
.page-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.page-header-inline .page-title {
    margin-bottom: 0;
}

/* タイトル付きセクション（2段表示） */
.page-header-block {
    margin-bottom: 1.5rem;
}

.page-header-block .page-title {
    margin-bottom: 1rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header-block .page-title {
        margin-bottom: 0.75rem;
    }
}

/* h1, h2タグのリセット（既存のh2などに適用） */
h1.page-title,
h2.page-title {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom: inherit;
}
