@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- NEWS --------------
***************************************/
#news {
  padding: 50px 0;
}

.news_box {
  width: 100%;
  margin: 0 auto var(--sp-space);
  border-top: 5px solid var(--base-color01);
  padding-top: 20px;
}

.news_box dl dd h3 {
  font-size: 1.5rem;
  color: var(--base-color01);
}

@media screen and (max-width: 767px) {
  .info_box {
    margin-top: 0;
    padding: var(--sp-space);
  }
  .info_box dl dt {
    width: 100%;
  }
  .news_box dl dd h3 {
    font-size: 1.5rem;
    color: var(--base-color01);
  }
}
.news_box > a {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: dashed 1px var(--base-color01);
}

@media (max-width: 767px) {
  .news_box > a {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .news_box .column_block {
    width: 49%;
    margin: 0;
  }
}
.news_box .column_wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .news_box .column_wrap {
    flex-direction: column;
  }
}
.news_box .column_wrap + .column_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 2px #f5f0ff;
}

.news_box .thumb {
  width: 10.3448275862%;
}

@media (max-width: 767px) {
  .news_box .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
  }
  .news_box .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}
.news_box .text {
  width: 87.0689655172%;
}

@media (max-width: 767px) {
  .news_box .text {
    width: 100%;
  }
}
.news_box .text p {
  font-size: 1.8rem;
  margin: 0;
}

.news_box .date {
  color: var(--text-color);
  margin: 0;
}

.news_box .date::before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  background: url(../img/cal_navy.svg) no-repeat center/contain;
  width: 20px;
  height: 17px;
  margin-bottom: -2px;
}

.detail_img_wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.detail_img_wrap .detail_img_box {
  flex-grow: 1;
}

.detail_img_wrap .detail_img_box a {
  display: block;
  height: 100%;
}

.detail_img_wrap .detail_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail_text {
  margin-top: 20px;
}