@charset "utf-8";
/*----------------------------------------------
	css初期化設定(normalize.cssから上書き)
---------------------------------------------*/
*{margin: 0; padding: 0; box-sizing: border-box;}h1{margin: 0;}a{text-decoration: none;}img{max-width: 100%; height: auto; vertical-align: bottom;}ul,ol{list-style: none;}table{border-collapse: collapse; border-spacing: 0;}


/*----------------------------------------------
	html
---------------------------------------------*/
html { font-size: 62.5%; }
/*↑ 10pxが1remとなる様に調整*/


/*----------------------------------------------
	body
---------------------------------------------*/
body {
  min-height: 100vh;
  background: #FFF;
  font-family: arial, roboto, "droid sans", "游ゴシック", 'yugothic', "ヒラギノ角ゴ pron w3", "hiragino kaku gothic pron", "メイリオ", meiryo, sans-serif;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-y: auto;
}

body::before{
  content: '';
  background: url(../images/bg.jpg) no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
}

/*----------------------------------------------
	a
---------------------------------------------*/
a { color: #DF8B26; }
a:hover { color: #2483D1; }

a img:hover { opacity: 0.7; }