@charset 'utf-8';

/* CSS Reset v0.1 20161108
 - created by miklabo
 ---------------------------------------------------------*/
html, body {
    height: 100%;
    box-sizing: border-box;
}

html, body, p, ol, ul, li, dl, dt, dd,
blockquote, figure, fieldset, legend,
textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    outline: none;
}

*:before,
*:after {
    box-sizing: border-box;
    outline: none;
}

article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    margin: 0;
    padding: 0;
    outline: none;
    vertical-align: top;
}

img, embed, object, audio, video {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

iframe {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
    text-align: left;
}

/* End CSS Reset
 ---------------------------------------------------------*/



/* Yaruyomi v0.1 20161108
 - created by miklabo
 ---------------------------------------------------------*/

/* アスキーアート表示用
----------------------------------------------------------*/
.aa {
    font-family: 'ＭＳ Ｐゴシック', 'MS PGothic', 'IPAMonaPGothic', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 18px;
    text-shadow: none;
}

.aa p {
    margin: 20px 0 20px 10px;
    overflow: auto;
    white-space: nowrap;
}

.id {
    color: #ff0000;
}

.name {
    color: #228B22;
    font-weight: bold;
}

/* Default CSS
----------------------------------------------------------*/
body {
    color: #444;
    background: #fcfcfc;
    line-height: 1.6;
    font-family: Helvetica, cursive, sans-serif;
    position: relative;
    word-wrap: break-word;
    word-break: break-all;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    min-width: 900px;
    font-size: 90%;
}

::-moz-selection { color: #fff;  background: #005D91; text-shadow: none; }
::selection { color: #fff;  background: #005D91; text-shadow: none; }

a {
    color: #333;
    outline: none;
    text-decoration: none;
    transition: all linear .2s;
}

a:hover {
    color: #bc4516;
}

input, select, button, textarea {
    font-family: Helvetica, cursive;
}

input[type="text"], button, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, textarea {
    font-size: .8rem;
    border: 1px solid #ddd;
    padding: 5px;
    background: #f8f8f8;
    box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

input:focus, textarea:focus {
    border: 1px solid #ccc;
    background: #fff;
}

.clearfix:after {
    display: block;
    content: '';
    clear: both;
}

.wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-clip {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.none {
    display: none;
}

.flex {
    display: flex;
}

.btn,
button {
    color: #fff;
    border: 1px solid #111;
    background: #333;
    padding: 10px;
    cursor: pointer;
    transition: all linear .2s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    outline: none;
}

.btn:hover,
button:hover {
    color: #fff;
    background: #222;
}

.btn .fa,
button .fa {
    margin-right: 10px;
}

h1 .fa,
h2 .fa,
h3 .fa {
    margin-right: 10px;
}

.block {
    display: block;
}

.status-current {
    background: #27475c !important;
}

.status-complete {
    background: #2d5c27 !important;
}

.status-ettr {
    background: #5c4727 !important;
}

.scrollbar::-webkit-scrollbar-track {
    background: #333;
}

.scrollbar::-webkit-scrollbar-track:vertical {
    border-right: 1px solid #292929;
    border-left: 1px solid #292929;
}

.scrollbar::-webkit-scrollbar-track:horizontal {
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.scrollbar::-webkit-scrollbar {
    background: #333;
}

.scrollbar::-webkit-scrollbar:vertical {
    width: 12px;
}

.scrollbar::-webkit-scrollbar:horizontal {
    height: 12px;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2) inset;
    background: #111;
    border-right: 1px solid #292929;
    border-left: 1px solid #292929;
}

.scrollbar::-webkit-scrollbar-thumb:vertical {
    border-right: 1px solid #292929;
    border-left: 1px solid #292929;
}

.scrollbar::-webkit-scrollbar-thumb:horizontal {
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.scrollbar::-webkit-scrollbar-corner {
    border: 1px solid #292929;
    background: #333;
}

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

input[type="radio"] + label,
input[type="checkbox"] + label {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    cursor: pointer;
    font-size: .8rem;
}

input[type="radio"] + label.block,
input[type="checkbox"] + label.block {
    display: block;
    margin: 0;
    padding: 5px 10px 5px 30px;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
    display: block;
    content: '';
    position: absolute;
    left: -18px;
    top: -2px;
    font-family: FontAwesome;
    font-size: .9rem;
}

input[type="radio"] + label.block:before,
input[type="checkbox"] + label.block:before {
    left: 10px;
    top: 3px;
}

input[type="radio"] + label:before {
    content: "\f10c";
}

input[type="checkbox"] + label:before {
    content: "\f096";
}

input[type="radio"]:checked + label:before {
    content: "\f111";
}

input[type="checkbox"]:checked + label:before {
    content: "\f046";
}

.success {
    color: #0060A1;
}

.success.block {
    background: #DEF2FF;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #C1E0F5;
}

.error {
    color: #c53600;
}

.error.block {
    background: #FFE1D6;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #EBB8A4;
}

.r18 {
    padding: 0 5px;
    border-radius: 5px;
    color: #fff;
    background: #A84767;
    font-size: .74rem;
    line-height: 1.3;
}

.r18.g {
    background: #CC4141;
}

/* Header
----------------------------------------------------------*/
header {
    background: #0B141A;
    font-size: .9rem;
    border-top: 5px solid #1b262e;
}

/* Header logo
----------------------------------------------------------*/
.header-logo {
    position: relative;
}

.header-logo a {
    line-height: 60px;
    color: #999;
    margin-left: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.header-logo a:hover {
    color: #fff;
}

/* Header Nav
----------------------------------------------------------*/
.header-nav {
    border-top: 1px solid #23333D;
    border-bottom: 1px solid #23333D;
}

.header-nav ul {
    display: flex;
    flex-wrap: nowrap;
}

.header-nav li {
    flex-basis: calc(100% / 5);
    line-height: 40px;
    text-align: center;
    position: relative;
}

.header-nav a {
    display: block;
    text-decoration: none;
    color: #ccc;
    padding: 0 20px;
    cursor: pointer;
}

.header-nav a:hover {
    color: #fff;
    background: #23333D;
}

/* Layouts
----------------------------------------------------------*/
.front-img {
    border-bottom: 1px solid #f4f4f4;
}

.main.wrapper {
    color: #666;
    display: flex;
    padding-right: 0;
}

.contents {
    width: calc(100% - 380px);
    flex-basis: auto;
    padding-bottom: 20px;
}

.contents.single {
    width: 100%;
}

.sidebar {
    margin-left: 20px;
    width: 340px;
    flex-basis: auto;
    background: #fff;
    border-left: 1px solid #f4f4f4;
    border-right: 1px solid #f4f4f4;
    padding-bottom: 20px;
}

/* Contents
----------------------------------------------------------*/
.sect > h1 {
    color: #333;
    margin: 10px 0 0;
    padding: 10px;
    font-size: 1rem;
}

.sect > h2 {
    color: #333;
    font-size: .75rem;
    font-weight: bold;
    padding: 5px 20px 5px 30px;
}

.sect .text {
    margin: 0 30px;
}

.sect .text p {
    margin-bottom: 10px;
}

/* Episode List
----------------------------------------------------------*/
.eplist h2 {
    margin-top: 10px;
    padding: 5px 10px;
    background: #f8f8f8;
    font-family: 'Orbitron', sans-serif;
}

.eplist li li {
    border-top: 1px solid #eee;
    padding: 5px 5px 5px 20px;
}

.eplist li > a {
    margin-left: 10px;
}

.eplist-info {
    margin-top: 5px;
    font-size: .75rem;
    color: #aaa;
    display: flex;
    justify-content: flex-start;
}

.eplist-info a {
    color: #aaa;
}

.eplist-info a:hover {
    color: #000;
}

.eplist-info span {
    display: inline-block;
    padding: 0 5px;
    margin-right: 5px;
    margin-left: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}

/* Work List
----------------------------------------------------------*/
.wlist li {
    border-top: 1px solid #eee;
    padding: 5px 5px 5px 20px;
}

.wlist li > a {
    margin-left: 10px;
}

.wlist-info {
    margin-top: 5px;
    font-size: .75rem;
    color: #aaa;
    display: flex;
    justify-content: flex-start;
}

.wlist-info a {
    color: #aaa;
}

.wlist-info a:hover {
    color: #000;
}

.wlist-info span {
    display: inline-block;
    padding: 0 5px;
    margin-right: 5px;
    margin-left: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}

.wlist-info .status {
    width: 85px;
}

.wlist-info .episode-count {
    min-width: 50px;
}

/* Sidebar
----------------------------------------------------------*/
.side-sect {
    padding: 0 0 20px;
}

.side-sect > h1 {
    margin: 0 0 20px;
    padding: 10px 20px;
    background: #F7F8FA;
}

.side-sect > h2 {
    color: #aaa;
    font-size: .75rem;
    font-weight: bold;
    padding: 5px 20px 0;
}

.side-sect .text {
    margin: 0 20px;
}

.side-sect .text p {
    margin-bottom: 10px;
}

.summary {
    color: #fff;
    text-align: center;
    background: #7E8387;
}

.summary h1 {
    margin: 0;
    background: transparent;
}

.summary .flex {
    padding: 0 20px 0 0;
}

.summary p {
    width: calc(100% / 3);
    font-size: 1.5rem;
    border-right: 1px solid #727475;
    font-family: 'Orbitron', sans-serif;
}

.summary.column1 p {
    width: 100%;
    border-right: 0;
}

.summary p:last-child {
    border-right: 0;
}

.summary p span {
    display: block;
    font-size: .8rem;
    color: #ddd;
}

.summary small {
    font-size: .8rem;
}

/* Comments ( Sidebar )
----------------------------------------------------------*/
.side-comments {
    margin: 0 20px;
}

.side-comments li {
    position: relative;
    border-bottom: 1px solid #eee;
}

.side-comments p {
    line-height: 1.4;
}

.side-comments .title {
    color: #aaa;
    font-size: .75rem;
}

.side-comments .date {
    color: #aaa;
    position: absolute;
    right: 10px;
    bottom: 3px;
    font-size: .7rem;
}

.side-comments a {
    display: block;
    height: 60px;
    padding: 5px 0 0;
}

.side-comments a:hover {
    background: #fcfcfc;
}

/* Image List ( Sidebar )
----------------------------------------------------------*/
.imglist {
    margin: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.imglist li {
    flex-basis: 50%;
    text-align: center;
}

.imglist a {
    display: block;
    padding: 10px 0;
}

.imglist a:hover img {
    box-shadow: 0 0 2px 1px #ff9249;
}

.imglist img {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    border: 5px solid #fff;
    box-shadow: 0 0 2px 1px #ddd;
}

.imglist figcaption {
    display: block;
    background: rgba(255, 255, 255, .3);
    line-height: 1.1;
    font-size: .7rem;
}

.imglist figcaption a {
    padding: 5px;
}

/* Image List ( Contents )
----------------------------------------------------------*/
.contents .imglist li {
    flex-basis: calc(100% / 6);
}

/* Tag List ( Sidebar )
----------------------------------------------------------*/
.taglist {
    font-size: .8rem;
    margin: 0 20px;
}

.taglist li {
    margin: 0 5px 5px 0;
    display: inline-block;
}

.taglist a {
    display: block;
    padding: 2px 10px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.taglist a:hover {
    opacity: .6;
}

/* Tag List ( Contents )
----------------------------------------------------------*/
.tagall-list {
    font-size: .75rem;
    margin: 20px 20px 0;
}

.tagall-list li {
    width: 148px;
    margin: 0 5px 5px 0;
    display: inline-block;
}

.tagall-list a {
    display: block;
    padding: 2px 5px;
    border-radius: 5px;
}

.tagall-list a:hover {
    opacity: .6;
}

/* List List ( Sidebar )
----------------------------------------------------------*/
.linklist {
    margin: 0 20px;
}

/* Amazon Ranking 広告
----------------------------------------------------------*/
.amazon-ranking {
    overflow: hidden;
    padding: 10px 10px;
    background: #fff;
    white-space: nowrap;
    position: relative;
    text-align: center;
    border-top: 1px solid #ddd;
}

.amazon-ranking img {
    opacity: .7;
    border: 5px solid #ddd;
    transition: all .1s linear;
}

.amazon-ranking img:hover {
    opacity: 1;
}

.amazon-ranking a {
    margin: 0 2px;
    display: inline-block;
    vertical-align: top;
    max-width: 160px;
    text-decoration: none;
    color: #666;
    white-space: normal;
    text-align: center;
}

.amazon-ranking span {
    display: inline-block;
    padding: 0 5px;
}

.amazon-ranking img {
    max-width: 140px;
}

/* まとめ表示
----------------------------------------------------------*/
.thread {
    background: #efefef;
    color: #000;
    text-shadow: none;
    position: relative;
    padding: 220px 0 0;
}

.thread h1 {
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    font-family: serif;
    margin: 10px 0;
    font-size: 1.4rem;
    padding: 50px 20px 0;
    line-height: 1;
    border-bottom: 1px solid #ddd;
    background: #f4f4f4;
    text-align: center;
    position: absolute;
    z-index: 100;
}

.thread .r18tag {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0;
    z-index: 120;
}

.thread .r18 {
    padding: 2px 5px;
    display: inline-block;
}

.thread .summary {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 120;
    background: transparent;
    color: #333;
}

.thread .summary p {
    margin: 0;
    font-size: 1rem;
    border-right: 1px solid #eee;
}

.thread .summary span {
    color: #999;
}

.thread .aa {
    padding: 1px 20px 20px;
}

.thread a {
    text-decoration: underline;
}

.thread-header,
.thread-footer {
    padding: 5px 0 10px;
    background: #091014;
    border-top: 1px solid #000;
    position: relative;
}

.thread-header-ad {
    width: 470px;
}

.thread-info {
    margin: 10px 0 10px;
}

.thread-work-info {
    width: calc(100% - 470px);
}

.thread-work-info a {
    color: #ccc;
    display: block;
    padding: 0 10px;
}

.thread-work-info a:hover {
    color: #fff;
}

.thread-work-info .status {
    background: #000;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin: 3px 5px 0 0;
    padding: 0 5px;
    font-size: .75rem;
    line-height: 22px;
}

.thread-work-info p {
    margin: 5px 0 0;
    padding: 0 0 0 10px;
}

.thread-work-info .r18 {
    line-height: 22px;
    padding: 0 5px;
    display: inline-block;
}

/* エピソードリスト ( グループ )
----------------------------------------------------------*/
.ep-group-nav {
    margin: 10px 0;
    border-bottom: 1px solid #a43700;
    overflow: hidden;
}

.ep-group-nav li {
    color: #ccc;
    margin: 0 5px 0 0;
    padding: 5px 20px;
    float: left;
    background: #23333D;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.ep-group-nav li.current {
    color: #fff;
    background: #a43700;
}

/* エピソードリスト
----------------------------------------------------------*/
.epshort-list {
    font-size: 0.75rem;
    margin: 10px 0 0;
}

.epshort-list li {
    margin: 0 5px 5px 0;
    float: left;
}

.epshort-list a {
    color: #ccc;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    background: #101d26;
    border: 1px solid #13232e;
}

.epshort-list li.current a,
.epshort-list a:hover {
    color: #fff;
    background: #a43700;
}

/* コメント
----------------------------------------------------------*/
.commentarea {
    padding: 0 0 20px;
}

.comments {
    margin: 20px 0;
    position: relative;
}

.commentlist li {
    font-size: 0.8rem;
    color: #333;
    position: relative;
    margin: 0 0 5px;
    padding: 10px 10px 10px 50px;
    border-bottom: 1px solid #eee;
}

.commentlist .is-delete {
    opacity: .5;
}

.commentlist .num {
    position: absolute;
    left: 10px;
    top: 15px;
    width: 30px;
    text-align: center;
}

.commentlist p {
    margin: 5px 0;
    padding: 0;
}

.commentlist .name {
    color: #427e42;
}

.commentlist .id {
    color: #b34e2e;
    margin: 0 0 0 10px;
}

.commentlist .comment-info {
    color: #666;
    font-size: .95em;
}

/* ツール
----------------------------------------------------------*/
.thread-tools {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 200;
    color: #666;
}

.thread-tools.active {
    background: #fff;
}

.thread-tools section {
    float: right;
    background: #fff;
    width: 400px;
    height: 100%;
    padding: 0 20px;
    z-index: 300;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    overflow: auto;
}

.thread-tools .idcut-area {
    width: 200px;
}

.thread-tools h1 {
    color: #000;
    margin-top: 10px;
    padding: 10px 0;
}

.thread-tools h2 {
    margin: 10px 0 5px;
    padding: 5px 0;
    font-size: .8rem;
    border-bottom: 1px solid #eee;
}

/* ツールボタン
----------------------------------------------------------*/
.thread-nav {
    float: right;
    height: 100%;
    position: relative;
}

.thread-nav ul {
    position: relative;
    top: calc(50% - 125px);
    width: 50px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.thread-nav li {
    color: #444;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.thread-tools.active .thread-nav li {
    border-left-color: #a43700;
}

.thread-nav .active,
.thread-nav li:hover {
    color: #fff;
    background: #a43700;
}

/* ツール個別スタイル
----------------------------------------------------------*/
.idcut-area p,
.player-area p {
    margin: 10px 0;
}

.player-area button {
    border: 1px solid #111;
    background: #191919;
    box-shadow: 0 1px 0 #333 inset;
    padding: 0 10px;
    height: 25px;
    color: #ccc;
    font-size: .7rem;
    cursor: pointer;
}

.player {
    background: #000;
    min-height: 203px;
}

.p-header {
    height: 160px;
    padding: 1px 0 0 0;
}

.p-contents {
    color: #999;
    margin: 0 -20px;
    padding: 20px;
    background: #091014;
    height: calc(100% - 160px);
    display: flex;
    flex-direction: column;
}

.p-btns {
    overflow: hidden;
    align-items: center;
    height: 30px;
}

.p-btns button {
    color: #fff;
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 5px;
    background: #000;
    box-shadow: inset 0 1px 1px #333, 0 3px 6px -5px #BBB;
}

.p-btns button:hover {
    background: #222;
}

.p-btns .stop {
    margin-right: 40px;
}

.p-url input {
    color: #333;
    width: 100%;
    background: #f4f4f4;
    border: 1px solid #ddd;
    box-shadow: none;
}

.p-time {
    overflow: hidden;
    height: 30px;
}

.p-current-time {
    float: left;
}

.p-duration {
    float: right;
}

.p-error {
    color: #c53600;
}

.p-desc {
    margin: 10px 0 0;
    padding-right: 5px;
    overflow: auto;
    height: calc(100% - 300px);
}

.idlist li {
    padding: 5px 0;
}

.idlist input[type="checkbox"] + label::before {
    top: 0;
}

.idlist input:checked + label {
    opacity: .6;
}

/* noUiSlider Style
----------------------------------------------------------*/
.time-seekbar {
    width: 100%;
    margin-bottom: 20px;
}

.volume-seekbar {
    margin-left: 5px;
    width: calc(100% - 195px);
}

.player-area .noUi-horizontal {
    height: 12px;
}

.player-area .noUi-target {
    background: #000;
    border: 1px solid #000;
    box-shadow: inset 0 1px 1px #222, 0 3px 6px -5px #BBB;
}

.player-area .noUi-connect {
    background: #3D6B87;
    border-radius: 3px;
}

.player-area .noUi-handle {
    width: 15px;
    height: 24px;
    left: -7px;
    top: -6px;
}

.player-area .noUi-handle:before {
    left: 4px;
    top: 4px;
}

.player-area .noUi-handle:after {
    left: 8px;
    top: 4px;
}

/* Comment Form
----------------------------------------------------------*/
.comment-form {
    color: #666;
}

.comment-form dl {
    margin: 15px 0 10px;
}

.comment-form dt {
    margin: 5px 0;
}

.comment-form input,
.comment-form textarea {
    color: #333;
    width: 100%;
    background: #f4f4f4;
    border: 1px solid #ddd;
    box-shadow: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #ccc;
    background: #fafafa;
}

.comment-notice {
    margin: 10px 0;
    font-size: .9rem;
}

/* Popup
----------------------------------------------------------*/
.popup {
    position: absolute;
    z-index: 700;
}

.popup .commentlist {
    margin-top: -10px;
    padding: 10px 20px 10px 50px;
    border: 1px solid #ccc;
    background: #fafafa;
    box-shadow: 0 0 2px #ddd;
}

.popup .res {
    margin-top: -20px;
    background: #fafafa;
    padding: 20px;
    border: 1px solid #ccc;
    max-width: 100%;
    box-shadow: 0 0 2px #ddd;
}

.popup .res p {
    margin: 0;
}

/* Work
----------------------------------------------------------*/
.work-header {
    color: #aaa;
    padding: 0 0 40px;
    background: #0B141A;
    border-top: 1px solid #000;
    position: relative;
    text-align: center;
}

.work-header .wrapper {
    position: relative;
    overflow: hidden;
}

.work-title {
    color: #fff;
    font-size: 1.6rem;
    padding: 40px 0 10px;
    font-family: serif;
}

.work-title .r18 {
    padding: 0 5px;
    line-height: 22px;
    display: inline-block;
}

.work-author {
    font-size: 1.1rem;
    margin: 0 0 40px;
    font-family: 'Orbitron', sans-serif;
}

.work-tags {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.work-tags li {
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: .75rem;
}

.work-tags a {
    display: inline-block;
    padding: 2px 10px;
    background: #25353D;
    color: #eee;
    border-radius: 5px;
}

.work-tags a:hover {
    opacity: .6;
}

.work-header .status-current,
.work-header .status-complete,
.work-header .status-ettr {
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    padding: 2px 5px;
    font-size: .75rem;
}

.tag-form {
    margin: 10px 0 0;
}

.tag-form input {
    color: #eee;
    border: 1px solid #333;
    background: #000;
    box-shadow: none;
    width: 200px;
}

.tag-form input:focus {
    border: 1px solid #666;
    background: #222;
}

.tag-form button {
    width: 200px;
    margin: 5px 0 0;
    padding: 5px 10px;
}

/* Page
----------------------------------------------------------*/
.page-body {
    padding: 20px;
}

.page-body h2 {
    margin: 20px 0 10px;
    font-weight: bold;
    color: #333;
}

.page-body p {
    margin: 10px 0;
}

.page-body table {
    margin: 10px 0;
    width: 100%;
}

.page-body tr {
    background: #fff;
}

.page-body tr:nth-of-type(2n) {
    background: #fafafa;
}

.page-body th,
.page-body td {
    border: 1px solid #eee;
    padding: 5px 10px;
}

.page-body th {
    color: #333;
    font-size: .8rem;
    font-weight: normal;
}

.page-body pre {
    margin: 10px 0;
    border: 1px solid #eee;
    background: #fafafa;
}

.page-info {
    text-align: right;
    color: #999;
}

/* Pagination
----------------------------------------------------------*/
.pagination {
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
}

.pagination li {
    border: 1px solid #ddd;
    box-shadow: 0 1px 0 #fff inset;
    background: #f6f6f6;
    margin-right: 5px;
}

.pagination .active,
.pagination li:hover {
    background: #fff;
}

.pagination a,
.pagination span {
    display: block;
    padding: 5px 12px;
    text-decoration: none;
}

.pagination .disabled {
    opacity: .3;
}

/* Dialog
----------------------------------------------------------*/
.dialog-bg {
    position: fixed;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.dialog {
    vertical-align: middle;
    display: table-cell;
}

.dialog-content {
    color: #333;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid #ddd;
}

.dialog p {
    margin: 0 0 10px;
}

.dialog .btns {
    padding: 10px 0 0;
    text-align: right;
}

.dialog button {
    color: #fff;
    border: 1px solid #000;
    padding: 5px 0;
    width: 100px;
    margin-left: 10px;
    cursor: pointer;
}

.dialog .ok {
    background: #3C84B0;
}

.dialog .ok:hover {
    background: #4E738A;
}

.dialog .cancel {
    background: #444;
}

.dialog .cancel:hover {
    background: #333;
}

/* Ad
----------------------------------------------------------*/
.thread-footer-ad {
    text-align: center;
    padding: 20px 0;
}

/* Footer
----------------------------------------------------------*/
footer {
    color: #999;
    background-color: #0B141A;
    background-image: url('../img/footer.png'), url('../img/footer2.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left center, right center;
    font-size: .85rem;
    border-top: 1px solid #0b0b0d;
    padding: 20px 0;
}

footer a {
    color: #888;
}

footer a:hover {
    color: #fff;
}

.author {
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-contents {
    justify-content: center;
}

.footer-sect {
    min-width: 200px;
    padding: 20px;
    flex-basis: auto;
    border-left: 1px solid #000;
    background: rgba(11, 20, 26, .5);
}

.footer-sect:first-child {
    border-left: 0;
}

.footer-sect h1 {
    margin-bottom: 10px;
    color: #444;
}

.footer-sect li {
    padding: 0 0 0 5px;
}

.footer-sect li .fa {
    margin-right: 10px;
}

/* transition
----------------------------------------------------------*/
.fade-transition {
    transition: all .5s ease;
    opacity: 1;
}
.fade-enter {
    opacity: 0;
}
.fade-leave {
    transition: none;
    opacity: 0;
}

/* media
----------------------------------------------------------*/
@media screen and (max-width: 1000px) {
    .main.wrapper {
        flex-direction: column;
    }

    .contents {
        width: 100%;
        padding-right: 20px;
    }

    .sidebar {
        margin-left: 0;
        width: 100%;
        border-left: 0;
    }
}

@media screen and (max-width: 460px) {
    body {
        padding: 0;
    }

    .thread-tools {
        right: 0;
        left: 0;
        bottom: auto;
    }

    .thread-tools.active {
        height: calc(100% - 40px);
    }

    .thread-toggle-button {
        float: none;
        position: absolute;
        width: 30px;
        height: 50px;
        line-height: 50px;
        top: 0;
        right: 0;
        text-align: center;
    }

    .thread-tools section,
    .thread-tools .idcut-area {
        width: 100%;
        height: calc(100% - 50px);
    }

    .thread-nav {
        float: none;
        width: 100%;
        height: 50px;
    }

    .thread-nav ul {
        top: 0;
        margin: 0 auto;
        width: 250px;
        overflow: hidden;
    }

    .thread-nav li {
        float: left;
        width: 50px;
        text-align: center;
        line-height: 50px;
        border: 0;
        border-right: 1px solid #333;
        box-shadow: -1px 0 0 #000 inset;
        cursor: pointer;
    }

    .thread-nav li:first-child {
        border-left: 1px solid #000;
        box-shadow: -1px 0 0 #000 inset, 1px 0 0 #333 inset;
    }
}
