/* 各固定ページの共通レイアウト */
.page-main {
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    padding: 40px 0;
}



.page-container {
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
}

.page-container p,
.page-container ul {
    line-height: 1.8;
    color: var(--dark-text);
}

.page-container ul {
    margin: 10px 0 20px 20px;
    list-style: disc;
}

/* セクション見出し（共通クラス） */
.section-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 32px;
    background-color: var(--accent-color);
    margin-right: 12px;
    border-radius: 2px;
}


.note {
    font-size: 0.85em;
    color: var(--note-color);
    margin-top: 10px;
    text-align: left;
    line-height: 1.4;
}
