@charset "utf-8";

/*************************************
              共通/構造
*************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
}

body {
  width: 100%;
  height: 100%;
  font-family: 'M PLUS 2', sans-serif;
  color: #265788;
	background-color: #F9F9F9;
}

img {
  vertical-align: bottom;
}

ul {
  list-style-type: none;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.mt10px {
  margin-top: 10px !important;
}

.mt50px {
  margin-top: 50px !important;
}

.mt1em {
  margin-top: 1em !important;
}


.mt2em {
  margin-top: 2em !important;
}

.img_center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

