@charset "UTF-8";

body {
  background: #eeeeee;
  margin: 0px;
  padding: 0px;
  /*text-align: center;*/
  /*font-size: 90%;*/
  /*line-height: 140%;*/
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}

.header{
  background-image: url('/img/main_img.png?2');
  background-repeat: no-repeat;
  background-position: center center;
  height: 248px;
}
.footer{
  background: #FFF;
}
.footer .ftr_bg{
  background-image: url('/img/footer_back.png?2');
  background-repeat: no-repeat;
  background-position: center center;
  height: 155px;
  color: #FFF;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .ftr_logo{
  
}
.footer .ftr_copy{
  font-size: 13px;
  color: #2568AE;
  padding: 10px;
  text-align: center;
}

.main{
  padding: 50px 15px;
}

.wrapper{
  background: #FFF;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

h1{
  font-size: 20px;
  font-weight: bold;
  color: #5e7aaa;
}
h2{
  font-size: 20px;
  font-weight: bold;
  color: #5e7aaa;
}

/**/
.btn-primary{
  background: #3A5AAD;
}
.form-check-label span{
  font-size: 14px;
  margin-left: 3px;
}

.container-md{
  width: 600px;
  max-width: 100%;
}

.check_wrap{
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px 20px;;
  display: inline-block;
}
.check_wrap.err{
  border: 1px solid red;
}

.users{
  
}
.users .no{
  font-size: 12px;
  //color: #2196f3;
  color:black;
}
.users .kana{
  font-size: 12px;
  //color: #f44336;
  color:black;
}
.users .name{
  font-weight: 500;
  margin-bottom: 10px;
  //color: #f44336;
  color:black;
}
.users .prof{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
.users .prof span{
  width: 49%;
}
.users .staff{
  font-size: 14px;
  margin-bottom: 15px;
}

.users thead th{
  text-align: center;
}
.users tbody td{
  text-align: center;
}
.users .th1{
  text-align: left;
}
.users .td1{
  text-align: left;
}
.users em{
  font-style: normal;
  font-size: 12px;
  margin-left: 5px;
}

.users .form-check{
  margin-bottom: 0;
}

.time{
  text-align: right;
}

.send_btns{
  
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

@media (max-width:767px){
  html{
    font-size: 14px;
  }
  .main{
    padding-left: 5px;
    padding-right: 5px;
  }
  
  h1{
    font-size: 16px;
  }
  h2{
    font-size: 16px;
  }
  
  .time{
    text-align: center;
  }
  
  .users thead th{
    font-size: 10px;
  }
  .users tbody td{
    font-size: 12px;
  }
  
  .users .prof{
    font-size: 12px;
  }
  .users .staff{
    font-size: 12px;
  }
  
  .send_btns{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    border-top: 1px solid #CCC;
  }
}