@charset "utf-8";

#main {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.tab {
	position: relative;
	display: flex;
	flex-direction: row;
	text-align: center;
	background-color: #fff !important;
	margin: 0 !important;
}
.tab > li:nth-child(1) {
	border-top    : 1px solid #d1d1d1;
	border-bottom : 1px solid #d1d1d1;
	border-left   : 1px solid #d1d1d1;
}
.tab > li:nth-child(2) {
	border-top    : 1px solid #d1d1d1;
	border-bottom : 1px solid #d1d1d1;
	border-right  : 1px solid #d1d1d1;
}
.tab:after {
	content: '';
	position: absolute;
	top: 0px;
	left: 0;
	display: block;
	width: 50%;
	height: 55px;
	transition: all 0.6s ease;
	background-color : #e2f8ff;
	z-index: 90;
}
.tab--1:after {
	left: 0;
}
.tab--2:after {
	left: 50%;
}
.tab__item {
	flex: 1;
	z-index: 100;
}
.tab__link {
	display: block;
	text-decoration: none;
	color: #444;
	cursor: pointer;
	padding: 15px 0;
	font-weight: 600;
}
.tab__link.on {
}
.tab-body__item {
	display: none;
	text-align: center;
}
.tab-body__item.on {
	display: block;
}
.stitle {
    padding: 1em 0;
    text-align:left;
}
.card {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    flex-wrap: wrap;
}
.card > a {
    text-decoration : none;
    margin : 0 0 20px 0;
}
.card > a:hover {
    opacity: 0.5;
}
.card_item {
    width: calc(920px / 3);
    margin: 10px;
}
.card_item__img > img {
    height: 180px;
}
.card_item__sub {
    margin : 8px 0;
    font-weight: 600;
    font-size: 117%;
    color : #030309;
}
.card_item__comment {
    text-align: left;
    color : #030303;
    margin: 0 0.5em;
}