@charset "utf-8";
@import url("reset.css");
/* CSS Document */

/* =================================================
全体指定
================================================= */

body {
	background:#d4f5ff;
	color:#fff;
	font-family:'Cormorant Garamond','Noto Serif SC',"游明朝","ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* =================================================
リンク
================================================= */

a{
	text-decoration:none;
	box-sizing:border-box;
}

a:link{
	background-color: rgba(252,168,157,0.8);
	color:#fff;
}

a:visited{
	background-color: rgba(252,168,157,0.8);
	color:#fff;
}

a:hover {
	background-color: rgba(247,242,181,0.8);
	color:#fff;
}

a:active {
	background-color: rgba(252,168,181,0.8);
	color:#fff;
}

/* =================================================
見出し・文字
================================================= */

/* 見出し（h1） */

h1{
	padding:40px 0px 20px;
	color:#fff;
	font-size: 34px;
	text-align:center;
}

/* 見出し（h2） */

h2{
	font-size: 160%;
	position:relative;
	margin-bottom: 40px;
	border-bottom: solid 4px rgba(171,255, 224, 0.6); 
	border-radius: 0px 0px 160px 180px/0px 0px 20px 4px;
	text-align:center;
}


/* 見出し（h3） */

h3{
	font-size: 140%;
	text-align:center;
}

h3 span {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
	color:#fff;
}

h3 span:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}

/* 見出し（h4） */

h4{
	margin:20px 0px;
	font-size:120%;
	text-align:center;
}

h4 span{
	position: relative;/*相対位置*/
	line-height: 1.4;/*行高*/
	display: inline-block;
}

h4 span:before, h4 span:after { 
	position: relative;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-size: 1.0em;
	color: #abffe0;
}

h4 span:before {
	content:"\f053";/*アイコン種類*/
	padding-right: 0.5em
}

h4 span:after {
	content:"\f054";/*アイコン種類*/
	padding-left: 0.5em
}

/* 見出し（h5） */

h5{
	margin:20px 0px;
	font-size:110%;
	font-weight: bold;
	text-align:center;
	border-bottom:1px solid ;
}

/* 見出し（h6） */

h6{
	margin:20px 0px;
	font-weight: bold;
	text-align:center;x
}

/* p */

p{
	margin:20px 0px; /* 上下の余白 */
}

/* 太字/強調 */

.bold{
	font-size: 110%;
	font-weight: bold;
	border-bottom:#fff 3px double;
}

/* =================================================
その他
================================================= */

#wrapper{
	width:900px;
	margin:0px auto;
	padding:0px;
	background:#80cde9 url(../images/h_bg-1.png) center top no-repeat;
	box-sizing:border-box;
}

main{
	display:block; /*IE対策*/
	width:80%;
	margin:auto;
}

/*ul,olのマーカーや数字*/

ul,ol{
	list-style-position: inside;
}

ul{
	list-style: none;
}

/* トップへ戻るリンク */

p.top{
	padding-right:5px;
	text-align:right;
	box-sizing:border-box;
}

p.top a{
	background:#000;
}

/* box1 */

.box1{
	background-color: #f6d0cb;
	border: 1px dashed #fff;
	box-shadow: 0 0 0 4px #f6d0cb;
	color: #fff;
	margin: 2em auto;
	padding: 2em;
}

/* box2 */

