@charset "UTF-8";

.pc {
  display: block;
}
.sp {
  display: none;
}

@media (max-width: 1023px) {
.pc {
  display: none;
}
.sp {
  display: block;
}
}


/*==================================================================================
　header
==================================================================================*/
.header {
  width: 100%;
  height: 100px;
  padding: 0;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #fff;
}

.header h1 {
  background-color: #c90d0d;
}

.header h1 a {
  background-image: url(https://www.opt-araki.co.jp/img/common/header-logo.png);
  background-size: 182px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 318px;
  height: 100px;
}

.header .header-text {
  margin-right: auto;
  margin-left: 40px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #c90d0d;
}

.header .header-mail a {
  width: 100px;
  height: 100px;
  background-image: url(https://www.opt-araki.co.jp/img/common/header-mail.png);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.header .header-mail a:hover {
  background-image: url(https://www.opt-araki.co.jp/img/common/header-mail-on.png);
  background-color: #c90d0d;
  color: #171717;
  border-color: #D80220;
}

.header .header-insta a {
  width: 100px;
  height: 100px;
  background-image: url(https://www.opt-araki.co.jp/img/common/header-insta.png);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.header .header-insta a:hover {
  background-image: url(https://www.opt-araki.co.jp/img/common/header-insta-on.png);
  background-color: #c90d0d;
}

.header.UpMove h1 a {
  background-image: url(https://www.opt-araki.co.jp/img/header-logo.png);
}

.header.UpMove .header-list a {
  color: #000;
}

@media (max-width: 1023px) {
  .header {
    width: 100%;
    height: 50px;
    padding: 0 5% 0 0;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: #fff;
  }
  .header h1 {
    background-color: #c90d0d;
  }
  .header h1 a {
    background-image: url(https://www.opt-araki.co.jp/img/common/header-logo.png);
    background-size: 95px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 140px;
    height: 50px;
  }
  .header .header-text {
    display: none;
  }
  .header .header-mail {
    display: none;
  }
  .header .header-insta {
    display: none;
  }
  .header.UpMove h1 a {
    background-image: url(https://www.opt-araki.co.jp/img/header-logo.png);
  }
  .header.UpMove .header-list a {
    color: #000;
  }
}

/*==================================================================================
　SPハンバーガーメニュー
==================================================================================*/
.menu-wrap {
  z-index: 101;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu-wrap:hover {
  cursor: pointer;
  background-color: #c90d0d;
}

.menu-wrap:hover .menu span {
  background-color: #fff;
}

.menu-wrap.open {
  background: none;
}

.menu-wrap.open .menu span {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background-color: #171717;
}

.menu-wrap.open .menu span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
  width: 100%;
  margin-right: 0;
}

.menu-wrap.open .menu span:nth-child(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
  margin-right: 0;
}

.menu-wrap.open .menu span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
  width: 100%;
  margin-right: 0;
}

.menu {
  width: 35px;
  height: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.menu span {
  display: block;
  height: 2px;
  background-color: #c90d0d;
  border-radius: 2px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.menu span:nth-child(1) {
  width: 100%;
  margin-right: auto;
}

.menu span:nth-child(2) {
  width: 100%;
  margin-right: auto;
}

.menu span:nth-child(3) {
  width: 100%;
  margin-right: auto;
}

.navi {
  display: none;
  position: fixed;
  min-width: 32vw;
  height: calc(100vh - 100px);
  right: 0;
  bottom: 0;
  z-index: 30;
  overflow-y: auto;
  background: #171717;
  padding: 5vh 40px 0 55px;
}

.navi .navi-item {
  width: 100%;
  text-align: left;
  margin-bottom: 2.5vh;
  padding-bottom: 2vh;
  border-bottom: 1px solid #707070;
}

.navi .navi-item:last-child {
  margin-bottom: 0;
}

.navi .navi-item a {
  color: #fff;
  font-size: 2.2rem;
  font-family: "Montserrat";
  font-weight: normal;
  position: relative;
  display: block;
}

.navi .navi-item a:hover {
  opacity: .6;
}

.navi .navi-item a::after {
  content: "";
  background-image: url(https://www.opt-araki.co.jp/img/common/navi-item-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 18px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
}

.navi .navi-btn {
  display: none;
}

@media (max-width: 1023px) {
  .menu-wrap {
    margin-left: auto;
    z-index: 101;
    width: 35px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .menu-wrap:hover {
    cursor: pointer;
    background-color: #fff;
  }
  .menu-wrap:hover .menu span {
    background-color: #171717;
  }
  .menu-wrap.open {
    background: none;
  }
  .menu-wrap.open .menu span {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    background-color: #171717;
  }
  .menu-wrap.open .menu span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
    width: 100%;
    margin-right: 0;
  }
  .menu-wrap.open .menu span:nth-child(2) {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 100%;
    margin-right: 0;
  }
  .menu-wrap.open .menu span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    width: 100%;
    margin-right: 0;
  }
  .menu {
    width: 26px;
    height: 17px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
  }
  .menu span {
    display: block;
    height: 2px;
    background-color: #171717;
    border-radius: 2px;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .menu span:nth-child(1) {
    width: 100%;
    margin-right: auto;
  }
  .menu span:nth-child(2) {
    width: 100%;
    margin-right: auto;
  }
  .menu span:nth-child(3) {
    width: 100%;
    margin-right: auto;
  }
  .navi {
    display: none;
    position: fixed;
    width: 100%;
    min-width: 100%;
    height: calc(100% - 50px);
    right: 0;
    bottom: 0;
    z-index: 20;
    overflow-y: auto;
    background: #171717;
    padding: 30px 5% 0;
  }
  .navi .navi-item {
    width: 100%;
    text-align: left;
    margin-bottom: 19px;
    padding-bottom: 24px;
  }
  .navi .navi-item.active p {
    padding-right: 10vw;
    padding-bottom: 2vw;
    border-bottom: 2px solid #fff;
  }
  .navi .navi-item a {
    color: #fff;
    font-size: 2.2rem;
    font-family: "Montserrat";
    font-weight: normal;
    position: relative;
    display: block;
  }
  .navi .navi-item a:hover {
    opacity: .6;
  }
  .navi .navi-item a::after {
    content: "";
    background-image: url(https://www.opt-araki.co.jp/img/common/navi-item-arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 10px;
    height: 18px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .navi .navi-item.mail a::before {
    content: "";
    background-image: url(https://www.opt-araki.co.jp/img/common/header-mail.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 24px;
    display: inline-block;
    margin-right: 10px;
  }
  .navi .navi-item.insta a::before {
    content: "";
    background-image: url(https://www.opt-araki.co.jp/img/common/header-insta-on.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
  }
  .navi .navi-text1 {
    font-size: 1.6rem;
    color: #fff;
    text-align: left;
    margin-top: 45px;
  }
  .navi .navi-text1 .sp-block {
    display: block;
    margin-bottom: 5px;
  }
  .navi .navi-text2 {
    font-size: 1.7rem;
    font-family: "Roboto";
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navi .navi-text2 strong {
    font-size: 2.4rem;
  }
  .navi .navi-text2 .icon {
    font-size: 1rem;
    font-weight: bold;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    padding: 6px;
    color: #171717;
    margin-left: 10px;
  }
  .navi .navi-btn {
    display: block;
    text-align: center;
  }
  .navi .navi-btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #D90221;
    padding: 25px 0;
    margin: 30px auto 20px;
    color: #fff;
    font-family: "Roboto";
    font-size: 2.6rem;
    font-weight: bold;
    position: relative;
    max-width: 318px;
    height: 55px;
    border-radius: 45px;
  }
  .navi .navi-btn a:before {
    content: '';
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(https://www.opt-araki.co.jp/img/navi-contact-icon.png);
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-top: 25px;
    margin-right: 5px;
  }
}



/*==================================================================================
　fotter
==================================================================================*/
.footer {
  background: #000;
  position: relative;
  color: #fff;
}

.footer .footer-inner {
  margin: auto;
  padding: 55px 0 35px;
}

.footer .footer-inner .footer-shop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 70px;
  max-width: 1078px;
}

.footer .footer-inner .footer-shop .footer-shop-1 {
  padding-left: 7rem;
  padding-right: 11rem;
  border-right: 1px solid #8E8E8E;
  margin-right: 7rem;
}

.footer .footer-inner .footer-shop .footer-shop-h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.footer .footer-inner .footer-shop .footer-shop-tel {
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: #fff;
  margin-bottom: 25px;
  display: block;
  font-size: 3rem;
}

.footer .footer-inner .footer-shop .footer-shop-text {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer .footer-inner .footer-links {
  padding-top: 35px;
  border-top: 1px solid #fff;
  width: 100%;
}

.footer .footer-inner .footer-links .footer-links-inner {
  max-width: 160rem;
  padding: 0 2%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-inner .footer-links .footer-links-logo img {
  width: 18rem;
}

.footer .footer-inner .footer-links .footer-links-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-inner .footer-links .footer-links-list ul li {
  font-size: 1.6rem;
  margin-right: 1.5rem;
}

.footer .footer-inner .footer-links .footer-links-list ul li:after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 14px;
  display: inline-block;
  margin-left: 1.5rem;
}

.footer .footer-inner .footer-links .footer-links-list ul li:last-child:after {
  display: none;
}

.footer .footer-inner .footer-links .footer-links-list ul li:nth-last-of-type(2):after {
  display: none;
}

.footer .footer-inner .footer-links .footer-links-list ul li.insta img {
  width: 30px;
}

.footer .footer-inner .footer-links .footer-links-list ul a {
  color: #fff;
}

.footer .footer-inner .footer-links .footer-links-list .footer-links-list-text {
  font-size: 1.6rem;
  margin-top: 20px;
  text-align: center;
}

.footer .footer-inner .footer-links .footer-links-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-inner .footer-links .footer-links-contact .footer-links-contact-mail {
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2rem;
}

.footer .footer-inner .footer-links .footer-links-contact .footer-links-contact-mail a {
  color: #fff;
}

.footer .footer-inner .footer-links .footer-links-contact .footer-links-contact-mail::before {
  content: "";
  background-image: url(https://www.opt-araki.co.jp/img/common/footer-mail.png);
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 24px;
  margin-right: 10px;
}

.footer .footer-inner .footer-links .footer-links-contact .copyright {
  font-size: 1.6rem;
  padding-top: 0;
}

.footer .footer-inner .page-top {
  text-align: center;
  position: fixed;
  bottom: 80px;
  right: 2%;
  z-index: 100;
}

.footer .footer-inner .page-top a {
  display: block;
  width: 100px;
  height: 100px;
  background-color: #C90D0D;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  line-height: 2.5rem;
  text-align: center;
  padding: 35px 0 0;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.footer .footer-inner .page-top a span {
  display: inline-block;
}

.footer .footer-inner .page-top a::after {
  content: "";
  background-image: url(https://www.opt-araki.co.jp/img/common/page-top-icon.png);
  background-size: cover;
  position: absolute;
  width: 21px;
  height: 13px;
  right: 0;
  left: 0;
  top: 14px;
  margin: auto;
}

.footer .footer-inner .page-top a:hover {
  background-color: #fff;
  color: #C90D0D;
  border: 1px solid #C90D0D;
}

.footer .footer-inner .page-top a:hover::after {
  background-image: url(https://www.opt-araki.co.jp/img/common/page-top-icon-on.png);
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer .footer-inner .page-top a:hover span {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1023px) {
  .footer {
    background: #000;
    position: relative;
    color: #fff;
  }
  .footer .footer-inner {
    margin: auto;
    padding: 25px 5% 15px;
  }
  .footer .footer-inner .footer-shop {
    display: -ms-grid;
    display: grid;
    margin: 0 auto 35px;
    max-width: 100%;
    text-align: center;
  }
  .footer .footer-inner .footer-shop .footer-shop-1 {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
    margin-bottom: 30px;
    width: auto;
    display: inline-block;
    text-align: left;
  }
  .footer .footer-inner .footer-shop .footer-shop-2 {
    width: auto;
    display: inline-block;
    text-align: left;
  }
  .footer .footer-inner .footer-shop .footer-shop-h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .footer .footer-inner .footer-shop .footer-shop-tel {
    font-weight: 600;
    font-family: "Noto Serif JP";
    color: #fff;
    margin-bottom: 15px;
    display: block;
    font-size: 2.2rem;
  }
  .footer .footer-inner .footer-shop .footer-shop-text {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .footer .footer-inner .footer-links {
    padding-top: 0;
    border-top: 1px solid #fff;
    width: 100%;
  }
  .footer .footer-inner .footer-links .footer-links-inner {
    max-width: 100%;
    padding: 0 2%;
    margin: auto;
    display: block;
  }
  .footer .footer-inner .footer-links .footer-links-logo {
    margin: 30px auto;
    width: 180px;
  }
  .footer .footer-inner .footer-links .footer-links-logo img {
    width: 180px;
  }
  .footer .footer-inner .footer-links .footer-links-list ul {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer .footer-inner .footer-links .footer-links-list ul li {
    font-size: 1.4rem;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
    margin-bottom: 15px;
  }
  .footer .footer-inner .footer-links .footer-links-list ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
  .footer .footer-inner .footer-links .footer-links-list ul li:after {
    display: none;
  }
  .footer .footer-inner .footer-links .footer-links-list ul a {
    color: #fff;
  }
  .footer .footer-inner .footer-links .footer-links-list .footer-links-list-text {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-top: 20px;
    text-align: center;
  }
  .footer .footer-inner .footer-links .footer-links-contact {
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-inner .footer-links .footer-links-contact .footer-links-contact-mail {
    font-size: 1.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 25px 0;
  }
  .footer .footer-inner .footer-links .footer-links-contact .footer-links-contact-mail::before {
    content: "";
    background-image: url(https://www.opt-araki.co.jp/img/common/footer-mail.png);
    background-size: cover;
    display: inline-block;
    width: 30px;
    height: 24px;
    margin-right: 10px;
  }
  .footer .footer-inner .footer-links .footer-links-contact .copyright {
    font-size: 1.2rem;
    text-align: center;
  }
  .footer .footer-inner .page-top {
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 2%;
    z-index: 100;
  }
  .footer .footer-inner .page-top a {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #C90D0D;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.7rem;
    text-align: center;
    padding: 25px 0 0;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .footer .footer-inner .page-top a span {
    display: inline-block;
  }
  .footer .footer-inner .page-top a::after {
    content: "";
    background-image: url(https://www.opt-araki.co.jp/img/common/page-top-icon.png);
    background-size: cover;
    position: absolute;
    width: 16px;
    height: 8px;
    right: 0;
    left: 0;
    top: 14px;
    margin: auto;
  }
  .footer .footer-inner .page-top a:hover {
    background-color: #fff;
    color: #C90D0D;
    border: 1px solid #C90D0D;
  }
  .footer .footer-inner .page-top a:hover::after {
    background-image: url(https://www.opt-araki.co.jp/img/common/page-top-icon-on.png);
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .footer .footer-inner .page-top a:hover span {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}