
/* --------------------------------------------------------------------------- */
/* FAQ Setting */
/* --------------------------------------------------------------------------- */

.btn-faq{
	display: block;
	padding: 30px 20px 30px 88px;
	font-size: 20px;
	font-weight: 700;
	line-hieght: 1.35;
	color: #fff;
	text-decoration: none;
	background: #fd607a;
	box-shadow: 0 0 5px rgba(66,66,66,0.3);
    transition: all 0.3s;
	position: relative;
}
.btn-faq span{
	font-size: 14px;
	font-weight: 400;
}
.btn-faq:before{
	content: "？";
	display: block;
	width: 38px;
    height: 38px;
    margin: auto;
    font-size: 24px;
    line-height: 36px;
    color: #fd607a;
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	transition: color 0.3s;
}
.btn-faq:after{
	content: "";
	display: block;
    width: 0;
    height: 0;
	margin: auto;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	transition: right 0.3s;
}
.btn-faq.blank:after{
	width: 16px;
	height: 16px;
	border: none;
	background: url(../img2/common/icn_blank_w.png) left top / 100% auto no-repeat;
}

.btn-faq:hover{
	color: #fff;
	background: #424242;
	box-shadow: none;
}
.btn-faq:hover:before{
	color: #424242;
}
.btn-faq:hover:after{
	right: 15px;
}
.btn-faq.blank:hover:after{
	right: 20px;
}

.faq-list{
	list-style: none;
}

.faq-list li a{
	display: block;
	margin: 0 0 1em 1em;
	text-indent: -0.5em;
	font-weight: 500;
}
/*
.faq-list li:last-child a{
	margin: 0 0 0 1em;
}
*/
/*
.faq-list li a:before{
	content: "";
	display: inline-block;
	width: 0;
    height: 0;
	margin: 0 7px 0 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #ec1000 transparent transparent transparent;
}
*/
.faq-box{
	margin: 0 0 30px;
	padding: 0 0 30px;
	border-bottom: solid 1px #dcdcdc;
	min-height: 150px;
}

.faq-box dt{
	margin: 0 0 43px;
	padding: 10px 0 0 70px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
}
.faq-box dt:before{
	content: "Q";
	display: block;
	width: 50px;
	height: 42px;
	padding: 8px 0 0;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	text-align: center;
	background: #ec1000;
	border: solid 1px #ec1000;
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.faq-box dd{
	padding: 0 0 0 70px;
	font-size: 15px;
	line-height: 1.5;
	text-align: justify;
	position: relative;
}
.faq-box dd:before{
	content: "A";
	display: block;
	width: 50px;
	height: 42px;
	padding: 8px 0 0;
	font-size: 30px;
	font-weight: 700;
	color: #ec1000;
	line-height: 1;
	text-align: center;
	background: #fff;
	border: solid 1px #ec1000;
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.faq-box:last-of-type{
	margin: 0 0 70px;
	padding: 0;
	border-bottom: none;
}

.faq-box dd a.blank:after{
	margin-top: 3px;
	margin-right: 5px;
	vertical-align: top;
}



/* --------------------------------------------------------------------------- */
/* Responsive Setting */
/* --------------------------------------------------------------------------- */

@media only, screen and (max-width: 768px) {
	
	.btn-faq{
        width: 100%;
        margin-bottom: 15px;
        padding: 15px 40px 15px 53px;
		font-size: 17px;
    }
    .btn-faq span{
		display: block;
        font-size: 11px;
        font-weight: 400;
		line-height: 1.5;
    }
    .btn-faq:before{
        width: 28px;
        height: 28px;
        margin-right: 10px;
        font-size: 18px;
        line-height: 28px;
		left: 15px;
    }
    .btn-faq:after{
        right: 15px;
    }
    .btn-faq.blank:after{
        width: 16px;
        height: 16px;
        border: none;
        background: url(../img2/common/icn_blank_w.png) left top / 100% auto no-repeat;
    }
	
	.faq-box dt{
		font-size: 16px;
		margin-bottom: 25px;
		padding: 0 0 0 60px;
	}
	
	.faq-box dt:before{
        width: 40px;
        height: 34px;
        padding: 4px 0 0;
        font-size: 24px;
        border-radius: 100%;
    }

	.faq-box dd {
		font-size: 13px;
		padding-left: 60px;
	}
	
	.faq-box dd:before{
        width: 40px;
        height: 34px;
        padding: 5px 0 0;
        font-size: 24px;
    }
	
}/*max768*/

