@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@font-face {
  font-family: "Times";
  src: url("https://www.digitimes.com/reports/ondemand/fonts/Times.tcc") format(s "ttc");
}
.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("https://www.digitimes.com/reports/ondemand/img/ui/arrow_top.png") center/contain no-repeat;
}
.fix_aside .fx_item .sign_btn {
  width: 110%;
  transform: translate(-52%, -110%);
}
.fix_aside .fx_item .sign_btn img {
  width: 100%;
  max-width: 100%;
}

.cta {
  margin-top: 2rem;
}
.cta .cta_word {
  line-height: 1.1;
}
.cta .bttns {
  display: flex;
  max-width: 650px;
  margin: 0.75rem auto;
}
.cta .bttn {
  display: block;
  flex: 0 0 45%;
  width: 320px;
  border-radius: 4px;
  padding: 1px;
  transition: transform 300ms;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  transform: skewX(-10deg);
}
.cta .bttn:first-child {
  background: linear-gradient(120deg, rgba(212, 97, 15, 0.9), #f79415);
}
.cta .bttn:last-child {
  background: linear-gradient(120deg, #f79415, rgba(212, 97, 15, 0.9));
}
.cta .bttn .wrp {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  transition: background 300ms;
  background-color: rgba(212, 97, 15, 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: yellow;
}
.cta .bttn .t div {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  color: #fff;
}
.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: rgba(212, 97, 15, 0);
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 48px;
  font-family: "Times";
  color: white;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  opacity: 0;
  background: linear-gradient(90deg, #d4610f, #f79415) 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;
}

.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.g_kv .kv_bg img {
  width: 100%;
  max-width: 100%;
}
.g_kv .fixed_pic {
  width: 29.1666666667%;
  position: absolute;
  z-index: 0;
  top: 60%;
  left: -2%;
  animation: float2 6s ease-in-out infinite alternate both;
}
.g_kv .fixed_pic img {
  width: 100%;
  max-width: 100%;
}
@keyframes float2 {
  0% {
    transform: translateY(0%) scale(1);
  }
  40% {
    transform: translateY(-2%) scale(0.92);
  }
  80% {
    transform: translateY(2%) scale(1.08);
  }
  100% {
    transform: translateY(0%) scale(1);
  }
}
.g_kv .kv_tit {
  position: absolute;
  width: 85.2604166667%;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
@keyframes kvShow {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  20% {
    opacity: 0;
    transform: translateX(10px);
  }
  25% {
    opacity: 1;
    transform: translateX(0px);
  }
  75% {
    opacity: 1;
    transform: translateX(0px);
  }
  80% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}
.g_kv .kv_tit .t1 {
  position: absolute;
  left: 0%;
  margin-top: 0%;
  width: 85.5222968845%;
}
.g_kv .kv_tit .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .t2 {
  position: absolute;
  left: 20%;
  margin-top: 14%;
  width: 37.9362670713%;
  animation: kvShow 5s linear 0.5s infinite normal both;
}
.g_kv .kv_tit .t2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .t3 {
  position: absolute;
  left: 58%;
  margin-top: 14%;
  width: 36.4188163885%;
  animation: kvShow 5s linear 1s infinite normal both;
}
.g_kv .kv_tit .t3 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .t4 {
  position: absolute;
  left: 45%;
  margin-top: 20%;
  width: 26.5553869499%;
  animation: kvShow 5s linear 1.5s infinite normal both;
}
.g_kv .kv_tit .t4 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_tit .t5 {
  position: absolute;
  left: 72%;
  margin-top: 20%;
  width: 26.5553869499%;
  animation: kvShow 5s linear 2s infinite normal both;
}
.g_kv .kv_tit .t5 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .kv_logo {
  position: absolute;
  top: 5%;
  left: 80%;
  width: 15%;
  height: auto;
}

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

.sc_intro {
  position: relative;
  padding: 5% 0 10% 0;
}
.sc_intro.form {
  padding: 5% 0 0 0;
}
.sc_intro .container {
  position: relative;
}
.sc_intro .container .sc_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sc_intro .container .sc_cnt .cnt_title {
  color: #78e0ff;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 1% 0 3% 0;
}
.sc_intro .container .sc_cnt .cnt_content {
  color: white;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
  font-size: 20px;
  padding: 0 8%;
}
.sc_intro .container .sc_cnt .icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5%;
  gap: 30px;
}
.sc_intro .container .sc_cnt .icons .icon_item {
  position: relative;
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.sc_intro .container .sc_cnt .icons .icon_item.icon1:after, .sc_intro .container .sc_cnt .icons .icon_item.icon2:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  z-index: 1;
  right: 0;
  top: 50px;
  background-color: rgba(255, 255, 255, 0.5);
}
.sc_intro .container .sc_cnt .icons .icon_item .pic {
  width: 30%;
  height: 100px;
}
.sc_intro .container .sc_cnt .icons .icon_item .pic img {
  width: 100%;
  max-width: 100%;
}
.sc_intro .container .sc_cnt .icons .icon_item .icon_title {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin: 6% 0 3% 0;
}
.sc_intro .container .sc_cnt .icons .icon_item .icon_des {
  color: white;
  font-weight: 300;
  padding: 0 5%;
}
.sc_intro .container .title_img {
  position: absolute;
  width: 35%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 9%;
  z-index: 99;
}
.sc_intro .container .title_img a {
  display: inline-block;
  position: relative;
}
.sc_intro .container .title_img a img {
  width: 100%;
  max-width: 100%;
}
.sc_intro .intro_wrap {
  max-width: calc(760px + 2rem);
  margin: 0 auto 1em;
  padding: 0;
  font-size: 1.2rem;
  color: #57616a;
  font-weight: 500;
  line-height: 2.2rem;
}
.sc_intro .intro_wrap p span {
  color: #f7931e;
}
.sc_intro .intro_wrap .title {
  color: #1855b2;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.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 50px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.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: #f79415;
}
.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;
}

.contact_Sales {
  background-color: #fff;
  padding: 0 0 12% 0;
  border-radius: 0 250px 0 0;
  background-image: url("https://www.digitimes.com/reports/ondemand/img/form_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.contact_Sales .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact_Sales .container .sub_title {
  display: inline-block;
  font-size: 24px;
  background: -webkit-linear-gradient(45deg, #0f398c, #05193f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-top: 15%;
}
.contact_Sales .container .time {
  color: #0071bc;
  font-weight: 400;
  margin-top: 2%;
  font-size: 18px;
}
.contact_Sales .container .content_form {
  margin-top: 5%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}
.contact_Sales .container .content_form .top_title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_Sales .container .content_form .top_title .topic {
  flex: 0 0 40%;
  text-align: center;
  background-color: #4d4d4d;
  color: white;
  padding: 1% 0 4% 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px 0 0 0;
}
.contact_Sales .container .content_form .top_title .outline {
  flex: 0 0 60%;
  text-align: center;
  background-color: #333333;
  color: white;
  padding: 1% 0 4% 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 50px 0 0;
}
.contact_Sales .container .content_form .title {
  background: linear-gradient(45deg, #002c4d, #41a8e0);
  width: 100%;
  color: white;
  text-align: center;
  font-size: 24px;
  margin-top: -3%;
  border-radius: 0 35px 0 0;
  padding: 1% 0;
}
.contact_Sales .container .content_form .title.normal {
  border-radius: initial;
  margin-top: 0;
}
.contact_Sales .container .content_form .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.contact_Sales .container .content_form .content .L {
  flex: 0 0 40%;
  font-weight: bold;
  font-size: 19px;
  flex-wrap: wrap;
  padding: 2% 2% 0 7%;
  position: relative;
}
.contact_Sales .container .content_form .content .L:before {
  position: absolute;
  content: attr(data-item);
  font-size: 32px;
  font-weight: bold;
  left: 10%;
  transform: translateX(-75%);
  top: 16%;
}
.contact_Sales .container .content_form .content .R {
  flex: 0 0 60%;
  padding: 2%;
}
.contact_Sales .container .content_form .content .R ul {
  margin: 0;
}
.contact_Sales .container .content_form .content .R ul ol {
  padding-left: 1rem;
}
.contact_Sales .container .content_form .content.tr {
  background-color: #e6e6e6;
}
.contact_Sales .container .content_form .content.ending {
  border-radius: 0 0 50px 50px;
}

section.form {
  margin: 0 0 5% 0;
}
section.form .container .form_area {
  background-color: white;
  padding: 5% 10% 5% 10%;
  border: solid 10px rgba(0, 0, 0, 0.2);
  border-radius: 0 100px 0 100px;
}
section.form .container .form_area .form-group {
  margin: 3% 0;
}
section.form .container .form_area .form-group.inline_name {
  display: inline-block;
  width: 30%;
  margin: 0;
}
section.form .container .form_area .form-group.inline_company {
  display: inline-block;
  margin: 0 0 0 10%;
  width: 59%;
}
section.form .container .form_area .form-group textarea {
  width: 100%;
  border-radius: 25px;
  height: 150px;
}
section.form .container .form_area .form-group .check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1% 0;
}
section.form .container .form_area .form-group .check input[type=checkbox] {
  width: 20px;
  height: 20px;
}
section.form .container .form_area .form-group .check label {
  font-size: 18px;
  color: initial;
  font-weight: normal;
  margin: 0 0 2px 10px;
}
section.form .container .form_area .form-group select {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  padding: 0 2%;
}
section.form .container .form_area .form-group label {
  font-size: 22px;
  color: #1855b2;
  font-weight: bold;
}
section.form .container .form_area .form-group .inputText input {
  border-radius: 10px;
  height: 50px;
  width: 100%;
  margin-top: 5px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.2);
}
section.form .container .form_area .form-group .inputText input.phone {
  width: 70%;
}
section.form .container .form_area .submit_btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
section.form .container .form_area .submit_btn button {
  width: 100%;
  border: none;
  background: linear-gradient(45deg, #002c4d, #41a8e0);
  color: white;
  padding: 1% 0;
  font-size: 20px;
  border-radius: 25px;
}
section.form .container .form_area .submit_btn:hover {
  transform: translateX(-50%) scale(0.95);
  transition: all 0.4s;
}

.sc_agenda {
  padding: 3rem 0 4rem;
  background-color: #f8f8f8;
}
.sc_agenda .ps {
  position: relative;
  text-align: center;
  font-size: 16px;
  color: #57616a;
}

.agenda_cnt .ag_row {
  display: flex;
  margin-bottom: 3px;
  background-color: rgba(247, 148, 21, 0.1);
}
.agenda_cnt .ag_row.ag_tit {
  background-color: #f79415;
}
.agenda_cnt .ag_row.ag_tit .td.td_time {
  flex: 0 0 auto;
  background-color: transparent;
}
.agenda_cnt .ag_row.ag_tit .td.td_time .time {
  color: #fff;
  font-size: 1rem;
  text-align: left;
}
.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: #fff;
  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 .td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  color: #57616a;
}
.agenda_cnt .td.td_time {
  flex: 0 0 auto;
}
.agenda_cnt .td.td_tit {
  flex: 0 0 60%;
}
.agenda_cnt .td.td_spk {
  flex: 0 1 40%;
  line-height: 1.3;
}
.agenda_cnt .td .time {
  color: #57616a;
}
.agenda_cnt .td .title {
  font-size: 1.25rem;
  line-height: 1.2;
}
.agenda_cnt .td .spk {
  color: rgba(0, 0, 0, 0.75);
}
.agenda_cnt .td .spk .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f477f;
}
.agenda_cnt .td .spk .tit.sp {
  font-size: 14px;
}

.sc_speaker {
  padding: 5% 0 5% 0;
}

.sign_btn {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-content: inherit;
  position: relative;
  margin-top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.sign_btn a.btn1,
.sign_btn a.btn2 {
  width: 30%;
  transform: scale(1);
  transition: all 0.6s;
}
.sign_btn a.btn1:hover,
.sign_btn a.btn2:hover {
  transform: scale(1.08);
  transition: all 0.6s;
}
.sign_btn a.btn1 img,
.sign_btn a.btn2 img {
  width: 100%;
  max-width: 100%;
}

.intro_wrap {
  padding: 0;
  font-size: 1.2rem;
  color: #57616a;
  font-weight: 500;
  line-height: 2.2rem;
}
.intro_wrap p span {
  color: #f7931e;
}
.intro_wrap .title {
  color: #1855b2;
  font-size: 22px;
  font-weight: 500;
}
.intro_wrap ul {
  padding-left: 3rem;
  padding-right: 1.25rem;
  font-weight: 400;
}
.intro_wrap ul li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.intro_wrap .checkHighLight {
  position: relative;
  width: 100%;
  margin: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.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;
}
.intro_wrap .checkHighLight .check img {
  position: relative;
  width: 30px;
  height: auto;
}
.intro_wrap .checkHighLight .check .cnt {
  position: relative;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 21px;
  color: #f79415;
}

.spk_cnt {
  margin-top: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-45%);
}
.spk_cnt .prize,
.spk_cnt .prize2 {
  position: relative;
}
.spk_cnt .prize img,
.spk_cnt .prize2 img {
  width: 100%;
  max-width: 100%;
}
.spk_cnt .prize2 {
  margin-top: 8%;
  margin-left: -12%;
}

.sc_gift {
  padding: 3rem 0;
}

.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: space-between;
}
.gift_cnt .item {
  position: relative;
  flex: 0 1 24%;
}
.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 {
  border-radius: 0 4px 4px 4px;
  overflow: hidden;
}
.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 {
  font-size: 0.8rem;
  padding: 5rem 0 3rem 0;
  background: linear-gradient(90deg, #1e3a6b, #081938);
}
.sc_detail .detail_cnt {
  margin-top: 80px;
}
.sc_detail .detail_cnt span {
  font-weight: 800;
}
.sc_detail .detail_cnt span a {
  text-decoration: none;
}
.sc_detail .detail_cnt span a:hover {
  color: #F29600;
}
.sc_detail ul,
.sc_detail ol {
  color: white;
  padding-left: 1.25em;
  list-style: disc;
}
.sc_detail p {
  color: white;
}
.sc_detail li {
  line-height: 1.3;
  padding: 0.33rem 0;
}

.sc_location {
  padding: 3rem 0;
}
.sc_location .location_cnt {
  display: flex;
  justify-content: space-between;
}
.sc_location .loc_wrap {
  flex: 0 0 49.5%;
}
.sc_location .info_wrap .part {
  font-size: 1.5rem;
  color: #57616a;
  font-weight: 700;
}
.sc_location .info_wrap .loca {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #e3701e;
}
.sc_location .info_wrap .addr {
  border-radius: 4px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.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%;
}

.footer {
  background-color: #171821;
  padding-bottom: 25px;
  color: white;
  display: block;
}
.footer.form {
  padding-top: 50px;
}
.footer .social-frame {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
}
.footer .social-frame a {
  text-decoration: none;
  color: #333333;
  width: 10%;
}
.footer .social-frame a img {
  width: 100%;
  max-width: 100%;
}
.footer .copyright {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-top: 20px;
  font-size: 13px;
  color: #83858F;
  text-align: left;
}
.footer .logo-icon {
  width: 180px;
  height: 27px;
}
.footer .warn {
  margin-top: 45px;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}
.footer .info-block {
  text-align: left;
  padding-top: 20px;
}
.footer .info-block .dt_logo {
  width: 55%;
}
.footer .info-block .dt_logo img {
  width: 100%;
  max-width: 100%;
}
.footer ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer .title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  padding-top: 30px;
}
.footer .item {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .g_kv {
    height: 65vw;
    background-size: cover;
    background-position: bottom center;
  }
  .g_kv .kv_logo {
    width: 30%;
    left: 68%;
    top: 4%;
  }
  .g_kv .kv_tit {
    top: 20%;
    width: 100%;
  }
  .g_kv .kv_tit .t1 {
    margin-left: 5%;
    width: 80%;
  }
  .g_kv .kv_tit .t2 {
    width: 53%;
    left: 5%;
  }
  .g_kv .kv_tit .t3 {
    width: 53%;
    left: 15%;
    margin-top: 20%;
  }
  .g_kv .kv_tit .t4 {
    width: 40%;
    margin-top: 26%;
    left: 35%;
  }
  .g_kv .kv_tit .t5 {
    width: 40%;
    margin-top: 33%;
    left: 45%;
  }
  .g_kv .fixed_pic {
    width: 30%;
    margin-top: 20%;
  }
  .sc_intro {
    padding-bottom: 25%;
  }
  .sc_intro .container .sc_title .tit {
    font-size: 28px;
  }
  .sc_intro .container .sc_cnt .cnt_title {
    font-size: 18px;
  }
  .sc_intro .container .sc_cnt .cnt_content {
    font-size: 16px;
  }
  .sc_intro .container .sc_cnt .icons {
    margin-top: 15%;
    flex-direction: column;
    gap: 80px;
  }
  .sc_intro .container .sc_cnt .icons .icon_item {
    padding: 0 5%;
  }
  .sc_intro .container .sc_cnt .icons .icon_item .pic {
    width: 25%;
  }
  .sc_intro .container .title_img {
    width: 55%;
    margin-top: 15%;
  }
  .sc_intro .container .intro_wrap {
    font-size: 1.125rem;
  }
  .sc_intro .container .intro_wrap ul {
    padding-left: 1.75rem;
    padding-right: 0.5rem;
  }
  section.form .container .form_area {
    border-radius: 0;
    padding: 5%;
  }
  section.form .container .form_area .form-group {
    margin: 10% 0;
  }
  section.form .container .form_area .form-group.inline_name {
    display: block;
    width: 100%;
    margin: 5% 0 10% 0;
  }
  section.form .container .form_area .form-group.inline_company {
    display: block;
    width: 100%;
    margin: 10% 0;
  }
  section.form .container .form_area .form-group .check label {
    font-size: 14px;
    margin: 8px 0 8px 10px;
  }
  section.form .container .form_area .form-group label {
    font-size: 20px;
  }
  .contact_Sales {
    border-radius: 0;
    background-image: none;
  }
  .contact_Sales .container .sub_title {
    font-size: 22px;
    text-align: center;
  }
  .contact_Sales .container .content_form .top_title {
    display: none;
  }
  .contact_Sales .container .content_form .top_title .topic {
    border-radius: 0;
  }
  .contact_Sales .container .content_form .top_title .outline {
    border-radius: 0;
  }
  .contact_Sales .container .content_form .sp {
    border-radius: 0;
    font-size: 20px;
  }
  .contact_Sales .container .content_form .content {
    flex-direction: column;
  }
  .contact_Sales .container .content_form .content .L {
    padding: 5% 2% 3% 18%;
    font-size: 18px;
  }
  .contact_Sales .container .content_form .content .R {
    padding: 2% 5% 5% 2%;
    font-size: 14px;
  }
  .contact_Sales .container .content_form .normal {
    font-size: 20px;
  }
  .ag_table {
    margin-bottom: 2rem;
  }
  .ag_table .ag_row {
    display: block;
    margin-bottom: 10px;
  }
  .ag_table .td.td_time {
    display: inline-flex;
    min-height: auto;
  }
  .ag_table .td.td_spk .com {
    margin-top: 0.25rem;
  }
  .sc_agenda {
    padding-bottom: 2rem;
  }
  .sign_btn {
    width: 80%;
    flex-direction: column;
    gap: 10px;
  }
  .sign_btn a.btn1,
  .sign_btn a.btn2 {
    width: 100%;
  }
  .spk_cnt {
    transform: translate(-50%);
    width: 100%;
  }
  .spk_cnt .prize2 {
    display: none;
  }
  .sc_location .location_cnt {
    display: block;
  }
  .sc_location .loc_wrap {
    margin-bottom: 1rem;
  }
  .sc_detail .detail_cnt {
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */