@charset "UTF-8";
@font-face {
  font-family: FujitsuSans;
  src: url("font/FujitsuSansRegular.ttf") format("truetype");
}
@font-face {
  font-family: FujitsuSansBold;
  src: url("font/FujitsuSansBold.ttf") format("truetype");
}
@font-face {
  font-family: FujitsuSansLight;
  src: url("font/FujitsuSansLight.ttf") format("truetype");
}
@keyframes bounseX {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes float {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
html {
  font-size: 16px;
}

body {
  font-family: "FujitsuSans", "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: #e50012 linear-gradient(120deg, #e50012, #861718);
  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/arrow_top.png") center/contain no-repeat;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
}
.sc_title .tit {
  display: inline-block;
  border-left: 2px solid currentColor;
  padding-top: 0.125rem;
  padding-left: 1rem;
  font-size: 2rem;
  font-weight: 400;
  color: #e50012;
}

@keyframes shine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}
.g_header {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(30deg, #7145e2, #c543a4, #faab63);
}
.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 {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #faab63;
  text-decoration: none;
}

.g_kv .desktop {
  position: relative;
}
.g_kv .desktop > div {
  position: absolute;
  z-index: 1;
}
.g_kv .desktop .bg {
  position: static;
  width: 100%;
  height: 100vh;
  background: url("img/kv_bg.jpg") center/cover no-repeat;
}
.g_kv .desktop .lines {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.g_kv .desktop .lines > div {
  position: absolute;
  width: 3px;
  height: 150%;
  transform-origin: left top;
  transform: rotate(-45deg);
  overflow: hidden;
}
.g_kv .desktop .lines > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0));
  animation-name: shine;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
}
.g_kv .desktop .lines .l1 {
  left: 57%;
  width: 2px;
}
.g_kv .desktop .lines .l1::before {
  height: 60%;
  top: 20%;
}
.g_kv .desktop .lines .l2 {
  left: -20%;
  width: 5px;
}
.g_kv .desktop .lines .l2::before {
  height: 60%;
  top: 20%;
}
.g_kv .desktop .lines .l3 {
  top: 20%;
  left: 8%;
}
.g_kv .desktop .lines .l3::before {
  height: 60%;
  top: 20%;
}
.g_kv .desktop .lines .l4 {
  left: 30%;
}
.g_kv .desktop .lines .l4::before {
  height: 60%;
  top: 20%;
}
.g_kv .desktop .logo1,
.g_kv .desktop .logo2 {
  top: 5vh;
}
.g_kv .desktop .logo1 {
  left: 5vh;
  width: 7.0833333333%;
}
.g_kv .desktop .logo2 {
  right: 5vh;
  width: 9.7916666667%;
}
.g_kv .desktop .square {
  left: 6.25%;
  top: 14.8148148148%;
  width: 22.9166666667%;
  animation: float 4s infinite alternate;
}
.g_kv .desktop .tit {
  left: 33.3333333333%;
  top: 24.0740740741%;
  width: 43.75%;
}
.g_kv .desktop .tit img {
  animation-name: bounseX;
  animation-iteration-count: infinite;
}
.g_kv .desktop .tit .t1 img {
  animation-duration: 9s;
}
.g_kv .desktop .tit .t2 {
  margin: 0.1% 0 1%;
}
.g_kv .desktop .tit .t2 img {
  animation-duration: 13s;
}
.g_kv .desktop .tit .t3 img {
  animation-duration: 7s;
}
.g_kv .desktop .sup {
  left: 5vh;
  bottom: 5vh;
  width: 13.28125%;
}

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

