/* CSS Document */

#pagePath{}
	#pagePath li{}
		#pagePath li:last-child{
			pointer-events: none;
			}
			#pagePath li:last-child i{
				display: none;
				}

#main{}
	#main article{
		padding-top: 0;
		}
	#main .subject{
		border-top: 1px solid #ccc;
		}
	#main .linkBut.more{
		background: #101a63;
		}
		#main .linkBut.more:hover{
			background: #e50012;
			}

#hero{
	border-top: 5px solid #101a63;
	}
	#hero h1{
		text-align: center;
		}
	#hero img{
		max-width: 580px;
		margin: auto;
		}

#about{}
	#about h3{
		padding: 0;
		color: #101a63;
		text-align: center;
		}
		#about h3:before{
			content: none;
			}
	#about .subject{
		border-top: 5px solid #d6d6d6;
		}

#topics{
	padding-bottom: 0;
	}
	#topics .subject+div{
		margin-top: 0;
		}
	#topics .tabMenu{
		background: #f2ece8;
		}

#logo{}
	#logo figure{
		margin-bottom: 2em;
		text-align: center;
		}
	#logo img{
		max-width: 580px;
		margin: auto;
		}
	#logo .subject{
		border-top: 5px solid #101a63;
		}

#member{}
	#member p{}
		#member p:last-child{
			color: #1a1a1a;
			font-weight: bold;
			}
	#member p+p{
		margin-top: 1em;
		}

#download{}



/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
.subject{}
	.subject+*{
		margin-top: 2em;
		}
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
#main{}
	#main .linkBut{
		width: 20em;
		}
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
.subject{}
	.subject+*{
		margin-top: 3em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
.subject{}
	.subject+*{
		margin-top: 4em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


