@charset "UTF-8";
/**
 * tab.css
 */

/* block setting tab
--------------------------------------------------------- */
.tabs {
	display: flex;
	flex-direction: row;
	margin: 8px 8px 24px 8px;
	position: relative;
	padding: 0 8px;
}
	.tabs:after {
		content: '　';
		display: block;
		width: 100%;
		position: absolute;
		bottom: 0px;
		left: 0px;
		border-bottom: 1px solid #ddd;
		z-index: 10;
	}
	.tabs .tab,
	.tabs .tab:active,
	.tabs .tab:focus,
	.tabs .tab:hover {
		text-decoration: none;
		font-weight: normal;
		font-size: 18px;
		color: #666;
		background: #f9f9f9;
		width: 100%;
		text-align: center;
		border: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 10px 16px 6px 16px;
		opacity: 1;

		border-top-left-radius: 6px;
		border-top-right-radius: 6px;
		margin-left: 1px;
		margin-right: 1px;
		margin-top: 4px;

		position: relative;
		bottom: 0px;
		left: 0px;
		z-index: 20;
		user-select: none;
	}
	.tabs .tab.active {
		border-bottom: 1px solid #fff;
		color: #666;
		background: #fff;
		opacity: 1;
		margin-top: 0;
	}

.tab_contents {
	display: none;
}


/* レスポンシブ bootstrap4 v2
----------------------------------------------- */
/* モバイル（xs） iPhone 6,7,8 縦 */
@media (max-width: 575px) {
	.tabs .tab,
	.tabs .tab:active,
	.tabs .tab:focus,
	.tabs .tab:hover {
		font-size: 12px;
	}
}
/* モバイル（sm）iPhone 6,7,8 横 */
@media (min-width: 576px) and (max-width: 767px) {
	.tabs .tab,
	.tabs .tab:active,
	.tabs .tab:focus,
	.tabs .tab:hover {
		font-size: 14px;
	}
}
/* タブレット（md） iPad 縦 */
@media (min-width: 768px) and (max-width: 991px) {
}
/* タブレット（lg） iPad 横 iPad Pro 縦 */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* PC（xl）iPad Pro 横 */
@media (min-width: 1200px) {
}
