@charset "UTF-8";

/* //////////////////////////////////////////////////

　common style for smart phone

////////////////////////////////////////////////// */


/* Base
-------------------------------------------------- */
/*
各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figure, figcaption, header, footer, main, nav, section, time {
	border: 0;
	font-size: 100%;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article, aside, details, figure, figcaption, header, footer, main, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: none;
}
blockquote, q {
	quotes: none;
}
img {
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
}
a img {
	border: 0;
}
button {
	border: none;
	background: none;
	margin: 0;
	padding: 0;
	outline: none;
	font-size: inherit;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}



/* Module
-------------------------------------------------- */
/*
あらゆる再利用できるオブジェクト
*/
.grid:after {
	content: ""; 
	display: block; 
	clear: both;
}
.grid ._item {
	float: left;
}
.grid-table {
	display: table;
	width: 100%;
	table-layout: fixed;
}
._cell {
	display: table-cell;
	vertical-align: top;
}
.in-line ._item {
	display: inline-block;
}

.dl-style > dt {
	clear: both;
	float: left;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

.ul-disc > li {
	list-style: disc;
	padding-left: 20px;
}
.ol-decimal > li {
	list-style: decimal;
	padding-left: 20px;
}

.list-btn a {
	display: block;
}



/* State
-------------------------------------------------- */
/*
状態を表すルール
*/
.hidden {
	display: none;
}




/* Utillity
-------------------------------------------------- */
.clearfix::after {
	content: ""; 
	display: block; 
	clear: both;
}
/* marginの相殺を考慮するなら
.clearfix::before,
.clearfix::after {
	display: table;
	content: "";
}
.clearfix::after {
	clear: both;
}
*/
.clear {
	clear: both;
}
.ofH {
	overflow: hidden;
}

/* centering */
.centering {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/* float */
.flL { float: left }
.flR { float: right }

/* 余白 */
.m00  { margin: 0 !important }
.mt05 { margin-top:    5px }
.mr05 { margin-right:  5px }
.mb05 { margin-bottom: 5px }
.ml05 { margin-left:   5px }
.mt10 { margin-top:    10px }
.mr10 { margin-right:  10px }
.mb10 { margin-bottom: 10px }
.ml10 { margin-left:   10px }
.mt15 { margin-top:    15px }
.mr15 { margin-right:  15px }
.mb15 { margin-bottom: 15px }
.ml15 { margin-left:   15px }
.mt20 { margin-top:    20px }
.mr20 { margin-right:  20px }
.mb20 { margin-bottom: 20px }
.ml20 { margin-left:   20px }
.mt25 { margin-top:    25px }
.mr25 { margin-right:  25px }
.mb25 { margin-bottom: 25px }
.ml25 { margin-left:   25px }
.mt30 { margin-top:    30px }
.mr30 { margin-right:  30px }
.mb30 { margin-bottom: 30px }
.ml30 { margin-left:   30px }
.mt40 { margin-top:    40px }
.mr40 { margin-right:  40px }
.mb40 { margin-bottom: 40px }
.ml40 { margin-left:   40px }

.pt05 { padding-top:    5px }
.pr05 { padding-right:  5px }
.pb05 { padding-bottom: 5px }
.pl05 { padding-left:   5px }
.pt10 { padding-top:    10px }
.pr10 { padding-right:  10px }
.pb10 { padding-bottom: 10px }
.pl10 { padding-left:   10px }
.pt20 { padding-top:    20px }
.pr20 { padding-right:  20px }
.pb20 { padding-bottom: 20px }
.pl20 { padding-left:   20px }

/* text */
.fz9 { font-size: 9px }
.fz10 { font-size: 10px }
.fz11 { font-size: 11px }
.fz12 { font-size: 12px }
.fz13 { font-size: 13px }
.fz14 { font-size: 14px }
.fz15 { font-size: 15px }
.fz16 { font-size: 16px }
.fz18 { font-size: 18px }


.fwB  { font-weight: bold }
.fwN  { font-weight: normal }

.ffG {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, Helvetica, Verdana, sans-serif;
}
.ffM {
	font-family: "ヒラギノ明朝 Pro W6","Hiragino Mincho Pro","HGS明朝E","ＭＳ Ｐ明朝",serif;
}

.taR  { text-align: right }
.taL  { text-align: left }
.taC  { text-align: center }


img.fit {
	width: 100%;
	height: auto;
}
img.retina {
	zoom: .5;
}


