/* CSS Document */
/*==【基本設定】==*/
body {
  font: 1em/1.331 Arial, 'Noto Sans TC', '微軟正黑體', sans-serif;
  overflow-x: hidden;
  font-display: swap;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--color-black);
}
* {
  box-sizing: border-box;
}
.title, b {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-weight: 500;
}
.mnav > ul > li > a, .mnav > ul > li > a.hv, *:focus:hover {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
.owl-dot, .owl-dot.active, .btn, .btn:hover, .slidemnav, .slidemnav.open, :hover::after::after {
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  -ms-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}
::-webkit-input-placeholder {
  color: #666;
}
::-moz-placeholder {
  color: #666;
}
:-ms-input-placeholder {
  color: #666;
}
option:disabled {
  color: #666;
}
::selection {
  background: var(--color-blue);
  color: #fff;
}
::-moz-selection {
  background: var(--color-blue);
  color: #fff;
}
a:focus, button:focus, select:focus {
  /* outline: 3px dashed #000 !important;*/
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
ul.ulli, .ulli > ul, .ulli > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inbox {
  max-width: 93.75em;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
/*-------------


header
----------*/
#header {
  z-index: 30;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
#header .inbox {
  background: var(--color-white);
  padding: 0px 50px 0px 50px;
  border-radius: 0 0 50px 50px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
#header .inbox .l {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
#header .inbox .r {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header .inbox .r .btn {
  letter-spacing: normal;
  padding-left: 15px;
}
/* Logo */
#header .logo {
  display: flex;
  align-items: center;
  padding: 0 3% 0 0;
}
#header .logo img {
  height: 85px;
}
/* Menu */
.mnav {
  padding: 0;
  display: flex;
  align-items: stretch;
  font-weight: 500;
}
.mnav > ul {
  display: flex;
  align-items: stretch;
}
.mnav > ul > li {
  display: flex;
  align-items: stretch;
  position: relative;
}
.mnav > ul > li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #efefef;
}
.mnav > ul > li:first-child::after {
  display: none;
}
.mnav > ul > li > a {
  display: flex;
  align-items: center;
  color: #333;
  padding: 15px 30px;
  flex-direction: column;
  position: relative;
  font-size: 1.25em;
}
.mnav > ul > li > a > .i_icon {
  margin: 0 0 10px;
  background-position: center top;
}
.mnav > ul > li.on > a, .mnav > ul > li.hv > a {
  color: var(--color-blue);
}
.mnav > ul > li.on:before {
  display: block;
}
.mnav > ul > li.on .i_icon {
  background-position: center bottom;
}
.subnav {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 20px 0 0;
  margin-top: -5px;
}
.subnav .sub_t:before {
  z-index: 1;
  content: '';
  width: 5px;
  height: 30px;
  background: var(--color-blue);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 10px;
}
.subnav .sub_t:after {
  top: -2px;
}
.subnav:before {
  top: 22px;
}
.subnav ul {
  min-width: 200px;
  background: var(--color-white);
  border-radius: 0 15px 15px 15px;
  padding: 15px 10px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
.subnav li {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  position: relative;
  padding: 1px 0;
}
.subnav li:last-of-type {
  border: none;
}
.subnav li a {
  color: #666;
  display: block;
  padding: 10px 10px;
}
.subnav li a:hover, .subnav li a:focus {
  color: var(--color-orange);
  background: #F2F2F2;
}
.subnav li.hassub > a {
  padding-right: 20px;
}
.subnav ul ul {
  display: none;
  position: absolute;
  left: 99%;
  top: 2px;
}
.hv .subnav {
  display: block;
}
.hv .subnav li.hassub.hv > a {
  color: var(--color-blue);
}
.hv .subnav li.hassub.hv > ul {
  display: block;
}
/* Phone Menu */
.slidemnav {
  display: flex;
}
.phone_menu {
  display: none;
  float: right;
}
.i_menu {
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
  border-radius: 15px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.i_menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 28px;
  background: var(--color-blue);
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  opacity: 1;
  left: 15px;
  text-indent: -99999px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.i_menu span:nth-child(1) {
  top: 16px;
}
.i_menu span:nth-child(2), .i_menu span:nth-child(3) {
  top: 28px;
}
.i_menu span:nth-child(4) {
  top: 40px;
}
.i_menu.open {
  background: var(--color-blue);
}
.i_menu.open span {
  background: var(--color-white);
}
.i_menu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.i_menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 40px;
  left: 10px;
  top: 29px;
}
.i_menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 40px;
  left: 10px;
  top: 29px;
}
.i_menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mbnav {
  margin: 0 20px 0 5px;
  position: relative;
  padding: 20px 0;
}
.mbhead {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 5px solid #ECEDF2;
  border-radius: 50%;
}
.mbhead img {
  width: 100%;
}
.mbhead:hover, .mbnav.hv .mbhead {
  border-color: var(--color-blue);
}
.mbnav ul {
  width: 150px;
}
.mbnav-l {
  display: none;
  padding: 0 15px 20px;
}
.mbnav-l > small {
  color: var(--color-white);
  display: flex;
  padding: 0 0 10px 10px;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--font-size20);
  padding: 10px 5px;
}
.mbnav-l .mbhead {
  margin: 0 10px 0 0;
  width: 40px;
  height: 40px;
}
.mbnav-l .btn {
  width: 100%;
  padding: 17px 20px 17px 20px;
  border-radius: 10px;
}
.mbnav-l .subnav {
  display: block;
}
#content {
  z-index: 10;
  padding: 130px 0 80px;
  position: relative;
}
/*----- Icon ----*/
.i_icon {
  display: inline-block;
  background: no-repeat scroll center;
  background-size: 100% auto;
  width: 25px;
  height: 25px;
}
/*----- Button -----*/
.c-btnWrap {
  padding: 20px 0 0;
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px 13px 20px;
  border-radius: 50px;
  position: relative;
}
.btn01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px 13px 20px;
  border-radius: 50px;
  position: relative;
}
.btn01 {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 15px 35px !important
}
.btn01:hover {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
}
.btn02 {
  text-align: center;
  font-size: var(--font-size16);
  min-width: 160px;
  padding: 10px 5px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .1);
  margin: 0 5px;
}
.btn02:hover {
  background: var(--color-orange);
  color: var(--color-white) !important;
  transform: translate(5px, 5px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, .1);
}
.btn_next {
  background: var(--color-blue);
  color: var(--color-white);
}
.btn_next:hover {
  background: var(--color-black);
}
.btn_prev {
  background: #eee;
  color: var(--color-black);
}
/* Main Content */
.maincont {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
.inpage .maincont {
  min-height: calc(100vh - 430px);
}
/* BOX */
.box01 {
  padding: 100px 0 0;
  position: relative;
}
.box01:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
}
.box01:first-child, .gopath + .box01 {
  padding-top: 10px;
}
.box01:first-child::before, .gopath + .box01:before {
  display: none;
}
.box01 .box_hd {
  text-align: center;
}
/*----主標題-----*/
.box_hd h2.title {
  position: relative;
  display: inline-block;
  padding: 0 10px 10px;
  margin: 0 auto;
  font-size: var(--font-size50);
}
.box01 .box_bd {
  padding: 0;
}
.box01 .box_hd + .box_bd {
  padding: 20px 0 0;
}
.bg01 .box_bd:before {
  left: -90px;
  top: 50px;
}
.bg01 .box_bd:after {
  right: -90px;
  bottom: 50px;
}
/* ---------

White detail


-------*/
.wbox {
  padding: 30px 15px;
  position: relative;
  margin: 0 20px 20px 0;
}
.wbox:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-black);
  border-radius: 20px;
}
.wbox:before {
  z-index: 2;
  left: 0;
  top: 0;
  background: var(--color-white);
}
.wbox .inwbox {
  position: relative;
  z-index: 3;
}
/* ------Tabbox ------*/
.tab_hd {
  position: relative;
  margin-bottom: -20px;
  z-index: 2;
  padding: 0 20px;
}
.tab_hd ul {
  display: flex;
}
.tab_hd li {
  padding: 0 8px 0 0;
}
.tab_hd ul li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  min-width: 120px;
  text-align: center;
  color: var(--color-black);
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 25px;
  font-size: var(--font-size20);
}
.tab_hd ul li a:hover {
  background: #efefef;
}
.tab_hd ul li.on a {
  background: var(--color-black);
  color: var(--color-white);
}
.tab_hd ul li.on a:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: var(--color-black) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.tab_bd {
  z-index: 1;
  position: relative;
}
.tab_bd .wbox {
  padding-top: 30px;
}
.wbox .tab_hd {
  margin: 10px 0 20px;
  padding: 0;
}
.tab_hd2 {
  display: flex;
  justify-content: center;
}
.tab_hd2 ul li a {
  min-width: 175px;
}
/* List prudct */
.listItem ul {
  display: flex;
  flex-wrap: wrap;
}
.listItem li {
  width: 31.33333%;
  margin: 10px 1%;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  overflow: visible;
}
.listItem li .imgtxt {
  display: block;
  border-radius: 15px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.listItem li .imgtxt .txtbox {
  padding: 3%;
  text-align: center
}
.listItem li .imgbox img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform ease-out .3s;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s
}
.listItem li .imgbox img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.listItem .tags {
  display: flex;
}
.imgbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #cecece;
  border: 1px solid #dce6f0;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5vw;
  height: 0;
  padding-top: 66.66%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  will-change: transform;
}
.imgbox .awardstag {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-org);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 0 0 10px 0;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}
.txtbox {
  padding: 15px;
}
.txtbox h2.iconh2 {
  position: relative;
}
.txtbox h2.iconh2:before {
  content: '';
  width: 50px;
  height: 5px;
  background: var(--color-blue);
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 5px;
}
.txtbox h3.title {
  font-size: var(--font-size20);
  padding: 0 0 10px;
}
.txtbox h4.title {
  font-size: var(--font-size16);
  padding: 0 0 10px;
}
.txtbox p {
  color: var(--color-grey);
}
.Txt h2, .Txt h3, .Txt h4, .Txt h5, .Txt h6 {
  color: var(--color-black);
}
.Txt a {
  word-break: break-all;
}
.tags a {
  color: var(--color-blue) !important;
  white-space: nowrap;
}
.tags a:hover {
  text-decoration: underline;
}
.active .tags {
  display: flex;
}
/*--------------


poruduct 內頁
----------*/
.card-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center
}
.card-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}
.card-wrapper .img-display {
  overflow: hidden;
}
.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.img-showcase img {
  min-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}
