footer {
  background: #333333;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  width: 100%;
}

footer .gmap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 15px;
}

footer .gmap iframe {
  width: 100%;
  border-radius: 25px;
}

footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 15px;
}

@media screen and (min-width: 768px) {
  footer .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1000px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

footer .footer-addr {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 2;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  footer .footer-addr {
    padding: 0 20px;
    font-size: 21px;
  }
}

footer .footer-addr .tellink {
  color: #f7931e;
  text-decoration: underline;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  footer .footer-addr .tellink {
    color: #fff;
    text-decoration: none;
  }
}

footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-menu a {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer .footer-menu .fbtn {
  display: none;
  position: relative;
}

@media screen and (min-width: 768px) {
  footer .footer-menu .fbtn {
    display: block;
  }
}

footer .footer-menu .fbtn .hmask {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

footer .footer-menu .fbtn .hmask .hover {
  z-index: 2;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

footer .footer-menu .fbtn:hover .hmask {
  -webkit-animation: maskOut 0.3s forwards;
          animation: maskOut 0.3s forwards;
}

footer .footer-menu .fbtn:hover .hmask .hover {
  -webkit-animation: play 0.3s forwards;
          animation: play 0.3s forwards;
}

footer .footer-menu-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  footer .footer-menu-sns {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

footer .footer-menu-sns a {
  margin-left: 10px;
}

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes play {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*# sourceMappingURL=footer.css.map */