.announce_pc {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  position: fixed;
  width: 638px;
  height: 38px;
  left: 16px;
  bottom: 16px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0px 2px 8px rgba(72, 88, 102, 0.2);
  border-radius: 8px;
  z-index: 99;
}

.announce_pc .comment {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  width: 592px;
  height: 38px;
  white-space: nowrap;
  overflow: hidden;
}
.announce_pc .comment span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
}

/* news */
#news #footer{
  position: static;
}
#news .f_cnt_up #main {
    min-height: 100vh;
    padding-bottom: 150px;
}
.news_title {
  padding-left: 24px;
  padding-right: 24px;
  border-right: 1px solid #D0D0D0;
}
.news_title:last-child {
  border-right: unset;
}

.action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 13px;
  width: 46px;
  height: 38px;
  cursor: pointer;
}

/*.hover_black:hover {*/
/*  background: #121212;*/
/*}*/

/*.hover_black:hover > .comment marquee span {*/
/*  color: #FFFFFF;*/
/*}*/

.announce_sp {
  display: none;
}

.announce_opa_area{
  opacity: 0;
}
#campanies,
#wrap_cnt{
  position: relative;
}
.aboslete_area{
  position: absolute;
  bottom: 75px;
}

.f_cnt_up .parts_content:last-of-type{
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
   .announce_sp {
      display: flex;
      flex-direction: row;
      align-items: center;
      background: rgba(0, 0, 0, 0.7);
      box-shadow: 0px 2px 8px rgba(72, 88, 102, 0.2);
      border-radius: 8px;
      z-index: 99;
      position: fixed;
      left: 16px;
      bottom: 16px;
      right: 16px;
    }

    .announce_sp .comment {
      width: 100%;
      height: 60px;
      font-style: normal;
      font-weight: 700;
      font-size: 12px;
      line-height: 160%;
      color: #FFFFFF;
      overflow: hidden;
      margin-top: 8px;
      margin-bottom: 8px;
    }

    .announce_sp .comment span {
      font-style: normal;
      font-weight: 700;
      font-size: 12px;
      line-height: 160%;
      color: #121212;
    }

    .announce_sp .action_sp {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 44px;
    }

    .scrolling_zone {
      padding-left: 12px;
    }
    .scrolling_text_item {
      height: 60px;
      display: flex;
      overflow: hidden;
      align-items: center;
      display: flex;
      align-items: center;
      justify-content: start;
    }
    .scrolling_text_item>div {
      line-height: 19px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;

     
    }
    .hover_black:hover .scrolling_text_item {
      color: #FFFFFF;
    }

    
    .announce_pc {
      display: none;
    }


    .aboslete_area{
      position: absolute;
      bottom: 230px;
    }

    .f_cnt_up .parts_content:last-of-type{
      padding-bottom: 127px;
    }

  }

  @-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(600px, 0, 0);
      transform: translate3d(600px, 0, 0);
      visibility: visible;
    }

    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }

  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(600px, 0, 0);
      transform: translate3d(600px, 0, 0);
      visibility: visible;
    }

    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }

  .ticker {

     display: inline-block;
     -webkit-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
     -webkit-animation-timing-function: linear;
     animation-timing-function: linear;
     /* -webkit-animation-duration: 120s;
     animation-duration: 120s; */
     -webkit-animation-name: ticker;
     animation-name: ticker;
     -webkit-animation-fill-mode: both;
     animation-fill-mode: both;
   }
   .ticker .ticker_item{
    display: inline-block;
   }