@charset "utf-8";
/* CSS Document */

/* ========================================
	アコーディオン
======================================== */
dl.accordion {
	width:100%;
	margin:0;
	padding:10px;
	box-sizing:border-box;
}

dl.accordion dt {
	width:100%;
	text-indent:-2.2em;
	font-weight:bold;
	cursor:pointer;
	padding:5px 30px;
	margin-top:-1px;
	background-image:url(../common_img/accordion_open.jpg);
	background-repeat: no-repeat;
	background-position: 99% 50%;
	border:solid 1px #ccc;
	box-sizing:border-box;
}
dl.accordion dt.open {
	background-image:url(../common_img/accordion_close.jpg);
	background-repeat: no-repeat;
	background-position: 99% 50%;
}
dl.accordion dt:before{
	content:"Q.";
	color:#004D8C;
	font-size:129%;
	margin:0 5px;
}

dl.accordion dd {
	width:100%;
	text-indent:-2.2em;
	padding:10px 0 10px 30px;
	margin:0;
	background:#FFF;
	display:none;
	box-sizing:border-box;
}
dl.accordion dd:before{
	content:"A.";
	color:#F90;
	font-size:129%;
	font-weight:bold;
	margin:0 5px;
}