@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bitter:wght@300;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  font-size: 16px;
}
@media (max-width: 768px) {
  :root {
    font-size: 12px;
  }
}

@font-face {
  font-family: "helvetica";
  src: url("../../assets/fonts/Helvetica.otf") format("otf"), url("../../assets/fonts/Helvetica.ttf") format("ttf"), url("../../assets/fonts/Helvetica.woff2") format("woff2"), url("../../assets/fonts/Helvetica.woff") format("woff");
}
@font-face {
  font-family: "Avenir-Black";
  src: url("../../assets/fonts/Avenir-Black.otf") format("otf"), url("../../assets/fonts/Avenir-Black.ttf") format("ttf"), url("../../assets/fonts/Avenir-Black.woff2") format("woff2"), url("../../assets/fonts/Avenir-Black.woff") format("woff");
}
@font-face {
  font-family: "Avenir-Book";
  src: url("../../assets/fonts/Avenir-Book.otf") format("otf"), url("../../assets/fonts/Avenir-Book.ttf") format("ttf"), url("../../assets/fonts/Avenir-Book.woff2") format("woff2"), url("../../assets/fonts/Avenir-Book.woff") format("woff");
}
@font-face {
  font-family: "Avenir-Medium";
  src: url("../../assets/fonts/Avenir-Medium.otf") format("otf"), url("../../assets/fonts/Avenir-Medium.ttf") format("ttf"), url("../../assets/fonts/Avenir-Medium.woff2") format("woff2"), url("../../assets/fonts/Avenir-Medium.woff") format("woff");
}
@font-face {
  font-family: "Avenir-Roman";
  src: url("../../assets/fonts/Avenir-Roman.otf") format("otf"), url("../../assets/fonts/Avenir-Roman.ttf") format("ttf"), url("../../assets/fonts/Avenir-Roman.woff2") format("woff2"), url("../../assets/fonts/Avenir-Roman.woff") format("woff");
}
.wrapper {
  font-family: "Avenir-Medium", "Noto Sans TC", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

img {
  position: relative;
  max-width: 100%;
  height: auto;
}

.btnRegistration {
  border-radius: 5px !important;
  overflow: hidden;
}
.btnRegistration a {
  border-radius: 5px !important;
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #08090D;
}

.sc_title {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
.sc_title.dark .sc_title_inner {
  padding: 15px 60px;
  border-radius: 15px;
  color: #08090d;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
}
.sc_title.dark .sc_title_inner::before {
  left: 30px;
  background-color: #ee353d;
  border: 2px solid #ee353d;
}
.sc_title.dark .sc_title_inner::after {
  right: 30px;
  background-color: #ee353d;
  border: 2px solid #ee353d;
}
.sc_title_inner {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 30px;
  font-size: 2.375rem;
  letter-spacing: 3px;
  font-weight: bold;
  font-family: "Avenir-Black", "Noto Sans TC", sans-serif;
  color: #fff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.sc_title_inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
  transform: translateY(-50%);
}
.sc_title_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
  transform: translateY(-50%);
}

@media (max-width: 1400px) {
  .sc_title_inner {
    font-size: 2.125rem;
  }
}
@media (max-width: 768px) {
  .sc_title_inner {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(3, 30, 55, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_primary {
  background-image: linear-gradient(120deg, #00A0FD, #00A0FD, #a99687);
  background-color: #fff;
  color: #fff;
}
.fix_aside .fx_item.is_sp {
  background: transparent;
  display: inline-block;
  width: 6.25rem;
  height: auto;
  background-color: transparent;
  color: #000;
  font-size: 12px;
  margin: 0 0 10px 0;
  border-radius: 15px;
}
.fix_aside .fx_item.is_sp .in_wrap {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transform: translate(0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_aside .fx_item.is_sp .in_wrap img {
  position: relative;
  width: 100%;
  height: auto;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(3, 30, 55, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
  font-size: 1rem;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("../../assets/images/icons/arrow_top.png") center/contain no-repeat;
}

header {
  position: fixed;
  top: -10%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  transition: all 0.3s ease-out;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08090d;
  transition: all 0.3s ease-out;
}
header.is_active {
  top: 0%;
}
header.is_active .nav_area {
  display: flex;
}
header.is_active .nav_area .logo {
  max-width: 160px;
}
header.is_active .nav_area ul {
  height: 45px;
}
header.is_active .nav_area ul li a {
  font-size: 0.875rem;
}
header.is_active .nav_language .hover img {
  width: 25px;
}
header.is_active .nav_sns .hover img {
  width: 30px;
}
header .nav_mobile {
  display: none;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover {
  display: inline-block;
  position: relative;
}
header .nav_language .hover img {
  width: 30px;
  line-height: 0;
  transition: all 0.2s ease-out;
}
header .nav_language .hover:hover .hover_menu {
  display: flex;
}
header .nav_language .hover_holder {
  cursor: pointer;
}
header .nav_language .hover_menu {
  position: absolute;
  top: auto;
  right: 0;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .nav_language .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 10px;
  text-decoration: none;
}
header .nav_language .hover_menu .hover_item p {
  position: relative;
  box-sizing: border-box;
  padding: 5px 15px;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  color: #00A0FD;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0 10px 0 10px;
  transition: all 0.3s ease-in-out;
}
header .nav_language .hover_menu .hover_item p:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}
header .nav_language .hover_menu .hover_item p span {
  font-size: 12px;
}
header .nav_sns {
  position: relative;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
}
header .nav_sns .hover {
  display: inline-block;
  position: relative;
}
header .nav_sns .hover img {
  width: 40px;
  line-height: 0;
  transition: all 0.2s ease-out;
}
header .nav_sns .hover:hover .hover_menu {
  display: block;
}
header .nav_sns .hover_holder {
  cursor: pointer;
}
header .nav_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
header .nav_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}
header .nav_area {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 70px 0 70px;
  margin: 0 auto;
  height: auto;
  display: none;
  justify-content: center;
  align-items: center;
}
header .nav_area .logo {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 0 0;
  display: block;
  transition: all 0.2s ease-out;
}
header .nav_area .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
header .nav_area ul {
  position: relative;
  width: auto;
  height: 70px;
  margin: 0 1% 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
header .nav_area ul li {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
header .nav_area ul li a {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  padding: 3px;
  color: #fff;
  font-size: 1rem;
  font-family: "Avenir-Black", "Noto Sans TC", sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a:hover {
  color: #00A0FD;
}
header .nav_area ul li a.reg_btn {
  box-sizing: border-box;
  padding: 10px 20px;
  background-color: #00A0FD;
  border: 1px solid #00A0FD;
  border-radius: 5px;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a.reg_btn:hover {
  color: #00A0FD;
  background-color: transparent;
}
header .nav_area ul li.btn a {
  padding: 8px 25px;
  color: #fff;
  border: 1px solid #031E37;
  border-radius: 5px;
}
header .nav_area ul li.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #00A0FD, #9000FF);
  z-index: -1;
  transition: all 0.2s ease-out;
}
header .nav_area ul li.btn a:hover {
  color: #00A0FD;
  border: 1px solid #00A0FD;
}
header .nav_area ul li.btn a:hover::before {
  left: 100%;
}
header .nav_area ul li.active a {
  color: #00A0FD;
}

footer {
  position: relative;
  width: 100%;
  padding: 35px 0 !important;
  background-color: #031E37;
}
footer .logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo .footerDigitimesLogo {
  position: relative;
  width: 100%;
  max-width: 205px;
  height: auto;
}
footer .logo .footerSSLogo {
  position: relative;
  width: 100%;
  max-width: 140px;
  height: auto;
}
footer .content {
  position: relative;
  width: 100%;
  margin: 15px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
footer .content .contant {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
footer .content .contant .cnts {
  position: relative;
  width: auto;
}
footer .content .contant .cnts:first-child {
  border: solid #fff;
  border-width: 0 0 0 0;
  padding: 0 25px 0 0;
}
footer .content .contant .cnts .cnt {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer .content .contant .cnts .cnt img {
  position: relative;
  width: 15px;
  height: auto;
  margin: 0 10px 0 0;
}
footer .content .contant .cnts .cnt a {
  color: #fff;
  text-decoration: none;
}
footer .content .contant .cnts .cnt .icons {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 40px 0 0 0;
}
footer .content .contant .cnts .cnt .icons a {
  position: relative;
  flex: 0 1 40px;
  margin: 10px;
}
footer .content .contant .cnts .cnt .icons a img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: translateY(0);
  transition: all 0.2s ease-out;
}
footer .content .contant .cnts .cnt .icons a:hover img {
  transform: translateY(-10px);
}
footer .info {
  position: relative;
  width: auto;
  margin: 0;
  text-align: right;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer .info span {
  white-space: nowrap;
}

.modal .modal-dialog {
  max-width: 800px;
}
.modal .modal-content {
  padding: 20px 30px;
  border-radius: 20px;
}
.modal .modal-header {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 0;
}
.modal .modal-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #08090D;
}
.modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.modal .modal-header .sub {
  position: relative;
  margin: 5px 0 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  color: #08090D;
  display: block;
}
.modal .modal-header .close {
  position: absolute;
  top: 5px;
  right: 5px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.modal .modal-header .close:hover {
  transform: rotate(180deg);
}
.modal .modal-body {
  font-size: 1.125rem;
  font-weight: 300;
  color: #08090D;
  line-height: 1.75;
}
.modal .modal-body p {
  font-weight: 300 !important;
  font-size: 1.125rem;
}
.modal .modal-body span {
  font-size: 1.125rem;
  font-weight: 300 !important;
  display: block;
}
.modal .modal-body .cnt {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0;
  margin: 20px 0;
  border: dashed rgba(188, 188, 188, 0.3);
  border-width: 1px 0 1px 0;
}
.modal .modal-body .t {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  display: block;
}
.modal .modal-body ol {
  font-size: 1.125rem;
  list-style: decimal;
  padding: 0 0 0 20px;
}
.modal .modal-body ul {
  font-size: 1.125rem;
  list-style: disc;
  padding: 0 0 0 20px;
}
.modal .modal-body li {
  position: relative;
  font-weight: 300 !important;
}
.modal .modal-body li span {
  font-size: 1.125rem;
  font-weight: 300 !important;
}
.modal .modal-footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
}
.modal .modal-footer .ps {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 20px 0;
}
.modal .modal-footer .btn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 17px 40px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 10px;
  color: #fff;
  background-color: #00A0FD;
  border: 1px solid #00A0FD;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.modal .modal-footer .btn:hover {
  color: #00A0FD;
  background-color: #fff;
}

@media (max-width: 768px) {
  .fix_aside_kvShow .fx_item.is_sp {
    width: 80px;
  }
  .fix_aside .fx_item.is_sp {
    width: 80px;
  }
  .fix_aside .fx_item .in_wrap {
    width: 100%;
  }
  .fix_aside .fx_item .in_wrap.txt {
    font-size: 0.75rem;
  }
  header {
    top: 0%;
    height: 35px;
    background-color: transparent;
  }
  header::before {
    opacity: 0;
  }
  header .nav {
    top: 0%;
  }
  header .nav_mobile {
    position: relative;
    display: block;
  }
  header .nav_mobile-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_mobile-btn-line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background: #00A0FD;
    border-radius: 4px;
    margin: 2.5px 0;
  }
  header .nav_language {
    position: absolute;
    top: 110px;
    right: 5px;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_sns {
    position: absolute;
    top: 50px;
    right: 0;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_area {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #031E37;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }
  header .nav_area .logo {
    width: 200px;
    margin: 20px auto;
  }
  header .nav_area ul {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
  }
  header .nav_area ul li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_area ul li a {
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  header .nav_area ul li a:hover {
    color: #00A0FD;
  }
  header .nav_area ul li.btn a {
    padding: 12px 35px;
    color: #fff;
    background-color: #00A0FD;
    border: 1px solid #00A0FD;
    border-radius: 5px;
  }
  header .nav_area ul li.btn a:hover {
    color: #00A0FD;
    background-color: #fff;
  }
  header .nav_area ul li.active a {
    color: #00A0FD;
  }
  footer .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .logo .footerDigitimesLogo {
    max-width: 205px;
    margin: 0 0 15px 0;
  }
  footer .logo .footerSSLogo {
    max-width: 140px;
  }
  footer .content {
    flex-direction: column;
  }
  footer .content .contant {
    flex-direction: column;
  }
  footer .content .contant .cnts {
    width: 100%;
  }
  footer .content .contant .cnts:first-child {
    border-width: 0 0 1px 0;
    padding: 0 0 25px 0;
  }
  footer .content .contant .cnts:last-child {
    border-width: 0 0 1px 0;
    padding: 25px 0 25px 0;
  }
  footer .content .contant .cnts .cnt {
    justify-content: center;
    font-size: 1rem;
  }
  footer .content .contant .cnts .cnt .icons {
    justify-content: center;
    margin: 20px 0 0 0;
  }
  footer .content .contant .cnts .cnt .icons a {
    flex: 0 1 30px;
    margin: 5px;
  }
  footer .content .contant .cnts .cnt .icons a img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: translateY(0);
    transition: all 0.2s ease-out;
  }
  footer .content .contant .cnts .cnt .icons a:hover img {
    transform: translateY(-10px);
  }
  footer .info {
    width: 100%;
    margin: 25px 0 0 0;
    text-align: center;
    font-size: 1rem;
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 18px;
  }
  .modal .modal-header .sub {
    font-size: 16px;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.5;
  }
  .modal .modal-body span, .modal .modal-body li, .modal .modal-body p {
    font-size: 16px;
    line-height: 1.5;
  }
  .modal .modal-footer .ps {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .modal .modal-footer .btn {
    padding: 17px 40px;
    font-size: 24px;
  }
}
.controls {
  position: absolute;
  bottom: 10%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sd_arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  cursor: pointer;
  filter: grayscale(1);
  transition: filter 300ms;
}
.sd_arrow:hover {
  filter: grayscale(0);
}

.arr_prev {
  left: 0;
  background-image: url("../../assets/images/icons/arr_prev.png");
}

.arr_next {
  order: 3;
  right: 0;
  background-image: url("../../assets/images/icons/arr_next.png");
}

.sd_dots {
  flex: 0 0 auto;
  margin: 15px 6px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.sd_dots li {
  margin: 0 6px;
  background-color: #bbb;
  line-height: 0;
  border-radius: 8px;
  height: 12px;
  width: 12px;
  overflow: hidden;
  transition: background 300ms, width 300ms;
}
.sd_dots li:hover {
  background-color: rgba(0, 160, 253, 0.6);
}
.sd_dots li.slick-active {
  background-color: #00A0FD;
  width: 24px;
}
.sd_dots button {
  font-size: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .controls {
    width: 90%;
  }
}
@keyframes scaleInBounce {
  0% {
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  }
  3.4% {
    transform: matrix(1.068, 0, 0, 1.059, 0, 0);
  }
  4.7% {
    transform: matrix(1.055, 0, 0, 1.04, 0, 0);
  }
  6.81% {
    transform: matrix(1.034, 0, 0, 1.011, 0, 0);
  }
  9.41% {
    transform: matrix(1.012, 0, 0, 0.983, 0, 0);
  }
  10.21% {
    transform: matrix(1.006, 0, 0, 0.977, 0, 0);
  }
  13.61% {
    transform: matrix(0.988, 0, 0, 0.967, 0, 0);
  }
  14.11% {
    transform: matrix(0.986, 0, 0, 0.967, 0, 0);
  }
  17.52% {
    transform: matrix(0.979, 0, 0, 0.976, 0, 0);
  }
  18.72% {
    transform: matrix(0.979, 0, 0, 0.981, 0, 0);
  }
  21.32% {
    transform: matrix(0.98, 0, 0, 0.993, 0, 0);
  }
  24.32% {
    transform: matrix(0.985, 0, 0, 1.004, 0, 0);
  }
  25.23% {
    transform: matrix(0.987, 0, 0, 1.006, 0, 0);
  }
  29.03% {
    transform: matrix(0.994, 0, 0, 1.01, 0, 0);
  }
  29.93% {
    transform: matrix(0.995, 0, 0, 1.01, 0, 0);
  }
  35.54% {
    transform: matrix(1.002, 0, 0, 1.004, 0, 0);
  }
  36.74% {
    transform: matrix(1.003, 0, 0, 1.002, 0, 0);
  }
  41.04% {
    transform: matrix(1.004, 0, 0, 0.998, 0, 0);
  }
  44.44% {
    transform: matrix(1.003, 0, 0, 0.997, 0, 0);
  }
  52.15% {
    transform: matrix(1.001, 0, 0, 0.999, 0, 0);
  }
  59.86% {
    transform: matrix(0.999, 0, 0, 1.001, 0, 0);
  }
  63.26% {
    transform: matrix(0.999, 0, 0, 1.001, 0, 0);
  }
  75.28% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  85.49% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  90.69% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  100% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes scaleOutBounce {
  0% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  3.4% {
    transform: matrix(1.032, 0, 0, 1.041, 0, 0);
  }
  4.7% {
    transform: matrix(1.045, 0, 0, 1.06, 0, 0);
  }
  6.81% {
    transform: matrix(1.066, 0, 0, 1.089, 0, 0);
  }
  9.41% {
    transform: matrix(1.088, 0, 0, 1.117, 0, 0);
  }
  10.21% {
    transform: matrix(1.094, 0, 0, 1.123, 0, 0);
  }
  13.61% {
    transform: matrix(1.112, 0, 0, 1.133, 0, 0);
  }
  14.11% {
    transform: matrix(1.114, 0, 0, 1.133, 0, 0);
  }
  17.52% {
    transform: matrix(1.121, 0, 0, 1.124, 0, 0);
  }
  18.72% {
    transform: matrix(1.121, 0, 0, 1.119, 0, 0);
  }
  21.32% {
    transform: matrix(1.12, 0, 0, 1.107, 0, 0);
  }
  24.32% {
    transform: matrix(1.115, 0, 0, 1.096, 0, 0);
  }
  25.23% {
    transform: matrix(1.113, 0, 0, 1.094, 0, 0);
  }
  29.03% {
    transform: matrix(1.106, 0, 0, 1.09, 0, 0);
  }
  29.93% {
    transform: matrix(1.105, 0, 0, 1.09, 0, 0);
  }
  35.54% {
    transform: matrix(1.098, 0, 0, 1.096, 0, 0);
  }
  36.74% {
    transform: matrix(1.097, 0, 0, 1.098, 0, 0);
  }
  41.04% {
    transform: matrix(1.096, 0, 0, 1.102, 0, 0);
  }
  44.44% {
    transform: matrix(1.097, 0, 0, 1.103, 0, 0);
  }
  52.15% {
    transform: matrix(1.099, 0, 0, 1.101, 0, 0);
  }
  59.86% {
    transform: matrix(1.101, 0, 0, 1.099, 0, 0);
  }
  63.26% {
    transform: matrix(1.101, 0, 0, 1.099, 0, 0);
  }
  75.28% {
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  }
  85.49% {
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  }
  90.69% {
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  }
  100% {
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  }
}
@keyframes notbed {
  0% {
    opacity: 0.7;
  }
  2.5% {
    opacity: 1;
  }
  5% {
    opacity: 0.7;
  }
  7.5% {
    opacity: 0.95;
  }
  10% {
    opacity: 0.95;
  }
  15% {
    opacity: 0.7;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.7;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}
.heehee {
  animation-name: notbed;
  animation-duration: 2s;
  animation-delay: 0;
  animation-iteration-count: infinite;
  animation-timing-function: steps(40);
  animation-direction: alternate;
  animation-play-state: running;
  white-space: nowrap;
  animation-fill-mode: both;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: scale(1) translate(0);
  }
  30% {
    transform: scale(1.05) translateY(15px);
  }
  80% {
    transform: scale(1) translate(0);
  }
  100% {
    transform: scale(1.05) translate(0);
  }
}
@keyframes kv_glow {
  0% {
    filter: saturate(150%);
    filter: brightness(100%);
  }
  50% {
    filter: saturate(250%);
    filter: brightness(150%);
  }
  100% {
    filter: saturate(150%);
    filter: brightness(100%);
  }
}
@keyframes index_kv_float {
  0% {
    transform: scale(1.05) translate(0);
  }
  50% {
    transform: scale(1) translate(0);
  }
  100% {
    transform: scale(1.05) translate(0);
  }
}
@keyframes bg_float_high {
  0% {
    transform: translateY(40px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes bg_float {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes rotaFace {
  0% {
    transform: rotate(0deg);
    filter: brightness(100%);
  }
  25% {
    filter: brightness(150%);
  }
  50% {
    transform: rotate(5deg);
    filter: brightness(100%);
  }
  75% {
    filter: brightness(70%);
  }
  100% {
    transform: rotate(0deg);
    filter: brightness(100%);
  }
}
@keyframes rotaFace2 {
  0% {
    transform: rotate(0deg) translateY(0);
    filter: brightness(100%);
  }
  10% {
    filter: brightness(150%);
  }
  20% {
    filter: brightness(100%);
  }
  30% {
    filter: brightness(150%);
  }
  40% {
    filter: brightness(100%);
  }
  50% {
    transform: rotate(10deg) translateY(50px);
    filter: brightness(150%);
  }
  60% {
    filter: brightness(100%);
  }
  70% {
    filter: brightness(150%);
  }
  80% {
    filter: brightness(100%);
  }
  90% {
    filter: brightness(150%);
  }
  100% {
    transform: rotate(0deg) translateY(0);
    filter: brightness(100%);
  }
}
@keyframes giftFade {
  0% {
    transform: scale(1) translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: scale(1) translate(60%, -50%) rotate(360deg);
    opacity: 1;
  }
  60% {
    transform: scale(1) translate(60%, -50%) rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: scale(1) translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}
@keyframes train_bg_ani {
  0% {
    transform: scale(1);
    filter: contrast(100%) brightness(100%);
    opacity: 1;
  }
  20% {
    transform: scale(1.03) rotate(2deg);
    filter: contrast(200%) brightness(200%);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    filter: contrast(100%) brightness(100%);
    opacity: 0.3;
  }
}
@keyframes video_dot_rota {
  0% {
    transform: rotate(0deg) scale(1);
    filter: contrast(100%) brightness(100%);
  }
  33% {
    transform: rotate(-120deg) scale(1.2);
    filter: contrast(200%) brightness(200%);
  }
  66% {
    transform: rotate(-240deg) scale(0.8);
    filter: contrast(70%) brightness(70%);
  }
  100% {
    transform: rotate(-360deg) scale(1);
    filter: contrast(100%) brightness(100%);
  }
}
@keyframes video_ball_rota {
  0% {
    transform: rotate(0deg) scale(1);
    filter: contrast(100%) brightness(100%);
  }
  33% {
    transform: rotate(120deg) scale(1.2);
    filter: contrast(150%) brightness(150%);
  }
  66% {
    transform: rotate(240deg) scale(0.9);
    filter: contrast(70%) brightness(70%);
  }
  100% {
    transform: rotate(360deg) scale(1);
    filter: contrast(100%) brightness(100%);
  }
}
@keyframes video_head_rota {
  0% {
    transform: rotate3d(0, 0, 0, 0deg) scaleY(1) translateY(0);
  }
  33% {
    transform: rotate3d(1, 0, 0, 20deg) scaleY(1.1) translateY(0);
  }
  66% {
    transform: rotate3d(1, 0, 0, 5deg) scaleY(1) translateY(0);
  }
  100% {
    transform: rotate3d(0, 0, 0, 0deg) scaleY(1) translateY(0);
  }
}
@keyframes kv_cir_rota {
  0% {
    transform: rotate(0deg);
    filter: contrast(100%) brightness(100%);
  }
  100% {
    filter: contrast(200%) brightness(200%);
  }
  100% {
    transform: rotate(360deg);
    filter: contrast(100%) brightness(100%);
  }
}
@keyframes moveNum {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes moveLucturerNum {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 116% 0%;
  }
}
@keyframes showBox {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv_btn {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-15px);
  }
  20% {
    transform: translateY(0);
  }
  28% {
    transform: translateY(-10px);
  }
  35% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
[data-aos=setEvent] {
  opacity: 1;
}
[data-aos=setEvent].aos-animate {
  opacity: 1;
}

.mainBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.mainBg img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.mainBg .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainBg .bg_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #A2C2DB;
  background: url(../../assets/images/kv/bg.jpg) right top/cover no-repeat;
  animation: index_kv_float 30s ease-in-out normal infinite;
}
.mainBg .bg_icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mainBg .bg_icons img {
  position: relative;
  display: block;
  width: 177.7778vh;
  height: 100%;
  margin: 0 0 0 auto;
}

.kv {
  position: relative;
  margin: 0;
  width: 100vw;
  height: 100vh;
}
.kv_logo_top {
  position: absolute;
  top: 7%;
  left: 4%;
  height: auto;
  width: 22.6041666667%;
}
.kv_logo_top img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.kv_logo_bottom {
  position: absolute;
  bottom: 6%;
  left: 4%;
  height: auto;
  width: 16.9270833333%;
}
.kv_logo_bottom img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.kv .product {
  position: absolute;
  top: 30%;
  left: 4%;
  width: 28.6458333333%;
}
.kv .tit {
  position: absolute;
  top: 42%;
  left: 39%;
  width: 52.5%;
}
.kv .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.kv .tit .t1 {
  position: relative;
  margin: 0 0% 0 auto;
  width: 99.9007936508%;
}
.kv .tit .t2 {
  position: relative;
  margin: 2.75% 0 0 0;
  width: 100%;
}
.kv .tit .t3 {
  position: relative;
  margin: 3.5% 0 0 0;
  width: 98.7103174603%;
}
.kv .tit .timer {
  position: relative;
  margin: 5% 0 0 0;
  color: #fff;
  text-align: left;
  letter-spacing: -4px;
}
.kv .tit .timer .tb {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 3.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #000;
  letter-spacing: normal;
}
.kv .tit .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: #E1C59D;
}
.kv .tit .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.kv .tit .timer .d {
  border-radius: 1rem 0 0 1rem;
}
.kv .tit .timer .d::after {
  content: "day";
}
.kv .tit .timer .h::after {
  content: "hour";
}
.kv .tit .timer .m::after {
  content: "min";
}
.kv .tit .timer .s {
  border-radius: 0 1rem 1rem 0;
}
.kv .tit .timer .s::after {
  content: "sec";
}

.sc_intro {
  position: relative;
  padding: 3rem 0;
  background-color: #08090d;
  text-align: center;
}
.sc_intro .container {
  max-width: 850px;
}
.sc_intro p {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: justify;
  color: #ececec;
  margin: 0 0 25px 0;
  font-family: "Avenir-Roman", "Noto Sans TC", sans-serif;
}
.sc_intro p a {
  color: #fff;
  font-weight: bold;
}
.sc_intro .cta_img {
  position: relative;
  margin: 80px auto 30px auto;
  text-align: center;
  z-index: 2;
}
.sc_intro .cta_img_inner {
  position: relative;
  display: inline-block;
}
.sc_intro .cta_img_inner img {
  position: relative;
  width: 100%;
  max-width: 52.0833333333%;
  height: auto;
  mix-blend-mode: screen;
  transform: translateY(0px) scale(1);
  transition: transform 0.2s ease-out;
}
.sc_intro .cta_img_inner img:hover {
  transform: translateY(-10px) scale(1.1);
}

.sc_agenda {
  position: relative;
  padding: 3rem 0;
  background-color: rgba(8, 9, 13, 0.25);
  backdrop-filter: blur(3px);
}
.sc_agenda .agd_cnt {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  overflow: hidden;
}
.sc_agenda .agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(112, 42, 156, 0.5);
}
.sc_agenda .agd_cnt .tr.tr_light {
  background-color: rgba(112, 42, 156, 0.8);
  color: white;
}
.sc_agenda .agd_cnt .tr.tr_light .name {
  color: white;
}
.sc_agenda .agd_cnt .tr_head {
  border-radius: 0.5rem 0 0;
  background-color: #08090D;
  color: #fff;
}
.sc_agenda .agd_cnt .td {
  padding: 0.6em 1.2em;
}
.sc_agenda .agd_cnt .td_time {
  flex: 0 0 8em;
  text-align: center;
}
.sc_agenda .agd_cnt .td_title {
  display: inline-flex;
  align-items: center;
}
.sc_agenda .agd_cnt .ag_tit {
  flex: 1 1 auto;
  margin-right: 1em;
  font-weight: 700;
  font-size: 1.125em;
}
.sc_agenda .agd_cnt .topic_toggle {
  flex: 0 0 100px;
}
.sc_agenda .agd_cnt .topic_toggle .bttn_inner {
  background-color: #465972;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.sc_agenda .agd_cnt .topic_toggle .bttn_inner:hover {
  background-color: rgba(70, 89, 114, 0.5);
  text-decoration: none;
}
.sc_agenda .agd_cnt .ag_spk {
  line-height: 1.35;
}
.sc_agenda .agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}
.sc_agenda .agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}
.sc_agenda .agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
}
.sc_agenda .agd_cnt .ag_spk_tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.4em;
  padding-bottom: 0.2em;
  font-size: 0.875em;
  color: #08090D;
}
.sc_agenda .agd_normal .td_title {
  flex: 0 1 60%;
}
.sc_agenda .agd_normal .td_speaker {
  flex: 0 1 40%;
}
.sc_agenda .agd_split .tr {
  align-items: stretch;
}
.sc_agenda .agd_split .td {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sc_agenda .agd_split .topic_toggle {
  flex: 0 0 0;
  margin: 10px 0;
}
.sc_agenda .agd_split .tr_split_tit {
  color: #fff;
}
.sc_agenda .agd_split .tr_split_tit .td_split.sp1 {
  background-color: #08090D;
}
.sc_agenda .agd_split .tr_split_tit .td_split.sp2 {
  background-color: #08090D;
}
.sc_agenda .agd_split .sp1 {
  flex: 0 1 50%;
  border-left: 5px solid #08090D;
}
.sc_agenda .agd_split .sp2 {
  flex: 0 1 50%;
  border-left: 5px solid #08090D;
}
.sc_agenda .agd_split .ag_spk {
  margin-top: 0.2rem;
  padding: 0.2rem 0;
}
.sc_agenda .ag_tip {
  text-align: center;
  color: #F8F9FB;
}

.sc_speaker {
  position: relative;
  padding: 3rem 0;
  background-color: rgba(8, 9, 13, 0.25);
  backdrop-filter: blur(3px);
}
.sc_speaker .speaker_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sc_speaker .speaker_items .item {
  width: 30%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 30px;
  color: #F8F9FB;
  cursor: pointer;
}
.sc_speaker .speaker_items .item p {
  line-height: 1.25;
}
.sc_speaker .speaker_items .item .for_test {
  display: none;
}
.sc_speaker .speaker_items .item .pic {
  position: relative;
  width: 60%;
  margin: 0 auto 1rem auto;
}
.sc_speaker .speaker_items .item .pic img {
  border-radius: 1000px;
  transition: transform ease-in-out 0.3s;
}
.sc_speaker .speaker_items .item .pic:hover img {
  transform: scale(0.95);
}
.sc_speaker .speaker_items .item .name {
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #29abe2;
}
.sc_speaker .speaker_items .item .name span {
  display: inline-block;
}

.sc_gift {
  position: relative;
  padding: 3rem 0;
  background-color: #a2c2db;
}
.sc_gift .sc_gifts {
  display: flex;
}
.sc_gift_cnt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 1rem;
}
.sc_gift_cnt .pic {
  max-width: 250px;
  border-radius: 16px;
  overflow: hidden;
}
.sc_gift_cnt .wording {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sc_gift_cnt .wording .type {
  display: inline-block;
  color: #702a9c;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #702a9c;
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
  text-align: center;
  margin: auto;
}
.sc_gift_cnt .wording .text {
  color: #08090d;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}
.sc_gift_cnt .wording .text span {
  font-weight: 500;
}
.sc_gift_warning {
  text-align: center;
  margin-top: 2.5rem;
}

.sc_location {
  position: relative;
  padding: 3rem 0;
  background-color: #08090d;
  z-index: 2;
}
.sc_location_cnt {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.sc_location .map {
  position: relative;
  flex: 0 1 60%;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 5px;
}
.sc_location .map iframe {
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  height: 300px;
  margin: 0 auto;
}
.sc_location .info {
  position: relative;
  flex: 0 1 40%;
}
.sc_location .info .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.sc_location .info .items .item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 15px 0;
}
.sc_location .info .items .item img {
  position: relative;
  width: 100%;
  max-width: 30px;
  height: auto;
}
.sc_location .info .items .item p {
  position: relative;
  font-size: 1.375rem;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 0 15px;
}
.sc_location .info .items .item p span {
  font-size: 0.9375rem;
}
.sc_location .info .items .item a {
  color: #fff;
}

.sc_detail {
  position: relative;
  padding: 3rem 0;
  background-color: #465972;
}
.sc_detail .container {
  max-width: 1000px;
}
.sc_detail .sc_title {
  margin-bottom: 24px;
}
.sc_detail ul {
  position: relative;
}
.sc_detail ul li {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
  color: #fff;
}
.sc_detail ul li a {
  color: #fff;
  text-decoration: underline;
}
.sc_detail .btn-outline-secondary {
  border: 1px solid #fff;
  color: #fff;
}
.sc_detail .ps {
  position: relative;
  margin: 45px 0 0 0;
}

.sc_company {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  background-color: #08090D;
}
.sc_company_cnt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc_company_cnt img {
  margin: 0 2rem;
}

@media (max-width: 768px) {
  .mainBg {
    height: 140vw;
  }
  .mainBg .bg_icons {
    top: 15vw;
    left: auto;
    right: 0;
    width: 150%;
    height: 100%;
  }
  .mainBg .bg_icons img {
    width: 100%;
    height: auto;
    margin: 0 0 0 auto;
  }
  .kv {
    height: 140vw;
  }
  .kv_logo_top, .kv_logo_bottom {
    width: 40%;
  }
  .kv .tit {
    width: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .kv .product {
    top: 22%;
    left: 8%;
    width: 35%;
  }
  .kv .timer {
    padding: 14px 0 10px;
    position: static;
  }
  .sc_intro {
    padding: 30px 0;
  }
  .sc_intro p {
    font-size: 1.15rem;
    margin: 0 0 25px 0;
  }
  .sc_intro .cta_img {
    margin: 50px auto 30px auto;
  }
  .sc_intro .cta_img_inner img {
    max-width: 75%;
  }
  .sc_agenda {
    padding: 30px 0;
  }
  .sc_agenda .agd_cnt {
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
  }
  .sc_agenda .agd_cnt .tr {
    flex-direction: column;
    align-items: flex-start;
  }
  .sc_agenda .agd_cnt .tr .td_title {
    flex-direction: column;
    align-items: flex-start;
  }
  .sc_agenda .agd_cnt .td_time {
    flex: 0;
  }
  .sc_agenda .agd_cnt .ag_tit {
    font-size: 1.25rem;
  }
  .sc_agenda .agd_cnt .topic_toggle {
    display: inline-block;
    margin: 0.75rem 0;
    flex: 0;
  }
  .sc_agenda .ag_tip {
    line-height: 1.75;
  }
  .sc_speaker {
    padding: 30px 0;
  }
  .sc_speaker .speaker_items {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .sc_speaker .speaker_items .item {
    flex: 0 1 50%;
    padding: 16px;
    margin-bottom: 0;
  }
  .sc_speaker .speaker_items .item .pic {
    width: 80%;
  }
  .sc_speaker .speaker_items .item .info {
    margin: 15px auto;
  }
  .sc_speaker .speaker_items .item .info .c {
    font-size: 1.375rem;
  }
  .sc_speaker .speaker_items .item .info .n {
    margin: 15px auto;
    font-size: 1.125rem;
  }
  .sc_speaker .speaker_items .item .info .n span {
    font-size: 1rem;
  }
  .sc_gift {
    padding: 30px 0;
  }
  .sc_gift .sc_gifts {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .sc_gift_cnt {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .sc_gift_cnt .wording {
    text-align: center;
  }
  .sc_location {
    padding: 30px 0;
  }
  .sc_location_cnt {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .sc_location .map {
    padding: 5px;
  }
  .sc_location .map iframe {
    max-width: 100%;
    height: 300px;
  }
  .sc_location .info {
    flex: 0 1 50%;
  }
  .sc_location .info .items {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
  }
  .sc_location .info .items .item {
    margin: 15px 0;
  }
  .sc_location .info .items .item img {
    max-width: 30px;
  }
  .sc_location .info .items .item p {
    font-size: 1.375rem;
    margin: 0 0 0 15px;
  }
  .sc_location .info .items .item p span {
    font-size: 0.9375rem;
  }
  .sc_detail {
    padding: 30px;
  }
  .sc_detail .container {
    max-width: 1000px;
    margin: 25px auto;
  }
  .sc_detail ul li {
    font-size: 1rem;
    margin: 10px;
  }
  .sc_detail .ps {
    margin: 45px 0 0 0;
  }
  .sc_company {
    padding: 30px;
  }
  .sc_company_cnt {
    flex-direction: column;
  }
  .sc_company_cnt img {
    margin: 2rem;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}/*# sourceMappingURL=all.css.map */