/*-------reset------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 15px;
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/* header */
header {
    position: relative;
    background-color: rgba(255, 255, 250, 0.5);
}
.header_left {
    float: left;
}
@media screen and (max-width:1024px) {
    .header_left {
        float: none;
        text-align: center;
    }
}
.logo {
    padding: 20px 8px;
    text-align: center;
    width: 221px;
    height: 54px;
}
@media screen and (max-width:1024px) {
    .logo {
        padding: 50px 0 0 0;
    }
}
.header_right {
    float: right;
}
@media screen and (max-width:1024px) {
    .header_right {
        float: none;
    }
}
.header_title {
    padding: 35px 20px 15px 0px;
    color: rgb(31, 128, 31);
    font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width:1024px) {
    .header_title {
        width: 100%;
        text-align: center;
        padding: 0 0 10px 0;
    }
}
@media screen and (max-width:767px) {
    .header_title {
        font-size: 18px;
    }
}
.header_txt {
    padding: 5px 0;
    color: rgb(31, 128, 31);
    clear: both;
    font-size: 18px;
    font-weight: bold;
}
@media screen and (max-width: 1024px) {
    .header_txt {
        text-align: center;
    }
}
#navi {
    right: 0px;
    position: absolute;
    margin-top: -32px;
}
@media screen and (max-width:1024px) {
    #navi {
        top: 0;
        width: 100%;
        margin-top: 0;
    }
}
.navi_button {
    background: rgb(255, 255, 255);
    cursor: pointer;
    outline: none;
    appearance: none;
    display: inline-block;
    width: 120px;
    text-align: center;
    border: 1px solid rgb(31, 128, 31);
    color: rgb(31, 128, 31);
    padding: 5px 16px;
    border-radius: 2px;
    transition: .2s;
}
@media screen and (max-width:1024px) {
    .navi_button {
        width: 100px;
    }
}
.navi_button:hover {
    background: rgb(158, 195, 75);
    border: rgb(203, 229, 133);
    color: rgb(255, 255, 255);
}
.border {
    padding: 5px 0px 5px 15px;;
    clear: both;
    border-top-color: rgb(31, 128, 31);
    border-top-width: 2px;
    border-top-style: solid;
}

/* wrapper */
#wrapper {
    margin: 0px auto;
    width: 950px;
    position: relative;
}
@media screen and (max-width:1024px) {
    #wrapper {
        width: 100%;
    }
}

/* article */
article {
    padding: 10px 0px;
    background: rgb(237, 250, 200);
}
@media screen and (max-width:1024px) {
    article {
        padding: 5px 0px;
    }
}

/* section_contents */
#contents {
    padding: 10px 0 20px 0;
}
@media screen and (max-width:1024px) {
    #contents {
        padding: 15px 0 0 0;
    }
}
.txt_small {
    font-size: 14px;
    line-height: 20px;
}

/* section_menu */
#menu {
    margin: 0px;
}
@media screen and (max-width:1024px) {
    #menu {
        margin: 0;
        width: 100%;
    }
}
#menu a {
    padding: 2.5%;
    width: auto;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background: rgb(216, 125, 6);
    display: block;
}
#menu a:hover {
    background-color: rgb(245, 167, 66);
}
.menu_button {
    margin: 2% 15%;
    text-align: center;
}
@media screen and (max-width:767px) {
    .menu_button {
        margin: 7% 15%;
    }
}

/* form_table */
.form_table {
    margin: 0 auto;
    width: 850px;
}
@media screen and (max-width:1024px) {
    .form_table {
        width: 100%;
    }
}
.form_table td {
    background: rgb(255, 255, 255);
    padding: 0.5%;
    vertical-align: middle;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgb(170, 170, 170);
}
@media screen and (max-width:1024px) {
    .form_table td {
        padding: 2%;
        display: block;
    }
}
.school_list {
    line-height: 28px;
}
.th_green {
    background: rgb(27, 133, 77);
    font-size: 14px;
    padding: 1.1%;
    width: 25%;
    text-align: left;
    color: rgb(255, 255, 255);
    vertical-align: middle;
    border-bottom-color: rgb(170, 170, 170);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
@media screen and (max-width:1024px) {
    .th_green {
        padding: 2% 0;
        width: 100%;
        display: block;
    }
}
.form {
    width: 95px;
    margin: 2% 3px;
    height: 25px;
}
.form_medium {
    width: 80px;
    margin: 2% 3px;
    height: 25px;
}
.form_select {
    width: 100px;
    margin: 2% 3px;
    height: 30px;
}
.form_select_long {
    width: 165px;
    margin: 2% 3px;
    height: 30px;
}
.form_checkbox {
    margin: 10px 3px;
    height: 30px;
}
.form_textarea {
    width: 95%;
    margin: 2% 3px;
    border-color: rgb(169, 169, 169);
}
.form_radio {
    margin: 2% 3px;
    height: 25px;
}
.form_button {
    padding-top: 20px;
    text-align: center;
    clear: both;
}
@media screen and (max-width:1024px) {
    .form_button {
        padding-bottom: 20px;
    }
}
input[type="date"] {
    width: 120px;
    margin: 2% 3px;
    height: 30px;
    text-align: center;
}
input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#personal {
    margin-left: 15px;
    display: none;
}

/* Error Message */
.message.error {
    padding: 3px;
    color: rgb(255, 0, 0);
}
.error-message {
    padding: 3px;
    color: rgb(255, 0, 0);
}
.error-message li {
    list-style: none;
}

/* footer */
footer {
    background: rgb(124, 252, 0);
    padding: 20px;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-style: normal;
}
.footer_address{
    margin-bottom: 10px;
    line-height: 1.4em;
}
@media screen and (max-width:1024px) {
    .footer_address{
        font-size: 12px;
    }
}
.footer_copyright{
    margin-top: 10px;
}
@media screen and (max-width:1024px) {
    .footer_copyright{
        font-size: 12px;
    }
}

/*------extends------*/
.br_sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .br_sp {
        display: block;
    }
}