<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
}

body{
	width: 100vw;
	overflow-x: hidden;
	background: #f5f5f5;
	font-size: 16px;
}

body.index{
	background: url('../img/bg_m.jpg') no-repeat;
    background-size: cover;
}

@media all and (min-width: 769px) {
	body.index {
		background: none;
	}
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
}

h1{
	font-size: 3.4em;
	font-weight: 500;
	line-height: 1.2em;
}

h2{
	font-size: 2.25em;
	font-weight: 500;
	line-height: 1.1em;
}

h3{
	font-size: 1.2em;
	font-weight: 500;
	line-height: 2.4em;
}

h4{
	font-size: 1.85em;
	font-weight: 500;
}

h5{
	font-size: 1.125em;
	font-weight: 500;
}

h6{
	font-size: 1em;
    font-weight: 500;
}

p{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
	text-align: justify;
	font-size: 0.975em;
    /* line-height: 1.5em; */
    font-weight: 400;
}

::selection {
    color: #000000;
    background: #ffcc00;
}

.show{
	display: block;
}

.hide{
	display: none;
}

.mobile{
	display: none;
}

.desktop{
	display: block;
}

.clearfix{
	clear: both;
}

section{
	position: relative;
	width: 100%;
	margin: 0 auto;
	/* overflow: hidden; */
}

.scrollfixed{
	overflow: hidden;
}

/* ============================================================
LOADING
============================================================ */
.progress {
	position: fixed;
	z-index: 11111;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414221;
	color: #e7e296;
}

.progress-inner {
	position: absolute;
	left: calc(50% - 90px);
	top: calc(50% - 122px);
	width: 180px;
	height: 244px;
	background-color: none;
	/*overflow: hidden;*/
}

/* .progress-inner img{
	width: 100%;
} */

.progress-bar {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #414221;
}

.progress-text {
	color: #ffffff;
	font-family: "Roboto", "Noto Sans TC", sans-serif;
	font-size: 2em;
	font-weight: 500;
	position: absolute;
	z-index: 9999999;
	width: 220px;
	text-align: center;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}

/* .complete {
	overflow: auto;
} */

.progress-logo {
	-moz-transform: scale(1.02, 1.02);
	-ms-transform: scale(1.02, 1.02);
	-webkit-transform: scale(1.02, 1.02);
	transform: scale(1.02, 1.02);
	position: absolute;
	top: 0;
}

.progress-complete .progress-bar {
	background-color: #77c5de;
}

.mobile{
	display: block;
}

@media all and (min-width: 480px) {
	.mobile{
		display: none;
	}
}

/* ============================================================
NAV
============================================================ */
nav{
	width: 100%;
	/* height: 100vh; */
	position: fixed;
	z-index: 11;
}

.nav-bg{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .7);
	opacity: 0;
	display: none;
	z-index: 2;
}

.nav{
	width: 80%;
	max-width: 280px;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	border-right: 15px solid #b19e31;
	box-sizing: border-box;
	transform: translate(calc(-100% + 15px),0);
	z-index: 3;
}

.open_nav{
	animation: openNav .2s linear forwards;
}

.close_nav{
	animation: closeNav .2s linear forwards;
}

@keyframes openNav{
	0%{
		transform: translate(calc(-100% + 15px),0);
	}

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

@keyframes closeNav{
	0%{
		transform: translate(0,0);
	}

	100%{
		transform: translate(calc(-100% + 15px),0);
	}
}



.nav-switch{
	position: absolute;
	background: #b19e31;
	width: 60px;
	height: 50px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
	right: -51px;
	top: calc(50% - 25px);
	cursor: pointer;
	transform: scale(.7);
}

@media all and (min-width: 769px){
	.nav-switch{
		right: -60px;
		transform: scale(1);
	}
}

.nav-line{
	width: 40px;
	height: 3px;
	left: 10px;
	background: #ffffff;
	position: absolute;
}

.nav-line:nth-child(1){
	top: 10px;
}

.nav-line:nth-child(2){
	top: 23px;
}

.nav-line:nth-child(3){
	width: 20px;
	top: 36px;
}

@keyframes lineRight{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(45deg);
	}
}

@keyframes lineLeft{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(-45deg);
	}
}

@keyframes lineDisappear{
	0%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
}

