@charset "UTF-8";
@-webkit-keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}

html {
  font-size: 20px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  background-color: #fff;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: .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: .5em;
  margin: .5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  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-color: #938386;
  color: #fff;
  line-height: 1.3;
}

.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.ic {
  width: 100%;
  height: 100%;
  padding: .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 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  opacity: 0;
}

.g_header.is_active {
  background-color: #1d1d1d;
  opacity: 1;
}

.g_header .header_cnt {
  position: relative;
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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_area .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .nav_area .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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 {
  background-color: #938386;
  color: #000;
}

.g_header .nav_area .nav_item.is_highlight_w {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight_w .nav_link {
  background-color: #938386;
  color: #fff;
}

.g_header .nav_area .nav_link {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #fff;
}

.g_header .nav_area .nav_link:hover {
  color: #938386;
  text-decoration: none;
}

.g_header .header_sns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          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;
}

.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: .5em 0;
  display: none;
}

.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: .5em;
}

.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.g_kv .desktop {
  position: relative;
  height: auto;
  overflow: hidden;
}

.g_kv .desktop_inner {
  position: relative;
  width: 100%;
}

.g_kv .kv_img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72.39583%;
  -webkit-transform: translate(-37%, -45%);
          transform: translate(-37%, -45%);
}

.g_kv .kv_img img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-animation: float 20s linear alternate infinite;
          animation: float 20s linear alternate infinite;
}

.g_kv .kv_mask {
  position: relative;
  width: 100%;
}

.g_kv .kv_mask img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.g_kv .kv_tit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20.83333%;
  -webkit-transform: translate(-150%, 30%);
          transform: translate(-150%, 30%);
}

.g_kv .kv_tit .t1 {
  position: relative;
  width: 100%;
  height: auto;
}

.g_kv .kv_tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.g_kv .timer {
  position: absolute;
  right: 5%;
  bottom: 20px;
  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: #938386;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - .5rem);
  -webkit-transform: translate(-50%, -50%);
          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';
}

.container {
  padding: 50px 120px;
}

.sc_company .container,
.sc_wording .container {
  padding-left: 0;
  padding-right: 0;
}

.g_main {
  overflow: hidden;
}

.g_main .combain {
  position: relative;
  width: 640px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto;
  padding: 5px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #AB377A, #AB377A, 80%, #938386, 80%, #938386);
}

.g_main .combain .combain_inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 0;
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.g_main .combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  color: #938386;
  font-weight: bold;
  font-size: 1.5rem;
}

.g_main .combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#AB377A), color-stop(#AB377A), to(#AB377A));
  background: linear-gradient(90deg, #AB377A, #AB377A, #AB377A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.g_main .cta_box {
  position: relative;
  margin: 30px auto;
  padding: 20px 0;
  text-align: center;
}

.g_main .cta_box .cta {
  text-align: center;
}

.g_main .cta_box .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 0;
  height: 5rem;
  background-color: #938386;
  overflow: hidden;
  border: 0 solid #938386;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_main .cta_box .cta .bttn::before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(120deg, #AB377A, 70%, #938386, 70%, #938386);
}

.g_main .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);
  -webkit-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.g_main .cta_box .cta .bttn:hover {
  text-decoration: none;
  -webkit-transform: skewX(0deg);
          transform: skewX(0deg);
}

.g_main .cta_box .cta .bttn:hover::before {
  left: -100%;
}

.g_main .cta_box .cta .bttn:hover div {
  color: #fff;
  text-shadow: 0 1px 5px rgba(171, 55, 122, 0);
}

.g_main .cta_box .cta .bttn.sp {
  background-color: #E9E6E7;
}

.g_main .cta_box .cta .bttn.sp::before {
  background: linear-gradient(120deg, #AB377A, 70%, #E9E6E7, 70%, #E9E6E7);
}

.g_main .cta_box .cta .bttn.sp:hover div {
  color: #AB377A;
}

.sc_intros {
  position: relative;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0.9));
}

.sc_intros .container {
  padding: 50px 50px;
}

.intro_cnt {
  line-height: 1.5;
}

