*{margin:0;padding:0}
div,h1,h2,h3,p,ul,li,input,textarea,table,tr,th,td,footer,header,nav,section,dd,dt{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
input,textarea,select{font-family:inherit;font-size:inherit;color:inherit}
a{text-decoration:none;outline:none}
a img{border-style:none}
ul,li{list-style-type:none}

html{
	font-size:62.5%;
	scrollbar-track-color:#FFF;
	scrollbar-face-color:#F4F4F4;
	scrollbar-shadow-color:#F4F4F4;
	scrollbar-darkshadow-color:#DDD;
	scrollbar-highlight-color:#EEE;
	scrollbar-3dlight-color:#F4F4F4;
	scrollbar-arrow-color:#4AD3FF;
}
body{
	background:#5ac0b5;/* 背景 */
	color:#274f73;/* 文字色 */
	font-size:1.3em;/* 文字の大きさ */
/*
	font-family:'メイリオ',Verdana,Roboto,'游ゴシック','Yu Gothic','游ゴシック体','YuGothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
*/
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "メイリオ",Verdana,Roboto, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	letter-spacing:.1em;
	line-height:1.6;
	padding:20px;
	text-align:center;
	overflow-wrap:break-word;
	word-wrap:break-word;
}


a{
color:#31698c;
transition: color 0.3s;
}

a:hover{
color:#d9cd47;
}



/*--------------------------------------------------------
基本
--------------------------------------------------------*/
#main-wrap{ 
float:right;
width:100%;
margin-left:-300px /* #leftcolumnのwidthと同じだけ左に余白 */
}  
#rightcolumn{
background:#fff;
border:5px dashed #4c7346;
border-radius:10px;
padding:10px;
position:relative;
text-align:left;
margin-left:350px /* #leftcolumnのwidthと同じかそれ以上 */
}
#rightcolumn a{
color:#31698c;
text-decoration:underline
}
#leftcolumn{
color:#c0e0eb; 
float:left;
text-align:left;
width:300px
}
/*--------------------------------------------------------
上(ヘッダー)
--------------------------------------------------------*/
header{
text-align:right;
width:100%
}
#header-inner{
padding:0 20px;
width:100%
}
/*--------------------------------------------------------
下(フッター)
--------------------------------------------------------*/
footer{
padding:20px 0 0;
text-align:center
}
/*--------------------------------------------------------
メニュー
--------------------------------------------------------*/
#menu{
font-size:1.2em;
font-weight:700;
line-height:1;
margin:10px 0;
width:100%
}
nav li{
display:inline-block; /* 横並び */
position:relative; /* サブメニュー表示位置の基準 */
height:2em;line-height:2em; /* メニュー高さ */
}
nav li a,nav li span{
color:#fff;
display:block;
padding:0 5px
}
/* サブメニュー */
.sub-menu{
background:#9cd9d2;
position:absolute;
width:200px; /* サブメニュー幅 */
z-index:20
}
.sub-menu li{
display:block; /* 横並びをリセット */
visibility:hidden; /* 隠す */
overflow:hidden; /* 隠す */
height:0; /* 隠す */
width:100%
}
.sub-menu li a:hover{
background:#ecf2f2;
color:#9cd9d2
}
nav li:hover .sub-menu li{
visibility:visible;
overflow:visible;
height:2em;line-height:2em; /* サブメニュー高さ */
transition: .5s
}
#open{display:none}
/*--------------------------------------------------------
index
--------------------------------------------------------*/
#index{
background:#5ac0b5;
color:#31698c;
margin:20px auto;
text-align:center
}
.indexbox{
border:5px dashed #4c7346;
background:#fff;
border-radius:10px;
margin:0 auto;
padding:20px;
width:500px
}
#index a,.indexbox a{
color:#4c7346
}
/*--------------------------------------------------------
ページ上部へのリンク
--------------------------------------------------------*/
#pagetop{/* 位置はscroll.jsで設定 */
background:rgba(255,255,255,.8);/* 背景 */
color:#4c7346;/* 色 */
border:3px solid #4c7346;
height:50px;width:50px; /* 大きさ */
border-radius:30px;
box-sizing:border-box;
display:block;
line-height:16px;
padding-top:22px;
position:fixed;
text-align:center;
z-index:10
}
#pagetop:before{
content:'\25B2';
font-size:14px;
position:absolute;
left:0;top:7px;
width:100%
}
#pagetop:hover{
background:rgba(222,222,222,.8)
}
#fl a{
color:#fff;
display:inline-block;
margin:10px 0
}
/*--------------------------------------------------------
見出し、枠、線
--------------------------------------------------------*/
h1{
font-size:1.5em;
line-height:1;
margin:0 0 10px
}
h2{
font-size:1.3em;
font-weight:700;
margin:20px 0;
padding:0.2em 0;
position:relative;
border-bottom:2px solid
}
h2:first-letter{
font-size:1.5em;
color:#c6ac4b
}
h2::after{
background:#c6ac4b;
position:absolute;
bottom:-2px;left:0;
content:'';
height:2px;width:20%;
z-index:2
}
h3{
border-bottom:1px dashed;
font-size:1.2em;
font-weight:400;
margin:20px 0
}
dt{
background:#bde7e5;
border-radius:5px;
font-weight:700;
float:left;
clear:both;
margin:0 0 5px;
padding:0 5px;
width:150px;
}
dd{
border-bottom:dashed 1px;
margin:0 0 5px 170px
}
aside dt{
background:none;
display:inline-block;
float:none;
clear:none;
font-weight:700;
padding:3px
}
aside dd{
margin:0 0 10px 10px;
padding:3px
}
em{
background:#e5e5e5;
font-weight:700
}
input,textarea{
background:#5ac0b5;
border:1px solid;
margin:3px 0;
width:80%
}
textarea{
height:50px
}
hr{
display:block;
border:0;  
border-top:1px solid #ccc;
margin:1em 0;
padding:0;
height:1px
}
.marker{
background:#ffff66; 
background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.49, #fff), color-stop(0.5, #ffee99), color-stop(1, #ffee99));
background:-webkit-linear-gradient(transparent 0%, #ffee99 0%);
background:linear-gradient(transparent 0%, #ffee99 0%)
}
.dcline{
border-left:5px solid #c6ac4b;
margin:5px 0;
padding:3px
}
.textbox{
border:1px dotted;
margin:10px 0;
padding:3px;
text-align:center
}
.title{
color:#175973;
font-size:1.5;
font-weight:700;
margin:2em 0;
text-align:right
}
.txt{
border-left:1px dotted;
margin:1em;
padding:0 0 0 1em
}
.frame {
background:#fff;
border-radius:3px;
padding:6px;
box-shadow:4px 4px 0 #ccc
}
.cf:before,.cf:after{content:" ";display:table}
.cf:after{clear:both}



.non{
    list-style-type: none;
    padding:0px 0px 0px 30px
}

.aka{
    color: #dc143c;
}

.akab{
    color: #dc143c;
	font-weight:bold;
}

.ft{
    font-weight: bold;
}    


.right{
	text-align: right;
}

.mitamama{
    line-height: 150%;
    white-space: pre;
}


.tku{
	color: #5ac0b5;
}





/*--------------------------------------------------------
スクロールバー


::-webkit-scrollbar-track {
  background: #bde7e5;
}

::-webkit-scrollbar-thumb {
  background: #126c6d;
}

--------------------------------------------------------*/


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

dl#history {
	background:#fff;
	height: 150px;
	padding: 5px;
	margin:10px 20px 30px 10px;
	overflow: auto;
	scrollber-base-color: #bde7e5;
	scrollber-face-color: #126c6d;
	scrollber-track-color: #bde7e5;	
	}


dl#history dt {
	background:#bde7e5;
	border-radius:5px;
	font-weight:700;
	float:left;
	clear:both;
	margin:0 0 5px;
	padding:0 5px;
	width:150px;
	}
	
