.news_detail_section{
  padding-bottom: 150px;
  background: #F9F9F9;
}

.news_detail_breadcrumb_list{
  justify-content: end;
  margin: 0 30px 10px;
}

.news_detail_breadcrumb_list li{
  margin-right: 25px;
  font-size: 13px;
}

.news_detail_breadcrumb_list li::before{
  content: "";
  width: 5px;
  border-top: 1px solid rgba(0,0,0,.3);
  position: absolute;
  bottom: 7px;
  right: -15px;
  transform: rotate(-30deg);
}

.news_detail_breadcrumb_list li::after{
  content: "";
  width: 5px;
  border-top: 1px solid rgba(0,0,0,.3);
  position: absolute;
  top: 8px;
  right: -15px;
  transform: rotate(30deg);
}

.news_detail_breadcrumb_list li:last-child:before{
  content: none;
}

.news_detail_inner{
  background: #fff;
  border: 1px solid #F1F1F1;
  border-radius: 30px;
  padding: 100px 9%;
  box-sizing: border-box;
}

.news_detail_title_wrapper{
  padding-bottom: 50px;
  border-bottom: 1px solid #bdbdbd;
}

.news_detail_date{
  margin: 0;
  font-size: 18px;
  font-family: "proximanova_r";
  color: #bdbdbd;
}

.news_detail_title{
  margin: 30px 0 0;
  font-size: 50px;
  font-family: "noto_b";
}

.news_detail_contents{
  margin-top: 50px;
  line-height: 2;
}

.news_detail_contents p{
  margin: 0;
}

.news_detail_contents img{
  width: 100%;
  border-radius: 5px;
}

.news_detail_back_link_wrapper{
  margin-top: 100px;
  text-align: center;
}

.news_detail_back_link_wrapper a{
  color: #000;
  font-family: "noto_b";
  position: relative;
}

.news_detail_back_link_wrapper a:before{
  content: "";
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #F7F7F7;
  position: absolute;
  top: 50%;
  left: -155px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.news_detail_back_link_wrapper a::after{
  content: "";
  position: absolute;
  top: 50%;
  left: -125px;
  transform: translateY(-50%);
  width: 25px;
  height: 2px;
  background: #307672;
  transition: 0.3s;
}

.news_detail_back_link_wrapper a span::before,
.news_detail_back_link_wrapper a span::after{
  content: "";
  position: absolute;
  left: -137px;
  width: 12px;
  height: 2px;
  background: #307672;
  transition: 0.3s;
}

.news_detail_back_link_wrapper a span::before{
  top: 10px;
  transform: translateY(-50%) rotate(-30deg);
}

.news_detail_back_link_wrapper a span::after{
  bottom: 8px;
  transform: translateY(-50%) rotate(30deg);
}

.news_detail_back_link_wrapper a:hover::before{
  background: #307672;
}

.news_detail_back_link_wrapper a:hover::after,
.news_detail_back_link_wrapper a:hover span::before,
.news_detail_back_link_wrapper a:hover span::after{
  background: #fff;
}



@media(max-width: 670px){

  .news_detail_wrapper{
    margin-right: 5%;
    margin-left: 5%;
  }

  .news_detail_breadcrumb_list{
    margin: 0 5% 10px;
  }

  .news_detail_breadcrumb_list li{
    margin-right: 20px;
  }

  .news_detail_breadcrumb_list li::before{
    right: -12px;
  }

  .news_detail_breadcrumb_list li::after{
    right: -12px;
    top: 9px;
  }

  .news_detail_inner{
    padding: 50px 5%;
    border-radius: 15px;
  }

  .news_detail_title_wrapper{
    padding-bottom: 30px;
  }

  .news_detail_date{
    font-size: 15px;
  }

  .news_detail_title{
    font-size: 23px;
    margin-top: 15px;
  }

  .news_detail_contents{
    margin-top: 30px;
  }

  .news_detail_back_link_wrapper{
    margin-top: 50px;
  }

  .news_detail_back_link_wrapper a:before{
    width: 45px;
    height: 45px;
    left: -65px;
  }

  .news_detail_back_link_wrapper a::after{
    width: 15px;
    left: -44px;
  }

  .news_detail_back_link_wrapper a span::before{
    top: 9px;
    left: -56px;
  }

  .news_detail_back_link_wrapper a span::after{
    bottom: 5px;
    left: -56px;
  }

  .news_detail_section{
    padding-bottom: 80px;
  }

}