@charset "UTF-8";
@import "reset.css";
body,
html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Microsoft JhengHei", "Microsoft YaHei", Arial, Helvetica, sans-serif;
  font-size: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}

:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a:link {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

a:visited {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

a:hover {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

a:active {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

/* 指定對應顏色 */
:root {
  --color_fff: #fff;
  --color_000: #000;
  --color_d51423: #D51423;
  --color_df0c18: #df0c18;
  --color_d70c18: #d70c18;
  --color_c81517: #c81517;
  --color_d80d19: #d80d19;
  --color_d12d25: #d12d25;
  --color_be0000: #be0000;
  --color_333: #333;
  --color_fff500: #fff500;
  --color_f2f2f2: #f2f2f2;
  --color_e4e4e4: #e4e4e4;
  --color_cacaca: #cacaca;
  --color_78c6ff: #78c6ff;
  --color_610550: #610505;
  --color_032b90: #032b90;
  --color_2555d0: #2555d0;
  --color_97a9e2: #97a9e2;
}

.pc_open {
  display: block;
}
@media (max-width: 980px) {
  .pc_open {
    display: none;
  }
}

.m_open {
  display: none;
}
@media (max-width: 980px) {
  .m_open {
    display: block;
  }
}

.br_box {
  display: block;
}

.wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  font-size: 1em;
}

/****************************
TOGGLE-BUTTON
****************************/
.toggle-button {
  position: absolute;
  top: 0;
  display: none;
  float: left;
  top: 0px;
  width: 24px;
  height: 45px;
/*  padding: 10px 12px;*/
  margin: 16px 16px;
  transition: 0.25s;
  z-index: 99;
}

.toggle-button:hover {
  cursor: pointer;
}

.toggle-button .menu-bar {
  position: relative;
  transition: 0.2s;
}

.toggle-button .menu-bar-top {
  border: 2px solid #ffffff;
  border-bottom: none;
  top: 0px;
}

.toggle-button .menu-bar-middle {
  height: 2px;
  background-color: #ffffff;
  margin: 8px 0px;
  top: 0px;
}

.toggle-button .menu-bar-bottom {
  border: 2px solid #ffffff;
  border-top: none;
  top: 0px;
}

.toggle-button.open .menu-bar-top {
  transform: rotate(45deg) translate(7px, 7px);
  transition: 0.2s;
}

.toggle-button.open .menu-bar-middle {
  transform: translate(0px);
  transition: 0.1s ease-in;
  opacity: 0;
}

.toggle-button.open .menu-bar-bottom {
  transform: rotate(-45deg) translate(7px, -7px);
  transition: 0.2s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 49;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 768px) {
  .toggle-button {
    display: block;
  }
  .overlay.open {
    opacity: 0.8;
    visibility: visible;
  }
}
.overlay.open02 {
  opacity: 0.8;
  visibility: visible;
}

.overlay.open03 {
  opacity: 0.8;
  visibility: visible;
}

/************************
HEADER
************************/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  background: var(--color_d70c18);
  top: 0;
  left: 0;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  z-index: 99;
}
@media (max-width: 768px) {
  header {
    height: 53px;
  }
}
header .h_right,
header .h_logo,
header .h_top {
  position: relative;
  display: inline-block;
  width: 100%;
}
header .h_logo {
  width: 200px;
  height: 35px;
  margin: 0 10px;
  padding: 12px 0;
}
header .h_logo a {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 40px;
  background: url(../images/logo-h.png) no-repeat;
  background-size: auto 35px;
  overflow: hidden;
}
header .h_logo h1 span {
  display: none;
}
header .h_right {
  float: right;
  width: auto;
}
header .h_right li {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
  margin: 13px 0px;
  line-height: 30px;
  text-align: right;
  color: var(--color_fff);
}
@media (max-width: 801px) {
  header .h_right li {
    padding: 0px 9px;
  }
}
@media (max-width: 795px) {
  header .h_right li {
    padding: 0 7px;
  }
}
@media (max-width: 783px) {
  header .h_right li {
    padding: 0 0 0 8px;
  }
}
@media (max-width: 783px) {
  header .h_right li:last-child {
    padding: 0 3px 0 8px;
  }
}
header .ac {
  color: var(--color_fff500);
}
header .h_right li a.active,
header .h_right li a:hover {
  color: var(--color_fff500);
}

.header_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  header .h_logo {
    width: 150px;
    height: 30px;
    padding: 11px 0;
    padding-left: 47px;
  }
  header .h_logo a {
    width: 150px;
    height: 30px;
    background-size: auto 30px;
  }
}
@media only screen and (max-width: 768px) {
  header .h_right {
    display: none;
  }
  header .h_right.open {
    position: absolute;
    display: block;
    width: 100%;
    top: 50px;
    background: black;
    z-index: 91;
    opacity:0.6;
  }
  header .h_right.open li {
    width: 100%;
    height: auto;
    margin: 0px;
    text-align: center;
    border-bottom: 1px solid black;
  }
  header .h_right.open li a {
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 15px 8px;
    text-decoration: none;
    font-size: 17px;
    line-height: 17px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  header .h_right.open li:hover {
    background: var(--color_c81517);
    color: var(--color_f2f2f2);
  }
  header .h_right.open li a,
  header .h_right.open li:hover {
    transition: all 0.3s ease;
  }
}
.menu_bg {
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(to bottom, var(--color_cacaca) 0%, var(--color_fff) 100%);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 768px) {
  .menu_bg {
    display: none;
    position: absolute;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.menu_bg .menu_list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .menu_bg .menu_list {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.menu_bg .menu_li {
  width: 220px;
  text-align: center;
  border-right: 1px solid var(--color_000);
}
@media (max-width: 768px) {
  .menu_bg .menu_li {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.menu_bg .menu_li a {
  width: 100%;
  display: block;
}
.menu_bg .menu_li:last-child {
  border-right: none;
}

.menu_bg.open_menu_bg {
  display: block;
  top: 193px;
  padding: 0;
  transition: all 0.3s ease;
}

.menu_bg.open_menu_bg li a,
.menu_bg.open_menu_bg li:hover {
  transition: all 0.3s ease;
}

.menu_btn02 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.menu_btn02 .menu_btn02 {
  width: 70px;
  margin: 0 0 0 5px;
}

.menu_btn03 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.menu_btn03 .menu_btn03 {
  width: 70px;
  margin: 0 0 0 5px;
}

/************************
PART
************************/
.part {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

/************************
NOTICE_PART
************************/
.notice_part {
  background: var(--color_e4e4e4);
  padding: 20px 0;
}
.notice_part .notice_title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.5em;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 1280px) {
  .notice_part .notice_title {
    width: 90%;
  }
}
.notice_part .notice_title span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background: var(--color_e4e4e4);
}
.notice_part .notice_title::before {
/*  content: "";
  width: 100%;
  height: 1px;
  background: var(--color_000);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;*/
}
.notice_part .part_notice_content {
  width: 100%;
  max-width: 1200px;
  text-align: left;
  margin: 0 auto 15px;
}
@media (max-width: 1280px) {
  .notice_part .part_notice_content {
    width: 90%;
  }
}

/*紅字*/
.notice_part .color_d12d25,.color_d12d25 {
  color: var(--color_d12d25);
      font-weight:1000;
      font-size: 14px;
}

/************************
FOOTER
************************/
.footer_info {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0 40px;
  background-color: white;
}
@media (max-width: 980px) {
  .footer_info {
    flex-wrap: wrap;
  }
}
.footer_info .info_left {
  width: 34%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.375em;
  font-weight: 800;
  margin: 0 0 0 20px;
}
@media (max-width: 980px) {
  .footer_info .info_left {
    width: 100%;
    margin: 15px 0;
  }
}
.footer_info .info_left .h6 {
  font-size: 16px !important;
}
@media (max-width: 980px) {
  .footer_info .info_left .h6 {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer_info .info_left .h6 {
    display: none;
  }
}
.footer_info .info_left .h6_m {
  display: none;
}
@media (max-width: 768px) {
  .footer_info .info_left .h6_m {
    display: block;
  }
}
.footer_info .info_left span {
  color: var(--color_df0c18);
}
.footer_info .info_right {
  width: 66%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .footer_info .info_right {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
}
.footer_info .info_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color_333);
}
@media (max-width: 980px) {
  .footer_info .info_box {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer_info .info_box {
    display: none;
  }
}
.footer_info .info_box_m {
  display: none;
}
@media (max-width: 768px) {
  .footer_info .info_box_m {
    display: block;
  }
}
.footer_info .info {
  width: 100%;
  font-size: 0.815em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer_info .info {
    flex-wrap: wrap;
  }
}
.footer_info .info .tt01 {
  width: 340px;
}
@media (max-width: 768px) {
  .footer_info .info .tt01 {
    margin: 0 0 3px 0;
  }
}
.footer_info .info .tt02 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer_info .info .tt02 span {
  width: 140px;
}
@media (max-width: 768px) {
  .footer_info .info .tt02 {
    width: 304px;
    margin: 0 0 3px 0;
  }
}

footer {
  width: 100%;
  height: 50px;
  background: var(--color_d51423) url(../images/footer.jpg) no-repeat center center;
  background-size: cover;
  font-size: 0.815em;
  color: var(--color_fff);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 844px) {
  footer {
    height: 45px;
    background-image: none;
  }
}
footer .footer_content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}
footer .footer_left {
  margin: 0 0 0 20px;
}
@media (max-width: 844px) {
  footer .footer_left {
    margin: 0 auto;
  }
}
footer .inline_box {
  display: inline;
}
@media (max-width: 844px) {
  footer .inline_box {
    display: none;
  }
}

/************************
right_btn_PART
************************/
.right_box {
/*  width: 35px;*/
  position: fixed;
  right: -2px;
  top:120px !important;
  z-index: 49;
}
@media (max-width: 768px) {
  .right_box {
    top:0px;
    right:0px;
  }
}
.right_box .sub_btn {
  margin: 0 0 15px;
}
.right_box .sub_popup {
  cursor: pointer;
}
.right_box .gotop {
  cursor: pointer;
  width:30px;
  height:auto;
  margin-left: 4px;
    margin-top: 10px;
    position:relative;
}

/************************
for_sub_popup
************************/
.for_sub_popup {
  width: 100%;
  max-width: 1045px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 24px;
  z-index: 50;
  background:#f2f2f2;
  display: none;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .for_sub_popup {
    width: 90%;
  }
}
.for_sub_popup .popup_title {
  width: 100%;
  position: relative;
  padding: 23px 0;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  color: var(--color_be0000);
}
@media (max-width: 980px) {
  .for_sub_popup .popup_title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .for_sub_popup .popup_title {
    font-size: 25px;
  }
}
.for_sub_popup .close_icon {
/*    width: 19px;*/
    /* height: 19px; */
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
    color:gray;
}
.for_sub_popup .popup_content {
  width: 100%;
  max-width: 973px;
  margin: 0 auto;
  padding: 20px 0;
}
@media (max-width: 1200px) {
  .for_sub_popup .popup_content {
    width: 90%;
  }
}
.for_sub_popup .tab_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.for_sub_popup .list {
  width: 100%;
  height: 52px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  background: #808080;
  color:#ffffff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .for_sub_popup .list {
    font-size: 20px;
  }
}
.for_sub_popup .list_open {
  background: #BE0000;
  color: var(--color_fff);
}
.for_sub_popup .tab_content {
  width: 100%;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background: #ffffff;
}
.for_sub_popup .list_content01 {
  width: 100%;
  min-height: 234px;
  opacity: 0;
  visibility: hidden;
  padding: 30px 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.for_sub_popup .list_content02 {
  width: 100%;
  min-height: 234px;
  opacity: 0;
  visibility: hidden;
  display: none;
  padding: 30px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.for_sub_popup .list_content_open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.for_sub_popup .name_box {
  width: 85%;
  margin: 0 auto;
}
.for_sub_popup .name_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0;
}
@media (max-width: 570px) {
  .for_sub_popup .name_box ul {
    grid-template-columns: 1fr 1fr;
  }
}
.for_sub_popup .name_box li {
  width: 100%;
  max-width: 280px;
  font-size: 20px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #C2C2C2;
}
@media (max-width: 768px) {
  .for_sub_popup .name_box li {
    font-size: 16px;
  }
}
.for_sub_popup .list_txt {
  width: 100%;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .for_sub_popup .list_txt {
    width: 90%;
    font-size: 16px;
    margin: 0 auto;
  }
}
.for_sub_popup .red_bg {
  background: var(--color_be0000);
  border-radius: 30px;
  color: var(--color_fff);
  display: inline-block;
  padding: 0 13px;
  margin: 0 0 3px 0;
}
.for_sub_popup .red_color {
  color: var(--color_be0000);
}

.open_popup {
  opacity: 1;
  visibility: visible;
  display: block;
}

.overflow02, .overflow03 {
  overflow: hidden;
}

.font_14 {

  /*--250711縮小--*/
  font-size: 12px;
  font-weight: 200;
}

.font_12 {
  font-size: 12px;
  font-weight: normal;
}

.tel_blue {
  display: inline;
  color: #2555d0 !important;
}

.startShow {
  width: 100%;
  max-width: 1045px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 24px;
  z-index: 50;
  background: #F2F2F2;
  display: none;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .startShow {
    width: 90%;
  }
}
.startShow .txt_content {
  background: #ffffff;
  padding: 30px;
  margin: 0 0 20px 0;
}
@media (max-width: 1200px) {
  .startShow .txt_content {
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .startShow .txt_content {
    height: 200px;
  }
}
.startShow .txt_13 {
  font-size: 13px;
  margin: 0 0 7px 0;
  text-align: justify;
  font-weight: 700;
}
.startShow .color_d12d25 {
  color: var(--color_d12d25);
}
.startShow .txt_12 {
  font-size: 12px;
  text-align: left;
}
.startShow .close_starShow {
  width: 100%;
  max-width: 180px;
  position: relative;
  background: #BE0000;
  padding: 8px 0;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--color_fff);
  border-radius: 50px;
  margin: 0 auto;
  cursor: pointer;
}
@media (max-width: 980px) {
  .startShow .close_starShow {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .startShow .close_starShow {
    font-size: 20px;
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .startShow .close_icon {
    right: 18px;
    top: 24%;
  }
}
@media (max-width: 480px) {
  .startShow .close_icon {
    right: 13px;
  }
}

.startShow_open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.title_txt_768 .inline_box {
  display: unset;
}
@media (max-width: 768px) {
  .title_txt_768 .del {
    display: none;
  }
  .title_txt_768 .inline_box {
    display: block;
  }
}


.mobile {
  display: none;
}



.Title2{position: absolute;margin-top:38%;width: 65%;
  z-index: 2;
}

.Title3{
  position: absolute;
width: 600px;
margin-left: 290px;
margin-top: -170px;
}


/* 手機板：只顯示手機圖 */
@media screen and (max-width: 768px) {

/* 手機板-增加第一個物件上方與主要banner間距 */
.part.part01.container{padding-top: 30px;}


  .Title2{width:100%;top: 70%;}

/*標題*/
  .Title1 {
    position: absolute;
    top:14%;
   margin-left:0px;
   width:80%;
}

.Title3{
  position: absolute;
    top: 36%;
    margin-left: 0px;
    width: 80%;
/*    z-index: 10;*/


width:auto;
margin-top: 0px;

}


  .gotop img{}


.right_box {

    right: -3px;

}

.pc {
    display: none;
  }

.go-top-btn .mobile {
    display: inline;
    width: 60%;
  }


 .mobile {
    display: inline;

  }


}

/*隱藏關閉視窗文字按鈕*/
.close_starShow{display:none;}




.notice-content-obj div{
  margin-top: -7%;
  padding-bottom:1%;
  padding-right: 2%;
    padding-left: 2%;
  }



.BigWhiteTitle{
  color:white;color: white;
    text-align: center;
    font-size: 4em;
    font-weight: bold;padding-bottom:2%;padding-top:4%;
}




/*--手機版本--*/
@media (max-width: 768px) {

.BigWhiteTitle{
    font-size: 2em;
    padding-top: 25%;
}

/*--警語文字到手機板縮小成12px-----*/
.part_notice_content.font_14.notice-content-obj{font-size:9px;}


/*--指向第一個輪播物件警語--選擇器控制警語大小--*/
#main-carousel-1 .owl-stage .owl-item:nth-of-type(1) .notice-content-obj > div {
 margin-top: -50%;padding-bottom: 5%;
}

/*--指向第一個輪播物件警語--選擇器控制警語大小--*/
#main-carousel-1 .owl-stage .owl-item:nth-of-type(2) .notice-content-obj > div {
 margin-top: -9%;padding-bottom: 5%;
}

/*--指向第一個輪播物件警語--選擇器控制警語大小--*/
#main-carousel-1 .owl-stage .owl-item:nth-of-type(3) .notice-content-obj > div {
 margin-top: -30%;padding-bottom: 5%;
}




/*--指向第2個輪播物件警語--選擇器控制警語大小--*/
#main-carousel-2 .owl-stage .owl-item:nth-of-type(1) .notice-content-obj > div {
 margin-top: -22% !important;
}


#main-carousel-2 .owl-stage .owl-item:nth-of-type(2) .notice-content-obj > div {
 margin-top: -43% !important;
}

#main-carousel-2 .owl-stage .owl-item:nth-of-type(3) .notice-content-obj > div {
margin-top: -64% !important;
    padding-bottom: 12%;
}





/*主視覺背景填色黑色*/
.part.kv_part{background-color: #000;}


#target-section-Fund-Document {
  text-align: center;
}

#target-section-Fund-Document img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



.part_notice_content.font_14.notice-content-obj.OBJ-pic-3 > div {
 margin-top: -35% !important;padding-bottom: 5%;
}


.part_notice_content.font_14.notice-content-obj.OBJ-pic-4 > div {
 margin-top: -25% !important;padding-bottom:13%;
}

.notice_part .color_d12d25, .color_d12d25{font-size: 11px;}


}
