* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
	font-family: "Noto Sans TC", sans-serif;
}

html {
	font-size: 16px;
}

#app {
	position: relative;
	overflow: scroll;
	overflow-x: hidden;
	height: 100vh;
	background-color: #B93823;
}

/* preload */
.preload {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #a02f1e;
	z-index: 60;
	transition: 0.8s;
	opacity: 1;
	transform: translateY(0);
}

.preload.active {
	z-index: -1;
	opacity: 0;
	transform: translateY(100%);
	/* transition: 0.8s; */
}

.preload_img {
	min-width: 50px;
	position: absolute;
	width: 5vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: preload_imgAni 1s infinite alternate;
}

@keyframes preload_imgAni {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		transform: translate(-50%, -50%) scale(1.2);
	}
}

/* loading */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #26262650;
	z-index: -1;
	transition: 1s;
	opacity: 0;
}

.loading.active {
	z-index: 60;
	opacity: 1;
}

.lds-ellipsis {
	color: #F6C101;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	border-radius: 10px;
}

.lds-ellipsis,
.lds-ellipsis div {
	box-sizing: border-box;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ellipsis div {
	position: absolute;
	top: 33.33333px;
	width: 13.33333px;
	height: 13.33333px;
	border-radius: 50%;
	background: currentColor;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(24px, 0);
	}
}

/*fixed area*/
.go_top {
	position: fixed;
	bottom: 150px;
	right: 40px;
	width: 55px;
	height: 55px;
	z-index: 11;
	cursor: pointer;
	transition: 0.5s;
	opacity: 0;
}

.go_top.active {
	opacity: 1;
}

.go_top:hover {
	transform: scale(1.1);
}

.go_top img {
	width: 100%;
	height: 100%;
}

/* navbar */
.navbar {
	background-color: #ffffff;
	width: 100%;
	height: 75px;
	padding: 10px 15px;
	position: fixed;
	z-index: 20;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 1px 10px #00000049;
	top: 0;
}

.logo {
	height: 100%;
}

.logo img {
	height: 100%;
	padding: 8px;
	transition: 0.3s;
}

.menu {
	margin-bottom: 0;
}

.menu li {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 10px;
	color: #262626;
	font-size: 1.1rem;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
}

.menu li:last-child {
	display: none;
}

.menu li:hover {
	transform: translateY(-5px);
}

.social_media {
	height: 65%;
	/* display: flex; */
}

.social_media img {
	height: 100%;
	margin-right: 20px;
	cursor: pointer;
	transition: 0.3s;
	display: inline-block;
}

.social_media img:hover,
.logo img:hover,
.social_media_mb img:hover {
	transform: scale(1.1);
}

.navbar .login_btn {
	margin: 0 auto;
	width: fit-content;
	cursor: pointer;
	background-color: #262626;
	padding: 5px 20px;
	border-radius: 50px;
	color: white;
	transition: 0.3s;
	font-size: 1.1rem;
}

.menu_btn {
	height: 65%;
	cursor: pointer;
	transition: 0.3s;
	display: none;
}

.menu_btn img {
	height: 100%;
}

/* 內容 */
.section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.section2,
.section3,
.section4,
.section5,
.section6,
.section7,
.section8 {
	padding: 60px 0;
}

.content {
	max-width: 1200px;
	width: 90%;
	position: relative;
	padding: 20px;
	margin: 0 auto;
}

.title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 600;
	color: #262626;
	position: relative;
	font-family: 'Noto Serif TC';
}

.title span {
	font-weight: 100;
	font-family: 'Noto Serif TC';
}

.subtitle {
	font-size: 1.3rem;
	font-weight: 600;
}

.title_area {
	position: relative;
	width: fit-content;
	margin: 0 auto 80px;
}

.text {
	color: #262626;
	font-size: 1.1rem;
	line-height: 1.8rem;
}

.red {
	color: #B93823;
}

.white {
	color: #ffffff;
}

.br_sm {
	display: none;
}

/* section1 */
.section1 {
	position: relative;
	width: 100%;
	margin-top: 75px;
	height: 45vw;
	min-height: calc(100svh - 75px);
	background-color: #B93823;
}

.section1 img {
	position: absolute;
}

.snake {
	width: 22vw;
	top: -7vw;
	right: -3vw;
	animation: snakeAni 1s forwards;
	opacity: 0;
}

