@charset "shift_jis";
/*------------------------------------------------------
 ブラウザクリア
------------------------------------------------------*/
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote {
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body, td, th, h1, h2, h3, h4, h5, h6 {
	font-family: "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", "CI", Meiryo, Osaka, "lr oSVbN", "MS PGothic", sans-serif;
	font-weight: normal;
	line-height: 1.2;
	font-size: 100%;
	font-weight: normal;
	line-height: 1.2;
}
article, aside, hgroup, header, footer, figure,  figcaption, nav, section, aside {
	display: block;
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
ol, ul {
	list-style-type: none;
}
img {
	border: 0;
	vertical-align: bottom;
}
html, body {
	width: 100%;
}
img {
	vertical-align: bottom;
}
header, article, section, footer {
	display: block;
}

body {
	-webkit-text-size-adjust: none;
	line-height: 18px;
	background-color: #FFFFFF;
	font-size: 100%;
}

p {
	font-size: 90%;
}

a {
	-webkit-tap-highlight-color: rgba(2, 109, 236, 0.9);
}
.clear {
	clear: both;
}
.fColor_red {
	color: #F00;
}

/*------------------------------------------------------
 toolbar
------------------------------------------------------*/

.button {
	position: absolute;
	overflow: hidden;
	font-family: inherit;
	font-size: 90%;
	color: #666;
	text-shadow: rgba(255, 255, 255, 0.6) 0px -1px 0;
	text-overflow: ellipsis;
	text-decoration: none;
	white-space: nowrap;
}

.button img {
	vertical-align: middle;
}

#clsButton {
	height: 30px;
	line-height: 30px;
	padding: 0;
	text-decoration: none;
	color :#FFF;
	text-shadow: #000 1px 1px 1px;
}

/*------------------------------------------------------
 フリップメニュー
------------------------------------------------------*/
/* メニューopen style */
.flip-open {
  display: block!important;
  -webkit-animation-name: flip-open;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0,0,0,1);
}

/* アニメーション */
@-webkit-keyframes flip-open {
  0% {
    -webkit-transform: rotate(-20deg) scale(0.8); 
	opacity: 0;
  }
  50% {
    -webkit-transform: rotate(20deg) scale(0.5); 
	opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.0);
	opacity: 1; 
  }
}

/* メニューclose style */
.flip-close {
  display: block!important;
  -webkit-animation-name: flip-close;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.5,0,0.5,1);
  -webkit-transform: scale(0); 
}

/* andloid chrome 対策    */
/* 見えないメニューが残る */
.flip-close * {
	display: none;
}

/* アニメーション */
@-webkit-keyframes flip-close {

  0% {
    -webkit-transform: scale(1.0);
	opacity: 1; 
  }
  50% {
    -webkit-transform: rotate(20deg) scale(0.5);
	opacity: 1; 
  }
  100% {
    -webkit-transform: rotate(-20deg) scale(1.5);
	opacity: 0;
  }
}
