/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    font-family: serif;
    font-size: 15px!important;
    line-height: 1.7;
}

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

.q-and-a-ttl {
    font-weight: bold;
    margin-top: 20px;
}

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

.accordion-area a {
    color: #fff;
    text-decoration: underline;
}

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

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

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

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

}

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

}

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

}

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

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

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

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

/*アコーディオンで現れるエリア*/
.parent-box {
    display: none;
    /*はじめは非表示*/
    background: #f5c279;
    margin: 0 3% 3% 3%;
    padding: 3%;
    text-align: justify;
    font-size: 14px;
}

.parent-box a {
    font-size: 14px;
    color: blue;
}
.box {
    display: none;
    /*はじめは非表示*/
    background: #f5c279;
    margin: 0 3% 3% 3%;
    padding: 3%;
    text-align: justify;
    font-size: 14px;
}

.box a {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
}

.box a:hover {
    opacity: 0.7;
}

/* 注記文の先頭行揃え */
.note-text-indent {
    text-indent: -1em;
    padding-left: 1em;
}