@charset "utf-8";

*{
	padding: 0;
	margin: 0;
	font-size: 0.90rem;
	line-height: 1.35;
}
html,
body{
	padding: 0;
	margin: 0;
	background: rgb(243, 243, 244);

	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, sans-serif;

}
#wrapper{
	width: 100%;
}

#footer{

}




.calendar{
	overflow-x: auto;
	list-style-type: none;
	width: 95%;
	margin: 50px auto;
	background: rgb(255, 255, 255);
	border: 1px solid rgb(220, 220, 220);
}


#calendar h3{
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}
.hanrei{
	height: 1rem;
	width: 90%;
	padding: 1rem 0;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1rem;
	text-align: right;
}
.hanrei span{
	box-sizing: border-box;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin-right: 5px;
	border: 1px solid rgb(220, 220, 220);
}
.hanrei .g{
	background: rgba(0, 255, 0, 0.1);
}
.hanrei .r{
	background: rgba(255, 0, 0, 0.1);
}





.calendar > li.jkn,
.calendar > li.jkn > ol > li{
	height: 60px;
	font-size: 0.4rem;
	line-height: 1.0;
	text-align: center;
}
.calendar > li.jkn > ol > li{
	padding-top: 12px;
}
.calendar > li.jkn > ol > li > i{
	display: block;
	width: 70%;
	margin: 3px 0;
	text-align: center;
	writing-mode: vertical-rl;
}



.box_LT{
    position: relative;

	background: linear-gradient(
		24deg,
		rgb(255, 255, 255),
		rgb(255, 255, 255) 49.5%,
		rgb(220, 220, 220) 49.5%,
		rgb(220, 220, 220) 50.5%,
		rgb(255, 255, 255) 50.5%,
		rgb(255, 255, 255)
	);
    

}
.box_LT:before{
    position: absolute;
    top: 30px;
    right: 70px;
    content: "利用日";
    box-sizing: border-box;
    display: block;
    width: 40px;
    height: 20px;
/*
    border: 1px solid rgb(220, 220, 220);
*/    
    line-height: 20px;
    text-align: center;
}
.box_LT:after{
    position: absolute;
    top: 15px;
    right: 10px;
    content: "時間";
    box-sizing: border-box;
    display: block;
    width: 40px;
    height: 20px;
/*
    border: 1px solid rgb(220, 220, 220);
*/    
    
    line-height: 20px;
    text-align: center;
}


	.calendar > li{
		display: flex;
	}

	.calendar > li > ol{
		list-style-type: none;
		display: flex;
		flex-wrap: nowrap;
/*
		justify-content: flex-start;
*/
		justify-content: space-between;
		align-items: center;
	} 

		.calendar > li:last-child > ol > li{
			border-bottom: none;
		}
		.calendar > li > ol > li{
/*
			display: table-cell;
*/
			box-sizing: border-box;
			height: 100%;

			border: 1px solid rgb(220, 220, 220);
			border-top: none;
			border-left: none;
			font-size: 0.9rem;

/**
			line-height: 45px;
**/
			text-align: center;
			vertical-align: middle;
		}

			.calendar > li > ol > li:last-child{
				border-right: none;
			}

/*
			.calendar > li > ol > li:first-child{
				width: 130px;
			}
*/
			.calendar > li > ol:nth-child(1){
				width: 130px;
			}
			.calendar > li > ol:nth-child(1) > li{
				width: 130px;
				font-size: 0.8rem;
			}

/*
			.calendar > li > ol > li:nth-child(n + 2){
*/
			.calendar > li > ol:nth-child(2){
				width: calc(100% - 130px); /*calc((100% - 130px) / 24);*/
			}
				.calendar > li > ol:nth-child(2) > li{
					width: calc(100% / 24); /*calc((100% - 130px) / 24);*/
				}

			.calendar > li > ol > li > *{
				display: block;

			}
				.calendar > li > ol > li > span{
					height: 25px;
					line-height: 25px;
/*
					background: yellow;
*/
					color: rgb(180, 180, 180);
					font-size: 0.75rem;
				}
				.calendar > li > ol > li > label{
					display: table-cell;
					width: 100px; /* 緊急措置 */
					height: 25px;
/*
					background: skyblue;
*/
					line-height: 25px;
					vertical-align: middle;
				}

.area-main{
	width: 85%;
	max-width: 900px;
	min-width: 700px;
	margin: 30px auto;
}

.area-main > article.article-main
{
	padding: 15px;
	background: rgb(255, 255, 255);
	border-radius: 2px;
	border: solid 1px #dedede;
}

#form-list{
	list-style-type: none;
}
#form-list > li{
	width: 100%;
}
#form-list > li > dl{
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 8px;
}
#form-list > li > dl > *{
	box-sizing: border-box;
	padding: 5px;
	margin: 0;
	background: rgb(255, 255, 255);
	border: 1px solid rgb(220, 220, 220);
}

#form-list > li > dl > dt{
	width: 160px;
}
	#form-list > li > dl > dt >span{
		display: block;
		margin-top: 8px;
		padding-left: 4px;
		border-left: 5px solid rgb(200, 200, 200);
	}
		#form-list > li > dl > dt >span.must{
			border-left: 5px solid rgb(200, 50, 50);
		}
#form-list > li > dl > dd{
	width: calc(100% - 165px);
	margin-left: 5px;
}

#form-list ol.list-choice > li{
	list-style-type: none;
	padding: 10px;
	margin-bottom: 5px;
}

