body {
  font-family: "Source Sans 3", "Noto Sans TC", sans-serif;
  background: linear-gradient(90deg, black, 65%, #150220) no-repeat;
}

.container {
  max-width: 1000px;
}

.main_color {
  color: #00837f;
}

table {
  width: auto !important;
}

.sub_color {
  color: #084b70;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  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-color: #fff;
  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-color: #5dc32e;
  color: #fff;
  line-height: 1.3;
}
.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.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.g_header.is_active {
  background-color: #00837f;
}
.g_header.is_active .nav_area .nav_item {
  font-size: 14px;
}
.g_header.is_active .nav_area .nav_link {
  padding: 8px 12px;
  transition: all 0.3s ease-in-out;
}
.g_header.is_active .header_sns {
  padding: 0 12px;
}
.g_header.is_active .header_sns .hover img {
  width: 30px;
}
.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: flex;
}
.g_header .menu_btn {
  position: relative;
  width: 40px;
  height: 30px;
  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_area .nav_content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.g_header .nav_area .nav_cnt {
  display: inline-flex;
}
.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}
.g_header .nav_area .nav_item.is_highlight .nav_link {
  border: 1px solid #5dc32e;
  background-color: #5dc32e;
  color: #000;
  transition: all 0.2s ease-out;
}
.g_header .nav_area .nav_item.is_highlight .nav_link:hover {
  background-color: transparent;
  color: #5dc32e;
}
.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  color: #5dc32e;
  text-decoration: none;
}
.g_header .header_sns {
  flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}
.g_header .header_sns .hover {
  display: inline-block;
  position: relative;
}
.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
  transition: all 0.2s ease-out;
}
.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}
.g_header .header_sns .hover_holder {
  cursor: pointer;
}
.g_header .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.bttn {
  display: inline-block;
}
.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #00837f;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .xl_size {
  font-size: 2em;
}
.bttn .lg_size {
  font-size: 1.5em;
}
.bttn .sm_size {
  font-size: 1em;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .main_b {
  background-color: #00837f;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.bttn .main_b:hover {
  background-color: #5dc32e;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #00837f;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  background-color: #fff;
  color: #00837f;
}
.bttn .sub_b:hover {
  background-color: #ffecca;
}

.g_kv {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 800px;
  overflow: hidden;
  background-color: #00837f;
}
.g_kv img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.g_kv .logo {
  position: absolute;
  width: 9.375%;
  top: 5%;
  left: 4%;
}
.g_kv .kvBg {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background-color: #00837f;
}
.g_kv .kvBg img {
  animation: foltBg 15s ease-in-out alternate infinite;
}
@keyframes foltBg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  0% {
    transform: scale(1);
  }
}
.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29.6875%;
  transform: translate(-120%, -50%);
}
.g_kv .tit .t1 {
  position: relative;
  width: 100%;
}
.g_kv .CTA_btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  border-radius: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border: 2px solid #e50012;
  background-color: #e50012;
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_tit {
  position: relative;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto 70px auto;
  border-bottom: 1px #838383 solid;
  text-align: center;
}
.sc_tit p {
  position: relative;
  display: inline-block;
  padding: 20px 35px;
  margin: 0;
  font-size: 2.25rem;
  letter-spacing: 3px;
  font-weight: bold;
  color: #000;
}
.sc_tit p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  background-color: #838383;
}

