@charset "UTF-8";

/*---------------------------------------------------
初期設定
----------------------------------------------------*/

html { font-size: 62.5%; }
body { font-size: 1.5rem; } 
/* 14「px」…古いブラウザ対応 14「rem」…レスポンシブ対応（画面によって文字の大きさを柔軟に可変）  */

body {
	min-width: 320px; /* スマホの横幅最小値を指定*/
	line-height: 1.6;
	color:#333;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}

/* 親要素の高さ100% に */
html,body{height:100%;}

/* 画像の拡大縮小*/
img {
  	max-width: 100%;
  	height: auto;
	vertical-align:bottom;
	border:none;	
}

.clear{
	clear:both;
}

/*clearfix*/
.clearfix {
  	zoom: 1;
}

.clearfix:after {
  	content: "";
  	display: block;
  	clear: both;
}


/*---------------------------------------------------
共有
----------------------------------------------------*/

/* リンク　*/
a{
	color:#333;
	text-decoration:none;
}

a:hover{
	opacity:0.7;
}