/*----------------------------------------*/
/* 体幹ケアエクササイズ */
/*----------------------------------------*/

/* .tab-area */
.exercise-page .tab-area {
	border-bottom: 5px solid #25B7C0;
}
.exercise-page .tab-area ul {
	margin: 0 -5px;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.exercise-page .tab-area ul li {
	padding: 0 5px;
	width: 50%;
}
.exercise-page .tab-area ul li .tab {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	background-color: #F2E9D8;
	border-radius: 10px 10px 0 0;
	padding: 0 10px;
	height: 45px;
}
.exercise-page .tab-area ul li .tab:hover,
.exercise-page .tab-area ul li .tab.active {
	background-color: #25B7C0;
	color: #ffffff;
	height: 50px;
	margin-bottom: -1px;
}
@media (max-width: 767px) {
	.exercise-page .tab-area ul li .tab {
		font-size: 16px;
		height: 35px;
	}
	.exercise-page .tab-area ul li .tab:hover,
	.exercise-page .tab-area ul li .tab.active {
		height: 40px;
	}
}

/* いろいろ */
.exercise-page .tab-area + .term-list {
	margin: 50px 0 40px 0;
}
.exercise-page .page-body .article-list .article-title {
	margin-top: 10px;
}
@media (max-width: 767px) {
	.exercise-page .tab-area + .term-list {
		margin: 35px 0;
	}
}

