@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

* {
	scroll-behavior: smooth;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', 'Noto Sans TC', sans-serif;
}

body.active {
	overflow: hidden;
}

.button_container {
	display: none;
}

.card {
	background-color: #fff;
	border-radius: 30px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card.fix {
	border-radius: 20px;
	display: block;
	padding: 24px;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
}

.card.fix-1 {
	padding: 24px 20px;
}

.other {
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	color: #f3515e;
	background-image: url(../images/bar.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% 20px;
}

.qatitle {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	color: #367b7b;
	margin-bottom: 40px;
}

.close {
	display: none;
}

.fix-top {
	position: fixed;
	width: 100%;
	top: -160px;
	background-color: #fff;
	z-index: 99;
	padding: 0 20px;
	background-color: #fde5a0;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.fix-top.active {
	top: 60px;
}

.fix-top-tit {
	text-align: center;
	font-size: 24px;
	padding-top: 15px;
	padding-bottom: 0;
	color: #333;
	font-weight: 500;
}

.fix-top-sub {
	text-align: center;
	font-size: 18px;
	padding-top: 5px;
	padding-bottom: 10px;
	color: #333;
	font-weight: 400;
}

#postForm-fixedtop {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 15px;
}

#postForm-fixedtop .form-col {
	width: 27%;
}

#postForm-fixedtop .form-col.fix {
	width: 19%;
}

#postForm-fixedtop .form-col input {
	height: 40px;
	font-size: 16px;
}

#postForm-fixedtop .form-btn {
	height: 40px;
	font-size: 18px;
	line-height: 40px;
}

#leads {
	position: absolute;
	top: -100px;
}

#gift-1,
#gift-2 {
	position: absolute;
	top: -100px;
}

#gift-3 {
	position: absolute;
	top: -60px;
}

#notice {
	position: absolute;
	top: -40px;
}

.errstring {
	font-size: 14px;
	color: #FF0000;
	line-height: 22px;
}

.input_err {
	border-color: #FF0000 !important;
}

.modal-mask {
	display: none;
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
}

.modal-mask.active {
	display: block;
}

.modal-box {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.modal-body {
	max-width: 596px;
	height: auto;
	width: 100%;
}

.modal-body img {
	cursor: pointer;
}

.modal-mask.active .modal-body {
	animation: modalmove 1s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes modalmove {
	0% {
		transform: translateY(-50px);
	}

	100% {
		transform: translateY(0);
	}
}

.header {
	height: 60px;
	width: 100%;
	background-color: #377c7b;
	position: fixed;
	top: 0;
	/* padding: 10px 20px; */
	z-index: 999;
	display: flex;
	justify-content: center;
}

.nav-box {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.menu-box {
	flex: 1;
	text-align: right;
}

.menu-box a {
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	margin-left: 30px;
	text-decoration: none;
}

.menu-box a:hover {
	text-decoration: underline;
}

.side-bar {
	width: 98px;
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: rgba(34, 20, 7, 0.9);
	z-index: 999;
}

.now {
	background-color: #2E6A6A;
	;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
}

.side-bar a {
	display: block;
	text-align: center;
	padding: 18px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: #fff;
	text-decoration: none;
}

.side-bar a:hover {
	background-color: rgba(34, 20, 7, 1);
}

.side-bar a img {
	width: 38px;
	display: inline-block;
}

.side-bar a span {
	display: inline-block;
	font-size: 10px;
	line-height: 12px;
}

.top {
	position: absolute;
	bottom: 20px;
	right: 50px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #367b7b;
	background-image: url(../images/top.svg);
	background-size: 30px auto;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 9;
}

.top:hover {
	background-color: #075755;
}

footer {
	background-color: #4a4a4a;
	padding: 32px 0 29px 0;
	font-size: 18px;
	font-weight: normal;
	line-height: 28px;
	letter-spacing: 0;
	color: #cbcbcb;
	margin: 0 auto;
	font-family: 'Microsoft JhengHei';
	position: relative;
}

footer p {
	font-size: small;
	padding: 0 20px;
	line-height: 1.8;
}

footer a {
	color: #000;
	text-decoration: none;
}

.footer-up {
	border-bottom: 1px solid #888;
	display: flex;
	padding: 0 20px 20px 20px;
	align-items: center;
}

.md-box {
	display: flex;
}

.line {
	width: 135px;
	margin-right: 20px;
}

.download {
	width: 135px;
	margin-right: 10px;
}

.line:after,
.download:after {
	content: "";
	display: inline-block;
	vertical-align: bottom;
	width: 28px;
	height: 24px;
	margin: 0 -16px -1px -16px;
	background: url(../images/footer_icon_pointer.png) no-repeat;
	background-size: contain;
}

.show-mm {
	display: none;
}

.perks {
	display: inline-block;
	padding-left: 10px;
	padding-bottom: 15px;
	font-weight: 300;
}

.footer-tit {
	font-size: 29px;
	font-weight: normal;
	line-height: 40px;
	letter-spacing: 5.8px;
	margin-top: 24px;
	padding: 0 20px;
}

.ie {
	margin-top: 10px;
	font-size: small;
	padding: 0 20px;
}

.footer-sub {
	margin-bottom: 24px;
	font-size: small;
	padding: 0 20px;
}

.tel {
	flex: 1;
	text-align: right;
	padding-bottom: 15px;
	font-weight: 300;
}

.tel a {
	color: #f0be58;
}

h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 29px;
	letter-spacing: 0.06em;
	color: #FFC279;
	margin-bottom: 14px;
}

h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 29px;
	letter-spacing: 0.06em;
	color: #FFC279;
	margin-bottom: 14px;
}

h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 0.005em;
	color: #4FCFC8;
	margin-bottom: 12px;
}

