@charset "utf-8";
/*------整體預設架構--------------*/
	#banner {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 0;
		overflow: hidden;
	}
	#banner img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#scroll-down {
		position: absolute;
		left: 50%;
		bottom: 50px;
		color: #fff;
		transform: translateX(-50%);
		font-size: 0.8rem;
		letter-spacing: 1px;
		z-index: 2;
	}
	main{
		margin-top: 100vh;
		position: relative;
		text-align: center;
		z-index: 2;
		background-color: #faf9f7;
	}
	header img,main img,footer img{
		display: block;
	}
/*-------------wrapper------*/
	#wrapper{
		width:100%;
	}

	.block {
	    /* max-width: 1200px; */
	    height: 100%;
	    margin: 0 auto;
	    position: relative;
	}

	/* HEADER
	===================== */

	header {
	    width: 100%;
	    height: 45px;
	    margin: 0;
	    padding: 0;
	    background: transparent;
	    position: fixed;
	    top: 0;
	    z-index: 1000;
	}

	header .top_tel {
	    float: right;
	    height: 30px;
	    line-height: 30px;
	    margin-top: 57px;
	    padding-left: 30px;
	    padding-right: 10px;
	    background: url(../images/icon_tel.png) no-repeat 2px 5px;
	}

	header .top_tel a {
	    color: #9E7025;
	    font-size: 24px;
	    font-weight: bold;
	}

	div.homelogo a {
		display: block;
		height: 45px;
	    padding-top: 6px;
		box-sizing: border-box;
	}

	div.homelogo img {
	    width: auto;
	    height: auto;
	    max-width: 300px;
	    max-height: 32px;
	    margin: 0px auto;
	    vertical-align: middle;
	}
