header.topHead {
  width: 100%;
  height: 90px;
  padding: 0;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  position: absolute;
  z-index: 10;
  background-color: #333333;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.13);
}
header.topHead::before {
  content: "";
  background-color: #c60909;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  header.topHead {
    position: fixed;
    height: 70px;
  }
}
@media screen and (max-width: 400px) {
  header.topHead {
    height: 44px;
  }
}
header.topHead button {
  padding: 0;
}
header.topHead .mbBtnNav {
  display: none;
  position: absolute;
  z-index: 6;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  background-color: #c60909;
  height: 70px;
  width: 70px;
  top: 0;
  right: 0;
}
header.topHead .mbBtnNav p {
  margin-top: 0.5em;
  width: 30px;
  float: right;
  position: relative;
  cursor: pointer;
  height: 20px;
}
header.topHead .mbBtnNav b {
  color: #fff;
  font-size: 12px;
}
header.topHead .mbBtnNav span {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  transition: all ease 0.35s;
}
header.topHead .mbBtnNav span:nth-of-type(1) {
  top: 0px;
}
header.topHead .mbBtnNav span:nth-of-type(2) {
  top: 8px;
}
header.topHead .mbBtnNav span:nth-of-type(3) {
  top: 16px;
}
@media screen and (max-width: 1200px) {
  header.topHead .mbBtnNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 400px) {
  header.topHead .mbBtnNav {
    height: 44px;
    width: 40px;
  }
  header.topHead .mbBtnNav p {
    margin-top: 0;
    width: 22px;
  }
  header.topHead .mbBtnNav b {
    display: none;
  }
}
header.topHead .mbBtnNav.btnOpen span:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}
header.topHead .mbBtnNav.btnOpen span:nth-of-type(2) {
  width: 0;
}
header.topHead .mbBtnNav.btnOpen span:nth-of-type(3) {
  top: 7px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 400px) {
  header.topHead .mbBtnNav.btnOpen p {
    width: 24px;
  }
}
header.topHead .logo {
  height: 100%;
  padding: 0 3%;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
header.topHead .logo img {
  width: auto;
  height: 80%;
  max-width: none;
  max-height: 49px;
}
@media screen and (max-width: 560px) {
  header.topHead .logo img {
    max-height: 36px;
  }
}
@media screen and (max-width: 400px) {
  header.topHead .logo img {
    max-height: 24px;
  }
}

.menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 1200px) {
  .menu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
  }
}

