@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
h1 {
  font-size: 6.0rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}

*,*:before,*:after{
  box-sizing: border-box;
}
/* return to top */
#scroll-top {
  background-color: #E39C50;
  opacity: 0.6;
  bottom: 20px;
  padding: 20px;
  border-radius: 120px 120px 30px 30px;
  position: fixed;
  right: 20px;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
  font-size:2.0rem;
  font-weight: 700;
}

/*フッター*/
.footer {
  height: 100px;
  padding: 30px 0;
  background-color: #007E54;
  background: linear-gradient(to bottom, #fff);
  font-size: 1.4rem;
  position: relative;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.site-map {
  display: flex;
  text-align: left;
  justify-content: left;
  font-weight: 600;
  padding: 0 30px;
}
.site-map__service-links {
  margin-left: 40px;
}
.footer__copyright {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  left: 0;
}
@media(min-width:1160px) {
  
  .footer-content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .site-map {
    padding: 0;
    font-weight: 400;
  }
  .site-map li {
    margin-bottom: 10px;
  }
  .footer__copyright {
    font-size: 2rem;
    font-weight: 400;
  }
}