#form-list ol.list-names{
	list-style-type: none;
	margin-bottom: 0;
}
#form-list ol.list-names li{

}
#form-list ol.list-names input,
#form-list ol.list-names button{
	display: inline-block;
}
.txt-name,
.txt-kana,
.txt-sp8id, 
.txt-phone{
	width: 20%;
	margin-right: 8px;
}

#form-list ol.list-applicant{
	list-style-type: none;
	margin-bottom: 0;
}
#form-list ol.list-applicant li{
	display: flex;
	height: 25px;
	margin-bottom: 5px;
	border-bottom: 1px dotted rgb(220, 220, 220);
}
#form-list ol.list-applicant li *{
	height: 20px;
	line-height: 20px;
}
#form-list ol.list-applicant li strong{
	width: 110px;
	background: rgb(200, 200, 200);
	text-align: center;
}
#form-list ol.list-applicant li span{
	width: calc(100% - 115px);
	margin-left: 5px;
	background: rgb(240, 240, 240);
}


#form-list ol.list-applicants{
	list-style-type: none;
}
#form-list ol.list-applicants > li > dl{
	display: flex;
}
#form-list ol.list-applicants > li > dl > dt{
	width: 120px;
}
#form-list ol.list-applicants > li > dl > dt > span.must,
#form-list ol.list-applicants > li > dl > dt > span{
	display: block;
	padding-top: 8px;
}




.btn{
	font-size: 0.75rem;
}
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger{
	box-shadow: inset 0 0 1px rgba(255, 255, 255);
	color: #fff;
}
.btn-primary {
	background-color: transparent;
	background-image: -webkit-linear-gradient(#4D89CF, #316fb8);
	background-image: linear-gradient(#4D89CF, #316fb8);
	box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.7);

	background-color: #4D89CF;
	border-color: #4D89CF;
}
.btn-success {
	background-image: -webkit-linear-gradient(#52b86a, #208537);
	background-image: linear-gradient(#52b86a, #208537);

	background-color: #52b86a;
	border-color: #52b86a;
}
.btn-danger {
	background-image: -webkit-linear-gradient(#e35d6a, #b02a37);
	background-image: linear-gradient(#e35d6a, #b02a37);

	background-color: #e35d6a;
	border-color: #e35d6a;
}

.btn-info {
	background-image: -webkit-linear-gradient(#45b4c6, #128193);
	background-image: linear-gradient(#45b4c6, #128193);

	background-color: #45b4c6;
	border-color: #45b4c6;
}

.btn-warning {
	background-image: -webkit-linear-gradient(#ffcd38, #cc9a05);
	background-image: linear-gradient(#ffcd38, #cc9a05);

	background-color: #ffcd38;
	border-color: #ffcd38;
}
.btn-dark{
	background-image: -webkit-linear-gradient(gray, black);
	background-image: linear-gradient(gray, black);

	background-color: gray;
	border-color: gray;
}
label {
	display: inline-block;
	margin: 0 15px 8px 0;
}
label span{
	border-bottom: 1px dotted rgb(220, 220, 220);
}
input[type=text],
input[type=email],
input[type=textarea]{
	font-size: 0.78rem;
}

#gnav{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	width: 100%;
	height: 70px;
	background: rgb(77, 137, 207);
}
div#sysname{
	display: flex;
	flex-direction: column;
	width: 260px;
	color: rgb(255, 255, 255);
}
div#sysname *{
	font-style: normal;
}
div#sysname em{
	font-size: 1.0rem;
}
div#sysname strong{
	font-size: 1.5rem;
	font-weight: bold;
}
h1.bar{
	font-size: 1.4rem;
	font-weight: 600;
	background-color: #fff;
	padding: 1.25rem 1rem 1.125rem;
	margin-bottom: .75rem;
	border: solid 1px #dedede;
	box-shadow: 0 1px 3px #e7e7e7;
	position: relative;

}
h1.bar:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: rgb(77, 137, 207);
}
.d-table-cell {
	display: table-cell !important;
}

.navbar .nav-tabs .nav-link.active {
	color: inherit;
	font-weight: 600;
	background-color: #f3f3f4;
	border-color: #f3f3f4;
}

.navbar .nav-tabs .nav-link {
	border-color: transparent;
	color: rgba(255, 255, 255, 0.74);
	background-color: #4169a0;
	font-size: 1.0rem;
}

.d-table-cell {
	display: table-cell !important;
}

.navbar .nav-tabs .nav-item + .nav-item {
	margin-left: 0.5rem;
	margin-bottom: 0;
}

.navbar {
	border-radius: 0;
	background-color: #4D89CF;
	position: relative;
	z-index: 3;
}

#gnav .nav-tabs{
/*
	border-bottom: none;
*/
	position: absolute;
	bottom: -1px;
}


#footer{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	width: 100%;
	height: 100px;
	padding: 20px 0;
	background: rgb(77, 137, 207);
	color: rgb(255, 255, 255);
}
#footer dl{
	margin: auto;
}
#footer dl dt{
	padding-bottom: 10px;
	font-weight: bold;
}
#footer dl dt strong{
	font-size: 1.1rem;
}
#footer dl dd address{
	margin-bottom: 5px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
	background: none;
	color: rgb(0, 123, 255);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
	background: rgb(77, 137, 207);
	color: rgb(255, 255, 255);
}

#li_cnt{
	margin-left: 10px;
	line-height: 32px;
}


