/* -------------------------------
register.css
---------------------------------- */
.modal_wrap{
  position: fixed;
  background-color: rgba(0,0,0,.5);
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transition: .5s;
  opacity: 0;
}

.modal_keyboard{
  background-color: #fff;
  width: 700px;
  height: 500px;
  position: fixed;
  flex-direction: column;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 10px 10px 16px 10px;
}

.modal_keyboard table{
  height: 100%;
  width: 100%;
  margin: auto;
}

.modal_keyboard table tr{
  border:none;
}

.modal_keyboard table tr td{
  text-align: center;
}

.modal_keyboard table tr td button{
  background-color: #8bc5ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 6px 0px #399cff;
  position: relative;
  top: 0px;
  transition: .1s;
  font-family: 'Noto Sans JP', sans-serif;
  color:#fff;
}

.modal_keyboard table tr td button:hover{
  top: 6px;
  box-shadow: none;
}

.modal_keyboard .schoolSearch_back_btn{
  margin-top: 30px;
}


.modal_keyboard .schoolSearch_back_btn button{
  padding: 20px 30px;
  background-color: #ff8b8b;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 10px;
  box-shadow: 0px 6px #ff3939;
  position: relative;
  top:0px;
  transition: .1s;
}

.modal_keyboard .schoolSearch_back_btn button:hover{
  top: 6px;
  box-shadow: none;
}

.schoolName_wrap{
  position: fixed;
  background-color: rgba(0,0,0,.5);
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transition: .5s;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.schoolName_list{
  background-color: #fff;
  width: 60%;
  height: 80%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  padding: 10px 10px 16px 10px;
}

.schoolName_list p{
  font-size: 30px;
  font-weight: 400;
  color:#3c9dff;
}

.schoolName_list ul{
  width: 90%;
  height: 85%;
  overflow: scroll;
  margin-top: 30px;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
  margin-bottom: 20px;
}

.schoolName_list ul::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}

.schoolName_list ul li{
  font-size: 20px;
  padding:10px;
  cursor: pointer;
  transition: .3s;
  color: #399cff;
}

.schoolName_list ul li:hover{
  opacity: .6;
}

.schoolName_list ul li:nth-child(2n){
  background-color:#399cff;
  color: #fff;
}

.schoolName_list .schoolName_list_back button{
  padding: 20px 30px;
  background-color: #ff8b8b;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 10px;
  box-shadow: 0px 6px #ff3939;
  position: relative;
  top:0px;
  transition: .1s;
  font-size: 16px;
}

.schoolName_list .schoolName_list_back button:hover{
  top: 6px;
  box-shadow: none;
}

@media screen and (max-width:768px) {
  .schoolName_list{
    width: 95vw;
    height: 100vw;
  }
  .schoolName_list .schoolName_list_back button{
    padding: 10px 20px;
  }
  .modal_keyboard {
      width: 100vw;
      height: 85vw;
      border-radius: 0px;
      top: auto;
      padding: 0px;
      padding-bottom: 20px;
      font-size: 2.5vw;
  }

  .modal_keyboard table tr td{
    padding: 0px;
  }

  .modal_keyboard table tr td>button{
    padding: 2.8vw;
    font-size: 2.5vw;
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #399cff;
  }
}


@media screen and (max-width:480px) {
  .schoolName_list{
    width: 95vw;
    height: 150vw;
  }
}
