@import url(https://fonts.googleapis.com/css?family=Alegreya);
@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:400,300,100);

@charset "UTF-8";
/* Variable */
/* responsive */
/* setting */
.test_content {
  width: 1200px;
  margin: 0 auto;
}

::selection {
  background: #ffba00;
  color: black;
}

::-moz-selection {
  background: #ffba00;
  color: black;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #666;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #666;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #666;
}
:-moz-placeholder { /* Firefox 18- */
  color: #666;
}

body {  
  font-family:"微軟正黑體", Arial, "Helvetica Neue", Helvetica, sans-serif, \5FAE\8EDF\6B63\9ED1\9AD4;
  width: 100%;
  height: 100%;
  background: url(../image/primary/bg.jpg) top center no-repeat;
  background-color:#FFF;
}

a {
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
a:hover {
  color: #ffba00;
}
a:active {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

input {
  max-width: 100%;
}

textarea {
  max-width: 100%;
}

.fit_img {
  position: relative;
  overflow: hidden;
}

.main_wrapper {
  width: 100%;
  min-height: 100%;
}

.a-555 {
  color: #555;
}
.a-555:hover {
  color: #ffba00;
}

.a-blue {
  color: #00a0e8;
}
.a-blue:hover {
  color: #ffba00;
}

.main_text {
  width: 100%;
  float: left;
  font-size: 1em;
  color: #333;
  line-height: 1.6em;
  margin-bottom: 40px;
}
.main_text textarea {
  width: 100%;
}

.btn_wrapper {
  width: 100%;
  float: left;
  text-align: center;
}

.wrapper {
  width: 100%;
}

.wrapper-float {
  width: 100%;
  float: left;
}

.ffleft {
  float: left;
}

.ffright {
  float: right;
}

.loading_icon {
  width: 100%;
  float: left;
  text-align: center;
}

.bg_wrapper {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.animate_holder {
  visibility: hidden;
}

.show-xxs {
  display: none;
}
@media (max-width: 480px) {
  .show-xxs {
    display: block;
  }
}

.hide-xxs {
  display: block;
}
@media (max-width: 480px) {
  .hide-xxs {
    display: none;
  }
}

/*common class and variable for this project */
.container {
  max-width: 950px;
  padding:0;
}

a.colored {
  color: #deb866 !important;
}

.form_input {
  width: 100%;
  padding: 15px 10px;
  border: none;
  border-bottom: solid 1px #ccc;
  font-size: 1.2em;
  margin-bottom: 20px;
  outline: none;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.form_input:focus {
  padding-bottom: 13px;
  border-bottom: solid 3px #deb866;
}

.form_btn {
  width: 100%;
  margin-top: 40px;
}
.form_btn a {
  width: calc(50% - 5px);
  float: left;
  padding: 15px 0;
  font-size: 1.2em;
  background: #55a5a6;
  color: #fff;
  text-align: center;
}
.form_btn a:hover {
  color: #fff;
  text-decoration: none;
}
.form_btn a:first-child {
  background: #3c4155;
  margin-right: 10px;
}

@-moz-keyframes loading {
  0% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -moz-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -moz-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -moz-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes loading {
  0% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -moz-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -moz-transform: rotate3d(0, 0, 1, 180deg);
    -ms-transform: rotate3d(0, 0, 1, 180deg);
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -moz-transform: rotate3d(0, 0, 1, 270deg);
    -ms-transform: rotate3d(0, 0, 1, 270deg);
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 360deg);
    -ms-transform: rotate3d(0, 0, 1, 360deg);
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.wuwow_loading {
  width: 100px;
  height: 100px;
  position: relative;
}
.wuwow_loading img {
  width: 100%;
  height: 100%;
  position: relative;
  -moz-animation-name: loading;
  -webkit-animation-name: loading;
  animation-name: loading;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* primary */
header {
  width: 100%;
  float: left;
  height: 90px;
  padding:0;
  color: #333;
  background: #fff;
  position: fixed;
  z-index: 97;
  border-top:6px solid #7D6751;
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  header {
    height: auto;
    padding: 0;
  }
}
@media (max-width: 480px) {
  header .container {
    padding: 0;
  }
}
header .header_logo {
  float: left;
  color: #deb866;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
}
header .header_info {
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
header .header_info .top_menu{
	text-align:center;
	padding:0;
	margin:0;
}
header .header_info .top_menu li{
	border-top:6px solid #7D6651;
	list-style:none;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	display:inline-block;
	color:#7D6651;	
	margin-top:-6px;
}
header .header_info .top_menu li:hover{
	border-top:6px solid #FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

header .header_info .top_menu li a{
	color:#7D6651;	
	border-right:1px solid #EAE4DE;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	padding:0px 20px;
	margin-top:30px;
	display:block;
}
header .header_info .top_menu li a:hover{
	color:#FF6600;
	border-right:1px solid #EAE4DE;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	text-decoration:none;
	padding:0px 20px;
	margin-top:30px;

}
header .header_info .top_menu li:last-child a{
	border-right:0px solid #EAE4DE;
}

header .header_info .top_share{
	display:inline;
	float:right;
	margin-top:-20px;
}
header .header_info .top_share li{
	list-style:none;
	display:inline-block;
	padding-left:22px;
}
header .header_info .top_share li:nth-child(1) a{
	background:url(../image/primary/share_fb_1.svg) center no-repeat;
	width:6px;
	height:14px;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	display:block;
}
header .header_info .top_share li:nth-child(1) a:hover{
	background:url(../image/primary/share_fb_2.svg) center no-repeat;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
header .header_info .top_share li:nth-child(2) a{
	background:url(../image/primary/share_tw_1.svg) center no-repeat;
	width:14px;
	height:11px;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	display:block;
}
header .header_info .top_share li:nth-child(2) a:hover{
	background:url(../image/primary/share_tw_2.svg) center no-repeat;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
header .header_info .top_share li:nth-child(3) a{
	background:url(../image/primary/share_go_1.svg) center no-repeat;
	width:14px;
	height:14px;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
	display:block;
}
header .header_info .top_share li:nth-child(3) a:hover{
	background:url(../image/primary/share_go_2.svg) center no-repeat;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

header .header_info .home_btn{
	width:37px;
	height:34px;
	float:left;
}
header .header_info .home_btn a{
	background:url(../image/primary/icon_home_1.svg) top center no-repeat;
	background-size: cover;
	width:19px;
	height:16px;
	display:block;
	margin-top:32px;
}
header .header_info .home_btn a:hover{
	background:url(../image/primary/icon_home_2.svg) top center no-repeat;
	background-size: cover;
}

@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  header .header_info {
    width: 100%;
    padding: 0 10px;
    height: auto;
    max-height: 0;
    overflow: hidden;
    margin: 0;
  }
}
header .header_info.on {
  max-height: 300px;
}
header .header_info .top_menu a {
  color: #555;
}
header .get_trial {
  margin-left: 10px;
}
header .go_home {
  margin-right: 10px;
}
header .co_line {
  padding: 0 10px;
}
header .mobile_menu {
  width: 100%;
  float: left;
  background: #fff;
  display: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  header .mobile_menu {
    display: block;
  }
}
header .mobile_menu li {
  width: 100%;
  padding: 10px 20px;
  margin: 0;
  float: left;
  list-style: none;
  text-align: center;
}
header .mobile_btn {
  display: none;
  float: right;
  color: #555;
  font-size: 1.1em;
  text-decoration: none;
  margin: 11px 10px 0 0;
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  header .mobile_btn {
    display: block;
  }
}
header .mobile_btn .fa-bars {
  display: inline-block;
}
header .mobile_btn .fa-times {
  display: none;
}
header .mobile_btn.on .fa-bars {
  display: none;
}
header .mobile_btn.on .fa-times {
  display: inline-block;
}

.KV_content {
  width: 100%;
  float: left;
  padding:0 0 130px 0;
  margin-top: 90px;
}

.KV_content .kv_man {
  width: 50%;
  max-width:726px;
  position: absolute;
  left:-8%;
  z-index: 3;
}
.KV_content .kv_slogan {
  width: 50%;
  float: right;
  margin-top:5%;
  max-width:381px;
  text-align: right;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  margin-left: 50%;
  padding-bottom:10px;
}
.KV_content .kv_slogan h3{
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:26px;
	color:#533126;
	margin-top:20px;
	line-height:26px;
	font-weight:bolder;
	display:inline-block;
	padding:10px;
	letter-spacing:2px;
	text-transform: uppercase;
	border-bottom:1px solid rgba(125, 102, 81, 0.3);
	border-top:1px solid rgba(125, 102, 81, 0.3);
}
.KV_content .kv_slogan h3 span{
	color:#FF6600;
}
.KV_content .kv_slogan p{
	margin-top:10px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:14px;
	color:#7D6651;
	line-height:24px;
}
.KV_content .kv_slogan .lm_btn{
	float:right;
	margin-top:20px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:14px;
	color:#FFF;
	width:178px;
	text-align:center;
	background-color:#543127;
	padding:10px 0;
	font-weight:100;
}
.KV_content .kv_slogan .lm_btn img{
	vertical-align:middle;
}
.KV_content .kv_slogan .lm_btn a{
	color:#FFF;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.KV_content .kv_slogan .lm_btn:hover{
	background-color:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

.page_content {
  width: 100%;
  float: left;
  padding:0 0 130px 0;
  margin-top: 90px;
  background:url(../image/primary/page_bg.png) top center no-repeat;
}

.page_content .page_slogan{
	margin:0 auto;
	text-align:center;
	padding:50px 0;
}
.page_content .p_area{
	width:90%;
	text-align:center;
	margin:0 auto;
	padding:0;
}
.st-form{
	padding:0;
	margin:0;
}
.st-form > li{
	width: 100%;
    margin: 2.5rem 0;
	list-style:none;
}
.st-form > li .ps{
	padding:20px 0;
	font-size:14px;
	color:#999;
}
.st-form > li .ps span{
	color:#FF6600;
}
.st-form > li:last-child{
	padding:0 50px;
}
.st-form > li:before, .st-form > li:after{
	content: "";
    display: table;
}
.st-form .column{
	float: left;
    width: 48%;
}
.st-form .column:first-child {
    margin-right: 4%;
}
.st-form .column .tit, .st-form .column input[type="text"] {
    text-align: left;
}
.st-form .tit {
    font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #523126;
	font-size:18px;
    padding-bottom: 1rem;
	text-align:left;
}
.st-form input[type="text"], .st-form textarea, .st-form input[type="password"] {
    width: 100%;
    margin: 0;
    padding: 0.8rem 1rem;
	border:0;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	background:#d2c5b2;
    color: #333;
}

.st-form .in_code input[type="text"]{
    width: 30%;
    margin: 20px 0;
    padding: 0.8rem 1rem;
	border:0;
	font-size:16px;
	text-align:center;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	background:#FFF;
	border-bottom:3px solid #533126;
    color: #333;
}
.st-form label span {
    color: #333;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.st-form label:nth-child(2) {
    margin-right: 1rem;
}
input[type="radio" i] {
    -webkit-appearance: radio;
    box-sizing: border-box;
	text-align:left;
}
input[type="radio" i], input[type="checkbox" i] {
    background-color: initial;
    margin: 3px 0.5ex;
    padding: initial;
    border: initial;
}
label {
    margin: 5px;
}
.st-form .lab_area{
	float:left;
	text-align:left;
}

.select-box {
    position: relative;
    cursor: pointer;
}
.select-box > div {
    padding-left: 15px;
    background-repeat: no-repeat;
    background-position: right center;
}
.select-box ul {
    position: absolute;
    z-index: 998;
    width: 100%;
    overflow: hidden;
    background: #FAE9E4;
    right: 0px;
    top: 40px;
    border: 0px solid #ccc;
	padding-bottom:20px;
    display: none;
}
.select-box ul li {
    padding: 1px 0px;
	list-style:none;
	text-align:left;
	margin:0;
}
.st-form .select-box {
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    background: #d2c5b2;
    border: 0;
    color: #333;
	text-align:left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.st-form .select-box > div {
    margin-right: 1rem;
    background:url(../image/primary/arrow-2.png) 98% no-repeat;
}
.select-box > div:hover, .select-box ul li:hover {
    color: #FF6600;
}

.st-form > li:after{ 
	clear:both;
}
.page_content h1{
	font-size:46px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:0 0 5px 0;
	color:#523126;
}
.page_content h1 span{
	color:#FF6600;
}
.page_content h2{
	font-size:21px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:0 0 10px 0;
	color:#523126;
	line-height:34px;
	margin:0;
}
.page_content h3{
	font-size:18px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:0 0 10px 0;
	line-height:34px;
	color:#7D6651;
	width:64%;
	margin-left:18%;
}
.page_content h4{
	font-size:18px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:10px 0 40px 0;
	color:#7D6651;
}
.page_content h5{
	font-size:32px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:0 0 30px 0;
	color:#523126;
	margin:0;
}

.page_content p{
	font-size:14px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height:30px;
	color:#333;
}
.page_content p span{
	font-size:16px;
	font-weight:bold;
}

.center-btn {
    width: 100%;
    text-align: center;
}
.center-btn .btn {
    display: inline-block;
}

.btn {
    font-size: 14px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.btn .txt {
    display: block;
    margin-top: 0.5rem;
    font-size:0.9rem;
}
.btn-bigcircle {
    font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    display: inline-block;
    width: 250px;
    color: #fff;
    background: #CCC;
    margin: 0 0.1rem;
	padding:13px 0;
}
.btn-bigcircle .fa {
    margin-top: 2.2rem;
}
.btn-bigcircle .txt {
    margin-top: 0.2rem;
    display: inline-block;
}
.btn-bigcircle:hover, .btn-bigcircle.active {
    color: #fff;
    background: #FF6600;
}


input[type="checkbox"] + label span:after, input[type="radio"] + label span:after {
    height: 16px;
    margin-top: -7px;
    margin-left: 1px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1; }


.bar{
	width:100%;
	text-align:center;
	margin:0 auto;
	padding:0;
}
.bar .bar_ul .bar_li{
	list-style:none;
	display:inline-block; 
	padding:4px 10px 4px 0;
	font-size:21px;
	color:#7D6651;
	margin:0;
}
.bar .bar_ul .bar_li:after{
	content:'';
	padding:0 0 0 16px;
	border-right:1px solid #C7BDB9;
	margin:0;
}
.bar .bar_ul .bar_li:last-child:after{
	content:'';
	border-right:0px;
}
.bar .bar_ul .bar_li.b_active{
	color:#523126;
}
.grid_content{
	width:100%;
	box-sizing:border-box;
	padding:10px 0 0 0;
}
.grid_content ul{
	padding:0;
	margin:0;
}
.grid_content ul li{
	list-style:none;
	display:inline-block;
	background:#F8F3EF;
	padding:30px;
	margin:24px 2% 0 0;
	box-sizing:border-box;
	width:32%;
}
.grid_content ul li:nth-child(3n){
	margin-right:0;
}
.grid_content ul li .slider__item img{
	width:100%;
}

.grid_content p{
	color:#7D6651;
	font-size:14px;
	line-height:21px;
	padding:0;
	margin:0;
}
.grid_content p span{
	color:#523126;
	font-weight:bolder;
}
.grid_content h3{
	font-size:18px;
	color:#523126;
	line-height:24px;
	width:100%;
	margin:0 auto;
	padding:3px 0 8px 0;
}
.grid_content h1{
	font-size:32px;
	color:#523126;
	line-height:normal;
	text-align:center;
	width:100%;
	margin:0 auto;
	padding:10px 0 8px 0;
}
.grid_content h1 span{
	color:#FF6600;
}
.grid_content .m_btn{
	color:#FFF;
	font-size:13px;
	width: 100%;
	font-family: "微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	background:#7D6751;
	padding:8px 0;
	text-align:center;
	margin:10px 0;
}
.grid_content .m_btn a{
	color:#FFF;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.grid_content .m_btn:hover{
	color:#FFF;
	background:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.grid_content .m_btn2{
	color:#FFF;
	font-size:16px;
	width: 100%;
	font-family: "微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	background:#7D6751;
	padding:14px 0;
	text-align:center;
	margin:0;
}
.grid_content .m_btn2 a{
	color:#FFF;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.grid_content .m_btn2:hover{
	color:#FFF;
	background:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.grid_content .m_btn2 img{
	vertical-align:middle;
}

.page_content .lm_btn{
	margin-top:20px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:13px;
	color:#FFF;
	width:250px;
	margin:30px auto 70px auto;
	text-align:center;
	background-color:#543127;
	padding:10px 0;
	font-weight:100;
}
.page_content .lm_btn img{
	vertical-align:middle;
}
.page_content .lm_btn a{
	color:#FFF;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.page_content .lm_btn:hover{
	background-color:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.grid_content .slider_movie{
	width:100%;
	padding:0;
	margin:0;
}
.grid_content .slider_movie img{
	width:100%;
}

.grid_content .slider_movie iframe{
	width:100%;
	height:450px;
}

.page_content .b_vote{
	width:100%;
	padding:50px 0;
	margin:0 auto;
	text-align:center;
	border-top:6px solid #543127;
}

.event_p{
	margin:30px 30px 60px 30px;
	padding:0;
}
.event_p li{
	width:25%;
	margin:0;
	padding:0;
	display:inline-block;
	list-style:none;
}
.event_p li div{
	font-size:36px;
	height:161px;
	line-height:161px;
	font-family: 'Josefin Slab', serif;
	font-weight:400;
	color:#523126;
}
.event_p li:nth-child(1) div{
	background:url(../image/primary/event-pic-1.png) center center no-repeat;
	background-size: contain;
}
.event_p li:nth-child(2) div{
	background:url(../image/primary/event-pic-2.png) center center no-repeat;
	background-size: contain;
}

.event_p li:nth-child(3) div{
	background:url(../image/primary/event-pic-3.png) center center no-repeat;
	background-size: contain;
}
.event_p li h2{ 
	padding:20px 0 0 0;
	font-size:18px;
}

.event_form{
	padding:10px 0 0 0;
}
.event_form:after{
	content:'';
	clear:both;
	display:block;
	padding:0 0 60px 0;
}
.event_form .event_table .event_t_left{
	border-top:5px solid #543127;
}
.event_form .event_table .event_t_right{
	border-top:5px solid #8F7871;
}
.event_form .event_table div:nth-child(1){
	padding:12px 30px;
	border-bottom:1px solid #DCD5D2;
	margin:0 1% 0 0;
	text-align:left;
	float:left;
	width:35%;
}
.event_form .event_table div:nth-child(2){
	padding:12px 30px;
	border-bottom:1px solid #DCD5D2;
	margin:0;
	float:left;
	text-align:left;
	width:64%;
}
.event_form .event_table div:after{
	content:'';
	display:block;
	clear:both;
}


.event_form .event_table2 div:nth-child(1){
	padding:12px 30px;
	border-bottom:1px solid #DCD5D2;
	margin:0 1px 0 0;
	float:left;
	width:32%;
}
.event_form .event_table2 div:nth-child(2){
	padding:12px 30px;
	border-bottom:1px solid #DCD5D2;
	margin:0 1px 0 0;
	float:left;
	width:32%;
}
.event_form .event_table2 div:nth-child(3){
	padding:12px 30px;
	border-bottom:1px solid #DCD5D2;
	margin:0;
	float:left;
	width:35.5%;
}
.event_form .event_table2 .event_t_left{
	border-bottom:5px solid #543127 !important;
}
.event_form .event_table2 .event_t_right{
	border-bottom:5px solid #8F7871 !important;
}
.event_form .event_table2 div:after{
	content:'';
	display:block;
	clear:both;
}
.bg_gray01{
	background:#f5f5f5;
}
.form_h{
	height:90px;
	vertical-align:middle;
}
.form_h:nth-child(1){
	height:90px;
	line-height:66px;
	vertical-align:middle;
}
.form_h:nth-child(2){
	height:90px;
	line-height:66px;
	vertical-align:middle;
}
.form_h:nth-child(3){
	text-align:left;
}



#news_box{ background:url(../img/index_news_bg.jpg)top center no-repeat; background-size:cover; min-height:1093px;}
.news_nav{ position:relative; margin:0 auto; max-width:960px; text-align:center; padding:50px 0;}
.news_nav h1{ font-size:46px; color:#FFF; font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif, "微軟正黑體";}
.news_nav h1 span{ color:#FFCCFF;}
.news_nav h3{ color:#FFF; font-size:18px; padding-bottom:50px;}
  .news_nav .upderline {
    margin: 32px auto 59px;
    font-family: "Source Sans Pro", "微軟正黑體";
    font-size: 19px; }
    .news_nav .upderline li {
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1; }
      .news_nav .upderline li a {
        color: #666; }
      .news_nav .upderline li:after {
        display: none; }
      .news_nav .upderline li.active, .news_nav .upderline li:hover {
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1; }
        .news_nav .upderline li.active a, .news_nav .upderline li:hover a {
          color: #000;
          filter: alpha(opacity=100);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1; }
.p_area #masonry .item {
    margin:0 2% 2% 0;
    box-sizing: border-box;
    padding: 25px;
	background:#F6F6F6;
    width: 31.9%; }
.p_area #masonry .item:nth-child(3n){
	margin-right:0;
}
.p_area #masonry .item .img {
      overflow: hidden;
      display: block;
      margin-top: 25px;
      width: 100%;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
.p_area #masonry .item .img img {
        width: 100%;
        float: left; }
.p_area #masonry .item .img:hover {
        filter: alpha(opacity=70);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
        -moz-opacity: 0.7;
        -khtml-opacity: 0.7;
        opacity: 0.7; }
.p_area #masonry .item .txt {
      text-align: center; }
.p_area #masonry .item .txt span {
        font-family: "Lusitana", "微軟正黑體";
        font-size: 14px;
        color: #666;
		display:block;
		padding-bottom:25px;
        line-height: 21px; }
.p_area #masonry .item .txt h2 {
        font-family: "微軟正黑體";
        margin-top: 5px; }
.p_area #masonry .item .txt h2 a {
          -moz-transition: all 0.5s ease-in-out;
          -o-transition: all 0.5s ease-in-out;
          -webkit-transition: all 0.5s ease-in-out;
          -ms-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          color: #000;
		  text-decoration:none;
          font-size: 18px;
		  
          line-height: 24px; }
.p_area #masonry .item .txt h2 a:hover {
            filter: alpha(opacity=70);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
            -moz-opacity: 0.7;
            -khtml-opacity: 0.7;
            opacity: 0.7; }
.p_area #masonry .item .txt p {
        margin: 10px auto;
        font-size: 14px;
        color: #666;
        line-height: 21px; }
.p_area #masonry .item .txt p a {
          -moz-transition: all 0.5s ease-in-out;
          -o-transition: all 0.5s ease-in-out;
          -webkit-transition: all 0.5s ease-in-out;
          -ms-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          color: #666;
          font-size: 14px;
		  text-decoration:none;
          line-height: 21px; }
.p_area #masonry .item .txt p a:hover {
            filter: alpha(opacity=70);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
            -moz-opacity: 0.7;
            -khtml-opacity: 0.7;
            opacity: 0.7; }
.p_area #masonry .item .txt .more {
        margin-top: 40px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        font-size: 14px;
        color: #999; }
        .news_nav #masonry .item .txt .more:before, .news_nav #masonry .item .txt .more:after {
          color: #9D9D9D;
          font-size: 14px; }
        .news_nav #masonry .item .txt .more:hover {
          color: #000; }
.news_nav .more {
  font-size: 14px;
  color: #666;
  display: block;
  width: 300px;
  margin: 40px auto 0;
  text-align: center;
  font-family: "Source Sans Pro", "微軟正黑體"; }
.news_nav .more a {
	border:1px solid #F0F0F0;
	font-size:14px;
	color: #666;
	display: block;
	width:300px;
	text-align:center;
	padding:14px 0;
	font-family: "Source Sans Pro", "微軟正黑體";
	margin:40px auto 0;
	-moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news_nav .more a:hover {
	border:1px solid #CCC;
	color: #333;
	background:#F0F0F0;
	-moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.news_d_img{ padding:25px; background:#F8F8F8; margin:0 8%;}
.news_d_img a {
          -moz-transition: all 0.5s ease-in-out;
          -o-transition: all 0.5s ease-in-out;
          -webkit-transition: all 0.5s ease-in-out;
          -ms-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
}
.news_d_img a:hover {
            filter: alpha(opacity=70);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
            -moz-opacity: 0.7;
            -khtml-opacity: 0.7;
            opacity: 0.7; }
.news_d_img img{ border:0; width:100%;}

@media (min-width: 992px) and (max-width: 1199px) {
  .KV_content {
    height: 768px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .KV_content {
    height: 648px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .KV_content {
    height: 578px;
    margin-top: 45px;
  }
  .grid_content ul li{
	  width:49%;
}
  .grid_content ul li:nth-child(3n){
	margin-right:2%;
}
  .grid_content ul li:nth-child(2n){
	margin-right:0;
}
}
@media (max-width: 480px) {
  .KV_content {
    height: 388px;
    background: url(../image/primary/KV_bg_m.jpg) top center;
    background-size: cover;
    margin-top: 45px;
  }
  .grid_content ul li{
     width:100%;
}
}
.KV_content .container {
  position: relative;
  padding: 0;
}

.KV_content .kv_scroll {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20%;
  color: #fff;
  font-size: 1.3em;
  line-height: 1.6em;
  text-decoration: none;
}
@media (min-width: 481px) and (max-width: 767px) {
  .KV_content .kv_scroll {
    font-size: 1.1em;
  }
}
@media (max-width: 480px) {
  .KV_content .kv_scroll {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .KV_content .kv_scroll img {
    width: 30px;
    margin-top: 10px;
  }
}

.sub_slogan {
  width: 100%;
  float: left;
  background: #EDE9E6;
}
.sub_slogan .ad_area{
	padding:0;
	margin:0;
	margin-top:-72px;
}
.sub_slogan .ad_area li{
	list-style:none;
	display:inline-block;
	margin:0;
	padding:0;
	border-right:1px solid rgba(255, 255, 255, 0);
}
.sub_slogan .ad_area li:last-child{
	border-right:0px solid rgba(255, 255, 255, 0);
}
.sub_slogan .ad_area li img{ 
	width:100%;
}
.sub_slogan .ad_area:after{ content:''; clear:both; display:block;}
.sub_slogan .ad_area2{
	padding:40px 0;
	margin:0;
}
.sub_slogan .ad_area2 li{
	list-style:none;
	display:inline-block;
	margin:0;
	padding:20px;
	height:210px;
	border-right:1px solid rgba(0, 0, 0, 0.1);
}
.sub_slogan .ad_area2 li:nth-child(2){
	background:url(../image/primary/ad2_bg2.png) 95% 10% no-repeat;
}
.sub_slogan .ad_area2 li:last-child{
	border-right:0px solid rgba(0, 0, 0, 0);
	background:url(../image/primary/ad2_bg3.png) 100% 50% no-repeat;
}
.sub_slogan .ad_area2 h2{
	color:#7D6651;
	font-size:21px;
	font-family: 'Josefin Slab', serif;
	padding:0 0 5px 0;
	margin:0;
	font-weight:100;
}
.sub_slogan .ad_area2 h3{
	color:#39190B;
	font-size:18px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:0 0 30px 0;
	margin:0;
}
.sub_slogan .ad_area2 h3 span{
	color:#FF6600;
}
.sub_slogan .ad_area2 p{
	color:#666;
	width:60%;
	font-size:14px;
	font-family: "微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	line-height:21px;
	padding:0;
	margin:0;
}
.sub_slogan .ad_area2 li:first-child p{
	width:100%;
}
.sub_slogan .ad_area2 li:first-child p span{
	display:block;
	width:92px;
	padding:4px 0;
	text-align:center;
	background:#D7CFC8;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
	margin-bottom:10px;
}
.sub_slogan .ad_area2 li p a{
	color:#666;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.sub_slogan .ad_area2 li p a:hover{
	color:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.container-fluid{ padding:0;}
.carousel-control.left{ top:-59px; left:210px; background-image:none;}
.carousel-control.right{ top:-59px; right:-5px; background-image:none;}
.carousel-control{ color:#39190B; opacity:1; text-shadow:none; font-size:24px;}
.carousel-control:hover, .carousel-control:focus{ color:#FF6600;}
.sub_slogan .ad_area2 .m_btn{
	color:#FFF;
	font-size:13px;
	width: 92px;
	font-family: "微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	background:#7D6751;
	padding:6px 0;
	text-align:center;
	margin-top:20px;
}
.sub_slogan .ad_area2 .m_btn a{
	color:#FFF;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.sub_slogan .ad_area2 .m_btn:hover{
	color:#FFF;
	background:#FF6600;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.sub_slogan .ad_area2:after{ content:''; clear:both; display:block;}

@media (min-width: 481px) and (max-width: 767px) {
  .sub_slogan h3 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .sub_slogan h3 {
    font-size: 1.6em;
  }
}
.sub_slogan .sub_slogan_info {
  font-size: 1.4em;
}
@media (max-width: 480px) {
  .sub_slogan .sub_slogan_info {
    font-size: 1.2em;
  }
}

.sub_answer {
  width: 100%;
  float: left;
}
.sub_answer .sub_answer_img {
  float: left;
  height: 460px;
  background: url(../image/primary/sub_answer_img.png) left top;
  background-size: cover;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sub_answer .sub_answer_img {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .sub_answer .sub_answer_img {
    height: 320px;
  }
}
.sub_answer .sub_answer_info {
  float: left;
  text-align: center;
  color: #333;
}
.sub_answer .sub_answer_info .answer_info_content {
  float: right;
  padding: 100px 60px 0 0;
  line-height: 1.6em;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sub_answer .sub_answer_info .answer_info_content {
    width: 100%;
    padding: 80px 0px 0 0;
  }
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  .sub_answer .sub_answer_info .answer_info_content {
    width: 100%;
    padding: 70px 0px 70px 0;
  }
}
.sub_answer .sub_answer_info .answer_info_content h3 {
  font-size: 2.5em;
  font-weight: bold;
}
@media (max-width: 480px) {
  .sub_answer .sub_answer_info .answer_info_content h3 {
    font-size: 1.6em;
  }
}
.sub_answer .sub_answer_info .answer_info_content h4 {
  font-size: 1.3em;
}

.feature {
  width: 100%;
  float: left;
  padding: 120px 0 40px 0;
  background: url(../image/primary/feature_bg.png) top center;
  background-size: cover;
  text-align: center;
  color: #333;
  font-size: 1.2em;
  line-height: 1.6em;
}
.feature div {
  padding-bottom: 60px;
}
.feature img {
  margin-bottom: 40px;
}

.query {
  width: 100%;
  float: left;
  background: url(../image/primary/form_bg.jpg) bottom center;
  background-size: cover;
}
.query .query_form {
  position: relative;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff;
  max-width: 100%;
  width: 800px;
  top: -40px;
  margin-bottom: -40px;
  color: #333;
}
@media (min-width: 481px) and (max-width: 767px) {
  .query .query_form {
    width: 560px;
  }
}
.query .query_form table {
  width: 410px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .query .query_form table {
    width: auto;
  }
}
.query .query_form h4 {
  font-size: 3em;
  font-weight: bold;
  margin: 0 0 20px 0;
}
@media (min-width: 481px) and (max-width: 767px) {
  .query .query_form h4 {
    font-size: 2.8em;
  }
}
@media (max-width: 480px) {
  .query .query_form h4 {
    font-size: 1.8em;
  }
}
.query .query_form .query_info {
  font-size: 1.4em;
  margin-bottom: 80px;
  line-height: 1.6em;
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  .query .query_form .query_info {
    font-size: 1.2em;
    margin-bottom: 50px;
  }
}
.query .query_form .query_info span {
  color: #c00;
  font-size: 0.9em;
}

.footer_link {
  width: 100%;
  float: left;
  padding: 80px 0;
  text-align: center;
}
.footer_link .footer_logo {
  max-width: 280px;
  display: block;
  margin: 0 auto;
  color: #deb866;
  text-decoration: none;
}
.footer_link .footer_logo img {
  width: 100%;
}
.footer_link .footer_fanpage {
  width: 100%;
  float: left;
  margin-top: 60px;
}
@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  .footer_link .footer_fanpage .container {
    padding: 0;
  }
}
.footer_link .footer_wuwow {
  min-height: 224px;
  overflow: hidden;
}
.footer_link .footer_wuwow img {
  width: 100%;
}
.footer_link .fb_block {
  height: 224px;
  overflow: hidden;
}

.fb-page {
  width: 100%;
}
.fb-page iframe {
  width: 100%;
}

footer {
  width: 100%;
  float: left;
  color: #333;
}
footer a {
  color: #333;
}
footer .container{
	padding:20px;
}
footer .container:nth-child(2){
	padding:30px 20px;
}

footer .fm_area{
	background:#270F05;
}
footer .fm_area .footer_menu{
	text-align:left;
	margin:0;
	padding:0;
	float:left;
	margin-top:9px;
}
footer .fm_area .footer_menu:after{
	content:'';
	clear:both;
	display:block;
}
footer .fm_area .footer_menu li{
	list-style:none;
	display:inline-block;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	color:#FFF;
	padding:0 20px;
	margin:0;
	border-right:1px solid rgba(255,255,255,0.3);
}
footer .fm_area .footer_menu li:first-child{
	padding:0 20px 0 0;
}
footer .fm_area .footer_menu li:last-child{
	border-right:0px solid rgba(255,255,255,0.3);
}
footer .fm_area .footer_menu li a{
	display:inline-block;
	font-size:16px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;;
	color:#FFF;
	padding:0;
	margin:0;
}
footer .fm_area .footer_menu li a:hover{
	color:#FF6600;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

footer .fm_area .fr_menu{
	float:right;
	text-align:right;
	margin:0;
	padding:0;
}
footer .fm_area .fr_menu:after{
	content:'';
	clear:both;
	display:block;
}
footer .fm_area .fr_menu li{
	list-style:none;
	display:inline-block;
	font-size:13px;
	font-family:"微軟正黑體", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color:#999;
	padding:0;
	margin:0;
}
footer .fm_area .fr_menu li:before{
	content:'/';
	color:rgba(153, 153, 153, 0.3);
	display:inline-block;
	padding:10px;
}
footer .fm_area .fr_menu li:first-child:before{
	content:'';
}
footer .fm_area .fr_menu li a{
	color:#999;
	margin:0;
	padding:0;
}
footer .fm_area .fr_menu li a:hover{
	color:#FF6600;
	margin:0;
	padding:0;
	text-decoration:none;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

footer .footer_left{
	font-size:12px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color:#7D6651;
	padding:0;
	margin:0;
	margin-top:6px;
}
footer .footer_right{
	padding:0;
	margin:0;
}
footer .footer_right img{
	width:100%;
}

@media (min-width: 481px) and (max-width: 767px), (max-width: 480px) {
  footer .footer_left {
    margin-bottom: 20px;
  }
}

.wuwow_sentence {
  width: 100%;
  padding: 20px 15px;
  position: fixed;
  top: 45%;
  margin-top: 50px;
  color: #333;
  z-index: 99;
  text-align: center;
  font-size: 1.2em;
}
.wuwow_sentence .en {
  font-style: italic;
  font-weight: bold;
  font-family: serif;
  padding: 0 10px;
}
.wuwow_sentence .ch {
  padding: 0 10px;
}
.wuwow_sentence .brackets {
  font-size: 1.5em;
}

#share_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
}
#share_modal .modal_content {
  width: 420px;
  padding: 10px;
  max-width: 100%;
  background: #fff;
  margin: 10% auto 0 auto;
  text-align: center;
}
#share_modal .modal_content:after {
  content: "";
  clear: both;
  display: block;
}
#share_modal .modal_content .share_img {
  width: 100%;
}
#share_modal .modal_content h3 {
  font-size: 2.4em;
  font-weight: bold;
}
@media (max-width: 480px) {
  #share_modal .modal_content h3 {
    font-size: 2em;
  }
}
#share_modal .modal_content p {
  font-size: 1.2em;
  margin-bottom: 15px;
}
@ (max-width: 480px) {
  #share_modal .modal_content p {
    font-size: 1.1em;
  }
}
#share_modal .modal_content a {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #fff;
  float: left;
  text-decoration: none;
}
#share_modal .modal_content .share_btn {
  background-color: #3c599b;
}
#share_modal .modal_content .share_submit_btn {
  background-color: #555;
}


.pj_tb_check_ok{ 
	text-align:center;
}

.check_ok input[type="checkbox"] {
    display:none;
}
.check_ok input[type="checkbox"] + label span {
    display:inline-block;
    width:66px;
    height:66px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url(../image/primary/check_ok.png) left top no-repeat;
    cursor:pointer;
}
.check_ok input[type="checkbox"]:checked + label span {
    background:url(../image/primary/check_ok.png) -66px top no-repeat;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}

.ui-widget-overlay {
    background: #000 !important;
    opacity: .6 !important;
    filter: Alpha(Opacity=60) !important;
}