@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: 23px;
  padding: 20px 12px;
  margin: 5px 10px;
  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 #000;
  border-bottom: none;
  top: 0px;
}

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

.toggle-button .menu-bar-bottom {
  border: 2px solid #000;
  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: 80px;
  position: fixed;
  background: var(--color_fff);
  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: 72px;
  }
}
header .h_right,
header .h_logo,
header .h_top {
  position: relative;
  display: inline-block;
  width: 100%;
}
header .h_logo {
  width: 200px;
  height: 50px;
  margin: 0 10px;
  padding: 5px 0;
}
header .h_logo a {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 50px;
  background: url(../images/mega_logo.png) no-repeat;
  background-size: auto 50px;
  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_000);
}
@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: #cc0000;
}
header .h_right li a.active,
header .h_right li a:hover {
  color: #cc0000;
}
@media (max-width: 768px) {
  header .h_right li a.active,
  header .h_right li a:hover {
    color: #fff;
  }
}

.header_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .header_box {
    padding: 5px 0;
  }
}

@media only screen and (max-width: 768px) {
  header .h_logo {
    width: 150px;
    height: 50px;
    padding: 6px 0;
    padding-left: 55px;
  }
  header .h_logo a {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  header .h_right {
    display: none;
  }
  header .h_right.open {
    position: absolute;
    display: block;
    width: 100%;
    top: 67px;
    background: var(--color_fff);
    z-index: 91;
  }
  header .h_right.open li {
    width: 100%;
    height: auto;
    margin: 0px;
    text-align: center;
    border-bottom: 1px solid var(--color_fff);
  }
  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: #cc0000;
    color: #fff;
  }
  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: 219px;
  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: var(--color_d12d25);
}

/************************
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;
}
@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: 304px;
}
@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: #1d4690 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: 980px) {
  footer {
    height: 45px;
    background-image: none;
  }
}
@media (max-width: 780px) {
  footer {
    height: auto;
    min-height: 45px;
    padding: 10px 0;
  }
}
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: 980px) {
  footer .footer_left {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  footer .footer_left {
    width: 77%;
  }
}
footer .inline_box01 {
  display: inline;
}
@media (max-width: 780px) {
  footer .inline_box01 {
    display: block;
  }
}
footer .inline_box02 {
  display: inline;
}
@media (max-width: 480px) {
  footer .inline_box02 {
    display: block;
  }
}

.footer_line01 {
  display: unset;
}
@media (max-width: 780px) {
  .footer_line01 {
    display: none;
  }
}

.footer_line02 {
  display: unset;
}
@media (max-width: 480px) {
  .footer_line02 {
    display: none;
  }
}

/************************
right_btn_PART
************************/

/************************
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: var(--color_fff);
  display: none;
  opacity: 0;
  visibility: hidden;
}*/
@media (max-width: 1200px) {
  .for_sub_popup {
    width: 90%;
  }
}


/*.for_sub_popup .popup_title {
  width: 100%;
  position: relative;
  background: var(--color_be0000);
  padding: 23px 0;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  color: var(--color_fff);
}*/


@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;
}*/
.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;
  font-weight: 0;
  background: #D6D6D6;
  color: var(--color_000);
  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: #f2f2f2;*/
}
.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 {
  font-size: 14px;
  font-weight: 700;
}

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

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

/*.startShow {
  width: 100%;
  max-width: 1045px;
  position: fixed;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 24px;
  z-index: 50;
  background: var(--color_fff);
  display: none;
  opacity: 0;
  visibility: hidden;
}*/


@media (max-width: 1200px) {
  .startShow {
    width: 90%;
  }
}
/*.startShow .txt_content {
  background: #F2F2F2;
  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;
  }
}



@media (max-width: 768px) {
    header {
        height: 72px;
    }
}

header {
    width: 100%;
    height: 80px;
    position: fixed;
    background: var(--color_fff);
    top: 0;
    left: 0;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    z-index: 99;
}




.menu-bar{width:25px;}

