@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
/*-------------------------------------------*\
	_common.scss

  Index
  - 1.title
  - 2.more
  - 3.img-slide
  - 4.anmiate
\*-------------------------------------------*/
.id-box {
  position: relative;
  padding: 1.25rem 0;
  margin: 2rem 0;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: space-between;
}
.id-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #00397b 0%, #4070cb 25%, #589de4 70%);
}
.id-box.bd-white:before {
  background: #fff;
}
.id-title {
  position: relative;
  z-index: 5;
  color: #807979;
  font-weight: bolder;
  font-family: "Kosugi Maru", "Noto Sans TC", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
}
.id-title-xl {
  display: none;
}
.id-title h2 {
  margin-right: 1rem;
  line-height: 0;
}
.id-title span {
  position: absolute;
  top: -1.5rem;
  left: 0;
}
.id-title-icon {
  min-width: 1.5rem;
  margin-right: 5px;
}
.id-more {
  min-width: 60px;
  font-family: "Kosugi Maru", "Noto Sans TC", "Arial", "Helvetica Neue", Helvetica, sans-serif;
}
.id-more a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 3px;
}

@media (min-width: 1200px) {
  .id-title h2 {
    margin-right: 1.75rem;
  }
  .id-title-xl {
    display: flex;
  }
  .id-title-xs {
    display: none;
  }
  .id-more a {
    align-items: center;
    padding: 0;
  }
  .id-more a:hover, .id-more a:focus {
    padding-right: 10px;
  }
}
.more-btn {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.more-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  background: #589de4;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
}
.more-btn a:before {
  background: #cbaa40;
  transition: all 0.75s ease-in-out;
}
.more-btn a:after {
  background: #001a4b;
  transition: all 0.5s ease-in-out;
}
.more-btn a span {
  position: relative;
  z-index: 1;
  min-width: 175px;
  padding: 1rem 0;
  text-align: center;
}
.more-btn a span:before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../../images/more-icon.svg) no-repeat center center/cover #fff;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 374px) {
  .more-btn a span {
    min-width: 220px;
    padding: 1.25rem 0;
  }
  .more-btn a span:before {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  }
}
@media (min-width: 1200px) {
  .more-btn a span {
    min-width: 290px;
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .more-btn a span:before {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
  }
}
@media (min-width: 1400px) {
  .more-btn a span {
    min-width: 340px;
  }
}
.more-btn a:hover span {
  color: #cbaa40;
}
.more-btn a:hover span:before {
  background-color: #cbaa40;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:before {
  clip-path: inset(0 0 0 0);
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:after {
  clip-path: inset(0 0 0 0);
  transition: all 0.75s ease-in-out;
}

.color-reverse a {
  border: 1px solid #fff;
}
.color-reverse a:before {
  background: #cbaa40;
}
.color-reverse a:after {
  background: #fff;
}
.color-reverse a span {
  color: #fff;
}
.color-reverse a span:before {
  background: #fff;
}
.color-reverse a span:after {
  border-top: 2px solid #589de4;
  border-right: 2px solid #589de4;
}
.color-reverse a:hover span {
  color: #589de4;
}

.slide-img {
  position: relative;
}
.slide-img:before, .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.slide-img:before {
  background: #cbaa40;
  z-index: 1;
}
.slide-img:after {
  background: #589de4;
  z-index: 2;
}
.slide-img.active:before {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
  animation-fill-mode: both;
}
.slide-img.active:after {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
  animation-fill-mode: both;
}

@keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes clipInLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
  }
}
.clipInLeft {
  animation-name: clipInLeft;
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
  }
}
.before-clip:before, .before-clip:after {
  animation: clipInTop 1s ease-in-out 0.5s forwards;
}

