html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.sec_wrap {
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 1440px) {
  .sec_wrap {
    max-width: 1440px;
  }
}
.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: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(51, 51, 51, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(135deg, #0076ce, #41b6e6);
  color: #fff;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(51, 51, 51, 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;
}

.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: #0076ce;
}
.g_header.is_active .nav_item {
  font-size: 1rem;
}
.g_header.is_active .header_wrap {
  padding: 0;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
  transition: padding 300ms;
}
.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_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  padding: 0 1rem;
  display: inline-flex;
}
.g_header .nav_item {
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  text-decoration: none;
  padding: 1em 1em;
  color: #fff;
  font-size: 1.5vw;
  position: relative;
  display: inline-block;
}
.g_header .nav_link:before, .g_header .nav_link:after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.g_header .hover:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
}
.g_header .hover:hover:before {
  transform: scaleX(1);
}

@keyframes float {
  0% {
    transform: scale(1.2) translateX(-20px);
  }
  50% {
    transform: scale(1) translate(0);
  }
  100% {
    transform: scale(1.2) translateX(-20px);
  }
}
.kv_bgArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.kv_bgArea .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/kv/kv_bg.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: float 20s ease-in-out alternate infinite;
}

.g_kv {
  position: relative;
  background: linear-gradient(240deg, rgba(51, 51, 51, 0.5), 20%, rgba(65, 182, 230, 0));
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.g_kv .kv {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 5% 5% 0% 0;
  font-size: 2.5vw;
  background: linear-gradient(280deg, rgba(0, 47, 104, 0.6), 80%, rgba(0, 91, 151, 0)), linear-gradient(180deg, rgba(0, 47, 104, 0), 80%, #005b97);
}
.g_kv .logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 3%;
  left: 0%;
}
.g_kv .logo img {
  height: 50px;
}
.g_kv .main {
  text-shadow: 2px 2px 3px rgba(65, 182, 230, 0.8);
  color: #fff;
}
.g_kv .main .t1 {
  font-weight: 600;
  line-height: 1;
  font-size: 5vw;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 16px rgba(97, 199, 230, 0.8);
  text-align: right;
}
.g_kv .main .t1-2 {
  margin: 3% 0 0 0;
  font-weight: 500;
  line-height: 1;
  font-size: 3.5vw;
  text-align: right;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 16px rgba(97, 199, 230, 0.8);
}
.g_kv .main .str {
  position: relative;
  padding: 12px 20px 10px;
  margin-right: 15px;
}
.g_kv .main .str span {
  position: relative;
  z-index: 2;
  font-weight: 900;
}
.g_kv .main .t2 {
  margin-top: 0.1em;
  font-weight: 300;
  font-size: 0.8em;
}
.g_kv .sub {
  margin-top: 3vw;
  display: flex;
  line-height: 1.3;
  font-size: 2vw;
}
.g_kv .sub .loca {
  color: #f2af00;
  font-weight: 300;
  text-shadow: 0 0 6px rgba(97, 199, 230, 0.8);
  letter-spacing: 0.1rem;
}
.g_kv .sub .date {
  font-weight: 300;
  position: relative;
  margin-left: 0.75em;
  padding-left: 0.75em;
  border-left: 2px solid #fff;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1rem;
}
.g_kv .timer {
  position: absolute;
  right: 5%;
  bottom: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
}
.g_kv .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;
}
.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: #41b6e6;
}
.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.g_kv .timer .d {
  border-radius: 1rem 0 0 1rem;
}
.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 {
  border-radius: 0 1rem 1rem 0;
}
.g_kv .timer .s::after {
  content: "sec";
}

.g_main {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
}
.g_main .sc_title .tit {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #41b6e6;
}
.g_main .sc_title::before {
  content: "";
  position: absolute;
  left: calc(50% - 2.5em);
  bottom: 0;
  width: 5em;
  height: 2px;
  background-color: #41b6e6;
}
.g_main .sc_title.dbg .tit {
  color: #00447c;
}
.g_main .sc_title.dbg::before {
  background-color: #00447c;
}

