@charset "UTF-8";
html {
 font-family: 'Noto Sans JP', sans-serif;
  color: #222;
  /*font-size: 62.5%;*/
  font-size: 0.66667vw;
  line-height: 1;
  font-weight: 400;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}
a, input[type="submit"] {
  outline: none;
  color: inherit;
  transition: .5s;
}
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:focus, *:focus {
  outline: none;
}
@media screen and (min-width: 821px) {
  a:hover, input[type="submit"]:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}
img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
	width: auto;
}
.flex_box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
/*font
-----------------------------------------------------------------------------*/
/*PC共通
-----------------------------------------------------------------------------*/
@media screen and (min-width: 1160px) {
  html {
    font-size: 62.5%;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1160px) {
  html {
    font-size: 0.75vw;
  }
	.wrap{
		padding: 0 5%;
	}
  .sp {
    display: none;
  }
}

/*--------------------------endPC--------------------------------*/
/*SP共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
	.wrap{
		padding: 0 5%;
	}
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*--------------------------endSP--------------------------------*/