@charset "UTF-8";

.careWhat{
	padding: 50px 40px;
	background: var(--pale);
	border-radius: 25px;
}
.careWhatWhat{
	font-weight: 500;
}
.careWhatList{
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: stretch;
	flex-wrap: wrap;
	gap: 14px;
}
.careWhatList article{
	width: calc( 50% - 7px );
	background: #fff;
	padding: 30px 40px 37px;
	border-radius: 25px;
	box-sizing: border-box;
	box-shadow: 3px 3px 5px #efefef;
	text-align: center;
}
.careWhatList img{
	width: 42px;
	margin-bottom: 12px;
}
.careWhatList h6{
	color: var(--base);
	font-size: var(--fsMiddle);
	font-weight: 500;
	line-height: 28px;
	padding-bottom: 5px;
	border-bottom: solid 1px var(--base);
	display: flex;
}
.careWhatList h6::before{
	content: "";
	display: inline-block;
	background: var(--base);
	width: 5px;
	height: 32px;
	margin-right: 15px;
}
.careWhatList p{
	font-size: 0.9em;
	line-height: 1.75em;
	text-align: left;
	padding: 15px 10px 0 10px;
	
}
@media screen and (max-width: 768px){
	.careWhatList article{
		width: 420px;
	}
	.careWhatList h6{
		font-size: var(--fsLarge);
	}
	.careWhatList p{
		font-size: 1em;
	}
}
@media screen and (max-width: 450px){
	.careWhat{
		padding: 40px 15px;
	}
	.careWhatList article{
		width: 100%;
		padding: 30px 30px 38px;
	}
}
@media screen and (max-width: 350px){
	.careWhat{
		padding: 40px 10px;
	}
	.careWhatList article{
		padding: 25px 25px 35px;
	}
	.careWhatList h6{
		font-size: 1.25em;
	}
	.careWhatList p{
		padding: 12px 5px 0 10px;
	}
}


/* careTable */

.careTable{
	width: 100%;
}
.careTable th,
.careTable td{
	vertical-align: middle;
	box-sizing: border-box;
	font-size: var(--fsMiddle);
	line-height: 1.75rem;
}
.careTable th{
	width: 30%;
	text-align: center;
	font-weight: 600;
	color: var(--deepgreen);
	background: var(--pale);
}
.careTable td{
	width: 70%;
	background: #fff;
	padding: 30px 50px;
}
.careTable tr:not(:last-of-type) th,
.careTable tr:not(:last-of-type) td{
	border-bottom: dashed 1px var(--deep);
}
.careTable th span,
.careTable td span{
	display: block;
	font-size: 0.7em;
	line-height: 1.2rem;
}
.careTable th span{
	margin-top: 3px;
}
.careTable td span{
	margin-top: 5px;
}
.careTable a{
	color: #242323;
}
.careTable a:hover{
	color: var(--base);
}
@media screen and (max-width: 450px){
	.careTable th,
	.careTable td{
		line-height: 1.25rem;
		font-size: 1em;
	}
	.careTable tr:not(:last-of-type) th,
	.careTable tr:not(:last-of-type) td{
		border-bottom: dotted 1px var(--deep);
	}
	.careTable th{
		width: 120px;
		font-weight: 500;
		padding: 10px 8px;
	}
	.careTable td{
		width: inherit;
		padding: 20px 20px;
	}
	.careTable th span,
	.careTable td span{
		line-height: 1.4em;
	}
}


.carePointWrap{
	margin-top: 15px;
	border: solid 1px #dfdfdf;
	border-radius: 15px;
	padding: 20px 30px 15px;
	font-size: var(--fsSmall);
	line-height: 1.375rem;
}
.carePoint{
	padding-bottom: 10px;
}
.carePoint li{
	width: 100%;
	margin-bottom: 7px;
}
.carePoint h6{
	font-weight: 600;
	display: inline;
	margin-right: 5px;
}
.carePoint p{
	display: inline;
}
.carePointWrap span{
	border-top: solid 1px #dfdfdf;
	display: block;
	padding-top: 7px;
}
@media screen and (max-width: 450px){
	.carePointWrap{
		padding: 15px 20px 15px;
		line-height: 1.2rem;
		font-size: 0.875em;
	}
	.carePoint{
		padding-bottom: 5px;
	}
}
