@charset "UTF-8";
/* タブの動作に関わる処理 */
.tab-content {
	transition: all .3s;
	opacity: 0;
}
.tab-content.is_show {
	opacity: 1;
}

.tabs {
	margin: 30px 0 0;
	padding: 0 0px;
}
.tabs li {
	display: inline-block;
	list-style: none;
	padding: 0;
}
.tabs li + li a {
	margin-left: -5px;
}
.tabs a {
	background-color: #ddd;
	box-shadow: inset 0 -6px 10px 0px #bbb;
	color: #333;
	display: block;
	font-size: 11px;
	padding: 7px 30px;
	position: relative;
	text-decoration: none;
	transition: all .3s;
	transform-origin: 50% 90%;
}
.tabs .is_active {
	background-color: #eee;
	box-shadow: none;
	font-weight: bold;
	z-index: 1;
	transform: scale(1.2);
}

.tab-content {
	width: 950px;
	background-color: #fff;
	border: 0px solid #eee;
	box-shadow: 0 1px 0 0 #ccc;
	padding: 0px 0px 30px 0;
	position: absolute;
	margin:0 auto;
}

.tab_wrap {
	width: 950px;
	height:3300px;
	margin:0 auto;
	overflow:auto;
	position: static;
}