/*全コンテンツ共通css*/

/*リセット*/
* {
    list-style: none;
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -ms-user-select: none; /* IE 10+ */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;

    cursor: default;
}

html {
	font-size:62.5%;
	overflow-y:scroll;
	touch-action:manipulation;
}

body {
	font-family:"Times New Roman","ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","メイリオ","ヒラギノ角ゴ Pro W3",sans-serif;
	margin:0px;
	padding:0px;
	height:100%;
	
	position:relative;
	
	/*長押しタッチのポップアップ制限*/
	touch-callout:none;
	user-select:none;
	
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	
	/*ブラウザ側での画像のドラッグでの選択を制限*/
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;

	/*テキスト選択不可*/
	user-select: none;
　　　-moz-user-select: none;
　　　-webkit-user-select: none;
　　　-ms-user-select: none;
	
	background-color:#ffffff;
}

canvas {
    vertical-align: bottom;
}

img {
  vertical-align:bottom;
}

h1 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 16px;
}
h1 .header-mark{
  color: #00b5eb;
  font-family: "ＭＳ Ｐゴシック";
}

/*クリア*/
.clearfix:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden; 
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0; 
}  
.clearfix { 
  zoom: 1;
} 

.italic {
    font-style:italic;
}


/*非表示　element自体を消す*/
.elementoff{
  display: none;
}
.elementon{
  display: block;
} 