.img-select {
    display: flex;
    flex-wrap: wrap;
}
.img-item {
    margin-top: 0.3rem;
    margin-left: 0.3rem;
    width: 100px;
    border: #ddd solid 1px;
}
.img-item:nth-child(1), .img-item:nth-child(2), .img-item:nth-child(3) {
  margin-right: 0;
}
.img-item:hover {
  opacity: 0.8;
}
.product-content {
  padding: 2rem 1rem;
}
.product-title {
  font-size: 1.6em;
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
}
.product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}
.product-price span {
  font-weight: 400;
}
.last-price span {
  color: #f64749;
  text-decoration: line-through;
}
.new-price span {
  color: #256eff;
}
.product-detail h4 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 10px;
  clear: both;
}
.product-detail p {
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}
.purchase-info {
  margin: 1.5rem 0;
  display: block;
}
.purchase-info input, .purchase-info .btn {
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}
.purchase-info input {
  width: 60px;
}
.purchase-info .btn {
  cursor: pointer;
  color: var(--color-white);
}
.purchase-info .btn a {
  cursor: pointer;
  text-decoration: none;
  color: var(--color-white);
}
.purchase-info .btn:first-of-type {
  background: #256eff;
  letter-spacing: 1px;
}
.purchase-info .filebtn {
    background: #f64749;
    padding: 15px 40px;
    letter-spacing: 1px;
}
.purchase-info .btn:hover {
  opacity: 0.9;
  background: var(--color-black);
}
.social-links {
  display: flex;
  align-items: center;
}
/*------------social--------------------------------------------------------------------*/
.social-links {
  color: #777;
  display: flex;
  align-items: center;
  margin: 15px auto 10px auto
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  margin: 0 0.2rem;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s ease;
}
.social-links a:hover {
  transform: scale(1.05);
  border: none;
}
.social-links img {
  max-width: 24px;
  height: auto;
  text-align: center;
  margin: auto;
}
.fab-fb {
  position: relative;
  padding-top: 3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  background-color: #415ea2
}
.fab-line {
  position: relative;
  padding-top: 3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  background: #00c200
}
.fab-twitter {
  position: relative;
  padding-top: 3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  background: #55acee
}
.fab-share {
  position: relative;
  padding-top: 3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  background: #ff7f40
}
@media screen and (min-width: 992px) {
  .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
  .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-content {
    padding-top: 0;
  }
}
@media screen and (max-width:800px) {
  .img-item {
    margin: 0 5px;
    min-width: 80px;
    max-width: 80px;
  }
}
@media screen and (max-width:575px) {
  .img-item {
    min-width: 55px;
    max-width: 55px;
  }
}
/* ------
Inpage Banner
---------*/
#content.inpage {
  padding-top: 0;
}
#content.inpage .maincont {
  padding-top: 0;
}
.inpagebnr {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.inpagebnr img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.inpagebnr:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
}
/* Path----麵包屑 */
.gopath {
  padding: 20px 0 20px;
  margin: 0 0 10px 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.gopath .inbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute
}
.gopath span::before {
  content: "|";
  position: relative;
  padding-right: 10px;
}
.gopath span:first-child::before {
  content: "";
}
.gopath span:first-child {
  padding: 0;
}
.gopath span, .gopath span a {
  color: var(--color-grey);
  display: flex;
}
.gopath span a:hover {
  text-decoration: underline;
}
.gopath span {
  padding: 0 20px 0 20px
}
.gopath .i_icon {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-bottom: 5px
}
.gopath .i_home {
  background-image: url("../images/icon/house-black.png");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7
}
/* Txtbox */
.txtbox_hd {
  padding: 10px 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.txtbox_hd h3.title {
  font-size: var(--font-size30);
}
.txtinfo {
  padding: 5px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.txtinfo em, .txtinfo span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px 0 0;
}
.txtinfo .i_icon {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}
/* ------From------ */
.box01-s {
  max-widtH: 43.75em;
  margin: 0 auto 30px;
}
.mbbnr {
  height: 200px !important;
}
.formbox {
  padding: 0 15px;
  position: relative;
}
.tfbar {
  padding: 13px 5px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.tfbar:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-exam3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  margin: 0 auto;
}
.tfbar.on:after {
  width: 100%;
}
.tftitle {
  flex-basis: 110px;
  padding: 8px 0 0;
  position: relative;
  letter-spacing: normal;
}
.tftitle em {
  position: absolute;
  left: -10px;
  top: 5px;
  color: var(--color-org);
}
.tfbar .tfcont {
  flex: 1;
}
.tfbar .tfcont .readonly {
  padding: 8px;
}
.tfbar .tficon {
  position: relative;
  display: flex;
  align-items: center;
}
}
.tfbar input:focus {
  background: #f1f1f1;
}
.tfbar > a {
  color: var(--color-blue);
  margin: 8px 0 0 10px;
}
.tfbar a:hover {
  text-decoration: underline;
}
.tfbar small {
  letter-spacing: 0;
  font-size: var(--font-size14);
  display: block;
  padding: 2px 8px;
  color: var(--color-blue);
}
.tfbar .tf {
  background: #f9f9f9;
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 8px;
  line-height: 1.2;
  font-size: var(--font-size16);
}
.tfbar .tf[readonly] {
  opacity: 0.4;
  cursor: no-drop;
}
.tfbar .code {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.tfbar .code img {
  max-width: 100%;
}
.tfbar .code a, .tftxt a {
  color: var(--color-blue);
}
.tfbar .code .i_icon {
  width: 40px;
  background-size: auto 100%;
  text-indent: -9999px;
}
.formbtn {
  padding: 0 15px;
}
/* 表格 */
.col-contact {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
	margin: 15px auto;
	
}
.service-contents {
	color: var(--color-grey);
	box-sizing: border-box;
	font-size: var(--font-size16)
}
.service-contents a{
color: var(--color-grey);
}

.service-contents a:hover{
color: var(--color-orange2);
}
.service-info {
	display: flex;
	line-height: 1.5;

  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.service-icon {
  font-size: 24px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-orange);
	margin-bottom: 15px
}
.service-info .service-icon > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.service-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 30px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.service-info.link {
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 7px;
}

.service-info .link .service-contents *:last-child {
  margin-bottom: 0;
}

.service-info.link.active {
  position: relative;
  overflow: hidden;
}
.service-info.link.active .service-icon {
  color: #ffffff;
  text-align: center;
  margin: auto;
  background-color: var(--color-orange)
}


.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.control-label {
  position: relative;
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 15px;
  margin-top: 20px;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  display: inline-block;
  margin: 5px 0;
}
.form-col-6 {
  -ms-flex: 0 0 47%;
  flex: 0 0 47%;
  max-width: 47%;
  position: relative;
}
.form-control {
  font-size: var(--font-size16);
  letter-spacing: 1.2px;
  background: #fff;
  max-width: 100%;
  width: 100%;
  border: 1px solid #22222a;
}
/*Style Radio*/
.radio, .radio__label, .radio__label:after, .radio__label:before {
  box-sizing: border-box;
}
.radio__container:nth-child(1) {
  margin-top: 15px;
  padding-left: 15px;
}
.radio__container .radio-inline {
  display: inline-block;
  margin-right: 10px;
}
.radio__container .radio {
  display: inline;
  opacity: 0;
  width: 0;
  margin: 0;
  overflow: hidden;
  -webkit-appearance: none;
}
.radio__container .radio__label {
  display: inline-block;
  height: 50px;
  position: relative;
  padding: 15px 10px 15px 28px;
  cursor: pointer;
  vertical-align: bottom;
  transition: color 200ms ease;
}
.radio__container .radio__label:before, .radio__container .radio__label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: transform 200ms ease, border-color 200ms ease;
}
.radio__container .radio__label:before {
  left: 0;
  top: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid #dbdbdb;
}
.radio__container .radio__label:after {
  top: 20px;
  left: 5px;
  width: 10px;
  height: 10px;
  transform: scale(0);
  background-color: #3c91e6;
}
.radio__container .radio__label:hover {
  color: #3c91e6;
}
.radio__container .radio__label:hover:before {
  border-color: #fb872b;
}
.radio__container .radio:checked + .radio__label {
  color: rgba(0, 0, 0, 0.87);
}
.radio__container .radio:checked + .radio__label:before {
  border-color: #3c91e6;
}
.radio__container .radio:checked + .radio__label:after {
  transform: scale(1);
}
/*------------
	upload
	-----------*/
