/* 基本初期化 */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
input, button, textarea, select {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	border-radius: 0;
	color: #aaa;
	-webkit-appearance: none;
}
html {
	min-height: 100%;
	position: relative;
}
body {
	background-color: #fff;
	font-family: "メイリオ", sans-serif;
	left: 0;
	margin: 0;
	margin-bottom: 50px;
	overflow-x: hidden;
	padding: 0;
	width: 100%;
}
.body-center {
	margin: 0 auto;
	width: 1100px;
}
@media (max-width: 800px) {
	.body-center {
		width: 100%;
	}
}





/* ヘッダー */
.header-contents {
	background-color: #fff;
	border-bottom: 3px solid #008cff;
	padding: 10px;
	position: relative;
}
.header-contents-logo {
	display: inline-block;
	font-weight: bold;
	font-size: 30px;
}
.header-contents-logo a {
	color: #000;
}
.header-contents-logo img {
	width: 100%;
}
.header-contents-left {
	color: #222;
	cursor: pointer;
	font-size: 25px;
	left: 5px;
	position: absolute;
	top: 8px;
	z-index : 990;
}
.header-contents-right {
	color: #222;
	cursor: pointer;
	font-size: 25px;
	position: absolute;
	right: 5px;
	top : 8px;
	z-index : 990;
}
@media (max-width: 800px) {
	.header-contents-logo {
		display: block;
		font-size: 15px;
		margin: 0 auto;
		width: 80%;
		text-align: center;
	}
}





/* 本体 */
.contents {
	font-size: 14px;
	overflow: hidden;
	padding-top: 20px;
}
.contents-menu {
	background-color: #fff;
	float: left;
	margin-right: 10px;
	width: 290px;
}
.contents-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.contents-menu ul li {
	border-bottom: 1px solid #ccc;
	color: #333;
}
.contents-menu ul li a {
	color: #333;
	display: block;
	padding: 10px;
}
.contents-menu ul li a i {
	text-align: center;
	width: 25px;
}
.contents-menu ul li a:hover {
	background: #e9e9e9;
	color: #000;
}
.contents-main {
	float: left;
	padding-right: 10px;
	width: 800px;
}
@media (max-width: 800px) {
	.contents {
		padding: 0;
	}
	.contents-menu {
		float: none;
		height: 100%;
		left: -300px;
		margin-right: 0;
		overflow: auto;
		position: fixed;
		top: 0px;
		width: 300px;
		z-index: 990;
	}
	.contents-main {
		padding: 0;
		width: 100%;
	}
}





/* フッター */
footer {
	background-color: #333;
	bottom: 0;
	color: #fff;
	font-size: 12px;
	height: 50px;
	padding: 15px 0;
	position: absolute;
	width: 100%;
}
.footer-contents {
	overflow: hidden;
	margin-bottom: 10px;
	width: 100%;
}
@media (max-width: 800px) {
	.footer-contents {
		padding-bottom: 0;
	}
}





/* コンテンツ情報 */
.contents-base {
	margin: 5px 0;
	overflow: hidden;
	padding: 5px;
	width: 100%;
}