.intro_cnt .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.625%;
  -webkit-transform: translate(-250%, -40%);
          transform: translate(-250%, -40%);
  z-index: 1;
}

.intro_cnt .parag {
  position: relative;
  text-align: justify;
  margin-bottom: 1rem;
  background-color: #fff;
  z-index: 2;
}

.intro_cnt .parag img {
  position: relative;
  width: 90%;
  height: auto;
  display: block;
  margin: 15px auto;
}

.intro_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.intro_cnt ul li {
  margin-bottom: .75rem;
  line-height: 1.3;
}

.intro_cnt .highLight {
  position: relative;
  margin: 0 auto 35px auto;
  display: block;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#AB377A), color-stop(#AB377A), to(#AB377A));
  background: linear-gradient(90deg, #AB377A, #AB377A, #AB377A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.main_tit {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 100%;
  max-width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 -200px;
  padding: 30px 60px;
}

.main_tit p {
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 35px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #AB377A;
  z-index: 1;
}

.main_tit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  z-index: 0;
}

.sc_gift {
  position: relative;
  background-color: #928285;
  padding: 50px 0 100px 0;
}

.sc_gift .main_tit::before {
  background-color: #E9E6E7;
}

.sc_gift .gift_cnt {
  position: relative;
  width: 100%;
  max-width: 766px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sc_prod {
  position: relative;
  background-color: #FAF3F7;
}

.sc_prod .container {
  padding: 50px 0 100px 0;
}

.sc_prod .main_tit p {
  color: #FAF3F7;
}

.sc_prod .main_tit::before {
  background-color: #928285;
}

.sc_prod .prod_cnt {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_prod .prod_cnt .pic {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  max-width: 400px;
}

.sc_prod .prod_cnt .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sc_prod .prod_cnt .pic:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sc_prod .prod_cnt .cnt {
  position: relative;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5 0 0px;
          flex: 1.5 0 0;
  margin: 0 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  color: #000;
}

.sc_prod .prod_cnt .cnt .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 34px 0;
}

.sc_prod .prod_cnt .cnt .tit .n {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  margin: 0 35px 0 0;
}

.sc_prod .prod_cnt .cnt a {
  text-decoration: underline;
}

.sc_comp {
  position: relative;
  background-color: #928285;
}

.sc_comp .container {
  padding: 50px 0 100px 0;
}

.sc_comp .main_tit::before {
  background-color: #FAF3F7;
}

.sc_comp .comp_cnt_outer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_comp .comp_cnt {
  position: relative;
  width: 100%;
  margin: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px;
  -webkit-box-shadow: 0 5px 15px rgba(250, 243, 247, 0.5);
          box-shadow: 0 5px 15px rgba(250, 243, 247, 0.5);
}

.sc_comp .comp_cnt .pic {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  max-width: 200px;
  min-height: 160px;
  max-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_comp .comp_cnt .pic.wlogo {
  max-width: 350px;
}

.sc_comp .comp_cnt .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sc_comp .comp_cnt .pic:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sc_comp .comp_cnt .cnt {
  position: relative;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5 0 0px;
          flex: 1.5 0 0;
  margin: 30px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #000;
}

.sc_comp .comp_cnt .cnt .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 25px 0;
}

.sc_comp .comp_cnt .cnt .tit .n {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  margin: 0 0 0 0;
}

.sc_comp .comp_cnt .cnt a {
  text-decoration: underline;
}

.sc_spk {
  position: relative;
  background-color: #E9E6E7;
  padding: 50px 0;
}

.sc_spk .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.55208%;
  -webkit-transform: translate(-455%, 310%);
          transform: translate(-455%, 310%);
  z-index: 1;
}

.sc_spk .spk_cnt {
  position: relative;
  width: 100%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_spk .spk_cnt .pic {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  max-width: 300px;
  margin: 0;
}

.sc_spk .spk_cnt .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sc_spk .spk_cnt .cnt {
  position: relative;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5 0 0px;
          flex: 1.5 0 0;
  margin: 0 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 20px;
  color: #000;
}

.sc_spk .spk_cnt .cnt .s {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin: 0 35px 0 0;
  color: #AA3A7A;
}

.sc_spk .spk_cnt .cnt .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 25px 0;
}