.section-5 {
	background-color: #fff8e6;
	padding: 60px 0;
	position: relative;
}

/* .swiper-wrapper.fix {
	display: flex;
	flex-wrap: wrap;
}

.swiper-wrapper.fix .swiper-slide {
	width: 33.3%;
} */

.ctbc {
	display: inline-block;
}

.ctbc img {
	height: 40px;
}

.w-100 {
	width: 100%;
}

.show-xs {
	display: none;
}

.hide-xs {
	display: block;
}

.swiper-2 {
	margin-top: 40px;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
}

.swiper-3 {
	margin-top: 40px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}

.section-3-note {
	width: calc(100% - 40px);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.005em;
	text-align: center;
	color: #48200E;
	max-width: 660px;
	margin: 5px auto 0 auto;
}

.card-3-tit {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #333;
}

.card-3 {
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 68px auto 0 auto;
	background-color: #fde5a0;
	border-radius: 32px;
	position: relative;
	padding: 40px 60px;
	box-shadow: 20px 20px 0 #00aeb0;
}

.card-3 .formStyle {
	padding-top: 26px;
	display: flex;
}

label {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	letter-spacing: 0.005em;
	color: #0B0B0B;
	margin-bottom: 8px;
}

label span {
	font-size: 14px !important;
	line-height: 20px;
	font-weight: 400;
	color: #FF0000 !important;
}

.form-col {
	width: 23%;
	padding-right: 10px;
}

.form-col input {
	font-family: 'Noto Sans TC', sans-serif;
	width: 100%;
	padding: 0 10px;
	border: 1px solid #979799;
	border-radius: 5px;
	font-size: 16px;
	color: #0B0B0B;
	font-weight: 400;
	line-height: 46px;
	box-shadow: 0px 1px 15px rgb(152 152 152 / 35%);
}

.form-col input::placeholder {
	color: #979799;
}

.form-col.fix {
	width: 31%;
	padding-right: 0;
	padding-top: 32px;
}

.btn-note {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.05em;
	margin: 8px 0 0 0;
	color: #333;
	text-align: center;
}

.form-btn {
	font-size: 24px;
	font-weight: 700;
	line-height: 46px;
	letter-spacing: 0.005em;
	text-align: center;
	width: 100%;
	background-color: #f3515e;
	border-radius: 8px;
	border: none;
	outline: none;
	color: #fff;
	cursor: pointer;
	box-shadow: 0px 1px 15px rgb(152 152 152 / 35%);
}

.form-btn:hover {
	filter: brightness(0.95);
}

.star-2 {
	width: 88px;
	position: absolute;
	top: -44px;
	left: -44px;
}

.star-1 {
	width: 124px;
	position: absolute;
	top: -60px;
	left: 10px;
	z-index: 1;
}

.bird-3 {
	position: absolute;
	width: 168px;
	top: -100px;
	right: 20px;
}

.card-3 span {
	color: #f3515e;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 32px;
	font-weight: 900;
}

.text-sub {
	font-size: 90%;
}

.gift {
	display: inline-block;
	width: 36px;
	height: 36px;
	color: #fff;
	margin: 0 3px;
	text-align: center;
	line-height: 36px;
	border-radius: 50%;
	background-color: #f3515e;
	transform: translateY(-3px);
}

.bird-2 {
	width: 340px;
	position: absolute;
	z-index: 0;
	top: 20px;
	right: -120px;
}

.card-row {
	display: flex;
}

.col-1 {
	width: 33.3%;
	padding-right: 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.col-2 {
	width: 66.6%;
	padding-left: 15px;
	text-align: center;
}

.col-2-1 {
	width: 50%;
}

.col-2-row {
	width: 100%;
	display: flex;
	height: 100%;
}

.col-2-2 {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	position: relative;
}

.col-2-row .col-2-2:first-child::after {
	content: '';
	border-right: solid 1px #333;
	width: 0;
	height: calc(100% - 40px);
	position: absolute;
	top: 20px;
	right: 0;
}

.note-1 {
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #989899;
	margin-top: 16px;
}

.mission {
	display: block;
	margin: 0 auto 10px auto;
	background-color: #f3515e;
	border-radius: 15px;
	line-height: 30px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
	padding: 0 15px;
}

.card-1-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 20px 25px 20px;
}

.card-1-tit {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.005em;
	color: #f3515e;
	padding: 10px;
	background-color: #ffd541;
	text-shadow: -3px -3px 1px #fff, 3px -3px 1px #fff, -3px 3px 1px #fff, 3px 3px 1px #fff;
}

.card-1-tit span {
	font-size: 32px;
	margin-left: 10px;
}

.card-1-text {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.05em;
	text-align: center;
	color: #333;
	margin-bottom: 20px;
}

.card-1-text span {
	color: #f3515e;
}

.card-1-text i {
	font-size: 12px;
	vertical-align: super;
}

.card-1 {
	margin-top: 30px;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 26px;
}

.card-2 {
	margin-top: 24px;
	margin-bottom: 70px;
	position: relative;
}

.card2-col {
	width: 33.3%;
	font-size: 28px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 0.005em;
	text-align: center;
	color: #48200E;
	padding: 0 16px;
}

.card-row.fix {
	margin: 0 -15px;
}

.bird-btn-box {
	text-align: center;
}

.bird-btn-box a {
	width: 80%;
	display: inline-block;
	max-width: 402px;
}

.bird-btn-box a:hover {
	filter: brightness(0.95);
}

.gift-tit {
	background-image: url(../images/gift-text.png);
	background-position: bottom center;
	background-size: 132px auto;
	background-repeat: no-repeat;
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 0.02em;
	text-align: center;
	color: #333;
}

.gift-tit.fix {
	color: #c42727;
}

.gift-tit.fix-1 {
	color: #c42727;
	background-image: url(../images/gift-text-1.png);
}

.gift-text-1 {
	width: 102px;
}

.section-tit {
	margin: 16px auto 8px auto;
	font-size: 48px;
	font-weight: 700;
	line-height: 66px;
	text-align: center;
	text-shadow: -3px -3px 1px #fff, 3px -3px 1px #fff, -3px 3px 1px #fff, 3px 3px 1px #fff;
	color: #367b7b;
}

.section-sub {
	font-size: 32px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
	text-shadow: -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff, 2px 2px 1px #fff;
	color: #333;
}

.section-text {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0.005em;
	text-align: center;
	color: #333;
}

.section-sub span {
	font-weight: 900;
	font-size: 48px;
	color: #f3515e;
}

.swiper-1 {
	overflow: hidden;
	position: relative;
	margin: 100px 0 60px;
}

.swiper-slide.fix {
	position: relative;
	padding-bottom: 27px;
}

.wish-tit {
	position: absolute;
	top: 17%;
	text-align: center;
	text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 0.005em;
	text-align: center;
	color: rgba(166, 87, 84, 1);
	width: 100%;
}

.wish-tit span {
	font-size: 40px;
	display: inline-block;
	margin: 0 3px;
}

.btn-box {
	width: 100%;
	position: absolute;
	bottom: 1.8vw;
	text-align: center;
}

.btn {
	min-width: 200px;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	line-height: 50px;
	letter-spacing: 0.05em;
	text-align: center;
	border-radius: 45px;
	background-color: #019798;
	color: #fff;
	text-decoration: none;
	margin-top: 12px;
	box-shadow: 2px 5px 0 #367b7b;
}

