@charset "utf-8";
.qa-list {
	width: 96%;
	max-width: 940px;
	margin: 0 auto 80px;
}
.qa-list dl {
	position: relative;
	margin: 0px 0 2px;
	cursor: pointer;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::after {
    position: absolute;
    top: 22px;
    right: 26px;
    display: block;
    width: 15px;
    height: 15px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 3px solid #51a6f4;
    border-right: 3px solid #51a6f4;
}
.qa-list .open::after {
    top: 28px;
    transform: rotate(-45deg);
}
.qa-list dl dt {
	position: relative;
	margin: 0;
	padding: 20px 50px 20px 50px;
	background-color: #b9def9;
	font-size: 20px;
	line-height: 1.4em;
}
.qa-list dl dt::before {
	font-size: 20px;
	line-height: 1;
	position: absolute;
	top: 22px;
	left: 20px;
	display: block;
	content: 'Q.';
	color: #46a9f2;
	font-weight: bold;
}
.qa-list dl dd::before {
	font-size: 20px;
	line-height: 1;
	position: absolute;
	top: 25px;
	left: 20px;
	display: block;
	content: 'A.';
	font-weight: bold;
	color: #E77200;
}
.qa-list dl dd {
	position: relative;
	margin: 0;
	padding: 20px 20px 20px 50px;
	font-size: 20px;
	background-color: #f2f6f9;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width:768px){
 .qa-list dl {
    margin: 0px 0 0;
}
.qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 16px 40px 16px 45px;
    font-size: 16px;
}
.qa-list dl dt::before {
    font-size: 16px;
    top: 18px;
    left: 20px;
}
.qa-list dl dd::before {
    font-size: 16px;
    top: 1em;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 45px;
    font-size: 16px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

/*新規記述位追加　アコーディオン*/

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #000;
	background:#fff;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