/*--------------------nav---------------------*/
	.nav {
		position: absolute;
		top: 0;
		right: 0;
		height: 45px;
	}

	.nav-toggle {
	    position: relative;
	    z-index: 1101;
	    width: 45px;
	    height: 45px;
	    cursor: pointer;
	    transition: opacity 0.5s;
	}

	.nav-toggle span {
	    position: absolute;
	    left: 50%;
	    top: 17px;
	    width: 26px;
	    height: 1px;
	    margin-left: -13px;
	    background: #666;
	    transition: background 0.3s;
	}
	.nav-toggle span:nth-child(2) { top: 23px; }
	.nav-toggle span:nth-child(3) { top: 29px; }

	.nav-toggle:hover span {
	    background: #999;
	}

	.nav.nav-open .nav-toggle {
	    opacity: 0;
	    pointer-events: none;
	}

	.menu {
	    position: fixed;
	    top: 0;
	    right: 0;
	    height: 100%;
	    z-index: 1100;
	}

	.menu-wrap {
	    position: absolute;
	    top: 0;
	    right: 0;
	    height: 100%;
	    width: 300px;
	    max-width: 85vw;
	    box-sizing: border-box;
	    background: #eeeeeee6;
	    color: #666;
	    padding: 100px 50px 50px;
	    overflow-y: auto;
	    transform: translateX(100%);
	    transition: transform 0.8s;
	}

	.nav.nav-open .menu-wrap {
	    transform: translateX(0);
	}

	.menu-wrap > ul {
	    list-style: none;
	    text-align: left;
	}

	.menu-wrap li {
	    position: relative;
	    margin: 0 0 1.6em;
	    opacity: 0;
	    transform: translateY(15px);
	    transition: opacity 0.6s, transform 0.6s;
	}

	.nav.nav-open .menu-wrap li {
	    opacity: 1;
	    transform: translateY(0);
	}

	.menu-wrap > ul > li:nth-child(1) { transition-delay: .4s; }
	.menu-wrap > ul > li:nth-child(2) { transition-delay: .6s; }
	.menu-wrap > ul > li:nth-child(3) { transition-delay: .8s; }
	.menu-wrap > ul > li:nth-child(4) { transition-delay: 1s; }
	.menu-wrap > ul > li:nth-child(5) { transition-delay: 1.2s; }
	.menu-wrap > ul > li:nth-child(6) { transition-delay: 1.4s; }
	.menu-wrap > ul > li:nth-child(7) { transition-delay: 1.6s; }
	.menu-wrap > ul > li:nth-child(8) { transition-delay: 1.8s; }
	.menu-wrap > ul > li:nth-child(9) { transition-delay: 2s; }
	.menu-wrap > ul > li:nth-child(10) { transition-delay: 2.2s; }

	.menu-wrap li a {
	    position: relative;
	    display: inline-block;
	    padding: 4px 0;
	    color: #666;
	    font-size: 16px;
	}

	.menu-wrap li a:after {
	    content: '';
	    position: absolute;
	    left: 0;
	    bottom: 0;
	    width: 0;
	    height: 1px;
	    background: #999;
	    transition: width 0.5s;
	}

	.menu-wrap li a:hover,
	.menu-wrap li.active > a {
	    color: #333;
	}

	.menu-wrap li a:hover:after,
	.menu-wrap li.active > a:after {
	    width: 100%;
	}

	/* 子選單：展開為平面清單(縮排) */
	.menu-wrap li ul {
		display: none;
	    list-style: none;
	    margin: 0.6em 0 0 1em;
	    padding: 0;
	}

	.menu-wrap li ul a {
	    font-size: 14px;
	}

	/* 有子選單：右箭頭，展開時轉為下箭頭 */
	.menu-wrap li:has(> ul) {
	    cursor: pointer;
	}

	.menu-wrap li:has(> ul)::after {
	    font-family: "Font Awesome 5 Free";
	    font-weight: 900;
	    content: "\f105";
	    position: absolute;
	    right: 0;
	    top: 4px;
	    font-size: 14px;
	    color: #999;
	    transition: transform 0.3s;
	    pointer-events: none;
	}

	.menu-wrap li.sub-open::after {
	    transform: rotate(90deg);
	}

	.menu-close {
	    position: absolute;
	    top: 40px;
	    right: 40px;
	    width: 20px;
	    height: 20px;
	    cursor: pointer;
	}

	.menu-close span {
	    position: absolute;
	    top: 50%;
	    left: 0;
	    width: 100%;
	    height: 1px;
	    background: #666;
	    transition: background 0.3s;
	}

	.menu-close span:nth-child(1) {
	    transform: rotate(45deg);
	}

	.menu-close span:nth-child(2) {
	    transform: rotate(-45deg);
	}

	.menu-close:hover span {
	    background: #333;
	}


	/**/

	/* ----- footer ----- */
	footer{
		clear: both;
		padding: 20px;
		background-color: #696056;
		color: #fff;
		z-index: 2;
    	position: relative;
	}
	footer .row > div:nth-child(n+2) {
		margin-top: 1em;
	}
	footer h5{
		padding-bottom: 15px;
	}
	footer h5:last-child{
		padding-bottom:0;
	}
	footer h6 a{
		margin-left: 20px;
		color: #fff;
	}
	footer a {
	    color: #fff;
	}
	footer a:hover, footer a:active {
        color: #ffd55b;
    }
	footer ul {
		list-style-type: none;
		margin-top: 20px;
	}
	footer li {
		margin-top: 10px;
	}
	footer div.container {
		max-width: 1000px;
		margin: 0 auto;
	}
	#copyright {
		text-align: center;
	}
	#buttonTop {
		position: fixed;
		z-index: 1000;
		right: 0;
		bottom: 90px;
		display: none;
		cursor: pointer;
		width: 36px;
		height: 36px;
		transition: background-color 0.3s ease;
		background-color: rgba(0,0,0,.2);
		border-radius: 50%;
		align-items: center;
		justify-content: center;
	}
	#buttonTop:hover{
		background-color: #f2ad48;
	}

@media (min-width:800px) {
	/* 軌道 */
	::-webkit-scrollbar {
		background: #ddd;
		width: 10px;		/* 右側上下捲軸寬 */
		height: 10px;		/* 底部左右捲軸高 */
	}
	::-webkit-scrollbar:hover {
		background: #ccc;
	}
	/* 拉桿 */
	::-webkit-scrollbar-thumb {
		background: #999;
		min-width: 30px;
		min-height: 30px;
	}
	::-webkit-scrollbar-thumb:hover {
		background: #666;
	}
	/* 內容：frameset, iframe, overflow ... */
	body *::-webkit-scrollbar {
		width: 8px;
		height: 8px;
	}
	body *::-webkit-scrollbar-thumb {
		background: #7F7F7F;
		border-radius: 4px;
	}
	body *::-webkit-scrollbar-thumb:hover {
		background: #4D4D4D;
	}
}

