:root {
  --gold: #f5b41a;
  --orang: #ed7e30;
  --sky: #2aceff;
  --blue: #003A8E;
  --grey: #57565e;
  --deepgrey: #2f3144;
  --black: #041729;
  --ff_zh: "Roboto", "Noto Sans TC", sans-serif;
  --sec_padding: 75px;
}

html {
  font-size: 18px;
}

body {
  background-color: var(--black);
  font-family: var(--ff_zh);
  overflow-x: hidden;
  color: #fff;
}

.mainbg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black) url("img/mainbg.jpg") center/cover;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.fix_aside .fx_item {
  display: block;
  cursor: pointer;
  border-radius: 5px;
  padding: 12px;
  width: 56px;
  line-height: 1;
  background-color: #fff;
  color: var(--black);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  font-size: 0.85em;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.fix_aside .fx_item img {
  width: 32px;
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(135deg, var(--sky), var(--blue) 33%, var(--black));
  color: #fff;
  font-weight: 500;
}
.fix_aside .fx_item:nth-child(2) {
  margin-top: 12px;
}
.fix_aside .fx_item:hover {
  text-decoration: none;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
}

.g_header {
  position: relative;
  background: var(--black);
}
.g_header.is_active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes underline {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}

@keyframes underline {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
.header_wrap {
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_wrap .head_topic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header_wrap .nav_cnt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_wrap .nav_link {
  display: block;
  padding: 16px;
  background-color: rgba(4, 23, 41, 0);
}
.header_wrap .nav_link:hover {
  background-color: rgba(237, 126, 48, 0.5);
  text-decoration: none;
  color: var(--sky);
}
.header_wrap .sign_item .nav_link {
  position: relative;
  overflow: hidden;
}
.header_wrap .sign_item .nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  width: 200%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #fff), color-stop(var(--gold)), color-stop(80%, var(--orang)));
  background: linear-gradient(90deg, #fff 20%, var(--gold), var(--orang) 80%);
  -webkit-animation: underline 1.5s linear 0s infinite alternate;
          animation: underline 1.5s linear 0s infinite alternate;
}

.g_kv {
  position: relative;
  height: min(56.25vw, 100vh - 59px);
  background: url("img/bg.jpg") center/cover no-repeat;
  overflow: hidden;
}
.g_kv .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.g_kv .cover::before, .g_kv .cover::after {
  content: "";
  position: absolute;
  background-color: #000;
}
.g_kv .cover::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.6666666667vw;
  margin-top: -0.9375vw;
}
.g_kv .cover::after {
  left: 49.75%;
  top: 0;
  width: 1.6666666667vw;
  height: 100%;
  margin-left: -0.9375vw;
}
.g_kv .cover .circle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 49.5%;
  width: 43.75vw;
  height: 43.75vw;
  margin-left: -21.875vw;
  margin-top: -21.875vw;
  background: url("img/bg_circle.png") center/contain no-repeat;
}
.g_kv .wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_kv .wrap .title {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_kv .wrap .title .t1 {
  width: 39.5833333333%;
}
.g_kv .wrap .title .t2 {
  position: relative;
  bottom: 1.4vw;
  width: 75.9375%;
}
.g_kv .wrap .title .t3 {
  margin-top: 9vw;
  width: 41.5104166667%;
}
.g_kv .wrap .title img {
  width: 100%;
}
.g_kv .wrap .timer {
  padding-top: 1.5vw;
  padding-bottom: 3vw;
}
.g_kv .date {
  position: absolute;
  z-index: 3;
  left: 12.34375%;
  bottom: 0;
  width: 75.3125%;
}
.g_kv .date img {
  width: 100%;
}
.g_kv .timer {
  color: #fff;
  width: 100%;
}
.g_kv .timer .time_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: -4px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 0.75vw;
  font-size: 1.2vw;
}
.g_kv .timer .tb {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 4em;
  height: 4em;
  padding-bottom: 1.5em;
  letter-spacing: normal;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 23, 41, 0)), color-stop(rgba(4, 23, 41, 0.5)), color-stop(rgba(4, 23, 41, 0.5)), to(rgba(4, 23, 41, 0)));
  background: linear-gradient(rgba(4, 23, 41, 0), rgba(4, 23, 41, 0.5), rgba(4, 23, 41, 0.5), rgba(4, 23, 41, 0));
}
.g_kv .timer .tb:nth-child(1) {
  border-left-width: 0;
}
.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 0.5em;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  color: var(--gold);
}
.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.38em);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 1.5em;
}
.g_kv .timer .d::after {
  content: "day";
}
.g_kv .timer .h::after {
  content: "hour";
}
.g_kv .timer .m::after {
  content: "min";
}
.g_kv .timer .s::after {
  content: "sec";
}

