@charset "utf-8";


/* ----------------------------------------
◆基本
---------------------------------------- */

* {
    color: #383838;
    font-size: 100%;
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", sans-serif;
    line-height: 2;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 15px;
    text-align: justify;
    word-break: break-all;
    background: #fefefe;
    background-image: url("bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}
body::before {
    background: rgba(255, 255, 255, 0.2);
    content: "";
    position: fixed;
    z-index: 0;
    inset: 0;
    pointer-events: none;
}

a {
    color: #476876;
    text-decoration: none;
}
a:hover {
    color: #5a7d8c;
    text-decoration: underline;
}

h1 {
    margin: 0;
    font-size: 15px;
}

p {
    margin: 0;
}


/* ----------------------------------------
◆ページ全体
---------------------------------------- */

#container {
    margin: 0 auto;
    width: 95%;
    max-width: 800px;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}


/* ----------------------------------------
◆ヘッダー
---------------------------------------- */

header {
    margin: 0 auto;
}

.header-inner {
    padding: 1rem 0;
    width: 100%;
}

.header-inner h1 {
    margin: 0.5rem auto;
    padding: 0 0.4rem;
    width: 90%;
    max-width: 600px;
    position: relative;
}
.header-inner h1::before,
.header-inner h1::after {
    color: #5a7d8c;
    font-size: 1.6em;
    line-height: 0.95;
    position: absolute;
}
.header-inner h1::before {
    content: "「";
    left: -0.6em;
    top: 0;
}
.header-inner h1::after {
    content: "」";
    right: -0.6em;
    bottom: 0;
}

.header-inner h1 span {
    display: block;
    position: relative;
}
.novel-title {
    font-size: 1.4em;
    text-align: center;
    letter-spacing: 0.2rem;
}
.novel-summary {
    margin: 0 auto;
    padding: 0.5rem 0;
    width: 90%;
    font-weight: normal;
}

@media screen and (max-width: 440px) {
    .novel-summary {
        font-size: 0.9em;
    }
}


/* ----------------------------------------
◆content
---------------------------------------- */

#content {
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
}


/* ----------------------------------------
◆パンくずリスト
---------------------------------------- */

.breadcrumb {
    margin: 0 auto;
    padding: 0.4rem 0;
    width: 100%;
    font-size: 12px;
}

.breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb ol li {
    display: inline;
}
.breadcrumb ol li::after {
    padding: 0 0.2rem;
    content: ">";
}
.breadcrumb ol li:last-child::after {
    content: none;
}


/* ----------------------------------------
◆wrapper
---------------------------------------- */

#wrapper {
    margin: 0;
}


/* ----------------------------------------
◆フッター
---------------------------------------- */

footer {
    margin: 0 auto;
    width: 90%;
}

.footer-inner {
    margin: 0 auto;
    padding: 0.4rem 0;
    font-size: 0.8em;
    text-align: right;
}


/* ----------------------------------------
◆もくじ
---------------------------------------- */

.novel-index {
    margin: 0 auto;
    width: 100%;
}

.novel-index ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 440px) {
    .novel-index ol {
        width: 100%;
    }
}

.novel-index ol li {
    margin: 0.4rem 0;
}
.novel-index ol li a {
    color: #383838;
}
.novel-index ol li:nth-child(odd) a {
    background: #f0f8ff;
}
.novel-index ol li:nth-child(even) a {
    background: #f2f6f9;
}
.novel-index ol li a:hover {
    text-decoration: none;
    background: #ffffff;
}