@charset "utf-8";
/* --------------------------------------------------------
	reset
-------------------------------------------------------- */
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

/*-----------------------------------------
article
------------------------------------------*/
.article_container {
	width: 70%;
	max-width:1000px;
	margin: 0px auto 30px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.article_title h4 {
	padding: 1rem 2rem;
	margin: 20px 0 0;
	background: #f4f4f4;
	font-size: 18px;
	font-weight: normal;
}

.article_date {
	font-size: 0.9em;
	text-align: right;
	display: block;
	margin-right: 1em;
	margin-bottom: 2em;
}

.article_honbun {
	font-size: 16px;
	color: black;
}

/* -----------------------------------------------------------
	news list
----------------------------------------------------------- */

.news_container {
	width: 70%;
	max-width:1000px;
	margin: 0 auto 1em;
}

.news_list {
	margin: 20px 0;
	border-top: 2px dotted #d3d3d3;
}
.news_list li {
	font-size: 14px;
	padding: 10px 5px;
	border-bottom: 2px dotted #d3d3d3;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.date {
	margin-right: 15px;
}
.category {
	display: inline-block;
	color: #fff;
	width: auto;
	font-size: 14px;
	text-align: center;
	margin-right: 10px;
	padding: 2px 10px;
	background-color: #75b46e;
}
.news_text a {
	color: #333;
}


/* -----------------------------------------------------------
	ボタン角丸
----------------------------------------------------------- */
.news_btn {
	text-align: center;
	margin-top: 50px;
}
.news_btn a {
	color: #0A66C2;
}
.btn {
	font-weight: bold;
	color: #0A66C2;
	padding: 5px 25px;
	background: #fff;
	border: 2px solid #0A66C2;
	border-radius: 50px;
	transition: all 0.5s;
}
.btn:hover {
	color: #fff;
	background: #0A66C2;
	text-decoration: none;
}
.btn:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f0da";
	font-weight: 900;
	padding-left: 10px;
}


/* -----------------------------------------------------------
	ボタン角
----------------------------------------------------------- */
.button-03 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #333;
  font-weight: 400;
  border: solid 1px #333;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center; 
  padding: 8px 32px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-03 a:hover {
  color: #333;
  background: initial;
  transition: all 0.3s;
}

/* -----------------------------------------------------------
	ボタン矢印
----------------------------------------------------------- */
.button-13 a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center; 
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button-13 a::before {
  content: "";
  display: block;
  position: absolute;
  width: 180px;
  height: 1px;
  background: #333;
  bottom: 0;
  transition: all 0.3s;
}

.button-13 a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #333;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

/* RESPONSIVE 設定
------------------------------------------------------------*/
@media only screen and (max-width : 640px) {
.article_container {
	width: 94%;
	margin: 0 auto 30px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.article_title h4 {
	padding: 1rem 2rem;
	background: #f4f4f4;
	font-size: 18px;
	font-weight: normal;
}

.article_date {
	font-size: 0.9em;
	text-align: right;
	display: block;
	margin-right: 1em;
	margin-bottom: 2em;
}

.article_honbun {
	font-size: 16px;
	color: black;
}

.news_container {
	width: 94%;
	margin: 0px auto 1em;
}

.news_list {
	margin: 20px 0;
	border-top: 2px dotted #d3d3d3;
}
.news_list li {
	font-size: 14px;
	padding: 10px 5px;
	border-bottom: 2px dotted #d3d3d3;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.date {
	margin-right: 15px;
}