.file-upload {
  display: block;
  text-align: center;
  max-width: 70%;
  width: 70%;
  font-size: var(--font-size16);
  margin: 10px auto 10px auto
}
.file-upload .file-select {
  display: flex;
  border: 1px solid #22222a;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select .file-select-button {
  background: #34495e;
  color: #FFFFFF;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
  color: #666
}
.file-upload .file-select:hover {
  border-color: #34495e;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button {
  background: #dce4ec;
  color: var(--color-black);
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
.file-upload.active .file-select {
  border-color: #22222a;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
.file-upload .file-select input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}
.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: var(--color-orange);
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.file-uploadPs {
  line-height: 40px;
  text-align: left;
  font-size: 15px;
  padding: 8px 10px;
  display: block
}
.file-uploadPs a {
  /* display: block; */
  border-bottom: #3400e6 solid 1px;
  line-height: 30px;
}
.file-uploadPs a:hover {
  color: #ffa568;
  border-bottom: #ffa568 solid 1px;
}
@media screen and (max-width:768px) {
  .file-uploadPs {
    text-align: center;
  }
  .file-upload {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width:480px) {
  .file-upload .file-select {
    display: table;
    border: none;
    width: 100%;
    text-align: center
  }
  .file-upload .file-select .file-select-button {
    width: 100%;
    display: inline-block;
    margin: 0px auto;
    text-align: center;
    text-align: center;
  }
  .file-upload .file-select .file-select-name {
    width: 100%;
    border: #222 solid 1px;
  }
}
/*---------------

左側
--------------*/
.BoxWrap {
  display: flex;
  position: relative;
}
.box-left {
  flex-basis: 220px;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 2px solid #eee;
}
/*------pc aside------*/
.side_menu {
  border-radius: 20px;
  background: #eef8fc;
  display: block;
  padding: 20px 10px;
  -webkit-transition: width .6s;
  transition: width .6s;
  width: 100%;
  max-width: 100%;
  position: relative
}
.sideMenuList ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0
}
.sideMenuList li {
  width: 100%;
  display: block;
  cursor: pointer;
  list-style: none
}
.sideMenuList li > a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 5px;
  padding-bottom: 8px;
  padding-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .05em;
  color: #4c4c4c;
  background-image: linear-gradient(120deg, #bde1e5 0%, #bde1e5 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 88%;
  transition: background-size 0.25s ease-in;
}
.sideMenuList li a:hover {
  background-size: 100% 88%;
}
.sideMenuList li > a.arrow::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 7px;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.sideMenuList dl {
  padding-bottom: 12px;
}
.sideMenuList dl {
  display: none;
}
.sideMenuList dt {
  width: 100%;
  margin: auto;
  display: block;
}
.sideMenuList dt a {
  display: block;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #777;
  width: 100%;
  max-width: 100%;
  border-bottom: #ccc solid 1px
}
.sideMenuList li > a.arrow.open::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sideMenuList li > a:hover, .sideMenuList li > a.current {
  color: #af232b;
  border-color: #af232b;
}
.sideMenuList li > a.arrow.open {
  color: var(--color-blue);
  border-color: #ddd;
}
.sideMenuList dt a:hover {
  color: #527DCF
}
.sideMenuList dl {
  display: none;
  padding-bottom: 15px;
  width: 100%;
  max-width: 100%
}
ul.classLink {
  padding: 5px;
  display: block;
  position: relative;
}
ul.classLink li:hover > a, ul.classLink li > a.current {
  color: var(--color-blue);
  border-color: #bde1e5;
}
ul.classLink li .active {
  color: var(--color-blue);
}
ul.classLink li > dl {
  width: 100%;
  max-width: 100%;
  top: calc(100% + 0px);
  left: calc(50% - 65px);
}
.m_classLink {
  display: none;
}
@media (max-width: 830px) {
  .side_menu {
    background: transparent;
  }
  .classLink {
    display: none
  }
  ul.classLink {
    display: none;
  }
  .sideMenuList {
    display: none !important
  }
  .m_classLink {
    display: block;
    position: relative;
  }
  .sideMenuList li > a {
    margin-bottom: 0
  }
  ul.classLink li > dl {
    display: none
  }
  .m_classLink a.main {
    display: block;
    margin: 0 auto;
    font-size: 18px;
    color: var(--color-black);
    letter-spacing: 1px;
    padding: 12px 30px 12px 10px;
    background-color: #ffaf10;
    border: 1px solid rgba(204, 204, 204, 0.3);
    text-align: center;
    position: relative;
    font-style: normal;
    font-weight: 400
  }
  .m_classLink a.main :focus, .m_classLink a.main:hover {
    color: #222;
    cursor: pointer
  }
  .m_classLink a.main b {
    font-weight: 400;
    display: block;
    color: var(--color-white);
    z-index: 1;
    position: relative;
    text-align: center;
  }
  .m_classLink a.main i {
    display: block;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    cursor: pointer;
  }
  .fa-angle-down::before {
    font-style: normal;
    content: "+";
    color: #fff;
  }
  .m_classLink ul {
    padding: 0;
    list-style: none;
    display: none;
    background: #FFF;
    border: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .m_classLink ul li {
    padding: 0;
  }
  .m_classLink ul li a {
    font-weight: 500;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
    position: relative;
    display: block;
    padding: 10px;
    color: #333;
    letter-spacing: 1px;
    background: #fff;
    border-top: #ddd solid 1px
  }
  .m_classLink ul li a:hover {
    color: var(--color-blue);
  }
  .m_classLink dt {
    width: 100%;
    min-width: 100%;
    display: block
  }
  .m_classLink dl dt a {
    padding-left: 20px;
  }
  .m_classLink dl dt a:last-child {
    padding-left: 20px;
  }
  .m_classLink ul > dl dt {
    display: block;
  }
  .m_classLink ul > dl a, .m_classLink ul li a.current + dl a {
    display: block;
    margin: 0 auto 0 auto;
    letter-spacing: 0.5px;
    font-size: 16px;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .m_classLink ul li > dl a:hover, .m_classLink ul li a.current + dl a:hover, .m_classLink ul li a.current + dl a.current {
    background: #eff3f5;
    text-decoration: none;
    color: #0b318f
  }
  .m_classLink ul li :last-child {
    border-bottom: none
  }
  .m_classLink .arrow.open::before {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
  .m_classLink .arrow::before {
    content: '+';
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 18px;
    display: block;
    z-index: 1111;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #af232b
  }
  .m_classLink .arrow:hover:before {
    content: '-';
    font-size: 20px;
    color: #527DCF
  }
  .m_classLink .arrow.open::before {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
  .m_classLink dt {
    display: block
  }
  .m_classLink .active {
    color: #0b318f
  }
}
@media (min-width: 854px) {
  .m_classLink {
    display: none;
  }
}
/*---------------

右側
--------------*/
.box-right {
  flex: 1;
}
/*----次標題-----*/
.method__subtitle {
  text-align: left;
  border-bottom: 1px solid #d6d6d6;
  letter-spacing: 1px;
  line-height: 1.5;
  display: block;
  position: relative;
  text-shadow: -1px 0 1px #ccc;
  padding: 5px 0px 5px;
  margin: 0 10px 15px;
  font-size: var(--font-size30);
  color: var(--color-black)
}
.method__subtitle:before {
  content: '';
  width: 50px;
  height: 5px;
  background: var(--color-blue);
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 5px;
}
/* ------------------------

Background 

----------------*/
.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: -1;
}
.bg span {
  position: absolute;
  border-radius: 20%;
}
.bg .b1 {
  left: 30px;
  top: 650px;
  background: rgba(245, 158, 3, 0.5);
  width: 250px;
  height: 250px;
}
.bg .b1:before {
  right: -20px;
  bottom: -30px;
}
.bg .b2 {
  right: 10px;
  top: 50%;
  background: rgba(66, 185, 208, .5);
  width: 300px;
  height: 300px;
}
.bg .b2:before {
  left: -20px;
  top: -30px;
}
.bg .b3 {
  left: 10px;
  bottom: 10px;
  background: #dee4f0;
  width: 250px;
  height: 250px;
}
.bg .b3:before {
  left: 20px;
  bottom: -30px;
}
/* ---內頁---*/
#content.inpage2 {
  padding-bottom: 0;
}
#content.inpage2#content.inpage2 .maincont {
  padding: 0;
}
.wbox2 {
  padding: 30px 15px;
  position: relative;
  /* display: flex; */
  align-items: center;
  margin: 0 20px 20px 0;
  border-top: #ddd solid 1px;
}
.plist ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px 0 0;
}
.plist li {
  padding: 0 3%;
}
.logos {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
}
.logos span {
  padding: 5px 10px;
}
.logos span b {
  padding: 0 5px 0 0;
}
.logos img {
  max-width: 100%;
  max-height: 50px;
}
.anslist {
  color: #666;
  font-size: var(--font-size18);
}
.anslist li {
  padding: 2px 0;
  display: flex;
}
.anslist li .cktype {
  display: flex;
}
.anslist li p {
  flex: 1;
}
.anslist li .cktype input:checked + span + p {
  color: #4e7e10;
}
.prevnext {
  display: flex;
  justify-content: center;
}
.prevnext .btn {
  min-width: 150px;
  border: 0;
  margin: 2px 5px;
  font-size: var(--font-size20);
}
.test_cont {
  z-index: 1;
  opacity: 0;
  display: none;
}
.fadeout {
  display: block;
  position: absolute;
  top: 30px;
  -webkit-animation: slide-out-left 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-out-left 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.opening {
  display: block;
  z-index: 2;
  -webkit-animation: slide-in-right 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-in-right 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
    filter: blur(40px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
    filter: blur(40px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    filter: blur(0px);
  }
}
@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
    filter: blur(40px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
    filter: blur(40px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    filter: blur(0px);
  }
}
.ani_r .fadeout {
  -webkit-animation: slide-out-right 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-out-right 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.ani_r .opening {
  z-index: 2;
  -webkit-animation: slide-in-left 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: slide-in-left 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.rbox {
  flex: 6;
}
.footer {
  z-index: 20;
  text-align: center;
  padding: 70px 0 0;
  position: relative;
  margin-top: -70px;
}
.footer .logo img {
  height: 95px;
}

.footer .Enlogo img {
  height: 55px;
}
.footer .hd {
  background: var(--color-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  padding: 10px 0 30px;
  position: relative;
}
.ftinfo {
  padding: 20px 0 0;
}
/*--copyright menu ul li---*/
.ftnav {
  padding: 10px;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
.ftnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ftnav li {
  padding: 10px 10px;
  position: relative;
}
.ftnav li:last-child::after {
  display: none;
}
.ftnav li a {
  color: var(--color-black);
  display: inline-block;
  padding: 2px 0;
}
.ftnav li a:hover {
  color: var(--color-blue);
}
.cpright {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size14);
  justify-content: center;
  align-items: center;
}
/* form type */
select.seltype {
  font-size: var(--font-size16);
  width: 100%;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  display: inline-block;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em .5em;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.ratype span {
  webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ratype input:checked + span:after {
  background: var(--color-blue);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ckratype i {
  font-style: normal;
}
/* 動畫進場 --*/
.anibox {
  opacity: 0;
}
/* spmneu動畫進場 --*/
.already-visible {
  transform: translateY(0);
  animation: none;
  opacity: 1;
}
@media(max-width:1550px) {
  .inbox {
    width: 96%;
  }
  #header .inbox {
    padding: 5px 3%;
  }
}

@media(max-width:1280px) {
	.col-contact{    
		-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;}
	
	.col-contact {
   
		margin: 5px auto;}
	
	.service-info.link {
	background-color: #fff5ee
}

	
}
@media(max-width:1200px) {
  #header .inbox {
    border-radius: 0 0 25px 25px;
  }
  #header .logo {
    padding: 3px 2% 3px 0;
  }
  #header .logo img {
    height: 65px;
  }
  .maincont {
    width: auto;
    margin: 0 10px;
  }
  .mbnav {
    padding: 15px 0;
  }
  .mnav > ul > li > a {
    padding: 10px 15px;
  }
  .mnav > ul > li:before {
    left: 21px;
    top: 33px;
  }
  #content {
    padding: 115px 0 80px;
  }
  /*------pagerBanner----*/
  .inpagebnr {
    height: 350px;
  }
  .inpagebnr img {
    height: 350px;
  }
}
@media(max-width:1080px) {
  :root {
    --font-size50: 2.5em;
  }
  .maincont {
    padding: 40px 0;
  }
  .box01:before {
    background-size: 80% auto;
  }
  .gopath {
    flex-wrap: nowrap;
    overflow-y: auto;
    display: flex;
  }
  .gopath span {
    white-space: nowrap;
  }
}
@media(max-width:991px) {
  :root {
    --font-size50: 2.5em;
  }
  a:focus, button:focus, select:focus {
    outline: none !important;
  }
  #header, #content, .footer, body.fixed #header, body.fixed #content, body.fixed .footer {
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }
  #header .r .btn, #header .mbnav {
    display: none;
  }
  body.fixed {
    overflow: hidden;
  }
  body.fixed #header, body.fixed #content, body.fixed .footer {
    transform: translateX(-350px);
  }
  body.fixed .slidemnav {
    transform: translateX(350px);
  }
  .slidemnav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 350px;
    background: var(--color-black);
    flex-direction: column;
    overflow: auto;
    transform: translateX(350px);
  }
  .slidemnav .mnav {
    padding: 15px 15px;
    flex-direction: column;
  }
  .slidemnav .mnav > ul {
    flex-direction: column;
    justify-content: stretch;
    width: 100%;
  }
  .slidemnav .mnav > ul > li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #333;
    padding: 5px 0;
  }
  .mnav > ul > li:before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    width: 5px;
    height: 88%;
    background: var(--color-blue);
    border-radius: 5px;
    transform: rotate(0deg) translateY(-32px);
    transform-origin: left top;
  }
  .slidemnav .mnav > ul > li > a {
    font-size: var(--font-size20);
    color: var(--color-white);
    display: flex;
    border-radius: 3px;
    margin: 0;
    flex-direction: row;
    align-items: center;
    padding: 10px 8px;
  }
  .slidemnav .mnav > ul > li.on > a {
    color: var(--color-white);
  }
  .slidemnav .mnav > ul > li:after {
    display: none;
  }
  .slidemnav .mnav > ul > li > a > .i_icon {
    margin: 0 25px 0 0;
  }
  .slidemnav .subnav {
    position: static;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0 0 0 20px;
  }
  .slidemnav .subnav .sub_t {
    display: none;
  }
  .slidemnav .subnav:before {
    display: none;
  }
  .slidemnav .subnav li ul {
    position: initial;
    display: block;
    background: #333;
  }
  .slidemnav .subnav ul {
    width: auto;
    box-shadow: none;
    background: #2d2d2d;
    border-radius: 5px;
    padding: 5px;
  }
  .slidemnav .subnav ul li {
    border-color: rgba(255, 255, 255, .1);
  }
  .slidemnav .subnav ul li a {
    color: #ccc;
  }
  .slidemnav .subnav ul li a:hover {
    background: none;
    color: var(--color-orange);
  }
  .phone_menu {
    display: block;
  }
  .slidemnav.open {
    transform: translateX(0);
  }
  .ulli {
    left: 0;
    list-style: none;
    list-style-type: none;
  }
  #content {
    padding: 125px 0 80px;
    overflow: hidden;
  }
  .ftnav li {
    padding: 4px 10px;
  }
  .txtbox.Txt {
    padding: 0;
  }
  .Txt {
    font-size: var(--font-size16)
  }
  .mbnav-l {
    display: flex;
    flex-direction: column;
  }
  .box-left {
    flex-basis: 170px;
  }
  .wbox2 {
    margin-bottom: auto;
  }
}
@media(max-width:830px) {
  .BoxWrap {
    flex-direction: column;
  }
  .box-left {
    flex-basis: auto;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border: none;
    border-bottom: 2px solid var(--color-black);
  }
  .box-right {
    padding: 10px 0 0;
  }
  .gopath {
    margin: 0 0 30px;
  }
  .footer .logo img {
    width: 170px;
  }
  .test_topic {
    flex-direction: column;
    align-items: flex-start;
  }
  .test_topic em {
    flex-basis: auto;
  }
  .test_ans {
    padding: 25px 0;
  }
  .lrbox {
    flex-direction: column;
    padding: 0;
  }
  .lbox {
    margin: 15px 0 20px 0;
  }
  .listItem li {
    width: 48%;
    max-width: 48%;
  }
  .btn02 {
    padding: 5px 3px;
    min-width: 110px;
  }
}
@media(max-width:640px) {
  .form-col-6 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
  }
}
@media(max-width:575px) {
  body.fixed #header, body.fixed #content, body.fixed .footer {
    transform: translateX(-300px);
  }
  body.fixed .slidemnav {
    transform: translateX(300px);
  }
  .slidemnav {
    transform: translateX(300px);
    width: 300px;
  }
  .txtbox_hd {
    flex-direction: column;
  }
  .wbox {
    padding: 15px;
    margin-right: 5px;
  }
  .tab_hd ul li a {
    padding: 10px 20px;
  }
  .tablewrap.tb_big {
    overflow-x: auto;
    position: relative;
    padding-top: 20px;
  }
  .tablewrap.tb_big .tb01 {
    width: 800px;
  }
  .gopath {
    margin: 0 0 10px;
  }
  .method__subtitle {
    display: flex;
    justify-content: center;
  }
  .txtbox.Txt {
    font-size: var(--font-size18);
    letter-spacing: normal;
  }
  .inpagebnr {
    height: 250px;
  }
  .inpagebnr img {
    height: 250px;
  }
  .wbox2 .box_hd {
    flex-direction: column;
  }
  .wbox2 .box_hd .r {
    padding: 5px 0 10px 23px;
  }

	.service-info {
		display: block;}
}
@media(max-width:480px) {
  .tfbar {
    flex-direction: column;
    align-items: stretch;
  }
  .tftitle {
    flex-basis: auto;
    padding: 0;
  }
  .tab_hd ul {
    justify-content: center;
  }
  .lnav li a {
    padding: 13px 28px;
  }
  .lnav li.on a {
    padding: 13px 35px 13px 15px;
  }
}
@media(max-width:414px) {
  body.fixed #header, body.fixed #content, body.fixed .footer {
    transform: translateX(-270px);
    left: 40px;
  }
  body.fixed .slidemnav {
    transform: translateX(270px);
  }
  .i_menu.open {
    right: 30px
  }
  .mbnav-l .btn {
    width: 60%;
    max-width: 60%;
    margin: auto;
  }
}



