@charset "UTF-8";

/* フォントの読み込み */
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho");

/* 全体設定 */
body {
  font-family: "Sawarabi Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "serif";
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 2px;
  line-height: 1.8;
}

/* リンク文字 */
a{
color: #999999;
text-decoration: none;
border-bottom: 1px solid #C7C003;/* ★リンク文字の下線の色 */
transition: 0.2s;
}

a:hover{
color: #C7C003;/* ★リンクをホバーした時の文字色 */
}

/* 小説本文 */
.novel{
width: 55%; /* 100% */
margin: 60px auto;
}

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

.page{
text-align: center;
width: 100%;
padding-top: 20px;
border-top: 1px solid #454545;/* ★ページ送りボタンの上の線 */
}

/* フッター */
footer{
text-align: center;
margin: 30px auto;
}

/* 500px以下のデバイスでの見え方 */
@media screen and (max-width: 500px) {
	
	body {
		font-size: 13px;
		letter-spacing: 2px;
		line-height:1.8;
	}
	
	.novel{
		width: 85%;
		margin: 60px auto;
	}
	
	.text{
		margin: 40px 0;
		line-height: 1.8;
		font-size: 13px;
	}

h3{
font-size: 14px;
}

.text{
margin: 20px 0 40px;
}
}