.bn {
	height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.bn .box {
	padding: 45px 0 45px 5%;
}
.bn h2 {
	font-size: 60px;
	font-family: 'GmarketSansBold';
	line-height: 1.05;
}
.bn h2 span {
	display: block;
	font-family: 'GmarketSansLight';
}
.bn p {
	margin-top: 10px;
}
.bn01 {
	color: #3D4BD0;
}
.bn02 {
	color: #AC7058;
}


.list .title {
	padding: 60px 0;
}
.list .title strong {
	display: block;
	font-family: 'Cafe24Ohsquareair';
	font-size: 30px;
	font-weight: 400;
	transform: rotate(0.03deg);
	margin-bottom: 10px;
}
.list .title h3 {
	font-size: 60px;
	font-family: 'Cafe24Ohsquare';
	color: var(--navy);
	margin-bottom: 10px;
}
.list .title p {
	font-family: 'Cafe24Ohsquareair';
	transform: rotate(0.03deg);
	font-size: 20px;
}
.list ul {
	gap: 88px 40px;
	padding-bottom: 60px;
}
.list ul li {
	width: calc(33.333% - 27px);
}
.list ul li a {
	position: relative;
	display: block;
}
.list ul li .thumb {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 100%;
}
.list ul li .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list ul li .info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-radius: 0px 0px 5px 5px;
	background: rgba(16, 24, 47, 0.80);
	padding: 20px;
	box-sizing: border-box;
}
.list ul li .info p {
	font-size: 20px;
	color: #fff;
}
.list ul li .info h3 {
	font-size: 30px;
}


.detail {
	padding: 100px 0 80px;
	gap: 20px 50px;
	max-width: 1100px;
	margin: 0 auto;
}
.detail .thumb {
	position: relative;
	width: 550px;
	height: 550px;
	overflow: hidden;
}
.detail .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.detail .info {
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}
.detail .info .top h2 {
	font-size: 46px;
	font-weight: 500;
	color: #000;
	margin-bottom: 12px;
	line-height: 1.2;
}
.detail .info .top .price {
	font-size: 24px;
	margin-bottom: 12px;
}
.detail .info .top p {
	color: #878A8F;
	font-weight: 200;
}
.detail .info .bottom {
	font-family: 'AppleSDGothicNeo';
}
.detail .info .bottom .member_count {
	border-bottom: 1px solid #C4C4C4;
	padding-bottom: 20px;
	margin-bottom: 15px;
}
.detail .info .bottom .member_count > p {
	font-size: 18px;
	margin-bottom: 12px;
}
.detail .info .bottom .member_count > p + .flex {
	justify-content: space-between;
	align-items: center;
}
.detail .info .bottom .member_count .stock {
	gap: 0;
	width: 120px;
}
.detail .info .bottom .member_count .stock input {
	width: 48px;
	border-radius: 0;
	height: 35px;
	border-top: 1px solid #C4C4C4;
	border-bottom: 1px solid #C4C4C4;
	text-align: center;
	font-size: 20px;
	color: #171717;
	box-sizing: border-box;
}
.detail .info .bottom .member_count .stock button {
	width: 36px;
	height: 36px;
}
.detail .info .bottom .member_count .stock button.minus {
	background: url("../images/ico-minus.svg")no-repeat 50% 50% / 100%;
}
.detail .info .bottom .member_count .stock button.plus {
	background: url("../images/ico-plus.svg")no-repeat 50% 50% / 100%;
}
.detail .info .bottom .member_count h4 {
	font-size: 24px;
}
.detail .info .bottom .total {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.detail .info .bottom .total strong {
	font-size: 20px;
}
.detail .info .bottom .total div {
	align-items: center;
	gap: 10px 16px;
}
.detail .info .bottom .total div span {
	color: #A7A7A7;
	font-size: 14px;
}
.detail .info .bottom .total div h2 {
	font-size: 28px;
	color: #FF5F1F;
}
.detail .info .bottom .btn_area {
	gap: 10px;
}
.detail .info .bottom .btn_area button {
	height: 72px;
	border-radius: 5px;
}
.detail .info .bottom .btn_area button.reserve_btn {
	flex: 1;
	background: #03134E;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
.detail .info .bottom .btn_area button.cart_btn {
	width: 82px;
	font-size: 0;
	background: #E3E3E3 url("../images/ico-bag.svg")no-repeat 50% 50%;
}




@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1320px) {
}
@media screen and (max-width: 1024px) {
	.bn {
		height: 180px;
	}
	.bn .box {
		padding: 34px 0 34px 5%;
	}
	.bn h2 {
		font-size: 40px;
	}
	.bn p {
		font-size: 14px;
	}
	
	
	.list .title strong {
		font-size: 22px;
	}
	.list .title h3 {
		font-size: 35px;
	}
	.list .title p {
		font-size: 16px;
	}
	
	.list ul {
		gap: 55px 20px;
	}
	.list ul li {
		width: calc(33.333% - 14px);
	}
	.list ul li .info p {
		font-size: 16px;
	}
	.list ul li .info h3 {
		font-size: 22px;
	}
}
@media screen and (max-width: 768px) {
	.bn {
		height: 150px;
	}
	.bn .box {
		padding: 33px 0;
	}
	.bn h2 {
		font-size: 28px;
	}
	.bn p {
		font-size: 12px;
	}
	
	.list ul li {
		width: calc(50% - 10px);
	}
}
@media screen and (max-width: 480px) {
	.list ul {
		gap: 20px;
	}
	.list ul li {
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	.list .title strong {
		font-size: 18px;
	}
	.list .title p {
		font-size: 14px;
	}
}