.btn.fix {
	background-color: #ee4456;
	box-shadow: 2px 5px 0 #c42727;
}

.btn:hover,
.btn-lg:hover {
	filter: brightness(0.95);
}

.btn img {
	width: 18px;
	transform: translateY(2px);
	margin-left: 5px;
}

.btn-lg {
	min-width: 255px;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	line-height: 60px;
	letter-spacing: 0.005em;
	text-align: center;
	border-radius: 60px;
	background-color: #FF8A1D;
	color: #fff;
	text-decoration: none;
	margin-top: 12px;
	box-shadow: 3px 5px 0 #E37F19;
}

.btn-lg img {
	transform: translateY(3px);
}

.big-title {
	width: 90%;
	max-width: 999px;
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);

}

.big-title img {
	opacity: 0;
	animation: fadeKv 1s forwards 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeKv {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.kv {
	width: 80%;
	max-width: 1029px;
	position: absolute;
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
}

.kv img {
	opacity: 0;
	animation: fadeKv 1s forwards 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kv-box {
	margin-top: 60px;
	height: 660px;
	background-image: url(../images/kv-bg.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.mb-fix {
	opacity: 0;
	animation: fadeKv 1s forwards 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	overflow: hidden;
}

.container.fix {
	max-width: 1140px;
}

.bird-1 {
	width: 334px;
	position: absolute;
	top: 0;
	left: -280px;
}

.section-1 {
	/* height: 614px; */
	background-image: url(../images/background1.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	/* overflow: hidden; */
	border: 1px solid transparent;
	margin-bottom: -1px;
}

.section-2 {
	background-color: #FFD659;
	height: auto;
	background-image: url(../images/background2.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-color: #4ecec7;
	padding-bottom: 130px;
}

.section-3 {
	min-height: 916px;
	background-image: url(../images/background3.png);
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-color: #4ecec7;
	padding-bottom: 100px;
	padding-top: 30px;
	overflow: hidden;
}

.section-4 {
	min-height: 862px;
	background-image: url(../images/background4.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-color: #fde5a0;
	padding: 40px 0 60px 0;
	overflow: hidden;
}



.step-row {
	display: flex;
	align-items: stretch;
	margin: 30px -30px;
}

.step-col {
	width: 33.3%;
	padding: 0 30px;
	position: relative;
}

.next {
	width: 40px;
	position: absolute;
	right: -20px;
	top: 50%;
	margin-top: -20px;
}

.step-head {
	width: 90%;
	padding-bottom: 16px;
	margin: 0 auto 20px auto;
	border-bottom: dotted 5px #f3515e;
	font-size: 36px;
	font-weight: 700;
	color: #f3515e;
	text-align: center;
	line-height: 1;
}

.step-head span {
	display: inline-block;
	background-color: #f3515e;
	border-radius: 20px;
	line-height: 36px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	padding: 0 8px;
	margin-right: 5px;
	transform: translateY(-3px);
}

.step-btn {
	text-align: center;
	padding-bottom: 10px;
}

.coupon {
	margin-bottom: 20px;
	padding: 0 10px;
}

.qa-list {
	font-size: 24px;
	line-height: 30px;
	padding: 10px 60px 10px 30px;
	display: block;
	color: #fff;
	font-weight: 700;
	background-color: #367b7b;
	border-radius: 10px;
	margin-bottom: 20px;
	background-image: url(../images/qa-2.svg);
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: center right 30px;
	text-decoration: none;
}

.qa-list.active {
	background-image: url(../images/qa-1.svg);
}

.qa-ans {
	display: none;
	padding: 0 30px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}

.qa-ans a {
	color: #367b7b;
}

.qa-ans.active {
	display: block;
}

.qa-ans ol {
	list-style-type: decimal;
	padding-left: 1.5em;
}

.bird-1 {
	width: 14.8vw;
	position: absolute;
	left: 0;
	top: 424px;
}

.bird-2 {
	width: 119px;
	position: absolute;
	left: 150px;
	top: -84px;

}

.bird-3 {
	width: 16.1vw;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(380px);
}

.bird-4 {
	width: 234px;
	position: absolute;
	left: 50%;
	top: 80px;
	transform: translateX(-560px);
}




@media (max-width:1930px) {

	.section-2,
	.section-3,
	.section-4 {
		background-size: 1920px auto;
	}

}

@media (max-width:1366px) {
	.top {
		bottom: 10px;
		right: 10px;
	}

	.star-2 {
		display: none;
	}

	.bird-2.hide-ms {
		display: none;
	}
}

@media (max-width:1024px) {

	.kv-box {
		height: 590px;
	}

	.bird-1 {
		width: 127px;
		position: absolute;
		left: 0;
		top: 740px;
		z-index: 3;
	}

	footer {
		padding: 32px 0;
		font-size: 18px;

	}

	.card-1-text {
		font-size: 20px;
	}

	.other {
		font-size: 24px;
	}

	.step-head {
		font-size: 24px;
	}

	.footer-up {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		padding-bottom: 10px;
	}

	.perks {
		width: 290px;
		display: block;
	}

	.tel {
		flex: 1;
		display: block;
		width: auto;
		text-align: right;
	}

	.btn {
		min-width: 140px;
		max-width: 200px;
		width: 100%;
		font-size: 16px;
		line-height: 40px;
		border-radius: 20px;
		background-color: #019798;
		margin-top: 0;
		box-shadow: 1px 3px 0 #367b7b;
	}

	.btn.fix {
		background-color: #ee4456;
		box-shadow: 1px 3px 0 #c42727;
	}

	.btn-box {
		bottom: 20px;
	}

	.kv {
		width: 80%;
		max-width: 1029px;
		position: absolute;
		left: 50%;
		bottom: 100px;
		transform: translateX(-50%);
	}
}

@media (max-width:768px) {
	.section-3 {
		overflow: visible;
	}

	.bird-2 {
		width: 86px;
		position: absolute;
		left: 30px;
		top: -60px;
	}

	.bird-3 {
		width: 138px;
		position: absolute;
		left: 60%;
		top: -80px;
		transform: translateX(0);
	}

	.qatitle {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.qa-list {
		font-size: 16px;
		line-height: 20px;
		padding: 10px 40px 10px 10px;
		display: block;
		border-radius: 5px;
		margin-bottom: 16px;
		background-size: 16px auto;
		background-position: center right 10px;
	}

	.qa-ans {
		display: none;
		padding: 0 10px;
		margin-bottom: 16px;
		font-size: 12px;
	}

	.footer-up {
		flex-direction: column;
	}

	.md-box {
		display: flex;
		margin-bottom: 12px;
	}

	.show-mm {
		display: block;
	}

	.perks {
		width: 100%;
		text-align: center;
		padding-bottom: 0;
	}

	.section-tit {
		margin: 8px auto 8px auto;
		font-size: 28px;
		line-height: 40px;
		letter-spacing: 0.05em;
		text-align: center;
		text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
	}

	.section-sub {
		font-size: 18px;
		line-height: 1.4;
		text-align: center;
	}

	.section-sub span {
		display: inline-block;
		font-size: 18px;
	}

	.card-1-tit span {
		font-size: 22px;
		margin-left: 5px;
	}

	.card-1-text {
		font-size: 14px;
		line-height: 20px;
	}

	.card2-col {
		font-size: 18px;
		line-height: 22px;
		padding-top: 2px;
	}

	.card-1-tit {
		font-size: 22px;
		padding: 8px;
		text-shadow: -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff, 2px 2px 1px #fff;
	}

	.card-1-text {
		font-size: 20px;
		line-height: 24px;
	}

	.gift-tit {
		background-size: 90px auto;
		font-size: 20px;
		line-height: 30px;
	}

	.card.fix {
		border-radius: 15px;
		display: block;
		padding: 12px;
		text-align: center;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.4;
		color: #333;
	}

	.other {
		font-size: 24px;
		color: #f3515e;
		display: table;
		margin: 0 auto;
	}

	.step-head {
		width: 100%;
		padding-bottom: 10px;
		margin: 0 auto 15px auto;
		border-bottom: dotted 3px #f3515e;
		font-size: 22px;
		font-weight: 700;
		color: #f3515e;
		text-align: center;
		line-height: 1;
	}

	.step-head span {
		border-radius: 20px;
		line-height: 24px;
		font-size: 16px;
		padding: 0 4px;
		margin-right: 4px;
		transform: translateY(-2px);
	}

	.card {
		border-radius: 15px;
		padding: 0;
	}

	.card.fix-1 {
		padding: 15px 10px;
	}

	.card-3 {
		border-radius: 15px;
		position: relative;
		padding: 20px;
		box-shadow: 10px 10px 0 #00aeb0;
	}
}

@media (max-width:590px) {

	.swiper-1 {
		margin: 50px 0 30px;
	}

	.menu-box {
		display: block;
		text-align: center;
		position: fixed;
		top: 60px;
		left: 0;
		background-color: #fff;
		height: 0;
		z-index: 999;
		width: 100%;
		overflow: hidden;
		transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.menu-box.active {
		height: calc(100% - 60px);
	}

	.menu-box a {
		display: block;
		margin-left: 0;
		text-align: center;
		line-height: 60px;
		color: #000;
	}

	.menu-box a:first-child {
		margin-top: 40px;
	}

	.button_container {
		/* display: inline-block; */
		position: fixed;
		top: 23px;
		right: 20px;
		height: 14px;
		width: 22px;
		cursor: pointer;
		z-index: 9999;
		transition: opacity .25s ease;
	}

	.button_container.active .topline {
		-webkit-transform: translateY(6px) translateX(0) rotate(45deg);
		transform: translateY(6px) translateX(0) rotate(45deg);
		;
	}

	.button_container.active .middle {
		opacity: 0;
	}

	.button_container.active .bottom {
		-webkit-transform: translateY(-6px) translateX(0) rotate(-45deg);
		transform: translateY(-6px) translateX(0) rotate(-45deg);
	}

	.button_container span {
		border: none;
		height: 2px;
		width: 100%;
		position: absolute;
		top: 0px;
		left: 0;
		transition: all .35s ease;
		cursor: pointer;
		background-color: #fff8e6;
	}

	.button_container span:nth-of-type(2) {
		top: 6px;
	}

	.button_container span:nth-of-type(3) {
		top: 12px;
	}

	.bird-left {
		width: 296px;
		position: absolute;
		bottom: 56px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1;
	}

	.big-title {
		width: 304;
		top: 30px;
	}

	.swiper-1 {
		overflow: visible;
		padding: 10px 0 20px 0;
		position: relative;
	}

	.section-1 {
		height: 443px;
	}

	.swiper-pagination-bullet-active {
		opacity: 1;
		background: #E37F19;
	}


	.swiper-slide.fix {
		position: relative;
		padding-bottom: 20px;
	}

	.section-2 {
		background-color: #FFD659;
		padding-top: 0;
		height: auto;
		background-image: url(../images/background2.png);
		background-position: top center;
		background-size: auto 1165px;
		background-repeat: no-repeat;
		position: relative;
	}

	.mission {
		display: inline-block;
		margin: 0 auto 10px auto;
		border-radius: 10px;
		line-height: 24px;
		font-size: 16px;
		padding: 0 5px;
	}

	.fix-1 {
		padding-left: 10px;
	}

	.hide-sm {
		display: none;
	}

	.card-3 .formStyle {
		padding-top: 0;
		display: flex;
		flex-direction: column;
	}

	.form-col {
		width: 100%;
		padding-right: 0;
	}

	.form-col.fix {
		width: 100%;
		padding-right: 0;
	}

	label {
		display: block;
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 8px;
		margin-top: 20px;
	}

	.form-col input {
		padding: 0 10px;
		border: 0.5px solid #979799;
		border-radius: 5px;
		font-size: 15px;
		color: #0B0B0B;
		font-weight: 400;
		line-height: 36px;
		box-shadow: 0px 1px 15px rgb(152 152 152 / 15%);
	}


}

@media (max-width:450px) {
	.show-xs {
		display: block;
	}

	.hide-xs {
		display: none;
	}

	.header {
		/* height: 54px; */
		/* padding: 7px 20px; */
		padding: 0 0px 0 20px;
	}

	.kv-box {
		height: auto;
		background-image: url(../images/mkv-bg.png);
		background-size: 430px auto;
		margin-top: 0;
		padding-top: 80px;
	}

	.big-title {
		width: 90%;
		max-width: 335px;
		position: static;
		transform: translateX(0);
		margin: 0 auto;
	}

	.kv {
		width: 90%;
		max-width: 365px;
		position: static;
		transform: translateX(0);
		margin: -10px auto 0 auto;
	}

	.over-fix {
		overflow: visible;
		overflow-x: hidden;
	}

	.section-1 {
		height: auto;
		background-image: url(../images/mbackground1.png);
		background-size: 430px auto;
		background-color: #fff8e6;
		background-position: bottom center;
		padding: 10px 0 20px 0;
	}

	.swiper-1 {
		overflow: hidden;
		padding: 0 0 40px 0;
		position: relative;
		width: 100%;
	}

	.card-row {
		display: flex;
		flex-direction: column;

	}

	.card-1 {
		margin-top: 20px;
		margin-bottom: 20px;
		position: relative;
		padding-bottom: 16px;
	}

	.col-1 {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		padding-right: 0;
	}

	#gift-1 {
		position: absolute;
		top: -65px;
	}

	#gift-3 {
		position: absolute;
		top: -40px;
	}

	#gift-2 {
		top: -20px;
		position: absolute;
	}

	#notice {
		position: absolute;
		top: -40px;
	}

	.btn,
	.btn-lg {
		margin-top: 0;
		max-width: 180px;
	}

	.col-2 {
		width: 100%;
		height: auto;
		padding-left: 0;
	}

	.btn-lg img {
		width: 12px;
		transform: translateY(2px);
		margin-left: 5px;
	}

	.col-2-row {
		width: 100%;
		display: block;
		height: auto;
	}

	.col-2-2 {
		width: 100%;
		height: auto;
		padding: 20px 0;
		position: relative;
	}

	.card-1-info {
		width: 100%;
		display: block;
		padding: 0;
	}

	.card-1-info.fix {
		padding: 20px 10px 23px 10px;
	}

	.section-sub.fix {
		text-align: center;
		margin-top: 50px;
	}

	.fix-1 {
		padding-left: 0;
	}

	.card2-col {
		width: 100%;
		height: 33.3%;
		font-size: 18px;
		line-height: 22px;
		padding-top: 20px;
	}

	.card-3 {
		width: calc(100% - 40px);
		margin: 58px auto 0 auto;
		border-radius: 24px;
		position: relative;
	}

	.section-2 {
		height: auto;
		background-image: url(../images/mbackground2.png);
		background-position: top center;
		background-size: 430px auto;
		padding-bottom: 15px;
	}

	.card-2 {
		margin-top: 0;
		margin-bottom: 16px;
		position: relative;
	}

	.card-3-tit {
		font-size: 16px;
		line-height: 30px;
		text-align: left;
	}

	.gift {
		display: inline-block;
		width: 30px;
		height: 30px;
		margin: 0 3px;
		line-height: 30px;
	}

	.card-3 .formStyle {
		padding-top: 0;
		display: flex;
		flex-direction: column;
	}

	.form-col {
		width: 100%;
		padding-right: 0;
	}

	.form-col.fix {
		width: 100%;
		padding-right: 0;
		padding: 30px 0 10px 0;
	}

	label {
		display: block;
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 8px;
		margin-top: 20px;
	}

	.form-col input {
		padding: 0 10px;
		border: 0.5px solid #979799;
		border-radius: 5px;
		font-size: 15px;
		color: #0B0B0B;
		font-weight: 400;
		line-height: 36px;
		box-shadow: 0px 1px 15px rgb(152 152 152 / 15%);
	}

	.btn-note {
		width: 100%;
		font-size: 10px;
		line-height: 18px;
	}

	.section-3 {
		padding-top: 50px;
		padding-bottom: 30px;
		min-height: 0;
		height: auto;
		background-image: url(../images/mbackground3.png);
		background-position: bottom center;
		background-size: 430px auto;
		background-repeat: no-repeat;
		position: relative;
	}

	.section-text {
		font-size: 16px;
		line-height: 24px;
		position: relative;
		z-index: 3;
	}

	.section-3-note {
		width: 100%;
		font-size: 10px;
		line-height: 18px;
	}

	.section-4 {
		height: auto;
		background-image: url(../images/mbackground4.png);
		background-position: top center;
		background-size: 430px auto;
		padding-top: 30px;
		padding-bottom: 30px;
		min-height: 0;
	}

	.swiper-3,
	.swiper-2 {
		width: calc(100% + 40px);
		padding: 0 20px;
		margin: 20px -20px 0 -20px;
	}

	.mt-x {
		margin-top: 15px;
	}

	.section-5 {
		padding: 40px 0 60px 0;
	}

	h3 {
		font-size: 14px;
		line-height: 23px;
		margin-bottom: 8px;
	}

	.info-lost {
		font-size: 10px;
		line-height: 16px;
		height: 160px;
		padding-bottom: 50px;
	}

	.line {
		width: 50%;
		margin-right: 3px;
	}

	.download {
		width: 50%;
		margin-right: 0;
		margin-left: 3px;
	}

	footer {
		padding: 30px 0;
	}

	.footer-up {
		padding: 0;
	}

	.footer-tit {
		padding: 0;
		letter-spacing: 0;
	}

	footer p {
		text-align: left;
		padding: 0;
	}

	.footer-sub {
		padding: 0;
	}

	.ie {
		padding: 0;
	}

	.info-lost ol {
		padding-left: 24px;
	}

	.top {
		position: absolute;
		bottom: auto;
		top: -56px;
		right: 20px;
		width: 36px;
		height: 36px;
		background-size: 20px auto;
	}

	.now {
		display: none;
	}

	.side-bar {
		width: 100%;
		top: auto;
		right: 0;
		bottom: 0;
		transform: translateY(0);
		background-color: #0E6C6A;
		z-index: 999;
		display: flex;
	}

	.side-bar a img {
		width: auto;
		height: 26px;
	}

	.side-bar a {
		width: 25%;
		display: block;
		text-align: center;
		padding: 8px 0;
		font-size: 14px;
		line-height: 18px;
	}

	.side-bar a:hover {
		background-color: #075755;
	}

	.side-bar a span {
		display: none;
	}

	.wish-tit {
		position: absolute;
		top: 16%;
		font-size: 20px;
		font-weight: 700;
		line-height: 36px;
		letter-spacing: 0.005em;
		text-align: center;
		color: rgba(166, 87, 84, 1);
		width: 100%;
	}

	.wish-tit span {
		font-size: 26px;
	}

	.fix-top {
		top: -200px;
	}

	.fix-top.active {
		top: 54px;
	}

	#postForm-fixedtop {
		display: flex;
		flex-direction: column;
		max-width: 1120px;
		margin: 0 auto;
		padding-bottom: 5px;
	}

	#postForm-fixedtop .form-col {
		width: 100%;
		padding-right: 0;
		margin-bottom: 10px;
	}

	.fix-top-sub {
		text-align: left;
		font-size: 18px;
		padding-bottom: 10px;
		padding-top: 12px;
		font-weight: 400;
	}

	.fix-top-sub span {
		display: none;
	}

	#postForm-fixedtop .form-col.fix {
		width: 100%;
		padding-right: 0;
		padding: 0;
	}

	#postForm-fixedtop .form-btn {
		font-size: 18px;
		line-height: 36px;
		border-radius: 4px;

	}

	.hide-mb {
		display: none;
	}

	.close {
		display: none;
		width: 26px;
		position: absolute;
		top: 8px;
		right: 10px;
	}

	.close.active {
		display: inline-block;
	}

	.card-3 span {
		font-size: 20px;
		line-height: 30px;
	}

	.mb-fix {
		padding: 0 !important;
	}

	.col-2-row .col-2-2:first-child::after {
		content: '';
		border-right: none;
		border-bottom: solid 1px #707070;
		width: calc(100% - 20px);
		height: 0;
		position: absolute;
		top: auto;
		bottom: 0;
		right: 10px;
	}

	.step-row {
		display: block;
		align-items: stretch;
		margin: 20px 0;
	}

	.step-col {
		width: 100%;
		padding: 0;
		margin-bottom: 46px;
	}

	.card-1-text {
		margin-bottom: 10px;
	}

	.bird-1 {
		width: 107px;
		position: absolute;
		left: 0;
		top: 690px;
		z-index: 3;
	}

	.bird-3 {
		width: 120px;
		position: absolute;
		left: 55%;
		top: -20px;
		transform: translateX(0);
	}

	.bird-4 {
		width: 100px;
		position: absolute;
		left: 10px;
		top: 120px;
		transform: translateX(0);
	}

	.next {
		width: 24px;
		position: absolute;
		right: auto;
		top: auto;
		margin-top: 0;
		margin-left: -12px;
		transform: rotate(90deg);
		bottom: -34px;
		left: 50%;
	}

	.menu-box {
		top: 54px;
	}

	.menu-box.active {
		height: calc(100% - 54px);
	}

	.button_container {
		top: 20px;
	}

	.section-4 .container {
		margin-top: 30px;
	}


}

@media (max-width:375px) {
	.col-2-2 {
		padding: 15px 0 10px 0;
	}

	.wish-tit {
		top: 17%;
		font-size: 22px;
	}

	.wish-tit span {
		font-size: 32px;
	}

	.btn-box {
		bottom: 15px;
	}
}