html {
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

.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;
  -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;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          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;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background-image: linear-gradient(45deg, #002a6e, #2799ff);
  color: #fff;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.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;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  background-color: #fff;
}
.g_header .header_wrap {
  position: relative;
}
.g_header .menu_btn {
  display: none;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
  padding: 0 30px;
}
.g_header .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_header .header_logo {
  padding: 15px 0;
}
.g_header .header_logo img {
  height: 30px;
}
.g_header .header_logo.holder {
  opacity: 0;
}
.g_header .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_header .nav_item {
  padding: 0 4px;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_item.is_hgt {
  position: relative;
}
.g_header .nav_item.is_hgt a {
  position: relative;
  z-index: 2;
}
.g_header .nav_item.is_hgt::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 46px;
  width: calc(100% - 8px);
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#00f4b1), to(#2e5d7e));
  background: linear-gradient(90deg, #00f4b1, #2e5d7e);
  -webkit-animation: fade 1s ease-in infinite alternate;
          animation: fade 1s ease-in infinite alternate;
}
.g_header .nav_item.item_lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
}
.g_header .nav_item.item_lang .icon {
  width: 20px;
}
.g_header .nav_item.item_lang .word {
  margin-left: 8px;
}
.g_header .nav_item.item_lang .word:hover {
  color: #d0021b;
}
.g_header .nav_link {
  display: block;
  border-radius: 4px;
  padding: 12px 16px;
  color: #d0021b;
  background-color: #fff;
  -webkit-transition: background 300ms, color 300ms;
  transition: background 300ms, color 300ms;
}
.g_header .nav_link:hover {
  color: #fff;
  background-color: #d0021b;
  text-decoration: none;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes fade {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.9;
  }
}
.g_kv {
  position: relative;
}
.g_kv .desktop {
  overflow: hidden;
}
.g_kv .part {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.g_main {
  position: relative;
}
.g_main .main_sc {
  position: relative;
  z-index: 3;
  padding: 40px 0 50px;
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1em;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  color: #494949;
  text-shadow: 3px 3px 0 rgba(39, 153, 255, 0.5);
}
.lang_en .g_main .sc_title .tit {
  letter-spacing: normal;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.g_main .sc_title .sub_link {
  margin-top: 15px;
}
.g_main .sc_title .sub_link a {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #d0021b;
  padding: 6px 18px;
  background-color: #fff;
  color: #d0021b;
  -webkit-transition: color 300ms, background 300ms;
  transition: color 300ms, background 300ms;
}
.g_main .sc_title .sub_link a:hover {
  text-decoration: none;
  background-color: #d0021b;
  color: #fff;
}
.g_main .sc_title + .sc_cnts {
  margin-top: 20px;
}
.g_main .sub_bg {
  background: radial-gradient(#494949, #222222);
}

.abt_cnt .text {
  padding: 0 20px;
  max-width: 55em;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.5;
}
.abt_cnt p:last-child {
  margin-bottom: 0;
}
.abt_cnt .cta {
  margin-top: 30px;
  text-align: center;
}
.abt_cnt .cta .bttn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
  background-color: #2799ff;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  -webkit-transition: background 250ms;
  transition: background 250ms;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.abt_cnt .cta .bttn:hover {
  text-decoration: none;
  background-color: #d0021b;
}

.sc_speaker {
  background: url("img/kv_bg.jpg") center/cover fixed;
  color: #fff;
}
.sc_speaker .sc_title .tit {
  color: #fff;
}

.spk_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spk_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.spk_item .item_wrap {
  padding: 20px;
  text-align: center;
}
.spk_item .item {
  display: inline-block;
  position: relative;
  text-align: left;
  border-radius: 5px;
  overflow: hidden;
}
.spk_item .pic {
  max-width: 100%;
  width: 360px;
  overflow: hidden;
}
.spk_item .wording {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2em 1.5em 1em;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
}
.spk_item .name {
  color: #fffa99;
  font-size: 1.5em;
  font-weight: 700;
}
.spk_item .job {
  line-height: 1.2;
  font-size: 1.1em;
}
.spk_item .job b {
  font-weight: 700;
}

.sc_highlight {
  background-color: #f7f7f7;
  text-align: center;
}
.sc_highlight .list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
.sc_highlight .li {
  position: relative;
  padding: 1em 2em 1em 3em;
  border-bottom: 1px solid #2799ff;
  font-size: 1.25em;
  font-weight: 700;
}
.sc_highlight .li::before {
  content: "";
  position: absolute;
  left: 1.5em;
  top: 1.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2799ff, #d0021b);
}
.sc_highlight .li:last-child {
  border-bottom-width: 0;
}

.sc_gift .sc_title .sub span {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1rem;
  color: #2799ff;
}
.sc_gift .sc_title .sub span:hover {
  color: #d0021b;
}

.gift_cnt {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gift_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0 15px;
}
.gift_cnt .pic {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.gift_cnt .text {
  margin-top: 15px;
  font-size: 1.125rem;
  text-align: center;
}

.g_footer {
  padding: 30px 0;
  background-color: #222222;
  color: #fff;
}
.g_footer .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_footer .top .logo {
  margin-top: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  padding-left: 40px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.g_footer .top .intro {
  font-size: 14px;
  margin-bottom: 8px;
}
.g_footer .bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_footer .sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.g_footer .sns .item {
  width: 40px;
  margin-right: 10px;
}
.g_footer .sns .item a {
  display: block;
}
.g_footer .lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.g_footer .lang .icon {
  width: 20px;
}
.g_footer .lang .word {
  margin-left: 8px;
}
.g_footer .lang:hover {
  color: #d0021b;
}

.modal-content {
  border-width: 0;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
}

.modal-header {
  padding: 1rem 1.5rem;
}
.modal-header .modal_t {
  font-size: 1.5rem;
  line-height: 32px;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal .modal-body {
  padding: 30px;
}
.modal .form_tit {
  text-align: center;
  margin-bottom: 20px;
}
.modal .form_tit .h2 span {
  font-weight: 700;
  color: #d0021b;
}
.modal .form_tit .tip {
  margin-top: 6px;
}

@media (max-width: 767px) {
  .fix_aside {
    right: 20px;
  }
  .fix_aside .fx_item {
    width: 48px;
    height: 48px;
  }

  .g_header {
    background-color: #222222;
  }
  .g_header .mobile_header_top {
    padding: 8px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g_header .header_logo {
    display: block;
    padding: 0;
  }
  .g_header .header_logo img {
    height: 24px;
  }
  .g_header .menu_btn {
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    border: 1px solid currentColor;
  }
  .g_header .menu_btn .icon {
    display: inline-block;
    position: absolute;
    left: 20%;
    top: 50%;
    width: 60%;
    height: 4px;
    margin-top: -2px;
    background-color: currentColor;
  }
  .g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: currentColor;
  }
  .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 {
    padding: 12px;
    background-color: #fff;
  }
  .g_header .nav_content {
    display: block;
  }
  .g_header .nav_cnt {
    padding: 0;
    display: block;
  }
  .g_header .nav_item {
    padding: 0;
  }
  .g_header .nav_item.is_hgt::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-image: none;
    border: 1px solid #d0021b;
  }
  .g_header .nav_link {
    background-color: rgba(208, 2, 27, 0);
  }

  .g_main .main_sc {
    padding: 30px 15px 40px;
  }

  .abt_cnt .text {
    padding: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .spk_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .spk_cnt .spk_item {
    padding: 15px 0;
  }

  .gift_cnt {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gift_cnt .item {
    padding: 15px;
    line-height: 1.3;
  }

  .g_footer {
    padding: 30px 15px 100px;
  }
  .g_footer .top {
    display: block;
  }
  .g_footer .top .logo {
    padding-right: 40px;
    margin-bottom: 20px;
  }

  .modal-header {
    padding-left: 1.5rem;
  }
  .modal-header .modal_t .name {
    display: block;
  }
  .modal-header .modal_t .web_link {
    margin-left: 0;
    margin-top: 10px;
  }
  .modal-header .modal_t .web_link a {
    display: inline-block;
  }

  .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}