@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}

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(135deg, #d4610f, #f79415);
  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;
}

.cta {
  margin-top: 5rem;
}
.cta .cta_word {
  line-height: 1.1;
}
.cta .bttns {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta .bttn {
  display: block;
  flex: 0 0 45%;
  border-radius: 4px;
  padding: 1px;
  transition: transform 300ms;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.cta .bttn .wrp {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  transition: all 0.2s;
  background-color: rgba(89, 196, 240, 0.1);
  border: solid 2px #59C4F0;
  box-sizing: border-box;
  border-radius: 10px;
}
.cta .bttn .wrp.blue {
  background-color: rgba(46, 60, 100, 0.67);
}
.cta .bttn .t {
  flex: 0 1 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1;
  text-align: left;
}
.cta .bttn .t span {
  font-size: 1.25rem;
  color: #ffffff;
}
.cta .bttn .t div {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #FFF362;
  font-weight: bold;
}
.cta .bttn .i {
  flex: 0 0 50px;
}
.cta .bttn:hover {
  transform: scale(1.04) translate3d(0, 0, 0);
  text-decoration: none;
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}
.cta .bttn:hover .wrp {
  background-color: #12296e;
  transition: all 0.2s;
}
.cta .bttn.done .wrp {
  border: none;
}
.cta .bttn.done .wrp .t div {
  color: #c0c0c0;
}
.cta .bttn.done:hover {
  transform: none;
  text-decoration: none;
  box-shadow: none;
}
.cta .bttn.done:hover .wrp {
  background-color: rgba(89, 196, 240, 0.1);
  transition: none;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  position: relative;
  display: inline-block;
  padding: 1rem 5rem 1rem;
  background: linear-gradient(90deg, rgba(3, 23, 55, 0), rgba(65, 70, 209, 0.8), rgba(3, 23, 55, 0));
  font-size: 1.5rem;
  color: #fff;
}
.sc_title.t2 {
  margin-top: 100px;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  opacity: 0;
  background: linear-gradient(0deg, #1b006d, #031739) no-repeat;
  transition: all 0.3s ease-in-out;
}
.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 {
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
}
.g_header .nav_link:hover {
  color: #f8961e;
  text-decoration: none;
}
.g_header .dropdown-toggle {
  cursor: pointer;
}
.g_header .dropdown-item {
  padding: 0.5rem 1rem;
  text-align: center;
}
.g_header .dropdown-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #f8961e, #e3701e);
}
.g_header .dropdown_link {
  display: block;
  padding: 0.75rem 1rem;
}
.g_header .dropdown_link:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}
.g_header.is_active {
  opacity: 1;
  background-color: #000;
}
.g_header.is_active .nav_link {
  color: #fff;
}

@keyframes scalee {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.03);
    opacity: 0.67;
  }
}
.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.g_kv .desktop {
  position: relative;
  height: 50vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@keyframes float {
  0% {
    transform: scale(1.2) translateX(20px);
  }
  50% {
    transform: scale(1.1) translate(-15px);
  }
  100% {
    transform: scale(1.2) translate(0);
  }
}
.g_kv .kv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/kv_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: float 20s linear alternate infinite;
}
.g_kv .kv_tit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 67.7083333333%;
  transform: translate(-68%, -53%);
}
.g_kv .kv_tit .logos {
  width: 72%;
}
.g_kv .kv_tit .logos img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .t1 {
  width: 60%;
  margin-top: 8%;
  margin-left: 3%;
}
.g_kv .kv_tit .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .location {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 13%;
  margin-left: 5%;
}
.g_kv .kv_tit .location .t2 {
  bottom: 0;
  height: 95px;
}
.g_kv .kv_tit .location .t2 img {
  height: 100%;
}
.g_kv .kv_tit .location .t3 {
  bottom: 0;
  height: 95px;
}
.g_kv .kv_tit .location .t3 img {
  height: 100%;
}
.g_kv .kv_tit .location .t4 {
  bottom: 0;
  height: 95px;
}
.g_kv .kv_tit .location .t4 img {
  height: 100%;
}
.g_kv .kv_tit .location .t5 {
  bottom: 0;
  height: 95px;
}
.g_kv .kv_tit .location .t5 img {
  height: 100%;
}
.g_kv .kv_ball {
  position: absolute;
  left: 0;
  bottom: -45%;
  width: 100%;
}
.g_kv .kv_ball img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.g_kv .kv_logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 31.25%;
  height: auto;
}

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

