/* shop_detail */
#lp_box{
    display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 2fr , 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
#lp_img_box_1{
	position: relative;
    display: flex;
	width: 100%;
	height: 100%;
    aspect-ratio: 720/960;
	border: var(--uno-border-5);
	box-shadow: var(--uno-box-shadow);
	border-radius: 10px;
	overflow: hidden;
	grid-row: 1 / 3;
}
#lp_img_box_square{
	position: relative;
    display: flex;
	width: 100%;
	height: 100%;
    aspect-ratio: 660/660;
	border: var(--uno-border-5);
	box-shadow: var(--uno-box-shadow);
	border-radius: 10px;
	overflow: hidden;
	grid-row: 1 / 3;
}
#lp_img_box img{
	max-width: 300px;
	padding: 5px;
    aspect-ratio: 720/960;
	animation: lp_slide 40s ease-in-out infinite;
}
#lp_img_box_square img{
	max-width: 300px;
	padding: 5px;
    aspect-ratio: 660/660;
	animation: lp_slide 40s ease-in-out infinite;
}
@keyframes lp_slide{ 
	0%{transform: translateX(0%);}
	16.5%{transform: translateX(-100%);}
	33%{transform: translateX(-200%);}
	49.5%{transform: translateX(-300%);}
	66%{transform: translateX(-200%);}
	82.5%{transform: translateX(-100%);}
	100%{transform: translateX(0%);}
}
.lp_detail{
	width: 100%;
	padding: 10px;
	background: var(--uno-bg-color-lb);
	border-radius: 5px;
}
#lp_box dt{
	font-weight: bold;
	padding: 5px;
	background: var(--uno-bg-color-lb);
}
#lp_box dd{
	padding: 5px;
	border-bottom: var(--uno-border);
}
@media screen and (max-width: 768px) {
	#lp_box{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 2fr , 1fr;
		gap: 10px;
		margin-bottom: 10px;
	}
	#lp_img_box{
		position: relative;
		display: flex;
		width: 100%;
		height: 100%;
		aspect-ratio: 720/960;
		border: var(--uno-border-5);
		box-shadow: var(--uno-box-shadow);
		border-radius: 10px;
		overflow: auto;
		grid-row: 1 / 3;
	}
	#lp_img_box img{
		max-width: 300px;
		padding: 5px;
		aspect-ratio: 720/960;
		animation: lp_slide 40s ease-in-out infinite;
	}
	}
@media screen and (max-width: 500px) {
	#lp_box{
		display: block;
		margin-bottom: 10px;
	}
	#lp_img_box{
		display: flex;
		height: 300px;
		border-radius: 10px;
		overflow: auto;
		margin: 10px 10px 10px 0;
		
	}
	#lp_img_box img{
		max-width: 300px;
		padding: 5px;
		aspect-ratio: 720/960;
		animation: none;
		
	}
	#lp_box dl{
		margin-top: 10px;
	}
}
