@charset "UTF-8";

/* Template & Designed by Orihashi Ren */
/* http://kerry.php.xdomain.jp/ */

/* webフォント */
@import url('https://fonts.googleapis.com/css2?family=Seaweed+Script&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');

@font-face {
    font-family: XANO明朝;
    src: url('https://cdn.leafscape.be/XANO-mincho/XANO-mincho_web.woff2')
        format("woff2");
}

/* 全体設定 */
* {
    padding: 0;
    margin: 0;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
*::-webkit-scrollbar{  /* Chrome, Safari 対応 */
    display: none;
}
@-ms-viewport {
    width: device-width;
}

/* 基本設定 */

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: inherit;
    font-size: 100%;
    vertical-align: baseline;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;}
html,body {
    padding:0;
    margin:0;
    height: 100%;
}
html {

    font-size: 14pt;
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 12pt;
    }
}
@media screen and (max-width: 1280px) {
    html {
        font-size: 11pt;
    }
}
@media screen and (max-width: 360px) {
    html {
        font-size: 10pt;
    }
}
body {
    width: 100%;
    text-align: justify;
    word-wrap: break-word; /* 禁則処理 */
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%; /* Safari横向き対策 */
    background-color: #fff;
    color: #12130b;
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}
body, input, select, textarea {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5rem;
    letter-spacing: 0.055em;
}
@media screen and (min-width: 768px) {
    body, input, select, textarea {
        font-size: 13px;
    }
}

/* リンク */
a {
    -moz-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    -webkit-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    -ms-transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    transition: color .8s ease-in-out, background-color .8s ease-in-out, border-bottom-color .8s ease-in-out;
    border-bottom: dotted 1px #fff;
    text-decoration: none;
    outline: none;
    color: #fe2b20;
}
a:hover {
    border-bottom-color: transparent;
    color: #fff;
}

/* 文字装飾 */
strong, b, .b {
    font-weight: 700; /*太字*/
}
strong {
    color: #E20613;
}
em, i {
    font-style: italic; /*斜体*/
}
em {
    border-bottom: 1px dashed #E20613;
}

/* text */
p {
    text-align: justify;
    margin: 0 0;
    padding: 0rem 0;
    line-height: 1.5rem; /*行間*/
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: 'Seaweed Script',XANO明朝, sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.055em; /*文字間隔*/
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 1rem 0rem 1rem;
}
h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 1rem 0rem 1rem;
}
h3 {
    font-size: 1.3rem;
    margin: 1rem 0rem 1rem;
}
h4 {
    font-size: 1.2rem;
    margin: 1rem 0rem 1rem;
}
h5 {
    font-size: 1.1rem;
    margin: 1rem 0rem 1rem;
}
h6 {
    font-size: 1.05rem;
    margin: 1rem 0rem 1rem;
}

/* 上付き */
sub {
    font-size: 0.6rem;
    position: relative;
    top: 0.5rem;
}
/* 下付き */
sup {
    font-size: 0.6rem;
    position: relative;
    top: -0.5rem;
}

/* マーカー */
mark {
    display: inline-block;
    padding: .1rem .5rem;
    margin: 0rem 0;
    background: linear-gradient(transparent 0%, #fe2b20 0%);
    color: #12130b;
    text-shadow: none;
}

/* 引用 */
blockquote {
    position: relative;
    padding: 5px 15px 5px 55px;
    box-sizing: border-box;
    font-style: italic;
    border-radius: 0px;
    background: rgba(255,255,255,.7);
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 38px;
    height: 30px;
    text-align: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    background: #fe2b20;
    font-weight: 900;
}
blockquote:after{
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
    border-left: 19px solid #fe2b20;
    border-right: 19px solid #fe2b20;
    border-bottom: 10px solid transparent;
}
blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}
blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #888888;
    opacity: .8;
}

/* コード */
code {
    border: none;
    font-family: "Courier New", monospace !important;
    margin: 0 0.25rem;
    padding: 0.25rem 0.65rem;
    background: rgba(255,255,255, .7);
    border-color: #eeeeee;
}
pre {
    width :100% !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    text-align: left;
    font-family: "Courier New", monospace !important;
    margin: 0 0 2rem 0;
}
pre code {
    width: 100% !important;
    overflow-x: auto;
    display: block;
    line-height: 1.5;
    padding: 1rem 1.5rem;
    box-sizing: border-box !important;
}

