@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: 16px;
    background: #fcfcfc;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin: 0;
    font-size: 16px;
}

p {
    margin: 0;
    line-height: 1.8;
}


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

#container {
    margin: 0 auto;
    width: 100%;
}


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

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


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

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


/* ----------------------------------------
◆各話タイトル
---------------------------------------- */

.novel-sub_title {
    padding: 2rem 0;
    font-size: 1.2em;
    text-align: center;
}

.novel-sub_title span {
    display: block;
}

.novel-sub_title .number {
    font-size: 0.75em;
}
.novel-sub_title .number::before {
    content: "-";
}
.novel-sub_title .number::after {
    content: "-";
}


/* ----------------------------------------
◆ページナビゲーション
---------------------------------------- */

.novel-guide {
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
    font-size: 0.9em;
    text-align: center;
}

.novel-guide span {
    margin-right: 0.4rem;
    padding: 0 0.6rem;
    display: inline-block;
}
.novel-guide span:last-child {
    margin-right: 0;
}