/*----- ▼全体設定 --------------------------------*/
/* @import url(style.css); */
* {		
	margin:0; 
	padding:0; 
}

* { box-sizing : border-box}
* { -moz-box-sizing : border-box}


html{		
	/* 外部スタイルシートからの相対パス指定 */
	background-image:url(../image/back.jpg);
	background-repeat: repeat-x;
	/* ブラウザの縦スクロールバーの表示・非表示により
	   全体が左右にずれるのを防ぐ */
	overflow-y:scroll;
//	background-color:#A3F5E1;
//	background:url("../img/bak_kabe.gif");
	background:url("../img/bak_kabe.jpg") repeat-x;
}

body{		
	width :100%;
	height:100%;
	font-size:60%;
	color:#333333;
	letter-spacing:0.1em;
}

img {		
	border-top-width:0px; 
	border-left-width:0px; 
	border-bottom-width:0px; 
	border-right-width:0px;
	vertical-align:top;
}

p.center {		
	text-align:center;
}

a {		
	text-decoration:underline; 
	color:#333333;
}

table td a {		
	text-decoration:underline; 
	color:#333333;
}

a:hover {		
	color:#ff8000;
}

* html body {		
    font-family:'ＭＳ Ｐゴシック',sans-serif;
	height: 100%;
}

*:first-child+html body {
    font-family:'メイリオ','ＭＳ Ｐゴシック',sans-serif;
}

/* インデント用 */
p1 { 
	text-indent: 1em;
}

p2 { 
	text-indent: 2em; 
}

p3 { 
	text-indent: 3em; 
}

p4 { 
	text-indent: 4em; 
}

p5 { 
	text-indent: 5em; 
}

p6 { 
	text-indent: 6em; 
}
/*----- ▲全体設定 --------------------------------*/