/*熒幕尺寸【小於】1441時頁面顯示*/
@media (max-width:1440px) {
/*------------------logo----------------------*/
	.logo {
		left: 10px;
	}
/*--------------------nav---------------------*/
	nav{
        margin-left: 100px;
	}
	nav > ul > li a{
		padding: 10px;
	}
}

/* pc 主選單是否要蓋 banner */
/*
@media (min-width:1025px) {
    body {
        padding-top: 70px;
    }
}
*/

/*熒幕尺寸【小於】1025時頁面顯示*/
@media (max-width:1024px) {
	.top {
		position: relative;
		z-index: 2000;
		height: auto;
		background-color: #969898;
	}
	.logo {
		position: relative;
		left: initial;
		top: initial;
		height: 30px;
		margin: 0 auto;
		padding: 5px 0;
	}
	.logo img {
		height: 100%;
		margin: 0 auto;
	}
	.scrollWork{
		width: 100%;
	}
	footer .up{
		padding: 50px 10px;
	}
	footer .up h4{
		padding-bottom: 20px;
	}
}

/* 260720 屏蔽，客戶不要
#shares {
    margin-bottom: 1em;
}
#shares.fixed {
    position: fixed;
    z-index: 999;
    top: 0;
}
#shares.fixed + div {
    margin-top: 53px;
}
#shares > * {
    vertical-align: middle;
}
#shares .fb-like,
#shares .fb-share {
	display: inline-block;
	width: 50px;
	height: 28px;
	background: url("../img/fb_like.png") -1px -1px no-repeat;
	cursor: pointer;
}
#shares .fb-share {
	background-position: -53px -1px;
}
#shares a {
    display: inline-block;
    height: 28px;
}
#shares a:hover {
    filter: brightness(0.8);
}
#shares a.plurk {
    line-height: 0;
}
#shares a.plurk img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 3px;
}
#shares a.google-plus {
    overflow: hidden;
}
#shares i.fa-google-plus-square {
    margin-top: -3px;
    font-size: 32px;
    color: #db4437;
    background: #ffffff;
    border-radius: 8px;
}
*/

/* contact links */

#fixed-links {
    position: fixed;
    right: 0;
    top: 41%;
    z-index: 999;
    overflow: hidden;
    width: 45px;
		max-width: 100%;
    white-space: nowrap;
    transition: .3s;
}
#fixed-links:hover {
    width: 310px;
    background-color: rgba(255,255,255,.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
#fixed-links a {
    display: block;
    height: 45px;
    font-family: arial;
	-ms-transition: .3s;
	transition: .3s;
}
/*
#fixed-links a:before {
    content: " ";
    display: inline-block;
    background: url(../img/link_icons.png) no-repeat;
    width: 45px;
    height: 45px;
    vertical-align: middle;
}
*/
#fixed-links > a > i {
    color: #fff;
    padding: 3.5px;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
}
#fixed-links > a > i:before {
    padding: 5px;
    background: #5d5d5d;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    font-size: 28px;
    color: #fff;
    width: 38px;
    box-sizing: border-box;
    vertical-align: middle;
}
#fixed-links a:hover {
    /* filter: brightness(110%); */
    background: #c97146;
    color: #fff;
}
#fixed-links > a > i.fa-facebook-f:before {
    text-align: right;
    font-size: 25px;
    padding: 8px 8px 5px 5px;
}
div#fixed-links > a > i.fab.fa-instagram.fa-lg:before {
    font-size: 30px;
    padding: 4px 5px;
}
/*
#fixed-links .fb:before {
    background-position-y: 0px;
}
#fixed-links .line:before {
    background-position-y: -45px;
}
#fixed-links .email:before {
    background-position-y: -90px;
}
#fixed-links .tel:before {
    background-position-y: -135px;
}
#fixed-links .ig:before {
    background-position-y: -180px;
}
#fixed-links .yt:before {
    background-position-y: -225px;
}
*/

.qrcode-box {
    text-align: center;
    display: inline;
}
.qrcode-box img {
    display: inline;
    width: 150px;
    max-width: 100%;
}
footer .qrcode-box img {
    width: 100px;
}
footer p {
    line-height: 1.2;
    margin: 0.5em 0;
}

