@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.news{
  padding: 60px 0 0;
}
.news_inner {
  max-width: 1024px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.news_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 2px solid #F2F2F2;
}
.news_row{
  display: flex;
  padding: 15px 60px;
  border-bottom: 2px solid #F2F2F2;
}
.news_time {
  min-width: 110px;
}
.news_tag{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 31px;
  background: #999;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: var(--fs-14);
  margin-right: 15px;
  &::before{
    content: '設定ミス';
  }
  &.news_tag--product{
    background: var(--green);
    &::before{
      content: '商品情報';
    }
  }
  &.news_tag--expo{
    background: var(--orange);
    &::before{
      content: '出展情報';
    }
  }
  &.news_tag--news{
    background: var(--blue);
    &::before{
      content: 'お知らせ';
    }
  }
}

.detail{
  padding: 60px 0 0;
}
.det_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.det_title{
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 15px;
  border-bottom: 2px solid #F2F2F2;
  width: 100%;
}
.det_data{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:10px 30px;
  flex-wrap: wrap;
  margin-top: 15px;
  .news_tag{
    margin: 0;
  }
}
.det_body{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  line-height: 2;
}
.det_back {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  height: 50px;
  font-weight: bold;
  max-width: 241px;
  margin: 50px auto 0;
  border: 2px solid var(--blue);
  border-radius: 6px;
}
@media screen and ( max-width: 1023px ) {

}
@media screen and ( max-width: 767px ) {

  .news {
  }
  .news_row {
    padding: 15px 5px;
    flex-wrap: wrap;
  }
  .news_tit{
    display: block;
    width: 100%;
  }

  .det_data{
    gap:10px 20px;
  }
}