﻿@charset "UTF-8";

/*-----------------------------------------------
 Element
-----------------------------------------------*/
html, body,
applet, object, iframe,
div, span, p, h1, h2, h3, h4, h5, h6, address,
a, img,
form, label {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

/* はみ出し対策 */
body {
	width: 100%;
	-webkit-text-size-adjust: 100%;/*text-size-adjust：OS側でフォントサイズを自動的に調整*/
}

/*見出し*/
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

/*レイアウト*/
.align-l {
	text-align: left;
}
.align-c {
	text-align: center;
}
.align-r {
	text-align: right;
}
.valign-t {
	vertical-align: top;
}
.valign-m {
	vertical-align: middle;
}
.valign-b {
	vertical-align: bottom;
}
/*.box_center {
	margin: 0 auto;
}*/
.center {
	margin: 0 auto;
}

/*画像bottom配置*/
.imgbtm img{
	margin: 0 auto;
	vertical-align: bottom;
}

/*ディスプレイ*/
.display-i {
	display: inline;
}

.display-b {
	display: block;
}

/*フロート*/
.float-l {
	float: left;
}

.float-r {
	float: right;
}

/*フロートクリア*/
.clear {
	clear: both;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
}
.clearfix {
	/zoom: 1;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}


/*-----------------------------------------------
 Font
-----------------------------------------------*/
h2 {
	width: 100%;
	padding: 4px 0;
	background: url(../../commonImg/backPankuzu.png);
	line-height: 1.1;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.bold {
	font-weight: bold;
}

.red {
	color: #C00;
}

.blue {
	color: #06C;
}

.white {
	color:#FFF;
}


/*-----------------------------------------------
 Link
-----------------------------------------------*/
.link_noborder {
	text-decoration: none;
}


/*-----------------------------------------------
 container
-----------------------------------------------*/
#container {
	background: url(../../commonImg/backGround.jpg);
}

#wrapper {
}


/*-----------------------------------------------
 header
-----------------------------------------------*/
#header {
	width: 320px;
	height: 86px;
	margin: 0 auto;
	background: url(../commonImg/logo.png) no-repeat;
	background-size: 320px;
}

#header h1 {
	padding: 3px 0 0 90px;
	color: #333;
	font-size: 72%;
	display: block;
}


/*-----------------------------------------------
 main and other div(s)
-----------------------------------------------*/
#main {
	background: #FFF;
}

#main-top {
	margin: 0;
}


/*-----------------------------------------------
 footer
-----------------------------------------------*/
#footer {
	width: 100%;
	margin: 0 auto;
	padding: 10px 0 20px;
	border-top: 1px solid #CCC;
	line-height: 1.5em;
	text-align: center;
	font-size: 75%;
	color: #333;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

