﻿@charset "utf-8";
/* CSS Document */


/******************************

1. basic
2. header
3. footer

******************************/





/*********************************
1. basic
*********************************/

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

::-webkit-input-placeholder {
    color:    #575757;
}

:-moz-placeholder {
    color:    #575757;
    opacity:  1;
}

::-moz-placeholder {
    color:    #575757;
    opacity:  1;
}

:-ms-input-placeholder {
    color:    #575757;
}

input:focus::-webkit-input-placeholder { 
    color:transparent;
}

input:focus:-moz-placeholder { 
	color:transparent; 
}

input:focus::-moz-placeholder { 
	color:transparent;
}

input:focus:-ms-input-placeholder {
	color:transparent;
}

button:focus {
	outline:0;
}

.disabled {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

/*back to top*/
.back-to-top {
	position: fixed;
	bottom: 50px;
	right: 5%;
	background-image: url("../images/icon_backtop.png");
	background-repeat: no-repeat;
	height: 60px;
	width: 60px;
	z-index: 50;
}

/*********************************
2. header
*********************************/

/*手機版選單*/
@media only screen and (min-width: 1px) and (max-width: 991px) {
	
.header-top {
	display: none;	
}	
	
#mobile-header {
    float: left;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: #444444;
    text-align: center;
}

#mobile-header .toggle {
	float: left;
	left: 0px;
    cursor: pointer;
    border: 0px;
    background-color: #444444;
    height: 30px;
	width: 38px;
    margin-top: 10px;
    margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 10px;
    position: absolute;
	outline: none;
	background-image: url('../images/basic/toggleicon.png');
	background-size: contain;
	text-indent: -1000em; 
	top: 0;
}

.pushy-open-left #mobile-header .toggle {
	background-image: url('../images/basic/toggleicon_x.png');
}
	
#mobile-header .logo {
	display: inline-block;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    width: 200px;
    height: 50px;	
	text-decoration: none;
}

#mobile-header .logo img {
	height: 34px;
	margin: auto;
	margin-top: 8px;
}
	
.pushy {
    position: fixed;
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background: #444444;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy ul:first-child {
    margin-top: 10px;
}

.pushy.pushy-left {
    left: 0;
}

.pushy.pushy-right {
    right: 0;
}

.pushy-content {
    visibility: hidden;
}

.pushy-left {
    -webkit-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}

.pushy-open-left #menu-wrapper,
.pushy-open-left .push,
.pushy-open-left #footer-tool-wrap {
    -webkit-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

.pushy-right {
    -webkit-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

.pushy-open-right #menu-wrapper,
.pushy-open-right .push,
.pushy-open-right #footer-tool-wrap {
    -webkit-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
    visibility: visible;
}

