@charset "utf-8";


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

* {
    color: #454545;
    font-size: 100%;
    font-family: "Meiryo", "Hiragino Kaku Gothic Pro", sans-serif;
    line-height: 2;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: justify;
    word-break: break-all;
    background: #fefefe;
}

a {
    color: #f09199;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin: 0;
    font-size: 14px;
}
h1 {
    font-size: 1.4em;
}
h2 {
    font-size: 1.2em;
}

p {
    margin: 0;
}

ul, ol {
    margin: 0;
}


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

#container {
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}
#container::before,
#container::after {
    padding: 0.2rem 0;
    width: 100%;
    content: '';
    display: block;
    background-image: url("bg.png");
}


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

#content {
    margin: 0 auto;
    width: 85%;
    max-width: 700px;
}


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

.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;
}


/* ----------------------------------------
◆セクション
---------------------------------------- */

section {
    margin-bottom: 2.5rem;
}
section:last-child {
    margin-bottom: 1.2rem;
}

section h2 {
    margin: 0.8rem 0;
    text-align: center;
    align-items: center;
    display: flex;
}
section h2::before,
section h2::after {
    flex-grow: 1;
    height: 1px;
    background: #c5c5c5;
    content: "";
}
section h2::before {
    margin-right: 1rem;
}
section h2::after {
    margin-left: 1rem;
}

section h3 {
    margin: 0.2rem 0;
    font-size: 1.05em;
}
section h3::before {
    margin-right: 0.2rem;
    content: "\025bc";
}


/* ----------------------------------------
◆装飾文字
---------------------------------------- */

a.color-none {
    color: #454545;
    border-bottom: 1px dotted #454545;
}
a.color-none:hover {
    color: #c5c5c5;
    text-decoration: none;
    border-bottom: none;
}

.text-b {
    font-weight: bold;
}


/* ----------------------------------------
◆更新履歴
---------------------------------------- */

.update {
    margin: 0.2rem 0;
}

.update dl {
    margin: 0.2rem 0;
    display: flex;
}

.update dl dt {
    margin: 0;
    padding: 0;
    width: 90px;
}

.update dl dd {
    margin: 0;
    padding: 0;
    width: calc(100% - 90px);
}


/* ----------------------------------------
◆小説一覧
---------------------------------------- */

.novel-list {
    margin: 0.2rem 0;
}

.novel-list dl {
    margin: 0.2rem 0;
}

.novel-list dt {
    margin: 0.2rem 0;
    font-size: 1.15em;
}
.novel-list dt a {
    font-weight: bold;
}

.novel-list dd {
    margin: 0.2rem 0;
    padding-left: 1rem;
    font-size: 0.9em;
}
.novel-list dd span {
    font-weight: bold;
    text-align: right;
    display: block;
}
.novel-list dd span::before {
    content: "【tag】";
}


/* ----------------------------------------
◆小説もくじ
---------------------------------------- */

.novel-index {
    margin: 0.2rem 0;
}
.novel-index ol {
    list-style-type: none;
}
.novel-index ol li {
    margin: 0.2rem 0;
    font-size: 1.1em;
}


/* ----------------------------------------
◆ブックマーク
---------------------------------------- */

.bkm-list {
    margin: 0.2rem 0;
}
.bkm-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.bkm-list ul li {
    padding: 0 0.4rem;
    background: #f3f3f3;
    display: inline;
}