/*共通パーツのリセット*/
.c_contents_box01 {
	background-color: transparent;
	color: #fff;

}
.c_contents_box01 + .c_contents_box01{
	margin: 0;
	}
.c_contents_box01 {
	background-color: transparent;
	padding: 0;
}

/*.inner_06 {
	padding: 0 0 40px;
}*/


/*.page_body_01 {
	padding: 0 36px;
}*/
/*----------------------
ボタン関係
----------------------*/
.c_tab {
	margin-top: 30px;
}

.c_tab_list {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: space-between;
	list-style-type: none;
	padding-left: 0px;
	gap: 20px;
	border-bottom: solid #7d7d7d 1px;
	/*background-color: #888;*/
}
.c_tab_list li {
	/*padding: 8px 2px;*/
}
/* a.c_tab_btn {
  width: 80px;
  padding: 10px 3px;
  font-weight: bold;
  font-size: 10px;
}
 */
.news_tab_btn {
	text-align: center;
	padding-top:8px;
	width: 130px;
	height:40px;
	background: #A2C2D0;
	font-weight: bold;
}
.news_tab_btn :hover {
	color: #f37053;
}
.current {
  background: #003c4f;
  position: relative;
}
/*@media only screen and (min-width: 375px) {
  a.c_tab_btn {
    width: 96px;
  }
}
@media only screen and (min-width: 1025px) {
  .c_tab_list {
    margin: -8px -5px;
  }
  .c_tab_list li {
    padding: 8px 5px;
    width: auto;
  }
  a.news_tab_btn {
    width: 170px;
    height: 50px;
    font-weight: bold;
    font-size: 16px;
  }
}*/

/* 吹き出し（下側）*/
.balloon{
	color: #fff;
	position: relative;
	background: #003c4f;
	/*padding: 2em;*/
}
.balloon:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #003c4f transparent transparent transparent;
  border-width: 12.5px 12.5px 0 12.5px;
}
/*----------------------
記事の部分
----------------------*/

/*news_white_ttlarea*/
.c_article_01 {
	margin-bottom: 50px;
}
.news_ttl_wrap {
	display: flex;
	align-items: center;
}
.news_white_ttlarea {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 25px 13px;
	
}
.news_white_ttl {
	width: 85%;
	font-weight: bold;
	
}
.news_white_date {
	width: 15%;
}


/*@media only screen and (min-width: 1025px) {
  .news_white_ttlarea {
    padding: 45px 45px 30px;
  }
}*/

/*カテゴリーボタン(categorybtnは使ってなかったあとで消していい)*/
.caebtn_wrap {
  display: flex;
  align-items: center;
}
.catebtn {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  line-height: 2;
  border-radius: 15px;
  background-color: #EEEEEE;
  margin: 0 -20px 0 0;
  color: #000;
  font-size: 11px;
  font-weight: bold;
	width: 70px;
	justify-content:center;
}
/*@media only screen and (min-width: 1025px) {
  .news_ttl_wrap {
    display: flex;
  }
  .news_white_ttl {
    margin: 0;
    line-height: 2;
  }
}
@media only screen and (min-width: 1441px) {
  .news_white_ttl {
    font-size: 18px;
  }
  .news_white_date {
    font-size: 14px;
  }
  .catebtn {
    font-size: 12px;
  }
}*/

/*news_white_txtarea*/
.news_white_txtarea{
	background-color: #fff;
	padding: 0 25px 25px;
	border-bottom: solid #7d7d7d 1px;
}
.news_white_txtarea p {
	margin-left: 50px;
}
.news_white_txtarea a  {
  color: #018077;
  text-decoration: underline;
}
.txtarea_txtcolor  {
  color: #018077;
}
/*@media only screen and (min-width: 1025px) {
  .news_white_txtarea{
    padding: 0 45px 26px;
  }
}*/
/*----------------------
もっと見るボタン
----------------------*/
.toggle_txt {
	font-size: 16px;
	font-weight: bold;
	background: #DDD4D5;
	padding: 5px 0;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

/*矢印部分*/
.arrow{
  position: relative;
  display: inline-block;
  padding: 0 30px 0 0;
}
.arrow::before,
.arrow::after{
  position: absolute;
  content: "";
  vertical-align: middle;
  transition: all 0.25s ease-in-out;
}
.arrow::before{
  top: 0px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  /*-webkit-border-radius: 50%;*/
  border-radius: 50%;
  background: #fff;
}
.arrow::after{
  top: 14px;
  bottom: 0;
  right: 5px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #003c4f;
  border-right: 1px solid #003c4f;
  transform: rotate(-45deg);
}
.tg_bt .more_txt::after {
  content: "閉じる";
  font-size: 11px;
}
.tg_bt.close {
  background: #003c4f;
}
.tg_bt.close .more_txt::after {
  content: "詳しく見る";
  font-size: 11px;
}
.tg_bt.close .arrow::before {
  top: -10px;
  bottom: 0;
  right: 0;
  transform: translate(2px, 5px) rotate(135deg);
}
.tg_bt.close .arrow::after {
  top: 7px;
  bottom: 0;
  right: 0px;
  width: 4px;
  height: 4px;
  transform: translate(-3px, 5px) rotate(135deg);
}
@media only screen and (min-width: 1025px) {
  .arrow::after{
    right: 7px;
    width: 6px;
    height: 6px;
  }
  .arrow::before{
    width: 20px;
    height: 20px;
  }
  .tg_bt.close .arrow::after {
    top: 6px;
    right: 2px;
    width: 6px;
    height: 6px;
}

@media only screen and (min-width: 1441px) {
  .tg_bt .more_txt::after {
    font-size: 16px;
  }

  .tg_bt.close .more_txt::after {
    font-size: 16px;
  }
}