@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=M+PLUS+1p);
body {
  color: #707070;
  font-family: "M PLUS 1p","Noto Sans JP","Serif";
}

a {
  color: #707070;
  font-family: "M PLUS 1p","Noto Sans JP","Serif";
  text-decoration: none;
}

.container {
  max-width: 100%;
  height: 750px;
  margin: 0 auto;
  padding: 0;
}

.loader-wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110vh;
  background: #fff;
}

.loader,
.loader:before,
.loader:after {
  background: #8cc63f;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #8cc63f;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.menu {
  height: 20px;
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 30px;
  z-index: 99;
}

.menu__line {
  background: #707070;
  display: block;
  height: 3px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}

.menu__line--center.active {
  transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

/*gnav*/
.gnav {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  height: 110vh;
  position: fixed;
  width: 100%;
  z-index: 98;
}

.gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.gnav__menu__item {
  margin: 40px 0;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 40px;
  text-decoration: none;
  transition: .5s;
}

.gnav__menu__item a:hover {
  color: #666;
}

#app {
  position: relative;
  width: 100%;
  height: 100vh;
}
#app img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 3rem;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8cc63f;
  border-radius: 20px;
  width: 60px;
  height: 60px;
  color: #666;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: bold;
  transition: all 0.3s;
}

#page-top a:active {
  background: #606060;
}

#page-top {
  position: fixed;
  right: 10px;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.sectiontitle {
  display: block;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  padding-bottom: 4rem;
  text-align: center;
}

.about > .container {
  display: flex;
  flex-direction: column;
  margin: 0 2rem 0 2rem;
  height: auto;
}

.about p {
  font-weight: 800;
  margin-bottom: 10rem;
}

.service > .container {
  display: grid;
  grid-auto-flow: column;
  margin: 0 2rem 0 2rem;
  align-items: center;
  height: auto;
  margin-bottom: 10rem;
}

.leftimg img {
  width: 27vw;
}

.leftimg {
  display: block;
  margin: 2rem;
}

.rightse {
  display: block;
  width: 50vw;
  margin: 0 2rem 0 4rem;
}

.rightse p {
  font-weight: 800;
}

.rightbot {
  display: flex;
  margin-top: 4rem;
  float: right;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #8cc63f;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 1.3rem 5rem;
  color: white;
  border-radius: 2;
  background: #707070;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 150%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
  background: #8cc63f;
}

a.btn-flat:hover:before {
  display: block;
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
  transform: translateX(-9%) translateY(-25%) rotate(135deg);
}

.team > .container {
  display: flex;
  flex-direction: column;
  margin: 0 2rem 0 2rem;
  align-items: center;
  justify-content: center;
  height: auto;
  margin-bottom: 10rem;
}

.team p {
  text-align: center;
  font-weight: 800;
}

.centimg img {
  display: block;
  width: 20vw;
  margin: 3rem 0 3rem 0;
  justify-content: center;
  align-items: center;
}

.info > .container {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
}

.kaisha {
  width: 70vw;
  margin-top: 2rem;
}

.kaisha th,
.kaisha td {
  border: 1px solid #ccc;
  padding: 1rem;
  font-weight: 600;
}

.kaisha th {
  font-weight: 800;
  background-color: #dedede;
}

footer > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}

.footnav {
  display: block;
  padding-bottom: 6rem;
}

.nav {
  width: 80vw;
  margin-top: 3rem;
  text-align: center;
  color: #707070;
  font-family: "M PLUS 1p","Noto Sans JP","Serif";
  font-size: .8rem;
}

.nav-items {
  padding: 0;
  list-style: none;
}

.nav-item {
  display: inline-block;
  margin-right: 1rem;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active,
.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  display: block;
  position: relative;
  font-size: .8rem;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active {
  color: #707070;
  font-weight: 800;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::before {
  opacity: 1;
  -webkit-transform: translate(0, 5px);
  transform: translate(0, 5px);
}

.dropdown {
  position: relative;
}

.dropdown .nav-link {
  padding-right: 15px;
  height: 17px;
  line-height: 17px;
}

.dropdown .nav-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  border: 5px solid transparent;
  border-top-color: #000;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  width: 200px;
  margin-left: -100px;
  background: #8cc63f;
  border-radius: 3px;
  line-height: 1.46667;
  margin-top: -5px;
  opacity: 0;
  -webkit-transform: translate(0, 0) scale(0.85);
  transform: translate(0, 0) scale(0.85);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  pointer-events: none;
}

.submenu::after,
.submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
}

.submenu::after {
  border-bottom-color: #000;
}

.submenu::before {
  margin-left: -13px;
  border: 13px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.submenu-items {
  list-style: none;
  padding: 10px 0;
}

.submenu-item {
  display: block;
  text-align: left;
}

.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  color: #606060;
  padding: 10px 20px;
  font-weight: 800;
}

.submenu-link:hover {
  text-decoration: underline;
}

.submenu-seperator {
  height: 0;
  margin: 12px 10px;
  border-top: 1px solid #eee;
}

.show-submenu .submenu {
  opacity: 1;
  -webkit-transform: translate(0, 25px) scale(1);
  transform: translate(0, 25px) scale(1);
  pointer-events: auto;
}

.form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form img {
  margin: 1rem;
}

.catch img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  margin-bottom: 2rem;
}

.copyright {
  text-align: center;
  font-size: .7rem;
  font-weight: 800;
}

@media screen and (max-width: 959px) {
  .about p {
    font-size: .8rem;
  }

  .service > .container {
    display: flex;
    flex-direction: column;
  }

  .leftimg img {
    display: flex;
    align-items: center;
    width: 75vw;
  }

  .rightse {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin: 2rem;
  }

  .rightse p {
    font-size: .8rem;
  }

  a.btn-flat {
    padding: 1rem 4rem;
  }

  .rightbot {
    justify-content: flex-end;
  }

  .centimg img {
    width: 65vw;
    margin: 3rem;
  }

  .team p {
    font-size: .8rem;
  }

  .kaisha {
    width: 80vw;
    margin-top: 2rem;
  }

  .kaisha th,
  .kaisha td {
    border: 1px solid #ccc;
    padding: 1rem;
    font-size: .8rem;
  }

  .kaisha th {
    font-size: .8rem;
  }
}

/*# sourceMappingURL=style.css.map */
