@charset "utf-8";

.news_cate {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--deep-blue);
  color: #fff;
  border-radius: 50px;
  padding: 0 15px;
  min-width: 95px;
  &::before{
    content: 'お知らせ';
  }
  &[data-cate="news"]{
    &::before{display: none;}
  }
  &[data-cate="info"]{
    background: #004098;
    &::before{display: none;}
  }
}
.news_head {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin: 20px 0 0;
}
.news_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  h2{
    font-size: var(--fs-24);
    font-weight: bold;
  }
  h3{
    font-size: var(--fs-20);
    font-weight: bold;
  }
  h4{
    font-size: var(--fs-18);
    font-weight: bold;
  }
  a{
    color: var(--txt-color);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    &:hover{
      text-decoration: none;
    }
    &::after{
      content: '';
      display: inline-block;
      background: url(/common/img/arrow.svg) no-repeat center;
      background-size: contain;
      width: 20px;
      height: 20px;
      margin-left: 5px;
      margin-top: 2px;
    }
  }
  .aligncenter {
    clear: both;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
.news_bot{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.news_back {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  color: var(--txt-color);
  border: 1px solid var(--deep-blue);
  border-radius: 10px;
  &::after{
    content: '';
    display: block;
    background: url(/common/img/arrow.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
}
.wp-block-group-is-layout-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px){}