@charset "UTF-8";


/*------------------------------

アコーディオン

------------------------------*/

/*タイトル*/
.question-box-ttl{
    font-size: 18px;
    color: #595757;
	padding: 20px 25px 20px 30px;
}
.question-box-ttl:before{
	content: "Q.";
    font-weight: bold;
	font-family: "Times New Roman";
    font-size: 18px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 36%;
	color: #104243;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.question-box-ttl{
		font-size: 16px;
	}
}


/*内容*/
.answer{
	padding: 30px 0 0 30px;
	position: relative;
}
.answer:before{
	content: "A.";
    font-weight: bold;
	font-family: "Times New Roman";
    font-size: 18px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 34px;
	color: #df9964;
}
.answer p{
	margin-bottom: 30px;
}
.answer a{
	color: #d17936;
    border-bottom: solid 1px #d17936;
    padding-bottom: 3px;
}
.answer .mds{
	margin-bottom: 20px;
}
.answer .mds:before{
	content: "";
	background-color: #d17936;
	padding: 3px;
    margin-right: 5px;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){

}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.answer:before {
		top: 32px;
	}
}
