@charset "utf-8";

/* -------------------------------------------------------------------
 basic
------------------------------------------------------------------- */

/* firefoxでページ移動の際、コンテンツが少なくても中心がずれないようにする */
html {
	overflow-y: scroll;
}

body {
	text-align: center;
}

#wrapContainer{
	text-align: left;
}


/* -------------------------------------------------------------------
 base tag
------------------------------------------------------------------- */

/* マージンをリセット */
body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, blockquote, pre, form, input, textarea, header, footer, nav, figure, figcaption {
	margin: 0;
	padding: 0;
	zoom: 1;
}

/* リストマーカーなし */
ul, ol {
	list-style-type: none;
}

/* 画像・テーブルはボーダーなし */
img {
    max-width:100%;
	border: none;
}

/* スタイルシートOFF時の区切り線 */
hr {
	display: none;
	margin: 0;
	padding: 0;
	width: 1px;
	height: 1px;
}

/* リンク縁取りなし */
a, input {
	outline: none;
}

input, textarea {
	border-radius: 0; font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif; }

input[type="button"],input[type="submit"] {
	-webkit-appearance: none; background: none; border: none; padding: 0; cursor: pointer;
}
abbr, acronym { 
	border: 0;
}

/* キャプション */
caption {
	text-align: left;
}

/* イメージ */
figure .img {
	margin: 0;
	padding: 0;
	line-height: 0;
	font-size: 0;
}

/* -------------------------------------------------------------------
 for ie8
------------------------------------------------------------------ */

article, aside, figure, figcaption, footer, header, nav, section {
    display: block;
}


/* -------------------------------------------------------------------
 要素間
------------------------------------------------------------------ */

article {
}

article:first-child {
}

section {
}

section:last-child {
}


/* -------------------------------------------------------------------
 box-sizing
------------------------------------------------------------------ */

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
