@charset "utf-8";
/*
====================================================
	
	initialSetting.css
	
	CSS initial setting
	初期設定
	
====================================================
*/

html {
  height: 100%;
}


/*---------------------------------------------------
	Base setting
---------------------------------------------------*/
body{
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* disable webkit tap highlight */
	color:#000;
	font-family:Arial,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","メイリオ", Meiryo,"MS ゴシック","MS Gothic",sans-serif;
	letter-spacing:0.04em;
	overflow-x: hidden;
	height: 100%;
	-webkit-text-size-adjust: 100%; /* フォントサイズ自動調整 */
	/*フォントアンチエイリアス 設定*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	margin: 0;
}


body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 100;
  display: block;
  opacity: 1;
  pointer-events: none;
}
body.open::before {
  opacity: 0;
}



/* = Selected Text　テキスト選択時
	----------------------------------------------- */
::selection {
	background:#EEE; /* Safari */
}
 
::-moz-selection {
	background:#EEE; /* Firefox */
}


/* ------ fontSize 12px ------ */
.text09 { font-size:76%; }
.text10 { font-size:84%; }
.text11 { font-size:92%; }
.text12 { font-size:100%; }
.text13 { font-size:109%; }
.text14 { font-size:117%; }
.text15 { font-size:125%; }
.text16 { font-size:134%; }
.text17 { font-size:142%; }
.text18 { font-size:150%; }
.text19 { font-size:160%; }
.text20 { font-size:168%; }
.text21 { font-size:176%; }
.text22 { font-size:184%; }
.text23 { font-size:192%; }
.text24 { font-size:200%; }



/*---------------------------------------------------
	Link setting
---------------------------------------------------*/

a:link,
a:visited { color:#000000; text-decoration:underline; }
a:hover { color:#000000 ; text-decoration:none; }
a:active { color:#000000 ; text-decoration:underline; }


/*---------------------------------------------
	h1
---------------------------------------------*/
h1{
	clear:both;
	margin-top:0;
}
/*---------------------------------------------
	h2
---------------------------------------------*/
h2{
	clear:both;
	margin:0px;
	font-size:13.5px;
}


/*---------------------------------------------
	h3
---------------------------------------------*/
h3{
	clear:both;
	margin:0px;
}

/*---------------------------------------------
	h4
---------------------------------------------*/
h4{
	clear:both;
	margin:0px;
}
h4.title{
}
/*---------------------------------------------
	h5
---------------------------------------------*/
h5{
	clear:both;
	margin:0px;
}


/*---------------------------------------------
	h6
---------------------------------------------*/
h6{
	clear:both;
	margin:0px;
}

/*---------------------------------------------
	li
---------------------------------------------*/
li{
	margin:0px;
	list-style: none;
}


