@charset "UTF-8";
/* 各ページのスタイル */
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');

/* 全体共通項目 */
.alert_setting{
    width: 500px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ff4d25;
    color: #ffffff;
}
/* 戻るボタン */
#btn_cancel {
    float: right;
	text-align: center;
	text-decoration: none;
	width: 100px;
	margin: auto;
    margin-right: 30px;
	padding: 0.4rem 1rem;
	font-weight: bold;
	border: 2px solid #8b8b8b;
	color: #8b8b8b;
	border-radius: 100vh;
	transition: 0.3s;
}
#btn_cancel:hover {
	color: #fff;
	background: #8b8b8b;
}
/* エクスポートボタン */
#btn_export {
    text-align: center;
    text-decoration: none;
    width: 130px;
    margin: auto;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border: 2px solid #ffb923;
    /* background-color: #2ad228; */
    color: #ffb923;
    border-radius: 100vh;
    transition: 0.3s;
}
#btn_export:hover {
    color: #fff;
    background: #ffb923;
    border-color: #fff;
}
/* 更新・登録ボタン */
#btn_update {
    text-align: center;
    text-decoration: none;
    width: 130px;
    margin: auto;
    padding: 0.4rem 1rem;
    font-size: 1.3em;
    font-weight: bold;
    background: #2c5591;
    color: #fff;
    border-color: #fff;
    border-radius: 100vh;
    transition: 0.3s;
}
#btn_update:hover {
    border: 2px solid #2c5591;
    color: #2c5591;
    background: #fff;
}
/* 検索タイル */
 .search table {
    width: 90%;
    margin: 20px 10px;
    background: #c7c7c7;
    border-radius: 10px;
 }
  .search table th{
    text-align: center;
    color: #181818;
    padding: 10px 5px;
  }
  .search table td{
    text-align: center;
    padding: 10px 5px;
  }
  .search input[type="text"]{
    width: 200px;
    border-radius: 5px;
    border: none;
  }
  .search .select{
    display: inline-flex;
    align-items: center;
    position: relative;
}
.search .select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}
.search .select select {
    appearance: none;
    padding: .2em calc(.4em + 30px) .2em .4em;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    cursor: pointer;
}
.search button{
    cursor: pointer;
    width: 70%;
    min-width: 30px;
    font-size: 0.8em;
    padding: 5px;
    background-color: #2c5591;
    border : solid 1px #cccccc;
    transition: 300ms;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #ffffff;
    border-radius: 10px;
}
.search button:hover{
    opacity: 0.5;
}

/* ログイン */
.login input[type="submit"]{
    cursor: pointer;
    width: 160px;
    height: 40px;
    font-size: 0.8em;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    background: linear-gradient(#7991ff, #2c5591);
    /* background-color: #2c5591; */
    border : solid 1px #cccccc;
    transition: 300ms;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #ffffff;
    border-radius: 10px;
}

/* メインメニュー */
.main_menu{
    width: 100%;
    height: 50px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}
.main_menu #sub{
    height: 35px;
    margin-top: 10px;
    margin-bottom: 5px;
    border-bottom: solid 1px #000000;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
}
.main_menu button{
    cursor: pointer;
    width: 250px;
    height: 50px;
    font-size: 0.8em;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    /* background-color: rgba(196, 208, 255, 0.707); */
    background: linear-gradient(to top, #66a4ff, #0050c7);
    border : solid 1px #ffffff;
    transition: 300ms;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #ffffff;
    border-radius: 10px;
    /* box-shadow: 2px 2px 4px gray; */
}
.main_menu button:hover{
    /* background-color: #bcd7ff; */
    color: #ffffff;
    opacity: 0.5;
}
/* 試験結果閲覧 */
#btn_annual {
    text-align: center;
    text-decoration: none;
    width: 130px;
    margin: auto;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border: 2px solid #2ad228;
    /* background-color: #2ad228; */
    color: #2ad228;
    border-radius: 100vh;
    transition: 0.3s;
}
#btn_annual:hover {
    color: #fff;
    background: #2ad228;
    border-color: #fff;
}
#test_table{
    margin-top: 20px;
    margin-bottom: 20px;
}
#test_table th:first-child{
    border-radius: 5px 0 0 0;
  }
  #test_table th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
  }
  #test_table th{
    text-align: center;
    color:white;
    background: linear-gradient(#829ebc,#3551b7);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    padding: 10px 0;
  }
  #test_table td{
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top:none;
    padding: 10px 0;
  }
  #test_table td:last-child{
    border-right: 1px solid #a8b7c5;
  }
  #test_table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
