@charset "utf-8";
/* CSS Document */
#mainvisual{
	width:100%;
	margin: 65px  auto 0;
	height: 130px!important;
	height: 100%;
	position:relative;
	z-index:10;
    -webkit-clip-path: content-box; /* workaround for Safari border-radius issue */
	/*border-radius:20px;*/
	margin-bottom: 10px;
	background: url(../img/mainvisual_01.png) center;
	
}

#main_back {
    width:100%;
	margin:0 auto;
	max-height: 130px;
	height: 100%;
    background: url(../img/mainvisual_03.png) center top no-repeat;
    position: relative;
    z-index: 999;
}

.main-title{
	position: absolute;	
	top: 44px;
	left: 26%;
	font-size: 110%;
	text-align: center;
	line-height: 0.8;
}

.main-title h4{
	font-size: 70%;
}

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

					qa
					
--------------------------------------------------*/

.qa{
	width: 100%;
	padding: 60px 0;
	background: #fafcf6;	
}

.qa-wrapper{
	background: #fff;
	position: relative;	
	width: 96%;
	margin: 0  auto;
	padding: 30px 10px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.qa-wrapper h2{
	position: absolute;
    top: -21px;
    left: 15%;
    font-size: 160%;
}








/*アコーディオン全体*/
.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-weight: normal;
    padding: 2%;
    transition: all .5s ease;
	border-bottom: 1px solid #ddebbf ;
	display: flex;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #ddebbf;
    
}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}

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

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

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

.title h3{
	width: 270px;
	font-size: 100%;
	padding-right: 35px;	
}

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

.box p{
	display: flex;	
}

.box .text{
	width: 270px;
    border-bottom: 1px dashed #ddebbf;
    font-size: 14px;
}

.q-title{
	line-height: 25px;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
    background: #c3e6f9;
    color: #fff;
    font-size: 160%;
    margin-bottom: 4px;
    width: 30px;
    height: 30px;
    font-weight: bold;
}

.a-title{
	line-height: 22px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: #f5a24d;
    color: #fff;
    font-size: 120%;
    width: 25px;
    height: 25px;
    font-weight: bold;
}

.under_text{
	font-size: 100%;
	text-align:center;
	padding-top:10px;
}
