@charset "utf-8";

/************ 共通部分用CSS ************/


/*************
*　Body initialization
*******************************/ 
body {
	text-align:center;
	font:15px/1.5 "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	color:#3E3E3E;
}
html {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	font-size:88%;
}
* {
	box-sizing:border-box;
}

/*************
*　Basic initialization
*******************************/ 
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display:block;
	margin:0;
	padding:0;
}
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul, li {
	margin:0;
	padding:0;
}
h1, h2, h3, h4, h5 {
	font-weight:normal;
}
p   {
	color:#333333;
	line-height:130%;
}
img {
	border:none;
	vertical-align:middle;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style:normal;
}

li {
	font-size:80%;
}
input {
	margin:0 0 5px 0;
}
fieldset {
	padding:10px;
	border:#CCC 1px solid;
	margin:10px auto 0 auto;
}
legend {
	padding:0 10px;
	color:#000;
}
hr {
	margin:5px;
	border:1px dotted #D2D2D2;
}

a:link {
	color:#00F;
	text-decoration:none;
}
a:visited {
	color:#00F;
	text-decoration:none;
}
a:hover {
	color:#00F;
	text-decoration:underline;
}


/************************
** FONT COLOR **
*************************/
.font_green {
	color:#006633;
}
.font_red {
	color:#FF0000;
}
.font_grey {
	color:#999;
}
.font_grey02 {
	color:#666;
}
.font_grey03 {
	color:#333;
}
.font_blue {
	color:#00F;
}
.font_blue02 {
	color:#0066CC;
}
.font_bluegreen {
	color:#006666;
}

/************************
** FONT STYLE **
*************************/
.font_120 {
	font-size:120%;
}
.font_100 {
	font-size:100%;
}
.font_90 {
	font-size:90%;
}
.font_85 {
	font-size:85%;
}
.font_80 {
	font-size:80%;
}
.font_75 {
	font-size:75%;
}
.font_70 {
	font-size:70%;
}

/************************
** FONT ALIGN **
*************************/
.font_left {
	text-align: left;
}
.font_right {
	text-align: right;
}
.font_center {
	text-align: center;
}

/************************
** BOX STYLE **
*************************/
.box_yellow {
	width:90%;
	margin:10px auto;
	padding:5px 10px;
	background-color:#FFC;
	text-align:left;
	line-height:140%;
	clear:both;
}

	