@charset "utf-8";
/* CSS Document */
main{
  padding-bottom: 60px;
}
.under_mv{
  background: url("../img/archive/mv.png")no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
body{
}
.news_box {
  max-width: 1024px;
  width: 90%;
  margin: 60px auto 0;
}
.news_head {
  display: flex;
  gap: 10px 40px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #707070;
}
.news_category {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  color: #fff;
  min-width: 125px;
  height: 40px;
  &.news{
    background: #00AEEF;
  }
  &.product{
    background: #1F2D8E;
  }
}
.news_title {
  font-size: 2.4rem;
}

.news_body{
  margin-top: 20px;
}
.news_date{
  font-weight: bold;
  font-size: 2rem;
}
.news_content {
  margin-top: 20px;
  & a{
    text-decoration: underline;
  }
}
.news_back {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00AEEF;
  color: #fff;
  max-width: 241px;
  height: 60px;
  margin: 60px auto 0;
  font-weight: bold;
}
@media screen and ( max-width: 1023px ) {

}
@media screen and ( max-width: 767px ) {
.news_head {
  flex-direction: column;
  align-items: baseline;
}
.news_date {
  font-size: 1.6rem;
}
.news_title {
  font-size: 2rem;
}
}