@charset "utf-8";
/*------------------------------*/

/* メインヘッダー枠 */
.header_frame {
	height: 100vh;
	background-image: url('../image/news_list_header_image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 戻るボタン */
.btn_back {
	display: block;
	width:150px;
	border:1px solid #287373;
	background-color: #287373;
	border-radius: 50px;
	padding:10px;
	color:#ffffff;
	text-align: center;
	margin-left:auto;
	margin-right: auto;
	transition: 0.3s;
}
.btn_back:hover {
	background-color: #bae6dc;
	color:#287373;
}