.box2{
	background: linear-gradient(-135deg, #82d1b4, #a7c3cc);
	color: #fff;
	margin: 2em auto;
	padding: 2em;
}

.box2 a{
	background:#2b234a;
}

/* 入力フォーム関係 */

input,textarea{
	margin:10px 0px;
	padding:10px;
	font-size:16px;　/*16px以下はスマホなどでズームしてしまいます*/
	border:0px;
	border-radius: 10px;	/* CSS3草案 */	
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */ 
	box-sizing:border-box;
	background-color:#fff;
	border:1px solid #fff;
	text-decoration: none;
	outline: none;
	-webkit-appearance:none;
}

textarea{
	width:100%;
	height:100px;
}

input::before,
input::after,
textarea::before,
textarea::after, {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

input,
input::before,
input::after,
textarea,
textarea::before,
textarea::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus{
	background:#b96b9f;
	color:#fff;
	border:1px solid #b96b9f;
}

input[type="button"],
input[type="submit"]{
	background: -webkit-gradient( linear, left top, left bottom, from(#B94E8A), to(#B94E8A));
	background: transparent -moz-linear-gradient(center top , #B94E8A 0%, #B94E8A) repeat scroll 0% 0%;
	background-color:#B94E8A;
	border: 0px;
	color:#fff;
	cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover {
	background: -webkit-gradient( linear, left top, left bottom, from(#2b234a), to(#2b234a));
	background: transparent -moz-linear-gradient(center top , #2b234a 0%, #2b234a) repeat scroll 0% 0%;
	background-color:#2b234a;
	color:#fff;
	border:0px;
}

/* =================================================
ヘッダー
================================================= */

/* メニュー */

nav#menuList ul{
	display:flex;
	justify-content: center;
	margin-top:20px;
}

nav#menuList ul li{
	margin:0px 5px;
	font-size:140%;
}

nav#menuList ul li a{
	padding:5px 10px;
	box-sizing:border;
}


/* 更新履歴 */

#update{
	width:80%;
	margin:80px auto 0px;
}

#update dl{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top:20px;
}

#update dl dt{
	width:20%;
	font-size:140%;
	font-weight: bold;
	text-align:center;
}

#update dl dd{
	width:80%;
	margin:5px 0px;
	padding:10px 0px 0px 30px;
	border-left:1px dotted #fff;
	box-sizing:border-box;
}

/* =================================================
コンテンツ
================================================= */

/* about */

#about{
	margin:60px 0px 0px;
}

#about h3{
	margin:20px 0px;
}

#about ul.prof_link{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:40px;
}

#about ul.prof_link li{
	margin:3px 5px;
}

#about ul.prof_link li a{
	padding:5px 10px;
	font-size:120%;
	font-weight: bold;
}

/* main */

#main{
	margin:60px 0px 0px;
}

/*名前変換用*/

form.nameform{
	text-align:center;
}

form.nameform input{
	width:120px;
}

form.nameform p{
	margin:10px 0px;
}

form.nameform .bold{
	margin:0px;
	padding-bottom: 0px;
	border-bottom: 0px;
}

/* 小説やイラストメニュー */

#main dl dt{
	font-size: 120%;
	font-weight: bold;
	border-bottom: 1px dashed #cec6f9;
}

#main dl dd{
	margin-bottom:40px;
}

/*悲恋や18禁マーク*/

li.s:before,li.r18:before{
	margin-right: 5px;
	font-size:110%;
	content: "\2a";
	color:#65b5e8;
}

li.r18:before{
	color:#d98db3;
}

span.s{
	color:#65b5e8;
}

span.r18{
	color:#d98db3;
}

/* 小説用 */

#main ul.novel,#main ol.novel{
	display:flex;
	flex-wrap: wrap;
	font-size:90%;
}

#main ul.novel li,#main ol.novel li{
	margin-right: 10px;
}

#main ul.novel li:after,#main ol.novel li:after{
	margin-left: 10px;
	content: "\2f";
}

#main ul.novel li:last-child:after,#main ol.novel li:last-child:after{
	content: "";
}

.ss_menu{
	margin-bottom:40px;
}

/* イラスト用 */

ul.illust{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin:40px 0px 0px;
}

ul.illust li{
	margin:3px;
}

ul.illust li a{
	background:transparent;
}

img.illust_icon{
	width:75px;
	height:75px;
	object-fit: cover;
	border-radius: 50%;
}

figure.illust img{
	display:block;
	margin:auto;
}

figure.illust figcaption{
	padding:5px;
	text-align:center;
}

/*メールフォーム用*/

form.mailform p{
	margin:0px;
}

form.mailform input{
	width:100%;
}

/*link*/

#link{
	margin:60px 0px 0px;
	text-align:center;
}

#link h3{
	margin:20px 0px;
}

