﻿.js-accordion dd {
	display: none;
}

.faq_list {
	border-bottom: 1px solid #707070;
}
.faq_list .question {
	position: relative;
	padding: 25px 60px;
	border-top: 1px solid #707070;
	cursor: pointer;
}
.faq_list .question:before {
	position: absolute;
	top: 10px;
	left: 15px;
	display: block;
	content: "Q.";
	font-size: 32px;
}
.faq_list .question:after {
	position: absolute;
	top: 30px;
	right: 20px;
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background: url("../images/img_plus.png") no-repeat center / 15px 15px;
}
.faq_list .question.minus:after {
	background: url("../images/img_minus.png") no-repeat center / 15px 15px;
}
.faq_list .answer {
	position: relative;
	padding: 10px 60px 25px 45px;
	margin-left: 50px;
}
.faq_list .answer:before {
	position: absolute;
	top: 3px;
	left: 10px;
	display: block;
	content: "A.";
	font-size: 24px;
}
@media (max-width: 750px){
	.faq_list .question {
		padding: 25px 30px 25px 40px;
	}
	.faq_list .question:before {
		top: 9px;
		left: 5px;
		font-size: 3.2rem;
	}
	.faq_list .question:after {
		top: 50%;
		right: 5px;
		margin-top: -7.5px;
	}
	.faq_list .answer {
		padding: 10px 20px 25px 30px;
		margin-left: 20px;
	}
	.faq_list .answer:before {
		top: 2px;
		left: 5px;
		font-size: 2.4rem;
	}
}


.code_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #505050;
}
.code_table thead th {
	padding: 12px;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	background-color: #505050;
}
.code_table thead th + th {
	border-left: 1px solid #fff;
}
/*.code_table tbody tr:nth-of-type(2n) {
	background: #f8f8f8;
}*/
.code_table tbody td {
	font-size: 1.4rem;
	padding: 5px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #505050;
	background-color: #fff;
}
.code_table tbody td:nth-of-type(2),
.code_table tbody td:nth-of-type(3) {
	text-align: left;
}
@media (max-width: 750px){
	.table_wrap {
		width: 100%;
		overflow-x: auto;
	}
	.code_table {
		width: 800px;
	}
}