.slick-slider {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.sec_intro {
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 58, 142, 0.33);
          box-shadow: 0 0 30px 0 rgba(0, 58, 142, 0.33);
  padding-top: var(--sec_padding);
  padding-bottom: var(--sec_padding);
  color: var(--black);
}
.sec_intro .cta_row {
  margin-top: 30px;
  font-size: 1.5rem;
}

.intro_cnt {
  margin: 0 auto;
  max-width: 45em;
  line-height: 1.67;
  color: var(--deepgrey);
}
.intro_cnt .strong {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1;
}
.intro_cnt p:last-child {
  margin-bottom: 0;
}

.g_main {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#041729), color-stop(rgba(4, 23, 41, 0.8)), to(#003a8e));
  background: linear-gradient(#041729, rgba(4, 23, 41, 0.8), #003a8e);
}
.g_main .sec_title {
  margin-bottom: 30px;
  text-align: center;
}
.g_main .sec_title .tit {
  color: #fff;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-shadow: 3px 3px 0px #003a8e;
}
.g_main .cta_row {
  text-align: center;
}
.g_main .cta_row .cta {
  position: relative;
  display: inline-block;
}
.g_main .cta_row .cta div {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.75em 2.5em;
  color: #fff;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(var(--orang)), to(var(--gold)));
  background: linear-gradient(90deg, var(--orang), var(--gold));
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.2em;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.g_main .cta_row .cta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 58, 142, 0.3), rgba(65, 211, 255, 0.3));
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.g_main .cta_row .cta span {
  position: relative;
  z-index: 2;
  font-weight: 700;
}
.g_main .cta_row .cta:hover div {
  text-decoration: none;
  -webkit-transform: translate(-4px, -4px);
          transform: translate(-4px, -4px);
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
}
.g_main .cta_row .cta:hover::after {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}

.sec_agenda {
  padding-top: var(--sec_padding);
  padding-bottom: var(--sec_padding);
}

.agenda_cnt {
  padding: 0 15px;
}
.agenda_cnt .cta_row {
  margin-top: 40px;
}
.agenda_cnt .cta_row .cta {
  font-size: 1.25rem;
}

