html, body {
	overflow-x: hidden;
}
body {
	font-family: 'Roboto', 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #1a1a1a;
	font-size: 18px;
	background: linear-gradient(to right, #fff0e6, #fff0e6 95%, #fff8f3 95%, #fff8f3);
	background-size: 30% 100%;
	background-repeat: no-repeat;
	height: 100vh;
}
body.loaded {
	height: auto;
}
p {
	line-height: 1.5;
}
a {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}
a, button, input[type="submit"] {
	cursor: pointer;
}
input, select, textarea {
	font-family: 'Roboto', 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
}

/* layout */
.container {
	padding: 8em 2em 5em;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}
.container.wide {
	max-width: 1160px;
}
footer .container {
	padding: 2em 2em 1.5em;
}
.max-w9 {max-width: 920px;}
.max-w8 {max-width: 780px;}
.max-w7 {max-width: 720px;}
.max-w6 {max-width: 500px;}
.max-w3 {max-width: 300px;}

.col {
	display: inline-block;
}
.flex {
	display: flex;
}

.mx-auto {
	margin-left: auto!important;
	margin-right: auto!important;
}
.w100 {
	width: 100%;
}
.table {
	display: table;
}
.tr {
	display: table-row;
}
.td {
	display: table-cell;
}
.mt-1 {	margin-top: 0.8em; }
.mt-2 {	margin-top: 1.4em; }
.mb-1 {	margin-bottom: 0.8em; }
.mb-2 {	margin-bottom: 1.4em; }
.mb-3 {	margin-bottom: 2em; }
.mb-4 {	margin-bottom: 3em; }
.mb-5 {	margin-bottom: 4em; }
.mb-s { margin-bottom: 10px; }
.ml-1 { margin-left: 0.8em; }
.ml-2 { margin-left: 1.4em; }

.my-1 { margin-top: 0.5em; margin-bottom: 0.5em;}

.pt-1 { padding-top: 0.8em; }
.pt-2 { padding-top: 1.4em; }
.pb-4 { padding-bottom: 4em; }

/* position */
.ab-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.fixed-right {
	position: fixed;
	right: 20px;
	top: 80px;
	z-index: 90;
}
.flex-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex-space {
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-column {
	flex-direction: column;
}
/* color */
.bg-no {
	background: transparent;
}
.bg-white {
	background-color: rgba(255, 255, 255, 1);
}
.bg-lightgray {
	background-color: #fafafa;
}
.bg-gray {
	background-color: #f2f2f2;
}
.bg-black {
	background-color: #1a1a1a;
}
.bg-orange {
	background-color: #ec6c00;
}
.bg-shadow {
	-moz-box-shadow:    inset 0 0 30px rgba(0, 0, 0, 0.14);
   -webkit-box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.14);
   box-shadow:         inset 0 0 30px rgba(0, 0, 0, 0.14);
}

.white {
	color: #fff;
}
.orange {
	color: #ec6c00;
}
.gray {
	color: #4d4d4d;
}
.blackgray {
	color: #333;
}

/* text */
.t-xxlarge {
	font-size: 38px; /* 30px */
}
.t-xlarge {
	font-size: 36px; /* 30px */
}
.t-large {
	font-size: 32px; /* 26px */
}
.t-midlarge {
	font-size: 28px; /* 22px */
}
.t-mid {
	font-size: 20px; /* 18px */
}
.t-small {
	font-size: 16px; /* 16px */
}
.t-xsmall {
	font-size: 12px; /* 14px */
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-justify {
	text-align: justify;
}
.text-vert {
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.bold {
	font-weight: 700;
}
.font-w4 {
	font-weight: 400;
}
.font-light {
	font-weight: 300;
}
.lh-18 {
	line-height: 1.8;
}
.lh-13 {
	line-height: 1.3;
}
p + p {
	margin-top: 1em;
}

hr {
	border: 0;
	border-top: 1px solid #0080ae;
}
.show-sm {
	display: none;
}

.icon {
	vertical-align: text-bottom;
	margin-bottom: -2px;
	margin-right: 2px;
}
.icon-num {
	font-family: 'Roboto', 'Arial', monospace;
}
/* button */
.btn-orange-outline {
	display: inline-block;
	border: 2px solid #ec6c00;
	color: #ec6c00;
	border-radius: 50px;
	padding: 0 20px;
	height: 50px;
	min-width: 120px;
	letter-spacing: 2px;
	line-height: 50px;
	text-indent: 2px;
	margin-top: 50px;
	transition: all 0.2s ease;
}
.btn-orange-outline:hover {
	color: #fff;
	background-color: #ec6c00;
}
.btn-skip {
	display: inline-block;
	width: 100px;
	opacity: 0.15;
}
.link {
	color: #ec6c00;
	text-decoration: underline;
}
.trans-btn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 18px;
	height: 36px;
	width: 120px;
	line-height: 36px;
	display: block;
	text-align: center;
}
.top-btn {
	background-color: #ccc;
	width: 50px;
	height: 50px;
	display: block;
	padding: 27px 16px 10px;
	position: relative;
}
.top-btn::before {
	content: "";
	width: 26px;
	height: 0;
	display: block;
	border-top: 2.7px solid #fff;
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	margin: auto;
}
.top-btn::after {
	content: "";
	width: 13px;
	height: 13px;
	border: 4.5px solid #fff;
	border-right: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	display: block;
}

/* header */
header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9990;
    transition: transform 0.4s ease, max-height 0.6s ease, background 0.4s ease;
    background: rgba(255,255,255,0);
    text-align: center;
}
.navtop {
	padding: 1.2em 3em 0.6em 2em;
}

.navbar {
	margin-right: -10px;
}
.navbar li {
	display: inline-block;
	position: relative;
}
.navbar li + li {
	margin-left: 1em;
}
.navbar a {
	padding: 5px 10px;
	color: #1a1a1a;
	transition: all 0.12s ease;
	display: inline-block;
}
.navbar a:hover {
	color: #ec6c00;
}
.nav-logo {

}
.logo {
	transition: all 0.2s ease;
	display: inline-block;
	vertical-align: middle;
}
.logo img {
	height: auto;
	width: auto;
	vertical-align: middle;
	max-height: 100%;
	margin-top: -4px;
}
.logo + .logo {
	margin-left: 30px;
}
header.detachedHide {
	/*transform: translateY(-100%);*/
}
header.show {
}
header.detached {
	background: #fff;
}
header.detached.show {
}

/* navbar toggle */
.hbg-btn {
	border: 0;
	height: 50px;
	width: 50px;
	border-radius: 5px;
	vertical-align: top;
	margin-top: 7px;
	display: none;
	transition: margin 0.2s ease;
	margin-right: -15px;
	position: absolute;
	top: 8px;
	right: 2em;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background-color: #ec6c00;
	border-radius: 2px;
	position: relative;
}
.icon-hbg::before {
	position: absolute;
	top: -10px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -10px;
}

/* prev anima */
#prev-anima {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	top: 0;
	left: 0;
	background: url('../img/bg-top.jpg') no-repeat #fff;
	background-size: cover;
}
#prev-anima .container {
	padding-top: 1em;
	padding-bottom: 1em;
	height: 100%;
}
#prev-anima .container > .flex {
	height: 100%;
	justify-content: center;
	align-items: center;
}
.top-fade {
	opacity: 0;
	transition: all 0.6s ease;
}
.top-fade.show {
	opacity: 1;
}
#dec-01 {
	position: absolute;
	right: 5%;
	bottom: 5%;
	z-index: -1;
}
.icon-eden {
	font-size: 50px;
	line-height: 90px;
}

