@charset "utf-8";

html,body{
	color:#333;
	font:normal normal 15px/140% Helvetica, HiraKakuProN-W3, sans-serif;
	-webkit-text-size-adjust:100%;
	-webkit-tap-highlight-color:rgba(7,178,195,0.4);
}
html,body,
h1,h2,h3,h4,h5,h6,
table,tr,th,td,
dl,dt,dd,
div,header,footer,section,article,aside,nav,iframe,
ul,ol,li,
hr,img,p,span,address,small,strong{
	margin:0;
	padding:0;
	font-size:100%;
	border:0;
}
a{
	color:#194772;
}
img{
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
ul{
	list-style:none;
}
p{
}
.fontS{
	font-size:.73em;
}
table{
	border-collapse:collapse;
	empty-cells:show;
}
th{
	font-weight:normal;
}
td{
	line-height:140%;
}
input[type="text"],
input[type="password"],
textarea{
	padding:.2em;
	font:inherit;
	vertical-align:middle;
	-webkit-appearance:none;
	border:1px solid #666;
	border-radius:3px;
	background:#fff;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
input[type="date"],
select{
	padding:.2em;
	font:inherit;
	vertical-align:middle;
	border:2px solid #666;
	border-radius:3px;
	background:#fff;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
input[type="submit"],
input[type="reset"],
input[type="button"]{
	padding:.2em .5em;
	font:inherit;
	color:#333;
	vertical-align:middle;
	-webkit-appearance:none;
	border:1px solid #666;
	border-radius:3px;
	background:#fff;
	background: -webkit-linear-gradient(top,  #ffffff 0%,#cccccc 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#cccccc 100%);
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

input[type="button"].sendMailBtn{
	margin-right: 2em;
}

input[type="submit"].blueBtn,
input[type="button"].blueBtn{
	color:#fff;
	border:none;
	background:#3a93b9;
	background: -webkit-linear-gradient(top,  #6ccced 0%,#3a93b9 100%);
	background: linear-gradient(to bottom,  #6ccced 0%,#3a93b9 100%);
}
.textS{
	width:5em;
}
.textM{
	width:7em;
}
.textL{
	width:9em;
}
.textXL{
	width:12.5em;
}
.textMax{
	width:100%;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.textareaMax{
	width:100%;
	height:40vh;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.clearfix:after {
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfix {
	min-height:1px;
}
* html .clearfix {
	height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
.fLeft
{	float:left; }
.fRight
{	float:right; }
.both
{	clear:both; }
.tLeft
{	text-align:left; }
.tRight
{	text-align:right; }
.tCenter
{	text-align:center; }

#error{
	color:#ff0000;
}

.noBr{
	white-space: nowrap;
}
input[type="text"]:read-only {
    background-color: #ddd;
}

input[type="button"]:disabled
,input[type="submit"]:disabled {
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
  box-shadow: none !important;
  text-shadow: none !important;
}


/* login
--------------------------------------------------------------------------------*/
#login{
	padding:20px;
}
.wrapForm{
	margin:20px auto;
	padding:1.5em 1em;
	width:520px;
	max-width:100%;
	background:#f8f6ed;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.subTitle{
	font-size:.79em;
	text-align:center;
	color:#0089b0;
}
.loginTable{
	margin:10px auto;
}
.loginTable th,
.loginTable td{
	padding:10px;
}
.loginTable th{
	color:#0089b0;
	text-align:right;
}
#login .blueBtn{
	padding:.5em 2em;
}

/* search
--------------------------------------------------------------------------------*/
#searchBody{
	padding-top:85px;
}
#searchHeader{
	width:100%;
	overflow:hidden;
	background:rgba(255,255,255,0.7);
	position:absolute;
	top:0;
	z-index:9999;
}
#searchNav{
	padding:10px 5px;
	font-size:.83em;
	background:#6bccec;
}
.searchNavTable{
	margin:0 auto;
}
.searchNavTable th{
	padding:2px 0;
	color:#000;
	text-align:right;
	line-height:1.2em;
/*	width:4em;*/
}
/*.searchNavTable th:nth-of-type(2){
	width:2.2em;
}*/
.searchNavTable td{
	padding:2px 5px;
}
.hiddenArea{
	display:none;
	overflow:hidden;
}
.btnWrap{
	margin:.6em 0;
}
.isShow{
	display:block;
}
.flexBox{
	-webkit-display:flex;
	display:flex;
}
.flexBetween{
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.flexCenter{
	-webkit-justify-content: center;
	justify-content: center;
}
#searchOpenBtn{
	border-top:2em solid #6bccec;
	border-left:.5em solid transparent;
	border-right:.5em solid transparent;
	height:0;
	width:5em;
	color:#fff;
	text-align:center;
	position:relative;
	cursor:pointer;
}
#searchOpenBtn:after{
	content:"";
	display:block;
	margin-left:-.25em;
	width:.5em;
	height:.25em;
	background:url('../images/arrow_search.svg') 0 0/contain no-repeat;
	position:absolute;
	bottom:.25em;
	left:50%;
	-webkit-transition:.5s;
	transition:.5s;
}
.isOpen:after{
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
}
#searchOpenBtn span{
	position:absolute;
	z-index:10;
	bottom:.5em;
	left:.5em;
}
#menuBtn a,
#topBtn a,
#logoutBtn a{
	padding:3px 5px;
	font-size:.79em;
	line-height:1em;
	text-decoration:none;
	border-radius:6px;
	background:#fff;
	display:inline-block;
}
#menuBtn a{
	margin:.5em 5px 0 0px;
	color:#00b4c8;
	border:2px solid #00b4c8;
}
#topBtn a{
	margin:.5em 10px 0 2px;
	color:#003567;
	border:2px solid #003567;
}
#logoutBtn a{
	margin:.5em 10px 0;
	color:#a40035;
	border:2px solid #a40035;
}

