@charset "utf-8";
/* CSS Document */

/*要素のフォントサイズやマージン・パディングをリセット*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, /* strong, */ sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
/*	border:0; */
	outline:0;
	font-size:100%;
	font-style:normal;
	font-weight: normal;
/* 	vertical-align:baseline; */
	background:transparent;
	color: #000;
}

/*インライン要素からブロック要素へ変更*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

/* Firefox3のスクロール・フォントサイズ */
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-x: auto;
	font-size: 62.5%;
}

body {
	line-height:1;
/*	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;*/
	font-family:"游ゴシック", YuGothic, Verdana, Roboto, "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 10px;
	font-size: 1.0rem; /* 10px */
}

/*a要素*/
a {
	/*color: #00A0DC;*/
	color: #000;
	vertical-align:baseline;
}
a:visited {}
a:hover {}
a:active {}
a:focus { outline:none; }

/*p要素の行間調整・基本的なフォントサイズ */
p {
	line-height: 1.6;
	font-size: 14px;
	font-size: 1.4rem;
}

@media screen and (max-width: 600px){
	p {
		line-height: 1.6;
		font-size: 14px;
		font-size: 1.4rem;
	}
}

/*ol,ulのマーカー（行頭記号）を非表示・基本的なフォントサイズ*/
ol, ul {
	/*list-style:none;*/
	font-size: 14px;
	font-size: 1.4rem;
}

dl {
	font-size: 14px;
	font-size: 1.4rem;
}

body.english p,
body.english ol,
body.english ul,
body.english dl {
	font-size: 16px;
	font-size: 1.6rem;
}

/*セルの罫線の表示方法と間隔*/
table {
	border-collapse:collapse;
	border-spacing:0;
}

/*縦方向の揃え位置を中央揃え*/
input, select, textarea {
	margin: 0;
	padding: 0;
	vertical-align:middle;
}

/*ラジオボタンを上ぞろえに*/
input[type="radio"] {
	vertical-align:top;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}

/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* float clear */
.both{
	clear:both;
}




/* 時々使うCSS3 start ---

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}
 
ボックスシャドウ {
	box-shadow: 1px 1px 3px #000;
}
 
ボックスシャドウ内側 {
	box-shadow: inset 1px 1px 3px #000;
}
 
角丸 {
	border-radius: 8px;
}
 
透明 {
	filter: alpha(opacity=25);
	opacity:0.25;
}
 
グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}
 
 
スマホ対応
===== BREAK POINT ========================================

	body	size: 930px
	page	size: 890px
	tablet	size: 798px
	smart	size: 600px
	(iphone	size: 320px)

==========================================================

@media screen and (max-width: 600px){
    
}
 
時々使うCSS3 end */
