/*	===============================================================
	● 商品詳細-よく一緒に購入されている商品用CSS
	---------------------------------------------------------------
	Release 2021.02.25                                Powerd by TDR
	=============================================================== */

	.detail_recommend
	{
		margin:3em auto 2em;
		width:100%;
		padding:0 1.5em 0.5em;
		border:1px solid #ccc;
		border-radius: 1em;
	}
	.detail_recommend h5
	{
		margin:0 auto 1em!important;
		padding:0 0.5em!important;
		border:none!important;
		font-size:15px!important;
		font-size:1rem!important;
		background:#fff;
		position:relative;
		top:-0.5em;
		left:0em;
		display:inline-block;
		color:#005032!important;
	}
	.detail_recommend ul
	{
		display:flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}
	.detail_recommend li
	{
		width:calc( ( 100% - 30px ) / 3 );
		margin-right:15px;
		margin-bottom:10px;
		text-align:center;
	}
	.detail_recommend li:nth-child(3n)
	{
		margin-right:0px;
	}
	.detail_recommend li img
	{
		width:90%;
		object-fit: contain;
	}
	.detail_recommend li h6
	{
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size:0.8rem!important;
		padding:0!important;
		border:none!important;
		margin-top:10px!important;
	}
	.detail_recommend li a:hover
	{
		opacity: 0.7;
	}