@keyframes snakeAni {
	0% {
		transform: translateY(-10vw);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.gold1 {
	width: 3.5vw;
	bottom: 26vw;
	left: 9vw;
	transform: rotate(19deg);
	opacity: 0.3;
	animation: goldAni 1s;
}

.gold2 {
	width: 3.5vw;
	bottom: 6vw;
	left: 23vw;
	transform: rotate(336deg);
	opacity: 0.3;
	animation: goldAni 1s;
}

.gold3 {
	width: 2.5vw;
	bottom: 24vw;
	right: 11vw;
	transform: rotate(19deg);
	opacity: 0.3;
	animation: goldAni 1s;
}

.gold4 {
	width: 3vw;
	bottom: 13vw;
	right: 22vw;
	transform: rotate(340deg);
	opacity: 0.3;
	animation: goldAni 1s;
}

.gold5 {
	width: 4.5vw;
	bottom: 5vw;
	right: 13vw;
	transform: rotate(5deg);
	opacity: 0.3;
	animation: goldAni 2s;
}

@keyframes goldAni {
	0% {

		opacity: 0;
	}

	50% {

		opacity: 0;
	}

	100% {
		opacity: 0.3;
	}
}

.texture1 {
	height: 40vh;
	width: 110vw;
	object-fit: cover;
	object-position: top;
	bottom: -3vw;
	transform: translateX(-50%);
	left: 50%;
	opacity: 0.05;
}

.circle {
	height: 90%;
	max-width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.lantern1 {
	width: 6.5vw;
	top: -1vw;
	left: 13.5vw;
	animation: lanternAni 1s forwards;
	opacity: 0;
}

.lantern2 {
	width: 4.5vw;
	top: -4vw;
	left: 8.5vw;
	animation: lanternAni 1s forwards;
	animation-delay: 0.2s;
	opacity: 0;
}

@keyframes lanternAni {
	0% {
		transform: translateY(-10vw);
		opacity: 0;
	}

	50% {
		transform: translateY(-1vw);
		opacity: 1;
	}

	65% {
		transform: translateY(-2vw);
		opacity: 1;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.shine1 {
	width: 3vw;
	top: 7vw;
	left: 20.5vw;
	animation: shineAni 0.7s infinite alternate;
	opacity: 0;
}

.shine2 {
	width: 4vw;
	top: -2vw;
	left: -4vw;
	animation: shineAni 0.7s infinite alternate;
	animation-delay: 0.6s;
	opacity: 0;
}

.shine3 {
	width: 3vw;
	top: 11vw;
	right: 22vw;
	animation: shineAni 0.7s infinite alternate;
	animation-delay: 0.3s;
	opacity: 0;
}

@keyframes shineAni {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	20% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.girl {
	width: 11vw;
	bottom: 2vw;
	left: 6vw;
	animation: bottomAni 1s forwards;
}

.fortune_area {
	position: relative;
	transform: translateX(-50%);
	left: 50%;
	width: 90%;
	max-width: 800px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.top {
	position: relative;
	height: 75%;
	animation: topAni 1s forwards;
	animation-delay: 0.3s;
	opacity: 0;
}

@keyframes topAni {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.bottom {
	position: relative;
	height: 20%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: fit-content;
	margin: 0 auto;
	animation: bottomAni 1s forwards;
	animation-delay: 0.6s;
	opacity: 0;
}

@keyframes bottomAni {
	0% {
		transform: translateY(10vw);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.fortune {
	max-height: 100%;
	position: absolute;
	max-width: 500px;
	width: 100%;
	height: 90%;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	animation: fortuneAni 1.5s;
	transition: 0.5s;
}

.fortune.active {
	cursor: pointer;
}

@media (hover: hover) {
	.fortune.active:hover {
		transform: translateX(-50%) scale(1.05);
		filter: drop-shadow(0px 0px 10px rgba(71, 17, 17, 0.397));
	}
}

@keyframes fortuneAni {
	0% {
		transform: translateY(-10vw) translateX(-50%);
		opacity: 0;
	}

	100% {
		transform: translateY(0) translateX(-50%);
		opacity: 1;
	}
}

.cloud1 {
	height: 14%;
	bottom: 65%;
	left: 9%;
	animation: cloudAni 3s linear infinite alternate;
}

.cloud2 {
	height: 6%;
	bottom: 20%;
	right: 12%;
	animation: cloudAni 3s linear infinite alternate-reverse;
}

@keyframes cloudAni {
	0% {
		transform: translateX(10%);
	}

	100% {
		transform: translateX(-10%);
	}
}

.title1 {
	position: relative !important;
	height: 30%;
	max-width: 100%;
	margin-top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.title2 {
	position: relative !important;
	max-width: 100%;
	height: 25%;
	left: 50%;
	transform: translateX(-50%);
}

/* section2 */
.decorate {
	background-image: url(../images/texture2.svg);
	background-size: contain;
	background-repeat: repeat-x;
	width: 100%;
	height: 60px;
}

.section2 {
	background-color: #FFEAD4;
}

.section2 .text {
	text-align: center;
}

.direction_box {
	margin-top: 70px;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: stretch;
}

.direction {
	width: 100%;
	max-width: 250px;
	position: relative;
	background-color: white;
	padding: 30px 10px 20px;
	border-radius: 8px;
	border: 2px solid #262626;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.step {
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	top: -15px;
	padding: 5px 20px;
	border: 2px solid #262626;
	border-radius: 50px;
	background-color: #F6C101;
	font-weight: 600;
	font-size: 1rem;
}

.section2 .login_btn {
	cursor: pointer;
	background-color: #B93823;
	padding: 2px 20px;
	border-radius: 5px;
	color: white;
	transition: 0.3s;
	font-size: 1.1rem;
}

.section2 .login_btn:hover {
	background-color: #a02f1e;
}

.arrow_step {
	width: 50px;
}

/* section3 */
.section3 {
	background-color: #F6C101;
	background-image: url(../images/texture3.svg);
	background-size: 300px;
	background-attachment: fixed;
}

.prize_area {
	width: 100%;
	max-width: 1400px;
	margin: 110px auto 0;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.prize_top,
.prize_bottom {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.prize {
	position: relative;
	max-width: 425px;
}

.prize5 {
	left: -90px;
}

.prize img {
	width: 100%;
}

.prize_btn {
	position: absolute;
	bottom: 27%;
	right: 21%;
	cursor: pointer;
	width: fit-content;
	background-color: #B93823;
	padding: 5px 20px;
	border-radius: 5px;
	color: white;
	transition: 0.3s;
	font-size: 1.1rem;
}

.prize_btn:hover {
	background-color: #a02f1e;
}

/* section4 */
.article1 {
	position: absolute;
	top: 3vw;
	right: 0;
}

.article2 {
	position: absolute;
	bottom: 3vw;
	left: 0;
}

.section4 .text.white {
	text-align: center;
}

.select_year {

	margin: 50px auto;
	position: relative;
	width: fit-content;
	transition: 0.5s;
}

.select_year select {
	cursor: pointer;
	color: #B93823;
	background-color: white;
	border-radius: 50px;
	padding: 10px 40px 10px 20px;
	border: none;
	font-size: 1.2rem;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	overflow-y: scroll;
}

.select_year img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 17px;
	pointer-events: none;
}

.select_year:hover {
	opacity: 0.8;
}

.swiper_content {
	width: 90%;
	position: relative;
	padding: 20px 20px 100px;
	margin: 0 auto;
}
.swiper_content2 {
	width: 90%;
	position: relative;
	padding: 20px 20px 0px;
	margin: 0 auto;
}

.swiper_area {
	position: relative;
}

.mySwiper2 {
	opacity: 0;
	transition: 0.3s;
}

.mySwiper2.active {
	opacity: 1;
}

.swiper {
	width: 95%;
	padding-bottom: 40px;
}

.mySwiper1 .swiper-slide {
	background-color: white;
	height: auto;
}

.mySwiper2 .swiper-slide,
.mySwiper3 .swiper-slide {
	border: 3px solid white;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	height: auto;
}

.article_box .text {
	padding: 10px;
	text-align: justify;
}

.article_img {
	width: 100%;
	position: relative;
	padding-top: calc(174 / 248 * 100%);
	overflow: hidden;
}

.article_img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	transition: 0.5s;
}

.article_box:hover .article_img img {
	width: 110%;
	height: 110%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	content: '';
}

.swiper-button-prev,
.swiper-button-next {
	background-image: url(../images/arrow_white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.swiper-button-prev {
	left: -3%;
	transform: scale(-1.5);
	transition: 0.3s;
}

.swiper-button-next {
	right: -3%;
	transform: scale(1.5);
	transition: 0.3s;
}

.swiper-pagination-bullet {
	background-color: #ffffff;
}
/* section8 */
.section8 {
	background-color: #F6C101;
}
/* section5 */
.section5 {
	background-color: #fcfcfc;
}

.banner_area {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.banner_area a {
	transition: 0.5s;
}

.banner_area a:hover {
	transform: scale(1.1);
}

.banner_area img {
	width: 100%;
}

/* section6 */
.section6 {
	background-color: #F6C101;
}

.list_area {
	position: relative;
}

.reel {
	width: 100%;
}

.list_btn {
	width: fit-content;
	cursor: pointer;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	color: white;
	background-color: #B93823;
	padding: 15px 30px;
	border-radius: 50px;
	transition: 0.5s;
	opacity: 0;
}

.list_btn:hover {
	background-color: #a02f1e;
}

/* section7 */
.section7 .content {
	max-width: 1400px;
}

.notice {
	position: relative;
	background-color: #fcfcfc;
	padding: 60px;
	border: 2px solid #262626;
	border-radius: 20px;
}

.section7 .title_area1 {
	margin: 0px auto 40px;
}

.section7 .title_area2 {
	margin: 100px auto 40px;
}

.section7 .text {
	text-align: justify;
}

.section7 ul {
	padding-left: 40px;
}

/*footer*/
footer {
	background-color: #262626;
	padding: 30px 0;
}

footer .text {
	color: white;
	font-weight: 200;
	font-size: 0.8rem;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	line-height: 1.5rem;
}

/* popup */
.popup_alert,
.popup_prize {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

.popup_alert.active,
.popup_prize.active {
	z-index: 30;
	opacity: 1;
}

.bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #26262650;
	z-index: -1;
}

.popup_container {
	transform: translateY(10vw);
	max-height: 90%;
	background-color: white;
	padding: 15px 30px;
	width: 90%;
	max-width: 600px;
	border-radius: 20px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
	position: relative;
	transition: 0.5s;
	opacity: 0;
}

.active .popup_container {
	transform: translateY(0);
	opacity: 1;
}

.popup_alert .popup_title_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed black;
}

.gold {
	height: 20px;
}

.popup_content .text {
	padding: 70px 0;
	text-align: center;
}

.popup_content2 {
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.popup_content2 label {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.popup_content2 input {
	padding: 8px 15px;
	font-size: 1.1rem;
	border-radius: 7px;
	border: 1px solid #7F7F7F;
}

.popup_button {
	display: flex;
	justify-content: end;
	gap: 10px;
}

.yes,
.no {
	color: white;
	padding: 5px 20px;
	border-radius: 50px;
	cursor: pointer;
}

.yes {
	background-color: #B93823;
	border: 2px solid #B93823;
}

.no {
	background-color: #B5B5B5;
	border: 2px solid #B5B5B5;
}

.yes:hover,
.no:hover {
	opacity: 0.8;
}

/* /2/ */
.popup_container2 {
	background-color: #F7F2E5;
	padding: 15px;
	width: 90%;
	max-width: 1200px;
	max-height: 90%;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
	overflow-y: auto;
	transform: translateY(10vw);
	opacity: 0;
}

.active .popup_container2 {
	transform: translateY(0);
	opacity: 1;
}

.result {
	display: flex;
	flex-direction: column;
	border: 2px solid #B93823;
}

.result_header {
	position: relative;
	width: 100%;
	padding: 5px 0;
	border-bottom: 2px solid #B93823;
}

.result_bottom {
	display: flex;
	width: 100%;
	flex: 1;
}

.side {
	font-family: 'Noto Serif TC';
	color: #B93823;
	padding: 30px 10px;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.side.left {
	border-right: 2px solid #B93823;
}

.side.right {
	border-left: 2px solid #B93823;
}

.main {
	display: inline-block;
	width: calc(100% - 98px);
	flex: 1;
	flex-direction: column;
	display: flex;
}

.main_top,
.main_center {
	padding: 30px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.main_center {

	border-top: 2px solid #B93823;
	border-bottom: 2px solid #B93823;
}

.main_center>div>div {
	text-align: center;
	font-family: 'Noto Serif TC';
	color: #B93823;
	font-weight: 500;
}

.main_bottom {
	background-color: #B93823;
	padding: 30px 0 0px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.result_close {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 10px;
	width: 30px;
	cursor: pointer;
	z-index: 2;
	opacity: 0.64;
}

.result_close:hover {
	opacity: 0.8;
}

.result_header .title {
	border-top: 2px solid #D5B270;
	border-bottom: 2px solid #D5B270;
	padding: 10px 0;
}

.circle_text {
	height: 35px;
	max-width: 100%;
}

.result_big_text {
	font-size: 2rem;
	font-family: 'Noto Serif TC';
	color: #B93823;
	font-weight: 600;
	text-align: center;
}

.bottom_text {
	margin-top: 10px;
	text-align: center;
	font-family: 'Noto Serif TC';
	color: #262626;
	font-size: 1.1rem;
}

/* 3 */
.popup_prize .popup_container {
	overflow-y: auto;
}

.popup_prize .popup_title_area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #D5B270;
}

.prize_close {
	cursor: pointer;
	width: 30px;
	position: relative;
	float: right;
	top: 10px;
	right: 10px;
}

.prize_close:hover {
	opacity: 0.8;
}

.popup_content3 {
	margin: 65px 0 10px;
}

.popup_prize .subtitle {
	font-family: 'Noto Serif TC';
	margin: 20px 0;
}

::selection {
	background: #045BA5;
	color: white;
}

::-moz-selection {
	background: #045BA5;
	color: white;
}

.popup_alert ::-webkit-scrollbar,
.popup_prize ::-webkit-scrollbar {
	width: 7px;
}

.popup_alert ::-webkit-scrollbar-button,
.popup_prize ::-webkit-scrollbar-button {
	background: transparent;
	border-radius: 4px;
}

.popup_alert ::-webkit-scrollbar-track-piece,
.popup_prize ::-webkit-scrollbar-track-piece {
	background: transparent;
}

.popup_alert ::-webkit-scrollbar-thumb,
.popup_prize ::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #4431313f;
}

.popup_alert ::-webkit-scrollbar-track,
.popup_prize ::-webkit-scrollbar-track {
	box-shadow: transparent;
}

@media screen and (max-width:1400px) {
	.article1 {
		opacity: 0;
	}

	.prize_area {
		gap: 20px;
	}

	.prize_top,
	.prize_bottom {
		gap: 20px;
	}

	.prize5 {
		left: 00px;
	}
}

@media screen and (max-width:1500px) {
	.menu {
		opacity: 0;
		z-index: -1;
	}

	.social_media {
		display: none;
	}

	.menu.active {
		display: block;
		opacity: 1;
		right: 0;
		z-index: 19;
	}

	.menu_btn {
		display: block;
	}

	.menu {
		position: fixed;
		top: 65px;
		right: -100%;
		width: 100%;
		height: 100vh;
		background-color: #ffffff;
		text-align: center;
		transition: 0.5s;
	}

	.menu li {
		display: block;
		padding: 15px;
		margin: 0;
		color: #313B44;
		font-size: 1rem;
		position: relative;
		border-bottom: 1px solid #B5B5B5;
	}

	.menu li:last-child {
		display: block;
	}

	.menu li:last-child {
		border-bottom: none;
	}

	.menu li:hover:after {
		transform: translateX(-50%) scale(0);
	}

	.social_media_mb {
		height: 60px;
		display: block;
	}

	.social_media_mb img {
		height: 100%;
		margin: 0 15px;
		cursor: pointer;
		transition: 0.3s;
	}

	.navbar .login_btn {
		margin: 0 auto;
		width: fit-content;
		cursor: pointer;
		background-color: transparent;
		padding: 5px 20px;
		border-radius: 50px;
		color: #262626;
		transition: 0.3s;
		font-size: 1rem;
	}

	.navbar .login_btn:hover {
		background-color: transparent;
	}
}

@media screen and (max-width:1200px) {

	.content {
		max-width: 900px;
	}

	.section3 {
		background-attachment: scroll;
	}

	.article {
		width: calc((100% - 30px)/2);
	}

	.direction_box {
		flex-direction: column;
		align-items: center;
	}

	.arrow_step {
		transform: rotate(90deg);
	}

	.direction {
		padding: 30px 10px 20px;
	}
}

@media screen and (max-width:820px) {
	.cloud1 {
		left: -8%;
	}

	.cloud2 {
		right: 0%;
	}

	.gold1 {
		width: 6.5vw;
	}

	.gold2 {
		width: 6.5vw;
	}

	.gold3 {
		width: 5.5vw;
		bottom: 32vw;
	}

	.gold4 {
		width: 6vw;
		bottom: 25vw;
	}

	.gold5 {
		width: 7.5vw;
	}

	.girl {
		width: 23vw;
		bottom: 22%;
		left: 5vw;
	}
}


@media screen and (max-width:800px) {
	.br_sm {
		display: block;
	}

	.result_big_text {
		font-size: 1.5rem;
	}

	.mySwiper2,
	.mySwiper3 {
		width: 85%;
	}

	.swiper_content {
		padding: 20px 20px 50px;
	}

	.article2 {
		position: absolute;
		bottom: 5vw;
		left: 0;
		width: 50%;
	}

	.section7 .title {
		font-size: 1.3rem;
	}

	.go_top {
		right: 20px;
		bottom: 45px;

	}

	footer {
		flex-direction: column;
		padding: 10px;
	}

	footer .text {
		width: 85%;
		padding: 10px;
		font-size: 0.6rem;
		text-align: center;
	}

	footer .text:nth-child(2) {
		border-left: none;
		border-top: 1px solid white;
	}
}

@media screen and (max-width:540px) {
	.swiper-button-next {
		right: -6%;
		transform: scale(1.2);
	}

	.swiper-button-prev {
		left: -6%;
		transform: scale(-1.2);
	}

	.menu {
		top: 55px;
	}

	.navbar {
		height: 55px;
	}

	.section1 {
		margin-top: 55px;
		min-height: calc(100svh - 55px);
	}

	.title {
		font-size: 1.3rem;
	}

	.title_area {
		margin: 0 auto 40px;
	}

	.subtitle {
		font-size: 1.1rem;
	}

	.text,
	.step,
	.section2 .login_btn {
		font-size: 0.9rem;
		line-height: 1.5rem;
	}

	.section2,
	.section3,
	.section4,
	.section5,
	.section6,
	.section7,
	.section8 {
		padding: 30px 0;
	}

	.go_top {
		height: 50px;
		width: 50px;
		bottom: 120px;
		right: 10px;
	}

	.side {
		display: none;
	}

	.result_big_text {
		font-size: 1.1rem;
	}

	/* section1 */
	.top {
		height: 70%;
	}

	.bottom {
		height: 20%;
	}

	.circle {
		bottom: -5%;
	}

	.cloud1 {
		bottom: 58%;
	}

	.cloud2 {
		bottom: 20%;
		right: -7%;
	}

	.snake {
		width: 35vw;
		top: -5vw;
		right: -9vw;
	}

	.shine1 {
		top: 9vw;
		left: 29.5vw;
	}

	.shine3 {
		top: 25vw;
		right: 29vw;
	}

	.lantern1 {
		width: 11.5vw;
		top: -1vw;
		left: 17.5vw;
	}

	.lantern2 {
		width: 9.5vw;
		top: -4vw;
		left: 6vw;
	}

	/* section2 */
	.decorate {
		height: 30px;
	}

	/* section3 */
	.prize_btn {
		font-size: 0.9rem;
	}

	/* section4 */
	.select_year {
		margin: 30px auto;
	}

	.select_year select {
		font-size: 0.9rem;
	}

	.select_year img {
		right: 17px;
		width: 14px;
	}

	/* section6 */
	.list_btn {
		padding: 10px 20px;
	}

	/* section7 */
	.section7 .content {
		width: 95%;
		padding: 10px;
	}

	.notice {
		padding: 30px 20px;
	}

	.section7 .title_area1 {
		margin: 0px auto 20px;
	}

	.section7 .title_area2 {
		margin: 50px auto 20px;
	}

	.section7 .title {
		font-size: 1.1rem;
	}

	.section7 ul {
		padding-left: 20px;
	}

	/* popup */
	.popup_prize .popup_container {
		padding: 15px;
	}

	.popup_content3 {
		margin: 50px 0 10px;
	}

	.bottom_text {
		font-size: 0.8rem;
	}
}