.sc_spk .spk_cnt .cnt .tit .n {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  margin: 0 35px 0 0;
}

.sc_spk .spk_cnt .cnt .info {
  position: relative;
  text-align: justify;
}

.sc_detail {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.sc_detail .list {
  padding-left: 1.5em;
}

.sc_detail .list li {
  padding: .25em 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .g_header {
    display: none;
  }
  .g_kv .desktop_inner {
    position: relative;
    width: 200%;
    -webkit-transform: translateX(-35%);
            transform: translateX(-35%);
  }
  .g_kv .kv_img {
    -webkit-transform: translate(-30%, -45%);
            transform: translate(-30%, -45%);
  }
  .g_kv .kv_tit {
    width: 50%;
    -webkit-transform: translate(-80%, -50%);
            transform: translate(-80%, -50%);
    background-image: linear-gradient(45deg, #ab377a, rgba(171, 55, 122, 0));
  }
  .g_kv .timer {
    padding: 14px 0 10px;
    position: static;
  }
  .container {
    padding: 30px 20px 30px;
  }
  .sc_company .container,
  .sc_wording .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .g_main .cta_box {
    padding-bottom: 20px;
  }
  .g_main .cta_box .cta .bttn div {
    position: relative;
    top: 50%;
    z-index: 2;
    padding: 0 60px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
    -webkit-transition-property: color, text-shadow;
    transition-property: color, text-shadow;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .g_main .cta_box .cta .bttn:hover {
    text-decoration: none;
  }
  .g_main .cta_box .cta .bttn:hover::before {
    left: -100%;
  }
  .g_main .cta_box .cta .bttn:hover div {
    color: #fff;
    text-shadow: 0 1px 5px rgba(171, 55, 122, 0);
  }
  .sc_intros .container {
    padding: 0 15px;
  }
  .sc_intros .intro_cnt p {
    font-size: .9rem;
  }
  .sc_intros .intro_cnt ul {
    padding-right: 0;
  }
  .sc_intros .combain .cnt {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
  }
  .sc_intros .combain .highLight {
    font-size: 1.3125rem;
  }
  .main_tit {
    top: -40px;
    max-width: 200px;
    margin: 0 0 0 -100px;
    padding: 20px 10px;
  }
  .main_tit p {
    font-size: 26px;
  }
  .sc_gift {
    padding: 50px 0;
  }
  .sc_prod .container {
    padding: 50px 0;
  }
  .sc_prod .main_tit {
    max-width: 300px;
    margin: 0 0 0 -150px;
  }
  .sc_prod .prod_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_prod .prod_cnt .pic {
    max-width: 200px;
  }
  .sc_prod .prod_cnt .cnt {
    margin: 25px 0 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
  }
  .sc_prod .prod_cnt .cnt .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 34px 0;
  }
  .sc_prod .prod_cnt .cnt .tit .n {
    position: relative;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
  }
  .sc_comp {
    padding: 50px 0 100px 0;
  }
  .sc_comp .container {
    padding: 0 5px;
  }
  .sc_comp .comp_cnt_outer {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_comp .comp_cnt {
    padding: 25px;
  }
  .sc_comp .comp_cnt .pic {
    max-width: 200px;
  }
  .sc_comp .comp_cnt .cnt {
    margin: 30px 0 0 0;
    font-size: 18px;
    color: #000;
  }
  .sc_comp .comp_cnt .cnt .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 25px 0;
  }
  .sc_comp .comp_cnt .cnt .tit .n {
    position: relative;
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .sc_spk {
    padding: 50px 0;
  }
  .sc_spk .spk_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc_spk .spk_cnt .pic {
    max-width: 300px;
    margin: 0 0 25px 0;
  }
  .sc_spk .spk_cnt .cnt {
    margin: 0 0 0 0;
  }
  .sc_spk .spk_cnt .cnt .tit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 25px 0;
  }
  .sc_spk .spk_cnt .cnt .tit .n {
    position: relative;
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 15px 0;
  }
  .sc_detail .list {
    padding-left: 20px;
  }
  .sc_detail .list li {
    padding: 5px 0;
    line-height: 1.4;
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */