@charset "utf-8";

.list-area{
    margin: 20px auto 60px auto;
    overflow: hidden;
}
.sidebar{
    float: left;
    width: 200px;
    background-color: #fafafa;
    margin-right: 40px;
    padding: 20px 0;
    border: 1px solid #e8e8e8;
}
.sidebar-inner{
    padding: 0 20px;
    margin-bottom: 30px;
}
.sidebar-inner:last-child{
    margin-bottom: 0;
}
.sidebar-title{
    font-size: 20px;
    font-weight: 700;
}
.sidebar-body{
    margin-top: 10px;
}

/* サイドバーメニュー */
.sidebar-list li a{
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px;
}
.sidebar-list li:nth-child(n + 4){
    display: none;
}


/* サイドバー価格 */
.price-select-wrap{
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 2px;
    padding: 10px;
    position: relative;
}
.price-select-wrap:after{
    position: absolute;
    top: 17px;
    right: 17px;
    content: "";
    width: 0;
    height: 0;
    padding: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

/* もっと見るボタン */
[data-more-btn]{
    font-size: 12px;
    background-color: #2996cc;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
}

/* リスト本体 */
.list-area .c-section{
    float: left;
    width: calc(100% - 200px - 40px);
}
.result-text{
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ローダー */
.loader{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 10;
  }
  .loader-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 100px;
  }
  .line{
    width: 8px;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to top, #f599fa, #45f3d1);
  }
  .line1{
    left: 0;
    animation: loader 0.3s ease alternate infinite;
  }
  .line2{
    left: 20px;
    animation: loader 0.3s 0.2s ease alternate infinite;
  }
  .line3{
    left: 40px;
    animation: loader 0.3s 0.4s ease alternate infinite;
  }
  @keyframes loader {
    0% {
      height: 0;
    }
    100% {
      height: 75%;
    }
  }
    

/* ======================================== */
/* ===レスポンシブ=========================== */
/* ======================================== */
@media screen and (max-width: 768px){

    .main-contents{
        margin-top: 20px;
    }

    .sidebar{
        float: none;
        width: auto;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .list-area .c-section{
        float: none;
        width: auto;
    }
    .inner.list-area{
        margin: 0 10px;
    }
    .sidebar-inner{
        margin-bottom: 20px;
    }
    .sidebar-title{
        font-size: 16px;
        position: relative;
    }
    .sidebar-title::after{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        content: "＋";
        font-size: 24px;
    }
    .sidebar-title.is-active::after{
        content: "ー";
    }
    .sidebar-body{
        display: none;
    }
}