.contents-box {
	background-color: #fff;
	display: inline-block;
	margin-bottom: 10px;
	width: 100%;
}
.contents-box-header {
	background-color: #eee;
	display: block;
	margin-bottom: 10px;
}
.contents-box-header span {
	background-color: #fff;
	color: #000;
	display: inline-table;
	font-size: 20px;
	font-weight: bold;
	margin-left: 15px;
	padding: 0 15px;
}
.contents-box-footer {
	height: 25px;
	margin-bottom: 15px;
	padding: 5px;
}
.contents-box-more a {
	color: #333;
	float: right;
	font-size: 12px;
	font-weight: bold;
}
@media (max-width: 800px) {
	.contents-box-header {
		background-color: #333;
		padding: 10px 5px;
	}
	.contents-box-header span {
		background-color: #333;
		border-left: 12px solid #008cff;
		color: #fff;
		font-size: 14px;
		height: 20px;
		padding: 0 10px;
	}
	.contents-box-menu {
		display: block;
	}
	.contents-box-menu ul {
		font-size: 10px;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.contents-box-menu ul li {
		border-left: 1px solid #f3f3f3;
		border-bottom: 1px solid #f3f3f3;
		display: table-cell;
		float: left;
		height: 60px;
		width: 20%;
	}
	.contents-box-menu ul li:first-child, .contents-box-menu ul li:nth-child(6) {
		border-left: none;
	}
	.contents-box-menu ul li a {
		color: #666;
		display: block;
		padding: 5px 5px 0 5px;
		text-align: center;
		text-decoration: none;
	}
	.contents-box-menu ul li a .fa {
		display: block;
		font-size: 25px;
	}
	.contents-box-body {
		padding: 0 5px;
	}
}





.contents-block {
	float: left;
	overflow: hidden;
	padding: 8px 0;
	position: relative;
	width: 33.33%;
}
.contents-block-icon {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 165px;
	margin: 0 5px;
	width: 220px;
}
.contents-block-title {
	font-size: 12px;
	line-height: 1.25;
}
.contents-block-controll {
	display: none;
}
@media (max-width: 800px) {
	.contents-block {
		width: 100%;
	}
	.contents-block-icon {
		float: left;
		height: 100px;
		width: 130px;
	}
	.contents-block-title {
		font-weight: bold;
		width: 95%;
	}
}





.contents-line {
	background: #fff url("/img/arrow.png") no-repeat scroll 100% 50% / 16px 16px;
	border-bottom: 1px dotted #999;
	padding: 8px 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.contents-line-icon {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float: left;
	height: 135px;
	margin-right: 5px;
	width: 30%;
}
.contents-line-stamp {
	background: #333 none repeat scroll 0 0;
	border: 2px solid #fff;
	border-left: 0px;
	border-radius: 0 5px 5px 0;
	box-shadow: 0 0 1px #aaa;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	height: 25px;
	left: 0;
	position: absolute;
	text-align: center;
	top: 3px;
	width: 25px;
}
.contents-line-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	width: 95%;
}
.contents-line-sub {
	color: #999;
	font-size: 10px;
	line-height: 1.25;
	padding-right: 20px;
}
.contents-line-tag {
	display: flex;
	padding: 3px;
}
.contents-line-description {
	color: #333;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.25;
	width: 95%;
}
.contents-line-description img {
	display: inline-block;
	margin: 10px auto;
	max-width: 100%;
	height: auto;
}
.contents-line-issue {
	bottom: 5px;
	color: #999;
	font-size: 10px;
	position: absolute;
	right: 10px;
}
.contents-line-button {
	display: inline-table;
	margin-top: 10px;
	width: 100%;
}
@media (max-width: 800px) {
	.contents-line-icon {
		height: 75px;
		margin: 0 5px;
		width: 25%;
	}
	.contents-line-title {
		font-size: 12px;
	}
	.contents-line-description {
		display: none;
	}
}





.contents-sline {
	background: #fff url("/img/arrow.png") no-repeat scroll 100% 50% / 16px 16px;
	border-bottom: 1px dotted #999;
	padding: 3px 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.contents-sline-icon {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float: left;
	height: 75px;
	margin-right: 5px;
	width: 25%;
}
.contents-sline-title {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.1;
	width: 95%;
}
.contents-sline-tag {
	display: flex;
}
.contents-sline-description {
	color: #333;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.1;
	width: 95%;
}
.contents-sline-issue {
	bottom: 5px;
	color: #999;
	font-size: 10px;
	position: absolute;
	right: 10px;
}
@media (max-width: 800px) {
	.contents-sline-icon {
		height: 75px;
		margin: 0 5px;
		width: 25%;
	}
	.contents-sline-title {
		font-size: 12px;
	}
	.contents-sline-description {
		display: none;
	}
}





/* サブメニュー */
.submenu {
	border-bottom: 1px solid #008cff;
	font-size: 12px;
	margin: 10px 0;
}
.submenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	table-layout: fixed;
	width: 100%;
}
.submenu ul li {
	background-color: #fff;
	border: 1px solid #008cff;
	border-bottom: 0;
	border-radius: 3px 3px 0 0;
	display: table-cell;
}
.submenu ul li a {
	color: #000;
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	width: 100px;
}
.submenu ul li a.active {
	background-color: #008cff;
	color: #fff;
	font-weight: bold;
}




list-item {
    border-bottom: 1px dotted #ccc;
    border-left: 15px solid #ccc;
    display: block;
    margin: 3px 0;
    overflow: hidden;
    padding-bottom: 5px;
}

list-cell {
	border: 1px solid #000;
	cursor: pointer;
	float: left;
	position: relative;
}
list-cell span {
	background-color: #000;
	border-radius: 5px;
	color: #fff;
	font-size: 0.8em;
	font-weight: bold;
	left: 3px;
	width: 2em;
	position: absolute;
	text-align: center;
	top: 3px;
}



/* カーテン */
.curtain {
	background: #000;
	height: 99999px;
	left: 0;
	opacity: 0.5;
	padding-top: 100px;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index : 980;
}

/* ボタン */
button {
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}
button img {
	vertical-align: middle;
	width: 1em;
}
.btn {
	background-color: #008cff;
	border-radius: 5px;
	box-shadow: 1px 1px 2px #333;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	margin: 3px 0;
	padding: 7px;
	width: 95%;
	white-space: nowrap;
}
.cancel {
	background-color: #999;
	color: #fff;
}
.info {
	background-color: #0056ac;
	color: #fff;
}

/* ライン */
.dot-top-line {
	border-top: 1px dotted #999;
}
.dot-bottom-line {
	border-bottom: 1px dotted #999;
}

/* エラー */
.caution {
	color: #f00;
	font-size: 12px;
}

/* テーブル */
.tbl {
	border: 1px solid #999;
	border-collapse: collapse;
	font-size: 12px;
	margin: 5px auto;
	width: 95%;
}
.tbl th {
	background-color: #eee;
	border: 1px solid #999;
	color: #000;
	font-weight: bold;
	text-align: center;
}
.tbl tr td {
	border: 1px dotted #999;
	text-align: center;
}
.tbl .hr {
	border-bottom: 1px solid #999;
}



/* 入力フォーム */
.form-base {
	background-color: #fff;
	padding: 10px 5%;
}
.form-base input[type=text]:focus, .form-base input[type=password]:focus, .form-base textarea:focus{
	outline: none;
}
.form-base input[type=radio], .form-base input[type=checkbox] {
	display: none;
}
.form-base p {
	overflow: hidden;
	padding: 0 0 3px 0;
}
.form-base label {
	font-weight: bold;
}
.form-base input[type=text], .form-base input[type=password], .form-base textarea, .form-base select {
	border: none; 
	border-radius: 0px;
	border-bottom: 1px solid #ccc;
	box-shadow: -2000px 5px 0px #ccc;
	color: #000;
	padding: 10px;
	transition: all 500ms;
	-webkit-transition: all 500ms;
	width: 100%;
}
.form-base input[type=text]:focus, .form-base input[type=password]:focus, .form-base textarea:focus, .form-base select:focus {
	border-bottom: 1px solid #fff;
	box-shadow: 0px 5px 0px #008cff;
	transition: all 500ms;
	-webkit-transition: all 500ms;
}
.form-base input[type=radio] + label {
	white-space: nowrap;
}
.form-base input[type=radio] + label:before {
	border:1px solid #ccc;
	border-radius: 100px;
	box-shadow: 8px 0px 0px #ccc;
	content: "";
	display: inline-block;
	height: 20px;
	margin-right: 10px;
	transition: all 500ms;
	-webkit-transition: all 500ms;
	vertical-align: middle;
	width: 20px;
}
.form-base input[type=radio]:checked + label:before {
	border-radius: 100px;
	box-shadow: -8px 0px 0px #008cff;
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transition: all 500ms;
	-webkit-transition: all 500ms;
}
.form-base input[type=checkbox] + label {
	white-space: nowrap;
}
.form-base input[type=checkbox] + label:before {
	background-color: #fff;
	border:1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0px 0px 0px #ccc;
	content: "";
	display: inline-block;
	height: 20px;
	margin-right: 5px;
	transition: all 500ms;
	-webkit-transition: all 500ms;
	vertical-align: middle;
	width: 20px;
}
.form-base input[type=checkbox]:checked + label:before {
	border: 1px solid #008cff;
	background-color: #008cff;
	transition: all 500ms;
	-webkit-transition: all 500ms;
}
.input-confirm {
	border: none; 
	border-bottom: 1px solid #ccc;
	color: #000;
	font-size: 12px;
	padding: 10px;
	width: 100%;
}
.form-base-box {
	padding-left: 2em;
	text-indent: -1em;
}





/* ページトップボタン */
#page-top {
	bottom: 20px;
	font-size: 18px;
	display: none;
	opacity: 0.8;
	position: fixed;
	right: 20px;
	z-index: 1200;
}
#page-top a {
	background: #666 none repeat scroll 0 0;
	border-radius: 30px;
	color: #fff;
	cursor: pointer;
	display: block;
	padding: 15px 0;
	text-align: center;
	text-decoration: none;
	width: 50px;
}
#page-top a:hover {
	background: #999;
	text-decoration: none;
}





