@charset "UTF-8";
.SHEET {
    padding-top: 180px;
}
.category_title {
    margin-left: 50px;
    font-size: 16px;
}
.category_title span {
    margin: auto 10px auto 15px;
	font-size: 13px;
}
.collection_area {
    width: calc(100% - 100px);
    margin: 50px 50px auto;
}
.imageWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 150px;
}
.imageWrap div {
    width: calc(100% / 2 - 15px);
}
.image_text {
    margin-top: 10px;
    font-size: 11px;
    line-height: 2em;
}
.itemWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    row-gap: 50px;
}
.itemWrap div {
    width: calc(100% / 4 - 20px);
}
.itemWrap div:nth-child(5),
.itemWrap div:nth-child(9){
	line-height: 1.7em;
}
.item_name {
    font-size: 17px;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.item_name span {
    font-size: 11px;
}
.item_price {
    width: 100% !important;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
}
#FOOTER {
    position: relative !important;
    right: 50px !important;
    bottom: 20px !important;
    z-index: 50 !important;
    text-align: right !important;
    margin-top: 150px;
}
.copyright {
    color: #000 !important;
}
@media only screen and (max-width: 1050px) {
    .SHEET {
        padding-top: 150px;
    }
	.category_title {
        width: calc(100% - 50px);
        margin: 0px 25px;
        font-size: 15px;
    }
	.collection_area {
        width: calc(100% - 50px);
        margin: 50px 25px auto;
    }
    .itemWrap div {
        width: calc(100% / 3 - 20px);
    }
    #FOOTER {
        right: 25px !important;
    }
}
@media only screen and (max-width: 768px) {
    .imageWrap {
        display: block;
        margin-bottom: 50px;
    }
	.imageWrap div {
        width: 100%;
		margin-bottom: 30px;
    }
	.image_text{
		margin-bottom: 45px;
	}
	.itemWrap{
		row-gap: 30px;
	}
    .itemWrap div {
        width: calc(100% / 2 - 20px);
    }
	.item_price{
		display: block;
	}
	.item_price p{
		line-height: 1.5em;
	}
    #FOOTER {
        margin-top: 100px;
    }
}