.CTA_QR {
  position: relative;
  width: 100%;
  background-color: transparent;
  padding: 20px 0;
}
.CTA_QR .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.CTA_QR .box {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.CTA_QR .QR {
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.CTA_QR .ps {
  position: relative;
  width: 100%;
  padding: 25px;
  text-align: left;
  color: #000;
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  padding: 10px auto;
  color: #e20036;
}

.cta_cnt {
  position: relative;
  padding: 40px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_cnt-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 30px;
  background: url(img/btn_bg.jpg) center/cover no-repeat;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-out;
  border-radius: 5px;
}
.cta_cnt-btn .btn_inner {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 80px;
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  font-weight: bolder;
  font-style: italic;
  letter-spacing: 5px;
  transition: all 0.2s ease-out;
}
.cta_cnt-btn:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}
.cta_cnt-btn:hover .btn_inner {
  letter-spacing: 10px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}

.sc_intro {
  background-color: #fff;
}

.intro_cnt {
  position: relative;
  text-align: justify;
}
.intro_cnt .tit {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 35px auto;
}
.intro_cnt p {
  margin-bottom: 8px;
  padding: 4px 0;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.8;
  text-indent: 2em;
}

.pos_info {
  position: relative;
  width: 100%;
  margin: 35px auto;
  text-align: center;
}
.pos_info .items {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.pos_info .items .item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 5px 0;
}
.pos_info .items .item p {
  position: relative;
  padding: 0 0 0 15px;
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #343a40;
  text-align: left;
  letter-spacing: 1px;
}
.pos_info .items .item p span {
  color: #00837f;
  font-size: 1.625rem;
  text-decoration: underline;
}
.pos_info .line {
  position: relative;
  width: 100%;
  height: 3px;
  margin: 25px auto;
}
.pos_info .line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 200px;
  height: 3px;
  background-image: linear-gradient(to right, #23948B 33%, rgba(35, 148, 139, 0) 0%);
  background-position: bottom;
  background-size: 10px 3px;
  background-repeat: repeat-x;
}

.typhoon {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #900000;
  font-size: 1.25rem;
}

.sc_agenda {
  position: relative;
  padding: 30px 0 0 0;
  background-color: #fff;
}
.sc_agenda .sc_tit {
  padding: 0;
  margin: 0 auto;
}
.sc_agenda-cnt {
  background-color: #F4F4F4;
  padding: 60px 0;
}

.agd_cnt {
  position: relative;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #000;
  font-size: 19px;
  font-weight: 300;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 131, 127, 0.4);
}
.agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
}
.agd_cnt .tr.tr_light {
  background-color: #00837f;
  color: #fff;
  border-bottom: 1px solid #00837f;
}
.agd_cnt .tr.tr_light .td {
  padding: 10px 15px;
}
.agd_cnt .tr.noBorder {
  border: 0;
}
.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  background-color: transparent;
  color: #000;
}
.agd_cnt .td {
  padding: 10px 15px;
}
.agd_cnt .td_time {
  flex: 0 0 150px;
  text-align: center;
}
.agd_cnt .td_title {
  display: inline-flex;
  align-items: center;
}
.agd_cnt .ag_tit {
  position: relative;
  flex: 1 1 auto;
  font-weight: 300;
  font-size: 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.agd_cnt .ag_tit ol {
  position: relative;
  padding: 0 0 0 30px;
}
.agd_cnt .ag_tit ol li {
  margin: 10px auto;
}
.agd_cnt .ag_tit .topic_btn {
  position: relative;
  min-width: 78px;
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 2.1875rem;
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.agd_cnt .ag_tit .topic_btn:hover {
  color: #fff;
  background-color: #5a5a5a;
}
.agd_cnt .topic_toggle {
  flex: 0 0 100px;
}
.agd_cnt .ag_spk {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  line-height: 1.35;
  box-sizing: border-box;
  padding: 5px 0;
}
.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}
.agd_cnt .ag_spk .sp {
  position: relative;
  width: 100%;
  font-weight: bold;
  margin: 15px auto;
}
.agd_cnt .ag_spk .job {
  position: relative;
  color: #343a40;
  margin: 0 10px 0 0;
}
.agd_cnt .ag_spk .name {
  margin: 0;
  color: #000;
  display: block;
}
.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: #343a40;
}

.agd_normal .td_title {
  flex: 1 1 0;
}
.agd_normal .td_speaker {
  flex: 0 1 300px;
}

.ag_tip {
  text-align: center;
}
.ag_tip span {
  color: #980000;
  display: inline-block;
  margin: 15px auto;
}

.sc_spk {
  padding: 30px 0 80px;
  background-color: #F4F4F4;
}
.sc_spk .container-fluid {
  max-width: 1000px;
}
.sc_spk .sc_tit {
  padding: 0;
  margin: 0 auto;
}
.sc_spk-cnt {
  position: relative;
  background-color: #F4F4F4;
}