.sc_intro {
  padding: 3rem 0;
}
.sc_intro .intro_wrap p {
  padding: 0 2.5rem;
  font-size: 1.25rem;
}
.sc_intro .wording_area {
  position: relative;
  border-radius: 10px;
  border: 1px solid #f2f2f3;
  margin-bottom: 1.5rem;
  padding: 2rem 4rem;
  background: #f6f6f7 linear-gradient(175deg, #f2f2f3, #f6f6f7, #f2f2f3);
}
.sc_intro .wording_area .quote {
  position: absolute;
  z-index: 0;
  width: 4rem;
  height: 4rem;
  background: center/contain no-repeat;
  font-size: 0;
}
.sc_intro .wording_area .quote.up {
  left: 1.25rem;
  top: 1rem;
  background-image: url(img/ic_quote1.svg);
}
.sc_intro .wording_area .quote.down {
  right: 1.25rem;
  bottom: 1rem;
  background-image: url(img/ic_quote2.svg);
}
.sc_intro .wording_area .wording,
.sc_intro .wording_area .by {
  position: relative;
  z-index: 2;
}
.sc_intro .wording_area .wording {
  font-size: 2em;
  line-height: 1.33;
  font-family: "FujitsuSansBold", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0 #fff;
}
.sc_intro .wording_area .by {
  margin-top: 0.75rem;
  text-align: right;
  font-size: 1.125rem;
}
.sc_intro .wording_area .by .t,
.sc_intro .wording_area .by .n {
  display: inline-block;
}
.sc_intro .wording_area .by .t {
  position: relative;
  font-family: "FujitsuSansLight", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}
.sc_intro .wording_area .by .t::before {
  content: "";
  display: inline-block;
  margin-right: 0.25rem;
  width: 40px;
  border-top: 1px solid #000;
  vertical-align: middle;
}
.sc_intro .wording_area .by .n {
  padding-left: 0.5rem;
}
.sc_intro .h4 {
  font-size: 2rem;
  color: #e50012;
  margin-bottom: 2rem;
}
.sc_intro p:last-child {
  margin-bottom: 0;
}

.cta {
  margin-top: 2rem;
  font-size: 0;
  text-align: center;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #fff;
  overflow: hidden;
}
.cta .bttn::before, .cta .bttn::after {
  content: "";
  position: absolute;
  transition: left 1200ms;
}
.cta .bttn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: #e50012 linear-gradient(120deg, #e50012, #861718);
}
.cta .bttn::after {
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  border: 5px solid #e50012;
}
.cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  transition: color 800ms 200ms;
  transform: translateY(-50%);
}
.cta .bttn:hover {
  text-decoration: none;
}
.cta .bttn:hover::before {
  left: 100%;
}
.cta .bttn:hover div {
  color: #e50012;
}

.sc_agenda {
  padding: 4rem 0;
  background-color: #fafafb;
}

.ag_table .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffdae5;
  background-color: #fff;
  background: linear-gradient(160deg, transparent, #fefbfb 33%);
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}
.ag_table .tr .td {
  padding: 0.75rem 1rem;
  line-height: 1;
}
.ag_table .tr .time {
  flex: 0 0 18%;
  text-align: center;
}
.ag_table .tr .title {
  flex: 1 0 52%;
  line-height: 1.33;
  font-size: 1.25rem;
}
.ag_table .tr .speaker {
  flex: 0 0 30%;
}
.ag_table .tr .speaker .td_inner {
  cursor: pointer;
}
.ag_table .tr .speaker .td_inner:hover .sp_name,
.ag_table .tr .speaker .td_inner:hover .sp_tit,
.ag_table .tr .speaker .td_inner:hover .sp_com {
  text-decoration: underline;
}
.ag_table .tr .sp_name {
  font-size: 1.25rem;
  font-family: "FujitsuSansBold", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  color: #7145e2;
}
.ag_table .tr .sp_tit {
  margin: 0.5rem 0 0.33rem;
}
.ag_table .tr .sp_com {
  color: #e50012;
}
.ag_table .tr.soft_bg {
  background-color: #fefbfb;
  background: linear-gradient(160deg, transparent, #fff6f6 33%);
}
.ag_table .tr.tr_spec {
  background: transparent linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.9) 33%);
}
.ag_table .tr.tr_spec .td {
  color: #e50012;
}

.sc_gift {
  padding: 3rem 0;
}

