/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP|Quicksand&display=swap');

@font-face {
    font-family: 'はんなり明朝';
    font-display: swap;
    src: url('https://cdn.leafscape.be/hannari/hannari_web.woff2') format("woff2");
}

/* 全体設定 */
*{
font-family: 'Noto Serif JP', serif;
color: #FFF;/* 全体の文字色 */
font-size: 12px;
font-weight: 400;
letter-spacing: 0.1em;
line-height: 1.9em;
box-sizing: border-box;
padding: 0;
margin: 0;
list-style-type: none;
text-decoration:none;
}

body:before{
background-image: linear-gradient(40deg, rgba(206, 176, 211, 1) 11%, rgba(174, 194, 210, 1) 63%);/* ★背景のグラデーション色 */
background-size: cover;
content: "";
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -99;
width: 100%;
height: 100vh;
}

body{
width: 100vw;
overflow-x: hidden;
}

.wrap{
max-width: 500px;
height: auto;
padding: 0 40px;
overflow: hidden;
margin: 0 auto 30px;
}

/* リンク文字 */
a{
border-bottom: 1px solid rgba(255,255,255,0.4);/* ★リンク文字の下線の色 */
transition: 0.2s;
}

a:hover{
color: rgba(255,255,255,0.4);/* ★リンクをホバーした時の文字色 */
}

/* 強調文 */
strong{
font-weight: 600;
border-bottom: 2px solid #FFF;/* ★強調文の下線の色 */
}

/* 強調 */
.em-dot{
    text-emphasis : filled dot;
}

/* サイトタイトル */
.top{
width: 100%;
height: 400px;
margin-top: 60px;
position: relative;
}

.image{
width: 250px;
height: 400px;
outline: 10px solid rgba(255,255,255,0.1);/* ★画像の枠線 */
background-image: url(../image/av.jpg);/* ★TOP画像のURL */
background-size: cover;
background-repeat: no-repeat;
top: 0;
right: 10px;
position: absolute;
z-index:-1;
}

.title{
width: 270px;
height: auto;
bottom: 40px;
left: 0;
position: absolute;
z-index: 99;
}

/* 見出し */
h1{
font-size: 28px;
letter-spacing: 0.2em;
padding-bottom: 20px;
}

h2{
font-size: 14px;
font-weight: 600;
padding-bottom: 5px;
}

h3{
font-size: 15px;
padding-bottom: 20px;
}

/* 章 */
main{
width: 100%;
margin-top: 50px;
}

.chapter+.chapter{
padding-top: 40px;
}

.chapter a{
margin-right: 8px;
}

.back{
margin-top: 50px;
}

/* 小説本文 */
.novel-wrap{
max-width: 700px;
padding: 0 30px;
margin: 0 auto;
}

.novel{
width: 100%;
min-height: 100vh;
background-color: rgba(0,0,0,0.2);/* 本文の背景色 */
mix-blend-mode: overlay;/* 本文の背景にかけるオーバーレイ */
padding: 60px 80px;
margin-top: 0;
}

.text{
margin: 0 auto;
line-height: 2.0em;
font-size: 13px;
}

.page{
text-align: center;
width: 100%;
padding-top: 70px;
}

/* フッター */
footer{
margin: 50px auto 0;
font-size: 10px;
opacity: 0.6;
text-align: center;
}

/* 500px以下のデバイスでの見え方 */
@media screen and (max-width: 500px) {
h1{
font-size: 24px;
}

.image{
width: 160px;
right: 10px;
}

.title{
width: 220px;
}

.novel-wrap{
padding: 0 15px;
}

.novel{
padding: 40px 25px;
}
}