.ag_table {
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
  color: #fff;
  font-size: 1em;
}
.ag_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--grey);
}
.ag_table .tr.soft_bg {
  background: -webkit-gradient(linear, left top, right top, color-stop(33%, rgba(47, 49, 68, 0.5)), color-stop(67%, rgba(47, 49, 68, 0.25)));
  background: linear-gradient(90deg, rgba(47, 49, 68, 0.5) 33%, rgba(47, 49, 68, 0.25) 67%);
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}
.ag_table .td {
  padding: 8px 12px;
  line-height: 1;
}
.ag_table .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  text-align: center;
  color: var(--sky);
}
.ag_table .td_topic {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-right: 0;
  font-size: 1.075em;
  line-height: 1.3;
}
.ag_table .td_topic .tp_en {
  margin-top: 0.25em;
  color: var(--gold);
  font-weight: 300;
  line-height: 1.2;
}
.ag_table .td_topic .outline {
  margin-top: 6px;
  font-size: 0.825em;
}
.ag_table .td_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 96px;
          flex: 0 0 96px;
  padding-left: 10px;
  padding-right: 16px;
}
.ag_table .td_toggle .tgl {
  cursor: pointer;
  padding: 7px 15px 6px;
  text-align: center;
  line-height: 1;
  border-radius: 20px;
  background-color: var(--black);
  border: 1px solid #fff;
  font-size: 0.875em;
  color: #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.ag_table .td_toggle .tgl:hover {
  background-color: var(--blue);
}
.ag_table .td_spk {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.ag_table .td_spk .spk:nth-child(n+2) {
  margin-top: 14px;
}
.ag_table .td_spk .name {
  font-weight: 700;
  font-size: 1.125em;
}
.ag_table .td_spk .cpy,
.ag_table .td_spk .job {
  color: var(--sky);
  font-size: 0.875em;
}
.ag_table .td_spk .cpy:nth-child(n+2),
.ag_table .td_spk .job:nth-child(n+2) {
  margin-top: 0.5em;
}

.sec_speaker {
  padding-bottom: var(--sec_padding);
}

.spk_cnt {
  margin: 0 -1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.spk_cnt .spk_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
}
.spk_cnt .spk_item:hover .pic img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0.8;
}
.spk_cnt .pic {
  border-radius: 50%;
  margin: 0 auto;
  max-width: 246px;
  padding: 3px;
  background: linear-gradient(135deg, #f5b41a, #ed7e30);
  overflow: hidden;
}
.spk_cnt .pic img {
  border-radius: 50%;
  width: 240px;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.spk_cnt .name {
  margin-top: 0.75em;
  font-size: 1.25em;
  line-height: 1;
  color: var(--sky);
}
.spk_cnt .info {
  margin-top: 0.33em;
  padding: 0 1em;
}

.sec_giveaway {
  padding-bottom: var(--sec_padding);
}

.giveaway_cnt {
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gift_categ {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  position: relative;
  padding: 10px;
  text-align: center;
}
.gift_categ .tag {
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 2;
  padding: 16px 20px 14px;
  border-radius: 4px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: linear-gradient(150deg, var(--sky), var(--blue) 40%);
  -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
}
.gift_categ .item .pic img {
  max-width: 300px;
  border-radius: 4px;
}
.gift_categ .item .name {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  text-align: center;
  line-height: 1.3;
  font-size: 1.125em;
}
.gift_categ .item .title {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid currentColor;
  color: var(--gold);
  font-size: 0.875em;
}

.sec_location {
  background: -webkit-gradient(linear, left top, right top, from(rgba(47, 49, 68, 0)), color-stop(25%, rgba(4, 23, 41, 0.8)), color-stop(80%, var(--black)), to(rgba(4, 23, 41, 0)));
  background: linear-gradient(90deg, rgba(47, 49, 68, 0), rgba(4, 23, 41, 0.8) 25%, var(--black) 80%, rgba(4, 23, 41, 0));
}

.loc_cnt {
  margin: 0 auto;
  padding: 0 3%;
  max-width: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.loc_cnt .info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  padding: 40px 30px;
  padding-right: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loc_cnt .info .sec_title {
  margin-bottom: 20px;
  font-weight: 300;
  text-align: left;
}
.loc_cnt .info .loc {
  margin-bottom: 0.33em;
  font-size: 1.5em;
  color: var(--gold);
}
.loc_cnt .info .addr {
  font-size: 1.125em;
  line-height: 1.2;
  color: var(--sky);
  font-weight: 300;
}
.loc_cnt .info .detail {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.loc_cnt .info .detail ul {
  padding-left: 1.5em;
  margin-bottom: 0;
}
.loc_cnt .info .detail li {
  line-height: 1.3;
}
.loc_cnt .info .detail li ul {
  margin-top: 3px;
  margin-bottom: 10px;
  padding-left: 1.25em;
}
.loc_cnt .info .detail li ul li {
  padding: 5px 0;
}
.loc_cnt .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
  position: relative;
  line-height: 0;
  min-height: 400px;
  -webkit-box-shadow: 0 0 30px 0 rgba(4, 23, 41, 0.33);
          box-shadow: 0 0 30px 0 rgba(4, 23, 41, 0.33);
}
.loc_cnt .map iframe {
  width: 100%;
  height: 100%;
}

.sec_sponsor {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sec_padding);
}

.sponsor_cnt {
  padding: 0 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sps_categ {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.sps_categ .sec_title {
  margin-bottom: 20px;
}
.sps_categ .sec_title .tit {
  text-align: center;
  letter-spacing: normal;
  font-weight: 300;
}
.sps_categ .items {
  margin: 0 -30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sps_categ .item {
  width: min(300px, 100%);
  padding: 20px 0;
  margin: 0 30px;
}
.sps_categ .item img {
  width: 100%;
}
.sps_categ .item.it0 {
  width: 250px;
  max-width: 100%;
}
.sps_categ .item.it1 {
  width: 250px;
  max-width: 100%;
}
.sps_categ .item.it2 {
  width: 436px;
  max-width: 100%;
}
.sps_categ .item.it3 {
  width: 322px;
  max-width: 100%;
}
.sps_categ .item.it4 {
  width: 210px;
  max-width: 100%;
}
.sps_categ:nth-child(n+2) {
  padding-top: 40px;
}

.sec_detail {
  margin-top: var(--sec_padding);
  padding-top: var(--sec_padding);
  padding-bottom: var(--sec_padding);
  background-color: #fff;
  color: #041729;
}

.detail_cnt {
  margin: 0 auto;
  max-width: 918px;
  font-size: 0.875em;
}
.detail_cnt .list {
  padding-left: 1.65em;
  margin-bottom: 0;
}
.detail_cnt .list li {
  padding: 6px 0;
  line-height: 1.3;
}
.detail_cnt .tip {
  margin-top: 20px;
  color: var(--blue);
  text-align: center;
}

.ag_modal {
  color: #000;
}
.ag_modal .modal-header {
  padding: 1rem 1.5rem 0;
  border-bottom-width: 0;
}
.ag_modal .modal-header .spk_name {
  padding-top: 0.5rem;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--blue);
}
.ag_modal .modal-body {
  padding: 0.75rem 1.5rem 1.5rem;
}

@media (max-width: 767px) {
  :root {
    --sec_padding: 45px;
  }
  html {
    font-size: 16px;
  }
  .mainbg {
    background: var(--black);
  }
  .fix_aside {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fix_aside .fx_item {
    font-size: 1em;
    line-height: 16px;
  }
  .fix_aside .fx_item:nth-child(2) {
    margin-top: 0;
    margin-left: 10px;
  }
  .g_header {
    background: var(--black);
  }
  .header_wrap {
    display: block;
    padding: 0;
  }
  .header_wrap .head_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_wrap .menu_trigger {
    padding: 10px;
  }
  .header_wrap .menu_trigger .icon {
    padding: 22px 10px;
  }
  .header_wrap .menu_trigger .icon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  .header_wrap .menu_trigger .icon span:nth-child(2) {
    -webkit-transform: translateY(-2px) rotate(-45deg);
            transform: translateY(-2px) rotate(-45deg);
  }
  .header_wrap .menu_trigger .icon span:first-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header_wrap .menu_trigger .icon span:last-child {
    display: none;
  }
  .header_wrap .menu_trigger .collapsed .icon {
    padding: 15px 10px;
  }
  .header_wrap .menu_trigger .collapsed .icon span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
  }
  .header_wrap .menu_trigger .collapsed .icon span:nth-child(2) {
    margin: 6px 0;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  .header_wrap .menu_trigger .collapsed .icon span:first-child {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .header_wrap .menu_trigger .collapsed .icon span:last-child {
    display: block;
    width: 18px;
  }
  .header_wrap .head_topic {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding-right: 16px;
  }
  .header_wrap .nav_cnt {
    padding: 0 10px 10px;
  }
  .header_wrap .nav_link {
    padding: 12px 16px;
  }
  .header_wrap .sign_item {
    text-align: right;
    font-size: 1.25em;
    height: 64px;
    line-height: 1;
  }
  .header_wrap .sign_item.nav_item {
    display: none;
  }
  .header_wrap .sign_item .nav_link {
    display: inline-block;
    padding: 24px 20px 20px;
  }
  .header_wrap .sign_item .nav_link::after {
    -ms-grid-column-align: start;
        justify-self: start;
  }
  .g_kv {
    height: min(100vw, 67vh);
  }
  .g_kv .cover::before {
    top: 49.75%;
    height: 3vw;
    margin-top: -1.5vw;
  }
  .g_kv .cover::after {
    width: 3vw;
    margin-left: -1.5vw;
  }
  .g_kv .cover .circle {
    width: 80vw;
    height: 80vw;
    margin-left: -40vw;
    margin-top: -40vw;
  }
  .g_kv .wrap .title {
    padding-top: 8vw;
  }
  .g_kv .wrap .title .t1 {
    width: 50vw;
  }
  .g_kv .wrap .title .t2 {
    bottom: 0;
    width: 95vw;
  }
  .g_kv .wrap .title .t3 {
    margin-top: 21vw;
    width: 55vw;
  }
  .g_kv .wrap .timer {
    padding-top: 5vw;
    padding-bottom: 3vw;
  }
  .g_kv .date {
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .g_kv .date img {
    margin-left: -4%;
    width: 108%;
  }
  .g_kv .timer .time_box {
    padding-right: 1vw;
    font-size: 14px;
    overflow: hidden;
  }
  .g_kv .timer .tb {
    background: rgba(4, 23, 41, 0.75);
  }
  .g_kv .timer .tb:first-child {
    border-radius: 10px 0 0 10px;
  }
  .g_kv .timer .tb:last-child {
    border-radius: 0 10px 10px 0;
  }
  .sec_intro .container {
    padding: 0 30px;
  }
  .intro_cnt .strong {
    line-height: 1.3;
  }
  .sec_agenda {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(4, 23, 41, 0.8)), to(rgba(4, 23, 41, 0)));
    background: linear-gradient(rgba(4, 23, 41, 0.8) 96%, rgba(4, 23, 41, 0));
  }
  .sec_agenda .container {
    padding: 0 30px;
  }
  .agenda_cnt {
    padding: 0;
  }
  .ag_table .tr {
    display: block;
  }
  .ag_table .td {
    padding: 4px 0;
  }
  .ag_table .td_time {
    text-align: left;
  }
  .ag_table .td_topic {
    line-height: 1.3;
  }
  .ag_table .td_toggle {
    padding-left: 0;
    padding-top: 6px;
    padding-bottom: 12px;
  }
  .ag_table .td_toggle .tgl {
    display: inline-block;
  }
  .spk_cnt .spk_item {
    padding: 20px 15px;
  }
  .spk_cnt .pic {
    max-width: 206px;
  }
  .spk_cnt .pic img {
    width: 200px;
    height: 200px;
  }
  .sps_categ:nth-child(1) {
    padding-top: 40px;
  }
  .sps_categ .sec_title {
    margin-bottom: 15px;
  }
  .sps_categ .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sps_categ .item {
    text-align: center;
    margin: 0 auto;
    padding: 30px;
  }
  .sps_categ .item.it0 {
    width: 275px;
  }
  .sps_categ .item.it4 {
    width: 260px;
  }
  .giveaway_cnt {
    padding-bottom: 0;
  }
  .gift_categ:nth-child(n+2) {
    margin-top: 20px;
  }
  .sec_location {
    background: rgba(47, 49, 68, 0.5);
  }
  .loc_cnt {
    display: block;
    padding: var(--sec_padding) 30px;
  }
  .loc_cnt .info {
    padding-left: 0;
    padding-bottom: 0;
  }
  .loc_cnt .info .addr {
    font-size: 1.125em;
  }
  .loc_cnt .map {
    padding-top: 100%;
  }
  .loc_cnt .map iframe {
    position: absolute;
    left: 0;
    top: 0;
  }
  .detail_cnt {
    padding-right: 4px;
    padding-bottom: var(--sec_padding);
  }
  .detail_cnt .tip {
    padding: 0 2em;
  }
}