@charset "UTF-8";
.footer {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 15vw;
  flex-direction: column;
  overflow: hidden;
}
.footer .top {
  display: flex;
  width: 100%;
  min-height: 11vw;
  background-color: #f1f1f1;
  align-items: center;
}
.footer .page-top {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 2.85vw;
  color: #231815;
  bottom: 4vw !important;
  right: 1%;
  transform: translate(-50%, 50%);
  background-image: url(/images/v2/Icon_gotop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1000;
}
.footer .content {
  position: relative;
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.footer .copyright {
  width: 100%;
  height: 4vw;
  background-color: #333333;
}
.footer .copyright .content {
  height: 100%;
  align-items: center;
}
.footer .copyright .content .left {
  width: 50%;
}
.footer .copyright .content .left a {
  position: relative;
  display: block;
  width: max-content;
  font-size: 0.8vw;
  color: #231815;
  padding-right: 1.2vw;
}
.footer .copyright .content .left a::after {
  content: "";
  position: absolute;
  width: 0.95vw;
  height: 0.95vw;
  background-image: url("/images/v2/icon_link.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
}
.footer .copyright .content .right {
  width: 50%;
  text-align: right;
  color: #231815;
}
.footer .copyright .content .right p {
  font-size: 0.7vw;
}
.footer .copyright .content .center {
  width: 100%;
  text-align: center;
  color: #fff;
}
.footer .copyright .content .center p {
  font-size: 0.7vw;
}
.footer .top .content {
  flex-direction: column;
}
.footer .media {
  position: relative;
  display: flex;
  width: 100%;
  height: 2.5vw;
  flex-direction: row;
}
.footer .media .logo {
  display: flex;
  width: 30%;
  height: 100%;
  flex-direction: row;
  align-items: center;
}
.footer .media .logo img {
  border-radius: 0 !important;
  height: 100%;
  width: unset;
}
.footer .media .logo span {
  font-size: 1vw;
  color: #231815;
  margin-left: 0.75vw;
}
.footer .media .public {
  position: relative;
  display: flex;
  width: 70%;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}
.footer .media .public .social {
  width: 35%;
  height: 100%;
}
.footer .media .public .social ul {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  list-style-type: none;
  padding: 0;
}
.footer .media .public .social ul li {
  width: max-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4.5%;
}
.footer .media .public .social ul li a {
  display: block;
  width: max-content;
  height: 100%;
}
.footer .media .public .social ul li a img {
  width: unset;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.footer .media .public .other {
  display: flex;
  flex-direction: row;
  width: max-content;
  align-items: flex-start;
  justify-content: center;
  margin-left: 2vw;
}
.footer .media .public .other .btn {
  position: relative;
  color: #231815;
  padding: 0 0.75vw;
  font-size: 0.8vw;
  font-weight: 500;
}
.footer .media .public .other .consult {
  padding-left: 1.25vw;
}
.footer .media .public .other .consult::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  max-width: 50px;
  max-height: 50px;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url("/images/v2/Icon_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.footer .sitemap {
  position: relative;
  display: block;
  width: 100%;
  padding: 3.5vw 0 5vw;
}
.footer .sitemap ul {
  position: relative;
  display: flex;
  width: 100%;
  list-style: none;
  list-style-type: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.footer .sitemap ul li {
  width: 11.1111111111%;
  /* 子選單層 */
}
.footer .sitemap ul li span {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0.9vw;
  font-size: 0.9vw;
  font-weight: 400;
  color: #231815;
}
.footer .sitemap ul li span::before {
  position: absolute;
  content: "";
  width: 0.5vw;
  height: 0.5vw;
  right: 15%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/images/v2/Icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .sitemap ul li span::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  left: 0;
  bottom: -3px;
  background-color: rgba(112, 112, 112, 0.25);
}
.footer .sitemap ul li ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.footer .sitemap ul li ul li {
  width: 100%;
  padding: 0.25vw 0;
}
.footer .sitemap ul li ul li a {
  color: #6e6e6e;
  font-size: 0.7vw;
}

@media (min-width: 767.98px) and (max-width: 991.98px) and (orientation: portrait) {
  .footer .page-top {
    width: 80px;
    height: 80px;
    bottom: 23vw !important;
  }
}
@media (max-width: 991.98px) {
  .footer {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 40vw;
    flex-direction: column;
  }
  .footer .page-top {
    width: 60px;
    height: 60px;
    top: unset;
    bottom: 23vw !important;
    right: 1.5%;
    background-image: url(/images/v2/Icon_gotop.svg);
  }
  .footer .top {
    width: 100%;
    min-height: 16vw;
    padding: 27vw 0 15vw;
    background-color: #fff;
  }
  .footer .content {
    width: 100%;
    margin: 0 auto;
  }
  .footer .copyright {
    width: 100%;
    height: 23vw;
    background-color: #333333;
  }
  .footer .copyright .content {
    height: 100% !important;
    align-items: center !important;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 6.5vw !important;
  }
  .footer .copyright .content .left {
    width: 100%;
  }
  .footer .copyright .content .left a {
    font-size: 4vw;
    padding-right: 6.2vw;
  }
  .footer .copyright .content .left a::after {
    width: 4vw;
    height: 4vw;
  }
  .footer .copyright .content .right {
    width: 100%;
    text-align: left;
    margin-top: 3vw;
  }
  .footer .copyright .content .right p {
    font-size: 3vw;
    letter-spacing: 0.251px;
  }
  .footer .copyright .content .center p {
    font-size: 12px !important;
  }
  .footer .top .content {
    flex-direction: column;
  }
  .footer .media {
    width: 100%;
    height: unset;
    flex-direction: column;
  }
  .footer .media .logo {
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .footer .media .logo img {
    height: 100%;
    width: unset;
  }
  .footer .media .logo span {
    font-size: 6vw;
    margin-left: 4vw;
  }
  .footer .media .public {
    width: 100%;
    height: unset;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .media .public .other {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5vw 0 5vw;
  }
  .footer .media .public .other .btn {
    font-size: 4vw;
    margin-top: 3vw;
  }
  .footer .media .public .social {
    width: 70%;
    margin-top: 5.5vw;
    position: relative;
  }
  .footer .media .public .social::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    left: 0;
    top: -5.5vw;
    background-color: #ebebeb;
  }
  .footer .media .public .social ul {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
  .footer .media .public .social ul li {
    width: calc(25% - 9px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4.5%;
  }
  .footer .media .public .social ul li a {
    display: block;
    width: 100%;
  }
  .footer .media .public .social ul li a img {
    width: 100%;
    height: unset;
  }
  .footer .sitemap {
    display: none;
  }
}

/*# sourceMappingURL=footer_v2.css.map */