.gift_cnt {
  display: flex;
}
.gift_cnt .item {
  flex: 0 0 33.33%;
}
.gift_cnt .item:nth-child(2) {
  background-color: #fbfbfc;
}
.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  padding: 25px;
  padding-bottom: 0;
}
.gift_cnt .item .txt {
  line-height: 1;
  padding: 0.5em 2rem 2rem;
  text-align: center;
}
.gift_cnt .item .att {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
  color: #e50012;
}
.gift_cnt .item .att .t {
  flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.gift_cnt .item .att .l {
  flex: 0 0 3rem;
  border-top: 1px solid currentColor;
}
.gift_cnt .item .active {
  margin-top: 0.5rem;
  line-height: 1.6;
  width: 100%;
}
.gift_cnt .item .name {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
  color: #7145e2;
}
.gift_cnt .item .frame,
.gift_cnt .item .tip {
  display: inline-block;
}
.gift_cnt .item .frame {
  display: inline-block;
  border-radius: 16px;
  padding: 0.5em 0.75em 0.35em;
  background-color: #faab63;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.gift_cnt .item .tip {
  padding-left: 0.125rem;
  font-size: 0.925em;
  color: #888;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #fafafa;
}
.sc_detail ol {
  padding-left: 1.25em;
}

.sc_footer {
  overflow: hidden;
  padding: 2em;
  background-color: #fafafa;
}
.sc_footer .in_left {
  position: relative;
}
.sc_footer .logo {
  display: block;
  padding-right: 2rem;
  height: 100%;
}
.sc_footer .logo img {
  height: 72px;
}
.sc_footer .intro {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.sc_footer .links {
  margin-top: 0.5rem;
}
.sc_footer .links .link {
  display: inline-block;
  margin-right: 0.25rem;
  line-height: 1.2;
}
.sc_footer .links a {
  border-radius: 4px;
  display: block;
  padding: 1rem;
  background: center/contain no-repeat;
  background-color: #e50012;
}
.sc_footer .links a.i_logo {
  background-image: url("img/i_logo.svg");
}
.sc_footer .links a.i_fb {
  background-image: url("img/i_fb.svg");
}
.sc_footer .links a:hover {
  background-color: #861718;
  text-decoration: none;
}

.modal-dialog {
  max-width: 36rem;
}

.modal-content {
  border-width: 0;
}

.modal-header {
  border-bottom-width: 0;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  margin: 0.25em 0;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .nav_cnt {
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    margin-top: 0.5rem;
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .g_kv {
    margin-top: 66px;
  }

  .sc_title .tit {
    margin-left: 1rem;
  }

  .sc_intro .intro_wrap p {
    padding: 0 1.5rem;
  }
  .sc_intro .wording_area {
    padding: 2rem 2.5rem;
  }
  .sc_intro .wording_area .wording {
    font-size: 1.5em;
  }
  .sc_intro .wording_area .by {
    margin-top: 1rem;
    line-height: 1;
  }
  .sc_intro .wording_area .by .t {
    font-size: 1rem;
  }
  .sc_intro .wording_area .by .t::before {
    display: none;
  }
  .sc_intro .wording_area .by .n {
    margin-top: 0.5rem;
    font-size: 1.33rem;
    padding-left: 0;
  }

  .ag_table .tr {
    display: block;
    padding: 0.75rem 0;
    background: #fff;
  }
  .ag_table .tr.soft_bg {
    background: #fefbfb;
  }
  .ag_table .tr.tr_spec {
    background: transparent;
  }
  .ag_table .tr .td {
    padding: 0.25rem 1rem;
  }
  .ag_table .tr .time {
    text-align: left;
  }

  .gift_cnt {
    display: block;
    padding-bottom: 0;
  }
  .gift_cnt .item {
    padding: 15px 0;
  }
  .gift_cnt .item .img img {
    padding: 0 25px;
  }
  .gift_cnt .item .txt {
    padding-top: 0;
  }

  .fix_aside {
    right: 0.5rem;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }

  .sc_footer {
    padding: 1rem 2rem 6rem;
  }
  .sc_footer .d-flex {
    flex-wrap: wrap;
  }
  .sc_footer .in_left::before {
    display: none;
    bottom: 0;
    left: 19%;
    width: 62%;
  }
  .sc_footer .logo {
    padding: 0.5rem 0;
    text-align: center;
  }
  .sc_footer .logo img {
    height: auto;
    width: 66%;
  }
  .sc_footer .intro {
    margin-top: 1rem;
  }
  .sc_footer .links {
    text-align: center;
  }
  .sc_footer .links .link {
    margin: 0.5rem 0.25rem 0;
  }
  .sc_footer .links a {
    padding: 1.5rem;
  }
}