#menu-wrapper,
#footer-tool-wrap,
.pushy,
.push {
    transition: transform 0s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
    transition: visibility 0s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.site-overlay {
    display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: fade 0s;
	animation: fade 0s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*手機版第一層選單*/
.pushy-content {
	float: left;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0px;
}

.pushy-menu {
    float: left;
	list-style: none;
    margin: 0px;
	padding: 0px;
	width: 100%;
}

.pushy-menu li {
    float: left;
    width: 100%;
	padding: 0px;
	margin: 0px;
	border-bottom: 1px solid #555555;
}

.pushy-menu li a {
    list-style: none;
    padding: 12px 0px;
    margin: 0;
    float: left;
    width: 100%;
    text-decoration: none;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	transition: all 0.2s ease-in-out;
}

.pushy-menu li a:hover, .pushy-menu li a.current {
	color: #f1b089;
}

body.pushy-open-left {
    overflow-x: hidden;
}

.arrow {
	display: none;
}	
	
}		
	
/*電腦版選單*/
@media only screen and (min-width: 992px) {
	
/*scroll*/
@keyframes DownAnimation {
  0%   { opacity:0;top:50px; }
  100% { opacity:1;top:0px; }
}
@-o-keyframes DownAnimation {
  0%   { opacity:0;top:50px; }
  100% { opacity:1;top:0px; }
}
@-moz-keyframes DownAnimation {
  0%   { opacity:0;top:50px; }
  100% { opacity:1;top:0px; }
}
@-webkit-keyframes DownAnimation {
  0%   { opacity:0;top:50px; }
  100% { opacity:1;top:0px; }
}

@keyframes UpAnimation {
  0%   { opacity:1;top:0px; }
  100% { opacity:0;top:0px; }
}
@-o-keyframes UpAnimation {
  0%   { opacity:1;top:0px; }
  100% { opacity:0;top:0px; }
}
@-moz-keyframes UpAnimation {
  0%   { opacity:1;top:0px; }
  100% { opacity:0;top:0px; }
}
@-webkit-keyframes UpAnimation {
  0%   { opacity:1;top:0px; }
  100% { opacity:0;top:0px; }
}	

#header-wrap.scrollDown {
	top: 0px;
	z-index: 10;
	position: fixed;
	display: block;	
	-webkit-animation: DownAnimation .5s;
	-moz-animation: DownAnimation .5s;
	-o-animation: DownAnimation .5s;
	animation: DownAnimation .5s;
}
	
#header-wrap.scrollUp {
	top: -100px;
	z-index: 10;
	position: fixed;
	display: block;	
	-webkit-animation: UpAnimation 1s;
	-moz-animation: UpAnimation 1s;
	-o-animation: UpAnimation 1s;
	animation: UpAnimation 1s;
}
	
#mobile-header {
 	display: none;	
}	
	
#header-wrap {
	float: left;
	display: none;	
	height: 100px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	z-index: 9999;
	background-color: #f9f9f9;
	position: relative;
	top: -100px;
}
	
#header {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
}

/*top*/
.header-top {
	float: left;
	height: 90px;
}

.header-top .logo {
	float: left;
	height: 80px;
	min-height: 80px;
	width: 215px;
	min-width: 215px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 20px;
	position: absolute;
	left: 20px;
}

.header-top .logo a {
	margin: auto;
}

/*電腦版第一層選單*/
#header-nav {
	float: left;
	width: 100%;
}

#header-nav ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

ul.pushy-menu li {
	padding: 0px;
	margin: 0px;
}

ul.pushy-menu li a {
	/*display: block;*/
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	color: #353535;
	text-align: center;
	font-weight: 600;
	transition: all 0.2s ease-in-out;
}

ul.pushy-menu li a:hover {
	color: #f1b089;
}
	
ul.pushy-menu li a.current {
	border-bottom: 2px solid #f1b089;
}
	
/*keyboard tab focus*/	
#header-nav .sub-menu {
	opacity: 0;
    pointer-events: none;
}	
	
#header-nav .parent:hover .sub-menu,
#header-nav .parent:focus .sub-menu,
#header-nav .parent.focus .sub-menu,
#header-nav .parent > a:hover .sub-menu,
#header-nav .parent > a:focus .sub-menu
#header-nav .parent.focus .sub-menu {
    opacity: 1;
	pointer-events: all;
}

}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
	
#header-nav ul {
	float: right;
}
	
ul.pushy-menu li {
	display: inline-block;
}

ul.pushy-menu li a {
	font-size: 1em;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 0px;
	margin-right: 0px;
	line-height: 60px;
	height: 60px;
}
	
}

@media only screen and (min-width: 1400px) {
	
#header-nav ul {
	width: 100%;
}
	
ul.pushy-menu li {
	display: inline-block;
}

ul.pushy-menu li a {
	font-size: 1.35em;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 5px;
	margin-right: 5px;
	line-height: 60px;
	height: 60px;
}
	
}

/*語系*/
#language {
	position: relative;
}

#language a {
	color: #767676;
}
	
#language .languageSelect {
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
	text-decoration:none;
}

#language .toggle_container {
	position: absolute;
	float: left;
	text-align: center;
	list-style-type: none;
	background-color: #FFF;
}

#language .toggle_container-link {
	float: left;
	text-align: center;
	text-decoration: none;
	width: 100%;
	line-height: 30px;
	height: 40px;
	margin: 0px;
	padding: 5px;
}

#language .current-lang {
	color: #036bcc!important;
	border-bottom: none;
}

#language i {
   display: none;
}

@media only screen and (min-width: 1px) and (max-width: 991px) {
	
#language a {
	font-size: 0.8em;
	color: #fff;
}

#language .toggle_container {
	top: 45px;
	width: 160px;
}
	
#language .toggle_container-link {
	color: #444444;
}
	
#language i {
	display: block;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
}
	
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
	
#language a {
	font-size: 0.8em;
}
	
#language .languageSelect {
	padding-top: 2px;
	padding-bottom: 2px;
	width: 130px;
	font-weight: 600;
	background-image: url("../images/header_line.jpg");
	background-position: left center;
	background-repeat: no-repeat;
}

#language .toggle_container {
	border: 1px solid #f9f9f9;
	top: 100px;
	margin: 0px;
	padding: 2px;
	width: 120px;
	left: 10px;
}
	
}

@media only screen and (min-width: 1400px) {
	
#language a {
	font-size: 1em;
}
	
#language .languageSelect {
	padding-top: 2px;
	padding-bottom: 2px;
	width: 130px;
	font-weight: 600;
	background-image: url("../images/header_line.jpg");
	background-position: left center;
	background-repeat: no-repeat;
}

#language .toggle_container {
	border: 1px solid #f9f9f9;
	top: 100px;
	margin: 0px;
	padding: 5px;
	width: 120px;
	left: 10px;
}
	
}







/*********************************
3. footer
*********************************/

#footer-wrap {
	float: left;
	margin: 0px;
	padding: 0px;
	width: 100%;
}

#footer-wrap #footer {
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#footer-wrap .footer-top {
	background-color: #444444;
}

#footer-wrap .footer-bottom {
	background-color: #5d5d5d;
}

#footer .company {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #fff;
}

#footer .social {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}

#footer .social h3 {
	float: left;
	width: 100%;
	border-bottom: 1px solid #fff;
}

#footer .social .footer-social {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: auto;
	width: 100%;
}

#footer .social .footer-social li {
	float: left;
	width: 28px;
	margin-right: 3px;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: all 0.2s ease-in-out;
}

#footer .social .footer-social li:hover {
	opacity: 0.5;
}

.lineBox {
	float: left;
	width: 100%;
	text-align: center;
}

.lineBox a {
	display: inline-block;
	width: 98px;
	transition: all 0.2s ease-in-out;
}

.lineBox a:hover {
	opacity: 0.7;
}

#footer .map {
	float: left;
	width: 100%;
	height: 380px;
	margin-top: 20px;
}

#footer .map iframe {
	float: left;
	width: 100%;
	height: 380px;
}

#footer .copyright {
	float: left;
	width: 100%;
	font-size: 0.9em;
	color: #aeadad;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

@media only screen and (min-width: 1400px) {

#footer-wrap .container {
	width:1040px;
}	
	
#footer .company {
	width: 75%;
	font-size: 1.2em;
	padding-top: 45px;
	padding-bottom: 45px;
}

#footer .social {
	width: 25%;
	font-size: 1.2em;
	padding-top: 15px;
	padding-bottom: 0px;
}	
	
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {

#footer .company {
	width: 70%;
	font-size: 1em;
	padding-top: 45px;
	padding-bottom: 45px;
}

#footer .social {
	width: 30%;
	font-size: 1em;
	padding-top: 15px;
	padding-bottom: 0px;
}
	
}

@media only screen and (min-width: 1px) and (max-width: 991px) {

#footer .company {
	width: 100%;
	font-size: 0.9em;
	padding-top: 45px;
	padding-bottom: 10px;
}

#footer .social {
	width: 100%;
	font-size: 0.9em;
	padding-top: 10px;
	padding-bottom: 30px;
}

.lineBox {
	text-align: left;
}
	
#footer .social .footer-social li {
	float: left;
	width: 35px;
	margin-right: 5px;
}
	
}

