
/*====================================
	基礎
*/
/*------------------------------------
	文字色と背景色
*/
body {
	color: white;
	background: royalblue;
}

/*------------------------------------
	ハイパーリンク
*/
a {
	font-weight: bold;
	cursor: pointer;
}
a:link {
	color: white;
}
a:visited {
	color: gainsboro;
}
a[href]:hover,
.play-bgm:hover {
	position: relative;
	top: 1px;
	left: 1px;
}
a[href]:active {
	color: dimgray;
}
a.friend {
	font-weight: bold;
	color: #ffffff;
}

/*------------------------------------
	引用文
*/
blockquote {
	color: silver;
	position: relative;
}
blockquote:before {
	font-size: 2em;
	content: "“";
	position: absolute;
	left: -0.7em;
	top: -0.3em;
}
blockquote:after {
	font-size: 2em;
	content: "”";
	vertical-align: top;
}

/*====================================
	メイリオ対策
*/
:not(input):not(textarea):not(button) {
	line-height: 1.6;
}

/*====================================
	白背景用
*/
.white_bacground {
	color: #000000;
}
.white_bacground a:link {
	color: #000000;
}
.white_bacground a:visited {
	color: #707070;
}
.white_bacground a:active {
	color: #aaaaaa;
}
.white_bacground a.friend {
	color: #000000;
}

/*====================================
	アクセス解析用？
*/
#tracker {
	position: absolute;
	visibility: hidden;
}

/*====================================
	不明
*/
.script_off {
	display: none;
}
