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

	use 用途　/　event イベントスタッフ用

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

/*------------------------------
	おすすめ商品
------------------------------*/
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt{
	width: 140px;
}

/*------------------------------------
	イベント運営の皆様へ
------------------------------------*/
.other-pr-box{
	margin: 50px auto 80px;
	padding-bottom: 30px;
	border: 2px solid #969696;
	border-radius: 15px;
	position: relative;
}
.other-pr-box h3{
	display: block;
	width: fit-content;
	color: #fff;
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	margin: auto;
}
.other-pr-box h3 > span{
	display: block;
	width: fit-content;
	background-color: #ffba00;
	color: #111;
	margin: 0 auto 20px;
	padding: 0 30px;
	font-size: 2.2rem;
	font-weight: 700;
	border-radius: 20px;
	position: relative;
}
.other-pr-box h3 > span:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 10px solid #ffba00;
	position: absolute;
	bottom: -17px;
	left: 0;
	right: 0;
	margin: auto;
}

.other-pr-box > .img{
	background-color: #54c39d;
	padding: 80px 0 10px;
	text-align: center;
	border-radius: 13px 13px 0 0;
}

.other-pr-box > ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 10px;
	width: 80%;
	margin: auto;
	padding: 20px 50px;
}
.other-pr-box > ul > li{
	background-color: var(--main-color);
	color: #fff;
	padding: 5px 20px;
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 15px;
}
.other-pr-box > p{
	padding: 0 50px;
}


@media screen and (max-width: 810px) {
	.other-pr-box{
		width: 90%;
		padding-bottom: 3%;
	}
	.other-pr-box h3{
		font-size: 3.0rem;
		top: -20px;
	}
	.other-pr-box > .img{
		padding: 60px 0 10px;
	}
	
	.other-pr-box > ul{
		width: 100%;
		padding: 20px 5%;
	}
	.other-pr-box > p{
		padding: 0 5%;
	}
}

@media screen and (max-width: 480px) {
	.other-pr-box{
		width: 95%;
	}
	.other-pr-box h3{
		font-size: 2.4rem;
		top: -15px;
	}
	.other-pr-box h3 > span{
		margin-bottom: 10px;
	}
	.other-pr-box > .img{
		padding: 60px 0 10px;
	}
	
	.other-pr-box > ul{
		gap: 5px;
		padding: 15px 5%;
	}
}







