@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;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* header */
.header {
  height: 50px;
  width: 100%;
  background-color: #eb5a02;
}
.header h1 {
  color: #FFF;
  text-align: left;
  padding: 12px 24px;
  font-size: 1.6rem;
}
.header h1 a {
  color: #FFF;
  text-decoration: none;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
@media(max-width:1160px) {
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #FFF;
    display: block;
    content:"";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 20px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #567947;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {             
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li:first-child {             
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #FFF;
  }
}
@media(min-width:1160px) {
  .header {
    height: 83px;
  }
  .header-content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
  }
  .header h1 {
    font-size: 3.2rem;
    padding-top: 26px;
    position: absolute;
    left: 0;
    font-weight: 600;
  }
  .header nav {
    display: block;
    text-align: right;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    display: block;
    padding: 26px 25px 0;
    color: #FFF;
    text-decoration: none;
    font-size: 2.5rem;
    height: 83px;
  }
}
/* footer */
.footer {
  height: 350px;
  padding: 30px 0;
  background-color: #567947;
  font-size: 1.6rem;
  color: #FFF;
  position: relative;
}
.footer a {
  color: #FFF;
  text-decoration: none;
}
.site-map {
  display: flex;
  text-align: left;
  justify-content: left;
  padding: 0 30px;
  font-size: 1.4rem;
  font-weight: 600;
}
.site-map__service-links {
  margin-left: 30px;
}
.footer__copyright {
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
}
@media (min-width: 1160px) {
  .footer {
    padding: 70px 0 45px;
  }
  .footer-content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .footer .site-map {
    padding: 0;
    font-weight: 600;
  }
  .footer .site-map li {
    padding: 0;
    margin-bottom: 10px;
  }
  .footer__copyright {
    font-size: 2.0rem;
    font-weight: 400;
  }
}
#scroll-top {
  background-color: #eee;
  opacity: 0.9;
  bottom: 20px;
  padding: 10px;
  position: fixed;
  right: 20px;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
}