/*------------ branch ------------*/
.branch-list {
    margin: 90px -20px 0;
}
.branch-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 20px 40px;
    position: relative;
    text-align: center;
}
.branch-list li:nth-child(3n+1) {
    clear: left;
}
.branch-list li .box {
    max-width: 282px;
    margin: 0 auto;
    position:relative
}
.branch-list li .cover {
    position:absolute;
    left:0;
    right: 0;
    top:0;
    bottom: 0;
    z-index:5;
    font-size: 0;
}
.branch-list li .pic {
    position: relative;
    box-sizing: border-box;
}
.branch-list li .pic:before,
.branch-list li .pic .cover_h {
    content: "";
    transition: all .2s;
    position: absolute;
    opacity: 0;
}
.branch-list li .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 65, 16, .6);
}
.branch-list .pic .cover_h {
    width: 45px;
    height: 45px;
    top: 0;
    left: 50%;
    text-align: center;
    margin: -27px 0 0 -27px;
    border: 1px solid rgba(255, 255, 255, .72);
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
}
.branch-list .pic .cover_h:before {
    content: "more";
    display: block;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 45px;
    font-family: 'Istok Web', sans-serif;
    transform: rotate(45deg);
}
.branch-list .box:hover .pic:before,
.branch-list .box:hover .pic .cover_h {
    transition: all .2s;
    opacity: 1;
}
.branch-list .box:hover .pic .cover_h {
    top: 50%;
}
.branch-list li .text {
    margin: 25px 0 0 0;
}
.branch-list li .description {
    line-height: 1.6;
    color: #444444;
    position: relative;
    z-index: 35;
    text-align: left;
}
.branch-list .description a{
    position: relative;
    z-index: 35;
    display: inline-block;
}
.branch-list li a.map_box{
    display: block;
    position: relative;
    z-index: 35;
    width: 120px;
    margin: 10px auto;
    color: #879E25;
    border:solid 1px #879E25;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.branch-list li a.map_box:hover{
    background: #879E25;
    color: #fff;
}
.branch-list li .name {
    color: #879E25;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: 23px;
    margin: 0 0 10px 0;
}
.branch-list .box:hover .name {
    color: #C59452;
    text-decoration: underline;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1100px) {
    .branch-list {
        margin: 0px -20px;
    }
}
@media screen and (max-width: 900px) {
    .branch-list {
        max-width: 700px;
        margin: 0 auto;
    }
    .branch-list li {
        width: 50%;
    }
    .branch-list li:nth-child(3n+1) {
        clear: none;
    }
    .branch-list li:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 600px) {
    .branch-list li {
        width: 100%;
        padding: 0 0 40px;
    }
}