ul.link{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul.link li{
	margin:0px 5px 5px 0px;
}

/* =================================================
フッター
================================================= */

footer{
	width:100%;
	margin: 40px auto 0px;
	padding:20px 0px;
	background:#000 url(../images/h_bg-1.png) center top no-repeat;
}

footer ul{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

footer ul li{
	margin-right:10px;
	font-size:110%;
}

footer ul li a{
	background:transparent !important;
}

/* =================================================
テキストページの本文レイアウト
================================================= */


/*スマホ
================================================= */

@media screen and (min-width:0px) and (max-width:736px){


	/* =================================================
	全体指定
	================================================= */

	* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	html{
		font-size: 62.5%;
		height: 100%;
	}

	body {
		width:100%;
		font-size: 1.3rem;
		line-height:1.7em;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
	}

	img {
		height: auto;
		width: auto;
		max-width:100%;
		vertical-align: bottom;
	}


	/* =================================================
	見出し・文字
	================================================= */

	h1{
		text-align:center;
	}

	h1 span{
		padding: 3px;
		background-color: rgba(0,0,0,0.3);
		font-size:26px;
		box-sizing:border-box;
	}

	h2{
		margin-bottom:20px;
	}

	/* =================================================
	その他
	================================================= */

	#wrapper{
		width:100%;
		background-size: auto 200px;
	}

	main{
		width:90%;
	}

	/* box */

	.box1,.box2{
		padding:15px;
	}

	.box1{
		width:98%;
	}

	/* =================================================
	ヘッダー
	================================================= */

	/* 更新履歴 */

	#update{
		width:95%;
		margin:40px auto 0px;
	}

	#update dl{
		display:block;
	}

	#update dl dt {
		width: 100%;
		text-align:left;
	}

	#update dl dd {
		width: 100%;
		padding: 5px 0px 5px 5px;
		font-size: 95%;
	}

	/* =================================================
	コンテンツ
	================================================= */

	/* about */

	#about {
		margin: 40px 0px 0px;
	}

	#about ul.prof_link li a {
		padding: 3px 5px;
		font-size: 110%;
	}

	/* main */

	#main {
		margin: 40px 0px 0px;
	}

	/*メニューの横並び禁止*/

	.n_clear{
		display:block !important;
	}

	.n_clear li:after{
		margin-left: 0px !important;
		content: "" !important;
	}

	/*名前変換用*/

	form.nameform input{
		width:32%;
	}

	/*名前変換フォームを横2列にしたい場合はこちらと張り替えてください

	form.nameform input{
		margin:7px 0px;
		width:49%;
	}

	*/

	/*イラスト*/

	ul.illust{
		justify-content:center;
	}

	/* link */

	#link {
		margin: 40px 0px 0px;
	}

	/* =================================================
	テキストページの本文レイアウト
	================================================= */


	/* =================================================
	フッター
	================================================= */

	footer {
		margin: 20px auto 0px;
		padding: 15px 0px;
	}

}


/* タブレット端末
================================================= */

@media screen and (min-width:737px) and (max-width:1024px){

	/* =================================================
	全体指定
	================================================= */

	body {
		font-size:14px;
		line-height:2em;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
		width: auto;
		vertical-align: bottom;
	}

	/* =================================================
	見出し・文字
	================================================= */

	h1{
		text-align:center;
	}

	h1 span{
		padding: 3px;
		background-color: rgba(0,0,0,0.3);
		box-sizing:border-box;
	}

	/* =================================================
	その他
	================================================= */

	#wrapper{
		width:80%;
	}

	main{
		width:90%;
	}

	/*ボックスデザイン 余白調整*/

	.box1,.box2 {
		padding:10px;
	}


	.box1{
		width:94.5%;
	}

	/* =================================================
	ヘッダー
	================================================= */

	/* 更新履歴 */

	#update{
		width:90%;
	}

	/* =================================================
	コンテンツ
	================================================= */

	/* about */

	#about ul.prof_link li a {
		font-size: 110%;
	}

	/* =================================================
	フッター
	================================================= */

	footer{
		padding:10px 0px;
	}

}


/*パソコン
================================================= */

@media screen and (min-width:1025px){

	/* =================================================
	全体指定
	================================================= */

	body {
		font-size:16px;
		line-height:2em;
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100%;
	}

	html {
		scrollbar-arrow-color:#555;
		scrollbar-face-color:#555;
		scrollbar-3dlight-color:#555;
		scrollbar-darkshadow-color:#555;
		scrollbar-highlight-color:#555;
		scrollbar-shadow-color:#555;
		scrollbar-track-color:#fff;
		height: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
		width: auto;
		vertical-align: bottom;
	}

	/* =================================================
	見出し・文字
	================================================= */

	h1{
		text-shadow: 2px 2px 1px #958bca,
		-2px 2px 1px #958bca,
		2px -2px 1px #958bca,
		-2px -2px 1px #958bca;
	}

	/* =================================================
	その他
	================================================= */

	/*ボックスデザイン 余白調整*/

	.box1{
		width:89.5%;
	}

	/* =================================================
	ヘッダー
	================================================= */


	/* =================================================
	コンテンツ
	================================================= */


	/* =================================================
	フッター
	================================================= */


}