﻿
.main {
	width: 78%;
	margin: 50px auto;
}

.pack_list {
	display: flex;
	justify-content: pace-between;
	flex-wrap: wrap;
	gap: 10px;
}

.pack_li {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: 12px;
	box-shadow: #00000029 0 0 8px;
}

.pack {
	max-width: 480px;
	min-width: 480px;
}

.pack_img_box {
	width: 100%;
/*	height: 250px;*/
	height: 450px;
	display: block;
	cursor: pointer;
}

.pack_img {
	width: 100%;
	height: 100%;
	border-radius: 12px 12px 0px 0px;
}

.pack_count_box {
	width: 100%;
	margin: 10px auto;
	text-align: center;

	display: flex;
	align-items: center;
}

.pack_count {
	width: 50%;
}

.one_money {
	font-size: 25px;
	font-weight: bold;
}

.pack_count_rest {
	
}

.pack_progress_bar {
	margin: auto;
	width: 80%;
	margin-bottom: 20px;
}

.progress {
	width: 100%;
	-webkit-appearance: none;
	vertical-align: baseline;
	border-radius: 15px;
	border-color: #E2E8F0;
}

.progress::-webkit-progress-bar {
	border-radius: 15px;
	background-color: #E0E0E0;
}

.progress::-webkit-progress-value {
	border-radius: 15px;
	background-color: #89B929;
}

.progress.yellow::-webkit-progress-value {
	background-color: #FFE050;
}

.pack_btn_box {
	margin: auto;
	width: 80%;
}

.btn_bigbox {
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0px 12px;
}

.btn_box {
	width: calc(50% - 6px);
}

.btn_wide_box {
	width: 100%;
	margin-bottom: 12px;
}

.button {
	width: 100%;
	height: 50px;
	color: #FFFFFF;
	color: #E2E8F0;
	font-size: 24px;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.one_btn {
	background: #000000;
	box-shadow: 0px 0px 20px inset;
}

.ten_btn {
	font-weight: bold;
	color: #212121;
	background-image: linear-gradient(to right, #F8C215, #FFE357);
}

.ten_btn:before {
	
}

.one_hundred_btn {
	background-color: rgb(234, 69, 60);
}

.one_btn:before, .ten_btn:before, .one_hundred_btn:before {
/*	margin: auto;*/
	margin-right: 0.5rem;
	content: "";
	background-image: url(/img/gatya_img.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	display: inline-block;
/*
	position: absolute;
	top: 0px;
	left: 15%;
	bottom: 0px;
*/
}

.sold_out {
	color: #E53E3E;
}

.sold_out_img {
	filter: grayscale(1);
}


@media screen and (max-width: 767px) {
	.main {
		width: 90%;
	}

	.button {
		font-size: 15px;
	}
	
	.pack_li {
		width: 100%;
	}
	
	.pack {
		max-width: unset;
		min-width: unset;
	}
}