.scroll-up-btn {
  width: 42px;
  height: 42px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  display:none;
  text-indent: -9999px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  
  color: transparent;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}


.scroll-up-btn::before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
	 border-radius: 100%;
    background: #e3eaed;

}

.scroll-up-btn::after {
    display: block;
    content: '';
    position: absolute;
    top: 16px;
    left: 14px;
    width: 15px;
    height: 15px;
    border-top: solid #222 1px;
    border-right: solid #222 1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*----------------------------------------------------------------------------------

	Loading

----------------------------------------------------------------------------------*/
.js-loading {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background-color: #F8F5EE;
  z-index: 501;
  display: table;
  text-align: center;
  -webkit-transition: opacity 1000ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -o-transition: opacity 1000ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  transition: opacity 1000ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -webkit-transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -o-transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02);
  transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02)
}

.js-loading.fadeout {
  opacity: 0
}
.js-loading-fig{
	  width: 180px;
	max-width:180px;
     margin: auto;

  transition: 0.6s ease-in-out;
text-align: center
}
.js-loading-inner {
  height:200px;
  display: table-cell;
  vertical-align: middle;
  opacity: 1;
  -webkit-transition: opacity 900ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -o-transition: opacity 900ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  transition: opacity 900ms cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -webkit-transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02);
  -o-transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02);
  transition-timing-function: cubic-bezier(0.655, -0.55, 0.465, 1.02)
}

.js-loading-txt {
    display: block;
    margin: 15px auto 0 auto;
    font-size: var(--font-size25);
    color: var(--color-orange);
    position: relative
}

.js-loading:after {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  background: #fff;
  position: absolute;
  margin-left: -150px;
  left: 50%;
  top: 33%;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: scale(0.01);
  -ms-transform: scale(0.01);
  transform: scale(0.01);
  -webkit-transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1)
}

body.loaded .js-loading-inner {
  opacity: 0
}

body.loaded .js-loading:after {
  -webkit-transform: scale(7, 7);
  -ms-transform: scale(7, 7);
  transform: scale(7, 7)
}

body.loaded .wrapper {
  opacity: 1
}

.warning_Txt {
    color: #F47378;
}