@charset "utf-8";
/* --------------------------------------------------
	SiteName : 
	FileName : base.css
	Description : basic styles
	
	== TOC =========================================
	1 : universal reset
	2 : body setting
	3 : default link setting
	4 : print media setting
	
-------------------------------------------------- */


/* 1. universal reset
================================================== */
* {
	margin: 0;
	padding: 0;
}
body, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, form, fieldset {
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;

}
fieldset, img {
	border: 0;
}
ul, ol {
	list-style: none;
}
ul li img {
	vertical-align: bottom;
}
hr {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
iframe{
	vertical-align: bottom;
}

/* 2. body setting
================================================== */
body {
	font: 1.4rem/1.6 '游ゴシック体', 'Yu Gothic', 'メイリオ', Meiryo,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', YuGothic, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #000000;
	word-wrap: break-word;
	word-break: break-all;
}

/* 3. default link setting
================================================== */
a:link {
	color: #02a4e7;
	text-decoration: underline;
}
a:visited {
	color: #663399;
	text-decoration: underline;
}
a:hover {
	color: #02a4e7;
	text-decoration: none;
}
a:active {
	color: #ff3333;
	text-decoration: underline;
}

/* 4. print media setting
================================================== */
@media print {
*html body {
	zoom: 0.7;
}
}
