
/*-----------------------------------------------------------------

	type 形状 /　normal 胸当て

-----------------------------------------------------------------*/

/*------------------------------
	紐タイプ
------------------------------*/
.strings-box{
	margin: 50px auto;
}

.strings-box .strings-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
	margin-bottom: 15px;
}
.strings-box .strings-list > dl{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: calc((100% - 30px) / 3);
}
.strings-box .strings-list > dl > dt{
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}
.strings-box .strings-list > dl > dt > span{
	display: block;
	width: fit-content;
	color: #fff;
	margin: 0 auto 5px;
	padding: 5px 15px;
	font-size: 1.6rem;
	border-radius: 30px;
}
.strings-box .strings-list > dl > dd p{
	margin: 0 10px;
	font-size: 1.5rem;
}

.strings-box .strings-list > dl > dd.img{
	overflow: hidden;
	position: relative;
}
.strings-box .strings-list > dl > dd.img img{
	width: 100%;
	height: 390px;
	object-fit: cover;
	object-position: center;
}
.strings-box .strings-list > dl > dd.img:before{
	content: "";
	display: block;
	width: 100%;
	height: 90%;
	background-color: #969696;
	border-radius: 15px;
	position: absolute;
	top: 0;
	z-index: -1;
}

/**/
.strings-box .strings-list > dl.strings-x > dt > span{
	background-color: #8ea4eb;
}
.strings-box .strings-list > dl.strings-x > dd.img:before{
	background-color: #cbd1e5;
}
.strings-box .strings-list > dl.strings-h > dt > span{
	background-color: #ff906e;
}
.strings-box .strings-list > dl.strings-h > dd.img:before{
	background-color: #f6d5cb;
}
.strings-box .strings-list > dl.strings-neck > dt > span{
	background-color: #ffb952;
}
.strings-box .strings-list > dl.strings-neck > dd.img:before{
	background-color: #fae5c6;
}

@media screen and (max-width: 810px) {
	.strings-box .strings-list{
		gap: 20px 15px;
	}
	.strings-box .strings-list > dl{
		width: calc((100% - 30px) / 3);
	}
	.strings-box .strings-list > dl > dd.img img{
		height: 390px;
	}
}
@media screen and (max-width: 600px) {
	.strings-box .strings-list > dl{
		width: calc((100% - 15px) / 2);
	}
	.strings-box .strings-list > dl > dd.img img{
		height: 320px;
		object-position: top;
	}
}
@media screen and (max-width: 480px) {
	.strings-box .strings-list > dl{
		width: 100%;
	}
	.strings-box .strings-list > dl > dd.img img{
		width: auto;
		height: 290px;
	}
	.strings-box .strings-list > dl > dd{
		text-align: center;
	}
}


/*------------------------------------
	お薦め用途
------------------------------------*/
.osusume-use{
	background-color: #f1f1f1;
	margin: 50px auto 80px;
	padding: 40px 45px;
	border: 2px solid #dfdfdf;
	border-radius: 15px;
	position: relative;
}
.osusume-use > h3{
	display: block;
	width: fit-content;
	margin: 0 auto 30px;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	position: relative;
}
.osusume-use > h3 span{
	display: block;
	width: fit-content;
	background-color: #fcb0bb;
	color: #111;
	margin: 0 auto 20px;
	padding: 5px 30px;
	font-size: 2.2rem;
	font-weight: 700;
	border-radius: 20px;
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
}
.osusume-use > h3 span:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 10px solid #fcb0bb;
	position: absolute;
	bottom: -17px;
	left: 0;
	right: 0;
	margin: auto;
}

.osusume-use > ul{
	display: flex;
	justify-content: space-between;
	margin: auto;
	margin: 30px auto;
}
.osusume-use > ul > li{
	width: 390px;
	background-repeat: no-repeat;
	background-position: top center;
	padding-bottom: 50px;
	text-align: center;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.osusume-use > ul > li:after{
	content: "";
	display: block;
	width: 100%;
	height: 350px;
	background-repeat: no-repeat;
	background-position: bottom center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.osusume-use > ul > li p{
	color: #fff;
	padding: 10px 20px;
	font-size: 2rem;
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.osusume-use > ul > li img{
	border-radius: 15px;
}
.osusume-use > p{
	font-size: 1.4rem;
}


@media screen and (max-width: 810px) {
	.osusume-use{
		padding: 30px 4%;
	}
	
	.osusume-use > ul{
		display: flex;
		justify-content: space-between;
		margin: auto;
		margin: 30px auto;
	}
	.osusume-use > ul > li{
		width: 48%;
		background-size: 100% auto;
	}
	.osusume-use > ul > li:after{
		width: 100%;
		height: 100%;
		background-size: 100% auto;
	}
	.osusume-use > ul > li > img{
		width: 100%;
	}
	.osusume-use > ul > li p{
		padding: 10px 20px;
	}
}

@media screen and (max-width: 480px) {
	.osusume-use > ul{
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.osusume-use > ul > li{
		width: 90%;
		padding-bottom: 0;
	}
	.osusume-use > ul > li:after{
		width: 55%;
	}
	.osusume-use > ul > li > img{
		width: 100%;
	}
	.osusume-use > ul > li p{
		padding: 5px 20px;
	}
}