/* bootstrap like */
.row {
    margin:0 -15px;
}
.row:after {
    content: ' ';
    display: table;
    clear: both;
}
.col-xs-5, .col-xs-7, .col-xs-12,
.col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-9,
.col-lg-5, .col-lg-7 {
    box-sizing: border-box;
    padding: 0 15px;
    float: left;
}
.col-xs-5 {
    width: 41.7%;
}
.col-xs-7 {
    width: 58.3%;
}
.col-xs-12 {
    width: 100%;
}
@media (min-width:554px) {
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33%;
    }
    .col-sm-5 {
        width: 41.7%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.3%;
    }
    .col-sm-8 {
        width: 75%;
    }
    footer .col-sm-3 {
        text-align: right;
    }
    footer .col-sm-8 {
        text-align: left;
    }
    footer .col-sm-8 p {
        margin-bottom: 1.5em;
    }
}
@media (min-width:992px) {
    .col-lg-5 {
        width: 41.7%;
    }
    .col-lg-7 {
        width: 58.3%;
    }
    footer .col-lg-7 p {
        margin-bottom: 0.5em;
        text-align: center;
    }
    footer .col-lg-7 p:first-child {
        margin-top: 0;
    }
    footer .col-lg-7:last-child p:last-child {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 1300px) {
	div.homelogo {
		margin-left: 10px;
	}
}
@media (max-width:991px) {
	header {
		text-align: center;
	}
    div.homelogo {
		float: none;
        box-sizing: border-box;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (min-width:768px) {
	.visible-xs {
		display: none;
	}
}
@media (max-width:767px) {
	/* 平板、手機 主選單是否要蓋 banner */
	/*
	body {
		padding-top: 38px;
	}
	*/
	header {
	    height: 38px;
	}
	.hidden-xs {
		display: none;
	}
	div.homelogo a {
	    padding-top: 4px;
		height: 38px;
	}
	div.homelogo img {
	    max-height: 28px;
	}
	.nav {
	    height: 38px;
	}
	.nav-toggle {
	    height: 38px;
	    width: 38px;
	}
	.nav-toggle span:nth-child(1) { top: 13px; }
	.nav-toggle span:nth-child(2) { top: 19px; }
	.nav-toggle span:nth-child(3) { top: 25px; }
}


/** 懶人包 feature **/
a.feature-banner {
    display: block;
	margin-top: 20px;
}
a.feature-banner img,
img.feature-banner {
    width: 100%;
}
#feature-back {
    position: fixed;
    top: 0;
    left: 0;
    padding: 9px;
    color: white;
    background: none;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 1001;
    transition: .3s;
}
#feature-back:hover {
    color: orange;
}
#feature-back.open {
    display: block;
}
section.feature-catalog,
section.feature-detail {
    top: 45px;
    width: 100%;
    position: absolute;
    background-color: #eee;
	display: none;
    transition: .3s;
}
section.feature-catalog {
    z-index: 998;
}
section.feature-detail {
    z-index: 999;
}
section.feature-catalog.open,
section.feature-detail.open {
    pointer-events: initial;
}
section.feature-catalog ul,
section.feature-detail ul {
    padding: 0;
	list-style: none;
}
section.feature-catalog ul {
    margin: 10px 0 0 0;
    display: flex;
}
section.feature-catalog li {
    margin: 30px 3%;
}
section.feature-catalog li+li {
    margin-left: 0;
}
section.feature-catalog img {
    width: 100%;
}
section.feature-catalog li img {
	/* 客戶自己圖片會上圓角白底 80px */
    border-radius: 80px;
    box-shadow: 20px 20px 20px rgba(0,0,0,.2);
}
section.feature-catalog p {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 24px;
    color: #fff;
}
section.feature-detail ul {
    margin: 0;
}
section.feature-detail li {
    margin: 0;
}
section.feature-detail img {
    width: 100%;
}
@media screen and (max-width: 1350px) {
    section.feature-catalog li img {
        box-shadow: 15px 15px 15px rgba(0,0,0,.2);
    }
}
@media screen and (max-width:991px) {
    section.feature-catalog li img {
        border-radius: 60px;
    }
}
@media screen and (max-width: 767px) {
    section.feature-catalog,
    section.feature-detail {
        top: 38px;
    }
	section.feature-catalog li {
		margin: 20px 3%;
	}
    section.feature-catalog li img {
        border-radius: 50px;
        box-shadow: 10px 10px 10px rgba(0,0,0,.2);
    }
}
@media screen and (max-width: 575px) {
    section.feature-catalog li img {
        border-radius: 35px;
    }
}
