img {
	width: 100%;
}

#page-index {
	width: 100%;
	overflow-x: hidden;
}

.container {
	width: 100%;
	position: relative;
}

.subject {
	width: 100%;
	padding: 50px 10px 30px;
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
	font-weight: 500;
	text-align: center;
}

.btn-border {
	width: 300px;
	height: 80px;
	justify-content: center;
	display: flex;
	align-items: center;
	background-size: 50% 50%;
	background-image: radial-gradient(circle at 100% 100%, transparent 0, transparent 12px,
		#ffffff 13px),
		radial-gradient(circle at 0 0, transparent 0, transparent 12px, #ffffff
		13px),
		radial-gradient(circle at 100% 0, transparent 0, transparent 12px,
		#ffffff 13px),
		radial-gradient(circle at 0 100%, transparent 0, transparent 12px,
		#ffffff 13px);
	background-repeat: no-repeat;
	background-position: right bottom, left top, right top, left bottom;
}

.btn-inner {
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	font-weight: 300;
	font-size: 2rem;
	letter-spacing: 0.8px;
	color: #ffffff;
	justify-content: center;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 10px 50px;
	background-size: 50% 50%;
	background-image: radial-gradient(circle at 100% 100%, transparent 0, transparent 12px,
		#9383BC 13px),
		radial-gradient(circle at 0 0, transparent 0, transparent 12px, #9383BC
		13px),
		radial-gradient(circle at 100% 0, transparent 0, transparent 12px,
		#9383BC 13px),
		radial-gradient(circle at 0 100%, transparent 0, transparent 12px,
		#9383BC 13px);
	background-repeat: no-repeat;
	background-position: right bottom, left top, right top, left bottom;
}

.main-bg-img>img {
	width: 100%;
}

.main-section-btn-area {
	max-width: 790px;
	margin: -10% auto 0;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
}

.main-section-btn-area h1 {
	font-size: 2rem;
	line-height: 1.5;
	color: #FFF;
	font-weight: 700;
	position: absolute;
	width: 100%;
	padding: 10px 5%;
	background-image: url('/images/star-bg-1.png');
	background-size: auto 97%;
	background-repeat: no-repeat;
	background-position: 82% 94%;
}

.main-section-btn-area h1 span {
	font-style: italic;
	font-size: 2.5rem;
	letter-spacing: 0.25rem;
	margin: 0 0.2rem;
}

.product-wrapper {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 10px;
}

.product-wrapper .product-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.product-wrapper .product-list>div {
	box-shadow: 0 0 10px white;
}

.product-wrapper .link {
	margin: 0 auto;
	text-align: center;
	max-width: 1000px;
	width: 100%;
	position: relative;
	justify-content: center;
	display: flex;
	align-items: center;
}

.product-wrapper .link::before {
	content: '';
	display: inline-block;
	width: 80px;
	height: 80px;
	margin: 0 5px;
	background-image: url('/images/section-bg-item-3.png');
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

.product-wrapper .link::after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 80px;
	margin: 0 5px;
	background-image: url('/images/section-bg-item-4.png');
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	background-position: center;
	position: absolute;
	right: 0;
	top: 0;
}

.card-wrapper {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 10px 0 10px;
}

.card-wrapper>div {
	justify-content: center;
	display: flex;
	align-items: center;
}

.card-wrapper .icon {
	padding-left: 10%;
}

.gift-box-wrapper {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px;
}

.policy-wrapper {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px;
}

.policy-wrapper h3 {
	line-height: 180%;
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: 0.25px;
	margin-bottom: 10px;
}

.policy-wrapper ol {
	padding-left: 15px;
	padding-bottom: 20px;
}

.policy-wrapper ol li {
	list-style: decimal;
	margin: 8px;
	line-height: 150%;
}

.campaign-wrapper {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px;
}

.campaign-wrapper .step-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.campaign-wrapper .step-list .step-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	position: relative;
}

.campaign-wrapper .step-list .step-item .text p{
	width: 100%;
	position: relative;
	text-align: center;
	color: #FFF;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 400;
}

.campaign-wrapper .step-list .step-item::after {
	content: '';
	background-image: url(/images/next-step.png);
	display: inline-block;
	width: 30%;
	height: 30%;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 20%;
	right: -20%;
}

.campaign-wrapper .step-list .step-item:last-of-type::after {
	display: none;
}

@media screen and (max-width: 768px) {
	.main-section-btn-area h1 {
		font-size: 1.5rem;
		background-size: auto 30%;
	}
	.main-section-btn-area h1 span {
		font-size: 2rem;
	}
	.card-wrapper .icon {
		padding-left: 5%;
	}
	.campaign-wrapper .step-list .step-item::after {
		width: 25%;
		height: 25%;
		bottom: 30%;
	}
}

@media screen and (max-width: 599px) {
	.main-section-btn-area h1 {
		font-size: 1.2rem;
		background-size: auto 30%;
	}
	.main-section-btn-area h1 span {
		font-size: 1.7rem;
	}
	.product-wrapper {
		padding: 50px 30px;
	}
	.subject {
		padding: 40px 0 30px;
		font-size: 1.2rem;
	}
	.product-wrapper .product-list {
		gap: 30px;
	}
	.product-wrapper .link .btn {
		font-size: 1.5rem;
		padding: 5px 40px;
	}
	.product-wrapper .link::before {
		width: 50px;
		height: 50px;
		margin: 0 5px;
	}
	.product-wrapper .link::after {
		width: 50px;
		height: 50px;
	}
	.btn-border {
		width: 250px;
		height: 60px;
	}
	.btn-inner {
		width: 246px;
		height: 56px;
		font-size: 1.5rem;
	}
	.campaign-wrapper .step-list .step-item .text p {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

@media screen and (max-width: 480px) {
	.main-section-btn-area {
		margin: -10% 15px 0;
	}
	.main-section-btn-area h1 {
		font-size: 0.9rem;
		background-size: auto 25%;
	}
	.main-section-btn-area h1 span {
		font-size: 1.2rem;
	}
	.product-wrapper {
		padding: 0 10px 50px 10px;
	}
	.subject {
		padding: 40px 0 30px;
		font-size: 1rem;
	}
	.product-wrapper .product-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	.product-wrapper .link .btn {
		font-size: 1rem;
		padding: 5px 30px;
	}
	.btn-border {
		width: 200px;
		height: 50px;
	}
	.btn-inner {
		width: 196px;
		height: 46px;
		font-size: 1.08rem;
		padding: 5px 50px;
	}
	
	.campaign-wrapper .step-list {
		grid-template-columns: repeat(1, 1fr);
		gap: 0 20px;
	}
	
	.campaign-wrapper .step-list .step-item{
		width: 50%;
        margin: 0 auto 20%;
	}
	
	.campaign-wrapper .step-list .step-item::after {
		width: 30%;
		height: 20%;
		bottom: -30%;
        right: 35%;
        rotate: 90deg;
	}
	       
}