@charset "UTF-8";
/* -------------------------------------------------- */
/* PC */
/* -------------------------------------------------- */
#underFvTit .enTit {
	font-size: 6.5rem;
}

/* -------------------------------------------------- */
/* 美しさを育てる、ホームケアと医療ケア */
/* -------------------------------------------------- */
#care {
	padding-block: 85px 195px;
	position: relative;
}
#care::before {
	content: "";
	display: block;
	width: 50%;
	height: 435px;
	background: url(../../img/cosmetics-supplements-diet/bg_care01.png) no-repeat left center/contain;
	position: absolute;
	top: -3%;
	right: 0;
	pointer-events: none;
}

#care .inner {
	position: relative;
	z-index: 2;
}

#careTit {
	margin-bottom: 35px;
	font-weight: 600;
	font-size: 3.4rem;
	line-height: 1.7;
}

#careTxtBox {
	width: 50%;
}

#care .txt {
	font-size: 1.8rem;
}

#care .txt + .txt {
	margin-top: 1.3em;
}


/* -------------------------------------------------- */
/* おすすめ商品 */
/* -------------------------------------------------- */
#recommend {
	margin-bottom: 150px;
	padding-block: 130px 190px;
	background: #f4f2ef;
}


/* -------------------------------------------------- */
/* 商品紹介 */
/* -------------------------------------------------- */
#product {
	margin-bottom: 150px;
}

#product .sec + .sec {
	margin-top: 110px;
}

#product .sec .content {
	border: 1px solid #888;
}

#product .sec .content a {
	display: grid;
	grid-template-columns: min(32%, 380px) 1fr;
	background: #fff;
}

#product .sec .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#product .sec .txtBox {
	align-self: center;
	width: calc(100% - 20px);
	padding: 30px 50px;
	position: relative;
}
#product .sec .txtBox::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #444 url(../../img/common/icon_clinic_arrow.svg) no-repeat center/25%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#product .sec .subTit {
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cac9c9;
	font-weight: 600;
	font-size: 2.4rem;
}

#product .sec .list {
	width: min(100%, 650px);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

#product .sec .list .item {
	padding-left: .7em;
	font-size: 1.7rem;
	font-family: var(--font-family-sub);
	position: relative;
}
#product .sec .list .item::after {
	content: "";
	display: block;
	width: .2em;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: currentColor;
	position: absolute;
	top: .8em;
	left: 0;
}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	/* -------------------------------------------------- */
	/* 美しさを育てる、ホームケアと医療ケア */
	/* -------------------------------------------------- */
	#care {
		padding-block: 0 80px;
	}
	#care::before {
		width: 60%;
		height: auto;
		aspect-ratio: 859/623;
		top: 0;
	}

	#careTxtBox {
		width: 100%;
	}

	#care .txt {
		font-size: 1.5rem;
	}


	/* -------------------------------------------------- */
	/* 商品紹介 */
	/* -------------------------------------------------- */
	#product {
		margin-bottom: 30px;
	}

	#product .sec + .sec {
		margin-top: 80px;
	}

	#product .sec .content a {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}

	#product .sec .img img {
		height: auto;
		object-fit: fill;
	}

	#product .sec .txtBox {
		width: 95%;
		padding: max(20px, 5%) 40px max(20px, 5%) max(20px, 5%);
	}
	#product .sec .txtBox::after {
		width: 35px;
		height: 35px;
	}

	#product .sec .subTit {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}

	#product .sec .list {
		width: 100%;
	}

	#product .sec .list .item {
		font-size: 1rem;
	}

}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	/* -------------------------------------------------- */
	/* 美しさを育てる、ホームケアと医療ケア */
	/* -------------------------------------------------- */
	#careTit {
		margin-bottom: 0;
		display: flex;
		align-items: center;
		width: 67.5%;
		aspect-ratio: 859/623;
		font-size: 2.8rem;
	}

}


/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	/* -------------------------------------------------- */
	/* 美しさを育てる、ホームケアと医療ケア */
	/* -------------------------------------------------- */
	#care::before {
		width: 100%;
		margin-bottom: 10px;
		position: static;
	}

	#careTit {
		margin-bottom: 25px;
		font-size: 2.4rem;
		text-align: center;
	}

}


/* -------------------------------------------------- */
/* hover */
/* -------------------------------------------------- */
@media (hover: hover) {
	/* -------------------------------------------------- */
	/* 商品紹介 */
	/* -------------------------------------------------- */
	#product .sec .img {
		overflow: hidden;
	}

	#product .sec .img img {
		transition: transform .4s ease;
	}

	#product .sec .txtBox::after {
		transition: all .3s;
	}

	#product .sec a:hover .img img {
		transform: scale(1.04);
	}

	#product .sec a:hover .txtBox::after {
		background-color: #998a54;
	}

}