.sc_intro {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
}
.sc_intro .intro_wrap {
  max-width: calc(1200px + 2rem);
  margin: 0 auto 1em;
  padding: 0 1rem;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 400;
}
.sc_intro .intro_wrap p {
  text-align: center;
}
.sc_intro .intro_wrap ul {
  padding-left: 3rem;
  padding-right: 1.25rem;
  font-weight: 400;
}
.sc_intro .intro_wrap ul li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.sc_intro .intro_wrap .checkHighLight {
  position: relative;
  width: 100%;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  left: 50%;
  transform: translateX(-25%);
}
.sc_intro .intro_wrap .checkHighLight .check {
  position: relative;
  border-radius: 30px;
  border: 0 solid #f79415;
  width: auto;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
}
.sc_intro .intro_wrap .checkHighLight .check img {
  position: relative;
  width: 30px;
  height: auto;
}
.sc_intro .intro_wrap .checkHighLight .check .cnt {
  position: relative;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 21px;
  color: rgb(1, 253, 146);
}
.sc_intro .intro_wrap .titleText {
  display: block;
  text-align: center;
  margin: 0px auto 20px auto;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(#EEE93A 20%, #fffeda, #fffb7f, #EEE93A);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transform: rotateX("120deg");
}
.sc_intro .cta {
  text-align: center;
}
.sc_intro .cta .bttn {
  margin: 0.5rem auto;
}
.sc_intro .cta .cta_word {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e3701e;
}

.sc_agenda {
  position: relative;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
  padding: 3rem 0 4rem;
}
.sc_agenda .ps {
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.agenda_cnt .ag_row {
  display: flex;
  margin-bottom: 3px;
}
.agenda_cnt .ag_row.ag_tit {
  background-color: rgba(89, 196, 240, 0.5);
}
.agenda_cnt .ag_row.ag_tit .td.td_time {
  flex: 0 0 auto;
  background-color: transparent;
}
.agenda_cnt .ag_row.ag_tit .td.td_tit {
  flex: 0 0 77%;
  background-color: transparent;
}
.agenda_cnt .ag_row.ag_tit .td.td_tit .title {
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}
.agenda_cnt .ag_row.ag_sp .title {
  color: rgba(87, 97, 106, 0.7);
  font-size: 21px;
  line-height: 1.5;
  font-weight: bold;
}
.agenda_cnt .ag_row.ag_sp .title .tit {
  color: #000;
}
.agenda_cnt .ag_row.ag_sp .title .topic {
  color: #d4610f;
}
.agenda_cnt .ag_row .topic_toggle {
  flex: 0 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agenda_cnt .ag_row .topic_toggle .bttn {
  display: inline-block;
}
.agenda_cnt .ag_row .topic_toggle .bttn .bttn_inner {
  color: #01FD92;
  border: solid 1px #01FD92;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  display: block;
  text-align: center;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.agenda_cnt .ag_row .topic_toggle .bttn .xs_size {
  padding: 0.35em 0.5em;
  font-size: 0.95em;
}
.agenda_cnt .td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
}
.agenda_cnt .td.td_time {
  flex: 0 0 auto;
  background-color: rgba(89, 196, 240, 0.5);
}
.agenda_cnt .td.td_tit {
  flex: 0 0 50%;
}
.agenda_cnt .td.td_spk {
  flex: 0 1 40%;
  line-height: 1.3;
  background-color: rgba(27, 0, 109, 0.5);
}
.agenda_cnt .td .time {
  color: #ffffff;
}
.agenda_cnt .td .title {
  font-size: 1.25rem;
  line-height: 1.2;
}
.agenda_cnt .td .spk {
  color: white;
  margin: 5px 0;
}
.agenda_cnt .td .spk .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #EEE93C;
}
.agenda_cnt .td .spk .tit {
  margin-top: 2px;
}

.sc_speaker {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
}

.spk_cnt .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  justify-content: center;
}
.spk_cnt .items.special {
  justify-content: center;
}
.spk_cnt .items.special .item_wrap {
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.spk_cnt .items.special .item_wrap .img {
  margin: 0 auto;
}
.spk_cnt .item_wrap {
  width: 33%;
  max-width: 33%;
  flex: 1 0 33%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.spk_cnt .item_wrap .item {
  height: 100%;
  overflow: hidden;
  color: #000;
  cursor: pointer;
  text-align: center;
}
.spk_cnt .item_wrap .item .img {
  width: 200px;
  background: transparent;
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.4s;
}
.spk_cnt .item_wrap .item img {
  max-width: 100%;
  display: block;
  border: solid 5px;
  border-image: linear-gradient(45deg, #59c4f0, rgba(89, 196, 240, 0), #59c4f0, rgba(89, 196, 240, 0)) 20;
}
.spk_cnt .item_wrap .item .speaker {
  padding: 1rem 0;
  line-height: 1.1;
}
.spk_cnt .item_wrap .item .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #EEE93C;
}
.spk_cnt .item_wrap .item .com {
  margin-top: 0.75rem;
}
.spk_cnt .item_wrap .item .tit {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  color: white;
}
.spk_cnt .item_wrap.wrap2 {
  width: 250%;
  max-width: 40%;
  flex: 1 0 40%;
}
.spk_cnt .item_wrap.wrap2 .item .img {
  width: 248px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc_gift {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
}

.gift_cnt .gift_intro {
  margin: 0 auto 2rem;
  padding: 0 1em;
  max-width: 50em;
  font-size: 1.25rem;
}
.gift_cnt .gift_intro p {
  margin-bottom: 0;
}
.gift_cnt .items {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.gift_cnt .item {
  position: relative;
  flex: 0 1 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gift_cnt .item .type {
  border-radius: 2px 10px 0 0;
  display: inline-block;
  background-color: #4cb3cf;
  padding: 0.5rem 2rem 0.5rem 1rem;
  line-height: 1;
  color: #fff;
}
.gift_cnt .item .img img {
  max-width: 150px;
}
.gift_cnt .item .title {
  font-size: 1.5rem;
  margin: 10px 0;
  font-weight: bold;
  color: #EEE93C;
}
.gift_cnt .item .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gift_cnt .item .content .name {
  color: #ffffff;
  font-size: 1.25rem;
  text-align: center;
}
.gift_cnt .item .content .tit {
  color: #bfbfbf;
  font-size: 1rem;
}
.gift_cnt .item .txt {
  margin-top: 1rem;
  padding: 0.5em 2rem 2rem;
  text-align: center;
  line-height: 1;
}
.gift_cnt .item .att {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
.gift_cnt .item .att .t {
  flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.gift_cnt .item .att .l {
  margin-top: 3px;
  flex: 0 0 3rem;
  height: 1px;
  background-color: #fff;
}
.gift_cnt .item .name {
  margin-top: 0.5rem;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
}
.gift_cnt .item .count {
  margin: 1rem 0;
}
.gift_cnt .item .price {
  border: 1px solid #4cb3cf;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.gift_cnt .more {
  margin-top: 1rem;
  text-align: center;
}
.gift_cnt .more_inner {
  display: inline-block;
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.sc_detail {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
}
.sc_detail ul,
.sc_detail ol {
  padding-left: 1.25em;
}
.sc_detail li {
  color: white;
  line-height: 1.3;
  padding: 0.33rem 0;
}

.sc_location {
  padding: 3rem 0;
  position: relative;
  background: linear-gradient(rgba(1, 22, 53, 0.9), rgba(81, 86, 255, 0.9), rgba(1, 22, 53, 0.9));
}
.sc_location .location_cnt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 10px;
}
.sc_location .loc_wrap {
  flex: 0 0 49%;
}
.sc_location .info_wrap {
  margin-bottom: 10px;
  padding-left: 5px;
}
.sc_location .info_wrap .part {
  font-size: 1.5rem;
  color: #EEE93C;
  font-weight: 700;
  display: flex;
}
.sc_location .info_wrap .loca {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.sc_location .info_wrap .addr {
  display: inline-block;
  border-radius: 4px;
  font-size: 1rem;
  margin-left: 10px;
  color: #d8d8d8;
}
.sc_location .info_wrap .des {
  font-size: 12px;
  padding: 2% 3%;
  background: #f8f8f8;
  height: 330px;
}
.sc_location .info_wrap .des ol,
.sc_location .info_wrap .des ul {
  margin: 0;
  padding: 0;
  padding-left: 3%;
}
.sc_location .info_wrap .des ol li,
.sc_location .info_wrap .des ul li {
  margin: 10px 0;
}
.sc_location .map_wrap .map {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
}
.sc_location .map_wrap .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.g_footer {
  padding: 2rem 0;
  background: linear-gradient(90deg, #d4610f, #f79415) no-repeat;
}
.g_footer .foo_logo {
  margin: 0 auto;
  max-width: 200px;
}

@media (max-width: 768px) {
  .g_header .nav_cnt {
    position: absolute;
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    background: linear-gradient(180deg, #1b006d, #031739) no-repeat;
  }
  .g_header .nav_link {
    padding: 1rem 2rem;
  }
  .cta .bttns {
    display: block;
  }
  .g_kv .desktop {
    height: 90vw;
  }
  .g_kv .desktop .kv_bg {
    position: relative;
    background-position: bottom center;
    bottom: 0;
  }
  .g_kv .kv_tit {
    width: 80%;
    transform: translate(-55%, -50%);
  }
  .g_kv .kv_tit .t1 {
    width: 80%;
    margin-left: 0;
  }
  .g_kv .kv_tit .location {
    gap: 15px;
    margin-top: 20%;
    margin-left: 0;
  }
  .g_kv .kv_tit .location .t2,
  .g_kv .kv_tit .location .t3,
  .g_kv .kv_tit .location .t4,
  .g_kv .kv_tit .location .t5 {
    height: 8vh;
  }
  .g_kv .kv_ball {
    bottom: -25%;
  }
  .sc_intro .intro_wrap {
    font-size: 1.125rem;
  }
  .sc_intro .intro_wrap .titleText {
    font-size: 1.4rem;
  }
  .sc_intro .intro_wrap ul {
    padding-left: 1.75rem;
    padding-right: 0.5rem;
  }
  .sc_intro .cta {
    margin-top: 3rem;
  }
  .sc_intro .cta .bttn .wrp {
    padding: 1rem;
  }
  .sc_intro .cta .bttn .i {
    flex: 0 0 30px;
  }
  .sc_intro .cta .bttn .t div {
    font-size: 1rem;
  }
  .ag_table {
    margin-bottom: 2rem;
  }
  .ag_table .ag_row {
    display: block;
    margin-bottom: 10px;
  }
  .ag_table .ag_row .topic_toggle {
    width: 100%;
    display: block;
    padding: 1rem 0 1rem 1rem;
  }
  .ag_table .td.td_time {
    min-height: auto;
  }
  .ag_table .td.td_spk .com {
    margin-top: 0.25rem;
  }
  .sc_agenda {
    padding-bottom: 2rem;
  }
  .spk_cnt .items,
  .gift_cnt .items {
    flex-direction: column;
    gap: 50px;
  }
  .spk_cnt .item_wrap {
    width: 100%;
    max-width: 100%;
  }
  .spk_cnt .item_wrap .item {
    margin-bottom: 1rem;
    text-align: center;
  }
  .spk_cnt .item_wrap .item .img {
    display: inline-block;
  }
  .spk_cnt .item_wrap .item .tit {
    padding: 0.25rem 0;
  }
  .spk_cnt .item_wrap.wrap2 {
    width: 100%;
    max-width: 100%;
  }
  .sc_location .location_cnt {
    display: block;
  }
  .sc_location .loc_wrap {
    margin-bottom: 1rem;
  }
  .sc_location .loc_wrap .des {
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */