@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
矢印
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
.head_contents {
  padding: 0px;
}

/*----------------------------------------------------
カテゴリーリスト
----------------------------------------------------*/
.catList {
  /* 751- */
  /* CT⇨センターの意味*/
}
.catList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 751px) {
  .catList ul {
    margin-bottom: 30px;
  }
}
.catList ul::after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
.catList li {
  background-color: #ECF1F4;
  width: 31%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 5px;
  color: #1BA1E6;
  text-transform: uppercase;
  text-align: center;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 751px) {
  .catList li {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 375px) {
  .catList li {
    width: 47%;
  }
}
.catList li a {
  padding: 10px;
  display: block;
  height: 100%;
}
.catList li.current {
  background-color: #697D93;
  color: white;
}
@media all and (min-width: 751px) {
  .catList li {
    margin-bottom: 40px;
    width: 31%;
  }
  .catList li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .catList li:not(.current):hover {
    background-color: #1BA1E6;
    color: white;
  }
}
/*----------------------------------------------------
news 一覧
----------------------------------------------------*/
#news {
  /* 751- */
}
#news .newsBox {
  background-color: #fff;
  padding: 21px 22px 46px;
}
#news .secTitle_top {
  margin-bottom: 20px;
}
#news .lt {
  /* -750 */
}
@media all and (max-width: 751px) {
  #news .lt {
    margin-bottom: 30px;
  }
}
#news .lt_item {
  border-bottom: 1px solid #BFBFBF;
}
#news .lt_item > a {
  padding: 20px 0px;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#news .lt_item:first-child {
  border-top: 1px solid #BFBFBF;
}
#news .btnArea {
  text-align: center;
}
#news .title {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.692;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
#news .catArea {
  width: 140px;
}
#news .cat {
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  border: 1px solid #1BA1E6;
  color: #1BA1E6;
}
#news .date {
  margin-right: 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3B464D;
}
@media all and (min-width: 751px) {
  #news .secTitle_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  #news .newsBox {
    padding: 70px 80px 63px;
  }
  #news .lt_item {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #news .lt_item > a {
    padding: 20px 0px 15px;
  }
  #news .lt_item:hover {
    padding-left: 15px;
  }
  #news .textArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #news .catArea {
    margin-top: 5px;
  }
  #news .title {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2.625;
    margin-left: 32px;
  }
  #news .cat {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 2.625;
  }
  #news .date {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.625;
    margin-right: 33px;
  }
}

/*----------------------------------------------------
news 個別記事
----------------------------------------------------*/
#news_single {
  /* 751- */
}
#news_single .newsBox {
  background-color: #fff;
  padding: 21px 22px 46px;
}
#news_single .cat {
  background-color: #1BA1E6;
  text-transform: uppercase;
  color: white;
  padding: 2px 0;
  width: 120px;
  text-align: center;
  margin-right: 10px;
  font-size: 11px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#news_single .date {
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.6667;
}
#news_single .CatDay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
}
#news_single .title {
  font-size: 17px;
  letter-spacing: 0em;
  line-height: 1.647;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
#news_single .btnArea {
  text-align: center;
}
@media all and (min-width: 751px) {
  #news_single .date {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 2.1;
  }
  #news_single .cat {
    padding: 0px;
    margin-right: 23px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
  }
  #news_single .CatDay {
    margin-bottom: 20px;
  }
  #news_single .title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.647;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-bottom: 40px;
  }
  #news_single .newsBox {
    padding: 88px 22px 80px;
  }
  #news_single .contents {
    max-width: 860px;
    margin: 0 auto;
  }
}
#news_single .main_contents {
  margin-top: 20px;
  /* 751- */
}
#news_single .main_contents h1, #news_single .main_contents h2, #news_single .main_contents h3, #news_single .main_contents h4, #news_single .main_contents h5, #news_single .main_contents h6 {
  margin-bottom: 1.3em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
}
#news_single .main_contents h1, #news_single .main_contents h2 {
  font-size: 13px;
}
#news_single .main_contents h3 {
  font-size: 13px;
}
#news_single .main_contents h4 {
  font-size: 13px;
}
#news_single .main_contents h5 {
  font-size: 13px;
}
#news_single .main_contents h6 {
  font-size: 13px;
}
#news_single .main_contents p {
  margin-bottom: 34px;
  font-size: 13px;
  line-height: 1.846;
}
@media all and (min-width: 751px) {
  #news_single .main_contents {
    margin-top: 48px;
  }
  #news_single .main_contents h1, #news_single .main_contents h2, #news_single .main_contents h3, #news_single .main_contents h4, #news_single .main_contents h5, #news_single .main_contents h6 {
    margin-bottom: 1em;
    line-height: 1.3;
  }
  #news_single .main_contents h1, #news_single .main_contents h2 {
    font-size: 20px;
  }
  #news_single .main_contents h3 {
    font-size: 18px;
  }
  #news_single .main_contents h4 {
    font-size: 16px;
  }
  #news_single .main_contents h5 {
    font-size: 15px;
  }
  #news_single .main_contents h6 {
    font-size: 14px;
  }
  #news_single .main_contents p {
    margin-bottom: 43px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.025em;
  }
}

/*----------------------------------------------------
wp-pagenavi
----------------------------------------------------*/
.wp-pagenavi {
  margin-top: 31px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
  /* 751- */
}
.wp-pagenavi .pages {
  /* 総ページ数の非表示 例：「1/3」みたいなやつ */
  display: none;
}
.wp-pagenavi .next, .wp-pagenavi .prev, .wp-pagenavi .page, .wp-pagenavi .current {
  display: inline-block;
  background-color: #ECF1F4;
  margin-right: 20px;
  padding: 13px 14px 11px 16px;
  width: 38px;
  height: 38px;
  border: none;
  color: #1BA1E6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .wp-pagenavi .next, .wp-pagenavi .prev, .wp-pagenavi .page, .wp-pagenavi .current {
    padding: 18px 14px 11px 16px;
    width: 50px;
    height: 50px;
  }
}
@media all and (min-width: 751px) {
  .wp-pagenavi {
    margin-top: 51px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .wp-pagenavi .next:hover, .wp-pagenavi .prev:hover, .wp-pagenavi .page:hover {
    background-color: #1BA1E6;
    color: white;
  }
}
.wp-pagenavi .current {
  background-color: #1BA1E6;
  color: white;
}
/*# sourceMappingURL=news.css.map */