body,
input,
select,
textarea,
button {
    font-size: 1.2rem;
    font-family: "Open Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans", "游ゴシック Medium",
        "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "sans-serif";
    color: rgb(77, 77, 77);
}
.disabled{
    pointer-events: none;
    opacity: 0.5;
}

#left-top {
    background-image: url("../img/bg-top.svg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top;
    background-size: 500px;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
}
#right-bottom {
    background-image: url("../img/bg-bottom.svg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right bottom;
    background-size: 750px;
    height: 100%;
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 0;
}
/*IE11*/
@media all and (-ms-high-contrast: none) {
    #left-top {
        background-position-x: 0%;
        background-position-y: -5%;
    }
    #right-bottom {
        background-position-x: 108%;
        background-position-y: 100%;
    }
}
/*IE10未満*/
@media all and (-ms-high-contrast: none) {
    #left-top {
        background-position-x: 0%;
        background-position-y: -5%;
    }
    #right-bottom {
        background-position-x: 108%;
        background-position-y: 100%;
    }
}
#wrap {
    height: 100%;
    min-height: 100vh;
}
.container {
    width: 1080px;
    margin: 100px auto 0 auto;
    z-index: 10;
}
.logo {
    width: 500px;
    height: 113.34px; /* IE用指定 */
}
h2 {
    margin: 1em 0 1em 0;
}
.login-table {
    margin: auto;
}
.editor-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
.editor-table th {
    vertical-align: top;
    text-align: left;
    min-width: 220px;
}
.editor-table td {
    padding-left: 1em;
}
.editor-table td input[type="text"],
.editor-table td input[type="email"],
.editor-table td input[type="password"],
.editor-table td select,
.editor-table td textarea {
    height: 30px;
    width: 100%;
}
.editor-table td input[type="radio"] {
    width: auto;
}
.form-section {
    background-color: #ffffff;
    border: none;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    height: auto;
    margin: 20px 0;
    padding: 20px;
}
.button-section {
    text-align: center;
}
.btn {
    background-color: rgb(0, 114, 57);
    border: solid 2px rgb(0, 114, 57);
    color: #fff;
    font-weight: bold;
    border-radius: 0em;
    margin: 2em 0 2em 0;
    padding: .8em 2.1em .8em 2.1em;
    /*padding: 10px 50px 10px 50px;*/
    text-align: center;
}
.btn.two {
    width: 10em;
}
.btn:hover {
    border: solid 2px rgb(1, 182, 91);
    background-color: rgb(1, 182, 91);
    color: #fff;
}
.btn-wide {
    width: 100%;
    padding: 2.1em 0 2.1em 0;
    margin: 20px 0 20px 0;
}
.btn.logout-btn {
    background-color: rgb(70, 70, 70);
    border: solid 2px rgb(70, 70, 70);
}
.btn.logout-btn:hover {
    background-color: rgb(112, 112, 112);
    border: solid 2px rgb(112, 112, 112);
}
.box-green {
    background-color: #fff;
    border: solid 2px rgb(0, 114, 57);
    color: rgb(0, 114, 57);
    font-weight: bold;
    text-align: center;
}
.box-green.big {
    padding: 1.5em 0 1.5em 0;
}
/* ボタンのグレーアウト */
.btn.closed {
    background-color: rgb(214, 214, 214);
    border: solid 2px rgb(26, 26, 26);
    color: rgb(37, 37, 37);
    pointer-events: none;
}
.btn.closed:hover {
    background-color: rgb(121, 121, 121);
    border: solid 2px rgb(121, 121, 121);
    pointer-events: none;
}
.announce {
    margin: 20px 150px 50px 150px;
    padding: 8px;
}
.input-section {
    padding: 0 0 0 12%;
}
.required {
    color: red;
    font-size: smaller;
    margin-left: 5px;
}
label {
    cursor: pointer;
}
label.error {
    color: red;
    font-size: small;
    font-weight: bold;
    cursor: auto;
    max-width: 374px;
}
.form-check-label {
    font-weight: bold;
}
.participation-radios {
    margin: 20px 0 20px 0;
}
.text-center {
    text-align: center;
}
.description {
    color: #838383;
    font-size: small;
}
.br-sp {
    display: none;
}
.terms {
    margin: 3em 0 3em 0;
}
.terms-header {
    font-weight: bold;
    text-align: center;
}
.terms-body {
    background-color: #ffffff;
    color: #585858;
    font-size: small;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1) inset;
    margin: 2em 0 2em .2em;
    padding: 10px;
    width: 100%;
    height: 200px;
    overflow: scroll;
    overflow-x: hidden;
}
.red {
    color: red;
}
.terms-check {
    color: red;
    text-align: center;
}
.bold-green {
    color: rgb(0, 114, 57);
    font-weight: bold;
}
footer {
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 10px;
    margin-top: 50px;
    z-index: 1;
}
.footer {
    color: #5a5a5a;
    background-color: rgba(245, 244, 244, 0.5);
    -webkit-box-shadow: 0px 0px 5px 5px rgba(49, 49, 49, 0.1);
    box-shadow: 0px 0px 5px 5px rgba(49, 49, 49, 0.1);
    font-size: medium;
    padding: 20px 0 20px 0;
    margin-top: 20px;
}
.contact-1 {
    padding-bottom: 6px;
    border-bottom: solid 1.8px;
}
.contact-2 {
    margin-top: 12px;
}
.copyright {
    color: #383838;
    font-size: smaller;
    margin: 10px 0 10px 0;
}
@media (min-width: 980px) {
    .editor-table {
        min-width: 800px; /* IE用指定 */
    }
    .editor-table th {
        width: 200px; /* IE用指定 */
    }
    select,
    input[type="file"] {
        -webkit-appearance: button;
        appearance: button;
    }
    .editor-table td input[type="text"],
    .editor-table td input[type="email"],
    .editor-table td input[type="password"],
    .editor-table td select,
    .editor-table td textarea {
        min-width: 200px; /* IE用指定 */
        min-height: 30px; /* Safari用指定 */
    }
    .login-table {
        margin-left: 200px;
    }
    .login-table td input[type="text"],
    .login-table td input[type="password"] {
        width: 300px;
    }
    .sp-show {
        display: none;
    }
}
@media (max-width: 767px) {
    .container {
        padding-top: 8vh;
    }
    #left-top {
        background-size: 50vw;
    }
    #right-bottom {
        background-size: 75vw;
    }
    .container {
        width: 90vw;
        margin: auto;
    }
    .logo {
        width: 70vw;
    }
    h2 {
        font-size: x-large;
        margin: 0.5em 0 0.5em 0;
    }
    .editor-table th,
    .editor-table td {
        display: block;
        width: 100%;
        line-height: inherit;
        padding: 0;
    }
    .editor-table tr {
        position: relative;
    }
    .editor-table .required {
    }
    .input-section {
        padding: 0;
    }
    .adviser-search-list .item {
        width: 50%;
    }
    .form-group {
        padding-right: 0;
        padding-left: 0;
    }
    .form-group .inline {
        font-size: 1em;
    }
    .ui-widget.ui-widget-content {
        width: 90% !important;
        padding: 2em 0;
    }
    .announce {
        font-size: medium;
        margin: 5px;
        padding: 8px;
    }
    .button-section {
        width: 100%;
    }
    .btn.two {
        margin: 2em .1em 2em .1em;
        padding: .8em .6em .8em .6em;
        width: 38vw;
    }
    .br-sp {
        display: unset;
    }
    .sp-mt-mb {
        margin: 1rem 0 1rem 0;
    }
    .footer {
        font-size: small;
    }
    .contact-1 {
        padding-bottom: 2px;
        border-bottom: none;
    }
    .contact-2 {
        margin-top: 4px;
    }
    .copyright {
        font-size: x-small;
    }
    .sp-hide {
        display: none;
    }
}
