/* お知らせ一覧 */
ul.news {
  padding: 20px 0 40px;
}
/* 年タイトル */
.whatsnew {
  position: relative;
  font-size: 20px;
  padding-left: 16px;
}
.whatsnew::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 90%;
  background-color: #2869ac;
}
@media (max-width:768px) {
  .whatsnew {
    margin-top: 10px;
  }
}
/* news詳細 */
/* ニュースタイトル */
.news-header {
  border-bottom: solid 2px #2869ac;
  width: 68%;
}
#contents h2.news-ttl {
  padding: 15px 0;
  margin: 0;
  background: none;
  font-weight: bold;
  line-height: 1.25em;
}
.news-date {
  padding: 10px 0;
  text-align: right;
}
@media (max-width:768px) {
  .news-header {
    width: 100%;
  }
  #contents h2.news-ttl {
    padding-bottom: 0;
  }
  .news-date {
    padding-top: 0;
  }
}
/* ニュース本文 */
.news-item {
  padding: 20px 5px;
}
/* ニュース画像キャプション */
.news-item figcaption {
  font-size: 12px;
  padding-top: 4px;
}
/* 画像 */
.news-item img{
  width: 100%;
}
/* 下付き文字 */
.news-text span{
  font-size: 0.7em;
}
/* 見出し */
.news-item__ttl {
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
}
/* 見出し2 */
.news-item__ttl.sub {
  font-size: 20px;
}
/* 見出し3 */
.news-item__ttl.third {
  font-size: 16px;
}
/* 見出し４ */
.news-item__ttl.fourth {
  font-size: 14px;
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #0F6094;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #7db4e6;/*左線*/
}
@media (max-width:768px) {
  .news-item__ttl {
    font-size: 20px;
    padding-top: 10px;
  }
  .news-item__ttl.sub {
    font-size: 16px;
  }
  .news-item__ttl.third {
    font-size: 14px;
  }
  .news-item__ttl.fourth {
    font-size: 14px;
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    color: #0F6094;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #7db4e6;/*左線*/
  }
}

/*テキスト＆画像の左右ブロック
---------------------------------------------------------------------------*/
/*テキストと画像を囲むブロック*/
.tp-box {
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: stretch;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*テキストブロック*/
.tp-box .box-text {
	position: relative; z-index: 1;
	width: 45%;	/*幅*/
}

/*テキストブロック 右*/
.tp-box .box-text-right {
	position: absolute; right: 0;
	width: 45%;	/*幅*/
}

/*テキストブロック 左*/
.tp-box .box-text-left {
	position: absolute; left: 0;
	width: 45%;	/*幅*/
}

/*画像ブロック*/
.tp-box .box-photo {
	width: 45%;	/*幅*/
}

/*画像ブロック 右*/
.tp-box .box-photo-right {
	position: absolute; right: 0;
	width: 45%;	/*幅*/
}

/*画像ブロック 左*/
.tp-box .box-photo-left {
	position: absolute; left: 0;
	width: 45
		%;	/*幅*/
}

/*画面幅600px以下の追加指定*/
@media screen and (max-width:768px) {

	/*左右のブロックを縦並びにする*/
	.tp-box {
		flex-direction: column;
	}

	/*テキストブロック*/
	.tp-box .box-text {
		width: 100%;	/*幅*/
	}

	/*画像ブロック*/
	.tp-box .box-photo {
		width: 100%;	/*幅*/
		box-shadow: none;
	}

}/*画面幅600px以下の追加指定ここまで*/

/* 本文・表 */
.news-text,
.news-table {
  padding-top: 20px;
}
/* 表 */
.news-item .spec { 
  margin-bottom: 0;
}
/* 詳細はこちらボタン */
.c_btn.detail {
  justify-content: center;
}
.news-btn {
  position: relative;
  color: #fff;
  font-weight: bold;
  padding: 8px 32px 8px 16px;
  text-decoration: none;
  margin-top: 20px;
  text-align: center;
  background-color: #ff952b;
  border-radius: 2px;
  width: 24%;
  min-width: 150px;

}
.news-btn::after {
  right: 12px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.news-btn:hover,
.news-btn:hover::after,
.news .c_btn-item:hover,
.news .c_btn-item:hover::after {
  opacity: 0.7;
}
.news .c_btn-item {
  position: relative;
  color: #2869ac;
  font-weight: bold;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #2869ac;
  padding: 8px 32px 8px 16px;
  text-decoration: none;
}
.news .c_btn-item::after {
  right: 12px;
  border-top: solid 1px #2869ac;
  border-right: solid 1px #2869ac;
}
@media (max-width:768px) {
  .news-btn {
    width: 100%;
  }
}
/* プルダウンメニュー */
.news-select {
  padding-top: 20px;
}
.news-select select {
  position: relative;
  width: 30%;
  min-width: 150px;
  padding: 10px 16px;
  border: 1px solid #CFCECE;
  border-radius: 4px;
  background-color: #fff;
  color: #2d2a2a;
  font-size: 14px;
  cursor: pointer;
}
/* ラジオボタン */
.news-radio,
.news-check {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border: none;
  padding-top: 20px;
}
.news-radio label,
.news-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.news-radio label::before,
.news-radio label:has(:checked)::after {
  border-radius: 50%;
  content: '';
}
.news-radio label::before {
  width: 18px;
  height: 18px;
  background-color: #e6edf3;
}
.news-radio label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #2869ac;
}
.news-radio input,
.news-check input {
  display: none;
}
/* チェックボックス */
.news-check label::before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #d6dde3;
  content: '';
}
.news-check label:has(:checked)::after {
  position: absolute;
  top: 3px;
  left: 7px;
  transform: rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid #2869ac;
  border-width: 0 3px 3px 0;
  content: '';
}
#contents_right {
  padding-top: 20px;
}