@charset "UTF-8";

body {
  width: 1200px;
  height: 550px;
  padding-right:0px;
  padding: 10px 30px; 
  margin: auto;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-y: scroll;
}

#header {
  width: 100%;
  height: 80px;
  padding-right:0px;
  padding: 10px 30px;
  box-sizing: border-box;
  position: fixed;
  top: 0px ;
  left: 0px ;
  display: flex;
  background-color: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 1000;
}

#main {
  min-height: 550px;
  padding-top: 80px;
}

.main-flex{
  display: flex;
}

#footer {
  height: 20px;
  margin-top: 20px;
  bottom: 0px ;
  text-align: center;
}

.footer__copyright{
  width: 280px;
  margin: auto;
}

.content, .right-content{
  width:1000px;
  margin: 0px auto;
}

.content-sticky{
  padding: 5px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  background-color: #fff;
  z-index: 100;
}

.content-sticky-padding{
  padding: 0px;
}

.section{
  margin: 0px 0px 30px 0px;
}

.section-explanation{
  margin: 0px 0px 10px 30px;
}

.text-overflow{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.initial-display--display-none{
  display: none;
}



/***** ボタン *****/
button{
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.btn--not-allowed{
  cursor: not-allowed;
}

.btn--active {
  position: relative;
  margin: 0 auto;
  display: block;
  overflow: hidden;
}

.btn--active button img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.btn--active button:hover img:nth-of-type(2) {
  opacity: 0;
}

.btn--active a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.btn--active a:hover img:nth-of-type(2) {
  opacity: 0;
}

.form__btn button{
  color: #fff;
  border-radius: 100vh;
  position: absolute;
}

.form__btn button:hover{
  margin-top: 3px;
}

.section-head-btn button{
  color: #fff;
  border-radius: 100vh;
  position: absolute;
}

.section-head-btn button:hover{
  margin-top: 3px;
}

.btn--change-status{
  display: inline-block;
}

img{
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  object-fit: contain;
}



/***** テーブル *****/
table{
  width: 950px;
  table-layout: fixed;
}

.main-table{
  margin: 0 auto 45px auto;
  border-collapse:collapse;
}

.main-table thead{
  line-height: 30px;
  padding: 10px;
} 

.main-table thead tr th{
  border-bottom: #d9d9d9 solid 3px;
} 

.main-table tbody{
  overflow: scroll;
}

.main-table tbody tr td{
  padding: 5px;
  border-width: 3px 1px;
  border-style: solid;
}

.main-table .table-btn{
  width: 35px;
  height: 20px;
  margin: auto;
}

.main-table .table-btn--on-off{
  position: relative;
  margin: auto;
  width: 90px;
  height: 20px;
}

.main-table .table-btn--on-off input[type="radio"] {
  display: none;
}

.main-table .table-btn--on-off label {
  display: block;
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 15px;
  font-size: 0.5em;
  border: 2px solid #ccc;
}

.main-table .table-btn--on-off .table-btn--on-off--on-style + label{
  right: 50%;
  border-radius: 6px 0 0 6px;
  background: #eee;
  color: #666;
  border-right: none;
  cursor: pointer;
}

.main-table .table-btn--on-off .table-btn--on-off--on-style:checked + label{
  background: linear-gradient(180deg, #6080ee, #5061a0, #6080ee);
  color: #fff;
  text-shadow: 1px 1px 1px #333;
  cursor: default;
}

.main-table .table-btn--on-off .table-btn--on-off--off-style + label{
  left: 50%;
  border-radius: 0 6px 6px 0;
  background: #eee;
  color: #666;
  border-left: none;
  cursor: pointer;
}

.main-table .table-btn--on-off .table-btn--on-off--off-style:checked + label{
  background: linear-gradient(175deg, #ccc, #999, #ccc);
  color: #fff;
  text-shadow: 1px 1px 1px #333;
  cursor: default;
}



/***** エラーメッセージ *****/
.error-msg{
  height: 20px;
  text-align: center;
  color: red;
}

.form-error-msg{
  height: 15px;
  font-size: small;
  color: red;
}

.select-no-found-error-msg{
  margin: 20px 0px 20px 10px;
  padding: 3px 20px;
}

/***** 強調メッセージ *****/
.important-msg{
  color: red;
}

/***** ヘッダー *****/
.header__logo{
  width: 150px;
}

.header__navi{
  width: 400px;
  margin: 0px 0px 0px auto;
}

.navi__login-user{
  display: flex;
  justify-content: flex-end;
}

.login-user__user-name{
  padding:3px 0px ;
}

.login-user__img{
  width: 20px;
}

.navi__logout form{
  text-align: right;
}



/***** サイドメニュー *****/
.side-menu{
  height: 100%;
  width: 200px;
  top: 100px;
  position: sticky;
}

.side-menu-style{
  padding: 5px;
  margin: 10px 20px 10px 0px;
  background: #FFF;
  border-radius :8px;
  box-shadow :0px 0px 5px silver;
}

.side-menu-img{
  height: 100%;
  width: 25px;
}
  
.side-menu-link{
  height: 100%;
  margin: 0px 0px 0px 3px;
  font-size: large;
  color: #000;
  text-decoration: none;
}
  
.side-menu-link:hover{
  text-decoration: underline;
}
  
.side-menu ul {
  margin: 5px;
  padding: 5px;
}
  
.side-menu ul li {
  display: flex;
  position:relative;
  background: #FFF;
  padding: 0.3em;
  list-style-type: none!important;
}

.menu-link{
  width: 700px;
  margin: 10px;
  padding: 5px 0px;
  border-left: solid 6px #2d8fdd;
  background: #f1f8ff;
  margin-bottom: 3px;
}

.menu-link:hover{
  background: #e2f4f4;
}

.menu-link a{
  line-height: 1.5;
  padding: 0.5em;
  display: block;
  font-size: large;
  text-decoration: none;
  color: #000;
}



/***** パンくずリスト *****/
.right-navigation__content .content__selected-classroom-name{
  font-size: 5ex;
  font-weight: 400;
}

.content__breadcrumbs ol{
  padding: 3px 5px;
  list-style-type: none;
  color: rgb(98, 126, 216);
  background-color: #f1f8ff;
  display: flex;
}

.content__breadcrumbs span{
  margin: 0px 3px;
}

.content__breadcrumbs a{
  display: block;
  color: rgb(98, 126, 216);
}



/***** ログイン *****/
.login__logo{
  width: 400px;
  margin: 30px auto 0px auto;
}

.loginform__form{
  width: 320px;
  margin: 0px auto;
}

.form__filedset{
  width: 100%;
  margin: 0px auto;
  border: none;
}

.loginform__form .field{
  display: flex;
}

.form__filedset label{
  width: 100px;
  display: inline-block;
}

.loginform__form .form__btn{
  width: 300px;
  margin: 0px auto;
  display:flex;
  justify-content:center;
}

.loginform__form .form__btn button{
  width: 100px;
  padding: 5px;
  font-size: large;
  font-weight: 400;
  background-color: #0139ff;
  border-bottom: 5px solid #051f8a;
}

.loginform__form .form__btn button:hover{
  border-bottom: 2px solid #051f8a;
}



/***** 見出し *****/
.screen-head{
  width: 500px;
  margin: 20px 0px;
  padding: 10px 0px;
  border-bottom: solid 5px;
  display: flex;
}

.screen-head-icon{
  margin: auto 10px auto 0px ;
  width:45px;
}

.screen-head-name{
  margin: auto 0px auto 0px ;
  font-size: 2em;
  font-weight: 400;
}

.section-head{
  margin: 10px 0px ;
  padding: 0px 0px 0px 10px;
  text-align: left;
  font-size: 1.5em;
  font-weight: 400;
}

.section-head-right-content{
  height: 35px;
  margin: auto 5px auto auto;
}

.section-head-right-content-btns{
  display: flex;
}

.section-head-right-content-btn{
  display: flex;
  font-size: smaller;
}

.section-head-right-content-btn--icon{
  width: 20px;
  margin: 0px 20px 0px 5px;
}

.section-head-right-content-btn--icon button{
  border-radius: 0vh;
  position: static;
}

.section-head-right-content-btn--icon button:hover{
  margin-top: 0px;
}



/***** 絞り込み *****/
.narrow-down{
  padding: 10px;
  margin: 20px 0px;
  background: #FFF;
  border-radius :8px;
  box-shadow :0px 0px 5px silver;
}

.narrow-down-form{
  display: flex;
}

.narrow-down-unit, .narrow-down-submissionstatus{
  margin: 0px 0px 0px 10px;
  display: flex;
}

.narrow-down-select{
  margin: 0px 0px 0px 10px;
}

.narrow-down-select select{
  width: 200px;
}

.narrow-down-select-btn{
  margin: 0px auto 0px 10px;
}

.narrow-down-select-btn button{
  width: 110px;
  border-radius: 100vh;
  position: absolute;
}

.narrow-down-select-btn button:hover{
  margin-top: 3px;
}



/***** エクスポート *****/
.export-btn{
  height: 20px;
  width: 110px;
  margin: 0px 0px 0px auto;
}

.export-btn button{
  width: 110px;
  border-radius: 100vh;
  position: absolute;
}

.export-btn button:hover{
  margin-top: 3px;
}



/***** インジケーター *****/
#indicator{ 
  width: 100%;
  height:100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
  background: rgba(0,0,0,0.6);
}

.indicator-area__content {
  position: absolute;
  width: 300px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
  margin-left: auto;
  margin-right: auto;
}

@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}



/***** ヘルプ *****/
.help{
  margin: 0px 10px;
}



/***** モーダルウィンドウ *****/
.modal{
  top: 0px;
  left: 0px;
  position: fixed;
  display: none;
  z-index: 10000;
}

.modal__bg{
  background: rgba(0,0,0,0.8);
  width: 100%;
  height:100vh;
  position: fixed;
}

.modal__content{
  width: 800px;
  max-height: calc(100vh - 100px);
  position: fixed;
  background: #fff;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translate(-50%,-50%);
  overflow: auto;
  overflow-y: scroll;
  scrollbar-width: none;
}



/***** ツールチップ *****/
.tooltip-description{
  width: 200px;
  position: absolute;
  padding: 1px;
  background-color: #f8ffbd;
  font-size: 0.5em;
  color: #666;
  visibility: hidden;
  opacity: 1;
  border: 1px solid #666;
  z-index: 10;
}