.spk_cnt {
  position: relative;
  padding: 25px 0;
}
.spk_cnt .items {
  position: relative;
  box-sizing: border-box;
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.spk_cnt .items .item {
  position: relative;
  flex: 0 1 calc(25% - 30px);
}
.spk_cnt .items .item .pic {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 10px;
  background: linear-gradient(120deg, #00837f, #5dc32e);
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  transform: scale(1);
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.spk_cnt .items .item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  height: auto;
  display: block;
  overflow: hidden;
}
.spk_cnt .items .item .pic:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.spk_cnt .items .item .t {
  position: relative;
  text-align: center;
  color: #00837f;
  font-size: 1rem;
  margin: 15px auto 5px;
}
.spk_cnt .items .item .n {
  position: relative;
  text-align: center;
  color: #000;
  font-size: 1.125rem;
  font-weight: normal;
}

.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: #00837f;
}
.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: #000;
  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: 1rem;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
}
.modal .modal-body span {
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  margin: 15px 0;
  display: block;
  font-family: "Avenir-Black", "Noto Sans TC", sans-serif;
}
.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: 1rem;
  list-style: decimal;
  padding: 0 0 0 20px;
}
.modal .modal-body ul {
  font-size: 1rem;
  list-style: disc;
  padding: 0 0 0 20px;
}
.modal .modal-body li {
  position: relative;
  margin: 10px 0;
}
.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: #5dc32e;
  border: 1px solid #5dc32e;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.modal .modal-footer .btn:hover {
  color: #5dc32e;
  background-color: #fff;
}

.sc_gift {
  padding: 0;
  background-color: #F4F4F4;
}
.sc_gift .container-fluid {
  max-width: 1000px;
}
.sc_gift .sc_tit {
  padding: 0;
  margin: 0 auto;
}
.sc_gift-cnt {
  position: relative;
  background-color: #F4F4F4;
}
.sc_gift-cnt .top {
  position: relative;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #00837f;
  margin: 25px auto;
}
.sc_gift-cnt .line {
  position: relative;
  width: 100%;
  height: 3px;
  margin: 25px auto 50px;
}
.sc_gift-cnt .line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 3px;
  background-image: linear-gradient(to right, #00837f 33%, rgba(0, 131, 127, 0) 0%);
  background-position: bottom;
  background-size: 10px 3px;
  background-repeat: repeat-x;
}

