
/* tab ----------------*/
.b-tabs {
	/*display: flex;
  justify-content: space-between;
	background: #fff;*/
	/*padding-bottom: 2px;
	filter: drop-shadow( 0 4px 2px rgb( 0 0 0  / .1 ));*/
}
.b-tabs li {
	display: block;
	/*width: calc( 98% / 5 );*/
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
}
.b-tabs button {
	/*display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: .5em 1em;
  opacity: .7;
  font-size: .8em;
  text-align: center;*/
	width: 100%;
	border: 1px solid #351F60;
	/*line-height: 1em;*/
	padding-top: 5px;
	padding-bottom: 7px;
	transition: all 0.5s 0s ease;
	font-size: 80%;
	color: #351F60;
}
.b-tabs .active button,
.b-tabs button:hover {
	/*transform: translateY(2px);*/
	opacity: 1;
	background-color: #7961A7;
	color: #FFF;
}
.b-tabs .active button {
	font-weight: 700;
	pointer-events: none;
	color: #fff;
	background-color: #351F60;
}

@media screen and (max-width: 640px) {

.b-tabs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;	/*background: #fff;*/
	/*padding-bottom: 2px;
	filter: drop-shadow( 0 4px 2px rgb( 0 0 0  / .1 ));*/
}

.b-tabs li {
	width: calc( 90% / 2.85 );
}

}

/* post ----------------*/

.b-post {
  position: relative;
  overflow: hidden;
}

/*
.b-post::before{
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  right: 120%;
  transform-origin: left;
  transform: skewX(25deg);
  background-image: linear-gradient(150deg, #fff 0%, #fff 25%, #fef9d7 100%);
  z-index: -1;
  transition: .4s ease-out;
}
*/

.b-post:hover::before {
  right: -10%;
}

/*
.b-post a {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 30px .8em;
  border-bottom: 1px dashed #ccc;
  align-items: flex-start;
}
*/

.b-post .bp_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 17px;
	padding-left: 0.8em;
}

.b-post a{
	text-decoration: underline;
	transition: all 0.5s 0s ease;
	color: #171717;
}

.b-post a:hover{
	text-decoration: none;
}

.b-postDate,
.e-postTitle {
  margin: .3em 0;
}

.b-postDate {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	width: 35%;
}

.e-time {
  font-size: .9em;
}

.e-catName {
	display: inline-flex;
	align-items: center;
	font-size: .75em;
	color: #fff;
	margin-top: 0;
	margin-right: 1.5em;
	margin-bottom: 0;
	margin-left: 1em;
	padding-top: 0.1em;
	padding-right: 1.9em;
	padding-bottom: 0.2em;
	padding-left: 1.9em;
}

.e-catName.left20 {
	margin-left: 20px;
}

.e-catName.left30 {
	margin-left: 30px;
}

.e-catName.left45 {
	margin-left: 45px;
}

.e-catName.left55 {
	margin-left: 53px;
}

.e-catName.topics{
	background-color: #CC6601;
}

.e-catName.report{
	background-color: #006599;
}

.e-postTitle {
	line-height: 1.5;
	font-size: 0.9em;
	font-weight: normal;
	/*width: 40em;*/
	width: 65%;

}

@media screen and (max-width: 1100px) {

.b-postDate {
	width: 40%;
}

.e-postTitle {
	width: 60%;

}

}

@media screen and (max-width: 980px) {

.b-postDate {
	width: 100%;
}

.e-postTitle {
	width: 100%;
}

}


@media screen and (max-width: 800px) {

.b-postDate {
	flex-wrap:wrap;
}

.e-postTitle {
	display: block;
	width: 100%;
	font-size: 1.1em;
}

}

