@charset "UTF-8";

body {
	margin: 0;
  background-color: #f8f8f8;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans TC", sans-serif, Arial, sans-serif;
  }





/*========== spacer ==========*/
.header {
  width: 100%;
  height: 60px;
  background-color: #d70c18;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 60px;;
  }
}
.header__inner {
  width: 100%;
  height: 3.3125rem;
  padding-left: 0.625rem;
  padding-right: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 75rem;
    margin: 0 auto;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding-left: 40px;
    padding-right: 40px;
    height: 3.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .header__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 8.125rem;
  width: 100%;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    max-width: 9.6875rem;
    margin-left: 0;
  }
}
.header__logo > a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header .nav {
  background-color: #f6f6f6;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 3.3125rem;
  left: 0;
  padding-top: 3rem;
  overflow: auto;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 900;
}
@media screen and (min-width: 1024px) {
  .header .nav {
    background-color: transparent;
    width: auto;
    height: auto;
    overflow: visible;
    position: static;
    padding-top: 0;
    -webkit-transition: none;
    transition: none;
  }
}
.header .nav.is-closed {
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav.is-closed {
    visibility: visible;
    opacity: 1;
  }
}
.header .nav.is-closed .header__nav__list > li {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav.is-closed .header__nav__list > li {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.header .nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header .nav__list > li {
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  display: inline-block;
}
.header .nav__list > li:nth-child(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.header .nav__list > li:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.header .nav__list > li:nth-child(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.header .nav__list > li:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.header .nav__link {
  font-weight: var(--font-bold);
  color: #212121;
  font-size: 1.5rem;
  padding: 1.5rem 0.25rem;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .header .nav__link {
    color: #fff;
    font-size: 1rem;
    font-weight: var(--font-normal);
    padding: 1.25rem;
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link > span {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-property: color;
    transition-property: color;
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link > span::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #f9c4c4;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.25s cubic-bezier(1, 0, 0, 1);
    transition: all 0.25s cubic-bezier(1, 0, 0, 1);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.header .nav__link:hover {
  color: #212121;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .header .nav__link:hover {
    color: #f9c4c4;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link:hover > span:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.header {
  /* Change background header */
}
.header .burger {
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 0.625rem;
  width: 2.5rem;
  height: 3.3125rem;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .header .burger {
    display: none;
  }
}
.header .burger .burger__bar,
.header .burger .burger__bar::after,
.header .burger .burger__bar::before {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s 0.15s, left 0.1s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
  transition: top 0.2s 0.15s, left 0.1s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
  transition: top 0.2s 0.15s, left 0.1s, transform 0.2s, background-color 0.4s 0.15s;
  transition: top 0.2s 0.15s, left 0.1s, transform 0.2s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
}
.header .burger .burger__bar {
  width: 1.25rem;
  height: 2px;
  background-color: #fff;
  top: 1.625rem;
  left: 0.625rem;
}
.header .burger .burger__bar::after, .header .burger .burger__bar::before {
  content: "";
  width: 100%;
}
.header .burger .burger__bar::after {
  top: -7px;
  left: 0;
}
.header .burger .burger__bar::before {
  top: 7px;
  right: 0;
}
.header .burger.is-open .burger__bar,
.header .burger.is-open .burger__bar::after,
.header .burger.is-open .burger__bar::before {
  -webkit-transition: top 0.2s, left 0.2s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
  transition: top 0.2s, left 0.2s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
  transition: top 0.2s, left 0.2s, transform 0.2s 0.15s, background-color 0.2s;
  transition: top 0.2s, left 0.2s, transform 0.2s 0.15s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
}
.header .burger.is-open .burger__bar {
  background-color: initial;
}
.header .burger.is-open .burger__bar::after, .header .burger.is-open .burger__bar::before {
  width: 24px;
}
.header .burger.is-open .burger__bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  left: -2px;
}
.header .burger.is-open .burger__bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  right: -2px;
}
.header .burger.is-scroll {
  visibility: hidden;
  opacity: 0;
}
.header .burger.is-open.is-scroll {
  visibility: hidden;
  opacity: 0;
}
.header .scroll-header {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=header.css.map */



.company-contact_list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.company-contact_item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 100;
	padding: 0 17px 0 16px;
}
.company-contact_item:last-child {
	padding: 0 16px;
}
.company-contact_item::before {
	content: "";
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
.company-contact_item:last-child::before {
	content: none;
}


.unlock_body {
	width: 100%;
	background-image: url(../../images/kv.webp);
	background-repeat: no-repeat;
	background-position: 55% center;
	background-size: cover;
	-ms-background-size: cover;
	min-width: 900px;
	min-height: 780px;
}

main {
  /* min-height: calc(100vh - 100px); */
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 823px;
  margin-top: 60px;

}

.container {
	width: 780px;
	/* min-height: 819px; */
	margin-top: 60px;
	margin-left: 30%;
	/* margin-bottom: 2%; */
}

.keyimg, .keyimg_m {
	width: 100%;
	height: 250px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.key_bn {
	width: 600px;
	height: auto;
  padding-top: 60px;
}
.keyimg_m {
	display: none;
	height: auto;
}
.key_bn_m {
	width: 100%;
	/* height: auto; */
	padding-top: 60px;
}
.unlock_box ul {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
  padding-left: 10px;
}
.un_item {
	width: 180px;
	height: auto;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.un_icon {
	width: 100%;
	height: 150px;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center 8px;
}
.un_txt {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.un_txt h2 {
	display: block;
	width: 100%;
	height: 2.1em;
	line-height: 2.1em;
	color: #fff;
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: normal;
	background: #d8345e;
	text-align: center;
	border-radius: 10em;
}
.un_txt h3 {
	color: #333;
	font-size: .95em;
	line-height: 2em;
}
.unlock_1 .un_icon {
	background-image:url(../../images/unlock_01.png);
}
.unlock_2 .un_icon {
	background-image:url(../../images/unlock_02.png);
}
.unlock_3 .un_icon {
	background-image:url(../../images/unlock_03.png);
}
.unlock_4 .un_icon {
	background-image:url(../../images/unlock_04.png);
}
.unlock_2 .un_txt h2 { background-color: #1d5692}
.unlock_3 .un_txt h2 { background-color: #d97703}
.unlock_4 .un_txt h2 { background-color: #3E7A7F}

.note {
  width: 96%;
  color: #d70c18;
  font-size: 0.8rem;
  line-height: 1.6;
  /* padding: 24px 0 0 18px; */
  margin: 0 auto;
  list-style-type: none;
}
.note li {
	position: relative;
}
.note li::before {
	position: absolute;
	top: 0;
	left: -18px;
	content: '※';
}
/* .cis{
  font-size: 0.6em;
  color: #D0D0D0;
  padding-left: 20px;
  text-align: left;
  padding-bottom: 8px;
} */


@media (max-width: 1023px) {

 
	.unlock_body {
		background-image: none;
		min-width: auto;
		min-height: auto;
	}
	.container {
		width: 90%;
		padding-top: 2.5em;
		margin: 0 auto;
	}
	.keyimg, .key_bn {
		display: none;
	}
	.keyimg_m {
		display: flex;
		margin-bottom: 1em;
	}
	.unlock_box {
		width: 90%;
		margin: 0 auto;
	}
	.un_item {
		width: 180px;
	}
	.un_icon {
		height: 140px;
		background-size: 74%;
	}
	.note {
		padding-top: 2.5em;
	}

}
@media (max-width: 767px) {

	.company-contact_list {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: baseline;
	}
	.company-contact_item {
		font-weight: 300;
	}
	.company-contact_item, .company-contact_item:last-child {
		line-height: 1.7em;
		padding: 0 8px 0 0;
	}
	.company-contact_item::before {
		height: 18px;
	}
	.container {
		width: 100%;
		padding: 0.8em 1em;
	}
	.key_bn_m {
		width: 100%;
	}
	.unlock_box {
		width: 96%;
	}
	.unlock_box ul {
		position: relative;
		flex-wrap: wrap;
		justify-content: center;
    
	}
	.un_item {
		position: relative;
		width: 100%;
		padding: 1.4em 0;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-items: center;
	}
	.unlock_box ul::before, .un_item::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 0.05em;
		background: #f8f8f8;
	}
	
	.un_icon {
		width: 36%;
		height: 10em;
		background-size: contain;
		background-position: center center;
	}
	.un_txt {
		width: 50%;
	}
	.un_item h2 {
		font-size: 2em;
		height: 2.4em;
		line-height: 2.4em;
	}
	.un_txt h3 {
		font-size: 1.5em;
		line-height: 2.4em;
	}

	.note {
		padding-top: 2em;
		padding-bottom: 2em;
	}
	
	/* .cis{
	font-size: 1rem;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
} */
}
@media (max-width: 639px) {
	.un_icon {
		width: 34%;
		height: 8em;
	}
	.un_txt {
		width: 56%;
	}
	.un_item h2 {
		font-size: 1.25em;
		height: 2.2em;
		line-height: 2.2em;
	}
	.un_txt h3 {
		font-size: 1em;
		line-height: 2.2em;
		letter-spacing: -0.02em;
	}
}
@media (max-width: 320px) {
	.un_icon {
		width: 32%;
		height: 5.4em;
	}
	.un_item h2 {
		font-size: 1em;
		height: 2em;
		line-height: 2em;
	}
	.un_txt h3 {
		font-size: .95em;
	}
}



.cis {
	/* width: 100%; */
	/* background: white; */
	font-size: 0.6em;
	color: #D0D0D0;
	padding-left: 20px;
	text-align: left;
	padding-bottom: 8px;
  }




.footer {
    font-family: "微軟正黑體", "Microsoft JhengHe", "Helvetica Neue", Helvetica, sans-serif, serif;
    font-size: 0.75rem;
    color: #333333;
  }
  .footer .footer__inner {
    max-width: 75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .footer__info {
    background-color: #ededed;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .footer .footer__info .footer__inner {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0.25rem;
  }
  @media screen and (min-width: 768px) {
    .footer .footer__info .footer__inner {
      row-gap: 0.625rem;
    }
  }
  .footer .footer__info .footer__inner > span {
    text-align: center;
    line-height: 1.2;
    width: 100%;
    line-height: 1.2;
    padding-left: 6px;
    padding-right: 6px;
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .footer .footer__info .footer__inner > span {
      width: auto;
    }
  }
  @media screen and (min-width: 768px) {
    .footer .footer__info .footer__inner > span:not(:first-child)::before {
      content: "";
      -webkit-transform: scaleX(1.105) rotate(30deg);
              transform: scaleX(1.105) rotate(30deg);
      width: 1px;
      height: 12px;
      background-color: #333;
      position: absolute;
      top: 2px;
      left: -1px;
      bottom: 0;
      margin: auto 0;
    }
  }
  .footer .footer__copyright {
    background-color: #d70c18;
  }
  @media screen and (min-width: 1024px) {
    .footer .footer__copyright {
      background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #D70C18), color-stop(51%, #D9D9D9));
      background-image: linear-gradient(90deg, #D70C18 50%, #D9D9D9 51%);
    }
  }
  .footer .footer__copyright .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 1.5625rem;
    line-height: 13px;
  }
  @media screen and (min-width: 768px) {
    .footer .footer__copyright .footer__inner {
      height: 2.1875rem;
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  @media screen and (min-width: 1024px) {
    .footer .footer__copyright .footer__inner {
      height: 3.5rem;
      padding-left: 0px;
      padding-right: 0px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
    }
  }
  .footer .footer__copyright__text {
    color: #fff;
    text-align: center;
  }
  @media screen and (min-width: 1024px) {
    .footer .footer__copyright__text {
      width: 74.75%;
      height: 3.5rem;
      background-color: #d70c18;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-column-gap: 0.25rem;
         -moz-column-gap: 0.25rem;
              column-gap: 0.25rem;
      padding-left: 1.25rem;
    }
  }
  .footer .footer__copyright__logo {
    display: none;
  }
  @media screen and (min-width: 1024px) {
    .footer .footer__copyright__logo {
      display: inline-block;
      width: 25.25%;
      padding-left: 1.5625rem;
      height: 1.3125rem;
    }
  }
  @media screen and (min-width: 1024px) {
    .footer .footer__copyright__logo img {
      height: 1.3125rem;
    }
  }
  .footer .copyright__eng {
    display: none;
  }
  @media screen and (min-width: 1024px) {
    .footer .copyright__eng {
      display: inline-block;
    }
  }
  
  .pageTop {
    position: fixed;
    right: 10px;
    bottom: -50px;
    z-index: 900;
    -webkit-transition: bottom 0.4s ease;
    transition: bottom 0.4s ease;
    display: none;
  }
  .pageTop__icon {
    font-size: 2rem;
    color: #fff;
  }
  .pageTop > a {
    background-color: #000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.5;
    text-decoration: none;
  }
  .pageTop > a:hover {
    opacity: 1;
    text-decoration: none;
  }
  .pageTop > a:hover i {
    text-decoration: none;
  }
  .pageTop-active .pageTop {
    bottom: 5rem;
  }/*# sourceMappingURL=footer.css.map */