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

.main_color {
  color: #f49c00;
}

@-webkit-keyframes glow {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

@keyframes glow {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}
._star {
  position: fixed;
  width: 17vw;
  top: 24vw;
  right: 16vw;
  z-index: 0;
  mix-blend-mode: lighten;
  -webkit-animation: glow 5s infinite;
          animation: glow 5s infinite;
}

.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: #f49c00;
  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: #343a40;
}
.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: #f49c00;
  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: #f49c00;
  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;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.sc_title .tit {
  color: #00427b;
  font-weight: 700;
  line-height: 1;
}
.sc_title .tit.c_main {
  color: #f49c00;
}
.sc_title .tit.c_white {
  color: #fff;
}

.bttn {
  display: inline-block;
}
.bttn .bttn_inner {
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 2em;
  line-height: 1;
  border: 2px solid #f49c00;
  text-align: center;
  font-weight: 500;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .sm_size {
  font-size: 1.5em;
}
.bttn .main_b {
  background-color: #f49c00;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.bttn .main_b:hover {
  background-color: #FF8200;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #f49c00;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  background-color: #fff;
  color: #f49c00;
}
.bttn .sub_b:hover {
  background-color: #ffecca;
}
.bttn .link_b {
  background-color: transparent;
  padding: 1em;
  font-size: 1em;
  font-weight: 400;
  border-width: 0;
  text-decoration: underline;
  color: #fff;
}
.bttn .link_b:hover {
  color: #f49c00;
}

.g_kv {
  position: relative;
}
.g_kv .bg {
  height: 100vh;
}
.g_kv .title {
  position: absolute;
  width: 45vw;
  top: 7vw;
  left: 8vw;
}
.g_kv .cta {
  margin-top: 0.5vw;
  margin-left: 2.5vw;
}

.main_sc {
  padding: 60px 0;
}

.sc_intro {
  background-color: #fff;
}

.intro_cnt {
  text-align: center;
  font-size: 1.375rem;
}
.intro_cnt .highlight_tit {
  color: #f49c00;
  font-size: 1.65em;
  font-weight: 700;
  margin-bottom: 1em;
}
.intro_cnt p {
  margin-bottom: 0;
  padding: 0.25em 0;
  line-height: 1.3;
}
.intro_cnt .date_combain {
  display: inline-block;
  margin-top: 1em;
  padding: 1em 1.5em;
  width: 520px;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.1em;
  border: 2px solid #00427b;
  color: #00427b;
}
.intro_cnt .date_combain .line2 {
  margin-top: 0.5em;
}

.cta_cnt {
  margin-top: 40px;
  padding-bottom: 20px;
}
.cta_cnt .bttns {
  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;
}
.cta_cnt .bttn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  margin: 0 15px;
}

.sc_keyword {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.keyword_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 960px;
  height: 100%;
}
.keyword_cnt .kw_body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.keyword_cnt .kw_top,
.keyword_cnt .kw_bottom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.keyword_cnt .title {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
}
.keyword_cnt .kw_bottom {
  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;
}
.keyword_cnt .cta {
  padding-top: 20px;
  text-align: center;
}
.keyword_cnt .cta .game_trigger {
  display: block;
  padding: 10px 20px 11px;
  background-color: #000;
  color: #f49c00;
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.25rem;
}
.keyword_cnt .cta .game_trigger:hover {
  background-color: #f49c00;
  color: #000;
  text-decoration: none;
}

.kw_body .items_wrap {
  height: 100%;
  min-height: 40vh;
}

.bar_item {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  text-align: center;
}
.bar_item .num {
  padding: 4px;
}
.bar_item .bar {
  border-bottom: 1px solid #f49c00;
  background-color: #f49c00;
}
.bar_item .word {
  border-top: 1px solid #000;
  font-size: 1.25rem;
}

.kw_bottom {
  margin-top: 20px;
}

.sc_agenda {
  background-color: #fff;
}
.sc_agenda ._bg {
  background: #00427b;
}
.sc_agenda ._txt {
  color: #00427b;
}
.sc_agenda ._border {
  border-bottom: #00427b 1px dotted;
}

.sc_speaker {
  background-color: #f8f8f8;
}

.speaker_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.speaker_items .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
}
.speaker_items .item .name {
  color: #00427b;
  font-size: 1.25em;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 6px;
}
.speaker_items .item .name span {
  display: inline-block;
}

