/**********************************************
	スクリーン画面設定
**********************************************/
@media screen {
	.hideScreen {
		display:none;
	}
}

/**********************************************
	印刷設定
**********************************************/
@media print {
	.hidePrint {
		display:none;
	}
	.pageBreak {
		page-break-after:always;
	}
}

/**********************************************
	ヘッダーの設定
**********************************************/
/* PC用 */
@media screen and (min-width:480px) {
	#headerTitle a {
		position:absolute;
		display:block;
		overflow:hidden;
		margin-left:-120px;
		top:5px;
		left:50%;
		width:240px;
		height:64px;
	}

	#headerMenu {
		margin-bottom:40px;
		padding-top:85px;
		text-align:center;
	}

	#headerMenu li {
		display:inline;
		margin-left:1em;
	}

	#headerMenu li + li {
		padding-left:1em;
		border-left:1px solid #999;
	}
}

/* スマートフォン用 */
@media screen and (max-width:479px) {
	#headerTitle a {
		position:absolute;
		display:block;
		overflow:hidden;
		margin-left:-120px;
		top:5px;
		left:50%;
		width:240px;
		height:64px;
	}

	#headerMenu {
		float:right;
		margin-right:8px;
		margin-bottom:40px;
		padding-top:85px;
	}

	#headerMenu li a {
		display:block;
		font-size:1.2em;
		padding-left:20px;
		background:url("../images/glue.png") no-repeat left center;
	}
}

h2 {
	padding-left:0.25em;
	font-size:1.4em;
	font-weight:bold;
	border-left:8px solid #387027;
}

h3 {
	font-size:1.2em;
	font-weight:bold;
}

/**********************************************
	フッター
**********************************************/
/* PC用 */
@media screen and (min-width:480px) {
	#footerMenu {
		padding:20px 0;
		text-align:center;
	}

	#footerMenu li {
		display:inline;
	}

	#footerMenu li a {
		margin:0 0.5em;
	}

	#footerMenu li + li {
		padding-left:0.5em;
		border-left:1px solid #999;
	}
}

/* スマートフォン用 */
@media screen and (max-width:479px) {
	#footerMenu {
		padding:8px 8px 0 8px;
		text-align:center;
		background-color:#eee;
	}

	#footerMenu li:nth-child(odd) a {
		float:left;
		margin-bottom:8px;
		padding:4px;
		width:46%;
		font-size:0.8em;
		background-color:#fff;
		border:1px solid #ccc;
		border-radius:5px;
	}

	#footerMenu li:nth-child(even) a {
		float:right;
		margin-bottom:8px;
		padding:4px;
		width:46%;
		font-size:0.8em;
		background-color:#fff;
		border:1px solid #ccc;
		border-radius:5px;
	}

	#footerMenu:after {
		content:"";
		clear:both;
		display:block;
	}
}

/**********************************************
	パンくずリスト
**********************************************/
#topicPath {
	margin:16px 0 24px 0;
}

#topicPath li {
	display:inline;
	line-height:110%;
}

#topicPath li a {
	padding-right:20px;
	background:url("../images/glue.png") no-repeat right center;
}
