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

#main {
	margin: 0 0 150px;
}

#option {
	max-width: 1260px;
	margin: auto;
	padding-top: 20px;
}

#option .option-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px 20px;
	margin-bottom: 100px;
	overflow: inherit;
	counter-reset: option-counter;
}

#option .option-list > li {
	width: 100%;
	position: relative;
	background-color: #cccccc;
}
#option .option-list > li::before {
	content: counter(option-counter);
	counter-increment: option-counter;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 10px;
	bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 60;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 34px;
}
#option .option-list > li::after {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	left: 10px;
	bottom: 50px;
	display: block;
	z-index: 50;
	border: 1px solid #dac18e;
	background: rgba(0, 0, 0, 0.5);
	transform: rotate(45deg);
}

#option .option-list > li .cover {
	position: relative;
	min-height: 14rem;
}

#option .option-list > li .label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 24px;
}

#option .option-list > li .price {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	font-family: "Arial", sans-serif;
	font-size: 18px;
	background: linear-gradient(#ceae79 0%, #9e7e4b 100%);
}

#option .free {
    font-size: 1.2rem;
    width: 480px;
    padding: 1.5%;
    margin: 3% auto;
	text-align: center;
    background: #222;
}

@media screen and (max-width: 1259px) {
	#option .option-list > li .cover > img {
		max-width: 100%;
		height: auto;
		display: block;
	}
}