@charset "UTF-8";


.accordion-area {
    list-style: none;
    width: 100%;
    position: relative;
}

.accord_area_logo {
    display: flex !important;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 10;
}


.accord_area_logo img {
    max-width: 40px !important;
}

#accrd_area_li {
    width: 100%;
    padding: 0 !important;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
    padding: 3% 3% 3% 50px;
    transition: .4s ease-in-out;
    color: #0051a4;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: lightgrey;
}

.title::before {
    top: 48%;
    right: 12.5px;
    transform: rotate(0deg);
}

.title::after {
    top: 48%;
    right: 12.5px;
    transform: rotate(90deg);
}

.box {
    display: none;
}

.title.close::after {
    background-color: transparent;
}

.accord_title_box {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(224,229,233,.5);
    right: 0;
    top: 10px;
}

@media screen and (max-width: 768px) {
    .title {
        padding: 20px 0;
        height: 60px;
        text-align: right;
        padding-right: 60px;
    }
}