#header{
	margin-bottom:1em;
	padding:1em 10px .5em;
	line-height:1.2em;
	border-bottom:2px solid #6bccec;
	-webkit-align-items:flex-end;
	align-items:flex-end;
}
#header p{
	text-align:right;
	min-width:6em;
}

.totalDataWrap{
	margin:10px;
}
.totalDataTable{
	width:100%;
	font-size:.73em;
}
.totalDataTable th{
	padding:.2em 0;
	/* END藤丸：手配修正の予約人数追加(予約残→予約全日残,予約午前残,予約午後残,予約残業残,予約夜勤残)[2018.01.16] */
	/* width:14.2%; */
	width:9.1%;
	text-align:center;
	background:#f2eedb;
	border:2px solid #666;
}
.totalDataTable td{
	padding:.2em 0;
	text-align:center;
	border:2px solid #666;
}
.searchContent{
	margin:10px;
	border:2px solid #6bccec;
	overflow:auto;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-overflow-scrolling:touch;	/*慣性スクロール　スクロールは速いが読み辛くなる*/
}
.searchContentTable{
	font-size:.73em;
	line-height:1.2em;
}
.searchContentTable th{
	padding:.5em 1.3em;
	height:3em;
	background:#f2eedb;
	border:2px solid #666;
	overflow:hidden;
	text-align:center;
	vertical-align:middle;
	white-space: nowrap;
}
.searchContentTable th.paddingL{
	padding-left:3em;
	padding-right:3em;
}
.searchContentTable th.paddingXL{
	padding-left:5em;
	padding-right:5em;
}
.searchContentTable th.paddingS{
	padding-left:0.7em;
	padding-right:0.7em;
}


.searchContentTable td{
	padding:.5em;
	border:2px solid #666;
}
.searchContentTable .bgRed{
	color:#fff;
	background:#FF4D4D;
}
.searchContentTable .bgOrange{
	background:#FFCC99;
}
.searchContentTable .bgBlue{
	background:#B5DAFF;
}
.searchContentTable .bgYellow{
	background:#FFFF99;
}
.searchContentTable .bgGreen{
	background:#B1E7B1;
}
.searchContentTable .bgPink{
	background:#ffc0cb;
}
.searchContentTable .bgGray{
	background:#CCCCCC;
}
.searchContentTable td img{
	width:auto;
	height:1em;
}
.orderBtn{
	width:2em;
	height:1.5em;
	line-height:1.5em;
	text-decoration:none;
	display:inline-block;
	vertical-align:middle;
}
.orderBtn:before{
	font-size:.6em;
}
.sortDESC:before{
	content:"▼";
}
.sortASC:before{
	content:"▲";
}

.detailHeader{
	padding-bottom:.5em;
	background:#6bccec;
}
.editWrap{
	margin:10px;
	padding:10px;
	font-size:.73em;
	background:#f8f6ed;
}
.editTable{
}
.widthMax{
	width:100%;
}
.editTable th{
	width:5em;
	text-align:right;
}
.editTable td{
	padding:.3em .5em;
}
.detailContent{
	margin:10px;
}
.detailTable{
	width:100%;
	font-size:.73em;
	line-height:1.2em;
}
.detailTable th{
	padding:.5em;
	width:8em;
	background:#f2eedb;
	border:2px solid #666;
	overflow:hidden;
	vertical-align:middle;
	text-align:right;
}
.detailTable td{
	padding:.5em;
	border:2px solid #666;
	background:#fff;
}
#map{
	height:400px;
	max-height:60vh;
}


