body {
  font-family: "Noto Sans TC", sans-serif;
  background: url("img/kv_bg.jpg?v=20220406.1") 75% center/cover fixed;
}

.main_color {
  color: #08998E;
}

table {
  width: auto !important;
}

.sub_color {
  color: #084b70;
}

.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-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: #08998E;
  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: 0.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 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
}

.g_header.is_active {
  background-color: transparent;
}

.g_header .header_cnt {
  position: relative;
  padding: 0.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;
}

.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: #08998E;
  color: #000;
}

.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #fff;
}

.g_header .nav_area .nav_link:hover {
  color: #08998E;
  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: 0.5em 0;
  display: none;
}

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

.bttn {
  display: inline-block;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #08998E;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bttn .bttn_inner:hover {
  text-decoration: none;
}

.bttn .xl_size {
  font-size: 2em;
}

.bttn .lg_size {
  font-size: 1.5em;
}

.bttn .sm_size {
  font-size: 1em;
}

.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}

.bttn .main_b {
  background-color: #08998E;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.bttn .main_b:hover {
  background-color: #0a4b1f;
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #08998E;
}

.bttn .dark_b:hover {
  background-color: #160f02;
}

.bttn .sub_b {
  background-color: #fff;
  color: #08998E;
}

.bttn .sub_b:hover {
  background-color: #BDFFD0;
}

.g_kv {
  position: relative;
  overflow: hidden;
}

.g_kv .desktop {
  position: relative;
  height: calc(100vw / 1.7778);
  background-image: url("img/kv_bg.jpg?v=20220406.1");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: cover;
}

.g_kv .df_logo {
  position: absolute;
  z-index: 10;
  left: 5%;
  top: 80px;
  z-index: 2;
  width: 170px;
}

.g_kv .tit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  width: 81.77083%;
}

.g_kv .tit .t1 {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
}

.g_kv .tit .t2 {
  position: relative;
  display: block;
  margin: 25px auto;
  width: 67.70833%;
}

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

.g_kv .date {
  position: absolute;
  right: 5%;
  bottom: 150px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.33vw;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.33);
  font-weight: 500;
  line-height: 1.2;
}

.g_kv .date .d {
  font-size: 2.5rem;
}

.g_kv .date .l {
  font-size: 1.25rem;
  display: block;
  margin: 0 10px;
}

.g_kv .date .n {
  font-size: 2.5rem;
}

.g_kv .date .time_glow {
  position: absolute;
  bottom: -25px;
  left: -25%;
  width: 150%;
  height: auto;
}

.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: #08998E;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.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";
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.sc_title .tit {
  color: #084b70;
  font-weight: 700;
  line-height: 1;
}

.sc_title .tit.c_main {
  color: #08998E;
}

.sc_title .tit.c_white {
  color: #fff;
}

.sc_intro {
  position: relative;
  padding: 50px 0;
  background-color: #fff;
}

.sc_intro .intro_cnt {
  text-align: center;
  font-size: 1.125rem;
}

.sc_intro .intro_cnt p {
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
}

.sc_intro .intro_cnt-hightLight {
  position: relative;
  font-size: 1.3125rem;
  color: #08998E;
  font-weight: bold;
}

.sc_intro .cta_cnt {
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding-bottom: 20px;
}

.sc_intro .cta_cnt .bttns {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  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_intro .cta_cnt .bttn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  margin: 0 0.5em;
}

.sc_intro .combain {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  bottom: -30px;
  left: 0;
  overflow: hidden;
  text-align: center;
}

.sc_intro .combain p {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 15px 60px;
  font-size: 1.9375rem;
  line-height: 1.2;
  font-weight: bold;
  color: #08998E;
  background-color: #fff;
  border-radius: 50px;
}

.sc_intro .combain p span {
  font-size: 25px;
}

.sc_agenda {
  background-color: #EDF3F3;
  padding: 100px 30px 0 30px;
}

