@charset "UTF-8";

/********************
*
* reset.css
* どんなプロジェクトでも使うCSS
*
**********************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  word-break: break-all;
}

html {
  text-size-adjust: 100%;
}

body {
  font-size: 12px;
  line-height: 24px;
	font-weight:normal;
  background:#fff;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  padding:8px 0;
  outline:none;
}

::placeholder{
  color:#ccc
}

ul{
	list-style-type:none;
}

a{
	text-decoration:none;
}

a:hover{}


img{
  display:block;
  width:100%;
}
address{
  font-style:normal;
}