.sendMailContent{
	margin:20px;
}
.sendMailTable{
	margin-bottom:1em;
	width:100%;
	font-size:.83em;
	line-height:1.2em;
}
.sendMailTable th{
	padding:.5em;
	width:2.2em;
	background:#f2eedb;
	border:2px solid #666;
	overflow:hidden;
	vertical-align:middle;
	text-align:right;
}
.sendMailTable td{
	padding:.5em;
	border:2px solid #666;
	background:#fff;
}
.radioWrap{
	overflow:hidden;
}
.radioWrap input[type="radio"]{
	display:none;
}
.radioWrap label{
	padding:.5em;
	height:2em;
	line-height:1em;
	color:#fff;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border:1px solid #108daf;
	float:left;
	background:#3a93b9;
	background: -webkit-linear-gradient(top,  #6ccced 0%,#3a93b9 100%);
	background: linear-gradient(to bottom,  #6ccced 0%,#3a93b9 100%);
}
.radioWrap label:first-of-type{
	border-radius:1em 0 0 1em;
}
.radioWrap label:last-of-type{
	border-radius:0 1em 1em 0;
}
input[type="radio"]:checked+label{
	background:#108daf;
}

#overlay{
	width:100%;
	height:130%;
	position:fixed;
	background:rgba(0,0,0,0.8);
	z-index:10000;
	top:0;
	left:0;
	display:none;
	cursor: pointer;/* iOS系はClickが効かないことがあるためpointerを入れることによって回避 */
}
#overlay:before{
	content:"×";
	color:#fff;
	font-size:2.5em;
	font-weight:bold;
	position:fixed;
	top:2%;
	right:2%;
	display:block;
}
#popupWrap{
	padding:5%;
	width:84%;
	height:84%;
	position:fixed;
	background:#fff;
	z-index:11000;
	top:8%;
	left:8%;
	display:none;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	overflow:auto;

}
#popupContents h2{
	margin:1em 0;
	padding-bottom:1em;
	color:#666;
	text-align:center;
	line-height:1.1em;
	border-bottom:1px solid #666;
}
.menulink{
	margin:1em 0;
	padding:1em;
	width:100%;
	color:#fff;
	text-align:center;
	text-decoration:none;
	line-height:1.1em;
	background:#fff;
	border:2px solid #6bccec;
	background:#6bccec;
	border-radius:6px;
	display:block;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

@media screen and (min-width: 641px){
	html,body{
		font-size:20px;
		line-height:1.4em;
		-webkit-text-size-adjust:100%;
	}
	#searchNav{
		font-size:1em;
	}
	.searchNavTable input{
		margin:0 .2em;
	}
	.searchNavTable input[type="submit"],
	.searchNavTable input[type="button"]{
		padding-left:.7em;
		padding-right:.7em;
	}
	#searchBody{
		padding-top:110px;
	}
}
@media screen and (max-width:640px) and (orientation:landscape) {
	#login img{
		width:240px;
	}
	#searchBody{
		padding-top:100px;
	}
}

/* END藤丸：スタッフ画面作成[2018.01.18] */
.staffKintai {
	padding: 0px 10px;
}

/*スタッフタブ表示*/
.tab {
	overflow: hidden;
	margin-left: 1em;
}

.tab li {
	background: #4a8ea5;
	padding: 5px 25px;
	float: left;
	margin-right: 1px;
}

.tab a {
	color: #ffffff;
	text-decoration: none;
}

.tab li.selectTab {
	background: #6bccec;
}

.tabContents {
	background: #ffffff;
	padding: 0.5em;
	border: solid #6bccec 0.2em;
	margin: 0 1em 1em 1em;
}

.hideContents {
	display: none;
}

/* END藤丸：お客様詳細画面作成[2018.01.19] */

/*テーブルの一覧表示*/
.listTable {
	width: 100%;
	font-size: .70em;
	line-height: 1em;
	margin-bottom: 1em;
}

.listTable th {
	padding: .5em;
	width: 8em;
	background: #f2eedb;
	border: 2px solid #666;
	overflow: hidden;
	vertical-align: middle;
	text-align: right;
}

.listTable .headerColum {
	background: #ded3a3;
	text-align: center;
}

.listTable .middleColum {
	text-align: center;
}

.listTable td {
	padding: .5em;
	border: 2px solid #666;
	background: #fff;
}

/* END藤丸：お客様検索画面作成[2018.01.22] */
.searchNavTable input[type=checkbox] {
	-ms-transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	transform: scale(1.5, 1.5);
}
