@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body, header, footer, aside, nav, section, article, h1, h2, h3, h4, h5, h6, p, span, a, ul, ol, li, strong, img {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  text-decoration: none;
  cursor: pointer;
}

textarea {
  vertical-align: top;
}

label {
  display: inline-block;
  cursor: pointer;
}

body {
  font-family: 'Arimo', 'Noto Sans TC', '微軟正黑體';
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .container {
    max-width: 950px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

.common__section {
  padding: 70px 0;
}

@media (max-width: 991px) {
  .common__section {
    padding: 50px 0;
  }
}

.header {
  width: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.header__fixed--scroll {
  height: auto;
  overflow: visible;
  opacity: 1;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity .5s, -webkit-transform .5s, -webkit-box-shadow .5s;
  transition: opacity .5s, -webkit-transform .5s, -webkit-box-shadow .5s;
  -o-transition: transform .5s, box-shadow .5s, opacity .5s;
  transition: transform .5s, box-shadow .5s, opacity .5s;
  transition: transform .5s, box-shadow .5s, opacity .5s, -webkit-transform .5s, -webkit-box-shadow .5s;
}

.header__fixed .bottombar {
  padding: 20px 0;
}

.header__fixed .lang {
  width: 130px;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .header__fixed .lang {
    width: auto;
    padding: 0;
    position: absolute;
    right: 55px;
    top: calc(50% - 20px);
  }
}

.header__fixed .lang__current {
  color: #555;
}

.header__fixed .lang__current::before {
  background-position: -12px -16px;
}

.header__fixed .lang__current::after {
  border-color: #555 transparent transparent transparent;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fafafa;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

@media (min-width: 992px) {
  .menu {
    display: none;
  }
}

.menu--open .menu {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
}

.menu__close img {
  width: 30px;
}

.menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 40px;
}

.menu__link {
  width: 100%;
  padding: 15px 0px;

  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.menu__link--active {
  color: #f4665e;
}

.menu__link:nth-child(n + 2) {
  border-top: 1px solid #eee;
}

.topbar {
  position: relative;
  z-index: 2;
  background-color: #005ead;
}

.topbar__box {
  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;
}

.topbar__address {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 16px;
  padding-left: 26px;
}

.topbar__address::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 12px;
  height: 16px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .topbar__address {
    padding-left: 0;
  }
  .topbar__address::before {
    content: none;
  }
}

.lang {
  position: relative;
}

.lang__current {
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 60px;
  padding: 0 12px 0 18px;
  opacity: .8;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

@media (max-width: 575px) {
  .lang__current {
    font-size: 13px;
  }
}

.lang__current::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -16px;
  background-repeat: no-repeat;
}

.lang__current::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3.5px 0 3.5px;
  border-color: #fff transparent transparent transparent;
}

.lang__current:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .lang__current {
    line-height: 40px;
  }
}

.lang__itembox {
  position: absolute;
  top: calc(100% - 13px);
  right: 0;
  width: 100%;
  min-width: 100px;
  height: 0;
  background-color: #fafafa;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.lang__itembox--open {
  height: auto;
  padding: 13px 10px;
  overflow: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.lang__item {
  display: block;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.lang__item:hover {
  color: #f4665e;
}

.lang__item:nth-child(n + 2) {
  margin-top: 5px;
}

.bottombar {
  padding: 45px 0;
  background-color: #fff;
}

@media (max-width: 1366px) and (min-width: 992px) {
  .bottombar {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .bottombar {
    padding: 10px 0;
  }
}

.bottombar__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  display: block;
  width: 192px;
}

.nav {
  width: calc(100% - 342px);
  font-size: 0;
  text-align: center;
  white-space: nowrap;
  padding: 0 10px;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (max-width: 991px) {
  .nav {
    display: none;
  }
}

.nav__item {
  position: relative;
  display: inline-block;
  color: #555;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;

  transition: color .4s;
}

.nav__item:hover, .nav__item--active {
  color: #f4665e;
}

.nav__item:nth-child(n + 2) {
  margin-left: 35px;
}

.nav__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 45px;
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  background-color: #f4665e;
  border-radius: 22.5px;
}

@media (max-width: 991px) {
  .nav__contact {
    display: none;
  }
}

.burger {
  position: absolute;
  right: 0;
  top: calc(50% - 17px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  width: 44px;
  height: 34px;
  padding: 9px 10px;
  background-color: #f4665e;
}

@media (min-width: 992px) {
  .burger {
    display: none;
  }
}

.burger::before, .burger::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.gotop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s;
}

.gotop::before {
  content: '';
  display: block;
  width: 7px;
  height: 15px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -166px;
  background-repeat: no-repeat;
}

.gotop:hover {
  background-color: #000;
}

.footer .footer__contact-phone {
  background-position: -14px -97px;
}

.footer .footer__contact-map {
  background-position: -14px -122px;
}

.footer .footer__contact-mail {
  background-position: -20px -141px;
}

.footer__main {
  padding: 50px 0;
  background-color: #005ead;
}

.footer__itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -25px;
}

.footer__box {
  width: 100%;
}
.footer__box:nth-child(n + 2) {
  margin-top: 60px;
}

@media (min-width: 992px) {
  .footer__box--mb {
    display: none;
  }
}
@media (max-width: 991px) {
  .footer__box--pc {
    display: none !important;
  }
}

.footer__item {
  padding: 0 25px;
}

@media (min-width: 992px) {
  .footer__item:first-child {
    width: 25%;
  }
  .footer__item:nth-child(2) {
    width: 20%;
  }
  .footer__item:nth-child(3) {
    width: 27.5%;
  }
  .footer__item:nth-child(4) {
    width: 27.5%;
  }
}

@media (max-width: 991px) {
  .footer__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__item:nth-child(2) {
    display: none;
  }
  .footer__item:nth-child(n + 2) {
    margin-top: 20px;
  }
  .footer__logo {
    margin-bottom: 10px;
  }
  .footer__box:nth-child(n + 2) {
    margin-top: 20px;
  }
  .footer__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
}

.footer__logo {
  display: block;
  height: 20px;
  margin-bottom: 40px;
}

.footer__logo + p {
  max-width: 350px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  opacity: .8;
}

.footer__title {
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .footer__title {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer__logo + p {
    text-align: center;
  }
}

.footer__link {
  position: relative;
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  opacity: .8;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.footer__link::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  width: 7px;
  height: 12px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: -7px -85px;
  background-repeat: no-repeat;
}

.footer__link:hover {
  opacity: 1;
}

.footer__link:nth-child(n + 2) {
  margin-top: 22px;
}

@media (max-width: 991px) {
  .footer__contact {
    width: 100%;
    max-width: 350px;
  }
  .company .footer__contact {
    max-width: none;
  }
}

.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__contact-item:nth-child(n + 2) {
  margin-top: 35px;
}

@media (max-width: 991px) {
  .footer__contact-item:nth-child(n + 2) {
    margin-top: 10px;
  }
}

.footer__contact-icon {
  width: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .footer__contact-icon {
    display: none;
  }
}

.footer__contact-phone {
  display: inline-block;
  width: 14px;
  height: 25px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -97px;
  background-repeat: no-repeat;
  margin-top: 3px;
}

.footer__contact-map {
  display: inline-block;
  width: 14px;
  height: 19px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -122px;
  background-repeat: no-repeat;
  margin-top: 3px;
}

.footer__contact-mail {
  display: inline-block;
  width: 20px;
  height: 15px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -141px;
  background-repeat: no-repeat;
  margin-top: 3px;
}

.footer__contact-main {
  width: calc(100% - 20px);
  padding-left: 18px;
}

.footer__contact-main p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.7;
}

.footer__contact-main a {
  color: rgba(255, 255, 255, 0.8);
  word-break: break-all;
}

.footer__contact-main a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .indexslider-pc {
    display: none;
  }

  .footer__contact-main {
    width: 100%;
    padding: 0;

    text-align: center;
  }

  .footer__contact-main {
    width: 100%;
    padding: 0;

    text-align: center;
  }
}

@media (min-width: 992px) {
  .indexslider-mobile {
    display: none;
  }
}

.indexslider .indexslider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.indexslider.slick-dotted {
  margin-bottom: 0;
}

.indexslider .slick-prev {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 35px;
  z-index: 3;
  border-radius: 50%;
}

.indexslider .slick-prev::before {
  content: '';
  width: 7px;
  height: 12px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -85px;
  background-repeat: no-repeat;
  opacity: 1;
}

.indexslider .slick-next {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 35px;
  z-index: 3;
  border-radius: 50%;
}

.indexslider .slick-next::before {
  content: '';
  width: 7px;
  height: 12px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: -7px -85px;
  background-repeat: no-repeat;
  opacity: 1;
}

.indexslider .slick-dots {
  bottom: 40px;
}

@media (max-width: 991px) {
  .indexslider .slick-dots {
    bottom: 15px;
  }
}

.indexslider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 7.5px;
}

