.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* プライバシーポリシーの共通スタイル */
h1,
h2 {
    color: #333;
    margin-top: 1.5em;
}



p,
ul {
    line-height: 1.6;
}

.tabs {
    margin-top: 20px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.tab-button.active {
    background: #007bff;
    color: white;
}

.tab-content {
    background: #fff;
    padding: 0;
    border-radius: 5px;
}