@charset "UTF-8"; /* CSS Document */


/* ----------------------------------------------
   フォーム
------------------------------------------------ */
#main {
	position: relative;
	text-align: center;
}
#main:before {
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 174px;
	content: "";
	background: #1976d2;
}
#main .container-fluid {
	position: relative;
}
#main .pageTitle h1 {
	font-size: 2rem;
	color: #fff;
	margin: 0;
	padding: 1rem 0 2.5rem;
}
#content {
	padding: 1.5rem;
	background: #fff;
	box-shadow: 1px 1px 4px 2px rgba(0,0,0,.2);
	text-align: left;
}
#content h2 {
	font-size: 1.4rem;
	margin: 3rem 0 1rem;
	padding: 0 0 .5rem;
	border-bottom: 1px solid #ddd;
}
#content h3 {
	font-size: 1.2rem;
	margin: 2rem 0 .5rem;
}
#content .guideHead {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-align: center;
}
#content .guideTxt {
	margin-bottom: 2rem;
	text-align: center;
}
#content .guideTxt strong {
	font-weight: normal;
	color: #f00;
}
#content .blueBox {
	margin: 0 0 2rem;
	padding: 1rem;
	background: #e3f2fd;
}
#content .blueBox ul {
	margin: 0;
	padding: 0;
}
#content .blueBox ul li {
	position: relative;
	margin: 1rem 0;
	padding: 0 0 0 1.5rem;
	list-style-type: none;
}
#content .blueBox ul li:before {
	position: absolute;
	top: .6em;
	left: .6em;
	display: block;
	width: .5em;
	height: .5em;
	content: "";
	background: #1976d2;
	border-radius: .5em;
}
#content .noteBox {
	margin: 2rem 0;
	padding: 1rem;
	background: #eceff1;
}
#content .noteBox p {
	line-height: 1.7;
	margin: .5rem;
}
#content .table th,
#content .table .nowrap,
#content .table .btn {
	white-space: nowrap;
}
#content .table-striped tbody tr:nth-of-type(2n+1) {
	background-color: rgba(0,0,0,.02);
}
#content .table-striped tbody tr:hover {
	background-color: rgba(0,0,0,.05);
}
#content .btns {
	margin-top: 3rem;
	text-align: center;
}
#content .btns .btn {
	font-weight: bold;
	min-width: 8em;
}
#content .confirm label {
	font-size: .875rem;
	color: #999;
}
#content .confirm .plaintext {
	min-height: 2.3rem;
	padding: 0 0 .75rem;
	border-bottom: 1px solid #cfd8dc;
}
#content .thankyouMessage {
	padding: 1rem 0;
	text-align: center;
}
#content .thankyouMessage .btnArea {
	margin-top: 3rem;
}

#content .managerNav .list-group {
	padding: 0;
}
#content .managerNav .list-group-item {
	padding: .5rem 0;
}
#content .managerNav .list-group-item .fas {
	width: 4rem;
	font-size: 3rem;
	margin: 1rem 1rem 1rem 0;
	text-align: center;
}
#content .managerNav .list-group-item .list-group-item-heading {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0 0 .5rem;
}
#content .managerNav .list-group-item .list-group-item-text {
	margin: 0;
}


/* ----------------------------------------------
   Media Queries
------------------------------------------------ */
@media (min-width: 768px) {
	
	#main .container-fluid {
		padding: 1.5rem 1.5rem 2.5rem;
	}
	#content {
		max-width: 1024px;
		margin: 0 auto;
		padding: 3rem 5rem;
		background: #fff;
		text-align: left;
	}
	
}

@media (max-width: 767px) {
	
	#main .pageTitle h1 {
		font-size: 1.5rem;
		padding: .5rem 0 1.5rem;
	}
	
	#content h2 {
		margin-top: 2rem;
	}
	#content h3 {
		margin-top: 1.5rem;
	}
	#content .guideHead {
		font-size: 1.2rem;
	}
	#content .guideTxt {
		font-size: .9rem;
		margin-bottom: 1.5rem;
		text-align: left;
	}
	#content .blueBox {
		font-size: .9rem;
		padding: .5rem;
		margin-bottom: 1.5rem;
	}
	#content .table .sp-hide {
		display: none;
	}
	#content .btns {
		margin-top: 2rem;
	}
	#content .thankyouMessage .btnArea {
		margin-top: 2rem;
	}
	#content .thankyouMessage .btnArea .btn {
		font-size: .9rem;
	}
	
	#content .managerNav .list-group-item {
		padding: 1rem;
	}
	#content .managerNav .list-group-item .fas {
		width: 100%;
		margin: 0 0 1rem;
	}
	#content .managerNav .list-group-item .list-group-item-heading {
		text-align: center;
	}
	
}



