@charset "utf-8";
/* 取り扱い店舗を探す */
.store_wrapper {
    margin: auto;
    width: 1000px;
}

.store_search-title{
    background: #1b2a5b;
    color: #fff;
    height: 65px;
    font-size: 24px;
    line-height: 65px;
    margin-top: 50px;
    text-align: center;
}

.store_search{
    display: flex;
    flex-wrap: wrap;
    width: 800px;
    margin: 30px auto 0;
}

.store_search div,
.store_search .selectCustom{
    display: block;
    width: 400px;
}

.store_search div{
    font-size: 16px;
    height: 50px;
    line-height: 50px;
}

.store_search .selectCustom{
    border: 1px solid #c1c1c1;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    position: relative;
}
.selectCustom *{
    font-weight: initial;
}
.selectCustom::after {
    content:  '';
    width: 48px;
    height: 48px;
    display:  block;
    position:  absolute;
    top: 0;
    right: 0;
    border-left: 1px solid #c1c1c1;
}

.selectCustom::before {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 50%;
    right: 0;
    margin: -10px 17px 0 0;
    content: "";
    vertical-align: middle;
    border-bottom: 2px solid #c1c1c1;
    border-right: 2px solid #c1c1c1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.store_search .selectCustom span{
    padding-left: 1em;
    font-size: 16px;
    line-height: 50px;
}

.store_search .selectCustom select{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border: none;
    color: #192b5b;
    font-size: 14px;

    line-height: 30px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    z-index: 1;
}

.hideItem{
    display: none;
}

.store_list{
    width: 800px;
    margin: 30px auto 0;
}

.store_list h4{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 16px;
}

.shopList li {
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    color: #333;
    display: block;
    float: left;
    font-size: 18px;
    line-height: 50px;
    margin: -1px 0 0 0;
    position: relative;
    width: 50%;
}

.shopList li a {
    color: inherit;
    display: block;
    text-decoration: none;
    font-weight: 500;
}

.shopList li a::after {
    border: 1px solid #d2d2d2;
    border-width: 2px 2px 0 0;
    content: '';
    display: block;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
}