/* Scss Document */
/*container//contents//section
******************************************************/
section {
  padding: 130px 0;
}

@media only screen and (max-width: 769px) {
  section {
    padding: 90px 0 0;
  }
}

.container {
  max-width: 940px;
  margin: auto;
  width: 96%;
}

.contents {
  background: #e6e6e6;
  width: 94%;
  margin: auto;
  padding: 0 0 130px;
}

@media only screen and (max-width: 480px) {
  .contents {
    width: 90%;
    padding: 0 0 20vw;
  }
}

@media only screen and (max-width: 769px) {
  #business .contents, #member .contents {
    width: 100%;
  }
}

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*header
******************************************************/
.header_inner-Logo {
  position: fixed;
  width: 100px;
  top: 10px;
  left: 10px;
  z-index: 999;
}

@media only screen and (max-width: 480px) {
  .header_inner-Logo {
    top: 5px;
    left: 5px;
  }
}

/*menu
******************************************************/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 90;
  background-color: #000000;
  border-radius: 50%;
}

@media only screen and (max-width: 480px) {
  .menu-btn {
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
  }
}

.menu-btn span {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

.menu-content {
  width: 200px;
  position: fixed;
  top: 40px;
  right: 60px;
  z-index: 80;
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 5px;
  opacity: 0;
  z-index: -1;
}

.menu-content ul {
  padding: 30px 40px;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li:last-child {
  border-bottom: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 0px 10px 0;
  position: relative;
  text-align: center;
}

#menu-btn-check {
  display: none;
}

#menu-btn-check:checked ~ .menu-content {
  right: 60px;
  opacity: 1;
  z-index: 2;
}

.footer {
  background: #cccccc;
  padding: 55px 0 10px;
}

.footer_inner {
  position: relative;
}

.footer_inner .copy {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

.footer #page-top {
  display: block;
  font-weight: bold;
  padding: .7em;
  text-align: center;
  background: #fff;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  right: 0;
  left: 0;
  margin: -105px auto 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 14px;
  line-height: 56px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.footer #page-top:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -15px auto 0;
}

.footer #page-top a {
  display: block;
}
/*# sourceMappingURL=layout.css.map */