<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : news.css                                  */
/* update : 2021                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* 一覧 */
/* -------------------------------------------------- */
.news_index {
  background: #f2f2f2;
}

.news_index .h1_wrap {
  background: url(../../news/img/h1_bg.jpg) no-repeat center center/cover;
}

.news_index .sec_wrap {
  padding-top: 120px;
}

.news_list {
  margin-top: 20px;
}

.news_list .news_box_bg:nth-of-type(2n) {
  background: #ededea;
}

.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1240px;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.news_box_l {
  width: 25%;
}

.news_box_l img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 210px;
}

.news_box_r {
  width: 67%;
}

.news_date {
  font-size: 14px;
  color: #777778;
  margin: -5px 0 5px;
}

.news_tit {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #3b2526;
  margin-bottom: 5px;
  line-height: 1.7;
}

.news_cont {
  line-height: 2.2;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}

.news_cont a {
  color: #2b4f76;
}

.inner_pdf {
  margin-top: 20px;
}

/* 詳細 */
/* -------------------------------------------------- */
.news_detail {
  background: #f2f2f2;
}

.news_detail .h1_wrap {
  background: url(../../news/img/h1_bg.jpg) no-repeat center center/cover;
}

.news_detail .news_tit {
  margin-bottom: 40px;
  font-size: 28px;
}

.news_detail .news_img {
  text-align: center;
  margin-bottom: 50px;
}

.news_detail .news_cont {
  margin-bottom: 0;
}

.news_detail_cont {
  margin: 95px 0 90px;
}

/* ---------------全デバイス共通(PC)-end--------------------- */
/*----------------------------------------------------------*/
/* pcホバー用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) {
  /* --------------pcホバー用のCSS END----------------- */
}

/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /* tablet */
  /* -------------------tablet END------------------------- */
}

/*----------------------------------------------------------*/
/* SP用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 559px) {
  /* sp */
  .news_index .sec_wrap {
    padding-top: 60px;
  }
  .news_box_l {
    width: 100%;
    margin-bottom: 10px;
  }
  .news_box_r {
    width: 100%;
  }
  .news_tit {
    font-size: 18px;
  }
  .news_date {
    font-size: 12px;
  }
  .news_cont {
    margin-bottom: 20px;
  }
  /* 詳細 */
  /* -------------------------------------------------- */
  .news_detail .news_tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .news_detail .news_img {
    margin-bottom: 25px;
  }
  .news_detail_cont {
    margin: 45px 0 40px;
  }
  /* ---------------------SP END----------------------------- */
}
</pre></body></html>