/*---------------------------------------------
  HEADER
---------------------------------------------*/


/*---------------------------------------------
  TOP
---------------------------------------------*/

.top-main-contents {
	overflow:hidden;
	clear:both;
}




/*---------------------------------------------
  TOP CONTENTS
---------------------------------------------*/

.top-main-contents .container {
	padding:10px 15px 64px 15px;
}

.top-main-contents .more {
	text-align:center;
	margin-top:32px;
}

/*-----------------------------
  LIST
-----------------------------*/

.post-item-type_b1 .post-eyecatch {
	width: 240px;
	padding-top: 0;
}
.post-title {
	word-break: break-word;
}

.post-item-type_b1 a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	border: 1px solid #333;
	height: 48px;
	padding: 0 24px 0 32px;
	gap: 8px;
	width: 160px;
	margin: auto;
}

@media screen and (min-width: 768px) {
	.post-item-type_b1 a.btn {
		margin-left:0;
	}
	.post-item-type_b1 .post-eyecatch {
		width: 160px;
	}
	.post-item-type_b1 .post-body {
		width: calc(100% - 160px)!important;
	}
}

/*-----------------------------
  fadein
-----------------------------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}