@charset "utf-8";
/* CSS Document */

#mainvisual{
	width:100%;
	margin: 80px  auto 0;
	height: 200px!important;
	height: 100%;
	position:relative;
	z-index:10;
    -webkit-clip-path: content-box; /* workaround for Safari border-radius issue */
	/*border-radius:20px;*/
    background: url(../img/mainvisual_01.png) center top no-repeat;
}

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

.main_title{
	position: absolute;	
	top: 90px;
	left: 40%;
	font-size: 200%;
	text-align: center;
	line-height: 0.8;
}

.main_title span{
	font-size: 70%;
}

/*--====== パンくずリスト ======--*/



#pan_box{
	width:100%;
	height:	40px;
	background:#fff;
	color:#535353;
}


#pan_list{
	width:1100px;
	height:30px;
	color:#535353;
	margin:0 auto;
}

/* リスト */
ol.topic-path {
list-style-type: none; /* リストマーク非表示 */
line-height:30px;
font-size:100%; /* 文字サイズ */
}
/* リスト項目 */
ol.topic-path li {
display: inline; /* 項目を横並び */
}

ol.topic-path li.first{
	padding-left:30px;
}


ol.topic-path li.second{
	padding-left:5px;
}


ol.topic-path li.first {
	background-image:url(../img/top_pan.png) ;
	background-position:5% 0%; /*リストマーク左5％　上から５０％*/
	background-repeat:no-repeat;
}

/* リンクエリア */
ol.topic-path li a {
padding-right: 20px; /* 右パディング */
background: url(../img/navi-marker.gif) no-repeat right ; /* 矢印記号（※） */
padding-bottom: 5px;
}
/* リンク色 */
ol.topic-path li a {
	font-size: 20px;
	color:#f5a24d;
	text-decoration:underline;
}
/* リンク色（マウスオーバー） */
ol.topic-path li a:hover{
	color:#F60;
}

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

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

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

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

.qa-wrapper h2{
	position: absolute;
    top: -25px;
    left: 35%;
    font-size: 175%;
}








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

/*アイコンの＋と×*/
.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);
}

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

.box p{
	display: flex;	
}

.box .text{
	width: 750px;
	border-bottom: 1px dashed #ddebbf ;
}

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

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


.under_text{
	font-size: 125%;
	padding-left:30px;
	padding-top:10px;
}



















