@charset UTF-8;
/* ------------------------------------------------------------------
Source File: common.css
CSS file usage: スマートフォンサイト共通で使用するCSSを記述しています
Time Stamp: 2013/7/1
---------------------------------------------------------------------*/

/* reset
----------------------------------------------------------- */
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, option, 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;
	outline:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	-webkit-text-size-adjust:none;
	font-weight:normal;
}
input {
	margin:0;
	padding:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	-webkit-text-size-adjust:none;
	font-weight:normal;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
	display:block
}
ul, ol {
	list-style-type:none
}
body {
	font-family:"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size:14px;/*default size:14px*/
	line-height:1.28;
	color:#333;
	background:#000000;
	height:100%;
}
strong{
	font-weight: bold;
}
em, dfn {
	font-style:normal
}
em {
	font-weight:700
}
blockquote, q {
	quotes:none
}
blockquote:before, blockquote:after, q:before, q:after {
	content:"";
	content:none
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	background:transparent;
	text-decoration:none;
	color:#333;
}
img {
	vertical-align:bottom
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:700
}
del {
	text-decoration:line-through
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
	margin:1em 0;
	padding:0;
	border:0;
	border-top:1px solid #ccc;
	display:block;
	height:1px;
}
input, select {
	vertical-align:middle
}
select, select option {
	height:2.6em;
	font-size:14px
}
label {
	font-weight:normal
}



/* clearfix
----------------------------------------------------------- */
/*floatされる要素の親要素につけ、flaotを解除します*/
.cfx:after {
	content:" ";
	display:block;
	height:0;
	clear:both;
	visibility:hidden
}


/* header
----------------------------------------------------------- */
header{
	position:absolute;
	left:0px;
	top:-392px;
	width:320px;
	height:447px;
	z-index:20;
	
	background-image:url(../img/bg_header.png);
	background-repeat:no-repeat;
	background-position:left top;
	-moz-background-size:320px 14px;
	-webkit-background-size:320px 14px;
	background-size:320px 14px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

header p.tit{
	
}

/* アニメーション
-------------------------------- */
header.open{
	-webkit-transition: 0.2s 0.0s ease-out; opacity: 1.0; top:0px;
}
header.close{
	-webkit-transition: 0.2s 0.0s ease-out; opacity: 1.0; top:-392px;
}


/* ナビゲーション
-------------------------------- */
header nav.headernav{
	padding-top:14px;
}

/* cover
-------------------------------- */
div#cover{
	position:absolute;
	width:100%;
	height:100%;
	left:0px;
	top:0px;
	background-color:#000000;
	z-index:10;
	cursor:pointer;
	opacity:0.7;
	display:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}


/* footer
----------------------------------------------------------- */

/* navi
-------------------------------- */
nav.footernav{
	width:320px;
	height:230px;
	
	background-image:url(../img/bg_menu.png);
	background-repeat:no-repeat;
	background-position:left top;
	-moz-background-size:320px 172px;
	-webkit-background-size:320px 172px;
	background-size:320px 172px;
}
nav.footernav ul li{
	float:left;
}
nav.footernav ul li:nth-child(1),
nav.footernav ul li:nth-child(2){
	padding-top:4px;
}


/* copyright
-------------------------------- */
footer{
	position:relative;
	width:320px;
	height:150px;
	text-align:center;
	
	background-image:url(../img/bg_footer.png);
	background-repeat:no-repeat;
	background-position:left top;
	-moz-background-size:320px 150px;
	-webkit-background-size:320px 150px;
	background-size:320px 150px;
}
footer ul{
	margin:0px auto;
	padding-top:135px;
}
footer ul li{
	display:inline;
}
footer p.copy{
	
}



/* loading
----------------------------------------------------------- */
div#loading-cover{
	position:absolute;
	width:100%;
	height:100%;
	left:0px;
	top:0px;
	background-color:#000000;
	cursor:pointer;
	opacity:0.7;
	display:block;
	z-index:100;
}
p#loading-icon{
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:110;
}
p#loading-icon img{
	position:absolute;
	left:50%;
	top:50%;
	margin:-16px 0px 0px -16px;
}


/* コンテンツ
----------------------------------------------------------- */
#main{
	position:relative;
	z-index:1;
	width:320px;
}