.card {
	max-width: 650px;
	padding: 30px 50px 30px;
	border-radius: 15px;
	margin: 0 auto;
}
.card .table [class^="icon-"] {
	font-size: 30px;
    line-height: 52px;
    padding: 0px 15px;
}
.table {
	margin: 10px auto 10px;
}
.tr + .tr .td {
	border-top: 1px solid #f2f2f2;
}
.td {
	vertical-align: middle;
}
.td:first-of-type {
	text-align: right;
	width: 240px;
	color: #1a1a1a;
	line-height: 1.3;
	padding-left: 20px;
}
.td:last-of-type {
	text-align: left;
	width: 240px; 
}
.prev-slogan {
	margin-top: -20px;
	margin-left: -50px;
	padding: 20px 30px 20px 30px;
	border-radius: 15px;
	width: auto;
	max-width: 830px;
}
.prev-slogan p {
	margin-top: 0;
	line-height: 1.8;
}
.btn-skip {
	position: absolute;
	right: 30px;
	top: 30px;
}
/* section */
section {
	position: relative;
}
.topsec {
	position: relative;
}
.banner-slider {
	margin-left: 20vw;
	height: 100vh;
	background-color: #ec6c00;
}
.banner-slider div {
	border-bottom-left-radius: 20px;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.banner-slider div img {
	max-width: none;
	height: 100%;
	left: -9999px;
	right: -9999px;
	margin: auto;
	position: absolute;
	transform: scale(1);
}
.loaded .banner-slider div.slick-current img {
	animation: scale 5s;
	transform: scale(1.1);
}
@keyframes scale{
    0% {
        transform: scale(1.1);
    }
    100% {
		transform: scale(1);
    }
}
.topsec::before {
	content: '';
    display: block;
    background: #f2b58c;
    opacity: 0.54;
    border-bottom-right-radius: 20px;
    height: calc(100vh + 50px);
    position: absolute;
    left: 0;
    width: 80vw;
}
.banner-text {
	position: absolute;
	padding: 2.5em 2em;
	border-radius: 10px;
	bottom: 50px;
	left: -200px;
	margin-left: 20vw;
	z-index: 1000;
	background-color: rgba(226, 113, 36, 0.8);
}
.dec-line {
	width: 2px;
    height: 166px;
    background: #fff;
    display: inline-block;
    position: absolute;
    margin-top: 80px;
    left: 1.5em;
}
.scroll-down {
	border: 2px solid #fff;
    border-radius: 50px;
    width: 45px;
    height: 70px;
    position: absolute;
    z-index: 9997;
    left: 15%;
    right: 0;
    margin: auto;
    bottom: 20px;
    transition: opacity 0.6s ease;
}
.scroll-line {
	width: 4px;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    top: 14px;
    animation: scrollDown 1.6s linear infinite;
}
.scroll-down.hide {
	opacity: 0;
}
@keyframes scrollDown {
  0% {
    top: 15px;
    height: 6px;
    opacity: 0;
  }
  20% {
	top: 20px;
	height: 8px;
    opacity: 1;
  }
  50% {
	top: 30px;
	height: 12px;
    opacity: 1;
  }
  80% {
	top: 40px;
	height: 8px;
    opacity: 1;
  }
  100% {
    top: 46px;
    height: 6px;
    opacity: 0;
  }
}
.scroll-dot {
	width: 4px;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: -1px;
}
/* title */
.title-bg {
	position: absolute;
	font-size: 70px;
	font-weight: 700;
	color: #f4d6c6;
	opacity: 0.6;
	z-index: -1;
	top: 70px;
	line-height: 1.2;
}
.title-bg.right {
	text-align: right;
	right: 0;
	color: #f7eae4;
}
#sec-2 .title-bg.right {
	top: -30px;
}
#sec-3 .title-bg {
	top: -30px;
}
.title-dec {
	position: relative;
}
.title-dec::before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	bottom: -20px;
	left: -100px;
	background: url('../img/title-dec.png') no-repeat;
	background-position: center bottom;
}
#sec-3 .title-dec {
	line-height: 1.3;
}
#sec-3 .title-dec::before {
	left: -15px;
	bottom: -5px;
	background-size: 100%;
	width: 130%;
	background-position: left bottom;
}
/* post */
.post {
	width: 100%;
	justify-content: space-between;
}
.post-img {
	display: inline-block;
	width: 44.5%;
	padding-bottom: 44.5%;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	box-shadow: 20px 20px 0px rgba(242, 181, 140, 0.36);
}
.post-img img {
	position: absolute;
	height: 100%;
	max-width: none;
	left: -9999px;
	right: -9999px;
	margin: auto;
	transition: all 0.4s ease;
}
.post-img:hover img {
	transform: scale(1.1);
}
.post-text {
	display: inline-block;
	width: 45%;
	margin-left: 10%;
	vertical-align: top;
}