.sc_agenda-cnt {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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_agenda-cnt .cnt_items {
  position: relative;
  width: auto;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  border: 2px solid #08998E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_agenda-cnt .cnt_items .item {
  position: relative;
  width: auto;
  min-width: 500px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 80px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.sc_agenda-cnt .cnt_items .item.itemL {
  font-size: 1.3125rem;
  color: #fff;
  background-color: #08998E;
}

.sc_agenda-cnt .cnt_items .item.itemL span {
  font-size: 1.75rem;
  font-weight: bold;
  color: #BDFFD0;
  text-align: center;
}

.sc_agenda-cnt .cnt_items .item.itemL .space {
  position: absolute;
  bottom: 0;
  right: -0.5px;
  width: 30px;
  height: 50%;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0);
  background-color: #EDF3F3;
}

.sc_agenda-cnt .cnt_items .item.itemR {
  padding: 25px 30px 0 30px;
  font-size: 1rem;
  color: #08998E;
}

.sc_agenda-cnt .cnt_items .item.itemR p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 20px;
  margin: 15px 0;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
}

.sc_agenda-cnt .cnt_items .item.itemR span {
  position: relative;
  display: inline-block;
  width: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: #08323A;
}

.sc_agenda-cnt .cnt_items .item.itemR span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 5px;
  height: 100%;
  background-color: #08998E;
}

.sc_agenda-cnt .cnt_items .item.itemR b {
  display: inline-block;
  font-weight: 500;
}

.sc_agenda-cnt .cnt_items .item.itemR .space {
  position: absolute;
  top: -1px;
  left: 0.5px;
  width: 30px;
  height: 50%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  background-color: #08998E;
}

.sc_info {
  padding: 60px 30px 100px 30px;
  background-color: #EDF3F3;
}

.sc_info .container {
  max-width: 1000px;
}

.sc_info-tit {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.625rem;
  line-height: 1.5;
}

.sc_info-tit span {
  font-size: 1.625rem;
  color: #77A22D;
}

