﻿@charset "utf-8";

/*-------------------------*/
/*  base
/*-------------------------*/

body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    line-height: 1.8;
    font-size: 12px;
    color: #f1e6d3;
    background: #010b14;
}

/*  ancher  */
a {
    color: #f1e6d3;
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

a:hover {
    opacity: 0.5;
}

nav a:hover {
    text-decoration: underline;
    opacity: 1;
}

a:visit,
a:hover,
a:link {
    color: #f1e6d3;
}

/*-------------------------*/
/*  header
/*-------------------------*/
header {
    height: 50px;
    border-bottom: 1px solid #6a5c3e;
    background: #000000;
}

header .inner {
    margin: 0 auto;
    display: flex;
}

#title {
    padding: 12px 0;
    width: 50%;
}

#title img {
    max-height: 26px;
}

nav {
    width: 50%;
    padding: 25px 0;
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav li {
    text-align: center;
    margin-right: 2px;
    margin-left: 60px;
}

nav li:first-child {
    margin-left: 0px;
}

nav li a {
    text-decoration: none;
}

/*-------------------------*/
/*  section
/*-------------------------*/
.inner {
    width: 1200px;
    position: relative;
    z-index: 1;
}

section {}

section .inner {
    border-top: 2px solid #6a5c3e;
    margin: 50px auto 0;
    padding: 50px 0 0;
    position: relative;
}

section#main .inner {
    border-top: none;
}

section .inner:after {
    display: block;
    width: 100%;
    height: 1px;
    background: #6a5c3e;
    position: relative;
    bottom: -55px;
    left: 0;
}

section#links .inner:after {
    display: none;
}


h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1#all:after {
    display: block;
    opacity: 0.5;
    content: "";
    width: 100px;
    height: 100px;
    background: url("../images/logo_all.png") no-repeat center;
    background-size: cover;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center {
    text-align: center;
}

p.date {
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

h1,
h2 {}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

dl {
    margin: 0 auto;
    text-align: left;
}

dt {
    float: left;
    clear: both;
    width: 10%;
    font-size: 12px;
    opacity: 0.5;
    line-height: 16px;
}

dd {
    width: 93%;
    padding: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 16px;
}

dd div {
    width: auto;
    margin: 0 0 15px 50px;
}

dd img {
    width: 30px;
}

dd input,
dd label {
    cursor: pointer;
}

input[type=checkbox] {
    display: none;
}

label span {
    position: relative;
}

label span:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 4px;
    border: 1px solid #666;
    background: none;
    z-index: 1;
}

label input[type=checkbox]:checked+span:before {
    border: 1px solid #05c4b8;
}

label input[type=checkbox]:checked+span:after {
    display: block;
    content: "";
    width: 12px;
    height: 10px;
    position: absolute;
    left: -18px;
    top: 4px;
    background: url("../images/icon_checked.png") no-repeat center;
    z-index: 10;
}

#links .inner {
    text-align: center;
    padding: 120px 0;
}

#itemlist ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    font-size: 14px;
}

#itemlist ul li {
    width: 23%;
    box-sizing: border-box;
    margin-right: 2%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    background: #131a1f;
    border: 1px solid #6a5c3e;
    padding: 5px;
    font-size: 10px;
}

#itemlist ul li:nth-child(4n) {
    margin-right: 0px;
}

#itemlist ul li:nth-child(n+5) {
    margin-top: 20px;
}

#itemlist ul li div {}

#itemlist ul li div.img {
    width: 20%;
}

#itemlist ul li div.name {
    width: 80%;
    color: #cdbd83;
    padding: 0 0 0 5px;
    box-sizing: border-box;
}

#itemlist ul li img {
    display: block;
    border: 1px solid #6a5c3e;
}

/*-------------------------*/
/*  footer
/*-------------------------*/
footer {
    height: 4vh;
    text-align: center;
}

footer div {
    width: 1200px;
    margin: 0 auto;
}

footer .inner {
    padding: 80px 10px;
}

footer>div:last-child {
    font-size: 10px;
    padding: 10px 0;
    width: 100%;
    background: #000;
    color: #fff;
}

/*-------------------------*/
/*  tables
/*-------------------------*/
#statslist .inner {
    overflow-y: hidden;
}

#statslist .inner::-webkit-scrollbar {
    height: 10px;
    background-color: #6a5c3e;
}

#statslist .inner::-webkit-scrollbar-thumb {
    background: #f1e6d3;
    height: 10px;
    border-radius: 5px;
}

button {
    margin: 0 0 1em 0.5em;
}

table {
    border-collapse: collapse;
    white-space: nowrap;
    margin-bottom: 20px;
}

th {
    color: #fff;
    background: #6a5c3e;
    cursor: pointer;
    padding: 3px;
    min-width: 50px;
    border-right: 1px solid #010b14;
}

th::after {
    content: ' ■ ';
}

th.asc::after {
    content: ' ▲ ';
}

th.desc::after {
    content: ' ▼ ';
}

td {
    text-align: center;
    vertical-align: middle;
    background: #131a1f;
    color: #f1e6d3;
    padding: 3px;
    border-right: 1px solid #010b14;
    border-bottom: 1px solid #6a5c3e;
}

td.name img {
    display: block;
    margin: 0 auto;
    width: 40px;
}

.search-list__search-box {
    margin-bottom: 1em;
}

.search-list__search-box input {
    width: 300px;
    background: #eee;
    padding: 5px;
}

.role img,
.race img {
    width: 20px;
}

.hide {
    display: none;
}

.reset {
    background: inherit;
    color: #6a5c3e;
    padding: 5px 10px;
    border: 1px solid #6a5c3e;
    cursor: pointer;
}
.reset:active {
    background: inherit;
    color: #fff;
    background: #6a5c3e;
    padding: 5px 10px;
    border: 1px solid #6a5c3e;
    cursor: pointer;
}
/*-------------------------/*-------------------------*/
/*  sp
/*-------------------------/*-------------------------*/
@media (max-width: 767px) {

    dl,
    dt,
    dd {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    dl {
        margin: 0 auto;
        width: 100%;
        text-align: left;
    }

    dt {
        float: none;
        clear: both;
        width: 100%;
        opacity: 0.5;
        padding: 0px;
        padding-left: 10px;
    }

    dd {
        padding: 0px;
        padding-left: 30px;
        margin-bottom: 20px;
    }

}