@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: 'メイリオ';
}

#header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.h-logo img {
  max-width: 180px;
  height: 25px;
}

.tog-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}

.tog-btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.tog-btn span:nth-child(1) {
  top: 10px;
}

.tog-btn span:nth-child(2) {
  bottom: 10px;
}

.open .tog-btn span {
  background-color: #fff;
}

.open .tog-btn span:nth-child(1) {
  transform: translateY(4px) rotate(-45deg);
  -webkit-transform: translateY(4px) rotate(-45deg);
  -moz-transform: translateY(4px) rotate(-45deg);
  -ms-transform: translateY(4px) rotate(-45deg);
  -o-transform: translateY(4px) rotate(-45deg);
}

.open .tog-btn span:nth-child(2) {
  transform: translateY(-4px) rotate(45deg);
  -webkit-transform: translateY(-4px) rotate(45deg);
  -moz-transform: translateY(-4px) rotate(45deg);
  -ms-transform: translateY(-4px) rotate(45deg);
  -o-transform: translateY(-4px) rotate(45deg);
}

#navi {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  color: #fff;
  padding: 36px 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

#navi li {
  margin-bottom: 14px;
}

#navi a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

#navi a:hover {
  opacity: 0.5;
}

#overlay {
  display: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.open #navi {
  left: 0;
  opacity: 1;
}

.open #overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}

.head {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer {
  max-width: 1360px;
  padding: 0 40px 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

footer .f-flex ul li {
  font-size: 1.2rem;
  margin-right: 30px;
}

footer .f-flex ul li a {
  text-decoration: none;
  color: #333;
}

@media (max-width: 900px) {
  footer .f-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer p {
    margin-top: 8px;
  }
}
/*# sourceMappingURL=common.css.map */