﻿
.notice-container > .page-menu > a {
    height: 44px;
    border: 1px solid #999999;
    border-radius: 20px;
    box-sizing: border-box;
    color: #999999;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    padding: 0px 15px;
}
.notice-container > .page-menu > a:link { color: #999999; }
.notice-container > .page-menu > a:hover {
    background-color: #8cbdcd;
    border: 1px solid #8cbdcd;
    color: #ffffff;
}
.notice-container > .page-menu > a:active { color: #999999; }

.notice-container > .page-menu > a.active {
    background-color: #8cbdcd;
    border: 1px solid #8cbdcd;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .notice-container {
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        margin-top: 110px;
        margin-bottom: 40px;
    }

    .notice-container > .title {
        align-self: center;
        font-size: 24px;
        font-weight: 700;
    }

    .notice-container > .page-menu {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .notice-container > .page-menu > a {
        width: calc(50% - 10px);
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .notice-container > .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    .notice-container > .content > .box {
        width: 100%;
        border: 1px solid #999999;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        padding: 20px;
    }

    .notice-container > .content > .box > .title > h1 {
        color: #999999;
        font-size: 20px;
    }

    .notice-container > .content > .box > .word-box > p {
        width: 100%;
        color: #999999;
        font-size: 16px;
        line-height: 26px;
        text-align: justify;
        white-space: pre-wrap;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .notice-container {
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        margin: 70px 0px;
    }

    .notice-container > .title {
        align-self: center;
        font-size: 24px;
        font-weight: 700;
    }

    .notice-container > .page-menu {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .notice-container > .page-menu > a {
        width: calc(50% - 10px);
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .notice-container > .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }

    .notice-container > .content > .box {
        width: 100%;
        border: 1px solid #999999;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        padding: 20px;
    }

    .notice-container > .content > .box > .title > h1 {
        color: #999999;
        font-size: 20px;
    }

    .notice-container > .content > .box > .word-box > p {
        width: 100%;
        color: #999999;
        font-size: 16px;
        line-height: 26px;
        text-align: justify;
        white-space: pre-wrap;
    }
}

@media screen and (min-width: 1025px) {
    .notice-container {
        max-width: var(--page-max-width);
        width: var(--page-width);
        background-color: #ffffff;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 60px;
        margin: 310px 0px 80px 0px;
    }

    .notice-container > .title {
        align-self: center;
        font-size: 30px;
        font-weight: 700;
    }

    .notice-container > .page-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .notice-container > .content {
        max-width: var(--page-max-width);
        width: var(--page-width);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
    }

    .notice-container > .content > .box {
        width: 100%;
        border: 1px solid #999999;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        padding: 30px;
    }

    .notice-container > .content > .box > .title > h1 {
        color: #999999;
        font-size: 34px;
    }

    .notice-container > .content > .box > .word-box > p {
        width: 100%;
        color: #999999;
        font-size: 16px;
        line-height: 26px;
        text-align: justify;
        white-space: pre-wrap;
    }
}