.indexslider .slick-dots li button {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.indexslider .slick-dots li button::before {
  display: none;
}

.indexslider .slick-dots li.slick-active button {
  background-color: #f4665e;
}

.indexslider__slide {
  position: relative;
  min-height: 36.45vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-size: no-repeat;
}

.indexslider__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .3;
}

@media (max-width: 991px) {
  .indexslider__slide {
    min-height: 80vw;
    padding: 40px 0;
  }
}

.indexslider__slide--animation .indexslider__since {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.indexslider__slide--animation .indexslider__box > h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.indexslider__slide--animation .indexslider__box > p {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.indexslider__slide--animation .indexslider__box > a {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.indexslider__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .indexslider__box {
    text-align: center;
  }
}

.indexslider__box > h1 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 45px;
  line-height: 1.2;
  margin-top: 35px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, -webkit-transform .4s;
  -o-transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s, -webkit-transform .4s;
}

.indexslider__box > h1:empty {
  display: none;
}

@media (max-width: 991px) {
  .indexslider__box > h1 {
    font-size: 36px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .indexslider__box > h1 {
    font-size: 28px;
    padding: 0;
    margin-top: 0;
  }
  .indexslider__box > h1::before, .indexslider__box > h1::after {
    display: none;
  }
}

.indexslider__box > p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 35px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, -webkit-transform .4s;
  -o-transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s, -webkit-transform .4s;
}

.indexslider__box > p:empty {
  display: none;
}

@media (max-width: 991px) {
  .indexslider__box > p {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .indexslider__box > p {
    display: none;
  }
}

.indexslider__box > a {
  display: inline-block;
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  line-height: 45px;
  padding: 0 40px;
  margin-top: 25px;
  background-color: #f4665e;
  border-radius: 22.5px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, -webkit-transform .4s;
  -o-transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s, -webkit-transform .4s;
}

@media (max-width: 575px) {
  .indexslider__box > a {
    font-size: 15px;
    font-weight: 300;
    line-height: 36px;
    padding: 0 30px;
    margin-top: 10px;
  }
}

.indexslider__since {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: opacity .4s, -webkit-transform .4s;
  transition: opacity .4s, -webkit-transform .4s;
  -o-transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s;
  transition: opacity .4s, transform .4s, -webkit-transform .4s;
}

@media (max-width: 575px) {
  .indexslider__since {
    display: none;
  }
}

.indexslider__since p {
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.indexslider__since-icon {
  width: 57px;
  height: 57px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -28px;
  background-repeat: no-repeat;
  margin: 0 25px;
}

.indexservice {
  padding-bottom: 0;
}

.indexservice__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .indexservice__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.indexservice__img {
  width: calc(50% - 80px);
  text-align: center;
}

@media (max-width: 991px) {
  .indexservice__img {
    width: 100%;
    margin-top: 20px;
  }
}

.indexservice__main {
  width: 50%;
}

@media (max-width: 991px) {
  .indexservice__main {
    width: 100%;
  }
}

.indexservice__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #333;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.indexservice__title::before {
  content: attr(data-year);
  display: block;
  color: #f1f1f1;
  font-size: 100px;
  font-weight: bold;
  line-height: 0.8;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .indexservice__title::before {
    font-size: 60px;
  }

  .indexservice__title {
    justify-content: center;

    font-size: 22px;
  }
}

.indexservice__subtitle {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .indexservice__subtitle {
    width: 100%;
    padding: 0;

    font-size: 22px;
    text-align: center;
  }
}

.indexservice__text {
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.575;
  margin-top: 20px;
}

.parallax {
  position: relative;
  min-height: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
  background-color: #f4665e;
  background-attachment: fixed;
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.parallax__itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  width: 100%;
}

.parallax__itembox .slick-list {
  width: 100%;
}

.parallax__item {
  text-align: center;
}

@media (min-width: 992px) {
  .parallax__item {
    width: 20%;
    text-align: center;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .parallax__item {
    width: calc(100% / 3);
  }

  .parallax__itembox > .parallax__item:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .parallax__item {
    width: calc(100% / 2);
  }

  .parallax__itembox > .parallax__item:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 575px) {
  .parallax__item {
    width: 100%;
  }

  .parallax__itembox > .parallax__item:nth-child(n + 2) {
    display: none;
  }
}

.parallax__icon {
  width: 100%;
  height: 43px;
  margin-bottom: 20px;
}
.parallax__icon img {
  height: 100%;
  margin: 0 auto;
}

.parallax__icon1 {
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -414px;
  background-repeat: no-repeat;
}

.parallax__icon2 {
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -457px;
  background-repeat: no-repeat;
}

.parallax__icon3 {
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -500px;
  background-repeat: no-repeat;
}

.parallax__icon4 {
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -543px;
  background-repeat: no-repeat;
}

.parallax__icon5 {
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -586px;
  background-repeat: no-repeat;
}

.parallax__num {
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

.parallax__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.feature__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.feature__row:nth-child(n + 2) {
  margin-top: 80px;
}

.feature__row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .feature__row:nth-child(n + 2) {
    margin-top: 40px;
  }

  .feature__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature__img {
  position: relative;

  width: calc(50% - 40px);

  text-align: center;
}


@media (min-width: 992px) {
  .feature__row:nth-child(odd) .feature__img {
    padding-left: 30px;
  }

  .feature__row:nth-child(odd) .feature__img::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: -30px;

    display: block;

    width: 70px;
    height: 300px;

    border: 8px solid #f0f0f0;

    box-sizing: border-box;

    z-index: 1;
  }

  .feature__row:nth-child(even) .feature__img {
    padding-right: 30px;
  }

  .feature__row:nth-child(even) .feature__img::before {
    content: "";

    position: absolute;
    right: 0;
    bottom: -30px;

    display: block;

    width: 70px;
    height: 300px;

    border: 8px solid #f0f0f0;

    box-sizing: border-box;

    z-index: 1;
  }
}

.feature__img img {
  position: relative;

  width: 100%;
  max-width: none;

  z-index: 2;
}

@media (max-width: 991px) {
  .feature__img {
    width: 100%;
  }
}

.feature__content {
  width: calc(50% - 40px);
}

@media (max-width: 991px) {
  .feature__content {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.feature__content h3 {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .feature__content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.feature__content p {
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.575;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .feature__content p {
    margin-bottom: 15px;
  }
}

.feature__content a {
  display: inline-block;
  width: 150px;
  color: #f4665e;
  font-size: 17px;
  line-height: 43px;
  text-align: center;
  border: 1px solid #f4665e;
  border-radius: 22.5px;
  -webkit-transition: color .4s, background-color .4s;
  -o-transition: color .4s, background-color .4s;
  transition: color .4s, background-color .4s;
}

.feature__content a:hover {
  color: #fff;
  background-color: #f4665e;
}

.indexcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.indexcase__item {
  width: 50%;
  padding: 150px 40px;
}

@media (max-width: 991px) {
  .indexcase__item {
    width: 100%;
    padding: 60px 15px;
  }
}

@media (max-width: 991px) {
  .indexcase__item-slider {
    padding-top: 15px;
    padding-bottom: 60px;
  }
}

.indexcase__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-size: no-repeat;
}

/* .indexcase__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #005ead;
  opacity: .7;
} */

.indexcase__content div {
  max-width: 540px;
}

.indexcase__content h3 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .indexcase__content h3 {
    margin-bottom: 20px;
  }
}

.indexcase__content p {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.575;
}

.indexcase__slider {
  margin: 0 -18px;
}

.indexcase__slider.slick-dotted {
  margin-bottom: 0;
}

.indexcase__slider .slick-prev {
  top: calc(100% + 60px);
  left: calc(50% - 40px);
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #bbbbbb;
}

.indexcase__slider .slick-prev::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -156px;
  background-repeat: no-repeat;
  opacity: 1;
}

@media (max-width: 991px) {
  .indexcase__slider .slick-prev {
    width: 25px;
    height: 25px;
    top: calc(100% + 20px);
    left: calc(50% - 35px);
  }
}

.indexcase__slider .slick-next {
  top: calc(100% + 60px);
  right: calc(50% - 40px);
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #bbbbbb;
}

.indexcase__slider .slick-next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: -10px -156px;
  background-repeat: no-repeat;
  opacity: 1;
}

@media (max-width: 991px) {
  .indexcase__slider .slick-next {
    width: 25px;
    height: 25px;
    top: calc(100% + 20px);
    right: calc(50% - 35px);
  }
}

.indexcase__slide {
  padding: 0 18px;
}

@media (max-width: 575px) {
  .indexcase__slide {
    padding: 0 5px;
  }
}

.indexcase__slide a {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.indexcase__slide a::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.pagetitle {
  position: relative;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pagetitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}

@media (min-width: 992px) {
  .pagetitle-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .pagetitle-pc {
    display: none;
  }
}

@media (max-width: 991px) {
  .pagetitle {
    height: 200px;
  }
}

.pagetitle h1 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 991px) {
  .pagetitle h1 {
    font-size: 32px;
  }
}

.company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .company {
    margin-bottom: 40px;
  }
}

.company__block {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .company__block:nth-child(n + 3) {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .company__block {
    width: 100%;
  }
  .company__block:nth-child(n + 2) {
    margin-top: 30px;
  }
}

.company__img {
  width: 43%;
}

@media (max-width: 991px) and (min-width: 576px) {
  .company__img {
    width: 35%;
  }
}

@media (max-width: 575px) {
  .company__img {
    width: 100%;
    text-align: center;
  }
}

.company__content {
  width: 57%;
  padding-left: 20px;
}

@media (max-width: 991px) and (min-width: 576px) {
  .company__content {
    width: 65%;
  }
}

@media (max-width: 575px) {
  .company__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0 0;
  }
}

.company__content .footer__contact-main a {
  color: #777;
}

.company__content .footer__contact-main p {
  color: #777;
  font-size: 15px;
  font-weight: 300;
}

.company__content .footer__contact-item:nth-child(n + 2) {
  margin-top: 18px;
}

.company__title {
  position: relative;
  color: #333;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}

.contact__titlebox {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .contact__titlebox {
    margin-bottom: 15px;
  }
  .company__title {
    text-align: center;
  }
}

.contact__title {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact__title-about {
  font-size: 20px;
}
@media (max-width: 991px) {
  .contact__title {
    font-size: 26px;
  }
  .contact__title-about {
    font-size: 20px;
  }
}

.contact__subtitle {
  max-width: 750px;
  color: #777;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.575;
  margin: 0 auto;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact__form-row {
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .contact__form-half {
    width: calc(50% - 13px);
  }
}

@media (max-width: 575px) {
  .contact__form-half {
    width: 100%;
  }
}

.contact__form-full {
  width: 100%;
}

.contact__form-input {
  width: 100%;
  height: 44px;
  display: block;
  font-family: 'Arimo', 'Noto Sans TC', '微軟正黑體';
  color: #555;
  font-size: 14px;
  font-weight: 300;
  padding: 0 15px;
  background-color: #f7f8f8;
  border: 1px solid #efefef;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__form-textarea {
  width: 100%;
  height: 142px;
  display: block;
  font-family: 'Arimo', 'Noto Sans TC', '微軟正黑體';
  color: #555;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 15px;
  background-color: #f7f8f8;
  border: 1px solid #efefef;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

.contact__form-btnbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .contact__form-btnbox {
    margin-top: 0;
  }
}

.contact__form-btn {
  display: block;
  width: 150px;
  color: #fff;
  font-size: 14px;
  line-height: 45px;
  text-align: center;
  background-color: #666;
  border-radius: 22.5px;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s;
}

.contact__form-btn:hover {
  background-color: #005ead;
}

.what {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .what {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .what {
    margin-bottom: 40px;
  }
}

.what__img {
  position: relative;
  padding-left: 86px;
}

.what__img img {
  width: 605px;
}

.what__titlebox {
  position: absolute;
  left: 0;
  top: 50%;
  width: 86px;
  height: 445px;
  background-color: #f9f9f9;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .what__titlebox {
    display: none;
  }

  .what__img {
    padding: 0;
  }

  .what__img img {
    width: 100%;
  }
}

.what__title {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #333;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(-50%, -50%);
  -ms-transform: rotate(-90deg) translate(-50%, -50%);
  transform: rotate(-90deg) translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.what__itembox {
  position: relative;
  z-index: 2;
  width: calc(100% - 601px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 25px;
  margin-left: -90px;
  background-color: #f9f9f9;
}

@media (max-width: 1199px) {
  .what__itembox {
    width: 100%;
    padding: 30px 20px;
    margin: 20px 0 0;
  }
}

@media (min-width: 576px) {
  .what__item {
    width: calc(50% - 8px);
  }
  .what__item:nth-child(n + 3) {
    margin-top: 45px;
  }
}

@media (max-width: 575px) {
  .what__item {
    width: 100%;
    text-align: center;
  }
  .what__item:nth-child(n + 2) {
    margin-top: 30px;
  }
}

.what__item-icon {
  display: inline-block;
  margin-bottom: 18px;
  height: 35px;
}
.what__item-icon img {
  height: 100%;
}


.what__item-title {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.what__item-text {
  color: #777;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.68;
}

.target__photos {
  margin-bottom: 50px;
}

.target__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.target__title {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}
.target__title:empty {
  display: none;
}
@media (max-width: 991px) {
  .target__title {
    margin-bottom: 15px;
  }
}

.target__text {
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.dashboard__item {
  width: 33.3333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 25px;
}

@media (min-width: 576px) {
  .dashboard__item:nth-child(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .dashboard__item:nth-child(3) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 575px) {
  .dashboard__item {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .dashboard__item:nth-child(n + 2) {
    margin-top: 20px;
  }
}

.dashboard__item .graph-outer {
  position: relative;
}

.dashboard__item .inner-text {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 100%;
  color: #f4665e;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

.dashboard__item .text {
  color: #555;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.575;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .dashboard__item .text {
    margin-top: 10px;
  }
}

.tabs {
  font-size: 0;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .tabs {
    margin-bottom: 25px;
  }
}

.tab {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 18px;
  line-height: 1.2;
}

.tab:nth-child(n + 2) {
  margin-left: 60px;
}

.tab--active:hover, .tab--active {
  color: #f4665e;
}

.news__itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .news__item {
    width: calc(33.33% - 20px);
    margin: 50px 30px 0 0;
  }
  .news__item:nth-child(-n + 3) {
    margin-top: 0;
  }
  .news__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1199px) and (min-width: 576px) {
  .news__item {
    width: calc((100% - 30px) / 2);
    margin: 30px 30px 0 0;
  }
  .news__item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .news__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .news__item {
    width: 100%;
  }
  .news__item:nth-child(n + 2) {
    margin-top: 20px;
  }
}

.news__item:hover .news__item-title {
  color: #f4665e;
}

.news__item-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news__item-img::before {
  content: '';
  display: block;
  padding-top: 84%;
}

.news__item-content {
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 40px 40px;
  margin: -50px auto 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .news__item-content {
    width: calc(100% - 20px);
    padding: 0 25px 25px;
    margin-top: -30px;
  }
}

.news__item-title {
  max-width: 100%;
  height: 1.2em;
  font-family: 'Noto Sans TC', '微軟正黑體';
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 22px;
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.news__item-type {
  position: relative;
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
  padding-left: 20px;
  margin-top: 16px;
}

.news__item-type::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 11px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -309px;
  background-repeat: no-repeat;
}

.news__item-text {
  max-height: 5.1em;
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  overflow: hidden;
  margin-top: 20px;
}

.date {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 15px;
  background-color: #f4665e;
}

.date .day {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.2;
}

.date .mon {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.paging {
  font-size: 0;
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .paging {
    margin-top: 30px;
  }
}

.paging__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #999;
  font-size: 15px;
  line-height: 1;
  background-color: #f1f3f1;
  border-radius: 50%;
}

.paging__btn:nth-child(n + 2) {
  margin-left: 10px;
}

.paging__btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: #f4665e;
}

.paging__btn:hover .paging__prev {
  background-position: 0 -328px;
}

.paging__btn:hover .paging__next {
  background-position: -8px -328px;
}

.paging__btn--active {
  color: rgba(255, 255, 255, 0.8);
  background-color: #f4665e;
}

.paging__prev {
  width: 8px;
  height: 8px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -320px;
  background-repeat: no-repeat;
}

.paging__next {
  width: 8px;
  height: 8px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: -8px -320px;
  background-repeat: no-repeat;
}

.detail__banner {
  text-align: center;
}

.detail__banner img {
  width: 100%;
  max-width: none;
}

.detail__main {
  min-height: 145px;
  width: calc(100% - 200px);
  position: relative;
  padding: 37px 115px 40px;
  margin: -145px auto 0;
  background-color: #fff;
  -webkit-box-shadow: 18px 18px 35px rgba(0, 0, 0, 0.05);
  box-shadow: 18px 18px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .detail__main {
    width: calc(100% - 40px);
    padding: 30px;
    margin-top: -50px;
  }
}

.detail__main .date {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

@media (max-width: 991px) {
  .detail__main .date {
    position: static;
    margin: 0 auto 20px;
  }
}

.detail__title {
  font-family: 'Noto Sans TC', '微軟正黑體';
  color: #333;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}

.detail__introduction {
  position: relative;
  padding: 10px 55px 10px 15px;
  margin: 35px 0;
  border-left: 5px solid #f4665e;
}

.detail__introduction::after {
  content: '';
  position: absolute;
  width: 27px;
  height: 24px;
  right: 0;
  top: calc(50% - 12px);
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -336px;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .detail__introduction {
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  .detail__introduction {
    padding: 10px;
  }
  .detail__introduction::after {
    display: none;
  }
}

.detail__introduction h3 {
  color: #555;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

@media (max-width: 991px) {
  .return {
    padding-top: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .return {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.return__btn {
  position: relative;
  display: block;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 38px;
  padding: 0 15px 0 27px;
  border: 1px solid #aaaaaa;
  border-radius: 20px;
}

.return__btn::before {
  content: '';
  position: absolute;
  left: 15px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -320px;
  background-repeat: no-repeat;
}

.return__btn:hover {
  color: #fff;
  background-color: #005ead;
  border-color: #005ead;
}

.return__btn:hover::before {
  background-position: 0px -328px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .social {
    margin-bottom: 15px;
  }
}

.social__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 18px;
}

.social__btn:nth-child(n + 2) {
  margin-left: 30px;
}

.social__btn-fb::before {
  content: '';
  display: block;
  width: 10px;
  height: 18px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -360px;
  background-repeat: no-repeat;
}

.social__btn-fb:hover::before {
  background-position: -10px -360px;
}

.social__btn-twitter::before {
  content: '';
  display: block;
  width: 22px;
  height: 18px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -378px;
  background-repeat: no-repeat;
}

.social__btn-twitter:hover::before {
  background-position: -22px -378px;
}

.social__btn-line::before {
  content: '';
  display: block;
  width: 19px;
  height: 18px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -396px;
  background-repeat: no-repeat;
}

.social__btn-line:hover::before {
  background-position: -19px -396px;
}

.solution__itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.solution__item {
  display: block;
}

.solution__item:hover .product__item-overlay {
  opacity: 1;
}

.solution__item:hover .solution__item-textbox h3 {
  color: #f4665e;
}

.solution__item:hover .solution__item-num {
  color: #f5c3bf;
}

@media (min-width: 1200px) {
  .solution__item {
    width: calc((99.999% - 60px) / 3);
    margin: 40px 30px 0 0;
  }
  .solution__item:nth-child(-n + 3) {
    margin-top: 0;
  }
  .solution__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 1199px) and (min-width: 576px) {
  .solution__item {
    width: calc((99.999% - 30px) / 2);
    margin: 30px 30px 0 0;
  }
  .solution__item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .solution__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .solution__item {
    width: 100%;
  }
  .solution__item:nth-child(n + 2) {
    margin-top: 20px;
  }
}

.solution__item-img {
  position: relative;
  width: calc(100% - 30px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.solution__item-img::before {
  content: '';
  display: block;
  padding-top: 68%;
}

@media (max-width: 575px) {
  .solution__item-img {
    width: 100%;
  }
}

.solution__item-content {
  position: relative;
  padding-left: 50px;
}

@media (max-width: 575px) {
  .solution__item-content {
    padding-left: 40px;
  }
}

.solution__item-num {
  position: absolute;
  left: 0;
  top: 86px;
  color: #c8dbed;
  font-size: 50px;
  line-height: 0.8;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

@media (max-width: 575px) {
  .solution__item-num {
    top: 60px;
    font-size: 36px;
  }
}

.solution__item-textbox {
  padding: 25px 30px;
  background-color: #fafafa;
}

@media (max-width: 575px) {
  .solution__item-textbox {
    padding: 20px;
  }
}

.solution__item-textbox h3 {
  max-height: 1.4em;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.solution__item-textbox p {
  max-height: 5.4em;
  color: #555;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  overflow: hidden;
  margin-top: 20px;
}

.solution__detail-title {
  position: relative;
  color: #333;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
}

.solution__detail .detail__main {
  width: 100%;
  padding: 60px;
  margin: 0;
}

@media (max-width: 991px) {
  .solution__detail .detail__main {
    padding: 30px;
  }
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.product__main {
  width: calc(100% - 300px);
  padding-right: 40px;
}

@media (max-width: 991px) {
  .product__main {
    width: 100%;
    padding: 30px 0 0;
  }
}

.product__itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product__item {
  display: block;
}

@media (min-width: 768px) {
  .product__item {
    width: calc(50% - 15px);
    margin: 30px 30px 0 0;
  }
  .product__item:nth-child(-n + 2) {
    margin-top: 0;
  }
  .product__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .product__item {
    width: 100%;
  }
  .product__item:nth-child(n + 2) {
    margin-top: 20px;
  }
}

.product__item:hover .product__item-overlay {
  opacity: 1;
}

.product__item:hover .product__item-title {
  color: #f4665e;
}

.product__item-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product__item-img::before {
  content: '';
  display: block;
  padding-top: 62.5%;
}

.product__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(231, 76, 60, 0.8);
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.product__item-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.product__item-icon::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -629px;
  background-repeat: no-repeat;
}

.product__item-title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.product__item-text {
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 8px;
}

.product__aside {
  width: 300px;
}

@media (max-width: 991px) {
  .product__aside {
    width: 100%;
  }
}

.aside__title {
  position: relative;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
}

.type__item:nth-child(n + 2) {
  margin-top: 25px;
}

.type__item--open .type__link {
  color: #f4665e;
}

.type__item--open .type__link-icon::before {
  background-color: #f4665e;
}

.type__item--open .type__link-icon::after {
  display: none;
}

.type__item--open .submenu {
  display: block;
}

.type__link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: center;

  width: 100%;
}

.type__link a {
  display: block;

  width: calc(100% - 20px);

  font-family: 'Noto Sans TC', '微軟正黑體';
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #333;

  -webkit-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s;
}

.type__link a:hover {
  color: #f4665e;
}

.type__link--active a:hover, .type__link--active a {
  color: #f4665e;
}

.type__link-icon {
  position: relative;

  display: block;

  width: 19px;

  cursor: pointer;
}

.type__link-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background-color: #999;
  border-radius: 0.5px;

  transform: translate(-50%, -50%);
}

.type__link-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 11px;
  background-color: #999;
  border-radius: 0.5px;

  transform: translate(-50%, -50%);
}

.submenu {
  display: none;
  padding: 15px 0 15px 17px;
  border-bottom: 1px solid #ddd;
}

.submenu__link {
  display: block;
  font-family: 'Noto Sans TC', '微軟正黑體';
  color: #999;
  font-size: 16px;
  line-height: 1.2;
}

.submenu__link:nth-child(n + 2) {
  margin-top: 15px;
}

.submenu__link--active, .submenu__link--active:hover {
  color: #f4665e;
}

.productinside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .productinside {
    margin-bottom: 60px;
  }
}

.productinside__img {
  width: 60%;
}

.productinside__img img {
  width: 100%;
  max-width: none;
}

@media (max-width: 991px) {
  .productinside__img {
    width: 100%;
  }
}

.productinside__info {
  width: 40%;
  padding-left: 40px;
}

@media (max-width: 991px) {
  .productinside__info {
    width: 100%;
    padding: 20px 0 0;
  }
}

@media (max-width: 767px) {
  .productinside__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.productinside__title {
  font-family: 'Noto Sans TC', '微軟正黑體';
  color: #333;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin: 10px 0 0;
}

.productinside__title + .news__item-type {
  font-size: 16px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .productinside__title + .news__item-type {
    margin-top: 20px;
  }
}

.productinside__textarea {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .productinside__textarea {
    margin-top: 15px;
  }
}

.productinside__textarea p {
  font-family: 'Noto Sans TC', '微軟正黑體';
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.productinside__download {
  position: relative;
  display: inline-block;
  color: #f4665e;
  font-size: 15px;
  line-height: 46px;
  padding: 0 56px 0 42px;
  margin-top: 60px;
  border: 1px solid #f4665e;
  border-radius: 24px;
}

.productinside__download::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 18px;
  top: calc(50% - 9px);
  left: 20px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -647px;
  background-repeat: no-repeat;
}

.productinside__download::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: 20px;
  background-image: url(../images/common/icons.png);
  background-size: 100px 750px;
  background-position: 0 -665px;
  background-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .productinside__download {
    margin-top: 20px;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.info__tabs {
  width: 265px;
}

@media (max-width: 767px) {
  .info__tabs {
    width: 100%;
    font-size: 0;
    text-align: center;
  }
}

.info__tab {
  position: relative;
  display: block;
  color: #999;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-transition: color .4s, border-color .4s;
  -o-transition: color .4s, border-color .4s;
  transition: color .4s, border-color .4s;

  z-index: 1;
}

.info__tab:nth-child(n + 2) {
  margin-top: -1px;
}

.info__tab:hover, .info__tab--active {
  color: #f4665e;
  border-color: #f4665e;
  z-index: 2;
}

@media (max-width: 767px) {
  .info__tab {
    display: inline-block;
    line-height: 40px;
    padding: 0 10px;
  }
  .info__tab:nth-child(n + 2) {
    margin-left: 10px;
  }
}

.info__main {
  width: calc(100% - 265px);
  padding-left: 50px;
}

@media (max-width: 767px) {
  .info__main {
    width: 100%;
    padding: 30px 0 0;
  }
}

.info__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

.info__content--open {
  height: auto;
  overflow: visible;
  opacity: 1;
}

.info__content-title {
  position: relative;
  color: #333;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 35px;
}

.pro {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .pro {
    margin-top: 30px;
  }
}
