/* Webフォントの設定 */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

:root {
    --outline-color: #ff8d23;
    --main-color: #ffbe82;
}

*:not(#post, select option) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    color: #1f1f1f;
}

select option {
    text-align: left;
}

#post {
    margin-right: auto;
    margin-left: auto;
    color: #1f1f1f;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--main-color);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.box {
    width: 95%;
    margin-top: 30px;
    border: 3px solid var(--outline-color);
    border-top: 30px solid var(--outline-color);
    border-radius: 10px;
    & p {
        font-size: 20px;
        padding: 10px;
    }
}

.main_title {
    width: 95%;
    margin-top: 30px;
    border: 3px solid var(--outline-color);
    border-top: 30px solid var(--outline-color);
    border-radius: 10px;
    & h1 {
        font-size: 40px;
        padding: 10px;
    }
}

.page_menu {
    width: 95%;
    margin-top: 30px;
    border: 3px solid var(--outline-color);
    border-radius: 10px;
    & ul {
        list-style: none;
        padding: 0;
        & li {
            display: inline;
            padding: 10px;
            & a {
                text-decoration: none;
                color: #1f1f1f;
                font-size: 20px;
            }
        }
    }
}

.sep_line {
    width: 90%;
    margin-top: 30px;
    border-top: 3px solid #1f1f1f;
}

.modern_table {
    width: 95%;
    margin-top: 10px;
    border: 3px solid var(--outline-color);
    border-radius: 10px;
    & table {
        width: 100%;
        border-collapse: collapse;
        & th, td {
            border: 1px solid var(--outline-color);
            padding: 10px;
        }
    }
}

textarea.text_input {
    width: 90%;
    height: 200px;
    padding: 10px;
    font-size: 20px;
    border: 3px solid var(--outline-color);
    border-radius: 10px;
}

.text_input {
    width: 95%;
    padding: 10px;
    font-size: 20px;
    border: 3px solid var(--outline-color);
    border-radius: 10px;
}

.form_button {
    margin-top: 10px;
    width: 40%;
    padding: 10px;
    font-size: 20px;
    border: 3px solid var(--outline-color);
    border-radius: 10px;
    background-color: var(--outline-color);
    color: #1f1f1f;
    cursor: pointer;

    &:hover {
        background-color: var(--main-color);
    }
}

.error_message {
    color: red;
    font-size: 18px;
}

.post_title {
    font-size: 40px;
}

.username {
    font-size: 20px;
}

.post_comment {
    font-size: 20px;
}

.sub_title {
    font-size: 28px;
}