.sc_info .list-items {
  position: relative;
  width: 100%;
  height: auto;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sc_info .list-items .item {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  border-radius: 15px;
  border: 2px solid #77A22D;
  background-color: #fff;
  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: 10px 0;
}

.sc_info .list-items .item img {
  position: relative;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30px;
          flex: 1 0 30px;
}

.sc_info .list-items .item p {
  position: relative;
  font-size: 1.125rem;
  margin: 2px 0 0 15px;
  padding: 0;
  line-height: 1.5;
  -webkit-box-flex: 100;
      -ms-flex: 100 0 0px;
          flex: 100 0 0;
}

.sc_info .list-items .item p span {
  font-weight: bold;
}

.sc_info .cnt_tit {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 2rem;
  margin: 25px auto;
  color: #08998E;
  font-weight: bold;
}

.sc_info ul {
  list-style-image: url(img/ui/check.svg);
}

.sc_gift {
  background-color: #fff;
  padding: 60px 0 150px 0;
}

.sc_gift .container {
  text-align: center;
}

.sc_gift-tit {
  position: relative;
  font-weight: bold;
  font-size: 1.9375rem;
  color: #4FB36B;
}

.sc_gift-sub {
  position: relative;
  padding: 8px 25px 8px 0;
  display: inline-block;
  font-size: 1.3125rem;
  margin: 30px auto;
  text-align: center;
  color: #004856;
  border-radius: 50px;
  border: 1px solid #4FB36B;
  overflow: hidden;
}

.sc_gift-sub span {
  position: relative;
  padding: 10px 15px 10px 25px;
  margin: 0 10px 0 0;
  color: #fff;
  background-color: #4FB36B;
}

.sc_gift-sub b {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}

.sc_gift-gift {
  position: relative;
  display: block;
  width: 200px;
  height: auto;
  margin: 10px auto 30px auto;
}

.sc_gift-gifts {
  position: relative;
  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;
  margin: 10px auto 30px auto;
}

.sc_gift-gifts .gift {
  position: relative;
  display: block;
  width: 200px;
  height: auto;
  margin: 10px;
}

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

@media (max-width: 768px) {
  .g_header {
    background-color: #343a40;
  }
  .g_header.is_active {
    background-color: #343a40;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv .desktop {
    margin: 80px 0 0 0;
  }
  .g_kv .df_logo {
    left: 5px;
    top: 10px;
    width: 20%;
  }
  .g_kv .tit {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 88%;
  }
  .g_kv .tit .t2 {
    position: relative;
    margin: 20px auto 0 auto;
    width: 100%;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro {
    padding: 30px 0;
  }
  .sc_intro .intro_cnt {
    text-align: justify;
    font-size: 1rem;
  }
  .sc_intro .cta_cnt {
    width: 100%;
    margin: 30px 0;
    padding-bottom: 50px;
  }
  .sc_intro .cta_cnt .bttns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    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_intro .cta_cnt .bttn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    margin: 15px 0;
  }
  .sc_intro .combain {
    bottom: -40px;
  }
  .sc_intro .combain p {
    padding: 15px 60px;
    font-size: 1.3125rem;
    line-height: 1.2;
  }
  .sc_intro .combain p span {
    font-size: 1.125rem;
  }
  .sc_agenda {
    padding: 60px 15px 0 15px;
  }
  .sc_agenda-cnt {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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_agenda-cnt .cnt_items {
    position: relative;
    width: auto;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
    border: 2px solid #08998E;
    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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_agenda-cnt .cnt_items .item {
    min-width: 100%;
    padding: 15px 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .sc_agenda-cnt .cnt_items .item.itemL {
    font-size: 1.125rem;
  }
  .sc_agenda-cnt .cnt_items .item.itemL span {
    font-size: 1.4375rem;
  }
  .sc_agenda-cnt .cnt_items .item.itemR {
    font-size: 1rem;
    color: #08998E;
  }
  .sc_agenda-cnt .cnt_items .item.itemR p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 0 20px;
    margin: 15px 0;
  }
  .sc_agenda-cnt .cnt_items .item.itemR span {
    width: 130px;
    font-size: 1rem;
    font-weight: bold;
    color: #08323A;
  }
  .sc_info {
    padding: 30px 15px 50px 15px;
  }
  .sc_info-tit {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .sc_info-tit span {
    font-size: 1.25rem;
  }
  .sc_info .list-items .item {
    padding: 15px 15px;
    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;
    margin: 10px 0;
  }
  .sc_info .list-items .item img {
    position: relative;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
            flex: 1 0 100px;
  }
  .sc_info .list-items .item p {
    position: relative;
    font-size: 1.125rem;
    margin: 2px 0 0 15px;
    padding: 0;
    line-height: 1.5;
    -webkit-box-flex: 100;
        -ms-flex: 100 0 0px;
            flex: 100 0 0;
  }
  .sc_info .cnt_tit {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 2rem;
    margin: 25px auto;
    color: #08998E;
    font-weight: bold;
  }
  .sc_info ul {
    list-style-image: url(img/ui/check.svg);
  }
  .sc_gift {
    background-color: #fff;
    padding: 60px 0 150px 0;
  }
  .sc_gift .container {
    text-align: center;
  }
  .sc_gift-tit {
    position: relative;
    font-weight: bold;
    font-size: 1.9375rem;
    color: #4FB36B;
  }
  .sc_gift-sub {
    position: relative;
    padding: 8px 25px 8px 0;
    display: inline-block;
    font-size: 14px;
    margin: 30px auto;
    text-align: center;
    color: #004856;
    border-radius: 50px;
    border: 1px solid #4FB36B;
    overflow: hidden;
  }
  .sc_gift-sub span {
    position: relative;
    padding: 50px 15px 50px 25px;
    margin: 0 10px 0 -10px;
    color: #fff;
    background-color: #4FB36B;
  }
  .sc_gift-sub b {
    font-size: 0.75rem;
    font-weight: 300;
    color: #000;
  }
  .sc_gift-gift {
    position: relative;
    display: block;
    width: 200px;
    height: auto;
    margin: 10px auto 30px auto;
  }
  .sc_gift-gifts {
    position: relative;
    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;
    margin: 10px auto 30px auto;
  }
  .sc_gift-gifts .gift {
    position: relative;
    display: block;
    width: 200px;
    height: auto;
    margin: 10px;
  }
  .sc_gift img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
/*# sourceMappingURL=style.css.map */