/*headerIconMenu*/
.headerIconMenu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-family: "Noto Sans TC", Arial, Helvetica;
}
.headerIconMenu .link {
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.headerIconMenu .link i {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .headerIconMenu .link i {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .headerIconMenu {
    margin-right: 80px;
    margin-top: 16px;
    border: none;
  }
}
@media screen and (max-width: 660px) {
  .headerIconMenu {
    margin-right: 80px;
  }
}
@media screen and (max-width: 400px) {
  .headerIconMenu {
    margin-right: 50px;
    margin-top: 0;
    padding-top: 4px;
    height: 100%;
  }
  .headerIconMenu .link {
    width: auto;
  }
  .headerIconMenu .link .btnOpen {
    padding: 0 0.3em;
    min-width: 2em;
  }
  .headerIconMenu .link i {
    width: 16px;
    height: 16px;
  }
}
.headerIconMenu .link.inquiry {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.3s;
}
.headerIconMenu .link.inquiry i {
  background: url("../images/iInquiry_w.png") 0 0 no-repeat;
  background-size: 100%;
}
.headerIconMenu .link.inquiry a {
  position: relative;
  padding: 0 0.4em;
}
.headerIconMenu .link.inquiry span {
  position: absolute;
  top: -16px;
  right: -4px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background-color: #c60909;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 11px;
  transition: all 0.25s ease 0s;
}
.headerIconMenu .link.inquiry:hover {
  transform: translateY(-8px);
}
@media screen and (max-width: 960px) {
  .headerIconMenu .link.inquiry:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 500px) {
  .headerIconMenu .link.inquiry {
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .headerIconMenu .link.inquiry {
    width: 36px;
    height: 36px;
  }
  .headerIconMenu .link.inquiry a {
    padding: 0 0.2em;
  }
  .headerIconMenu .link.inquiry span {
    right: -8px;
  }
}

.links_lang {position: relative; padding: 0 10px;transition: all 0.3s;}
.links_lang:hover {transform: translateY(-8px);}
.links_lang ul {position: absolute; top: 30px; left: 50%; width: 100px; margin-left: -50px; padding: 10px 0; background-color: #fff; display: none; z-index: 100; box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);}
.links_lang ul li {width: 100%; text-align: center; padding: 5px 0; margin: 1px 0;list-style: none;}
.links_lang ul li a{color: #333;}
.links_lang ul li:hover, .links_lang ul li.current {background-color: #c60909;}
.links_lang ul li:hover a, .links_lang ul li.current a {color:#fff;}

.headerIconMenu .link.serch {
  height: 42px;
}
.headerIconMenu .link.serch .btnOpen {
  background: none;
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.3s;
}
.headerIconMenu .link.serch .btnOpen i {
  background: url("../images/iSerch_w.png") 0 0 no-repeat;
  background-size: 100%;
}
.headerIconMenu .link.serch .btnOpen:hover {
  transform: translateY(-8px);
}
.headerIconMenu .link.serch .srBox {
  padding: 0.3em 0.5em;
  height: 30px;
  position: absolute;
  top: 0;
  z-index: 7;
  right: 40px;
  display: none;
}
.headerIconMenu .link.serch .srBox input {
  border: none;
  font-size: 16px;
  color: #333333;
  background: initial;
}
.headerIconMenu .link.serch .srBox .btnGoSerch {
  width: 40px;
  height: 40px;
  background-color: #c60909;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .headerIconMenu .link.serch {
    width: 42px;
    border: none;
    background: none;
  }
    
    .links_lang {position: relative;}
	.links_lang ul {position: absolute; top: 30px; left: 50%; width: 100px; margin-left: -50px; padding: 10px 0; background-color: #fff; display: none; z-index: 100; box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);}
	.links_lang ul li {width: 100%; text-align: center; padding: 5px 0; margin: 1px 0;list-style: none;}
	.links_lang ul li a{color: #333;}
	.links_lang ul li:hover, .links_lang ul li.current {background-color: #c60909;}
	.links_lang ul li:hover a, .links_lang ul li.current a {color:#fff;}
}
@media screen and (max-width: 960px) {
  .headerIconMenu .link.serch .btnOpen:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 500px) {
  .headerIconMenu .link.serch {
    width: 30px;
  }
  .headerIconMenu .link.serch .btnOpen {
    width: 30px;
    height: 36px;
  }
}
.headerIconMenu .link.serch.open .btnOpen {
  border: none;
  clip-path: none;
  position: absolute;
  z-index: 10;
  padding: 0;
  right: 10%;
  top: 40px;
  background-color: #ffffff;
}
.headerIconMenu .link.serch.open .btnOpen i {
  background: url("../images/iCancel_gy.png") 0 0 no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  position: initial;
}
.headerIconMenu .link.serch.open .srBox {
  position: absolute;
  border: none;
  z-index: 7;
  background-color: #fff;
  transition: all ease 0.35s;
  padding: 0.3em 0.5em;
  border-radius: 3px;
  display: none;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease 0s;
  top: 0;
  width: 100%;
  left: 0;
  height: 130px;
}
.headerIconMenu .link.serch.open .srBox input {
  width: 60vw;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 800px) {
  .headerIconMenu .link.serch.open .btnOpen {
    right: 3%;
  }
}
@media screen and (max-width: 500px) {
  .headerIconMenu .link.serch.open .srBox {
    height: 80px;
    justify-content: normal;
    padding: 0.3em 3%;
  }
  .headerIconMenu .link.serch.open .srBox input {
    max-width: calc(100% - 90px);
  }
  .headerIconMenu .link.serch.open .btnOpen {
    top: 18px;
  }
}

/*headerMenuList*/
.headerMenuList {
  width: auto;
  padding-left: 3%;
}
.headerMenuList ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.headerMenuList li.styleA, .headerMenuList li.styleB {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.headerMenuList li.styleA .link, .headerMenuList li.styleB .link {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  width: 100%;
  padding: 0 1em 72px;
  opacity: 0.8;
}
.headerMenuList li.styleA .link::after, .headerMenuList li.styleB .link::after {
  content: "";
  height: 3px;
  width: 0;
  background-color: #c60909;
  position: absolute;
  left: 0.5em;
  top: 40px;
  transition: all 0.5s ease 0s;
}
.headerMenuList li.styleA .link.current, .headerMenuList li.styleB .link.current {
  color: #c60909;
  font-weight: 700;
  opacity: 1;
}
.headerMenuList li.styleA .navMore, .headerMenuList li.styleB .navMore {
  display: none;
  width: 45px;
  height: 45px;
  background-image: url(../images/iArrowSty02_w.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  transform: rotate(90deg);
}
.headerMenuList li.styleA .navMore.btnOpen, .headerMenuList li.styleB .navMore.btnOpen {
  transform: rotate(-90deg);
}
.headerMenuList li.styleA:hover .link, .headerMenuList li.styleB:hover .link {
  color: #ffffff;
  opacity: 1;
}
.headerMenuList li.styleA:hover .link::after, .headerMenuList li.styleB:hover .link::after {
  width: calc( 100% - 1em );
}
.headerMenuList li.styleA:hover .link.current, .headerMenuList li.styleB:hover .link.current {
  color: #c60909;
  font-weight: 700;
  opacity: 1;
}
.headerMenuList li.styleA .submenu {
  display: none;
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  z-index: 5;
  width: 150px;
}
.headerMenuList li.styleA .submenu li a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: block;
  background-color: #333333;
  padding: 0.5em;
}
.headerMenuList li.styleA .submenu li > .submenu {
  display: none;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.headerMenuList li.styleA .submenu li:hover a {
  background-color: #c60909;
}
.headerMenuList li.styleA:hover .submenu {
  display: block;
}
.headerMenuList li.styleB {
  position: static;
}
.headerMenuList li.styleB .submenu {
  position: absolute;
  text-align: center;
  z-index: 5;
  transform: translateX(-50%);
  left: 50%;
  width: auto;
  max-width: 100%;
  top: 100%;
  display: none;
  background-color: #989c6e;
}
.headerMenuList li.styleB .submenu ul {
  display: block;
  width: 100%;
}
.headerMenuList li.styleB .submenu li {
  text-align: center;
  display: block;
  width: 100%;
}
.headerMenuList li.styleB .submenu li a {
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  padding: 0.5em;
  display: block;
  width: 100%;
}
.headerMenuList li.styleB .submenu li a:hover {
  color: #b2b686;
}
.headerMenuList li.styleB .submenu > li {
  width: 150px;
  display: block;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.headerMenuList li.styleB .submenu > li:first-of-type {
  padding-left: 0;
}
.headerMenuList li.styleB .submenu > li:last-of-type {
  border-right: none;
}
.headerMenuList li.styleB .submenu > li > a {
  min-height: 2.6em;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: block;
  padding: 0.5em;
  position: relative;
}
.headerMenuList li.styleB .submenu > li > a::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/iArrowSty02_w.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0.8em;
  top: 1em;
  transform: rotate(90deg);
}
.headerMenuList li.styleB .submenu > li:hover {
  background-color: #c60909;
}
.headerMenuList li.styleB:hover .submenu {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1600px) {
  .headerMenuList li.styleA .link, .headerMenuList li.styleB .link {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .headerMenuList {
    display: none;
    background-color: #333333;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 70px;
    padding-top: 0;
    padding-left: 0;
  }
  .headerMenuList ul {
    flex-direction: column;
    transform: translateY(0);
    transition: all 1s ease 0s;
  }
  .headerMenuList li.styleA, .headerMenuList li.styleA:hover, .headerMenuList li.styleB, .headerMenuList li.styleB:hover {
    border: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: relative;
  }
  .headerMenuList li.styleA .submenu, .headerMenuList li.styleA:hover .submenu, .headerMenuList li.styleB .submenu, .headerMenuList li.styleB:hover .submenu {
    position: relative;
    display: none;
    width: 100%;
    transform: translateX(0);
    top: 0;
    left: 0;
    text-align: left;
    box-shadow: none;
  }
  .headerMenuList li.styleA .submenu.open, .headerMenuList li.styleA:hover .submenu.open, .headerMenuList li.styleB .submenu.open, .headerMenuList li.styleB:hover .submenu.open {
    display: block;
    height: auto;
  }
  .headerMenuList li.styleA .link, .headerMenuList li.styleA:hover .link, .headerMenuList li.styleB .link, .headerMenuList li.styleB:hover .link {
    color: #ffffff;
    font-weight: 700;
    min-height: 40px;
    display: inline-block;
    padding: 0.5em 50px 0 3%;
    font-size: 20px;
  }
  .headerMenuList li.styleA .link::after, .headerMenuList li.styleA:hover .link::after, .headerMenuList li.styleB .link::after, .headerMenuList li.styleB:hover .link::after {
    display: none;
  }
  .headerMenuList li.styleA .navMore, .headerMenuList li.styleA:hover .navMore, .headerMenuList li.styleB .navMore, .headerMenuList li.styleB:hover .navMore {
    display: inline-block;
    transition: all 0.3s ease 0s;
  }
  .headerMenuList li.styleA .submenu li a, .headerMenuList li.styleA .submenu li a:hover {
    font-weight: normal;
    padding-left: calc(3% + 0.5em);
    background-color: #000;
  }
  .headerMenuList li.styleB .submenu {
    padding: 0;
  }
  .headerMenuList li.styleB .submenu ul {
    width: 100%;
  }
  .headerMenuList li.styleB .submenu > li, .headerMenuList li.styleB .submenu > li:hover {
    width: 100%;
    margin-bottom: 0;
    border-bottom: solid 1px #ccc;
    background-color: inherit;
    padding-bottom: 0.5em;
  }
  .headerMenuList li.styleB .submenu > li:last-child, .headerMenuList li.styleB .submenu > li:hover:last-child {
    border-bottom: none;
  }
  .headerMenuList li.styleB .submenu > li > a, .headerMenuList li.styleB .submenu > li > a:hover, .headerMenuList li.styleB .submenu > li:hover > a, .headerMenuList li.styleB .submenu > li:hover > a:hover {
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    border-bottom: none;
    margin-bottom: 0;
    background-color: #989c6e;
    font-weight: 500;
  }
  .headerMenuList li.styleB .submenu > li > a::before, .headerMenuList li.styleB .submenu > li > a:hover::before, .headerMenuList li.styleB .submenu > li:hover > a::before, .headerMenuList li.styleB .submenu > li:hover > a:hover::before {
    display: none;
  }
  .headerMenuList li.styleB .submenu li {
    padding-left: 0;
    background-color: inherit;
  }
  .headerMenuList li.styleB .submenu li a {
    padding-left: calc(3% + 0.5em);
    font-size: 18px;
    width: 100%;
  }
  .headerMenuList li.styleB .submenu li > ul > li a, .headerMenuList li.styleB .submenu li > ul > li a:hover {
    padding-left: 2.4em;
    display: inline-block;
    color: #ffffff;
    text-align: left;
  }
}
@media screen and (max-width: 400px) {
  .headerMenuList {
    top: 44px;
  }
}

/*headerBtnBox*/
.headerBtnBox .btn {
  font-family: "Noto Sans TC", Arial, Helvetica;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  height: 46px;
  line-height: 46px;
  padding: 0 16px;
  width: 150px;
  border-radius: 23px;
  box-sizing: border-box;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  background-color: #c60909;
  color: #ffffff;
  border: 0;
  outline: 0;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  -webkit-user-drag: none;
  transition: all 0.3s;
}
.headerBtnBox .btn:active, .headerBtnBox .btn:visited, .headerBtnBox .btn:focus {
  color: #ffffff;
}
.headerBtnBox .btn:hover {
  background-color: #989c6e;
}
@media screen and (max-width: 1600px) {
  .headerBtnBox .btn {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 8px;
    width: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .headerBtnBox {
    display: none;
  }
  .headerBtnBox .btn {
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    width: 180px;
  }
}

header.topHead.open {
  height: 100%;
  overflow-y: auto;
  z-index: 50;
}
header.topHead.open .menu {
  height: auto;
}
header.topHead.open .headerMenuList {
  position: relative;
  display: block;
  top: auto;
  margin-top: 70px;
}
@media screen and (max-width: 400px) {
  header.topHead.open .headerMenuList {
    margin-top: 44px;
  }
}
header.topHead.open .logo {
  position: absolute;
  left: 0;
  top: 11px;
  z-index: 1;
  height: auto;
}
@media screen and (max-width: 560px) {
  header.topHead.open .logo {
    top: 17px;
  }
}
@media screen and (max-width: 400px) {
  header.topHead.open .logo {
    top: 10px;
  }
}
header.topHead.open .headerIconMenu {
  position: absolute;
  right: 0;
  top: 2px;
  height: 40px;
}
header.topHead.open .headerBtnBox {
  clear: both;
  display: flex;
  padding: 1em 3%;
  justify-content: center;
}