@charset "utf-8";

/*====================================
               リセット
====================================*/

* {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	font: inherit;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: none;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;
	width: 100%; 
	height: 100%;
}

body {
	line-height: 1;
	position: relative;
	text-align: left;
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		-o-text-size-adjust: 100%;
		text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	height: 100%;
}

article, aside, dialog, figure, footer, header, main, menu, nav, section {
	display: block;
}

audio, canvas, video {
	display: inline-block;
}

br, hr {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

input, select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}


/*====================================
               初期設定
====================================*/

/*文字リンク設定*/
a {/*リンクされた文字*/
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #383838;
  font-style: normal;
  text-decoration: none;
}

a:link {/*未訪問のリンク*/
  color: #383838;
  font-style: normal;
  text-decoration: none;
}

a:visited {/*訪問後のリンク*/
  color: #383838;
  text-decoration: none;
}

a:hover {/*マウスをのせたとき*/
  color: #383838;
  font-style: normal;
  text-decoration: underline;
}

a:active {/*クリック中*/
  text-decoration: none;
}

body {
	color: #383838;
	font-size: 15px;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ','Meiryo',Verdana,'Osaka','ＭＳ Ｐゴシック',sans-serif;
}

.fade:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  transition: 0.5s;
}

img {
  width: 100%;
}