@charset "utf-8";

.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
}
.tab-label {
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
	order: -1;
	padding: 12px 10px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	flex: 1;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
}
.tab-label:hover {
	text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
	.tab-label {
		transition: 0.5s;
	}
	.tab-label:hover {
		opacity: 0.7;
	}
}
.tab-label.label01 {
	background-color: #f2f3be;
}
.tab-label.label02 {
	background-color: #f3d6f4;
}
.tab-label.label03 {
	background-color: #bfe6e5;
}
.tab-label:not(:last-of-type) {
	margin-right: 20px;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	overflow: auto;
	padding: 20px 30px;
	opacity: 1;
}
.tab-switch:checked+.tab-label+.tab-content p + p {
	margin-top: 13px;
}
.tab-switch:checked+.tab-label+.tab-content.content01 {
	border: 20px solid #f2f3be;
}
.tab-switch:checked+.tab-label+.tab-content.content02 {
	border: 20px solid #f3d6f4;
}
.tab-switch:checked+.tab-label+.tab-content.content03 {
	border: 20px solid #bfe6e5;
}
/* ラジオボタン非表示 */
.tab-switch {
	display: none;
}


@media screen and (max-width: 767px){
	.tab-label:not(:last-of-type) {
		margin-right: 10px;
	}
	.tab-label {
		font-size: 17px;
		padding: 12px 10px;
	}
}

@media screen and (max-width: 600px){
	.tab-label:not(:last-of-type) {
		margin-right: 0;
	}
	.tab-wrap {
		display: block;
	}
	.tab-label {
		position: relative;
		display: block;
		width: 100%;
		border-radius: 0;
		flex: 1;
		transition: 0.5s;
	}
	.tab-switch:checked + .tab-label + .tab-content{
		padding: 20px;
	}
	.tab-switch:checked+.tab-label+.tab-content.content01 {
		border: 10px solid #f2f3be;
	}
	.tab-switch:checked+.tab-label+.tab-content.content02 {
		border: 10px solid #f3d6f4;
	}
	.tab-switch:checked+.tab-label+.tab-content.content03 {
		border: 10px solid #bfe6e5;
	}
	.tab-switch:checked+.tab-label+.tab-content.content01,
	.tab-switch:checked+.tab-label+.tab-content.content02,
	.tab-switch:checked+.tab-label+.tab-content.content03 {
		border-top: none;
	}
}