/* 区分線 */
hr {
    border: 0;
    border-bottom: solid 2px;
    margin: 3rem 0rem;
    border-bottom-color: #fff;
}

/* 文字揃え */
/*  <span class="align-center">例</span> 等と使用してください  */
.align-left {
    text-align: left;
}
.align-center,
.align-center p {
    text-align: center;
}
.align-right {
    text-align: right;
}

/* Box */
.box {
    text-align: left;
    width: 100%;
    height: auto;
    margin: 3rem 0rem;
    padding: 1.5rem;
    border-radius: 0px;
}
.box-1 {
    border: 1px solid #fff;
    background: transparent;
}
.box-2 {
    border: 1px solid #fe2b20;
    background: #fe2b20;
    color: #12130b;
}
.box > p {
    padding: 0 0;
    text-shadow: none;
}

/* lists */
ol, ul {
    text-align: left;
    margin: .5rem 0;
    list-style: none;
}
.list_no {
    list-style: none;
}
.list_un {
    list-style: disc;
}
.list_or {
    list-style: decimal;
}
.list_no > li,
.list_un > li,
.list_or > li {
    margin: 0 0 0 2rem;
    line-height: 1.5rem;
    padding-left: .5rem;
    text-align: left;
}
.float {
    margin: 0;
}
.float li {
    float: left;
    margin: 0 0.5rem;
}
.float:after {
    display: block;
    content: '';
    clear: both
}

/* dl */
dl {
    text-align: left;
}
.dltype1 {
    text-align: left;
    margin: 0.5rem 1rem;
}
.dltype1 > dt a,
.dltype1 > dt {
    color: #fe2b20;
    font-size: 13px;
    border-bottom: none;
}
.dltype1 > dd {
    margin-left: 1.3rem;
    font-size: 12px;
}

/* table */
.table_div {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin: 0 0rem;
}
table {
    margin: 0rem 0rem;
    width: 100%;
}
table thead {
    border-bottom: solid 2px #231d25;
}
table tbody tr {
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    border-color: #231d25;
}
table tbody tr:nth-child(odd) {
    background-color: rgba(255,255,255, .7);
}
table td {
    padding: 0.75rem 0.75rem;
}
table th {
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.5;
    padding: 0 0.75rem 0.75rem 0.75rem;
    text-align: left;
}
table tfoot {
    border-top: solid 2px;
    border-top-color: #eeeeee;
}
@media screen and (max-width: 980px) {
    table th {
        font-size: 0.9rem;
    }
}

/* link button */
.link {
    display: inline-block;
    height: 25px;
    line-height: 21px;
    margin: .2rem auto;
    padding: .1rem .3rem;
    border-radius: 5px;
    border: 1px solid #fe2b20 !important;
    color: #fe2b20 !important;
    transition: all .5s;
}
.link:hover {
    background-color: #fe2b20;
    color: #12130b !important;
}
.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    border: none;
    margin: 1rem;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1rem;
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s !important;
    -moz-transition: all .5s !important;
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif　!important;
}
.btn-1 {
    background: #fe2b20;
    border: 1px solid #fe2b20;
    color: #fff !important;
}
.btn-1:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #fe2b20 !important;
}
.btn-2 {
    background: #fe2b20;
    border: 1px solid #fe2b20;
    color: #12130b !important;
}
.btn-2:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #fe2b20 !important;
}
.btn-3 {
    background: #fff;
    border: 1px solid #fff;
    color: #12130b !important;
}
.btn-3:hover {
    background: #fe2b20;
    border: 1px solid #fe2b20;
    color: #12130b !important;
}
.btn-1:hover svg {
    fill: #fe2b20;
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: #fff;
    transition: all .5s;
}

