@charset "utf-8";
/* CSS Document */


/*-------------------------------
    返品交換
-------------------------------*/
.returnBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin: 30px auto 50px;
}

.returnBox dl{
	width: 435px;
	margin-bottom: 15px;
	padding: 15px;
	border: 3px solid #dcdcdc;
}
.returnBox dl dt{
	margin-bottom: 10px;
	padding: 3px 0;
    padding-left: 25px;
	font-size: 20px;
	font-weight: bold;
    position: relative;
}
.returnBox dl dt:before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: #005d93;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.returnBox dl dd{
    background-repeat: no-repeat;
    background-position: top center;
	padding-top: 180px;
}

.returnBox dl.returnBad dd{
	background-image: url(../../../_images/order/return/bad-img.gif);
}
.returnBox dl.returnDelay dd{
	background-image: url(../../../_images/order/return/delay-img.gif);
}
.returnBox dl.returnCancel{
	width: 100%;
}
.returnBox dl.returnCancel dd{
    padding: 0;
}

@media screen and (max-width: 768px) {
    .returnBox{
        width: 95%;
    }
    
    .returnBox dl{
        width: 48%;
    }
    .returnBox dl dd{
        background-size: 90%;
        padding-top: 45%;
    }
}

@media screen and (max-width: 480px) {
	.returnBox dl.returnBad,
	.returnBox dl.returnDelay,
	.returnBox dl.returnCancel{
		width: 95%;
		margin: 0 auto 15px;
		float: none;
	}
	.returnBox dl.returnBad dd,
	.returnBox dl.returnDelay dd{
		background-size: 100%;
		padding-top: 45%;
	}
}

