@charset "UTF-8";
@font-face {
  font-family: noto_sans_500;
  src: url("../fonts/NotoSansJP-Medium.woff");
  font-weight: 500;
}
@font-face {
  font-family: noto_sans_700;
  src: url("../fonts/NotoSansJP-Bold.woff");
  font-weight: 700;
}
@font-face {
  font-family: noto_sans_900;
  src: url("../fonts/NotoSansJP-Black.woff");
  font-weight: 900;
}
@font-face {
  font-family: zen_gothi_900;
  src: url("../fonts/ZenKakuGothicAntique-Black.woff");
  font-weight: 900;
}
@font-face {
  font-family: poppins_700;
  src: url("../fonts/Poppins-SemiBold.woff");
  font-weight: 600;
}
@font-face {
  font-family: yugo_700;
  src: url("../fonts/YuGoPr6N-B.woff");
  font-weight: 700;
}
@font-face {
  font-family: hirakaku_600;
  src: url("../fonts/ヒラギノUD角ゴF_Std_W6.woff");
  font-weight: 600;
}
.footer {
  position: relative;
  color: #fff;
  background-color: #2c2f2c;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 16px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 15px;
  }
}

.footer__inner {
  max-width: 1385px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .footer__item:nth-child(n+2) {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer__item {
    width: 50%;
  }
}

.footer__anchor {
  position: relative;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .footer__anchor:after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -7px;
    left: 0;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    background-color: #fff;
  }
  .footer__anchor:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__anchor {
    display: block;
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  .footer__copyright {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
    text-align: center;
  }
}
.footer__copyright span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__copyright span {
    display: none;
  }
}