@charset "utf-8";
@import url("root.css");

/***************************************
-------------- NEWS --------------
***************************************/
.news_wrap {
  width: 94%;
  margin: auto;
}
.news_list {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  dt a,
  dd a {
    width: fit-content;
    display: flex;
    flex-shrink: 0;
    font-size: 1.8rem;
  }
  dd a:hover{
    text-decoration: underline;
  }
}
.news_list:not(:last-of-type) {
  padding-bottom: 2rem;
  border-bottom: 2px dotted #999;
  margin-bottom: 2rem;
}

@media (max-width: 599px) {
  .news_list {
    flex-wrap: wrap;
    dt {
      width: 100%;
      margin-bottom: 1rem;
    }
    dd {
      width: 100%;
    }
  }
}

#news_detail {
  .detail_date {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 2rem;
    span {
      margin: 0;
    }
  }
  h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--base-color01);
    margin-bottom: 2rem;
  }
  .detail_text {
    margin-bottom: clamp(15px, 3vw, 30px);
  }
}


.detail_img_wrap {
  display: flex;
  width: 100%;
  margin-bottom: clamp(10px, 2vw, 20px);
  gap: clamp(10px, 2vw, 20px) 2%;
  flex-wrap: wrap;
  .detail_img_box {
    width: 49%;
  }
}


























