@charset "utf-8";
/* CSS Document */
.faq-wrap{
	overflow: hidden;
	max-width: 1000px;
	white-space: 100%;
	padding: 1rem;
	margin:  3rem auto;
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;

}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);

}
.title::after{
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}

.accordion-area{
	margin: 0 auto !important;
}


.aboutpage_btn{
	text-align: center;
	margin: 3rem auto;
	border-top:1px solid #EEE;
	padding: 1.5rem 0;
}

.aboutpage_btn h3{
	font-size: 0.825rem;

}

.aboutpage_btn .btn_mailto{
	border: 1px solid #111;
	padding: 1.5rem;
	font-size: 0.825rem;
	max-width: 300px;
	margin: 1rem;
	background: #FFF;
	color: #111;
	width: 100%;
	cursor: pointer;
}

.aboutpage_btn .btn_mailto:hover{
background:#242642;
color:#fff;
}

.box .faq-linkbtn a{
	text-decoration:none;
	color: blue;
}

.box .faq-linkbtn a:hover{
	color:#242642;
}
