@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#achievement h4{
	background: #f4f4f4;
	font-size: 120%;
	letter-spacing: 0.1em;
	font-weight: 500;
	padding: 1em;
}
#achievement ol{
	counter-reset: number;
	list-style: none;
}
#achievement ol li {
	position: relative;
	border-bottom: 1px dotted red;
	padding: 1em 0 1em 1.8em;
}
#achievement ol li::before {
	position: absolute;
	top: 1em;
	left: 0;
	display: block;
	counter-increment: number;
	content: counter(number) ".";
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
}
@media only screen and (max-width: 640px){ /* スマホ */
	#achievement h4{
		font-size: 100%;
	}
}