/* form */
form {
    text-align: center;
}
.box-a {
    max-width: 340px;
    margin: 1rem auto;
    padding: 0rem;
    border: 1px solid transparent;
    background: transparent;
}
input[type=text],
textarea {
    outline: none;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,1);
    border-radius: 4px;
    padding: 8px 16px;
    line-height: 22px;
    color: #fff;
}
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgba(255,255,255,.8);
}
input[type=text]::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgba(255,255,255,.8);
}
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: rgba(255,255,255,.8);
}
input[type=text]::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,.8);
}
input[type],
textarea,
.cp_ipselect select {
    -moz-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    -webkit-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    -ms-transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out, background-color .4s ease-in-out;
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
input[type=text]:focus,
textarea:focus,
.cp_ipselect select:focus {
    outline: none;
    border-color: rgba(255,255,255,1);
    background: rgba(255,255,255,.25);
    color: #fff;
}
.form-element {
    margin-bottom: 20px;
}
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--text-color-headline);
    font-weight: 500;
}
.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
    border: 1px solid rgba(255,255,255,1);
    border-radius: 4px;
    background: transparent;
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255,255,255,.5);
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 8px 38px 8px 8px;
    color: rgba(255,255,255,.6)
}
.cp_ipselect select option{
    background-color: #fe2b20;
    color: #12130b;
}

/*-------------------- index --------------------*/

/* wrapper */
.wrapper {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    text-align: center;
    margin: 0;
    padding: 4rem 2.5rem 0;
}

