@charset "UTF-8";
/*変数設定用*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

html {
  font-size: 62.5%;
}

body {
  font-size: 62.5%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.container {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 95%;
  }
}

/* ページTOP */
#page-top {
  position: fixed;
  bottom: 40px;
  right: 70px;
  font-size: 77%;
}
@media screen and (max-width: 767px) {
  #page-top {
    bottom: 100px;
    right: 12px;
  }
}
#page-top a {
  background: #ff6000;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}
#page-top a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 61%;
  left: 50%;
}/*# sourceMappingURL=common.css.map */