@charset "UTF-8";
html {
    font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 62.5%;
  line-height: 1;
  font-weight: 400;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}
a, input[type="submit"] {
  outline: none;
  color: inherit;
  transition: .3s;
}
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 {
	  opacity: 0.7;
	}
}
img {
  max-width: 100%;
  height: auto;
	vertical-align:bottom;
}
img[src$=".svg"] {
  max-width: 100%;
}
.flex-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sp {
  display: none;
}
/*font
-----------------------------------------------------------------------------*/
/*PC共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 1500px) {
  html {
    font-size: 0.66667vw;
  }
}
/*--------------------------endPC--------------------------------*/
/*SP共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  html {
    font-size: 1.8vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*--------------------------endSP--------------------------------*/