/* header */
header {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    padding: 1rem;
    background: repeating-linear-gradient(-45deg,#12130b 0% ,#12130b 50%, #fe2b20 50%,#fe2b20 100%);
    color: #fff;
}
header img {
    height: 300px;
    width: auto;
}
.head-span {
    font-size: 32px;
}
.bottom-span {
    text-align: right;
    position: absolute;
    left: 1px;
    bottom: 25px;
    line-height: 1.7rem;
    font-size: 18px;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
}
.bottom-span b {
    font-weight: 400;
    font-size: 25px;
}
.bottom-span > span:first-of-type {
    position: relative;
    bottom: 10px;
    letter-spacing: .5rem;
}
.bottom-span > span:last-of-type {
    font-size: 16px;
}

/* contents */
.contents {
    flex: 1;
}
.inner {
    margin: 2.5rem auto;
    padding: 1rem 2rem;
    background: #12130b;
    color: #fff;
}
.m-600 {
    max-width: 600px;
    margin: 0 auto;
}
.m-1200 {
    max-width: 1200px;
    margin: 0 auto;
}
section, .section {
    margin: 7rem auto;
}
section:first-of-type, .section:first-of-type {
    margin: 4rem auto 7rem;
}

/* footer */
footer {
    margin-bottom: .5rem;
}

/* scroll box */
.scroll {
    position: relative;
    overflow-y: scroll;
    height: 8rem;
    width: 100%;
    margin: 0 auto 0rem;
    padding: 0;
    font-size: 11px;
    border-radius: 0px;
    border: 1px solid transparent;
    background: transparent;
}
.scroll mark {
    padding: 0.2em 0.5em;
    margin-bottom: .4rem;
    background: linear-gradient(transparent 0%, #fff 0%);
    color: #12130b;
}
.scroll .list_no {
    margin: 0;
}
.scroll .list_no li {
    margin: 0 0;
    padding-left: 1rem;
}

/* new */
.new::after {
    content: "new";
    color: #fe2b20;
    margin-left: 0.5rem;
    opacity: .8;
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* text */
h5 {
    text-align: left;
    padding-left: .5rem;
    border-left: 3px solid #fff;
}
h6 {
    text-align: left;
    margin: 0;
    font-size: 13px;
    font-family: 'Special Elite', XANO明朝, serif !important;
}
aside {
    padding: 1rem;
    margin: 1rem auto;
    background: #fe2b20;
    color: #12130b;
}

@media screen and (min-width: 481px) {
    header img {
        margin-right: -10rem;
    }
    .head-span {
        position: absolute;
        margin-left: -10rem;
        top: 5.4rem;
        font-size: 38px;
    }
    .bottom-span {
        left: 40%;
        bottom: 15%;
    }
}
@media screen and (min-width: 768px) {
    h6 {
        font-size: 14px;
    }
    .rows {
        display: flex;
        flex-wrap: wrap;
    }
}

/*-------------------- main --------------------*/

.pl {
    counter-reset: cnt;
}
.pl > div {
    margin-bottom: 1.5rem;
}
.pl h6::before {
    counter-increment: cnt;
    content: counter(cnt, decimal-leading-zero);
    margin-right: 10px;
    padding: .5rem .3rem .2rem;
    border-radius: 0;
    line-height: 1rem;
    font-style: italic;
    border: 1px solid #fff;
    color: #fff;
}
.pl p {
    margin: 0 1.5rem 0 2.3rem;
    opacity: .8;
    font-size: 13px;
}
.main ul {
    margin: 0 2rem 1rem;
    font-size: 11px;
}
.main ul li a {
    border-bottom: none;
}
.pl ul.pl-l {
    counter-reset: num;
}
.pl ul.pl-l li::before {
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
    padding-right: 8px;
}
.pl a {
    color: #fff;
}
.main b {
    border-bottom: 1px solid #fff;
    margin-right: .5rem;
}

/* form */
.main form {
    display: inline-block;
    margin: 1rem -1rem;
    max-width: 370px;
}
.main input[type] {
    display: inline-block;
}
.main input[type=text] {
    width: 40%;
    padding: .1rem .3rem;
    border: 1px solid #fe2b20;
    background: #fe2b20;
    color: #12130b;
}
.main input[type=submit] {
    -webkit-appearance: none;
    transition: all .5s;
    padding: .1rem .3rem;
    border-radius: 2px;
    border: 1px solid #fe2b20;
    background: #fe2b20;
    color: #12130b;
}
.main input[type=submit]:hover {
    border: 1px solid #fff;
    background: #fff;
    color: #fe2b20;
}

/*-------------------- novel --------------------*/

.novel-div h5 {
    border-left-color: #fe2b20;
    color: #fe2b20;
}

/* story */
.novel h5 {
    text-align: center;
    border-left: none;
}
.novel {
    text-align: center !important;
}
.novel > p {
    /*小説部分の段落に間隔を作りたくない場合はmargin-topに0を指定してください*/
    margin-top: 2rem;
    font-size: 15px;
    line-height: 2rem; /*小説部分の行間*/
    letter-spacing: 0.025rem; /*小説部分の文字間隔*/
    font-family: 'Noto Sans JP', sans-serif;

}
.novel > p:first-of-type {
    margin-top: 0;
}

/* ruby */
[data-ruby] {
    display: inline-block;
    position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  display: inline-block;
  position: absolute;
  transform: translateX(-50%) scale(.5);
  white-space: nowrap;
  top: -1.2rem;
  left: calc(50%);
  text-align: center;
  letter-spacing: 0.25em;
  font-size: 1em;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
[data-ruby] rt {
    display: none;
}

/* caption, afterword */
.cap-af {
    position: relative;
    margin: 4rem 0 !important;
    padding-bottom: .5rem;
    font-size: 16px;
}
.af {
    padding: 1rem;
    background: #fe2b20;
    color: #fff;
    font-size: 14px;

}
.af a {
    color: #fff;
}
.af h5 {
    border-left-color: #fff;
    color: #fff !important;
}

/* pagination */
ul.pagination {
    display: inline-block;
    position: relative;
    text-align: center !important;
    margin: 0 auto 5rem;
    padding: .3rem 1rem;
    line-height: 1.9rem;
    transition: all .5s;
    background: transparent;
}
ul.pagination > li {
    display: inline-block;
    margin: 0 5px 0 0;
}
ul.pagination > li a {
    border: none;
}
ul.pagination > li:last-child {
    margin: 0 0;
}

@media screen and (min-width:768px) {
    .cap-af {
        font-size: 12px;
    }
}

/*-------------------- notebook --------------------*/

.note-s {
    max-height: 6rem;
    overflow-y: scroll;
}
time {
    margin-right: .5rem;
}
.more {
    display: inline-block;
    margin: .7rem auto;
    padding: .4rem 2rem .2rem;
    letter-spacing: 0.1rem;
    line-height: 1.7rem;
    font-family: 'Special Elite',"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif　!important;
    border: 1px solid rgba(255,255,255,.8);
    color: rgba(255,255,255,.8);
    background: transparent;
    transition: all .5s;
}
.more:hover {
    border: 1px solid #fe2b20;
    background: #fe2b20;
    color: #12130b;
}
.note .pagination {
    margin: 3rem auto;
}

@media screen and (min-width: 768px) {
    .note .rows section {
        margin: 90px 0 0 50px;
        width: calc(((100% - (50px * 1)) / 2) - 1px);
    }
    .note .rows section:nth-child(2n+1) {
        margin-left: 0;
    }
    .note .rows section:nth-child(-n+2) {
        margin-top: 0;
    }
}
@media screen and (min-width: 1280px) {
    .note .rows section {
        display: block;
        margin: 100px 0 0 80px;
        width: calc(((100% - (80px * 2)) / 3) - 1px);
    }
    .note .rows section:nth-child(2n+1) {
        margin-left: 80px;
    }
    .note .rows section:nth-child(-n+2) {
        margin-top: 100px;
    }
    .note .rows section:nth-child(3n+1) {
        margin-left: 0;
    }
    .note .rows section:nth-child(-n+3) {
        margin-top: 0;
    }
}

/*-------------------- article --------------------*/

.article h3 {
    margin: 2rem auto;
}
.novel-div img {
    display: block;
    object-fit: cover;
    width: 80%;
    max-width: 300px;
    height: auto;
    margin: 2.5rem auto .5rem;
}
.novel-div aside {
    display: block;
    text-align: left;
    margin: 1rem auto;
    max-width: 300px;
    opacity: .8;
    font-size: 10px;
}
.sub {
    display: block;
    text-align: left;
    margin: 1rem 0;
    padding-left: .5rem;
    border-bottom: 1px solid #fff;
    border-left: 3px solid #fff;
    font-size: 15px;
    color: #fff;
}



/*-------------------- navigation --------------------*/

nav > a {
    display: none;
}
#nav-toggle > a {
    display: inline-block;
    font-size: 17px;
    color: #fff;
    border-bottom: none;
    position: fixed;
    text-align: left;
    font-weight: 700;
}
#nav-toggle.m_fixed {
    top: 0;
    background: #231d25;
}
#nav-toggle.m_fixed span {
    background: #fff;
}
@media screen and (max-width:767px) {
    #nav-toggle {
        position: fixed;
        width: 100%;
        height: 5rem;
        padding: 1.5rem 2rem;
        z-index: 999;
        mix-blend-mode: difference;
    }
    #nav-toggle div {
        display: block;
        position: fixed;
        right: 7%;
        margin:0;
        padding:0;
        width: 30px;
        height: 20px;
    }
    #nav-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 10px;
        transition: .5s ease-in-out;
    }
    #nav-toggle span:nth-child(1) {
        top: 0;
    }
    #nav-toggle span:nth-child(2) {
        top: 10px;
    }
    #nav-toggle span:nth-child(3) {
        top: 20px;
    }
    .open #nav-toggle {
        mix-blend-mode: screen;
    }
    .open #nav-toggle span:nth-child(1) {
        top: 9pt;
        transform: rotate(135deg);
        background: #fff !important;
    }
    .open #nav-toggle span:nth-child(2) {
        background-color: transparent;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 9pt;
        transform: rotate(-135deg);
        background: #fff !important;
    }
    nav {
        text-align: center;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        background-color: rgba(0, 0, 0, .5);
        z-index: 3;
    }
    nav ul {
        position: relative;
        display: inline-block;
        top: 50vh !important;
        margin:0;
        padding:0;
    }
    nav ul li {
        display: list-item !important;
        text-align: center;
        font-size: 14px;
        margin: .5rem 0;
    }
    nav ul li a {
        color: #000;
        margin: 1rem;
        border-bottom: none;
    }
}
@media screen and (min-width:768px) {
    #nav-toggle > a {
        display: none;
    }
    nav {
        position: fixed;
        width: 100%;
        padding: 1rem;
        z-index: 900;
    }
    nav a {
        display: inline-block;
        font-size: 1.5rem;
        color: #fff;
        border-bottom: none;
        mix-blend-mode: difference;
    }
    nav > a {
        position: absolute;
        text-align: left;
        margin: .5rem 1rem;
        font-weight: 700;
    }
    nav ul {
        text-align: right;
    }
    nav ul li {
        display: inline-block;
        margin: 0 1rem;
    }
    nav ul li a {
        position: relative;
    }
    nav ul li a,
    nav ul li a:hover {
        border-bottom: none;
        color: #fff;
    }
}
@media screen and (min-width:1280px) {
    nav a {
        font-size: 2rem;
    }
}

