/* CSS Document */

#pageTab{
	padding-top: 0;
	}

#policy{
	background: #fff;
	}
	#policy h2{
		padding-bottom: 0.8em;
		font-weight: bold;
		font-size: 1.5em;
		line-height: 1.5em;
		border-bottom: 2px solid #00b0ca;
		}
	#policy h2+section{
		padding-top: 2em;
		}
	#policy section{}
		#policy section > div+div{
			margin-top: 2em;
			}
	#policy section+section{
		padding-top: 0;
		}
	#policy h3{
		position: relative;
		padding-left: calc(4px + 0.5em);
		font-weight: bold;
		font-size: 1.5em;
		line-height: 1.5em;
		}
		#policy h3:before{
			content: "";
			position: absolute;
			top: 0.2em;
			left: 0;
			width: 4px;
			height: 1em;
			background: #00b0ca;
			border-radius: 2px;
			}
	#policy h3+div{
		margin-top: 2em;
		}
	#policy p{
		line-height: 1.7em;
		}
	#policy h4{
		position: relative;
		padding-left: 1.2em;
		font-weight: bold;
		line-height: 1.5em;
		}
		#policy h4:before{
			content: "■";
			position: absolute;
			top: 0;
			left: 0;
			}
	#policy h4+div{
		margin-top: 1em;
		}




/* 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以上*/
}