.gift_cnt {
  position: relative;
  padding: 25px 0;
}
.gift_cnt .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.gift_cnt .item {
  flex: 0 0 33%;
  padding: 0 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.gift_cnt .item .img {
  border-radius: 15px;
  max-width: 250px;
  max-height: 250px;
  background: linear-gradient(135deg, #00837f, #23948B, #5dc32e);
  padding: 6px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img img {
  border-radius: 15px;
  max-width: 100%;
  display: block;
  background-color: #fff;
}
.gift_cnt .item .tit {
  border-radius: 2px;
  margin: 0 auto;
  margin-top: -1.5rem;
  padding: 0.5rem 1rem;
  background-color: #00837f;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .sub {
  position: relative;
  margin: 10px auto 3px;
  font-size: 1.0625rem;
  color: #343a40;
  text-align: center;
}
.gift_cnt .item .text {
  font-size: 0.875rem;
  color: #00837f;
}

.sc_location {
  background-color: white;
}
.sc_location .loc_map {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.sc_location .loc_map iframe {
  position: relative;
  width: 100%;
  height: 449.99994375px;
}

.location_cnt .loc_top {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: baseline;
}
.location_cnt .loc_top .loc {
  color: #00837f;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #343a40;
}

.sc_detail {
  color: #fff;
  background-color: #4D4D4D;
}
.sc_detail .spW {
  position: relative;
  font-size: 1.3125rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px 0;
}
.sc_detail .spW a {
  color: #fff;
}
.sc_detail .list {
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}
.sc_detail .list li span {
  font-weight: 300;
}
.sc_detail .detail_cnt .pss {
  box-sizing: border-box;
  padding: 0 20px 20px 30px;
}
.sc_detail .detail_cnt .pss span {
  font-weight: 300;
  font-size: 0.8125rem;
}
.sc_detail .detail_cnt .pss .CTA_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background-color: #5dc32e;
  border: 1px solid #5dc32e;
  border-radius: 10px;
  text-decoration: none;
  box-sizing: border-box;
  padding: 10px 25px;
  transition: all 0.2s ease-out;
}
.sc_detail .detail_cnt .pss .CTA_btn:hover {
  color: #5dc32e;
  background-color: transparent;
}
.sc_detail .detail_cnt a {
  text-decoration: underline;
  transition: all 0.2s ease-out;
}
.sc_detail .detail_cnt a:hover {
  color: #5dc32e;
}
.sc_detail .ps {
  font-size: 0.75rem;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

@media (max-width: 1600px) {
  .main_sc {
    padding: 30px 0;
  }
  .intro_cnt .tit {
    font-size: 28px;
    margin: 0 auto 35px auto;
  }
  .intro_cnt p {
    margin-bottom: 8px;
    padding: 4px 0;
    font-size: 18px;
  }
  .cta_cnt {
    padding: 40px 0 0;
  }
  .cta_cnt-btn {
    padding: 5px;
  }
  .cta_cnt-btn .btn_inner {
    padding: 5px 60px;
    font-size: 26px;
    letter-spacing: 5px;
  }
  .agd_cnt {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .agd_cnt .tr.tr_light .td {
    padding: 10px 15px;
  }
  .agd_cnt .td {
    padding: 10px 15px;
  }
  .agd_cnt .td_time {
    flex: 0 0 150px;
  }
}
@media (max-width: 768px) {
  .g_header {
    background-color: #00837f;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv {
    padding: 50px 0 0;
    height: 310px;
  }
  .g_kv .logo {
    position: absolute;
    width: 25%;
    top: 20%;
    left: auto;
    right: 5%;
  }
  .g_kv .kvBg {
    width: 220vw;
    margin: 0 0 0 -30px;
  }
  .g_kv .tit {
    transform: translate(-50%, -20%);
    width: 80%;
  }
  .main_sc {
    padding: 30px 0;
  }
  .CTA_QR {
    padding: 20px 0;
  }
  .CTA_QR .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .CTA_QR .box {
    flex-direction: column;
    padding: 30px 5px;
  }
  .CTA_QR .QR {
    max-width: 200px;
  }
  .CTA_QR .ps {
    padding: 25px 0;
    text-align: center;
  }
  .cta_cnt {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .cta_cnt .bttn {
    margin: 10px 0;
  }
  .sc_tit {
    padding: 0;
    margin: 0 auto 50px auto;
  }
  .sc_tit p {
    padding: 10px 25px;
    margin: 0;
    font-size: 1.75rem;
  }
  .intro_cnt {
    text-align: justify;
  }
  .intro_cnt .tit {
    font-size: 24px;
    margin: 0 auto 25px auto;
  }
  .intro_cnt p {
    font-size: 1rem;
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .pos_info {
    margin: 15px auto;
  }
  .pos_info .items .item {
    margin: 5px 0;
  }
  .pos_info .items .item p {
    padding: 0 0 0 10px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .pos_info .line {
    position: relative;
    width: 100%;
    height: 3px;
    margin: 25px auto;
  }
  .pos_info .line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 200px;
    height: 3px;
    background-image: linear-gradient(to right, #23948B 33%, rgba(35, 148, 139, 0) 0%);
    background-position: bottom;
    background-size: 10px 3px;
    background-repeat: repeat-x;
  }
  .sc_agenda .ag_tip {
    font-size: 0.75rem;
  }
  .agd_cnt {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 1rem;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: 0.2em 1em;
  }
  .agd_cnt .td:first-child {
    padding-top: 1em;
  }
  .agd_cnt .td:last-child {
    padding-bottom: 1em;
  }
  .agd_cnt .td_time {
    text-align: left;
  }
  .agd_cnt .td_title {
    display: block;
    font-weight: bold;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .sc_spk {
    padding: 20px 0 30px;
  }
  .spk_cnt {
    padding: 15px 0;
  }
  .spk_cnt .items {
    position: relative;
    box-sizing: border-box;
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .spk_cnt .items .item {
    position: relative;
    flex: 0 1 calc(50% - 20px);
  }
  .spk_cnt .items .item .t {
    font-size: 0.875rem;
    margin: 10px auto 5px;
  }
  .spk_cnt .items .item .n {
    font-size: 1rem;
  }
  .sc_gift .sc_tit {
    padding: 0;
    margin: 0 auto;
  }
  .sc_gift-cnt .top {
    font-size: 1rem;
    margin: 30px auto 15px;
  }
  .gift_cnt {
    padding: 15px 0;
  }
  .gift_cnt .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  .gift_cnt .item {
    flex: 0 0 50%;
    padding: 15px 15px;
  }
  .gift_cnt .item .img {
    border-radius: 5px;
    max-width: 250px;
    max-height: 250px;
    padding: 3px;
  }
  .gift_cnt .item .img img {
    border-radius: 3px;
  }
  .gift_cnt .item .tit {
    margin-top: -1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.125rem;
  }
  .gift_cnt .item .sub {
    margin: 5px auto 2px;
    font-size: 0.875rem;
  }
  .gift_cnt .item .text {
    font-size: 0.875rem;
    color: #00837f;
  }
  .sc_location .loc_map iframe {
    height: 56.2499929688vw;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 1.5rem;
  }
  .modal .modal-header .sub {
    font-size: 1rem;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.6;
  }
  .modal .modal-body span {
    font-size: 1.5rem;
  }
  .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;
  }
}/*# sourceMappingURL=style.css.map */