/*メニュー共通 -------------------------------------------------------------------------*/

/*ヘッダメニュー  ----------------------------------------*/
.maturepage-nav {
	margin: 0 0 5px;
	padding: 0;
	border-top: 1px solid #aaa;
	font-size: 1.8rem;
	list-style-type: none;
/*	font-weight: bold;*/
}
/*clearfix*/
.maturepage-nav:after {
	content: "";
	clear: both;
	display: block;
}
.maturepage-nav li {
	float: left;
	width: 50%;
	text-align: center;
	border-bottom: 1px solid #aaa;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*奇数のli要素に適応*/
.maturepage-nav li:nth-child(odd) {
	border-right: 1px solid #aaa;
}
.maturepage-nav a {
	display: block;
	line-height: 34px;
/*	color: #000;*/
	text-decoration: none;
}
.maturepage-nav a:hover {
/*	color: #000;*/
	background: #e6e6e6;
}


/*横幅1280px以上に適応*/
@media screen and (min-width: 1280px) {

.maturepage-nav li:nth-child(odd) {
	border-right: none;
}
.maturepage-nav {
	display: table;
	table-layout: fixed;
	width: 100%;
	border-top: none;
	border-collapse: collapse;
}
.maturepage-nav li {
	float: none;
	display: table-cell;
	width: 100%;
	border-bottom: none;
	border: 1px solid #aaa;
}

}

.maturepage-on-li {
	background-color:#328DBA;
}

.maturepage-on-link {
	color: #ffffff;
}


/*表示サイズメニュー  ----------------------------------------*/

.dispsize {
/*	padding: 10px;*/
	padding: 30px 10px 20px 10px;;
/* 	margin-bottom: 40px;*/
}

.dispsize input {
	display: none;
}

.dispsize label {
	display: block;
	float: left;
/*	margin: 0;*/
/*	font-size: 1.8rem;*/
	font-size: 18px;
	text-align: center;
/*	line-height: 1;*/
	line-height: 18px;
/*	transition: .2s;*/
	/*color: #869198;*/
	color: #636566;
}

.dispsize label.switch-title {
/*	cursor: pointer;*/
	width: 40%;
/*	padding: 10px;*/
	padding: 10px 2px;
	background: #ffffff;
}

.dispsize label.switch-on {
	cursor: pointer;
	width: 20%;
	padding: 10px;
	background: #bdc3c7;
}

.dispsize label.switch-off {
	cursor: pointer;
	width: 20%;
	padding: 10px;
	background: #bdc3c7;
}

.dispsize label:first-of-type {
	border-radius: 3px 0 0 3px;
}

.dispsize label:last-of-type {
	border-radius: 0 3px 3px 0;
}

.dispsize input[type="radio"]:checked + .switch-on {
	background-color: #a1b91d;
	color: #fff;
}

.dispsize input[type="radio"]:checked + .switch-off {
	background-color: #e67168;
	color: #fff;
}


/*media Queries スマホサイズ
----------------------------------------------------*/
@media screen and (max-width : 669px) {/*670px以上だったら無効*/


}

/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 671px) {/*670px以下だったら無効*/

.dispsize label.switch-title {
	width: 20%;
}

}


