/* page.css */

.static-page {
    padding: 60px 0;
    background-color: #fff;
}

.static-page .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

.static-page__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.static-page__content {
    font-size: 16px;
    line-height: 1.8;
}

.page-heading {
    height: 90px;
    width: 100%;
    background-color: #EAF5FF;
    display: flex;
    align-items: center;
}

.page-heading-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-heading h1 {
    font-size: 36px;
    font-family: 'M PLUS 1p', sans-serif;
    text-align: center;
    color: #788A9B;
    margin: 0;
}

.static-page__content h2 {
    font-size: 24px;
    background-color: #F1F1F1;
    padding: 13px 15px;
    margin: 2em 0 1em;
    border-left: 10px solid #333333;
    font-weight: bold;
}

.static-page__content p {
    color: #505050;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.static-page__content ul,
.static-page__content ol {
    margin: 1em 0 1em 1.5em;
    padding-left: 0;
    color: #505050;
    font-size: 18px;
    line-height: 1.8;
}

.static-page__content a {
    color: #0000EE;
    text-decoration: underline;
}

.static-page__content a:hover {
    color: #3333FF;
    text-decoration: none;
}

.static-page__content li {
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .page-heading h1 {
        font-size: 26px;
    }

    .static-page {
        padding: 30px 0;
    }

    .static-page__content h2 {
        font-size: 20px;
    }

    .static-page__content p {
        font-size: 16px;
    }

    .static-page__content ul,
    .static-page__content ol {
        font-size: 16px;
    }
}