@charset "UTF-8";





/* ==================================================
	acce_list
================================================== */

.acce_list {
	display: flex;
	flex-wrap: wrap;
}
.acce_list .acce_content {
	position: relative;
	width: 100%;
	padding: 20px 15px;
}
.acce_list .acce_content:nth-child(n+2)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 1px;
	background: #ccc;
}



@media screen and (min-width: 480px) {
	.acce_list .acce_content {
		width: calc(100% / 2);
		border-right: 1px solid #ccc;
	}
	.acce_list .acce_content:nth-of-type(2n) {
		border-color: transparent;
	}
	.acce_list .acce_content:nth-child(2n)::before {
		content: none;
	}
}



@media screen and (min-width: 768px) {
	.acce_list .acce_content {
		width: calc(100% / 3);
	}
	.acce_list .acce_content:nth-of-type(2n) {
		border-color: #ccc;
	}
	.acce_list .acce_content:nth-of-type(3n) {
		border-color: transparent;
	}
	.acce_list .acce_content:nth-child(n+2)::before {
		content: none;
	}
	.acce_list .acce_content:nth-child(3n+1)::before {
		content: "";
	}
}



@media screen and (min-width: 1024px) {
	.acce_list .acce_content {
		width: calc(100% / 4);
	}
	.acce_list .acce_content:nth-of-type(3n) {
		border-color: #ccc;
	}
	.acce_list .acce_content:nth-of-type(4n) {
		border-color: transparent;
	}
	.acce_list .acce_content:nth-child(3n+1)::before {
		content: none;
	}
	.acce_list .acce_content:nth-child(4n+1)::before {
		content: "";
		width: 1000px;
	}
}



/* ----------------------------------------
	acce_photo
---------------------------------------- */

.acce_photo {
	text-align: center;
}
.acce_photo img {
	width: auto;
	height: 150px;
}



/* ----------------------------------------
	acce_detail
---------------------------------------- */

.acce_detail {
	margin: 10px 0 15px;
}

.acce_category {
	color: #767676;
	font-size: 12px;
	font-weight: bold;
}

.acce_detail h3 {
	margin-top: 5px;
	font-size: 16px;
	line-height: 1.4;
}



/* acce_comment -------------------- */

.acce_comment {
	margin-top: 15px;
	color: #767676;
}

.acce_comment .txt_indent {
	padding-left: 1em;
	margin-bottom: 10px;
	text-indent: -1em;
}



/* ----------------------------------------
	acce_buy
---------------------------------------- */

/* acce_price -------------------- */

.acce_price {
	text-align: center;
}
.price_type {
	font-size: 12px;
	font-weight: bold;
}
.acce_price .price {
	font-size: 13px;
}
.acce_price .price > span {
	font-size: 24px;
}



/* acce_btn_area -------------------- */

.acce_btn_area {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}
.acce_btn_area > div:nth-of-type(n+2) {
	margin-left: 8px;
}

.acce_btn_area > div + p {
	margin-left: 8px;
	font-size: 13px;
}

.acce_btn_area .button {
	padding: .4em 1em;
}





/* ==================================================
	2021.06.21
================================================== */

@media screen and (min-width: 480px) {
	.acce_price .regular_price_text {
		padding-top: calc(1.3rem * 1.6);
	}
}

