@charset "UTF-8";
.font_verdana {
  font-family: "Verdana", "Asap", sans-serif;
}

.font_asap {
  font-family: "Asap", sans-serif;
}

.font_asap_c {
  font-family: "Asap Condensed", sans-serif;
}

.font_montserrat {
  font-family: "Montserrat", sans-serif;
}

@keyframes bounseX {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes float {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  background: url("img/bg.jpg") center bottom/cover fixed no-repeat;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.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(0, 0, 0, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(30deg, #7b82ef, #0070c5 90%);
  color: #fff;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.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("img/ui/arrow_top.png") center/contain no-repeat;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
}
.sc_title .tit {
  margin-left: 0.875rem;
  display: inline-block;
  padding-left: 0.875rem;
  font-size: 2rem;
  font-weight: 700;
  color: #092994;
}
.sc_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 1rem;
  height: 100%;
  background-color: #092994;
  background: linear-gradient(0deg, #092994 50%, #fff 51%) 0 0/1rem 6px;
}

@keyframes shine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}
.g_header {
  background: linear-gradient(0deg, rgba(255, 180, 179, 0.5), rgba(255, 255, 255, 0) 10%), linear-gradient(30deg, #7b82ef, #0070c5 80%, #3fa4f2);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  transform: translateY(-50%);
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #fff;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: flex;
  justify-content: center;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  color: #fff;
  font-weight: 700;
}
.g_header .nav_link:hover {
  color: #47fff3;
  text-decoration: none;
}

.g_kv .desktop {
  position: relative;
}

.main_content {
  position: relative;
  z-index: 2;
}

.sc_intro {
  padding: 3rem 0;
  background-color: #fff;
  color: #343434;
}
.sc_intro .intro_wrap {
  text-align: center;
}
.sc_intro .h2 {
  transform: skewX(-10deg);
}
.sc_intro p {
  max-width: calc(800px + 2rem);
  margin: 0 auto 1em;
  padding: 0 1rem;
  font-size: 1.25rem;
}
.sc_intro p .name {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 0.5rem;
  margin: 2px 4px;
  border-radius: 2px;
  font-weight: 700;
  color: #092994;
  line-height: 1;
}
.sc_intro p.p5 {
  font-size: 1.5rem;
  font-weight: 700;
}
.sc_intro p .strong {
  display: inline-block;
  margin: 2px 4px;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem 0.55rem;
  background-color: #092994;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.sc_intro p .strong:first-child {
  margin-left: 0.5rem;
}
.sc_intro p .strong:last-child {
  margin-right: 0.5rem;
}
.sc_intro .h2 {
  font-size: 2rem;
  color: #092994;
  font-weight: 700;
  margin-bottom: 2rem;
}
.sc_intro p:last-child {
  margin-bottom: 0;
}
.sc_intro .icon_line {
  text-align: center;
  padding: 1rem 0 0;
}
.sc_intro .icon_line .img,
.sc_intro .icon_line span {
  display: inline-block;
  vertical-align: middle;
}
.sc_intro .icon_line .img {
  border-radius: 40px;
  padding: 15px;
  background-color: #0070c5;
  line-height: 0;
}
.sc_intro .icon_line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sc_intro .icon_line span {
  padding: 0 0.75rem;
  font-size: 1.5rem;
  color: #0070c5;
  font-weight: 700;
}

.cta {
  margin-top: 1rem;
  font-size: 0;
  text-align: center;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #fff;
  overflow: hidden;
}
.cta .bttn::before, .cta .bttn::after {
  content: "";
  position: absolute;
  transition: left 1200ms;
}
.cta .bttn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: linear-gradient(-30deg, #7b82ef, #092994 90%);
}
.cta .bttn::after {
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  border: 4px solid #7b82ef;
}
.cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 5rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  transition: color 800ms 200ms;
  transform: translateY(-50%);
}
.cta .bttn:hover {
  text-decoration: none;
}
.cta .bttn:hover::before {
  left: 100%;
}
.cta .bttn:hover div {
  color: #7b82ef;
}

.sc_agenda {
  padding: 4rem 0;
  background: linear-gradient(-30deg, rgba(9, 41, 148, 0.8), #0d1158 67%, #100633);
}
.sc_agenda .sc_title .tit {
  color: #47fff3;
}
.sc_agenda .sc_title::before {
  background: linear-gradient(0deg, #092994 50%, #47fff3 51%) 0 0/1rem 6px;
}
.sc_agenda .tips {
  text-align: center;
  font-size: 14px;
}
.sc_agenda .tips .tiplink {
  margin-top: 0.25rem;
  display: inline-block;
  margin-left: 1rem;
  color: #47fff3;
  text-decoration: underline;
}
.sc_agenda .tips .tiplink:hover {
  color: #ffb4b3;
}

.agenda_cnt {
  margin-top: 1rem;
  font-size: 1.125rem;
}
.agenda_cnt .tr {
  display: flex;
  align-items: center;
  background-color: #fff;
}
.agenda_cnt .tr:not(:last-child) {
  margin-bottom: 2px;
}
.agenda_cnt .tr.tr_bg {
  background-color: rgba(123, 130, 239, 0.3);
  color: #fff;
}
.agenda_cnt .tr.tr_bg .td {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.agenda_cnt .tr.tr_bg .m {
  color: #d3eaae;
}
.agenda_cnt .tr.tr_bg .t {
  font-size: 1em;
}
.agenda_cnt .td {
  padding: 0.75em 1em;
  line-height: 1.3;
}
.agenda_cnt .td.td_time {
  flex: 0 0 15%;
  text-align: center;
}
.agenda_cnt .td.td_tit {
  flex: 1 1 100%;
}
.agenda_cnt .td .m {
  color: #7b82ef;
  font-family: "Rubik", sans-serif;
}
.agenda_cnt .td .t {
  font-size: 1.25em;
  line-height: 1.2;
}
.agenda_cnt .td .spk {
  position: relative;
  margin-top: 0.5em;
}
.agenda_cnt .td .spk .n {
  font-size: 1.125rem;
  font-weight: 700;
  color: #092994;
}
.agenda_cnt .td .spk .c {
  font-size: 1rem;
  color: #0070c5;
  opacity: 0.8;
}
.agenda_cnt .td .spk.g {
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.agenda_cnt .td .spk.g .c {
  display: inline-block;
}
.agenda_cnt .td .spk.g .n {
  display: inline-block;
  width: 3.5em;
  padding-right: 0.5rem;
}

.morning_agenda .w_guest .in {
  display: inline-block;
  border: 1px solid currentColor;
  margin-right: 0.5rem;
  padding: 0.125em 0.5em;
  font-size: 1rem;
  text-align: center;
  color: #3fa4f2;
}
.morning_agenda .w_guest .t {
  display: inline-block;
}
.morning_agenda .w_guest .td.td_tit {
  flex: 1 1 80%;
}
.morning_agenda .w_guest .td.td_spk {
  flex: 1 1 100%;
}
.morning_agenda .w_guest .td.td_spk .wp {
  display: flex;
  align-items: flex-start;
  margin: 0.5rem 0;
}
.morning_agenda .w_guest .td.td_spk .key {
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-width: 0 1px 0 0;
  padding-right: 10px;
  margin-right: 10px;
  color: #092994;
}
.morning_agenda .w_guest .td.td_spk .val {
  margin-top: 0;
}

.part_agenda :not(.tr_bg) .td_tit {
  border-left: 1px solid #7b82ef;
  align-self: stretch;
  display: inline-flex;
  flex-direction: column;
}
.part_agenda :not(.tr_bg) .td_tit .t {
  flex: 0 0 60px;
}
.part_agenda :not(.tr_bg) .td_tit .spk .n {
  height: 24px;
}
.part_agenda .tr_part_tit {
  padding-top: 1rem;
  background-color: transparent;
}
.part_agenda .tr_part_tit .td_tit {
  padding-top: 0;
  line-height: 1;
  border-left: 1px solid #fff;
}
.part_agenda .tr_part_tit .pt {
  color: #fff;
  font-size: 1.5rem;
}

.sc_gift {
  padding: 3rem 0;
  background-color: #fff;
}

.gift_cnt {
  padding: 40px 0 0;
}
.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  padding: 0 40px;
}
.gift_cnt .item .txt {
  line-height: 1;
  padding: 0.5em 2rem 2rem;
  text-align: center;
}
.gift_cnt .item .att {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
  color: #e50012;
}
.gift_cnt .item .att .t {
  flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.gift_cnt .item .att .l {
  flex: 0 0 3rem;
  border-top: 1px solid currentColor;
}
.gift_cnt .item .price {
  position: absolute;
  left: 20px;
  top: -60px;
  width: 80px;
  height: 80px;
  border: 5px solid #faab63;
  border-radius: 40px;
  background-color: #e50012;
  font-size: 1.125em;
  line-height: 70px;
  text-align: center;
  color: #fff;
}
.gift_cnt .item .name {
  margin-top: 0.5rem;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
  color: #092994;
}
.gift_cnt .item .active {
  margin-top: 0.5rem;
  line-height: 1.6;
  width: 100%;
}
.gift_cnt .item .frame,
.gift_cnt .item .tip {
  display: inline-block;
}
.gift_cnt .item .frame {
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 16px;
  padding: 0.5em 0.75em 0.35em;
  background-color: #faab63;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.gift_cnt .item .tip {
  padding-left: 0.125rem;
  font-size: 0.925em;
  color: #888;
}

.sc_location {
  padding: 3rem;
  background-color: #fff;
}
.sc_location .info_wrap span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.sc_location .info_wrap .loca {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0070c5;
  padding-right: 1rem;
}
.sc_location .info_wrap .addr {
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #0070c5;
}
.sc_location .map_wrap {
  margin: 1rem auto 0;
  padding: 2px;
  background-image: linear-gradient(-30deg, #47fff3, #7b82ef);
}
.sc_location .map_wrap .map {
  position: relative;
  padding-top: 40%;
  overflow: hidden;
}
.sc_location .map_wrap .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_logo {
  padding-top: 1px;
  padding-bottom: 2rem;
  background: linear-gradient(-30deg, rgba(9, 41, 148, 0.8), #0d1158 67%, #100633);
}
.sc_logo .sc_title {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.sc_logo .sc_title .tit {
  color: #47fff3;
  font-size: 1.5rem;
}
.sc_logo .sc_title::before {
  background: linear-gradient(0deg, #092994 50%, #47fff3 51%) 0 0/1rem 6px;
}
.sc_logo .logo_cnt {
  display: inline-block;
  padding: 1rem;
  border-radius: 10px;
  background-color: #fff;
}
.sc_logo .logo_cnt .img {
  max-width: 216px;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #fafafa;
  overflow: hidden;
}
.sc_detail ul {
  padding-left: 1.25em;
}
.sc_detail li {
  line-height: 1.3;
  padding: 0.33rem 0;
}

.sc_footer {
  overflow: hidden;
  padding: 2em;
  background-color: #fafafa;
}
.sc_footer .in_left {
  position: relative;
}
.sc_footer .logo_item .i_t {
  padding-left: 0.75rem;
  padding-top: 0.125rem;
  border-left: 2px solid currentColor;
  line-height: 1;
  color: rgba(229, 0, 18, 0.8);
  font-weight: 700;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.sc_footer .logo {
  display: block;
  height: 100%;
}
.sc_footer .logo img {
  height: 88px;
}
.sc_footer .intro {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.sc_footer .links {
  margin-top: 0.5rem;
}
.sc_footer .links .link {
  display: inline-block;
  margin-right: 0.25rem;
  line-height: 1.2;
}
.sc_footer .links a {
  border-radius: 4px;
  display: block;
  padding: 1rem;
  background: center/contain no-repeat;
  background-color: #e50012;
}
.sc_footer .links a.i_logo {
  background-image: url("img/i_logo.svg");
}
.sc_footer .links a.i_fb {
  background-image: url("img/i_fb.svg");
}
.sc_footer .links a:hover {
  background-color: #7b82ef;
  text-decoration: none;
}

.modal-dialog {
  max-width: 36rem;
}

.modal-content {
  border-width: 0;
}

.modal-header {
  border-bottom-width: 0;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  margin: 0.25em 0;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .nav_cnt {
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    margin-top: 0.5rem;
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .g_kv {
    margin-top: 66px;
  }

  .sc_title .tit {
    margin-left: 1rem;
  }

  .sc_intro .intro_wrap p {
    padding: 0 1.5rem;
  }
  .sc_intro .wording_area {
    padding: 2rem 2.5rem;
  }
  .sc_intro .wording_area .wording {
    font-size: 1.5em;
  }
  .sc_intro .wording_area .by {
    margin-top: 1rem;
    line-height: 1;
  }
  .sc_intro .wording_area .by .t {
    font-size: 1rem;
  }
  .sc_intro .wording_area .by .t::before {
    display: none;
  }
  .sc_intro .wording_area .by .n {
    margin-top: 0.5rem;
    font-size: 1.33rem;
    padding-left: 0;
  }

  .agenda_cnt .tr {
    display: block;
  }
  .agenda_cnt .tr .td.td_time {
    text-align: left;
  }

  .morning_agenda .tr {
    padding: 0.75em 1em;
  }
  .morning_agenda .tr.tr_bg .td {
    padding-top: 0;
    padding-bottom: 0;
  }
  .morning_agenda .td {
    padding: 0;
  }
  .morning_agenda .w_guest .in {
    margin: 0.25rem 0;
  }
  .morning_agenda .w_guest .t {
    display: block;
  }
  .morning_agenda .w_guest .td.td_spk .wp {
    display: block;
    margin-top: 1rem;
  }
  .morning_agenda .w_guest .td.td_spk .wp .key {
    display: inline-block;
    padding-bottom: 2px;
    padding-right: 0;
    border-width: 0 0 1px 0;
    font-size: 0.875rem;
  }
  .morning_agenda .w_guest .td.td_spk .wp .val {
    padding-top: 0.5rem;
  }

  .part_agenda_m .tr_part_tit {
    background: transparent;
  }
  .part_agenda_m .tr_part_tit .td {
    margin-top: 2rem;
    padding: 0;
    padding-bottom: 0.25rem;
  }
  .part_agenda_m .tr_part_tit .pt {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .sc_location {
    padding: 2rem 0;
  }
  .sc_location .info_wrap .addr {
    margin-top: 0.5rem;
  }

  .gift_cnt {
    display: block;
    padding-bottom: 0;
  }
  .gift_cnt .item {
    padding: 15px 0;
  }
  .gift_cnt .item .img img {
    padding: 0 25px;
  }
  .gift_cnt .item .txt {
    padding-top: 0;
  }

  .fix_aside {
    right: 0.5rem;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }

  .sc_footer {
    padding: 1rem 2rem 6rem;
  }
  .sc_footer .d-flex {
    flex-wrap: wrap;
  }
  .sc_footer .in_left::before {
    display: none;
    bottom: 0;
    left: 19%;
    width: 62%;
  }
  .sc_footer .logo_item {
    text-align: center;
  }
  .sc_footer .logo_item .i_t {
    display: inline-block;
    padding: 0.125rem 2rem 0.33rem;
    border-left: 0px solid rgba(229, 0, 18, 0);
    border-bottom: 1px solid currentColor;
    text-align: center;
    margin-left: 0;
  }
  .sc_footer .logo {
    padding: 0.5rem 0;
    text-align: center;
  }
  .sc_footer .logo img {
    height: auto;
    width: 66%;
  }
  .sc_footer .intro {
    margin-top: 1rem;
  }
  .sc_footer .links {
    text-align: center;
  }
  .sc_footer .links .link {
    margin: 0.5rem 0.25rem 0;
  }
  .sc_footer .links a {
    padding: 1.5rem;
  }
}