﻿@charset "UTF-8";

/*

※※※※　カラー設定についての注意事項　※※※

[ベースカラー] 重要文字色、アイコン色、入力フォーム色
1. rgbaで表記　初期値：rgba(80,88,236)
2. エディタ等で対象カラーを全て置換する

[グラデーションカラー] TOP背景、共通ヘッダ背景、ボタン背景
1. #で表記 初期値：#277ce9 #9020f2
2. fromカラーとtoカラーの2種類が必要 
3. 単色にする場合は、fromカラーとtoカラーを同じにする
4. エディタ等で対象カラーを全て置換する

*/

html,body{
  overflow: hidden;
}

body{
  font-family: Arial, Helvetica, 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-size: 40px;
  font-weight: bold;
/*  background: rgba(80,88,236);*/
  background: rgba(179,255,204)
  background: -moz-linear-gradient(top left, #E7FFE7 0%, #E7FFE7 100%);
  background: -webkit-gradient(linear, left top, right bottom, from(#E7FFE7), to(#E7FFE7));
  background: -webkit-linear-gradient(top left, #E7FFE7 0%, #E7FFE7 100%);
  background: -o-linear-gradient(top left, #E7FFE7 0%, #E7FFE7 100%);
  background: -ms-linear-gradient(top left, #E7FFE7f 0%, #E7FFE7 100%);
  background: linear-gradient(to bottom right, #E7FFE7 0%, #E7FFE7 100%);
}

/*LAYOUT*/
.wrapper {
  height: 100%;
 /* background: url(/c1/img/slf/bg.png) no-repeat;*/
  background-size: cover;
  position: relative;
}
header{
  width: 100%;
  height: 150px;
  position: relative;
}
main {
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content{
  margin-top: -200px;
  text-align: center;
}
.top{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top-content{
  text-align: center;
}

/*TOP*/
h1{
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  color: #000;
  letter-spacing: 10px;
}
h1 p{
  font-size: 250%;
  letter-spacing: 0px;
  margin-top: -15px;
  text-shadow: 0px 5px 10px rgba(0,0,0,0.3);
}
.date{
  font-size: 70%;
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #000;
}

/*HEADER*/
.header-inner{
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: bold;
}
h2{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  font-size: 165%;
  font-weight: bold;
}

.header-left{
  margin-left: 30px;
}
.header-left p{
  font-size: 70%;
}

.header-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-close{
  width: 210px;
  height: 150px;
  background-color: #00b38f ;

  text-align: center;
  color: #fff;
  font-size: 115%;
  line-height: 40px;
}
.btn-close rt{
  font-weight: normal;
  letter-spacing: -0.2em;
  font-size: 40%;
}

.user-box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}
.user-box label{
  display: block;
  background-color: #fffc00;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
  margin-right: 15px;
}
.user-box label p{
  width: 45px;
  height: 45px;
  margin-top: -2px;
}
#toggle {
  display: none;
  cursor: pointer;
}
#menu {
  display: none;
  position: relative;
}
#menu:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30px;
  border: 15px solid transparent;
  border-bottom: 15px solid #ffffd8;
}
#toggle:checked + #menu {
  display: block;
  position: absolute;
  top: 150px;
  background-color: #ffffd8;
  color: #000;
}
#menu li{
  font-size: 65%;
  font-weight: normal;
  border-bottom:1px solid #999982;
  padding: 10px 10px 10px 35px;
  position: relative;
}
#menu li::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 6px transparent;
  border-left: solid 8px rgba(0,179,143);
  top: 22px;
  left: 15px;
}
#menu li:last-child{
  border-bottom: none;
}
.user-box p{
  color: #000;
  font-size: 80%;
}
.user-box p span{
  display: block;
  font-size: 80%;
  color: #000;
}

/*CONTENT*/
.txt{
  margin-bottom: 10px;
}
.txt span{
  color: rgba(0,179,143);
  margin-left: 15px;
  font-size: 130%;
}
.txt span.divide{
  color: #a5a5a5;
  margin: 0 15px;
  font-size: 84%;
}
.txt span.error{
  color: #ed0000;
}

.content-row{
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-btn ul{
  overflow: hidden;
}
.number-btn li{
  float: left;
  margin: 20px;
}
.number-btn button{
  background-color: rgba(0,179,143);
  color: #fff;
  font-size: 150%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
}

.list-box{
  width: 1400px;
  height: 660px;
  margin-left:40px;
  margin-bottom:10px;
  margin-left:40px;
  margin-bottom:10px;
  overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
  text-align: center;
  font-size: 50%;
}
.list-box::-webkit-scrollbar {
	display: none;
}
.list-box table{
  display: inline-block;
  width: 100%;
  height: 700px;
  font-size: 24px;
  font-weight: normal;
  text-align: left;
}
.list-box th{
  background-color:#E7FFE7;
  color:#000;
  font-weight: normal;
  font-size: 80%;
  padding: 5px 20px;
}
.list-box td{
  padding: 7px 10px;
}
.list-box tr.clr{
  background-color: #f0f0f0;
}
.book-ttl{
  width: 300px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.writer{
  width: 240px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.list-no{
  width: 30px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.barcode{
  width: 190px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.returnday{
  width: 145px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.list-del{
  width: 80px;
  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
  text-align: left;
}
.pagebtn-box{
  width:90px;
  margin-right:20px;
}
.btn-prev{
  background: #5058ec;
  background: -moz-linear-gradient(top left, #00b38f 0%, #9020f2 100%);
  background: -webkit-gradient(linear, left top, right bottom, from(#00b38f), to(#00b38f));
  background: -webkit-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -o-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -ms-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: linear-gradient(to bottom right, #00b38f 0%, #00b38f 100%);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  margin-bottom:420px;
  transform: rotate( 90deg );
}
.btn-next{
  background: #5058ec;
  background: -moz-linear-gradient(top left, #00b38f 0%, #9020f2 100%);
  background: -webkit-gradient(linear, left top, right bottom, from(#00b38f), to(#00b38f));
  background: -webkit-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -o-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -ms-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: linear-gradient(to bottom right, #00b38f 0%, #00b38f 100%);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  transform: rotate( 90deg );
}
.btn-prev img{
  width: 45px;
  height: 45px;
  margin-left: -6px;
}
.btn-next img{
  width: 45px;
  height: 45px;
  margin-left: 3px;
}

/*ICON SVG*/
.arrow-box{
  width: 60px;
  height: 60px;
  margin: 0 60px;
}
.icon-box{
  margin: 0 auto;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}
.base-color{
  fill: rgba(0,179,143);
}

/*FORM & BUTTON*/
.input-text{
  display: inline-block;
  border-radius: 10px;
  background-color: rgba(0,179,143,0.1);
  padding: 20px;
  margin-right: 10px;
}
.input-text input{
  opacity: 1;
  font-size: 150%;
  text-align: center;
}

.btn-box{
  margin-top: 30px;
}
.btn-box button{
  display: inline-block;
  margin: 0 20px;
}
.btn{
  font-size: 150%;
  color: #fff;
  padding: 25px 100px 18px 100px;
  border-radius: 100px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
}
.btn-submit{
  background: #5058ec;
  background: -moz-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -webkit-gradient(linear, left top, right bottom, from(#00b38f), to(#00b38f));
  background: -webkit-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -o-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: -ms-linear-gradient(top left, #00b38f 0%, #00b38f 100%);
  background: linear-gradient(to bottom right, #00b38f 0%, #00b38f 100%);
}
.btn-submit:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


.arrow {
  position: relative;
  display: inline-block;
}
 
.arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px; 
  bottom:45px;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 30px solid #fff;
}
.arrow_small {
  position: relative;
  display: inline-block;
} 
.arrow_small::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px; 
  bottom:20px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 15px solid #fff;
}
.btn-cancel{
  background-color: #a5a5a5;
}
.btn-start{
  font-size: 160%;
  background-color:#00b38f;
  color:#fff;
  padding: 25px 120px 16px 120px;
  border-radius: 100px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
}
.btn-submit rt,
.btn-cancel rt{
  font-weight: normal;
}

/*COMMON*/
.ta-l{
  text-align: left;
}
.fs-smll{
  font-size: 65%;
}


.message-area{
  width: 1300px;
  height: 250px;
  border: 5px solid #a5a5a5; 
  padding:5px;
  margin-bottom:20px;
  margin-left:100px;
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  
}


 .user-message{
	width:1700px;
	height:600px;
	border: 3px solid #a5a5a5; 
 	padding:5px;
	display: table-cell;
	vertical-align: middle;
    overflow: hidden;  
	 }
 .out-user-message{
	width:1700px;
	height:600px;		 
	margin-bottom:20px;
	}

.head{
  width: 1300px;
  border-top: 5px solid #a5a5a5; 
  border-right: 5px solid #a5a5a5; 
  border-left: 5px solid #a5a5a5; 
  background-color:#E7FFE7;
  color:#000;

  margin-left:100px;
}
.error-txt{
  color:#ff4300;
  width: 1800px;
  text-align:center;
  margin-left: 100px;
  margin-right: 100px;

  white-space: nowrap;  
  overflow: hidden;  
  text-overflow: ellipsis;  
  -webkit-text-overflow: ellipsis;  
  -o-text-overflow: ellipsis;  

}
.error-count{
  color:#ff4300;
  width: 90%;
  text-align:center;
  margin-left:1px;
  margin-right:1px;
}


.input-text-bar{
  display: inline-block;
  border-radius: 10px;
  background-color: rgba(0,179,143,0.1);
  margin-right: 10px;
  font-size:100%;
  padding:5px;
}
.btn-list{
  font-size: 50%;
  color: #fff;
  padding: 10px 15px 10px 15px;
  border-radius: 100px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
}
.list-box tr.clr-error{
  background-color: #ff4300;
}

.lend-count-head{
  width:700px;
  margin-left:90px;
  text-align:center;
  border-top: 5px solid #a5a5a5; 
  border-right: 5px solid #a5a5a5; 
  border-left: 5px solid #a5a5a5; 
  background-color:#E7FFE7;
  color:#000;
}
.lend-count-data{
  width: 700px;
  height:370px;
  margin-left:90px;
  margin-bottom:20px;
  padding:3px;
  border: 5px solid #a5a5a5; 
  text-align:left;
}
.count-button-area{
  height:480px;
}
.number-message{
  height:65px;
}
.lend-count-list-head{
  display: inline-block;
  width:350px;
  text-align:left;
  margin-left:10px;
}
.lend-count-list-data{
  display: inline-block;
  width:300px;
  text-align:right;
}

.now-lend{
  text-align: left;
  width:850px;
}

/*NUMBER*/
 .clear_btn{
  background-color: rgba(0,179,143);
  color: #fff;
  font-size: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.8);
  padding-left:20px;
  padding-right:20px;
  margin-left:20px;
}

/*PHOTO*/
 .photo-message{
	padding-bottom:20px;
 }
 .camera-area{
	display:inline-block;
	width:1300px;
	padding-left:30px;
 }
 .button-area{
	width:620px;
	display:inline-block;
	float:right;
	padding-right:30px;
 }
 .scan-button{
	padding-left:110px;
	padding-top:20px;
 }
 .book-count{
	text-align:center;
 }
 .error-mes{
 }
 .go-list{
	font-size: 74%;
	padding-top:30px;
	text-align:center;
 }
 .go-back{
	font-size: 74%;
	padding-top:30px;
	text-align:center;
 }
 .go-back-button{
	font-size:95%;  
	padding: 15px 50px 15px 50px;
 }
 .error-txt-photo{
	color:#ff4300;
	width: 1800px;
	text-align:center;
	margin-left:0px;
	overflow: hidden;  
	white-space:normal;
 }
 .scan{
	padding: 10px 50px 10px 50px;
	display: flex;
	align-items:center;
	margin-bottom: 20px;
	height: 120px;
 }
 .book-count-head{
	width:550px;
	text-align:center;
 	border-top: 5px solid #a5a5a5; 
	border-right: 5px solid #a5a5a5; 
	border-left: 5px solid #a5a5a5; 
	background-color:#E7FFE7;
	color:#000;
 }
 .book-count-data{
	margin-bottom:20px;
	padding:3px;
	border: 5px solid #a5a5a5; 
	text-align:left;
	width:550px;height:200px;
	overflow: hidden;
 }
 
 #overlay{ 
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
 }
 .loader{
    background-image:url(/c1/img/loader.gif);
    background-repeat:  no-repeat;
    background-position: center center;
  	width: 100%;
  	height:100%;
 }
 .isDisable{
  background-color: #a5a5a5;
  pointer-events: none;
 }

/*LIST*/
 .list-left-area{
	padding-left:20px;
	width:550px;
 }
 .list-right-area{
	width:1350px;
 }
 .barcode-area{
	width:540px;
	font-size:80%;
	text-align:left;
	padding:0px 0px 0px 0px;
 }
 .list-message-area{
	 height:770px;
	 width:530px;
	 font-size:80%;
	 text-align:left;
	 padding:10px 1px 0px 15px;
	 border-top:solid 1px;
	 border-left:solid 1px;
	 border-right:solid 1px;
	 border-bottom:solid 1px;
	 word-break: break-all;
	 overflow: hidden;  
	 text-overflow: ellipsis;  
 }
 .list-book-count{
	width: 1300px;
	padding:5px;
	font-size:80%;
	border:0px
 }
 .list-count-head{
	margin-top:20px;
	width:350px;
	text-align:center;
 	border-top: 1px solid #a5a5a5; 
	border-left: 1px solid #a5a5a5; 
	border-bottom: 1px solid #a5a5a5; 
	background-color:#E7FFE7;
	color:#000;
	margin-bottom:20px;
	padding:3px;

 }
 .list-count-data{
	margin-top:20px;
	margin-bottom:20px;
	padding:3px;
	border: 1px solid #a5a5a5; 
	text-align:left;
	width:1000px;
	white-space: nowrap;  
	overflow: hidden;  
	text-overflow: ellipsis;  
	-webkit-text-overflow: ellipsis;  
	-o-text-overflow: ellipsis;  
 }
 .list-lend-area{
	margin-top:1px;
 }
 .list-cancel{
	background-color:gray;
	font-size:80%;
 }
 /*Modal*/
 .modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
 }
 
 .modal__bg{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  background: rgba(0,0,0,0.6);
 }
 
 .modal__content{
    z-index: 110;
    background: #fff;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    text-align: center;
    font-size: 130%;
 }
 .modal__nobtn{
  background-color: #a5a5a5;
 }