@keyframes lineRightReverse{
	0%{
		transform: rotate(45deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

@keyframes lineLeftReverse{
	0%{
		transform: rotate(-45deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

@keyframes lineDisappearReverse{
	0%{
		opacity: 0;
	}

	100%{
		opacity: 1;
	}
}

.nav-turnright{
	animation: lineRight .2s linear forwards;
	margin-top: 15px;
}

.nav-turnleft{
	animation: lineLeft .2s linear forwards;
	margin-top: 2px;
}

.nav-disappear{
	animation: lineDisappear .2s linear forwards;
}

.nav-turnright_r{
	animation: lineRightReverse .2s linear forwards;
	margin-top: 0;
}

.nav-turnleft_r{
	animation: lineLeftReverse .2s linear forwards;
	margin-top: 0;
}

.nav-disappear_r{
	animation: lineDisappearReverse .2s linear forwards;
}

.menu{
	margin-top: 120px;
	margin-left: 30px;
	position: relative;
}

@media all and (max-width: 350px){
	.menu{
		margin-top: 100px;
	}
}

.menu li{
	margin: 10px 0;
	font-size: 18px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

@media all and (min-width: 769px) {
	.menu li{
		margin: 15px 0;
	}
}

.menu li a{
	color: #ffffff;
	transition: .2s linear;
}

.menu li a:hover{
	color: #f2eab0;
}

.menu li a.menu-active{
	color: #f2eab0;
}

.sub-menu{
	padding-left: 15px;
	margin-left: 15px;
	box-sizing: border-box;
}

.sub-menu{
	border-left: 3px solid #ffffff;
}


.signup{
	width: 100%;
    height: 50px;
    position: fixed;
    right: 0;
    top: auto;
    bottom: 0;
    background: #0c382d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-area{
	width: 40%;
    position: relative;
    margin: 0 auto;
    margin-left: 25px;
    padding-right: 20px;
    opacity: 1;
    transition: .2s linear;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.join-text{
	font-weight: 500;
	font-size: 1.2em;
	line-height: 1.2em;
	color: #f2eab0;
	text-align: center;
}

.join-text br{
	display: none;
}

.join-go{
	width: 40px;
    height: 40px;
    background: #f2eab0;
    border-radius: 50%;
    color: #0c382d;
    text-align: center;
    font-weight: 500;
    font-size: 1.5em;
    line-height: 40px;
    position: relative;
    margin: 0 auto;
    font-family: 'Oswald', 'Roboto', "Noto Sans TC", sans-serif;
}

.join-area a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.share-area{
	width: 40%;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.share-text{
	font-size: 1.15em;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}

.share-fb, .share-line{
	font-size: 2em;
	text-align: center;
	margin: 0px 15px;
	color: #ffffff;
	position: relative;
	opacity: 1;
	transition: .2s linear;
}

.share-fb a, .share-line a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.signup-frog{
	position: absolute;
    width: 60px;
    top: -45px;
    right: calc(50% - 30px);
}

.signup-frog img{
	width: 100%;
}


@media all and (min-width: 769px){
	.signup{
		width: 80px;
		height: auto;
		right: 0;
		bottom: auto;
		top: 50%;
		display: block;
		transform: translate(0,-50%);
		background: #0c382d;
		border-top-left-radius: 7px;
		border-bottom-left-radius: 7px;
	}

	.join-area{
		width: 80%;
		padding-right: 0;
		padding: 40px 0 10px 0;
		border-bottom: 2px solid #f2eab0;
		transition: .2s linear;
		display: block;
		margin: 0 auto;
	}

	.join-text{
		font-size: 1.5em;
	}

	.join-text br{
		display: block;
	}

	.join-go{
		width: 50px;
		height: 50px;
		font-size: 1.8em;
		line-height: 50px;
		margin: 10px auto;
	}

	.share-area{
		width: 80%;
		padding: 10px 0 20px 0;
		display: block;
	}

	.share-text{
		font-size: 1.15em;
		text-align: center;
		text-transform: uppercase;
		color: #ffffff;
	}

	.share-fb, .share-line{
		margin: 15px 0;
	}

	.join-area:hover, .share-fb:hover, .share-line:hover{
		opacity: .7;
	}

	.signup-frog{
		position: absolute;
		width: 80px;
		top: -60px;
		right: 0;
	}
}


.nglogo{
	width: 90px;
	position: fixed;
	top: 20px;
	left: 30px;
	z-index: 11;
}

.logo-black-bg{
	width: 100%;
	padding-bottom: 100px;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	background: linear-gradient(180deg,rgba(62, 64, 67, .7),rgba(62, 64, 67, 0));
}

@media all and (min-width: 769px){
	.nglogo{
		width: 120px;
	}
}

.nglogo img{
	width: 100%;
	position: relative;
	z-index: 2;
}

.nglogo a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

/* .nglogo:before{
	content: '';
	display: table;
	width: 300%;
	padding-bottom: 200%;
	position: absolute;
	left: -50%;
	top: -50%;
	background: linear-gradient(150deg,rgba(62, 64, 67, .9),rgba(62, 64, 67, 0),rgba(62, 64, 67, 0));
} */

.blur{
	-webkit-filter:blur(5px);
	filter:blur(5px);
}


/* ============================================================
INDEX
============================================================ */
body.index, html.index {
	margin: 0;
	padding: 0;
}

@media all and (min-width: 769px){
	body.index, html.index{
		height: 100%;
	}
}

.wrapper {
	width: 100%;
	-webkit-perspective: 1000;
			perspective: 1000;
}

@media all and (min-width: 769px){
	.wrapper{
		overflow: hidden;
		height: 100%;
	}
}

.section {
	width: 100%;
	position: relative;
	min-height: 100vh;
}

@media all and (min-width: 769px) {
	.section {
		height: 100%;
		min-height: auto;
		width: calc( 100% / 4 );
		float: left;
		position: relative;
	}
}

.section:nth-child(1) {
	/* background: #F64747; */
	height: 100vh;
}
.section:nth-child(2) {
	/* background: #22A7F0; */
}
.section:nth-child(3) {
	/* background: #F9690E; */
}
.section:nth-child(4) {
	/* background: #9B59B6; */
}
.section:nth-child(5) {
	/* background: #03C9A9; */
}
.sections {
	width: 100%;
	height: 100%;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden;
	/* background: url('../img/bg_m.jpg') no-repeat;
	background-size: cover; */
}

@media all and (min-width: 769px) {
	.sections {
		width: 400%;
		background: url('../img/bg.jpg') no-repeat;
		background-size: cover;
	}

	.section:nth-child(3) {
		display: flex;
		justify-content: space-between;
	}
	.section:nth-child(4) {
		display: flex;
		justify-content: space-between;
	}
}

.h1{
	width: 75%;
	max-width: 960px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.h1-frog{
	width: 40%;
	position: relative;
}

.h1-title{
	width: 100%;
	position: relative;
}

.h1-frog-2, .h1-frog-3{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.h1-frog img,
.h1-title img,
.h1-frog-2 img,
.h1-frog-3 img{
	width: 100%;
}

.h1-frog-2{
	animation: frogEye 3s forwards infinite;
}

.h1-frog-3{
	animation: frogEye 3s forwards .1s infinite;
}

@keyframes frogEye{
	0%{
		opacity: 0;
	}

	5%{
		opacity: 1;
	}

	5.5%{
		opacity: 0;
	}

	100%{
		opacity: 0;
	}
}



.h1-t,.h1-f,.h1-r{
	position: absolute;
}

.h1-t{
	width: 15%;
	top: 0;
    left: 25%;
    animation: wordJump 5s forwards 1s infinite;
}

.h1-f{
	width: 13%;
    top: 21%;
    left: 1%;
    animation: wordJump 5s forwards 1.25s infinite;
}

.h1-r{
	width: 14%;
    top: 29%;
    left: 52%;
    animation: wordJump 5s forwards 1.5s infinite;
}

.h1-t img,
.h1-f img,
.h1-r img{
	width: 100%;
}

@keyframes wordJump{
	0%{
		transform: scale(1,1);
	}

	5%{
		transform: scale(1,.7);
	}

	10%{
		transform: scale(1,1);
	}

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

@media all and (min-width: 769px){
	.h1{
		width: 70%;
		justify-content: space-between;
	}

	.h1-frog{
		width: 35%;
	}

	.h1-title{
		width: 63%;
	}
}

.index-leave{
	position: absolute;
}

.index-leave img{
	width: 100%;
	opacity: .5;
}

.index-leave-b1{
	width: 50%;
	bottom: -7%;
	right: -3%;
	transform: rotate(0deg);
}

.index-leave-b2{
	width: 50%;
    bottom: 0;
    right: -12%;
    transform: rotate(-120deg);
}

.index-leave-l1{
	width: 55%;
    top: 20%;
    left: -10%;
    transform: rotate(100deg);
}

.index-leave-l2{
	width: 50%;
    top: 40%;
	left: -8%;
    transform: rotate(40deg);
}

@keyframes leaveRotateL{
	0%{
		transform: rotate(0deg);
	}

	50%{
		transform: rotate(-5deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

@keyframes leaveRotateR{
	0%{
		transform: rotate(0deg);
	}

	50%{
		transform: rotate(5deg);
	}

	100%{
		transform: rotate(0deg);
	}
}

.index-leave-b1 img{
	animation: leaveRotateL 15s forwards infinite;
}

.index-leave-b2 img{
	animation: leaveRotateL 10s forwards infinite;
}

.index-leave-l1 img{
	animation: leaveRotateR 5s forwards infinite;
}

.index-leave-l2 img{
	animation: leaveRotateL 7s forwards infinite;
}

#title2, #title3, #title4, #title5{
	position: absolute;
	left: 0;
}

@media all and (min-width: 769px) {
	.index-leave-b1{
		width: 25%;
		min-width: 370px;
		bottom: -15%;
		right: 5%;
	}

	.index-leave-b2{
		width: 25%;
	    min-width: 370px;
	    bottom: -5%;
    	right: -3%;
	}

	.index-leave-l1{
		width: 27%;
	    min-width: 370px;
	    top: 17%;
    	left: -8%;
	}

	.index-leave-l2{
		width: 25%;
	    min-width: 370px;
	    top: 50%;
		left: -8%;
	}
}

/* ============================================================
index-frog-intro
============================================================ */
.frog-intro-container{
	width: calc(100% - 15px);
	margin-left: 15px;
	position: relative;
	padding: 50px 0;
}

.frog-intro-text-1{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

.frog-intro-text h2{
	font-size: 2em;
	color: #ffffff;
	margin: 5px 0;
}

.frog-intro-text h4{
	font-size: 1.2em;
	color: #e7e296;
	margin: 5px 0;
	font-style: italic;
}

.frog-intro-text p{
	font-size: 1em;
	color: #ffffff;
	text-align: justify;
	margin: 5px 0;
}

.frog-intro-pic img{
	width: 100%;
}

.frog-intro-pic-1{
	width: 80%;
	max-width: 500px;
	position: relative;
	margin: 20px auto;
}

@media all and (min-width: 769px) {
	.frog-intro-container{
		width: 100%;
		height: 100vh;
		padding: 0;
	}

	.frog-intro-container-half{
		width: 50%;
	}

	.frog-intro-text-1{
		width: 30%;
		position: absolute;
		right: 50%;
		top: 50%;
		transform: translate(100%,-50%);
	}

	.frog-intro-pic-1{
		width: 55%;
		max-width: 650px;
		position: absolute;
		bottom: -10%;
		left: 10%;
	}
}

.frog1-leave-b{
	width: 45%;
    top: -5%;
    left: -15%;
    transform: rotate(65deg);
}

.frog1-leave-t{
	width: 65%;
    bottom: 0;
    right: -20%;
    transform: rotate(24deg);
}

@media all and (min-width: 769px){
	.frog1-leave-b{
		width: 20%;
	    top: -5%;
	    left: 10%;
	    transform: rotate(65deg);
	}

	.frog1-leave-t{
		width: 30%;
	    bottom: -20%;
	    right: -10%;
	    transform: rotate(24deg);
	}
}

.frog-intro-pic-2{
	width: 80%;
	max-width: 500px;
	position: relative;
	margin: 20px auto;
}

.frog-intro-text-2{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

.frog-intro-pic-3{
	width: 100%;
    max-width: 500px;
    position: relative;
    margin-left: -35%;
    margin-top: -25%;
    transform: rotate(-20deg);
}

.frog-intro-text-3{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

@media all and (min-width: 769px){
	.frog-intro-pic-2{
		position: absolute;
    	bottom: -30%;
	}

	.frog-intro-text-2{
		position: absolute;
	    top: 50%;
	    transform: translate(0, -80%);
	    width: 75%;
	    max-width: 600px;
	}

	.frog-intro-pic-3{
		position: absolute;
	    top: -15%;
	    right: 20%;
	    width: 70%;
	    margin-left: 0;
	    margin-top: 0;
	    transform: rotate(0deg);
	}

	.frog-intro-text-3{
		position: absolute;
	    top: 50%;
	    left: 5%;
	    width: 75%;
	    max-width: 600px;
	}
}

.frog2-leave-b{
	width: 50%;
	max-width: 400px;
    top: 45%;
    right: -5%;
    transform: rotate(160deg);
}

@media all and (min-width: 769px){
	.frog2-leave-b{
		width: 30%;
	    top: auto;
	    bottom: -10%;
	    right: 40%;
	    transform: rotate(-45deg);
	}
}

.frog-intro-pic-4{
	width: 100%;
    max-width: 500px;
    position: relative;
    margin: 20px 0;
    margin-left: 100%;
    transform: translate(-95%, 0);
}

.frog-intro-text-4{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

.frog-intro-pic-5{
	width: 100%;
    max-width: 500px;
    position: relative;
    margin-bottom: -20%;
    margin-left: 7%;
}

.frog-intro-text-5{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

@media all and (min-width: 769px){
	.frog-intro-pic-4{
		position: absolute;
    	bottom: -13%;
    	max-width: 600px;
	}

	.frog-intro-text-4{
		position: absolute;
    	top: 25%;
    	left: 10%;
    	max-width: 550px;
	}

	.frog-intro-pic-5{
		position: absolute;
	    top: 0;
	    right: 5%;
	    margin-bottom: 0;
    	margin-left: 0;
	}

	.frog-intro-text-5{
		position: absolute;
    	bottom: 25%;
    	/* left: 10%; */
    	max-width: 550px;
	}
}

.frog3-leave-b{
	width: 60%;
	max-width: 400px;
	top: 45%;
	left: -10%;
	transform: rotate(160deg);
}

@media all and (min-width: 769px){
	.frog3-leave-b{
		top: auto;
		left: auto;
		right: 5%;
		bottom: -15%;
		transform: rotate(10deg);
	}
}

@media all and (min-width: 1440px){
	.frog-intro-text h2{
		font-size: 2.5em;
		color: #ffffff;
		margin: 5px 0;
	}

	.frog-intro-text h4{
		font-size: 1.5em;
		color: #e7e296;
		margin: 5px 0;
		font-style: italic;
	}

	.frog-intro-text p{
		font-size: 1.1em;
		color: #ffffff;
		text-align: justify;
		margin: 5px 0;
	}
}



/* ============================================================
ABOUT
============================================================ */
.about-wrapper{
	width: 100%;
	position: relative;
	background: #324316;
}


/* header */
header.about-header{
	width: 100%;
	position: relative;
	min-height: 100vh;
	padding: 80px 0 0 0;
	overflow: hidden;
}

.about-origin-title{
	width: 90%;
	max-width: 750px;
	position: relative;
}

.about-content{
	width: 90%;
	max-width: 750px;
	position: relative;
	background: #ffffff;
	padding: 50px 0;
}

.about-content p{
	width: 75%;
	position: relative;
	margin: 0 auto;
	font-size: 1em;
	text-align: justify;
}

.about-content p em{
	color: #ad4d0d;
	font-weight: 600;
}

.about-frog{
	width: 100%;
	position: relative;
	min-height: 300px;
}

.about-frog img{
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	object-position: 0% 50%;
}

.header-frog{
	width: 80%;
	padding-bottom: 60.5%;
	position: absolute;
	top: -60px;
	right: 5%;
}

.header-frog img{
	width: 100%;
}

.photo-author{
	position: absolute;
	bottom: 20px;
	left: 35px;
}

.photo-author p{
	color: #ffffff;
}

@media all and (min-width: 769px) {
	header.about-header{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		padding: 0;
	}

	.about-origin{
		width: 60%;
		order: 2;
		/* margin-bottom: 50px; */
	}

	.about-frog{
		width: 40%;
		min-height: 100vh;
		order: 1;
	}

	.about-content p{
		font-size: 1.1em;
		padding: 40px 0 ;
	}

	.header-frog{
		width: 110%;
		padding-bottom: 83.22%;
		top: auto;
		right: auto;
		bottom: 0;
		left: 100%;
		transform: translate(-85%, 0);
	}
}

/* review */
section.about-review{
	width: 100%;
	position: relative;
	padding: 50px 0;
	overflow: hidden;
}

.review-bgleft{
	width: 100%;
	min-height: 300px;
	height: 40%;
	position: absolute;
	top: 0;
	left: 0;
	background: #a2b15f;
}

.review-container{
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}

.review-video-container{
	width: calc(100% - 15px);
	position: relative;
	margin-left: 15px;
}

.review-title{
	width: 80%;
	background: #ffffff;
	padding: 20px 40px;
	box-sizing: border-box;
	margin-left: 20%;
	text-align: right;
	background: #ffffff;
	position: relative;
}

.review-logo-container{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* overflow: hidden; */
}

.review-logo-container img{
	width: 50%;
	max-width: 175px;
	position: absolute;
	bottom: -15%;
    left: -15%;
}

.review-title h4.video-name{
	font-size: 1.25em;
	color: #333333;
	font-weight: 600;
}

.review-title h4.video-name em{
	font-size: 2em;
}

.review-video{
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
}

.review-video iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media all and (min-width: 769px) {
	.review-bgleft{
		width: 60%;
		min-height: 60%;
		height: 100%;
	}

	section.about-review{
		padding: 100px 0;
	}

	.review-video-container{
		width: 100%;
		position: relative;
		margin-left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.review-title{
		width: 30%;
		margin-left: 0;
	}

	.review-title h4.video-name{
		font-size: 1.4em;
	}

	.review-video{
		width: 70%;
		position: relative;
		padding-bottom: 39.375%;
	}
}


.review-before-video{
	width: 100%;
	position: relative;
	margin: 20px auto;
}

.review-before-video li{
	width: 80%;
	position: relative;
	margin: 20px auto;
	padding: 1%;
	box-sizing: border-box;
	background: #ffffff;
	cursor: pointer;
	opacity: 1;
	transition: .2s linear;
}

.before-logo{
	width: 100%;
	padding-bottom: 60%;
	position: relative;
	margin: 0 auto;
}

.before-logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	position: absolute;
}

.play-icon{
	width: 100%;
	text-align: center;
	color: #333333;
	font-size: 3em;
}

.review-before-video li a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

@media all and (min-width: 769px) {
	.review-before-video{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.review-before-video li{
		width: 32%;
		margin-right: 2%;
	}

	.review-before-video li:nth-last-child(1){
		margin-right: 0;
	}

	.review-before-video li:hover{
		opacity: .8;
	}
}

.about-leave-r1{
	width: 55%;
    top: 20%;
    right: -10%;
    transform: rotate(0deg);
}

.about-leave-l1{
	width: 50%;
    top: 40%;
	left: -8%;
    transform: rotate(40deg);
}

.about-leave-r1 img{
	animation: leaveRotateR 5s forwards infinite;
}

.about-leave-l1 img{
	animation: leaveRotateL 7s forwards infinite;
}

@media all and (min-width: 769px) {
	.about-leave-r1{
		width: 27%;
	    min-width: 370px;
	    top: 70%;
    	right: -10%;
	}

	.about-leave-l1{
		width: 25%;
	    min-width: 370px;
	    top: 40%;
		left: -8%;
	}
}

/* ============================================================
INTRO
============================================================ */
.intro-wrapper{
	width: 100%;
	position: relative;
	background: #324316;
	padding: 80px 0;
}

@media all and (min-width: 769px){
	.intro-wrapper{
		padding: 100px 0;
	}
}

/* .intro-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
} */

section.intro-schedule{
	width: 100%;
	position: relative;
	padding-left: 15px;
	box-sizing: border-box;
}

.schedule-title{
	margin-right: 5%;
	text-align: right;
}

.schedule-table{
	width: 85%;
	position: relative;
	padding: 5%;
	box-sizing: border-box;
	margin-top: -3px;
	margin-left: 15%;
	background: #ffffff;
	z-index: 2;
}

.schedule-td{
	width: 100%;
	position: relative;
	color: #333333;
	font-size: 1em;
	line-height: 1.8em;
}

.schedule-td:nth-child(1){
	color: #a2b15f;
	font-weight: 500;
}

.schedule-tr:nth-last-child(1) .schedule-td{
	color: #333333;
	font-size: 1em;
	line-height: 1.4em;
	font-weight: 400;
}

.schedule-btn{
	margin: 20px 0;
}








.timeline-container{
	width: 100%;
	position: relative;
	background: #a2b15f;
	margin-top: -200px;
	padding-top: 250px;
	z-index: 1;
}

.timeline-all{
	width: 85%;
	position: relative;
	margin: 0 auto;
	/* display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap; */
}

.timeline-content{
	width: 100%;
	max-width: 500px;
	position: relative;

}

.timeline-main{
	width: 100%;
	height: 60px;
	position: relative;
}

.timeline-main:nth-child(odd){
	background: rgba(255, 255, 255, .2);
}

.timeline-main:nth-child(even){
	background: rgba(255, 255, 255, .4);
}



.time-range{
	width: 100%;
	height: 20px;
	border-radius: 1000px;
	text-align: center;
	line-height: 20px;
	background: #324316;
	color: #ffffff;
	font-family: 'Oswald', 'Roboto', "Noto Sans TC", sans-serif;
}

.time-text{
	text-align: center;
	color: #324316;
}



.timeline-attention{
	padding: 20px;
	box-sizing: border-box;
	color: #ffffff;
	font-size: 1em;
	line-height: 1.5em;
	text-align: justify;
	max-width: 500px;
    position: relative;
    margin: 0 auto;
}

.timeline-attention p{
	color: #ffffff;
	font-size: 1em;
	line-height: 1.5em;
	text-align: left;
}



.timeline-attention p span img{
	width: 100px;
    vertical-align: middle;
}

@media all and (min-width: 769px){
	.schedule-title{
		margin-right: 0;
		margin-left: 5%;
		text-align: left;
	}

	.schedule-td{
		font-size: 1.1em;
		line-height: 2em;
	}

	.schedule-tr:nth-last-child(1) .schedule-td{
		font-size: 1.1em;
		line-height: 1.5em;
	}

	.schedule-table{
		width: 50%;
		margin-left: 0;
		float: left;
	}

	.timeline-container{
		width: 50%;
		float: right;
		margin-top: -200px;
		padding: 150px 0 80px 0;
	}

	.intro-schedule:after{
		content: '';
		display: table;
		clear: both;
	}

	.timeline-unit{
		right: 20px;
	}

	.timeline-attention{
	    margin: 0;
	    margin-left: 10%;
	}

	.timeline-all{
		margin: 0;
		margin-left: 10%;
	}

}

/* info */
section.info{
	width: calc(100% - 15px);
	margin-left: 15px;
	position: relative;
	padding: 50px 0;
	overflow: hidden;
}

.info-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
	padding-top: 100px;
}

@media all and (min-width: 769px){
	.info-container{
		padding-top: 0;
	}
}

.info-cards{
	width: 100%;
	position: relative;
}

.info-content{
	width: 100%;
	position: relative;
	background: #152103;
	padding: 2% 5%;
	box-sizing: border-box;
	margin-bottom: 5%;
}

.info-content:nth-last-child(1){
	margin-bottom: 0;
}

h3.info-title{
	font-size: 2.25em;
	line-height: 1em;
	font-weight: 500;
	color: #ffff00;
	margin: 10px 0;
	font-family: 'Oswald', 'Roboto', "Noto Sans TC", sans-serif;
}

h3.info-title em{
	font-size: 14px;
	line-height: 1em;
	font-weight: 400;
	color: #f2eab0;
}

h6.info-price{
	color: #ffffff;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1em;
	margin: 10px 0;
}

h6.info-price em{
	font-size: 14px;
	line-height: 1em;
	font-weight: 400;
	color: #f2eab0;
}

p.info-text{
	color: #ffffff;
}

.info-text li{
	color: #ffffff;
}

.frog-line{
	width: 30%;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(0,-60%);
}

.frog-line img{
	width: 100%;
}

.crown{
	position: absolute;
    top: -20px;
    left: 5px;
    color: #ffff00;
    font-size: 2.25em;
    transform: rotate(-30deg);
}


/* .map-btn{
	width: 100%;
	position: absolute;
	height: 45px;
	text-align: center;
	line-height: 45px;
	background: #f2eab0;
	color: #324316;
	left: 0;
	bottom: 0;
	transition: .2s linear;
}

.map-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
} */

.map-link{
	position: relative;
	margin: 20px auto;
}

.info-attention{
	padding: 20px;
	box-sizing: border-box;
	color: #ffffff;
	font-size: 1em;
	line-height: 1.5em;
	text-align: center;
    position: relative;
    margin: 0 auto;
}


@media all and (min-width: 769px){
	.info-cards{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
		margin-top: 50px;
	}

	.info-content{
		width: 32%;
		margin-bottom: 0;
	}

	h3.info-title{
		min-height: 70px;
	}

	h6.info-price{
		min-height: 75px;
	}

	/* .map-btn:hover{
		background: #ffffff;
	} */
}


/* gift */
section.gift{
	width: calc(100% - 15px);
	margin-left: 15px;
	position: relative;
	padding: 50px 0;
}

@media all and (min-width: 769px){
	section.gift{
		padding: 100px 0;
	}
}

.gift-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}

.activity-gift{
	width: 100%;
	position: relative;
	margin: 50px auto;
}

.activity-item{
	width: 100%;
	position: relative;
	margin: 20px auto;
}



.gift-info{
	width: 100%;
	position: relative;
	padding: 20px 30px;
	box-sizing: border-box;
	border: 2px solid #ffffff;
	border-bottom: 15px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.gift-info h3{
	font-size: 1.2em;
	line-height: 1em;
	font-weight: 500;
	color: #f2eab0;
	margin-bottom: 10px;
}

.gift-info h3 em{
	font-size: 14px;
}

.gift-info p{
	font-size: 1em;
	color: #ffffff;
	margin-bottom: 10px;
}

.gift-info ol, .gift-info ol li{
	list-style: square;
	color: #ffffff;
}

.cube-btn.gift-cube-btn{
	width: 100px;
	margin: 20px auto 0px;
}

.gift-pic{
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	background: #ffffff;
	cursor: pointer;
}

.gift-pic img{
	position: absolute;
	width: 90%;
	height: 90%;
	object-fit: contain;
	top: 50%;
	left: 50%;
    transform: translate(-50%,-50%);
}

.big-icon{
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, .7);
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	font-size: 1.7em;
	position: absolute;
	bottom: 0;
	right: 0;
}

@media all and (min-width: 769px){
	.activity-gift{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	.activity-item{
		width: 48%;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin: 40px auto;
	}

	.gift-info{
		width: 55%;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
		border-top-right-radius: 0;
	}

	.gift-pic{
		width: 45%;
		padding-bottom: 45%;
	}
}

/* illustrator */
section.illustrator{
	width: calc(100% - 15px);
	position: relative;
	margin: 0 auto;
	margin-left: 15px;
	/* padding: 50px 0; */
	background: #ffffff;
}

.illustrator-container{
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}

.illustrator-photo{
	width: 100%;
	padding-bottom: 100%;
	position: relative;
}

.illustrator-photo img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.illustrator-title{
	font-weight: 500;
	margin-bottom: 10px;
}

.illustrator-title em{
	font-size: .6em;
}

.illustrator-text{
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.illu-text-container{
	width: calc(90% - 30px);
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
}

.illu-text-container p{
	font-size: 1em;
	line-height: 1.4em;
	color: #333333;
	text-align: justify;
}

.illustrator-btn{
	position: relative;
	margin: 20px auto 0;

}

.frog-author{
	display: none;
}

@media all and (min-width: 769px) {
	.illustrator-container{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 50px 0;
	}

	.illustrator-photo{
		width: 30%;
		padding-bottom: 0;
	}

	.illustrator-photo img{
		position: relative;
		width: 100%;
		height: 100%;
		min-height: 300px;
		object-fit: cover;
		object-position: 50% 50%;
	}

	.illustrator-text{
		width: 70%;
	}

	h2.unit-title.illustrator-title{
		font-size: 2em;
	}

	.illustrator-title{
		bottom: -1px;
	}

	.illustrator-title br{
		display: none;
	}

	.illustrator-btn{
		margin: 20px 0 0 0;
	}

	.frog-author{
		display: block;
		width: 12%;
		max-width: 300px;
		position: absolute;
		bottom: 0;
	    right: 100px;
	    transform: translate(0, 30%);
	    z-index: 2;
	}

	.frog-author img{
		width: 100%;
	}
}

section.other-gift-all{
	width: calc(100% - 15px);
	margin-left: 15px;
	position: relative;
	overflow: hidden;
}

.other-gift-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
}

.other-gift{
	width: 100%;
	position: relative;
	margin: 50px auto;
}

.other-item{
	width: 90%;
	position: relative;
	margin: 20px auto;
	background: #ffffff;
}

.other-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 20px 0;
}

.other-container h3{
	font-size: 1.7em;
    line-height: 1.4em;
	text-align: center;
	color: #324316;
	width: 100%;
	border-bottom: 1px dotted #324316;
}

.other-pic{
	width: 90%;
	padding-bottom: 100%;
	position: relative;
	margin: 0 auto;
}

.other-pic img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: 50% 50%;
}

.other-container ol, .other-container ol li{
	list-style: square;
	color: #333333;
}

.bg-triangle {
    border-color: #324316 transparent transparent transparent;
    border-style: solid solid solid solid;
    border-width: 50px 0px 0px 50px;
    height: 0px;
    width: 0px;
    position: absolute;
    top: 0;
    right: 0;
}


@media all and (min-width: 769px){
	.other-gift{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
	}

	.other-item{
		width: 32%;
	}

	.activity-item.big{
		width: 100%;
	}
}


h3.subscribe-title{
	font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
    color: #f2eab0;
    margin-bottom: 10px;
}

h3.subscribe-title.center{
	text-align: center;
}

h3.subscribe-title.left{
	text-align: left;
}

h3.subscribe-title.right{
	text-align: right;
}

.subscribe-gift{
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.subscribe-item{
	width: 100%;
	position: relative;
	background: #152103;
	margin: 20px 0;
}

.subscribe-info{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 5% 0;
}

.bg-triangle.green {
    border-color: #465f1c transparent transparent transparent;
    border-style: solid solid solid solid;
    border-width: 50px 0px 0px 50px;
    height: 0px;
    width: 0px;
    position: absolute;
    top: 0;
    right: 0;
}

.subscribe-item h5{
	font-size: 1em;
    font-weight: 500;
    color: #f2eab0;
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    text-align: right;
    transform: translate(0,-150%);
}

.subscribe-item h4{
	width: calc(100% - 40px);
	min-height: 60px;
	font-size: 1.25em;
    font-weight: 500;
    color: #ffffff;
}

.subscribe-pic{
	width: 90%;
	padding-bottom: 100%;
	position: relative;
	margin: 10px auto;
}

.subscribe-pic img{
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: contain;
	object-position: center;
}

.subscribe-item p{
	font-size: 1em;
    font-weight: 400;
    color: #f5f5f5;
    text-align: center;
}

.subscribe-item p em{
	font-size: 2em;
    font-weight: 500;
    color: #ffff00;
}

.subscribe-item ol, .subscribe-item ol li{
	list-style: square;
	font-size: .95em;
    font-weight: 400;
    color: #f5f5f5;
    margin-left: -10px;
    margin-top: 10px;
}

.subscribe-item ol li em{
	color: #f2eab0;
}

.special-gift{
	padding-top: 30px;
	margin-top: 50px;
	border-top: 2px solid #465f1c;
}

.special-gift .subscribe-item{
	background: #465f1c;
}

@media all and (min-width: 769px){
	.subscribe-gift{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
	}

	.subscribe-item{
		width: 32%;
	}

	.special-gift{
		justify-content: center;
	}

	.special-gift .subscribe-item{
		margin: 0 1%;
	}
}

.announcement2{
	width: 100%;
	position: relative;
	margin: 20px auto;
	padding: 40px 0 0 0;
    border-top: 2px solid #465f1c;
}

.announcement2-pic{
	width: 100%;
	max-width: 500px;
	position: relative;
	margin: 0 auto;
}

.announcement2-p{
	color: #ffffff;
	text-align: center;
}

.announcement2-pic img{
	width: 100%;
}

.ann-last em{
	font-size: 1.2em;
	font-weight: 500;
	color: #FFFF00;
}

.annoucement2-table{
	width: 100%;
	position: relative;
	margin: 20px auto;
}

.annoucement2-tr{
	margin: 20px 0;
}

.annoucement2-td{
	text-align: center;
	font-size: 1.1em;
	color: #ffffff;
	padding: 5px 0;
}

.annoucement2-td.line-through{
	text-decoration: line-through;
}

.annoucement2-td:nth-child(1){
	color: #f2eab0;
	font-weight: 600;
}

@media all and (min-width: 769px){
	.annoucement2-table{
		display: table;
		max-width: 500px;
	}

	.annoucement2-tr{
		display: table-row;
	}

	.annoucement2-td{
		display: table-cell;
		background: #536b2a;
		border: 1px solid #324316;
	}

	.annoucement2-td:nth-child(1){
		background: #688833;
	}
}



section.luckydraw{
	width: calc(100% - 15px);
	margin-left: 15px;
	position: relative;
}

.luckydraw-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}

table.luckydraw-table{
	width: 100%;
	position: relative;
	margin: 20px auto;
}

table.luckydraw-table tr td{
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
	background: rgba(242, 234, 176, .2);
	color: #ffffff;
}

table.luckydraw-table tr td p{
	text-align: center;
}

table.luckydraw-table tr:nth-child(1) td{
	background: rgba(242, 234, 176, .7);
}

table.luckydraw-table tr td:nth-child(1){
	width: 20%;
}

table.luckydraw-table tr td:nth-child(2){
	width: 50%;
}

table.luckydraw-table tr td:nth-child(3){
	width: 20%;
}

table.luckydraw-table tr td:nth-child(4){
	width: 10%;
}


/* slide */
.gift-slide{
	width: 100%;
	position: relative;
	padding-bottom: 105%;
	overflow: hidden;
}

.gift-slide-container{
	position: absolute;
}

.gift-slide-0{
	width: 20%;
	position: relative;
	float: left;
}

.gift-slide-container:after{
	content: '';
	display: table;
	clear: both;
}

.gift-slide-all{
	width: 85%;
	position: relative;
	margin: 0 auto;
}

.gift-slide-pic{
	width: 100%;
	position: relative;
	border: 1px solid #ffffff;
	border-radius: 5px;
	box-sizing: border-box;
	overflow: hidden;
}

.gift-slide-pic img{
	width: 100%;
}

.gift-slide-text p{
	font-size: 1em;
	text-align: center;
	margin: 10px 0;
	color: #ffffff;
}

.gift-slide .slide-prev, .gift-slide .slide-next{
	background: rgba(242, 234, 176, .7);
}

.slide-control {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translate(0,-50%);
}

.slide-prev, .slide-next {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: rgba(0, 0, 0, .8);
    cursor: pointer;
    color: #ffffff;
    font-size: 2em;
    position: absolute;
}

.slide-next{
	right: 0;
}

@media all and (min-width: 769px) {
	.gift-slide{
		padding-bottom: 30%;
	}
}

ol.gift-attention, ol.gift-attention li{
	list-style: square;
	margin: 5px 0;
	color: #ffffff;
}


.intro-leave-r1{
	width: 55%;
    bottom: 0;
    right: -10%;
    transform: rotate(0deg);
}

.intro-leave-l1{
	width: 50%;
    bottom: 0;
	left: -8%;
    transform: rotate(40deg);
}

.intro-leave-r1 img{
	animation: leaveRotateR 5s forwards infinite;
}

.intro-leave-l1 img{
	animation: leaveRotateL 7s forwards infinite;
}

@media all and (min-width: 769px) {
	.intro-leave-r1{
		width: 27%;
	    min-width: 370px;
	    top: 50%;
    	right: -10%;
    	bottom: auto;
	}

	.intro-leave-l1{
		width: 25%;
	    min-width: 370px;
		left: -8%;
		bottom: 0;
	}
}





/* announvement */
.announcement{
	width: 100%;
	position: relative;
	margin: 50px auto 100px;
	padding-bottom: 50px;
    border-bottom: 2px solid #465f1c;
}

.ann-text{
	text-align: center;
	font-size: 2em;
	color: #f5f5f5;
}

.ann-frog{
	width: 70%;
	max-width: 300px;
	position: relative;
	margin: 0 auto;
}

.ann-frog img{
	width: 100%;
}


/* ============================================================
COOPERATION
============================================================ */
.cooperation-wrapper{
	width: 100%;
	position: relative;
	background: #324316;
	padding: 80px 0 0 0;
	overflow: hidden;
}

section.cooperation{
	width: calc(100% - 15px);
    margin-left: 15px;
	position: relative;
}

.cooperation-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}

@media all and (min-width: 769px){
	.cooperation-container{
		margin-bottom: -100px;
	}
}

ul.coo-container{
	width: 100%;
	position: relative;
}

.coo-item{
	width: 100%;
	position: relative;
	margin: 65px 0 20px;
	padding-top: 20px;
	background: #465f1c;
}

.coo-content{
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.coo-pic{
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	background: #ffffff;
}

.coo-pic img{
	position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    padding: 20px;
    box-sizing: border-box;
}

.coo-text{
	width: 100%;
	position: relative;
	margin: 20px auto;
	padding-bottom: 10px;
}

.coo-text h3{
	font-size: 1.2em;
    line-height: 1em;
    font-weight: 500;
    color: #f2eab0;
    margin-bottom: 10px;
}

.coo-text p{
	color: #f5f5f5;
	font-size: 1em;
    margin-bottom: 10px;
    text-align: justify;
}

.coo-btn{
	width: 100%;
	height: 45px;
	text-align: center;
	line-height: 45px;
	background: #f2eab0;
	color: #324316;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: .2s linear;
    padding: 0 10px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    transform: translate(0, 100%);
}

.coo-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}



@media all and (min-width: 769px) {
	ul.coo-container{
		display: flex;
		justify-content: center;
		align-items: stretch;
		flex-wrap: wrap;
	}

	.coo-item{
		width: 30%;
		margin: 65px 1% 20px;
	}

	.coo-btn:hover{
		background: #ffffff;
	}

}

@media all and (min-width: 960px){
	.coo-item{
		width: 30%;
		margin: 65px 1% 20px;
	}	
}


.coo-frog{
	width: 60%;
	max-width: 600px;
	position: relative;
	margin-left: 0;
	transform: translate(0, 40%);
}

.coo-frog img{
	width: 100%;
	position: relative;
	z-index: 2;
}

.coo-frog-line{
	width: 50%;
    max-width: 260px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -27%);
}

.coo-frog-line img{
	width: 100%;
	transform: rotate(180deg);
}

.coo-bg-color{
	width: 70%;
	height: 70%;
	background: #a2b15f;
	position: absolute;
	right: 0;
	bottom: 0;
}

.coo-leave-r1{
	width: 100%;
    bottom: 20%;
    right: -70%;
    transform: rotate(30deg);
}

.coo-leave-r1 img{
	animation: leaveRotateR 5s forwards infinite;
}



/* ============================================================
JOIN
============================================================ */
.join-wrapper{
	width: 100%;
	position: relative;
	background: #324316;
	padding: 80px 0 0 0;
	overflow: hidden;
}

section.rule{
	width: calc(100% - 15px);
    margin-left: 15px;
	position: relative;
}

.frog-fule{
	display: none;
}

@media all and (min-width: 769px){
	.frog-fule{
		width: 20%;
		position: absolute;
		left: -2.5%;
		bottom: -50px;
		display: block;
	}

	.frog-fule img{
		width: 100%;
	}
}

.rule-container{
	width: 90%;
	max-width: 800px;
	position: relative;
	margin: 0 auto;
}

@media all and (min-width: 769px) {
	.rule-container{
		width: 85%;
		max-width: none;
		position: relative;
		margin: 0;
		margin-left: 15%;
	}
}

.rule-content{
	width: 100%;
	position: relative;
	background: #9cad52;
}

.rule-main{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 20px 0;
}

.rule-text{
	width: 100%;
	position: relative;
	margin: 20px 0;
}

.rule-item h6{
	color: #324316;
	font-weight: 500;
	font-size: 1.25em;
	line-height: 1.5em;
}

.rule-item-main p{
	color: #ffffff;
	font-size: 1.05em;
	line-height: 1.5em;
}

.rule-item-main p a, .rule-text ol li a{
	color: #324316;
	border-bottom: 2px solid #ffff00;
}

.rule-text ol, .rule-text ol li{
	list-style: square;
	color: #ffffff;
	margin: 5px 0;
	margin-left: -8px;
	position: relative;
}

.rule-delivery{
	width: 100%;
	max-width: 300px;
	position: relative;
}

.rule-delivery td{
	text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    width: 50%;
    border-top: 1px solid #324316;
    border-left: 1px solid #324316;
    padding: 5px;
}

.rule-delivery tr:nth-child(1) td{
	background: #324316;
	color: #ffffff;
}

.rule-delivery tr:nth-last-child(1) td {
    border-bottom: 1px solid #324316;
}

.rule-delivery tr td:nth-last-child(1) {
    border-right: 1px solid #324316;
}


/* traffic */
section.traffic{
	width: calc(100% - 15px);
    margin-left: 15px;
	position: relative;
}

.googlemap{
	width: 100%;
    height: 500px;
    position: relative;
}

#map {
    height: 100%;
}

.traffic-info{
	width: 90%;
	position: relative;
	/* margin-left: 10%; */
	background: #ffffff;
}

.traffic-info-container{
	width: 80%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
}

.traffic-main{
	margin: 15px 0;
}

.traffic-main h4{
	font-size: 1.25em;
	font-weight: 500;
	color: #324316;
}

.traffic-main h5{
	font-size: 1.15em;
	font-weight: 400;
	color: #9cad52;
	margin: 5px 0;
}

.traffic-main p, .traffic-main ol li{
	font-size: 1em;
	font-weight: 400;
	color: #333333;
	line-height: 1.5em;
}

.traffic-main ol ol, .traffic-main ol li{
	list-style: square;
	margin: 5px 0;
	margin-left: -8px;
	position: relative;
}

.frog-traffic{
	display: none;
}

@media all and (min-width: 769px){
	.googlemap{
		/* width: 80%; */
		position: relative;
		z-index: 2;
	}

	.traffic-info{
		width: 80%;
		position: relative;
		background: #ffffff;
	}

	.traffic-info-container{
		max-width: 900px;
	}

	.frog-traffic{
		width: 30%;
		position: absolute;
		top: 500px;
		right: 2%;
		display: block;
		z-index: 1;
	}

	.frog-traffic img{
		width: 100%;
	}


}



/* QA */
section.qa{
	width: calc(100% - 15px);
    margin-left: 15px;
	position: relative;
}

.qa-container{
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
	padding: 80px 0;
}




.qa-paper{
	position: relative;
	z-index: 2;
}

.mag-qu{
	width: 100%;
	position: relative;
	font-size: 1em;
	background: #9cad52;
	color: #ffffff;
	padding: 15px 20px;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px dotted #ffffff;
}

.mag-qu-text{
	width: calc(100% - 30px);
	float: left;
}

.mag-qu-triangle{
	width: 30px;
	text-align: center;
	float: right;
}

.triangle-down{
	display: block;
}

.triangle-up{
	display: none;
}

.mag-qu:after{
	content: '';
	display: table;
	clear: both;
}

.mag-an{
	width: 100%;
	background: rgba(242, 234, 176, 1);
	border: 1px dotted #ffffff;
	box-sizing: border-box;
	display: none;
	padding: 20px;
}

.mag-an p{
	font-size: 1em;
	color: #333333;
}

ol.num li{
	list-style: decimal;
	font-family: "Roboto", "Noto Sans TC", sans-serif;
	font-size: 1em;
	margin-left: -20px;
	color: #333333;
}

ol.abc li{
	list-style: upper-latin;
	font-family: "Roboto", "Noto Sans TC", sans-serif;
	font-size: 1em;
	margin-left: -20px;
	color: #333333;
}

@media all and (min-width: 769px){
	.mag-qu{
		font-size: 1.125em;
	}
}



/* ============================================================
UNITE
============================================================ */
h2.unit-title{
	font-size: 2em;
	font-family: 'Oswald', 'Roboto', "Noto Sans TC", sans-serif;
	text-transform: uppercase;
	line-height: 1.2em;
}

h2.unit-title.left{
	text-align: left;
}

h2.unit-title.right{
	text-align: right;
}

h2.unit-title.center{
	text-align: center;
}

h2.unit-title.yellow{
	color: #f2eab0;
}

h2.unit-title.green{
	color: #324316;
}

h2.unit-title.white{
	color: #ffffff;
}

h3.sub-title{
	font-size: 1.5em;
	font-family: 'Oswald', 'Roboto', "Noto Sans TC", sans-serif;
	text-transform: uppercase;
	line-height: 1.2em;
	text-align: center;
	color: #324316;
}

@media all and (min-width: 769px) {
	h2.unit-title{
		font-size: 2.8em;
	}
}

.cube-btn{
	width: 280px;
	height: 45px;
	border-radius: 5px;
	text-align: center;
	line-height: 45px;
	position: relative;
	font-size: 1em;
	transition: .2s linear;
}

.cube-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.cube-btn.green{
	background: #324316;
	color: #f2eab0;
}

.cube-btn.yellow{
	background: #f2eab0;
	color: #324316;
}

.cube-btn.white{
	background: #ffffff;
	color: #324316;
}

@media all and (min-width: 769px) {
	.cube-btn.green:hover{
		background: #f2eab0;
		color: #324316;
	}

	.cube-btn.yellow:hover{
		background: #ffffff;
		color: #324316;
	}

	.cube-btn.white:hover{
		background: #f2eab0;
		color: #324316;
	}
}


a.textlink{
	border-bottom: 3px #ffcc00 solid;
	font-weight: 500;
	color: #000000;
	cursor: pointer;
}


/* ============================================================
SPONSOR
============================================================ */
.sponsor{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	padding-left: 15px;
	box-sizing: border-box;
	background: #f2eab0;
}

.sponsor-container{
	width: 90%;
	max-width: 900px;
	position: relative;
	margin: 0 auto;
	/* padding: 50px 0; */
}

ul.sponsor-icons{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

ul.sponsor-icons li{
	width: 30%;
	padding: 2%;
	margin: 10px 0;
	box-sizing: border-box;
	position: relative;
	-webkit-filter:grayscale(0);
	text-align: center;
	opacity: 1;
}

ul.sponsor-icons li img{
	max-width: 90%;
	max-height: 100px;
}

ul.sponsor-icons li img.sponsorlogo-wide{
	max-width: 124%;
    margin-left: -6%;
}

ul.sponsor-icons li img.sponsorlogo-wide2{
	max-width: 130%;
    margin-left: -10%;
}



ul.sponsor-icons li a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media all and (min-width: 769px){
	ul.sponsor-icons li{
		width: 20%;
		margin: 20px 0;
		transition: .2s linear;
		-webkit-filter:grayscale(1);
		opacity: .8;
	}

	ul.sponsor-icons li.bigger{
		width: 30%;
	}

	ul.sponsor-icons li:hover{
		-webkit-filter:grayscale(0);
		opacity: 1;
	}
}



/* ============================================================
FOOTER
============================================================ */
footer{
	width: 100%;
	position: relative;
	background: #000000;
	color: #ffffff;
	padding-bottom: 100px;
	padding-left: 15px;
	box-sizing: border-box;
}

@media all and (min-width: 769px){
	footer{
		padding-bottom: 0;
	}
}

footer h5{
	text-align: center;
	font-weight: 600;
	font-size: 1.2em;
	margin: 10px 0;
}

footer p{
	text-align: center;
}

footer p a{
	color: #ffffff;
	text-decoration: underline;
}

.copyright{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.ng-logo{
	width: 100px;
	position: relative;
	padding: 15px;
}

.boulder-logo{
	width: 150px;
	position: relative;
	padding: 15px;
}

.copyright-p{
	color: #ffffff;
	font-size: .9em;
	padding: 10px;
}

/* .copyright a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
} */



/* ============================================================
GO TOP
============================================================ */

#gotop{
	/* width: 52px;
	height: 52px; */
	/* background: rgba(231,226,150,.7); */
	z-index:9;
	position: fixed;
	right: 0;
	bottom: 50px;
	cursor: pointer;
	display:none;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
	z-index: 5;

	border-color: transparent rgba(231,226,150,.7) transparent transparent;
    border-style: solid solid solid solid;
 
    /* è¨­å®šé‚Šæ¡†å¤§å°å¯æ‹¼æ¹Šå‡ºä»»æ„å½¢ç‹€çš„ä¸‰è§’å½¢ */
    border-width: 90px 90px 0px 0px;
 
    /* è¨­å®š widthã€height å¯æ›´å¥½ç†è§£åŽŸç† */
    height: 0px;
    width: 0px;
}

#gotop i{
	font-size: 2.5em;
	color: #324316;
	/* width: 52px;
	line-height: 52px; */
	text-align: center;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
	position: absolute;
	bottom: 5px;
    right: -80px;
}

i.fas.mobile{
	display: block;
}

i.fas.desktop{
	display: none;
}

@media all and (min-width: 769px) {
	i.fas.mobile{
		display: none;
	}

	i.fas.desktop{
		display: block;
	}

	#gotop{
		bottom: 0;
	}
}

/* ============================================================
POPUP
============================================================ */
.popup{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .7);
	display: none;
	opacity: 0;
	z-index: 15;
}

.popup-bg-close{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup-container{
	width: 90%;
	max-width: 800px;
	max-height: 70vh;
	background: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 10px;
	box-sizing: border-box;
	overflow-y: auto;
}


@media all and (min-width: 769px) {
	.popup-container{
		padding: 20px;
		max-height: 85vh;
	}
}

.popup-close{
	width: 50px;
	height: 50px;
	position: absolute;
	top: 10px;
	right: 10px;
	color: #ffffff;
	font-size: 50px;
}

.popup-close a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.pop-content{
	width: 100%;
	position: relative;
	display: none;
}

.pop-map img{
	width: 100%;
}

.size-table{
	width: 100%;
	position: relative;
}

.size-table tr td{
	border-bottom: 1px solid #324316;
	border-right: 1px solid #324316;
	width: 25%;
	padding: 0 5px;
	box-sizing: border-box;
}

.size-table tr td:nth-last-child(1){
	border-right: none;
}

.size-table tr:nth-child(2) td{
	background: rgba(50, 67, 22, .3);
}

.size-table tr td:nth-child(1){
	background: rgba(50, 67, 22, .15);
}

.size-table tr:nth-child(1) td{
	text-align: center;
	background: #324316;
	color: #ffffff;
}

.size-table td p{
	text-align: left;
	margin: 10px 0;
}

.size-table tr:nth-child(1) td p{
	color: #ffffff;
}



.pop-pic img{
	max-width: 100%;
	max-height: 80vh;
	position: relative;
	margin: 0 auto;
	left: 50%;
    transform: translate(-50%, 0);
}

/* ============================================================
INDEX POPUP ANNOUCEMENT
============================================================ */
.popup-ann5{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	/* display: none; */
	z-index: 11;
}

.popup-ann5-container{
	width: 90%;
	max-width: 800px;
	/* position: relative;
	margin: 0 auto; */
	background: #324316;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.popup-ann5-content{
	width: 100%;
	position: relative;
	margin: 0 auto;
	background: #ffffff;
}

.popup-ann5-content h2{
	width: 80%;
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	color: #324316;
	font-size: 1.5em;
    font-weight: 700;
    line-height: 1.5em;
}

.popup-ann5-content img{
	width: 100%;
	vertical-align: bottom;
}

.popup-ann2 .announcement2{
	border: 0;
	padding: 20px 0 20px 0;

}

.popup-ann2 .announcement2-pic img{
	width: auto;
    max-height: 30vh;
}



.popup-ann5-close{
	width: 45px;
	height: 45px;
	background: rgba(0, 0, 0, .8);
	color: #ffffff;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 45px;
	text-align: center;
	font-size: 2.5em;
	cursor: pointer;
}




/* ============================================================
RWD
============================================================ */
@media all and (max-width: 1440px) {
	
}

@media all and (max-width: 1366px){
	
}

@media all and (max-width: 1280px){
	
}

@media all and (max-width: 1024px) {
	
}

@media all and (max-width: 960px) {
	
}

@media screen and (orientation: portrait) {
	

}

@media all and (max-width: 769px) {
	
}

@media all and (max-width: 640px) {
	
}

@media all and (max-width: 480px) {
	
}


@media all and (max-width: 320px){
	
}

</pre></body></html>