/* IE10 */
@media all and (-ms-high-contrast:none) {
  nav {
    background-color: #fff;
  }
}
/* IE11 */
_:-ms-lang(x)::-ms-backdrop, nav {
  background-color: #fff;
}
/* Edge */
_:-ms-lang(x)::backdrop, nav {
  background-color: #fff;
}
/* Edgeのみ（Chromium） */
_:lang(x)::-ms-, nav {
  background-color: #fff;
}
/* Chromeのみ */
_:lang(x)::-internal-media-controls-overlay-cast-button, nav {
  background-color: #fff;
}
/* opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  nav {
    background: #fff;
  }
}

/*-------------------- other --------------------*/

/* pagetop button */
#page-top {
    position: fixed;
    left: 1%;
    bottom: 1%;
    z-index: 999;
}
#page-top a {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0 0 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border-bottom: none;
    font-size: 11px;
    border: 1px solid #12130b;
    color: #fff;
    background-color: #12130b;
}
#page-top a:visited,
#page-top a:hover {
    background: #12130b;
}

/* loader */
.page-loader {
    display: inline-block;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #12130b;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}
.trinity-rings-spinner, .trinity-rings-spinner * {
    box-sizing: border-box;
}
.trinity-rings-spinner {
    height: 66px;
    width: 66px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
}
.trinity-rings-spinner .circle {
    position:absolute;
    display:block;
    border-radius:50%;
    border: 3px solid #fff;
    opacity: 1;
}
.trinity-rings-spinner .circle:nth-child(1) {
    height: 60px;
    width: 60px;
    animation : trinity-rings-spinner-circle1-animation 1.5s infinite linear;
    border-width: 3px;
}
.trinity-rings-spinner .circle:nth-child(2) {
    height: calc(60px * 0.65);
    width: calc(60px * 0.65);
    animation : trinity-rings-spinner-circle2-animation 1.5s infinite linear;
    border-width: 2px;
}
.trinity-rings-spinner .circle:nth-child(3) {
    height: calc(60px * 0.1);
    width: calc(60px * 0.1);
    animation:trinity-rings-spinner-circle3-animation 1.5s infinite linear;
    border-width: 1px;
}
@keyframes trinity-rings-spinner-circle1-animation{
    0% {
        transform: rotateZ(20deg) rotateY(0deg);
    }
    100% {
        transform: rotateZ(100deg) rotateY(360deg);
    }
}
@keyframes trinity-rings-spinner-circle2-animation{
    0% {
        transform: rotateZ(100deg) rotateX(0deg);
    }
    100% {
        transform: rotateZ(0deg) rotateX(360deg);
    }
}
@keyframes trinity-rings-spinner-circle3-animation{
    0% {
        transform: rotateZ(100deg) rotateX(-360deg);
    }
    100% {
        transform: rotateZ(-360deg) rotateX(360deg);
    }
}

/*-------------------- color --------------------*/
/* purple */
.red {
    color: #fe2b20 !important;
    display: inline;
}
/* white */
.white {
    color: #fff !important;
    display: inline;
}
/* black */
.gray {
    color: #555C62 !important;
    display: inline;
}

/*-------------------- font size --------------------*/
.s_12 {
    font-size: 12px;
}
.s_14 {
    font-size: 14px;
}

/*-------------------- font family --------------------*/

.serif {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.deco {
    font-family: 'Seaweed Script',XANO明朝, sans-serif !important;
}

/*--------------------アンダーライン--------------------*/
.dot {
    border-bottom: dotted 1px #fff;
    display: inline;
}
.none {
    border-bottom: none;
}

/*--------------------マーカー--------------------*/
/* marker */
.marker1 {
    padding: 0;
    height: 2rem;
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fe2b20 60%);
    color: #fff;
}
