@charset "UTF-8";
.b-contents{
    padding-top: 100px;
    background: url(../img/backg.jpg);
}
.list-area{
    margin: 30px 10px 0 10px;
    overflow: hidden;
}
.sidebar{
    float: left;
    width: 200px;
    background: #d8c42c;
    margin-right: 40px;
    padding: 20px 0;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 60px;
}
.sidebar-inner{
    padding: 0 20px;
    margin-bottom: 30px;
}
.b-sidebar-inner{
    padding: 0 20px;
    margin-bottom: 30px;
}
.sidebar-inner:last-child{
    margin-bottom: 0;
}
.sidebar-title{
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
}
.b-sidebar-title{
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #e6e6e6;
}
.b-sidebar-inner a{
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
    display: block;
}
.sidebar-body{
    margin-top: 10px;
    display: none;
}
.sidebar-list{
    text-align: center;
}
.sidebar-list li a{
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.result-text{
    display: block;
    font-size: 26px;
    font-weight: bold;
    margin: 10px 10px;
    border-bottom: 1px solid #f2f2f2;
}
.sidebar-title::after {
    position: absolute;
    transform: translateY(-10%);
    content: "▼";
    font-size: 24px;
}
.list-area .c-section{
    float: right;
    width: calc(100% - 200px - 40px);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}
[data-more-btn]{
    font-size: 12px;
    cursor: pointer;
    background-color: #313132;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
}

/*レスポンシブ*/
@media screen and (max-width: 768px){
    .b-contents{
        padding-top: 10px;
    }
    .sidebar{
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
        width: auto;
    }
    .list-area .c-section{
        width: auto;
        float: none;
    }
    .sidebar-inner{
        margin-bottom: 20px;
    }
    .b-sidebar-inner{
        margin-bottom: 20px;
    }
    .sidebar-title{
        font-size: 16px;
        position: relative;
    }
    .b-sidebar-title{
        font-size: 16px;
        position: relative;
    }
    .sidebar-title::after{
        position: absolute;
        top: 50%;
        left: 210px;
        transform: translateY(-50%);
        content: "＋";
        font-size: 24px;
    }
    .inner.list-area{
        margin: 0 10px;
    }
}