@charset "UTF-8";

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
    font-weight: normal;
    vertical-align: baseline;
    font-family: "Hiragino Kaku Gothic ProN", ヒラギノ角ゴ ProN W3, メイリオ, Meiryo, Osaka, ＭＳ\ Ｐゴシック, MS PGothic, Sans-Serif, monospace;
    list-style: none;
    transition: 0.3s;
}
@media screen and (max-width: 820px) {
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        font-size: 14px;
    }
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
@font-face {
    font-family: 'minnium';
    src: url('../font/TA_minnium_E.ttf');
}

* {
    box-sizing: border-box;
    letter-spacing: 2px;
}

body {
    background-color: #fff;
    color: #000;
}
a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 1px;
}
a:hover {
    color: #39c;
    border-color: #39c;
}

header {
    text-align: center;
    padding: 1em 0 0.25em 0;
    margin-bottom: 1em;
    border-bottom: 1px solid #000;
}
@media screen and (max-width: 820px) {
    header {
        text-align: center;
        width: 100%;
    }
}
header h1 a {
    font-size: 200%;
    border: none;
    color: #000;
    font-weight: bold;
    font-family: minnium;
    letter-spacing: 0.25em;
}
header.novel h1 a {
    font-size: 100%;
    font-weight: normal;
}

main {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 820px) {
    main {
        margin: 0 1em;
    }
}

#summary p,
#precautions p {
    margin-bottom: 0.5em;
    font-size: 80%;
}

#novels {
    margin: 1em 0;
}
#novels .novelBlock {
    border: 1px solid #666;
    margin: 0.5em 0;
}
#novels .title {
    background-color: #6cf;
    padding: 0.25em;
    font-size: 125%;
}
#novels .outline {
    padding: 0.25em 1em;
    border-bottom: 1px solid #999;
}
#novels .chapter {
    padding: 0.5em 0 0 0.5em;
    font-weight: bold;
}
#novels .novelBlock ul {
    margin: 0.5em 0 1em 1em;
}
#novels .novelBlock li {
    display: inline-block;
    list-style: none;
    margin: 0.25em 0 0.25em 1em;
}
#novels .novelBlock .shortBlock {
    margin-top: 1em;
}
#novels .novelBlock .shortBlock a {
    margin-left: 1em;
}
@media screen and (max-width: 820px) {
    #novels .novelBlock ul {
        margin: 0.5em 0 1em 0;
    }
    #novels .novelBlock li {
        display: block;
        width: 100%;
        height: 3em;
        text-align: center;
    }
    #novels .novelBlock li:not(:last-child) {
        margin-bottom: 0.5em;
    }
    #novels .novelBlock li {
        width: 100%;
        padding: 0.25em;
        margin: 1em 0 0 0;
        text-align: left;
        line-height: 1.8em;
    }
}
#novels .novelBlock .shortBlock .outline p {
    margin-left: 1em;
}

#novelMain {
    line-height: 175%;
    font-size: 110%;
}
#novelMain #titleArea {
    margin-bottom: 1em;
    border-bottom: 1px solid #333;
}
#novelMain #mainTitle {
    font-size: 150%;
    text-align: center;
    padding-bottom: 0.25em;
}
#novelMain #subTitle {
    text-align: center;
    padding-bottom: 0.25em;
}
#novelMain p {
    font-size: 100%;
    letter-spacing: 0;
}

nav.paging {
    margin: 1em 0;
}
nav.paging table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}
nav.paging table td {
    width: 25%;
    border: solid 1px #999;
}
nav.paging table td a,
nav.paging table td p {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
}
nav.paging table td a:hover {
    color: #000;
    background-color: #6cf;
}

.red {
    color: #f00;
}