#test_table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
#test_table #num , #test_table #test{
    width: 3%;
}
#test_table #text, #test_table #affiliation_id{
    width: 5%;
}
#test_table #subject_name{
    width: 10%;
}
/* 年度更新 */
.year_update p{
    font-size: 1em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.year_update span{
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: solid 2px #464646;
}
.year_update .check{
    width: 50%;
    height: 70px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: solid 1px #cccccc;
    padding-bottom: 20px;
}
.year_update .check p{
    padding-top: 10px;
    text-align: center;
}
.year_update input{
    width: 100px;
    border-radius: 5px;
    border: solid 1px #cccccc;
}
.year_update .check input , .year_update .check label{
    cursor: pointer;
}
/* 個人設定 */
.personal_setting table{
    margin-top: 20px;
    margin-bottom: 20px;
}
.personal_setting th{
    width: 200px;
    text-align: center;
    color:white;
    background: linear-gradient(#66a4ff , #3f8fdf);
    border: 1px solid #3c6690;
    padding: 10px 0;
  }
  .personal_setting td{
    width: 250px;
    text-align: center;
    border: 1px solid #a8b7c5;
    padding: 0;
  }
  .personal_setting table input{
    width: 220px;
    height: 45px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
  }
  .personal_setting section p{
    font-weight: bold;
  }
/* マスタメンテ */
.maintenance div{
    margin-top: 20px;
}
.maintenance table{
    width: 100%;
}
.maintenance .list{
    margin-top: 20px;
    margin-bottom: 20px;
}
.maintenance .list th:first-child{
    border-radius: 5px 0 0 0;
  }
  .maintenance .list th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
  }
  .maintenance .list th{
    text-align: center;
    color:white;
    background: linear-gradient(#829ebc,#3551b7);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    padding: 10px 0;
  }
  .maintenance .list td{
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top:none;
    padding: 10px 0;
  }
  .maintenance .list td:last-child{
    border-right: 1px solid #a8b7c5;
  }
  .maintenance .list tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
.maintenance .list tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
.maintenance .list #id , .maintenance .list #teacher_code{
    width: 10%;
}
.maintenance .list #affiliation_id , .maintenance .list #teacher_division{
    width: 15%;
}
.maintenance .list #name , .maintenance .list #last_login{
    width: 20%;
}
.maintenance .list #button_edit , .maintenance .list #button_delete{
    width: 5%;
}
.maintenance .list #button_edit input , .maintenance .list #button_delete input{
    border: none;
    text-align: center;
    text-decoration: none;
    margin: auto;
    padding: 0.2rem 0.5rem;
    font-weight: bold;
    border-radius: 100vh;
    transition: 0.3s;
}
.maintenance .list #button_delete{
    border-left: none;
}
.maintenance .list #button_edit input:hover , .maintenance .list #button_delete input:hover{
        color: #676767;
        background: #fffdfd;
        border: 1px solid #676767;
}
.maintenance .list #button_edit input{
    border: 1px solid #44c8bf;
    background: #44c8bf;
    color: #ffF;
}
.maintenance .list #button_delete input{
    border: 1px solid #ff4d25;
    background: #ff4d25;
    color: #ffF;
}
/* 学生マスタ */
div#student.search{
    width: 800px;
}
.maintenance #student_list #student_number{
    width: 20%
}
.maintenance #student_list #student_name , .maintenance #student_list #teacher_name{
    width: 30%
}
.maintenance #student_list #grade {
    width: 10%s
}
.maintenance #student_list #button_edit , .maintenance #student_list #button_delete{
    width: 5%;
}
.student_edit #teacher_name{
    background-color: #d7d7d7;
}
/* ユーザマスタ */
div#user.search{
    width: 850px;
}
/* 科目マスタ */
div#subject.search{
    width: 450px;
}
.maintenance #subject_list #subject_id{
    width: 10%;
}
.maintenance #subject_list #subject_name{
    width: 40%;
}
.maintenance #subject_list #class_division , .maintenance #subject_list #cource_division{
    width: 20%;
}
/* カリキュラム次マスタ */
.maintenance #curriculum_list #ordinai_number{
    width: 20%;
}
.maintenance #curriculum_list #start_year , .maintenance #curriculum_list #end_year{
    width: 35%;
}
/* ユーザマスタ編集 */
.edit p{
    font-size: 1em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.edit span{
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 5px;
}
.edit input{
    border-radius: 5px;
    border: solid 1px #cccccc;
}
.edit .check input , .edit .check label{
    cursor: pointer;
}
.edit table{
    margin-top: 20px;
    margin-bottom: 20px;
}
.edit th{
    width: 200px;
    text-align: center;
    color:white;
    background: linear-gradient(#66a4ff , #3f8fdf);
    border: 1px solid #3c6690;
    padding: 10px 0;
  }
  .edit td{
    width: 250px;
    text-align: left;
    border: 1px solid #a8b7c5;
    padding: 0;
  }
  .edit table input[type="text"], .edit table input[type="password"]{
    width: 220px;
    height: 45px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
  }
  .edit table label{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
  }
  /* インポート画面 */
  .import p{
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .import h2{
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 5px;
  }
  .import #attachment{
    margin: 20px 0;
  }
  .import label{
    display: inline-block;
    position: relative;
    background: #666;
    color:#fff;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .import label:hover{
    cursor: pointer;
    background: #444;
  }
  .import input[type="file"]{
    display: none;
  }
  .import .filename{
    display: inline-block;
    width: 200px;
    height: 45px;
    font-size: 1.3em;
    padding-left: 10px;
    margin-left: 10px;
  }
  .import #btn_import {
    text-align: center;
    text-decoration: none;
    width: 130px;
    margin: auto;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border: 2px solid #2732a4;
    color: #2732a4;
    border-radius: 100vh;
    transition: 0.3s;
}
.import #btn_import:hover {
    color: #fff;
    background: #2732a4;
    border-color: #fff;
}
.import #btn_setting {
    text-align: center;
    text-decoration: none;
    width: 170px;
    margin: auto;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border: 2px solid #ffb923;
    /* background-color: #2ad228; */
    color: #ffb923;
    border-radius: 100vh;
    transition: 0.3s;
}
.import #btn_setting:hover {
    color: #fff;
    background: #ffb923;
    border-color: #fff;
}