/*=====================================
 アクセス履歴ページ用CSS
 旧サイト history.html インラインスタイルから抽出
=====================================*/

#pageTitle {
    background: black;
}
h3 {
    color: #FF6600;
    font-size: 14px;
    text-align: center;
    margin-bottom: 7px;
}
.list-tab {
    display: flex;
    justify-content: space-between;
}
.list-tab > div {
    width: 50%;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 3;
    opacity: .3;
}
.list-tab > div.selected {
    opacity: 1;
}
.list-tab > div > a > img {
    width: 100%;
}
.list ul {
    display: none;
}
.list ul.selected {
    display: block;
}
.list ul.list-slot {
    border-top: solid 4px #36b818;
}
.list ul.list-pachi {
    border-top: solid 4px #f93e3e;
}
.list ul li {
    border-bottom: solid 1px black;
}
.list ul li a {
    display: block;
    padding: 12px 24px 10px;
    color: black;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
}
.list ul li a::before {
    content: '';
    display: block;
    height: 70%;
    width: 4px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.list ul.list-slot li a::before {
    background-color: #36b818;
}
.list ul.list-pachi li a::before {
    background-color: #f93e3e;
}
