/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */

@media screen and (max-width: 1024px) { }
@media screen and (max-width: 896px) { }
@media screen and (max-width: 480px) { }

/* ---------------------------------------- common */

article h3 {
	color: #447c40;
	margin: 0 0 .5em;
}
article .detail + .detail { margin: 2em 0 0; }

#supplement {
	border-top: 1px #333 dashed;
	padding: 3em 0 0;
}
#supplement h3 { color: #6a3906; }
#supplement .warpbox {
	border: 2px #ff8a38 solid;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 2em;
	text-align: center;
}

#supplement .pagelink { margin: 1.5em 0 0; }
#supplement .pagelink li {
	width: 30%;
	min-width: 260px;
	text-align: center;
	margin: 0 1em;
}
#supplement .pagelink li a {
	display: -webkit-box;
	display: -webkit-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	min-height: 50px;
	color: #fff;
	background: #ff8a38;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	padding: .25em .5em;
	margin: 0;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
#supplement .pagelink li a img {
	width: 2em;
	height: auto;
	margin: 0 .5em 0 0;
}

@media screen and (max-width: 768px) {
	#supplement .pagelink.flexs { display: block; }
	#supplement .pagelink li { 
		width: 100%;
		margin: 0;
	}
	#supplement .pagelink li + li { margin: 1em 0 0; }
}