@charset "utf-8";

/* -------------------------------------
ベース
-------------------------------------- */
* {

	margin: 0px;
	box-sizing: border-box;

}

body {

	background-color: #fff;
	color: #333;
	line-height: 1.0;
	font-size: 0.9em;
	min-width: 320px;
	line-height: 1.4em;

}

a {

	text-decoration: none;
	color: #333;
	border: none;

}


/* -------------------------------------
　ヘッダー
-------------------------------------- */
header {

	margin: 0px auto 1em;
	display: block;
	width: 100%;
	border-bottom: 1px solid #cccccc;

}

header .logo span {

	display: none;

}

/* -------------------------------------
　コンテンツボックス
-------------------------------------- */
#contentBox .mainContent {

	padding: 1em 0.5em;
	margin: 0 auto 3em;

}

#contentBox .mainContent h1 {

	width: 100%;
	border-bottom: 1px solid #999;
	line-height: 1.4em;
	margin-bottom: 0.5em;

}

#contentBox .mainContent h1 span {

	display: inline-block;
	border-left: 0.5em solid #b60014;
	padding: 0.1em 0.5em;
	margin-bottom: 0.2em;
	line-height: 1.2em;

}

#contentBox .mainContent .dateText {

	text-align: right;
	margin-bottom: 2em;

}

#contentBox .mainContent h2 {

	font-size: 1.2em;
	border-left: 5px solid #717171;
	border-bottom: 1px solid #d1d1d1;
	padding-left: 0.5em;
	padding-bottom: 0.2em;
	margin-bottom: 0.5em
}

#contentBox .mainContent p.textBox {

	margin-bottom: 2em;
	padding: 0 0.5em;

}

/* -------------------------------------
　フッター
-------------------------------------- */
footer {

	border-top: 1px solid #cccccc;
	text-align: center;
	padding: 1em;

}

@media(min-width:769px) {

	header,
	#contentBox .mainContent {

		width: 980px;

	}

	header .logo {

		width: 980px;
		margin: auto;

	}

}