/* CSS Document */

#pageTab{
	padding: 0;
	}

#member{
	background: #fff;
	padding-top: 0;
	}
	#member header{
		padding-bottom: 0;
		}
	#member h2{
		padding-bottom: 0.8em;
		font-weight: bold;
		font-size: 1.5em;
		line-height: 1.5em;
		border-bottom: 2px solid #00b0ca;
		}
	#member h2+div{
		margin-top: 1em;
		}
	#member p{
		line-height: 1.7em;
		}
	#member section+section{
		padding-top: 0;
		}
	#member h3{
		position: relative;
		width: 100%;
		padding-left: calc(4px + 0.5em);
		font-weight: bold;
		font-size: 1.25em;
		line-height: 1.5em;
		}
		#member h3:before{
			content: "";
			position: absolute;
			top: 0.2em;
			left: 0;
			width: 4px;
			height: 1em;
			background: #00B0CA;
			border-radius: 2px;
			}
	#member h3+div{
		margin-top: 2em;
		}
	#member h3+div+div{
		margin-top: 2em;
		}
	#member ol{
		counter-reset: count;
		}
		#member ol li{
			position: relative;
			padding-left: 2.5em;
			line-height: 1.7em;
			}
			#member ol li:before{
				counter-increment: count;
				content: "（"counter(count)"）";
				position: absolute;
				top: 0;
				left: 0;
				}
		#member ol li+li{
			margin-top: 1em;
			}
	#member h4{
		font-weight: bold;
		color: #00b0ca;
		}
	#member h4+div{
		margin-top: 0.5em;
		line-height: 1.7em;
		}
	#member dl{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 1.5em;
		}
	#member dt{}
		#member dt a{
			position: relative;
			display: block;
			padding: 1em;
			padding-left: 2.5em;
			border: 1px solid #b2b6bc;
			background: #fff;
			border-radius: 6px;
			color: inherit;
			fill: #00b0ca;
			font-weight: bold;
			text-decoration: none;
			line-height: 1.5em;
			}
		#member dt i{
			position: absolute;
			top: calc(50% - 0.5em);
			left: 1em;
			}
	#member dd{
		margin-top: 0.5em;
		font-size: 0.875em;
		line-height: 1.7em;
		}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767.98px) {
/*767以下px*/
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下 横向き*/
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) {
/*767px以下 横向き, 768px以上,*/
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*767px以下 横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991.98px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}