.sc_sponsor {
  background-color: #f2f2f2;
}
.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sponsor_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spr_categ {
  margin: 0 5px;
}
.spr_categ.categ0, .spr_categ.categ1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(18% + 5px);
          flex: 0 1 calc(18% + 5px);
}
.spr_categ.categ0 .spr_item, .spr_categ.categ1 .spr_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.spr_categ.categ2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(72% + 20px);
          flex: 0 1 calc(72% + 20px);
}
.spr_categ.categ2 .spr_tit {
  width: 25%;
}
.spr_categ.categ2 .spr_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
.spr_categ .spr_tit {
  padding-bottom: 10px;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.spr_categ .items {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.spr_categ .spr_item {
  padding: 0 5px;
}
.spr_categ .spr_item .link {
  border-radius: 10px;
  display: block;
  background-color: #fff;
}

.sc_gift {
  background-color: white;
}
.sc_gift .container-fluid {
  max-width: 1280px;
}

.gift_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gift_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 15px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gift_cnt .item .tit {
  border-radius: 2px;
  margin: 0 auto;
  margin-top: -1.5em;
  padding: 0.5em 1em;
  background-color: #FF8200;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img {
  border-radius: 50%;
  max-width: 250px;
  background: linear-gradient(135deg, #f49c00, #FFCD6A, #FF8200);
  padding: 6px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img img {
  border-radius: 50%;
  max-width: 100%;
  display: block;
  background-color: #fff;
}
.gift_cnt .item .text {
  margin-top: 20px;
}

.sc_location {
  background-color: rgba(52, 58, 64, 0.8);
}

.location_cnt .loc_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.location_cnt .loc_top .loc {
  color: #f49c00;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}

.sc_detail {
  background-color: #00427b;
  color: #fff;
}
.sc_detail .list {
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

.keyword_game_modals .modal-content {
  background: url("img/run_bg.png") center/cover no-repeat;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
}
.keyword_game_modals .modal-body {
  padding: 30px;
  color: #fff;
  font-size: 1.25rem;
}
.keyword_game_modals .modal-body .hero_pic {
  padding: 20px 0;
}
.keyword_game_modals .modal-body .cta {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.keyword_game_modals .modal-body .cta .bttn_inner {
  display: inline-block;
}
.keyword_game_modals .modal-body .cta .bttn_inner:disabled {
  opacity: 0.2;
}
.keyword_game_modals .modal-body .list {
  padding-left: 1.65em;
  font-size: 1rem;
}
.keyword_game_modals .modal-body .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}
.keyword_game_modals .kw_pick_page {
  margin-top: 30px;
}
.keyword_game_modals .kw_pick_page .col_wrap {
  padding: 10px;
}
.keyword_game_modals .kw_pick_page label {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 0;
  cursor: pointer;
  color: #333;
}
.keyword_game_modals .kw_pick_page label:hover .bgc {
  background: #aaa;
}
.keyword_game_modals .kw_pick_page label:hover .kw_item {
  color: #898989;
}
.keyword_game_modals .kw_pick_page input[type=radio] {
  display: none;
}
.keyword_game_modals .kw_pick_page input:checked + .bgc {
  background: #000;
}
.keyword_game_modals .kw_pick_page input:checked ~ .kw_item {
  color: #f49c00;
  cursor: default;
}
.keyword_game_modals .kw_pick_page .bgc {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}
.keyword_game_modals .kw_pick_page .kw_item {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 40px;
  font-family: "Noto serif TC", serif;
  font-weight: 700;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.keyword_game_modals .form3_text .pickup_keyword {
  padding: 1.5em;
  font-size: 60px;
  font-family: "Noto serif TC", serif;
  font-weight: 700;
  text-shadow: 0 2px 1px #343a40;
  color: #f49c00;
}
.keyword_game_modals #going {
  padding: 0 0.25em;
  font-size: 1.5em;
}
.keyword_game_modals .tap_area {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5em;
}
.keyword_game_modals .tap_area div {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  width: 100%;
  min-height: 360px;
  opacity: 0.5;
}
.keyword_game_modals .tap_area div:hover {
  opacity: 1;
}
.keyword_game_modals .tap_area .left {
  background: url("img/step_left.png") center/contain no-repeat;
}
.keyword_game_modals .tap_area .right {
  background: url("img/step_right.png") center/contain no-repeat;
}
.keyword_game_modals #myProgress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.keyword_game_modals #myProgress .fa-running {
  position: absolute;
  bottom: 100%;
  left: 0;
  padding: 0 0.25rem;
  z-index: 10;
  color: #fff;
}
.keyword_game_modals #myProgress #time_bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #f49c00;
}
.keyword_game_modals .form5_text {
  text-align: center;
  padding: 0 1.5em;
}
.keyword_game_modals .form5_text .h2 {
  margin-bottom: 1em;
}
.keyword_game_modals .form5_text .h2 .main_color {
  font-size: 1.5em;
}
.keyword_game_modals .form5_text p {
  margin-bottom: 0;
  margin-top: 0.5em;
}
.keyword_game_modals .form6_text {
  text-align: center;
}
.keyword_game_modals .form6_text .form_header {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.keyword_game_modals .form6_form {
  margin-top: 30px;
}
.keyword_game_modals .form6_form .form-control-plaintext {
  font-size: 1.125em;
  font-weight: 700;
}
.keyword_game_modals .form6_form .form-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .g_header {
    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 .bg {
    height: 100vw;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.3))), url("img/kv.jpg") 85% center/cover;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("img/kv.jpg") 85% center/cover;
  }
  .g_kv .title {
    position: absolute;
    width: 90vw;
    top: 7vw;
    left: 3vw;
  }
  .g_kv .cta {
    margin-top: 20px;
    margin-left: 1.5em;
    margin-right: 0.5em;
  }
  .g_kv .cta .bttn {
    display: block;
  }
  .g_kv .cta .bttn_inner {
    font-size: 1.25rem;
    padding: 0.75em 1.5em;
  }

  .main_sc {
    padding: 40px 10px;
  }

  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }

  .g_kv {
    margin-top: 64px;
  }

  .intro_cnt {
    font-size: 1.125rem;
  }

  .keyword_cnt {
    padding: 0 15px;
  }

  .kw_body .items_wrap .col {
    padding: 0 5px;
  }

  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }

  .keyword_game_modals .modal-body {
    font-size: 1rem;
  }

  .gift_cnt .items {
    display: block;
  }
  .gift_cnt .item {
    margin-bottom: 30px;
  }
  .gift_cnt .item .text {
    text-align: center;
  }

  .sc_speaker .container {
    padding: 0;
  }

  .speaker_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .speaker_items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .sponsor_cnt {
    display: block;
  }

  .spr_categ {
    padding: 10px 20px;
  }
  .spr_categ.categ2 .spr_tit {
    width: 100%;
  }
  .spr_categ .items {
    display: block;
  }
  .spr_categ .spr_item {
    margin-bottom: 20px;
  }
  .spr_categ .spr_item:last-child {
    margin-bottom: 0;
  }

  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
}