@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
div.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}
/* hamberger */
* {
  margin: 0;
  padding: 0;
}
.container__open .menu {
  display: block;
  font-family: "Century Gothic Pro", sans-serif, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, ;
  line-height: normal;
}
.container__open .toggle__span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
  background-color: #fff;
}
.container__open .toggle__span:nth-child(2) {
  background-color: transparent;
}
.container__open .toggle__span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
  background-color: #fff;
}
.container__open .flex-box:nth-child(2) {
  flex: 0 0 0;
}
.container:hover.flex-box:nth-child(2) {
  flex: 0 0 0;
}
.menu {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0%;
  height: 100vh;
  color: #fff;
  transform: translateY(-100%);
  background-color: #330066;
  animation: 0.4s slideDown 0.25s forwards;
  z-index: 10000;
  -webkit-backface-visibility: hidden;
}
.menu__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 880px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__item {
  font-weight: 700;
  font-size: 44px;
  padding: 1rem;
  margin: 0 1rem;
  text-align: center;
  background: linear-gradient(110deg, transparent 0%, transparent 50%, #e6ff00 50%);
  background-size: 250%;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
}
.menu__item:hover {
  background-position: 99%;
  color: #330066;
}
@media only screen and (max-width: 1250px) {
  .menu__item {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1000px) {
  .menu__item {
    font-size: 28px;
  }
}
.hover-box {
  background-color: #fff;
  display: none;
  animation: 0.6s fadeIn ease-in-out;
  position: absolute;
  color: #330066;
  top: 100%;
  width: 100%;
  left: 0;
  border-top: 4px solid #330066;
  backface-visibility: none;
}
.hover-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.hover-box__item {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 6px 12px;
  border-bottom: 2px solid #330066;
  transition: 0.2s background;
  backface-visibility: none;
}
.hover-box__item:hover {
  background-color: #e6ff00;
}
@media only screen and (max-width: 880px) {
  .hover-box {
    display: block;
    position: relative;
    width: auto;
    border-top: 2px solid #330066;
  }
  .hover-box__list {
    flex-direction: column;
  }
}
.toggle {
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 10000;
  width: 40px;
  height: 40px;
}
.toggle__span {
  height: 3px;
  width: 100%;
  background-color: #333;
  position: absolute;
  transition: 0.4s;
}
.toggle__span:nth-child(1) {
  top: 10px;
}
.toggle__span:nth-child(2) {
  top: 19px;
}
.toggle__span:nth-child(3) {
  top: 28px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body {
  color: #333; /* RGB */
  font-family: "Century Gothic Pro", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* header */
.header {
  animation: SlideIn 1.6s;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateX(-64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.header h1 {
  display: flex;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.header h1 img {
  width: 200px;
}
/* footer */
.footer {
  height: 300px;
  padding: 30px 0;
  background-image: url("../images/common/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.4rem;
  color: #FFF;
  width: 100%;
  position: relative;
  margin-top: 50px;
}
.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 {
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  position: absolute;
}
@media(min-width:1000px) {
  .footer {
    padding: 60px 100px 45px;
    position: relative;
    height: 400px;
    background-position: center;
  }
  .footer-content-wrapper {
    max-width: 1160px;
    margin: 0 auto;
  }
  .footer .site-map {
    position: absolute;
    left: 100px;
    padding: 0;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .footer .site-map li {
    padding: 0;
    margin-bottom: 10px;
  }
  .footer__copyright {
    font-size: 2.0rem;
    font-weight: 400;
    font-family: "Century Gothic Pro", sans-serif, Verdana;
  }
}
a:link, a:visited {
  color: inherit;
  opacity: inherit;
  text-decoration: none;
}