/* タブを横スクロール対応 */
.hscroll {
    overflow-x: auto;
    overflow-y: hidden;
    display: -webkit-box;
    display: -moz-box;
    margin-left: -1px;
}
.hscroll::-webkit-scrollbar {
    display: none;
}
.hscroll > li {
    float:none;
    margin-bottom: 0;
}
.hscroll > li a {
    border-radius: 0;
    border: 1px solid #e7e7e7;
    border-top: none;
    border-bottom: none;
    color: #555;
}
.hscroll > li a:hover {
    background-color: transparent;
}
.hscroll > li.title {
    margin-right: 52px;
}
.hscroll > li.title a {
    position: fixed;
    transform: translate3d(0,0,0); /* for safari ref)https://stanko.github.io/ios-safari-scoll-position-fixed/ */
    z-index: 1;
    background: #555;
    color: #ffffff;
    border-bottom: 5px solid #555 !important;
}
.hscroll > li.active a {
    border-top: none !important;
    border-bottom: 5px solid #555 !important;
}
.hscroll > li:not(:last-child) a {
    border-right: none !important;
}
