@charset "utf-8";
header.under_mv{
    background-image:  linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../images/qanda/qanda_bg.png);
}

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

.accordion-area li{
    margin-top: 3%;
}

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

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: 600;
    font-size:clamp(1.8rem, 1.703rem + 0.48vw, 2rem);
    padding: 2% 2% 2% 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 2% 2% 2%;
    padding: 2%;
    font-size: 1.6rem;
}