/*-------------------------------------------*\
	_banner
\*-------------------------------------------*/
.banner-wrap {
  position: relative;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.banner-size:before {
  padding-top: 130%;
}
@media (min-width: 1200px) {
  .banner-size:before {
    padding-top: 56.25%;
  }
}
.banner-slogan-xl, .banner-slogan-xs, .banner-mask-xl, .banner-mask-xs {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.banner-slogan-xl, .banner-mask-xl {
  opacity: 0;
}
.banner-owl .owl-dots {
  opacity: 0;
  top: 68%;
  text-align: right !important;
  width: calc(100% - 220px) !important;
}
.banner-owl .owl-dots .owl-dot span {
  outline: 1px solid #fff;
}

@media (min-width: 576px) {
  .banner-slogan-xs {
    max-width: 70% !important;
    left: 16% !important;
  }
}
@media (min-width: 1200px) {
  .banner-slogan-xl, .banner-mask-xl {
    opacity: 1;
  }
  .banner-slogan-xs, .banner-mask-xs {
    opacity: 0;
  }
  .banner-owl .owl-dots {
    opacity: 1;
  }
  .banner-wrap {
    height: 100%;
  }
  .banner-wrap:before, .banner-wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
  }
  .banner-wrap:before {
    width: 29px;
    height: 101px;
    background: url(../../images/scroll-icon.svg) no-repeat center center/contain;
    left: calc(50% - 14px);
    top: calc(73% - 40px);
  }
  .banner-wrap:after {
    left: 50%;
    top: 73%;
    height: 42px;
    width: 1px;
    background: #fff;
    animation: mouseicon 3s linear 0.2s infinite;
  }
}
@media (min-width: 1400px) {
  .banner-wrap:before {
    top: calc(75% - 40px);
  }
  .banner-wrap:after {
    top: 75%;
  }
}
@keyframes mouseicon {
  0% {
    opacity: 0.5;
    transform: translateY(0%);
    clip-path: inset(0 0 100% 0);
  }
  50% {
    opacity: 1;
    transform: translateY(20%);
    clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 0.5;
    transform: translateY(40%);
    clip-path: inset(100% 0 0 0);
  }
}
@keyframes clipInTop {
  0% {
    opacity: 0;
    transform: translateY(-15%);
    clip-path: inset(0 0 100% 0);
  }
  99% {
    opacity: 1;
    transform: translateY(0%);
    clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    clip-path: none;
  }
}
@keyframes clipInRight {
  0% {
    opacity: 0;
    transform: translateX(25%);
    clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    transform: translateX(0%);
    clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
    clip-path: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------------------*\
	_about.scss
\*-------------------------------------------*/
.at-toua {
  margin: -3rem 0 3rem;
  color: #333333;
}
.at-toua .container {
  padding: 0 2rem;
}
.at-desc {
  line-height: 2;
}
.at-img {
  margin: 1.5rem 0 2.5rem;
  box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.2), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
.at-img img {
  width: 100%;
}
.at-point {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.at-point-ct {
  display: flex;
  justify-content: space-between;
  max-width: 476px;
}
.at-point-icon {
  margin-bottom: 1rem;
  box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.2), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
.at-point-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  flex-shrink: 0;
}
.at-point-item:nth-child(2) {
  margin: 0 15px;
}
.at-point-text {
  display: flex;
  justify-content: center;
  height: 2.5rem;
  line-height: 1.2;
  text-align: center;
  font-size: 0.95rem;
}
.at-point-text br {
  display: none;
}
@media (min-width: 576px) {
  .at-point-text br {
    display: inline-block;
  }
}
.at-text {
  max-width: 476px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .at-toua {
    margin: -3rem 0 5rem;
  }
  .at-content {
    display: flex;
    flex-direction: row-reverse;
  }
  .at-img {
    margin: 2rem 0 2rem 2rem;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.2);
  }
  .at-point {
    display: flex;
    align-items: center;
    min-width: 450px;
  }
}
@media (min-width: 1400px) {
  .at-point-item:nth-child(2) {
    margin: 0 25px;
  }
  .at-point-text {
    font-size: 1.1rem;
  }
  .at-text {
    font-size: 1.1rem;
  }
  .at-img {
    margin: 2rem 0 2rem 3.5rem;
  }
}
/*-------------------------------------------*\
	_info.scss 特殊客製功能，勿隨意更改
\*-------------------------------------------*/
.ta-info-wrap {
  margin: -2rem 0 0rem;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .ta-info-wrap {
    margin: 0 0 8rem;
  }
}
.ta-info-title .container {
  padding: 0 2rem;
}
.ta-info-content {
  width: 100%;
  padding: 0 0.5rem;
}
@media (min-width: 576px) {
  .ta-info-content {
    width: calc(476px + 5rem + 40px);
    padding: 0 2.25rem;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .ta-info-content {
    width: calc(656px + 5rem + 40px);
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .ta-info-content {
    width: calc(896px + 5rem + 40px);
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .ta-info-content {
    padding: 0 2rem;
    width: calc(1136px + 4rem);
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .ta-info-content {
    width: calc(1236px + 4rem + 60px);
  }
}
@media (min-width: 1600px) {
  .ta-info-content {
    width: 100%;
    margin-left: calc(50% - 704px - 30px - 2rem);
  }
}
@media (min-width: 1800px) {
  .ta-info-content {
    margin-left: calc(50% - 766px);
  }
}
.ta-info-size:before {
  padding-top: 75%;
}
.ta-info-owl .item {
  padding: 50px 20px;
}
@media (min-width: 1400px) {
  .ta-info-owl .item {
    padding: 50px 30px;
  }
}
.ta-info-owl .item a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  outline: 4px solid transparent;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
@media (min-width: 1200px) {
  .ta-info-owl .item a:hover, .ta-info-owl .item a:focus {
    outline: 4px solid #589de4;
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.4), -10px -10px 15px rgba(255, 255, 255, 0.75);
  }
}
.ta-info-owl .item a:hover p, .ta-info-owl .item a:focus p {
  color: #589de4;
}
.ta-info-owl .item a:hover img, .ta-info-owl .item a:focus img {
  transform: scale(1.2);
}
.ta-info-owl .owl-nav {
  top: calc(50% - 5px) !important;
}
@media (min-width: 1600px) {
  .ta-info-owl .owl-nav {
    width: 1466px !important;
  }
}
.ta-info-owl .owl-nav.disabled {
  display: flex !important;
}
.ta-info-owl .owl-nav [class*=owl-] {
  background: url(../../images/owl-prev.svg) no-repeat center center #7a7a7d !important;
  background-size: contain !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.ta-info-owl .owl-nav [class*=owl-]:hover {
  background-color: #589de4 !important;
  background-size: contain !important;
}
.ta-info-owl .owl-nav .owl-prev {
  left: 0.25rem;
}
.ta-info-owl .owl-nav .owl-prev:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.ta-info-owl .owl-nav .owl-next {
  right: 0.25rem;
}
.ta-info-owl .owl-nav .owl-next:hover {
  box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.5);
}
@media (min-width: 576px) {
  .ta-info-owl .owl-nav .owl-prev {
    left: -0.5rem;
  }
  .ta-info-owl .owl-nav .owl-next {
    right: -0.5rem;
  }
}
@media (min-width: 1400px) {
  .ta-info-owl .owl-nav .owl-prev {
    left: -2.5rem;
  }
  .ta-info-owl .owl-nav .owl-next {
    right: -2.5rem;
  }
}
@media (min-width: 1800px) {
  .ta-info-owl .owl-nav .owl-prev {
    left: -4.25rem;
  }
  .ta-info-owl .owl-nav .owl-next {
    right: -4.25rem;
  }
}
.ta-info-owl .owl-dots {
  bottom: 0 !important;
}
@media (min-width: 1200px) {
  .ta-info-owl .owl-dots {
    opacity: 0;
  }
}
.ta-info-owl .owl-dots .owl-dot.active span, .ta-info-owl .owl-dots .owl-dot:hover span {
  background: #589de4 !important;
}
.ta-info-data {
  margin-top: 1rem;
  line-height: 1.2;
}
.ta-info-data strong, .ta-info-data p, .ta-info-data span {
  display: flex;
  margin: 10px 0;
  font-weight: normal;
  color: #333333;
}
.ta-info-data strong {
  position: relative;
  justify-content: space-between;
  align-items: center;
  color: #589de4;
}
.ta-info-data strong:after {
  content: "";
  width: calc(100% - 3em);
  border-top: 1px solid #589de4;
}
.ta-info-data span {
  justify-content: end;
  font-style: italic;
  padding-right: 5px;
}
.ta-info-data p {
  height: 2.45rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 1200px) {
  .ta-info-data p {
    height: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .ta-info-data p, .ta-info-data span {
    font-size: 1.1rem;
  }
}

/*-------------------------------------------*\
	_event.scss
\*-------------------------------------------*/
.ta-event-all {
  position: relative;
  background: url(../../images/event-bg.svg) no-repeat center top -200px;
  overflow: hidden;
  padding: 2rem 0 5rem;
}
.ta-event-all:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 28%;
  width: 100%;
  height: 100%;
  background: #589de4;
}
@media (min-width: 576px) {
  .ta-event-all {
    background: url(../../images/event-bg.svg) no-repeat center top;
  }
}
@media (min-width: 768px) {
  .ta-event-all {
    background: url(../../images/event-bg.svg) no-repeat center top 100px;
  }
}
@media (min-width: 992px) {
  .ta-event-all {
    padding: 2rem 0 8rem;
    background: url(../../images/event-bg.svg) no-repeat center center;
  }
  .ta-event-all:after {
    top: 80%;
  }
}
.ta-event-all .container {
  padding: 0 2rem;
}

.ta-event-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (min-width: 992px) {
  .ta-event-wrap {
    margin: 0 -20px;
    flex-direction: row;
  }
}
.ta-event-item {
  display: flex;
  flex-direction: column;
  width: calc(100% - 20px);
  padding: 10px;
  margin: 20px 10px;
  background: #f7f7f7;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
.ta-event-item:hover, .ta-event-item:focus {
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
.ta-event-item:hover p, .ta-event-item:focus p {
  color: #589de4;
}
.ta-event-item:hover img, .ta-event-item:focus img {
  transform: scale(1.1);
}
@media (min-width: 576px) {
  .ta-event-item {
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .ta-event-item {
    margin: 20px;
    width: calc(33.3333333333% - 40px);
  }
}
@media (min-width: 1200px) {
  .ta-event-item {
    outline: 4px solid transparent;
  }
  .ta-event-item:hover, .ta-event-item:focus {
    outline: 4px solid #589de4;
  }
}
.ta-event-size:before, .ta-event-size1:before, .ta-event-size2:before {
  padding-top: 75%;
}
.ta-event-data {
  position: relative;
  padding: 0.5rem 0 1.5rem;
  line-height: 2;
}
.ta-event-data strong {
  color: #589de4;
  font-weight: normal;
}
.ta-event-data p {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ta-event-data:after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 10px;
  width: 15px;
  height: 15px;
  background: url(../../images/event-icon.svg) no-repeat center center/cover;
}

/*-------------------------------------------*\
	_video.scss
\*-------------------------------------------*/
.ta-video-all {
  margin-top: -2rem;
  padding-bottom: 5rem;
  background: #589de4;
}
@media (min-width: 992px) {
  .ta-video-all {
    padding-bottom: 12rem;
  }
}
.ta-video-all .container {
  padding: 0 2rem;
}

.ta-video-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .ta-video-wrap {
    width: calc(100% + 40px);
    margin: 0 -20px;
    flex-direction: row;
  }
}
.ta-video-item {
  flex: 1;
  margin: 20px 0;
  padding: 10px;
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
@media (min-width: 992px) {
  .ta-video-item {
    margin: 20px;
  }
}
.ta-video-item:hover {
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5), -10px -10px 15px rgba(255, 255, 255, 0.75);
}
.ta-video-item:hover p {
  color: #589de4;
}
.ta-video-size:before {
  padding-top: 56.25%;
}
.ta-video-data {
  position: relative;
  padding: 0.5rem 0;
  line-height: 2;
}
.ta-video-data strong {
  color: #589de4;
  font-weight: normal;
}
.ta-video-data p {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}