@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*変数設定用*/
img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

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

html {
  font-size: 62.5%;
}

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

header {
  width: 100%;
  height: auto;
  background: #eee;
}

footer {
  padding: 70px 0 65px;
  width: 100%;
  background: #202124;
  color: #fff;
  text-align: center;
}
footer .ft-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
footer .ft-copy {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@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;
  }
}

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

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

.container {
  max-width: 820px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 5%;
  }
}

.global_menu li {
  width: 18%;
  float: left;
}

/* ページTOP */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
#page-top a {
  font-family: "Poppins", sans-serif;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  background: #ECECEC;
  text-decoration: none;
  color: #202124;
  width: 120px;
  height: 120px;
  padding: 47px 0;
  text-align: center;
  display: block;
  border-radius: 50%;
  border: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 80px;
    height: 80px;
    font-size: 1.1rem;
    padding: 33px 0;
  }
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}
#page-top a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 28px;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid #202124;
  border-right: 1px solid #202124;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #page-top a::before {
    top: 19px;
  }
}/*# sourceMappingURL=common.css.map */