.post .title-dec {
	line-height: 1.3;
	margin-top: 2em;
	display: inline-block;
}
.post .title-dec::before {
	left: -15px;
	bottom: -10px;
	background-size: 90%;
	background-position: left bottom;
}
.dec-num {
	display: inline-block;
	position: absolute;
	font-size: 45px;
	font-weight: 700;
	color: #f7eae4;
	opacity: 0.6;
	z-index: -1;
	line-height: 1.2;
}
.dec-num span::before {
	/*content: '';*/
	display: inline-block;
	width: 1em;
	height: 3px;
	background: #ec6c00;
	margin-right: 3px;
}
/* video */
.video {
	margin: 0 0.5%;
	position: relative;
}
.video .dec-num {
	left: 0;
	top: -10px;
	transform: translateY(-100%);
}
.video-link {
	width: 100%;
	padding-bottom: 150%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}
.video-link img {
	max-width: none;
	position: absolute;
	height: 100%;
	left: -9999px;
	right: -9999px;
	margin: auto;
	transition: all 0.4s ease;
}
.video h4 {
	margin-bottom: 0.2em;
}
.video:nth-of-type(3n + 1) {
	transform: translateY(70px);
}
.video:nth-of-type(3n + 1) .dec-num {
	color: #f4d6c6;
}
.video:nth-of-type(3n) {
	transform: translateY(-70px);
}
.video-link::after {
    content: '\e904';
    display: flex;
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-family: 'icomoon';
    color: rgba(255,255,255, 0.6);
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.2s ease;
}
.video-link:hover img {
	transform: scale(1.1);
}
.video-link:hover::after {
	color: rgba(236,108,0, 1);
	background: rgba(0, 0, 0, 0.7);
	width: 90px;
	height: 90px;
	font-size: 40px;
}
/* card */
.card {
	
}
/* dec-img */
#dec-03 {
	position: absolute;
	right: 100px;
	bottom: -50px;
}
#sec-3 .flex {
	align-items: flex-start;
	justify-content: center;
	max-width: 430px;
	margin: 0 auto 150px;
	position: relative;
	transform: translateX(-30px);
}
#dec-04 {
	position: absolute;
	left: 0;
	transform: translateX(-50%);
}
/* slick */
.slick-slide {
   opacity: 0;
   transition: opacity .4s ease-in-out;
}
.slick-current {
   opacity: 1;
   transition: opacity .4s ease-in-out;
}
.slick-active {
   opacity: 1;
   transition: opacity .4s ease-in-out;
}
.slick-slider {
	position: relative;
}
.slick-arrow {
	position: absolute;
	width: 50px;
    height: 85%;
	display: inline-block;
	border-right: 0;
	border-bottom: 0; 
	top: 0px;
	bottom: 0;
	margin: auto;
	background: transparent;
    z-index: 2;
    border: 0;
    color: transparent;
    transition: all 0.2s ease;
    padding: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.slick-arrow:hover {
	opacity: 1;
}
.slick-arrow.slick-prev {
	left: calc(-9% + 26px);
}
.slick-arrow.slick-prev::after {
	content: '\e903';
	display: inline-block;
	font-size: 38px;
	font-family: 'icomoon';
	text-indent: 0px;
	color: #ec6c00;
}
.slick-arrow.slick-next {
	right: calc(-9% + 26px);
}
.slick-arrow.slick-next::after {
	content: '\e904';
	display: inline-block;
	font-size: 38px;
	font-family: 'icomoon';
	text-indent: 0px;
	color: #ec6c00;
}
.slick-dots {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 2px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    content: '';
    text-align: center;
    background-color: #f1f1f1;
    right: 0;
    margin: auto;
    bottom: 0;
    opacity: 0.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background-color: #ec6c00;
    opacity: 1;
}

/* right btns */
.hideontop {
	opacity: 1;
	/*pointer-events: none;*/
	transition: all 0.6s ease;
	z-index: 9998;
}
.hideontop.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(50px);
}
.hideontop.show:hover {
	opacity: 1;
}
.btn-tag {
	width: 100px;
	height: 140px;
	background-color: #ec6c00;
	border: 2px solid #fff;
	border-radius: 10px;
	border-top-right-radius: 50px;
	color: #fff;
	font-weight: 700;
	font-size: 35px;
	padding: 40px 10px 20px;
	display: block;
	position: relative;
	line-height: 1.3;
	text-align: center;
	transition: all 0.3s ease;
}
.btn-tag span {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 24px;
}
.btn-tag:hover {
	background-color: #ec5343;
}
/*footer*/
footer {
	z-index: 1;
    position: relative;
}
footer hr {
	border-color: #ccc;
}
.social-links {
	font-size: 28px;
}
.social-links .logo {
	transform: scale(1.2);
	margin-left: 26px;
}