@charset "UTF-8";
/*******************************
 
FAQCss
 
*******************************/
.panel dt{
	font-size: 110%;
    font-weight: bold;
    letter-spacing: .05em;
    text-align: left;
    background: #eff6f5;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px 10px 14px 52px;
	position: relative;
}
.panel dt:before{
	content: "Q";
    font-family: 'Baloo 2', cursive;
    font-size: 120%;
    position: absolute;
    left: 18px;
    top: 12px;
    color: #3dac9e;
}
.panel dt.open{
	color: #fff;
	background: #3dac9e;
}
.panel dt.open:before{
	color: #d6e8e4;
}

.panel dd{
	display: none;
	text-align: left;
    padding: 10px 10px 35px 70px;
	position: relative;
}
.panel dd:before{
	content: "A";
    font-family: 'Baloo 2', cursive;
    font-size: 120%;
	text-align: center;
    line-height: 48px;
	color: #3dac9e;
    background: url(../img/ico@2x.png) no-repeat center;
    background-size: 48px auto;
    position: absolute;
    left: 2px;
    top: 0;
    width: 48px;
    height: 48px;
}