@charset "utf-8";
/*
Template: jstork
Theme Name: stork_custom
Theme URI:http://open-cage.com/stork/
*/
/* ---------- ストークタブ機能用CSS ---------- */
.post-tab-list ul.tab-list {
	display: flex;
}
 
.post-tab-list ul li {
	flex-direction: row;
	width: 25%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
	position: relative;
	background-color: rgba(189,189,189,.17);
}
 
.post-tab-list ul li.selected {
	background-color: #bbcfdd;	/* 選択中のタブの背景色 */
	color: #fff;; 			/* 選択中のタブの文字色 */
	font-weight: bold;
}
 
.post-tab-list ul li:not(:first-child){
	margin-left: 5px;
}
 
.post-tab-list ul li.selected::after {
	position: absolute;
	content: "";
	bottom: -8px;
	left: 50%;
	margin-left: -8px;
	opacity: 1;
	width: 0;
	height: 0;
	border-top: 8px solid #2b2b2b;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top-color: #bbcfdd;	/* 選択中のタブの下矢印の色 */
}
 
.ptl, #main > .top-post-list.unselected, #main > .post-list-card.unselected, #main > .post-list-magazine.unselected, .pagination.unselected {
 display: none;
}
 
.ptl.selected {
	display: block;
}
 
@media only screen and (max-width: 767px) {
	.post-tab-list ul.tab-list {
		display: flex;
		flex-wrap: wrap;
	}
 
	.post-tab-list ul li {
		width: calc(50% - 8px);
	}
	
	.post-tab-list ul li:nth-child(odd){
		margin: 0 4px 4px 0;
	}
 
	.post-tab-list ul li:nth-child(even){
		margin: 0 0 4px 0;
	}
	
	.post-tab-list ul li.selected::after {
		content: none;
	}
}