dl#history dd {
	border-bottom:dashed 1px;
	margin:0 0 5px 170px
	}


/*--------------------------------------------------------
NOVEL各小説リスト
--------------------------------------------------------*/


ul.write li {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin-bottom: 5px;
  line-height: 1.5;
  background: #dbebf8;
  vertical-align: middle;
  color: #505050;
  border-radius: 15px 0px 0px 15px;/*左側の角丸く*/
}

ul.write li:before{ 
  display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}



/*--------------------------------------------------------
スマホ、タブレット用
横幅600pxで切り替え
--------------------------------------------------------*/
@media screen and (max-width: 600px){
body{
font-size:1.4em
}
#wrapper{
position:relative
}
header{
text-align:left;
min-height:70px
}
#header-inner {
padding:0 0 10px
}
h1{
padding-right:50px;
min-height:40px
}
#index h1{
padding-right:0;
min-height:inherit
}
#main-wrap{
float:none;
margin-left:0
}
#rightcolumn{
margin-left:0;
position:static
}
#leftcolumn{
float:none;
margin-top:30px;
width:100%
}
#fl a{
color:#fff;
background-color:rgba(90,192,181,1);
border-radius:5px
}
.indexbox{width:100%}
dt{float:none;clear:none;width:auto}
dd{margin-left:20px}
img.syukusyou{max-width:100%;height:auto} /* 画像の縮小表示 */
/*--------------------------------------------------------
スマホ、タブレット用メニュー
--------------------------------------------------------*/
/* メニュー */
#menu{
background-color:rgba(90,192,181,1);
display:none;
position:absolute; /* 表示位置固定 */
bottom:inherit;
text-align:left;
left:0;
z-index:20
}
nav li{
background:none;
display:block; /* 横並び解除 */
height:auto;line-height:inherit /* 高さリセット */
}
nav li a,nav li span{
color:#fff;
position:relative;
padding:15px 20px /* リンクの余白 一列の高さはここで調節 */
}
nav li a:hover,nav li span:hover{
background-color:rgba(90,192,181,1);
color:#fff
}
/* サブメニュー */
.sub-menu{
background-color:rgba(90,192,181,1);
position:static;
display:none; /* 隠す */
width:100%;
z-index:auto
}
.sub-menu li{
display:inline-block;/* 一列ごとにするならここを削除 */
visibility:visible; /* リセット */
overflow:visible; /* リセット */
height:auto; /* 高さリセット */
width:50% /* 一列ごとにするならここを削除 */
}
.sub-menu li a:hover{
background-color:rgba(90,192,181,1);
color:#fff
}
.sub-menu li a:after{
display:none
}
nav li:hover .sub-menu li{
height:auto;line-height:inherit /* 高さリセット */
}
nav li span:after{
border-top:3px solid #fff;/* メニュー「>」の色 */
border-right:3px solid #fff;/* メニュー「>」の色 */
content:"";
display:block;
margin-top:-5px;
position:absolute;
top:50%;right:20px;
height:5px;width:5px;
-ms-transform:rotate(45deg);
-webkit-transform:rotate(45deg);
transform:rotate(45deg);
transition:.2s
}
nav li span.open:after{
-ms-transform:rotate(135deg);
-webkit-transform:rotate(135deg);
transform:rotate(135deg)
}
/* メニューを開くボタン */
#open{
background-color:rgba(90,192,181,1);
border-radius:6px;
color:#fff;
display:inline-block;
position:absolute;
height:40px;width:40px;/* 大きさ */
top:0;right:0/* 位置 */
}
#open-icon,#open-icon:before,#open-icon:after{
background:#fff; /* 線の色 */
}
#open-icon{display:block;margin:-1px 0 0 -10px;position:absolute;top:50%;left:50%;height:2px;width:20px}
#open-icon:before,#open-icon:after{content:"";display:block;position:absolute;top:50%;left:0;height:2px;width:20px;transition:.3s}
#open-icon:before{margin-top:-8px}
#open-icon:after{margin-top:6px}
#open .close{background:transparent}
#open .close:before,#open .close:after{margin-top:0}
#open .close:before{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
#open .close:after{-ms-transform:rotate(-135deg);-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}
}