/* 共通 */
.pc {
	display: inline-block;
}
.mobile {
	display: none;
}
.column-1 {
	width: 100%;
}
.column-2 {
	float: left;
	width: 50%;
}
.column-3 {
	float: left;
	width: 33.33%;
}
.column-4 {
	float: left;
	width: 25%;
}
.column-5 {
	float: left;
	width: 20%;
}
.clear {
	clear: both;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
.text {
	color: #000;
	font-size: 12px;
}
.show {
	display: block;
}
.hide {
	display: none;
}
.none-bg {
	background: none;
}
.arrow-bg {
	background: #fff url("/img/arrow.png") no-repeat scroll 100% 50% / 16px 16px;
}
.small {
	font-size: 0.8em;
	font-weight: normal;
}
.large {
	font-size: 1.2em;
	font-weight: bold;
}
pre {
	font-size: 12px;
	padding: 5px;
	white-space: pre-wrap;
}
a {
	color: #0056ac;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
.contents-block-icon:hover, .contents-line-icon:hover, .contents-sline-icon:hover, .title-icon:hover, .author-icon:hover, a.opacity-link:hover, a img:hover {
	text-decoration: none;
	opacity: 0.7;
	filter: alpha( opacity=70 );
	-ms-filter: "alpha( opacity=70 )";
}
.contents-block-title:hover, .contents-line-title:hover, .contents-sline-title:hover, .title-name:hover, .author-name:hover, a.text-link:hover, .article-description a:hover {
	text-decoration: underline;
	opacity: 1.0;
	filter: alpha( opacity=100 );
	-ms-filter: "alpha( opacity=100 )";
}
@media (max-width: 800px) {
	.pc {
		display: none;
	}
	.mobile {
		display: inline-block;
	}
}