.combain {
  position: relative;
  width: 640px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 5px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #0076ce, 60%, #00447c, 80%, #0076ce, 80%, #41b6e6);
}
.combain .combain_inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 0;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  color: #0076ce;
  font-weight: bold;
  font-size: 1.5rem;
}
.combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  color: transparent;
  background: linear-gradient(90deg, #00447c, #41b6e6, #00447c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta_box {
  padding: 20px 0;
  text-align: center;
}
.cta_box .cta {
  text-align: center;
}
.cta_box .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #00447c;
  overflow: hidden;
  border: 0 solid #00447c;
}
.cta_box .cta .bttn::before {
  transition: left 300ms ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: linear-gradient(120deg, #41b6e6, 70%, #00447c, 70%, #00447c);
}
.cta_box .cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 5.625rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
  transition-property: color, text-shadow, transform;
  transition-duration: 300ms;
  transition-delay: 100ms;
  transform: translateY(-50%) scale(1);
}
.cta_box .cta .bttn:hover {
  text-decoration: none;
}
.cta_box .cta .bttn:hover::before {
  left: -100%;
}
.cta_box .cta .bttn:hover div {
  transform: translateY(-50%) scale(1.2);
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 68, 124, 0);
}
.cta_box.s2 {
  margin: 50px 0 0 0;
}

