@charset "UTF-8";
/*------------------------------

  faq Css

------------------------------*/
h2{
    font-weight: 600;
    letter-spacing: 0.25rem;
	font-size: 30px;
}
h2 span{
   	display: block;
    line-height: 1;
    font-size: 18px;
    color: #a7a7a7;
    font-weight: 300;
	padding-top: 10px;
}

#hero .main-ttl img{
	margin-bottom: 20px;
}

#faq h3{
	font-size: 24px;
	margin-bottom: 40px;
	color: #007cd4;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	
	
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	#faq h3 {
    	margin-bottom: 30px;
	}
}
	
/* アコーディオン　コンテンツ */
.tgl-btn{
	display: block;
	text-align: left;
	background: #fbfbfb;
	color: #494949;
	border: solid 1px #7d7d7d;
	margin: 20px 0;
	padding: 10px;
	position: relative;
	z-index: 1;
}
.tgl-btn .question{
	font-size: 18px;
	font-weight: 500;
    display: inline-block;
    width: 90%;
	padding-right: 30px;
    position: relative;
    text-indent: -18px;
    padding-left: 18px;
}
.tgl-btn .question:after{
	content: "\f107";
    font-family: FontAwesome;
    display: inline-block;
	position: absolute;
	right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.tgl-btn:after{
	content: "詳しく見る";
    display: inline-block;
    font-size: 90%;
    padding-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.tgl-btn.open .question:after{
	content: "\f106";
}
.tgl-btn.open:after{
	content: "閉じる";
}

.tgl-contents .answer{
	text-align: left;
    padding-left: 40px;
    position: relative;
}
.tgl-contents .answer:before{
	content: "A.";
    display: inline-block;
    position: absolute;
    left: 10px;
    font-weight: 600;
    font-size: 18px;
    top: -2px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.tgl-btn .question {
		font-size: 16px;
		width: 85%;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.tgl-btn .question {
    	font-size: 14px;
		width: 75%;
	}
}