@charset "utf-8";

/* =============================================================

　　BASE CSS　（ベース・レイアウト設定）

============================================================= */


/*  全体　基本設定
---------------------------------------------*/

html,
body {
	height: 100%;
}

body {
	font-family: "Helvetica Neue",Helvetica,Arial,"Lucida Grande","segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,Verdana,sans-serif;
	font-size: 1.4em;
	letter-spacing: 0;
	line-height: 1.7em;
	color: #fff;
	text-align: center;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}


/*  画像 基本設定
-------------------------- */

img {
	vertical-align: top;
	border: none;
}


/*  リンク 基本設定
-------------------------- */

a {
	outline: none;
	color: #fff;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

#header a,
#footer a {
	display: inline-block;
}


/*  テキスト 基本設定
-------------------------- */

strong,
em {
	font-weight: bold;
}


/*  フォーム 基本設定
-------------------------- */
	
input,
select,
textarea {
	webkit-border-radius: 0 !important;
		     border-radius: 0 !important;
	padding: 2px;
}

input[type="text"] {
	-webkit-appearance: none;
}

input[type="button"],
input[type="text"],
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="checkbox"] {
	border-radius: 0;
}

input[type="text"],
input[type="password"],
textarea,
select { 
	outline: none;
	border: 1px solid #ccc;
}

form textarea {
	resize: vertical;
	width: 100%;
	-webkit-appearance: none;
}



/* 　コンテナー　レイアウト設定
---------------------------------------------*/

#container {
	position: relative;
	width: 100%;
 	height: auto !important;
	height: 100%;
	min-height: 100%;
	text-align: center;
}

/* 真ん中寄せ */
#header .boxInner,
#content,
#footer .boxInner {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}


/*  ヘッダー レイアウト設定
---------------------------------------------*/

#header {
}


/*  コンテンツ レイアウト設定
---------------------------------------------*/

#content {
	padding-bottom: 240px; /* フッターの高さ分 */
}


/*  フッター レイアウト設定
---------------------------------------------*/

#footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 160px;
}

/* =======================================
		FOR WORDPRESS
==========================================*/


img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 1em;
	display: inline;}

img.alignleft {
	padding: 4px;
	margin: 0 1em 2px 0;
	display: inline;}

.alignright {float: right;}
.alignleft {float: left;}