.sc_intro {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, white, 80%, rgba(255, 255, 255, 0.85));
  font-size: 1.125rem;
  color: #000;
  margin: 0 auto;
  padding: 50px 0;
}
.sc_intro .container {
  max-width: 880px;
}
.sc_intro .strong {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #00447c;
  text-shadow: 0 2px 0 black;
}
.sc_intro .p {
  text-align: justify;
  line-height: 1.75;
  margin-bottom: 1.2em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.sc_intro .two_spot {
  margin-top: 1.5em;
  margin-bottom: 2em;
  text-align: center;
}
.sc_intro .sp_tit {
  display: inline-block;
  line-height: 24px;
  font-size: 1.5em;
  font-weight: 700;
  padding-bottom: 25px;
}
.sc_intro .sp_tit span {
  position: relative;
  top: 2px;
  padding-right: 0.25rem;
  font-size: 1.5em;
  font-family: "Roboto", sans-serif;
  color: #00447c;
}
.sc_intro .sp_row {
  display: flex;
  justify-content: center;
}
.sc_intro .sp_item {
  margin: 0 5px;
  flex: 0 0 38%;
  padding: 24px;
  background: linear-gradient(white, rgba(255, 255, 255, 0.75));
  color: #333;
}
.sc_intro .sp_item .tit {
  color: #0076ce;
  font-weight: 700;
  text-align: center;
  font-size: 1.1em;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.sc_intro .sp_item .tit::after {
  content: "";
  background-color: #0076ce;
  position: absolute;
  left: calc(50% - 1.5em);
  height: 1px;
  bottom: 0;
  width: 3em;
}
.sc_intro .sp_item .text {
  max-width: 460px;
  margin: 8px auto 0;
}
.sc_intro .sp_item .text .it {
  padding: 2px 0;
}
.sc_intro .cta {
  margin-top: 1rem;
}

.sc_agenda {
  background: linear-gradient(0deg, rgba(200, 201, 199, 0.9), 80%, rgba(255, 255, 255, 0.85));
  padding: 50px 0;
}
.ag_table {
  flex: 1 1 50%;
  font-size: 1.25em;
}
.ag_table .tr {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 1rem 1.75rem;
  border: 1px solid #0076ce;
  background-color: #f4faff;
  color: #fff;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}
.ag_table .tr:nth-child(2n) {
  background-color: white;
}
.ag_table .tr:nth-child(2n) .time {
  color: #0076ce;
}
.ag_table .tr.sp {
  background-color: #0076ce;
}
.ag_table .tr.sp .time {
  color: #fff;
}
.ag_table .tr.sp .title {
  color: #fff;
  font-weight: 500;
  justify-content: center;
  margin: 0 0 0 -10%;
}
.ag_table .tr .time {
  flex: 0 0 130px;
  padding-right: 16px;
  color: #0076ce;
}
.ag_table .tr .title {
  padding-right: 16px;
  flex: 1 1 60%;
  color: #00447c;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ag_table .tr .title .topic {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 5px 15px;
  margin: 0 0 0 25px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 25px;
  border: 1px solid #41b6e6;
  background-color: #41b6e6;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 118, 206, 0.5);
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.ag_table .tr .title .topic:hover {
  background-color: #fff;
  color: #0076ce;
}
.ag_table .tr .title span:last-child {
  margin-left: 0.5rem;
  font-size: 0.875em;
  color: rgba(51, 51, 51, 0.6);
}
.ag_table .tr .part {
  flex: 1;
}
.ag_table .tr .speaker {
  flex: 0 1 30%;
  line-height: 1.2;
}
.ag_table .tr .speaker .spk {
  padding: 6px 0;
}
.ag_table .tr .speaker .name {
  color: #00447c;
  font-weight: 500;
  margin-bottom: 3px;
}
.ag_table .tr .speaker .job,
.ag_table .tr .speaker .cpy {
  color: #0076ce;
  font-weight: 300;
  font-size: 14px;
}

.sc_speaker {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
  padding: 50px 0;
}
.sc_speaker .container-fluid {
  max-width: 1300px;
}

.spk_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.spk_item {
  flex: 0 0 30%;
  font-size: 1.2em;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
.spk_item .pic {
  position: relative;
  max-width: 250px;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(1);
  box-shadow: 0 5px 15px rgba(51, 51, 51, 0.5);
  transition: all 0.2s ease-out;
}
.spk_item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.spk_item .pic:hover {
  transform: scale(0.97);
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}
.spk_item .wording {
  padding: 20px 5px;
  text-align: center;
  line-height: 1.2;
}
.spk_item .wording .name {
  font-size: 1.25em;
  font-weight: 700;
  color: #00447c;
  margin-bottom: 8px;
}
.spk_item .wording .cpy {
  margin: 8px 0 3px 0;
  color: #0076ce;
}
.spk_item .wording .job {
  color: #0076ce;
}

.sc_gift {
  background: linear-gradient(0deg, rgba(200, 201, 199, 0.9), 80%, rgba(200, 201, 199, 0.9));
  padding: 50px 0;
}
.sc_gift .container-fluid {
  max-width: 1280px;
}

.gift_cnt .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.gift_cnt .items_G {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 25px 0 25px 0;
}
.gift_cnt .items_G .tit {
  position: relative;
  border-radius: 2px;
  margin: 0 auto;
  margin: 15px auto 25px auto;
  padding: 8px 16px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  background-color: #0076ce;
  z-index: 1;
}
.gift_cnt .MFGrace {
  position: absolute;
  top: 15px;
  left: 58%;
  border-radius: 2px;
  padding: 8px 16px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  background-color: #0076ce;
  z-index: 1;
}
.gift_cnt .item {
  flex: 0 0 25%;
  padding: 0 15px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.gift_cnt .item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: #0076ce;
  transform: translateY(-50%);
}
.gift_cnt .item .img {
  position: relative;
  z-index: 0;
}
.gift_cnt .item .gift_num {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 21px;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  background-color: #0076ce;
  border-radius: 999%;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}
.gift_cnt .item .tit {
  position: relative;
  border-radius: 2px;
  margin: 15px auto;
  padding: 8px 16px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  background-color: #0076ce;
  z-index: 1;
}
.gift_cnt .item .tit.pc_hide {
  color: transparent;
  background-color: transparent;
  box-shadow: 0 0 0 transparent;
  text-shadow: 0 0 0 transparent;
}
.gift_cnt .item .text {
  font-size: 21px;
  text-align: center;
  color: #00447c;
}
.gift_cnt .item .text span {
  color: #0076ce;
  font-weight: bold;
}
.gift_cnt .item .info {
  font-size: 21px;
  text-align: center;
  color: #0076ce;
}
.gift_cnt .item .info span {
  color: #0076ce;
  font-weight: bold;
}
.gift_cnt .item .info .cnt {
  font-size: 18px;
  color: #00447c;
}
.gift_cnt .item .img {
  border-radius: 10%;
  max-width: 250px;
  background: linear-gradient(135deg, #0076ce, #00447c, #0076ce, #41b6e6);
  padding: 6px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img img {
  border-radius: 10%;
  max-width: 100%;
  display: block;
  background-color: #fff;
}
.gift_cnt .item .text {
  margin-top: 20px;
}

.sc_logo {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(0deg, white, 80%, white);
}
.sc_logo .logo_gs {
  position: relative;
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sc_logo .logo_gs .logo_g {
  position: relative;
  margin: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sc_logo .logo_gs .logo_g .tit {
  position: relative;
  text-align: center;
  font-size: 24px;
  color: #808080;
  font-weight: 300;
}
.sc_logo .logo_gs .logo_g .items {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sc_logo .logo_gs .logo_g .items .item {
  position: relative;
  width: auto;
  flex: 1 0 0;
}
.sc_logo .logo_gs .logo_g .items .item img {
  position: relative;
  width: auto;
  height: 100px;
  border-radius: 5px;
  box-shadow: 0 0 0 rgba(51, 51, 51, 0.3);
  transition: all 0.2s ease-out;
  z-index: 1;
}
.sc_logo .logo_gs .logo_g .items .item:hover img {
  box-shadow: 0 3px 5px rgba(51, 51, 51, 0.3);
  z-index: 2;
}

.sc_location {
  padding: 50px 0;
  background-color: rgba(51, 51, 51, 0.8);
}

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

.sc_detail {
  background-color: white;
  padding: 50px 0 100px 0;
}
.sc_detail .sc_title .tit {
  color: #0076ce;
}
.sc_detail .detail_cnt .list {
  padding-left: 1.5rem;
  padding-right: 40px;
  margin-top: -4px;
  margin-bottom: 0;
}
.sc_detail .detail_cnt .list li {
  padding: 8px 0;
  line-height: 1.3;
}
.sc_detail .detail_cnt .list a {
  color: #0076ce;
  text-decoration: underline;
}
.sc_detail .detail_cnt .list a:hover {
  color: #41b6e6;
}

@media (max-width: 767px) {
  .fix_aside {
    bottom: 0.75rem;
  }
  .fix_aside .fx_item {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
  .fix_aside .fx_item:first-child {
    right: 4.5em;
  }
  .g_header {
    background: #0076ce;
  }
  .g_header .header_wrap {
    padding: 10px;
  }
  .g_header .nav_content {
    display: block;
  }
  .g_header .header_logo {
    display: block;
    padding: 1rem;
  }
  .g_header .nav_cnt {
    padding: 0;
    display: block;
  }
  .g_header .nav_link {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .g_header.is_active .header_wrap {
    padding: 10px;
  }
  .kv_bgArea {
    height: 100vw;
    top: 60px;
  }
  .kv_bgArea .kv_bg {
    background-image: url("img/kv/kv_bg.jpg");
    background-position: left center;
    height: 100vh;
  }
  .g_kv {
    height: 100vw;
    margin-top: 60px;
  }
  .g_kv .logos {
    right: 5%;
    bottom: 25px;
    width: 50%;
  }
  .g_kv .kv {
    height: 100vw;
    margin: 0;
    background: linear-gradient(280deg, rgba(0, 47, 104, 0.8), 80%, rgba(0, 38, 64, 0)), linear-gradient(180deg, rgba(0, 47, 104, 0), 80%, #002e4c);
  }
  .g_kv .main {
    font-size: 24px;
  }
  .g_kv .main .t1 {
    font-size: 27px;
    letter-spacing: 0.3px;
  }
  .g_kv .main .t1-2 {
    font-size: 20px;
    letter-spacing: 0.3px;
  }
  .g_kv .sub {
    font-size: 14px;
    margin-top: 16px;
    flex-direction: column;
  }
  .g_kv .sub .loca {
    margin-top: 1rem;
  }
  .g_kv .sub .date {
    margin-left: 0em;
    margin-top: 0.25rem;
    padding-left: 0em;
    border-left: 0px solid #fff;
    text-align: right;
  }
  .g_kv .sub .type {
    font-weight: bold;
  }
  .combain {
    margin: 20px auto;
  }
  .combain .cnt {
    font-size: 14px;
  }
  .combain .highLight {
    font-size: 18px;
  }
  .cta .bttn span {
    display: block;
    padding: 2px 0;
  }
  .sc_intro {
    padding: 20px 15px;
  }
  .sc_intro .strong {
    line-height: 1.3;
    font-size: 1.67em;
  }
  .sc_intro .p {
    padding: 0;
    text-align: left;
    line-height: 1.5;
  }
  .sc_intro .sp_row {
    display: block;
  }
  .sc_intro .sp_tit {
    font-size: 1.5em;
    line-height: 1.3;
    padding-bottom: 0;
  }
  .sc_intro .sp_tit span {
    padding-right: 0;
  }
  .sc_intro .two_spot {
    margin: 20px -15px;
  }
  .sc_intro .sp_item {
    margin: 10px 0;
  }
  .gift_cnt {
    padding: 0;
  }
  .gift_item {
    padding: 20px;
    display: block;
  }
  .gift_item .pic {
    display: inline-block;
  }
  .gift_item .wording {
    text-align: center;
    font-size: 1rem;
    padding: 20px 0;
  }
  .gift_item .wording .tit {
    display: inline-block;
    border-right-width: 2px;
  }
  .sc_agenda .sec_cnt {
    display: block;
  }
  .ag_table {
    margin-top: 1rem;
  }
  .ag_table .tr {
    display: block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .ag_table .tr.sp .title {
    margin: 0;
  }
  .ag_table .tr .title {
    font-size: 1.25rem;
    line-height: 1.3;
    padding-bottom: 5px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ag_table .tr .title .topic {
    margin: 5px 0;
  }
  .spk_items {
    display: block;
  }
  .spk_item .pic {
    padding: 0;
    max-width: 240px;
    margin: 0 auto;
  }
  .sc_gift {
    background: linear-gradient(0deg, #c8c9c7, 80%, #c8c9c7);
    padding: 20px 0;
  }
  .gift_cnt .items {
    align-items: stretch;
  }
  .gift_cnt .items_G {
    margin: 25px 0 25px 0;
  }
  .gift_cnt .items_G .tit {
    margin: 15px auto 25px auto;
    padding: 8px 16px;
    font-size: 16px;
  }
  .gift_cnt .MFGrace {
    display: none;
  }
  .gift_cnt .item {
    flex: 0 0 100%;
    padding: 0 15px;
    margin-bottom: 1.75rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .gift_cnt .item:first-child::after {
    width: 0;
    height: 0;
  }
  .gift_cnt .item .gift_num {
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    padding: 10px;
  }
  .gift_cnt .item .tit {
    margin: 15px auto;
    padding: 8px 16px;
    font-size: 16px;
  }
  .gift_cnt .item .tit.pc_hide {
    color: #fff;
    background-color: #0076ce;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  }
  .gift_cnt .item .text {
    font-size: 16px;
    text-align: center;
  }
  .gift_cnt .item .text span {
    color: #41b6e6;
    font-weight: bold;
  }
  .gift_cnt .item .info {
    font-size: 16px;
  }
  .gift_cnt .item .info .cnt {
    font-size: 16px;
  }
  .gift_cnt .item .text {
    margin-top: 20px;
  }
  .sc_logo {
    padding: 20px 0;
  }
  .sc_logo .logo_gs {
    margin: 50px auto;
    flex-direction: column;
    align-items: center;
  }
  .sc_logo .logo_gs .logo_g {
    margin: 25px 0;
  }
  .sc_logo .logo_gs .logo_g .tit {
    font-size: 16px;
  }
  .sc_logo .logo_gs .logo_g .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sc_logo .logo_gs .logo_g .items .item {
    position: relative;
    width: 100%;
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sc_location {
    padding: 20px 0;
  }
  .location_cnt .loc_top {
    flex-direction: column;
    align-items: center;
  }
  .sc_detail .detail_cnt {
    display: block;
  }
  .sc_detail .detail_cnt .list {
    padding-left: 2rem;
    padding-right: 1rem;
  }
}/*# sourceMappingURL=style.css.map */