/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
article,
aside,
details, /* 1 */
figcaption,
figure,
footer,
header,
main, /* 2 */
menu,
nav,
section,
summary { /* 1 */
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
template, /* 1 */
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/* Forms
   ========================================================================== */
button,
input,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: bold;
}
button,
input, /* 1 */
select { /* 2 */
  overflow: visible;
}
button,
input,
select,
textarea { /* 1 */
  margin: 0;
}
button,
select { /* 1 */
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
[disabled] {
  cursor: default;
}
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
@charset "utf-8";

html { overflow-y: scroll; }
body {
	font-family:
		"游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 
		"メイリオ", Meiryo, sans-serif;
	font-size: 90%;
	letter-spacing: 0px;
	line-height: 1.6;
	color: #666;
	text-align: center;
	background-color: #fff;
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 100%;
	padding: 0px 10px;
	border-bottom: solid 1px #164a84;
	display: inline;
}

hr { height: 1px; border: none; border-bottom: 1px #aaa dashed; }

/*----- リンク ---------------------------------------------*/
a {
	color: #7fcfd0;
	padding: 0;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: 0.3s;
		-ms-transform: 0.3s;
		-webkit-transform: 0.3s;
		-moz-transform: 0.3s;
		-o-transform: 0.3s;
}
a:hover { color: #07a; }
a::before, a::after {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background-color: #09c;
	transition: 0.3s;
		-ms-transform: 0.3s;
		-webkit-transform: 0.3s;
		-moz-transform: 0.3s;
		-o-transform: 0.3s;
}
a::before { top: 0; left: 0; }
a::after { bottom: 0; right: 0; }
a:hover::before, a:hover::after { width: 100%; }

a.idxbanner {
	color: #07a;
	padding: 15px 5px;
	background: none;
	text-decoration: none;
}
a:hover.idxbanner { color: #777; background: #a0d9e4; }
a.idxbanner::before, a.mcol::after { height: 0px; }

/*----- 色 ---------------------------------------------*/
.lcol, a.lcol	{ color: #2bc; }
a:hover.lcol	{ color: #8de; }
.hcol, a.hcol	{ color: #09c; }
.dcol, a.dcol	{ color: #07a; }
a:hover.hcol, a:hover.dcol { color: #2be; }

.lgray { color: #ccc; }
.ngray { color: #bbb; }
.dgray { color: #aaa; }

/*----- 装飾 ---------------------------------------------*/
.font70 { font-size: 70%; }
.font80, i.font80 { font-size: 80%; }
.font90 { font-size: 90%; }
.font100 { font-size: 100%; }
.font120 { font-size: 120%; }


/*----- 全体・ラッパー ---------------------------------------------*/
#container {
	border: 0px #000 solid;
	overflow: auto;
	width: 90%;
	max-width: 700px;
	min-width: 320px;
	margin: 0 auto;
	padding: 20px 20px 0;
}

.idx {
	max-width: 300px;
	text-align: left;
	margin: 15px auto;
	padding: 5px 25px;
	border: 3px solid #a0d9e4;
	border-radius: 10px 30px 10px 30px/20px 15px 20px 15px;
}

.cont {
	max-width: 600px;
	text-align: left;
	margin: 15px auto;
	padding: 5px 20px 5px 30px;
	border: 3px solid #a0d9e4;
	border-radius: 10px 30px 10px 30px/20px 15px 20px 15px;
}


/*----- フォーム ---------------------------------------------*/
form { margin: -10px 0 10px; }
form#sendmore { margin: 15px 0; }
input[type], textarea {
	background: #eff8fa;
	border: 1px solid #3798bd;
		-webkit-appearance: none;
	border-radius: 5px;
	box-shadow: none;
	margin: 3px 0;
	padding: 0 3px;
}
textarea { width: 180px; vertical-align: bottom; }
input[type=text].dname { width: 120px; }
input[type=submit]{
	color: #fff;
	text-shadow: none;
	background: #3798bd;
	margin-left: 5px;
}


/*----- 小説 ---------------------------------------------*/
.story { margin: -10px 25px 15px; }
.story td {
	border: 0px #888 solid;
	border-bottom: 1px #ddd dashed;
	padding: 0 5px 2px;
	vertical-align: middle;
}
section.textset p { margin-bottom: 25px; }
section.textset pre {
	font-family:
		"游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 
		"メイリオ", Meiryo, sans-serif;
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow: auto;
	word-break: normal;
	font-weight: normal;
}


/*----- About Link ---------------------------------------------*/
.linktable { margin: -12px 0 15px; }
.linktable td { padding-left: 20px; }
.linktable img { vertical-align: bottom; }