* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.privacy-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ヘッダー */
.privacy-header {
    padding: 100px 0 70px;
    text-align: center;
    border-bottom: 1px solid rgba(45, 106, 106, 0.15);
    margin-bottom: 90px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.brand-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2d6a6a;
    letter-spacing: 10px;
    margin: 0;
    font-feature-settings: "palt";
    text-transform: none;
    line-height: 1.2;
}

/* メインコンテンツ */
.privacy-main {
    flex: 1;
    padding-bottom: 100px;
}

.privacy-content {
    background: #ffffff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.title-section {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(45, 106, 106, 0.12);
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 400;
    color: #2d6a6a;
    margin-bottom: 16px;
    letter-spacing: 3px;
    font-feature-settings: "palt";
}

.page-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
    font-feature-settings: "palt";
}

.policy-section {
    margin-bottom: 80px;
}

.policy-section:last-of-type {
    margin-bottom: 0;
}

.info-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(45, 106, 106, 0.08);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-feature-settings: "palt";
}

.info-value {
    font-size: 15.5px;
    color: #2a2a2a;
    line-height: 2;
    letter-spacing: 0.2px;
    font-feature-settings: "palt";
    font-weight: 400;
    margin-bottom: 12px;
}

.info-value:last-child {
    margin-bottom: 0;
}

.info-note {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 2;
    letter-spacing: 0.2px;
    font-feature-settings: "palt";
    font-weight: 400;
    margin-top: 8px;
    padding-left: 0;
}

/* フッター */
.privacy-footer {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid rgba(45, 106, 106, 0.12);
    margin-top: 100px;
}

.footer-text {
    font-size: 12px;
    color: #8a8a8a;
    letter-spacing: 1.5px;
    font-weight: 300;
    font-feature-settings: "palt";
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .privacy-container {
        padding: 0 40px;
    }

    .privacy-header {
        padding: 70px 0 50px;
        margin-bottom: 70px;
    }

    .brand-title {
        font-size: 38px;
        letter-spacing: 7px;
    }

    .title-section {
        margin-bottom: 60px;
        padding-bottom: 32px;
    }

    .page-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .page-title-jp {
        font-size: 22px;
    }

    .policy-section {
        margin-bottom: 60px;
    }

    .info-item {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .info-label {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .info-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0 24px;
    }

    .privacy-header {
        padding: 60px 0 40px;
    }

    .brand-title {
        font-size: 30px;
        letter-spacing: 5px;
    }

    .title-section {
        margin-bottom: 50px;
        padding-bottom: 28px;
    }

    .page-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .page-title-jp {
        font-size: 20px;
    }

    .info-label {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .info-value,
    .info-note {
        font-size: 14.5px;
    }
}

