/* Accordion styles */
.tabs {
   border-radius: 5px;
   overflow: hidden;
}
.tab {
	width: 100%;
	color: #333;
	overflow: hidden;
}
.tab input[name="rd"] {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.tab input[name="rd"]:checked + .tab-label {
	background: #e0e0e0;
}
.tab input[name="rd"]:checked + .tab-label::after {
	transform: rotate(90deg);
}
.tab input[name="rd"]:checked ~ .tab-content {
	max-height: 600vh;
	padding: 1em;
}
.tab-label {
	display: flex;
	justify-content: space-between;
	padding: 0.5em;
	padding-left: 2em;
	background: #ececec;
	font-weight: bold;
	font-size:medium;
	cursor: pointer;
}
.tab-label:hover {
	background: #e0e0e0;
}
.tab-label::after {
	content: "";
	position: relative;
	width: 15px;
	height: 15px;
	top: 10px;
	background: url(https://www.note-pc.biz/images/icon/left.svg) 0 0 no-repeat;
	text-align: center;
	transition: all 0.35s;
}
.tab-content {
	max-height: 0;
	padding: 0 1em;
	color: #333;
	background: #fff;
	transition: all 0.35s;
}
.tab-close {
	display: flex;
	justify-content: flex-end;
	padding: 1em;
	font-size: 0.75em;
	background: #ececec;
	cursor: pointer;
}
.tab-close:hover {
	background: #e0e0e0;
}
/*20210218 */
.tabs2 {
   border-radius: 5px;
   overflow: hidden;
}
.tab2 {
	width: 100%;
	color: #333;
	overflow: hidden;
}
.tab2 input[name="rd"] {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.tab2 input[name="rd"]:checked + .tab-label {
	background: #e0e0e0;
}
.tab2 input[name="rd"]:checked + .tab-label::after {
	transform: rotate(90deg);
}
.tab2 input[name="rd"]:checked ~ .tab-content {
	max-height: 400vh;
	padding: 1em;
}
.tab-label2 {
	display: flex;
	justify-content: space-between;
	padding: 0.5em;
	padding-left: 2em;
	background: #00000;
	border:1px solid #ECECEC;
	font-weight: bold;
	font-size:Medium;
	cursor: pointer;
}
.tab-label2:hover {
	background: #e0e0e0;
}
.tab-label2::after {
	content: "";
	position: relative;
	width: 15px;
	height: 15px;
	top: 10px;
	background: url(https://www.note-pc.biz/images/icon/left.svg) 0 0 no-repeat;
	text-align: center;
	transition: all 0.35s;
}
.tab-content2 {
	max-height: 0;
	padding: 0 1em;
	color: #333;
	background: #fff;
	transition: all 0.35s;
}
.tab-close2 {
	display: flex;
	justify-content: flex-end;
	padding: 1em;
	font-size: 0.75em;
	background: #000000;
	border:1px solid #ECECEC;
	cursor: pointer;
}
.tab-close2:hover {
	background: #e0e0e0;
}
/*20200520 kikuzawa*/
.data .c12 .qa-category{
	margin-bottom: 30px;
	border-bottom: #000 2px solid;
}
.data .c12 .tabs{
	display: none;
}
.data .c12 .tabs:first-child{
	display: block;
}
.data .c12 .qa-category ul{
	font-size: 0;
}
.data .c12 .qa-category li{
	display: inline-block;
	padding: 10px 40px;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}
.data.test .c12 .qa-category li{
	width: 33.3333%;
}
.data .c12 .qa-category li.on{
	color: #fff;
	background: #000;
}
@media screen and (max-width:480px) {
	.data .c12 .qa-category li{
		padding: 10px 0;
		width: 33%;
		box-sizing: border-box;
	}
}