@charset "UTF-8";

.bl_tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 32px;
}
.bl_tab_ttl {
	font-size: 24px;
	color: #4E2E2E;
	width: 240px;
	height: 78px;
	background: #CCCBC8;
	border-radius: 78px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 48px;
	position: relative;
	cursor: pointer;
	order: -1;
	transition: 0.3s ease;
}
.bl_tab_ttl:hover{
	opacity: 0.7;
	transition: 0.3s ease;
}
.bl_tab_ttl.active {
	background: #D2C3BC;
	transition: 0.3s ease;
}
.bl_tab_ttl.hair-care{
	padding-left: 44px;
}
.bl_tab_ttl.hair-care::before,
.bl_tab_ttl.makeup::before{
	left: 24px;
}
.bl_tab_ttl::before {
	content: "";
	position: absolute;
	background: url(../../images/common/icon_tab.svg) top center / contain no-repeat;
	width: 32px;
	height: 34px;
	top: 50%;
	transform: translateY(-50%);
	left: 72px;
}
.bl_tab_conts {
	width: 100%;
	display: none;
	margin-top: 40px;
}
.bl_tab_conts.show {
	display: block;
}
.bl_tab_conts .bl_tab_contsInner {
	opacity: 0;
}
.bl_tab_conts.show .bl_tab_contsInner {
	opacity: 1;
	animation: tabAnime 0.8s forwards;
}
@keyframes tabAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* ãƒ†ãƒ¼ãƒ–ãƒ«ã‚¨ãƒªã‚¢ */
.bl_tab_table {
	width: 100%;
	border-collapse: collapse;
	font-size: 18px;
}
.bl_tab_tableWrapper:not(:first-of-type) {
	margin-top: 40px;
}
.bl_tab_table th{
	border: 1px solid #fff;
}
.bl_tab_table td{
	border: 1px solid #F0EEE7;
}
.bl_tab_table a {
	text-decoration: underline;
}

.bl_tab_table > thead th {
	background: #78746B;
	color: #fff;
	height: 48px;
}
.bl_tab_table > thead th:nth-of-type(1) {
	width: 48%;
	text-align: left;
	padding-left: 32px;
}
.bl_tab_table > thead th:nth-of-type(2),
.bl_tab_table > thead th:nth-of-type(3) {
	width: 26%;
}

.bl_tab_table > tbody th,
.bl_tab_table > tbody td {
	height: 48px;
	padding-top: 9px;
	padding-bottom: 7px;
}
.bl_tab_table > tbody th {
	background: #D2C3BC;
	text-align: left;
	font-weight: normal;
	padding-left: 32px;
}
.bl_tab_table > tbody td {
	background: #fff;
	text-align: center;
	line-height: 1.5;
}
.bl_tab_table > tbody td:nth-of-type(2) {
	text-align: right;
	padding-right: 94px;
}
.bl_tab_table > tbody span {
	font-size: 14px;
	text-decoration: none;
}
.bl_tab_att{
	font-size: 14px;
	margin-top: 8px;
}
@media screen and (max-width : 750px){
	/* ã‚¿ãƒ–ã®ã‚¨ãƒªã‚¢ */
	.bl_tab {
		gap: 32px 30px;
	}
	.bl_tab_ttl {
		font-size: 32px;
		width: 330px;
		height: 88px;
	}
	.bl_tab_ttl::before {
		width: 51px;
		height: 55px;
	}
	.bl_tab_ttl.hair-care{
		padding-left: 56px;
	}
	.bl_tab_ttl.hair-care::before{
		left: 32px;
	}
	.bl_tab_conts {
		margin-top: 24px;
	}
	/* ãƒ†ãƒ¼ãƒ–ãƒ«ã‚¨ãƒªã‚¢ */
	.bl_tab_tableWrapper:not(:first-of-type) {
		margin-top: 56px;
	}
	.bl_tab_tableWrapper .el_att {
		font-size: 24px;
		display: block;
		margin-bottom: 24px;
	}
	.bl_tab_tableScroll {
		overflow-x: scroll;
	}
	.bl_tab_table {
		width: 1035px;
		font-size: 24px;
	}
	.bl_tab_table th,
	.bl_tab_table td {
		border-width: 1px;
	}
	.bl_tab_table > thead th {
		height: 64px;
	}
	.bl_tab_table > thead th:nth-of-type(1) {
		width: 34%;
		padding-left: 24px;
	}
	.bl_tab_table > thead th:nth-of-type(2),
	.bl_tab_table > thead th:nth-of-type(3) {
		width: 33%;
	}
	.bl_tab_table > tbody th,
	.bl_tab_table > tbody td {
		height: 64px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.bl_tab_table > tbody th {
		padding-left: 24px;
		padding-right: 8px;
	}
	.bl_tab_table > tbody span{
		font-size: 24px;
		margin-bottom: 0;
	}
	.bl_tab_att{
		font-size: 24px;
		margin-top: 16px;
	}
}

