/*--------------copyright by alva start-------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video  {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.8;
	letter-spacing: 1px;
	font-size: 15px;
	font-family: Arial, sans-serif, 微軟正黑體, "Microsoft JhengHei";
	background:#fff;
	color:#333;
	overflow-x:hidden;
}

ol,
ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
	vertical-align: top;
}

a {
	display: block;
	color: #333;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.clear {
	clear: both;
}


/************************************************************************************************************************************************
************************************************************************************************************************************************
************************************************************************************************************************************************/
/*---header-------------------------------------------------------------------------------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height:100px;
	background: url(../../images/navbar_bg.png) repeat;
	-webkit-filter: drop-shadow(0px 0px 3px rgba(51, 51, 51, 0.3));
	filter: drop-shadow(0px 0px 3px rgba(51, 51, 51, 0.3));
	z-index: 9;
	transition: .3s linear;
}
/*itop*/
.itop {
	background:none;
}
	.itop .logo {
		display:none;
	}
/*menu*/
.menu {}

/*logo*/
.logo {
	text-align: center;
}
.logo a {
	display: inline-block;
	z-index: 5;
	position: relative;
	width: 230px;
    padding-top: 3px;
}
	.logo img {
		max-width:100%;
		vertical-align:middle;
	}
#nav-icon {
	width: 138px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	cursor: pointer;
	background: url(../../images/menu_bg.png) repeat;
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 4px;
	width: 34px;
	background: #1b1b1b;
	border-radius: 9px;
	opacity: 1;
	left: calc(50% - 17px);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 30px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon span:nth-child(2) {
	top: 40px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon span:nth-child(3) {
	top: 50px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

#nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 53px;
}

/*menu hover*/
#nav-icon:hover span:nth-child(1) {
	top: 25px;
}

#nav-icon:hover span:nth-child(3) {
	top: 55px;
}

/*navbar-list*/
.navbar-list {
	position: fixed;
	top: 100px;
	left: 0;
	background: url(../../images/ibutton_bg.png) repeat;
	text-align: center;
	transform: translateX(-100%);
	transition: .6s ease-in-out;
	z-index: 8;
	-webkit-filter: drop-shadow(3px 3px 3px rgba(51, 51, 51, .5));
	filter: drop-shadow(3px 3px 3px rgba(51, 51, 51, .5));
}

.show {
	transform: translateX(0);
}

.navbar-list ul {
	padding: 4em 0;
}

.navbar-list li {
	transition: .3s linear;
}

.navbar-list a {
	padding: 1em 6em;
}

.navbar-list h1 {
	font-size: 18px;
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.5;
	transition: .3s linear;
}

.navbar-list h2 {
	font-size: 14px;
	color: #f3a7a8;
	letter-spacing: 2px;
	transition: .3s linear;
}

/*navbar-list hover*/
.navbar-list li:hover {
	background: rgba(255, 255, 255, 0.2);
}

.navbar-list li:hover h1 {
	color: #f3a7a8;
}

.navbar-list li:hover h2 {
	color: #fff;
}
@media screen and (max-width:1024px) {
	header {
		height: 80px;
	}
	.navbar-list {
		top: 80px;
	}
	.logo a {
		width:194px;
	}
	.navbar-list h1 {
		font-size: 16px;
	}
	#nav-icon {
		width: 125px;
	}
	#nav-icon:hover span:nth-child(1),
	#nav-icon span:nth-child(1) {
		top: 25px;
	}
	#nav-icon:hover span:nth-child(2),
	#nav-icon span:nth-child(2) {
		top: 35px;
	}
	#nav-icon:hover span:nth-child(3),
	#nav-icon span:nth-child(3),
	#nav-icon.open span:nth-child(3) {
		top: 45px;
	}
}
@media screen and (max-width:768px) {
	#nav-icon {
		width: 100px;
	}
	.logo a {
		width:192px;
	}
}
@media screen and (max-width:650px) {
	header {
		height:70px;
	}
	.navbar-list {
		top:70px;
	}
	.logo a {
		width:162px;
	}
	#nav-icon {
		width: 80px;
	}
	#nav-icon:hover span:nth-child(1),
	#nav-icon span:nth-child(1) {
		top: 20px;
	}
	#nav-icon:hover span:nth-child(2),
	#nav-icon span:nth-child(2) {
		top: 30px;
	}
	#nav-icon:hover span:nth-child(3),
	#nav-icon span:nth-child(3),
	#nav-icon.open span:nth-child(3) {
		top: 40px;
	}
}
@media screen and (max-width:550px) {
	.navbar-list {
		height: 90vh;
	}
}
@media screen and (max-width:425px) {
	#nav-icon {
		width: 70px;
	}
	#nav-icon span {
		height: 3px;
	}
	.navbar-list {
		width: 80%;
		overflow-y: scroll;
		height: 100vh;
	}
	.navbar-list ul {
		padding: 2em 0;
	}
}
@media screen and (max-width:375px) {
	.navbar-list ul {
		padding: 2em 0;
	}
	.navbar-list a {
		padding: 1em 3em;
	}
}
/*gotop*/
#gotop {
	position:fixed;
	bottom:1%;
	right:1%;
	cursor:pointer;
	display:none;
	z-index:9;
	transition:.3s ease-in-out;
}
	#gotop:hover {
		transform:scale(.9);
	}
	@media screen and (max-width:500px) {
		#gotop {
			width:15%;
		}
		#gotop img {
			width:100%;
		}
	}
/*carousel-fade*/
.carousel-fade .carousel-inner .item {
	transition-property: opacity;
}
.carousel-fade .carousel-inner .item,  
.carousel-fade .carousel-inner .active.left,  
.carousel-fade .carousel-inner .active.right {
   opacity: 0;
}
.carousel-fade .carousel-inner .active,  
.carousel-fade .carousel-inner .next.left,  
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,  
.carousel-fade .carousel-inner .prev,  
.carousel-fade .carousel-inner .active.left,  
.carousel-fade .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}
/*---imain-----------------------------------------------------------------------------------------------------------------------------------*/
.imain {
	background:url(../../images/ibg.jpg) repeat;
	background-size:auto;
	position:relative;
}
	.imain:after {
		content:'';
		background:url(../../images/spot.png) top left repeat;
		background-size:auto;
		width:100%;
		height:60%;
		position:absolute;
		top:0;
		left:0;
		z-index:0;
	}
	/*idex*/
	.idex {
		text-align:right;
		position:relative;
		z-index:2;
	}
		.dex {
			display:inline-block;
			position:relative;
			width:72%;
		}
			.dex img {
				max-width:100%;
			}
		.ilogo {
			text-align:left;
			position: absolute;
			left: 0;
			bottom: -9%;
		}
			.ilogo a {
				background:url(../../images/ilogo_bg.png) repeat;
				text-align:left;
				display:inline-block;
				padding: 3em 6em;
				box-shadow: 7px 4px 15px rgba(0,0,0,.1);
			}
				.ilogo img {
					max-width:100%;
					display:block;
					margin:0 auto;
					padding-bottom:3%;
				}
				img.ideco_flo {
					display:inline-block;
					margin: 3em -10% 0 0;
					position: relative;
					vertical-align:top;
					width:33%;
					-webkit-filter: drop-shadow(6px 6px 2px rgba(51, 51, 51, 0.2));
					filter: drop-shadow(6px 6px 2px rgba(51, 51, 51, 0.2));
					z-index:1;
				}
				.scroll {
					text-align:center;
					padding-top:2em;
				}
					.scroll img {
						-webkit-filter: drop-shadow(6px 6px 2px rgba(51, 51, 51, 0.3));
						filter: drop-shadow(6px 6px 2px rgba(51, 51, 51, 0.3));
					}
					img.arrow {
						animation:scrollmove 1s ease-in-out infinite alternate;
					}
					@keyframes scrollmove {
						0% {
							transform:translateY(5px);
							opacity:0;
						}
						100% {
							transform:translateY(30px);
							opacity:1;
						}
					}
/*---imenu_area----------------------------------------------------------------------------------------------------------------------------------*/
.imenu_area {
	background: url(../../images/imenu_deco_bg.png) bottom right no-repeat,url(../../images/imenu_bg.jpg) bottom center no-repeat;
	background-size:contain,cover;
	text-align:right;
	padding:16em 0 7em;
	margin-top:-1%;
	position:relative;
}
	/*imenu*/
	.imenu {
		display:inline-block;
		vertical-align:top;
		width:60%;
		text-align:right;
		position:relative;
	}
		.imenu:after {
			content:'';
			position:absolute;
			top:-7%;
			right:-1%;
			background:url(../../images/imenu_text_bg.png) repeat;
			height: 90%;
			width: 15%;
			z-index:0;
		}
		img.imenu_text {
			position:relative;
			z-index:2;
		}
		.imenu ul {
			position:relative;
			z-index:2;
		}
			.imenu li {
				display:inline-block;
				width:24%;
				vertical-align:top;
				margin:8px;
				overflow:hidden;
				transition:.2s ease-in;
				position:relative;
			}
				.imenu li:after {
					content:'';
					position:absolute;
					top:0;
					left:0;
					width:100%;
					height:100%;
					background-image:linear-gradient( rgba(0, 0, 0, 0.3) 0%, rgb(13, 66, 87,.7) 100%);
					transform: translate3d(0, 50%, 0);
					opacity:0;
					transition: opacity 0.35s, transform 0.35s;
				}
				.imenu li img {
					max-width:100%;
					z-index:2;
					position:relative;
					vertical-align:middle;
				}
			.imenu li {
				background:url(../../images/imenu_img_01.jpg) top center no-repeat;
				background-size:110%;
			}
			.imenu li:nth-of-type(2) {
				background:url(../../images/imenu_img_02.jpg) top center no-repeat;
				background-size:110%;
			}
			.imenu li:nth-of-type(3) {
				background:url(../../images/imenu_img_03.jpg) top center no-repeat;
				background-size:110%;
			}
			.imenu li:nth-of-type(4) {
				background:url(../../images/imenu_img_04.jpg) top center no-repeat;
				background-size:110%;
			}
			.imenu li:nth-of-type(5) {
				background:url(../../images/imenu_img_05.jpg) top center no-repeat;
				background-size:110%;
			}
			.imenu li:nth-of-type(6) {
				background:url(../../images/imenu_img_06.jpg) top center no-repeat;
				background-size:110%;
			}
				/*hover*/
				.imenu li:hover {
					background-size:120%;
				}
				.imenu li:hover:after {
					transform: translate3d(0, 0, 0);
					opacity:1;
				}
				.imenu li:hover img {
					-webkit-filter:drop-shadow(0px 0px 5px rgba(0,0,0,.5));
				}
	/*imenu_deco*/
	.imenu_deco {
		display:inline-block;
		vertical-align:bottom;
		width:35%;
	}
		.imenu_deco img {
			max-width:100%;
		}
		@media screen and (max-width:1400px) {
			.dex {
				width:80%;
			}
			.ilogo a {
				width:57%;
			}
			img.ideco_flo {
				width:28%;
			}
			.imenu li {
				width:29%;
			}
		}
		@media screen and (max-width:1200px) {
			.ilogo {
				bottom: -26%;
				width: 55%;
			}
			.ilogo a {
				padding:2em 5em;
			}
			.imenu li {
				width: 30%;
			}
			img.imenu_text {
				width:27%;
			}
		}
		@media screen and (max-width:991px) {
			.dex {
				width: 100%;
			}
			.imenu_area {
				padding: 13em 0em 3em 0;
			}
			.imenu {
				width:90%;
				padding-right:6em;
			}
				.imenu ul {
					text-align:center;
				}
				.imenu:after {
					right:0;
				}
			.imenu_deco {
				width: 60%;
				padding-top: 3em;
			}
		}
		@media screen and (max-width:800px) {
			.ilogo {
				width:60%;
			}
			.ilogo a {
				width: 60%;
			}
			.imenu_area {
				padding: 11em 0em 2em;
			}
			.imenu {
				width:100%;
				padding:0 3em;
			}
			.imenu_deco {
				width:65%;
			}
		}
		@media screen and (max-width:768px) {
			.ilogo {
				width:60%;
			}
			.ilogo a {
				width:66%;
			}
		}
		@media screen and (max-width:670px) {
			.ilogo {
				position: relative;
				margin: -8% 0 0 0;
				width: 80%;
			}
			.ilogo a {
				width: 70%;
			}
			img.ideco_flo {
				width: 30%;
			}
			.scroll {
				display:none;
			}
			.imenu_area {
				padding: 4em 0em 1em;
			}
			.imenu li {
				margin:8px 3px;
			}
		}
		@media screen and (max-width:600px) {
			.imenu_area {
				padding: 4em 0em 2em;
			}
			.imenu li {
				width: 37%;
			}
			.imenu_deco {
				width: 70%;
				padding: 3em 0em 0 0;
			}
			img.imenu_text {
				width: 41%;
				padding-right: 11%;
			}
			.imenu:after {
				top: -6%;
				right: 8%;
				width: 25%;
			}
		}
		@media screen and (max-width:500px) {
			.ilogo {
				margin: -10% 0 0 0;
				width: 85%;
			}
			.imenu:after {
				right: 0%;
				width: 28%;
			}
			.imenu li {
				width: 45%;
			}
			img.imenu_text {
				padding-right:4%;
			}
			.imenu_deco {
				padding: 3em 0em 0 0;
			}
		}
		@media screen and (max-width:430px) {
			.imenu_area {
				padding: 3em 0em 2em;
			}
			.ilogo a {
				width: 75%;
				padding: 3em 4em;
			}
			img.ideco_flo {
				width: 25%;
				margin: 1em -10% 0 0;
			}
			.imenu {
				padding:0 1em;
			}
		}
		@media screen and (max-width:380px) {
			.ilogo {
				width:88%;
			}
			.imenu_deco {
				width:70%;
			}
		}
/*---iblock--------------------------------------------------------------------------------------------------------------------------------------*/
.iblock {
	position:relative;
}
	/*iblock_bg*/
	.iblock_bg {
		width:70%;
		display:inline-block;
	}
		.iblock_bg div {
			background:url(../../images/iblock_bg.jpg) center right no-repeat fixed;
			background-size:cover;
			min-height:560px;
		}
	/*iblock_deco*/
	.iblock_deco {
		background:url(../../images/iblock_deco_bg.jpg) repeat;
		text-align:center;
		height:100%;
		position:absolute;
		top:0;
		right:0;
	}
		.iblock_deco img {
			max-width:100%;
			padding:6em 7em 0;
		}
		img.ibflo1 {
			position:absolute;
			top:0;
			left:0;
			padding:0 !important;
		}
		img.ibflo2 {
			position:absolute;
			bottom:0;
			right:0;
			padding:0 !important;
		}
	/*ibolck_bottom*/
	.ibolck_bottom {
		background:url(../../images/iblock_bottom.png) bottom right no-repeat;
		background-size:cover;
		position:absolute;
		bottom:0;
		left:0;
		width:100%;
		min-height:77px;
	}
	@media screen and (max-width:1440px) {
		.iblock_bg div {
			min-height:500px;
		}
		.iblock_deco img {
			max-width:95%;
		}
		img.ibflo1 {
			width:22%;
		}
		img.ibflo2 {
			width:22%;
		}
	}
	@media screen and (max-width:1200px) {
		.iblock_bg div {
			min-height:400px;
		}
		.iblock_deco img {
			max-width: 77%;
			padding: 4em 0em 0;
		}
		.ibolck_bottom {
			min-height:50px;
		}
		img.ibflo1,img.ibflo2 {
			width:22%;
		}
	}
	@media screen and (max-width:860px) {
		.iblock_bg div {
			min-height: 350px;
			background-attachment:inherit;
		}
		.iblock_bg {
			width:60%;
		}
		.iblock_deco img {
			max-width: 65%;
			padding: 3em 0em 0;
		}
		img.ibflo1,img.ibflo2 {
			width:22%;
		}
	}
	@media screen and (max-width:768px) {
		.iblock_bg {
			width: 100%;
			margin-bottom:-2%;
		}
		.iblock_bg div {
			min-height:300px;
		}
		.iblock_deco {
			position:relative;
		}
		.iblock_deco img {
			max-width: 55%;
			padding: 2em 2em 5em;
		}
		.ibolck_bottom {
			min-height: 40px;
		}
		img.ibflo1,img.ibflo2 {
			width:22%;
		}
	}
	@media screen and (max-width:530px) {
		.iblock_bg div {
			min-height:240px;
		}
	}
	@media screen and (max-width:430px) {
		.iblock_bg div {
			min-height:210px;
		}
		.iblock_deco img {
			padding: 2em 1em 5em;
		}
		.ibolck_bottom {
			min-height: 30px;
		}
	}
	@media screen and (max-width:380px) {
		.iblock_bg {
			margin-bottom:-3%;
		}
		.iblock_bg div {
			min-height:180px;
		}
		.iblock_deco img {
			padding: 2em 1em 4em;
		}
		.ibolck_bottom {
			min-height: 30px;
		}
	}
/*---about---------------------------------------------------------------------------------------------------------------------------------------*/
.about {
	background:url(../../images/about1_bg.jpg) top center no-repeat fixed;
	background-size:cover;
	text-align:center;
	margin-top:99px;
	position:relative;
	overflow:hidden;
}
	.about:after {
		content:'';
		position:absolute;
		top:0;
		left:0;
		width: 57%;
		height: 90%;
		background:url(../../images/about1_mask2.png) top left no-repeat;
		background-size:contain;
	}
	/*about1*/
	.about1 {
		background:url(../../images/about1_mask.png) top center no-repeat;
		background-size:cover;
		padding:6em 0 0em;
		text-align:right;
	}
		/*a1_slider*/
		.a1_slider {
			display:inline-block;
			vertical-align:top;
			width: 47%;
			text-align:center;
			position:relative;
			z-index:2;
			margin-bottom: -4%;
		}
			.a1_slider:before {
				content:'';
				position:absolute;
				top:40%;
				right:-38px;
				background:url(../../images/about1_frame2.png) top right no-repeat;
				background-size:contain;
				width: 6%;
				height: 4%;
			}
			/*abtslider*/
			.abtslider {
				display:inline-block;
				position:relative;
				background:url(../../images/about1_img_bg.png) center center no-repeat;
				background-size:cover;
				padding:2%;
			}
				.abtslider:before {
					content:'';
					position:absolute;
					top:0;
					left:0;
					background:url(../../images/about1_triangle.png) top left no-repeat;
					background-size:contain;
					width: 15%;
					height: 15%;
					z-index: 2;
				}
			/*about1_frame1*/
			.about1_frame1 {
			}
				.about1_frame1 img {
					max-width:40%;
				}
		/*about_text*/
		.about_text {
			display:inline-block;
			width:40%;
			vertical-align:top;
			padding-left: 3%;
			text-align: left;
			position:relative;
			padding: 16em 3em 0 4em;
			overflow:hidden;
			z-index:3;
		}
			.about_text img {
				max-width:85%;
			}
			img.a1_frame3 {
				position: absolute;
				top: 10%;
				right: 0;
				width: 64%;
			}
			.about_text span {
				display:block;
				padding-top:1em;
			}
	/*about2*/
	.about2 {
		background:url(../../images/about2_mask.png) center right no-repeat;
		background-size:auto;
		text-align:right;
	}
		.about2 img {
			padding: 22em 22em 2em;
			max-width:100%;
		}
		@media screen and (max-width:1440px) {
			.about2 img {
				padding: 16em 18em 3em 0;
				max-width: 100%;
			}
			.about_text {
				padding: 13em 3em 0 4em;
			}
		}
		@media screen and (max-width:1220px) {
			.about_text {
				padding: 8em 6em 0 4em;
			}
			img.a1_frame3 {
				right:-20%;
				top:0;
			}
			.a1_slider {
				width:50%;
			}
			.about2 img {
				padding: 12em 15em 3em 0;
			}
		}
		@media screen and (max-width:1024px) {
			.about {
				margin-top:78px;
			}
		}
		@media screen and (max-width:990px) {
			.about1 {
				padding: 4em 0 0em;
				text-align:center;
			}
			.a1_slider {
				width: 80%;
			}
			.about:after {
				width:89%;
			}
			.a1_slider:before {
				right:-20px;
			}
			.about_text {
				padding: 5em 1em 4em 10em;
				width: 80%;
				overflow:visible;
			}
			img.a1_frame3 {
				right: -13%;
				top: -20%;
				width: 50%;
			}
			.about2 {
				background-size:100%;
			}
			.about2 img {
				padding: 8em 8em 3em 0;
				max-width:50%;
			}
		}
		@media screen and (max-width:768px) {
			.a1_slider {
				width: 90%;
			}
			.about1 {
				padding: 3em 0 0em;
			}
			.about1_frame1 img {
				max-width: 30%;
			}
			.about_text {
				padding: 5em 1em 4em 5em;
				width: 100%;
			}
			img.a1_frame3 {
				top: -13%;
				width: 43%;
			}
			.about2 img {
				padding: 6em 5em 3em 0;
				max-width: 50%;
			}
		}
		@media screen and (max-width:650px) {
			.about {
				margin-top:68px;
			}
		}
		@media screen and (max-width:500px) {
			.about {
				background-attachment:inherit;
			}
			.about1 {
				padding: 2em 0 0em;
			}
			.about_text img {
				max-width: 70%;
			}
			.about_text {
				padding: 3em 2em 4em;
			}
			.about2 {
				background-size:cover;
			}
			.about2 img {
				padding: 5em 3em 2em 0;
				max-width:90%;
			}
			.about:after {
				height:42%;
			}
		}
		@media screen and (max-width:430px) {
			.about2 img {
				padding: 4em 2em 1em 0;
			}
			.about_text {
				padding: 2em 2em 3em;
			}
			.about1_frame1 img {
				margin-top:-10px;
			}
		}
		@media screen and (max-width:380px) {
			.about_text span {
				font-size:95%;
			}
			.about_text img {
				max-width: 75%;
			}
		}
/*---about3---------------------------------------------------------------------------------------------------------------------------------*/
.about3 {
	background:url(../../images/about3_bg.png) repeat;
	position:relative;
	text-align:center;
	padding-top:3em;
}
	.about3:after {
		content:'';
		position:absolute;
		bottom:0;
		left:0;
		background:url(../../images/about3_triangle.png) bottom left no-repeat;
		background-size:contain;
		width: 31%;
		height: 47%;
		z-index:0;
	}
	.about3 img {
		margin-bottom:-40px;
		position:relative;
		z-index:3;
		vertical-align:bottom;
	}
	img.abt3_1 {
		width:39%;
	}
	img.abt3_2 {
		width:34%;
	}
/*---about4---------------------------------------------------------------------------------------------------------------------------------*/
.about4 {
	background:url(../../images/about4_mask.png) bottom center no-repeat, url(../../images/about4_bg.png) center center fixed;
	background-size:auto,cover;
	position:relative;
	text-align:center;
}
	.about4 img {
		vertical-align:bottom;
		padding:15em 0 3em;
	}
	img.abt4_1 {
		width:31%;
	}
	img.abt4_2 {
		width: 30%;
		padding-left: 10px;
	}
	@media screen and (max-width:1024px) {
		.about4 img {
			padding: 12em 0 3em;
		}
		img.abt4_1 {
			width: 39%;
		}
		img.abt4_2 {
			width: 38%;
		}
	}
	@media screen and (max-width:768px) {
		.about3 {
			padding-top:2em;
		}
		img.abt3_1 {
			width:44%;
		}
		img.abt3_2 {
			width:39%;
		}
		.about4 img {
			padding: 10em 0 3em;
		}
		img.abt4_1 {
			width: 43%;
		}
		img.abt4_2 {
			width: 41%;
		}
	}
	@media screen and (max-width:600px) {
		.about3 img {
			margin-bottom:-20px;
		}
	}
	@media screen and (max-width:500px) {
		.about3 img {
			margin-bottom:-15px;
		}
		img.abt3_1 {
			width:50%;
		}
		img.abt3_2 {
			width:43%;
		}
		.about4 {
			background-attachment:inherit;
		}
		.about4 img {
			padding: 8em 0 3em;
		}
		img.abt4_1 {
			width: 47%;
		}
		img.abt4_2 {
			width: 44%;
		}
	}
	@media screen and (max-width:430px) {
		img.abt3_1 {
			width:90%;
		}
		img.abt3_2 {
			width:90%;
		}
		img.abt4_1 {
			width: 85%;
			padding: 10em 0 1em;
		}
		img.abt4_2 {
			width: 85%;
			padding: 0em 0 2em;
		}
	}
/*---title---------------------------------------------------------------------------------------------------------------------------------*/
.title {
	min-height:141px;
	margin:2% 0;
}
.title_room {
	background:url(../../images/title_room.png) top center no-repeat, url(../../images/iroom_bg.png) repeat;
	background-size:cover;
}
.title_loc {
	background:url(../../images/title_loc.png) top center no-repeat;
	background-size:cover;
}
.title_sce {
	background:url(../../images/title_sce.png) top center no-repeat;
	background-size:cover;
}
.title_note {
	background:url(../../images/title_note.png) top center no-repeat;
	background-size:cover;
}
.title_new {
	background:url(../../images/title_new.png) top center no-repeat;
	background-size:cover;
}
	@media screen and (max-width:600px) {
		.title {
			min-height:130px;
			margin:4% 0;
		}
	}
	@media screen and (max-width:430px) {
		.title {
			min-height:110px;
			margin:6% 0;
		}
	}
	@media screen and (max-width:380px) {
		.title {
			min-height:100px;
			margin:7% 0;
		}
	}
/*---iroom----------------------------------------------------------------------------------------------------------------------------------*/
.iroom {
	background:url(../../images/iroom_bg.png) repeat;
}
/*---loc----------------------------------------------------------------------------------------------------------------------------------*/
.loc {
	background:url(../../images/loc_bg.jpg) top center no-repeat fixed;
	background-size:cover;
}
	/*space*/
	.space {
		min-height:18px;
		box-shadow: 0px 7px 15px rgba(0,0,0,.2);
	}
	/*map_canvas*/
	#map_canvas {
		width:1475px;
		height:635px;
		max-width:80%;
		margin:0 auto;
	}
		iframe {
			width:100%;
			height:100%;
		}
	/*block*/
	.block {
		background:#fff;
		margin-top:-100px;
		height:100px;
	}
	@media screen and (max-width:800px) {
		#map_canvas {
			height:550px;
		}
	}
	@media screen and (max-width:600px) {
		#map_canvas {
			height:450px;
		}
	}
	@media screen and (max-width:500px) {
		.loc {
			background-attachment:inherit;
		}
	}
	@media screen and (max-width:425px) {
		#map_canvas {
			height:300px;
			max-width:90%;
		}
	}
/*************************
*********services_isce*****
**************************/

#services_isce {
	background: url(../../images/iscebg.jpg);
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
}

#services_isce h2 {
	color: #fff;
	padding-bottom: 15px;
	text-align: center;
	background-image: url(../../images/isceline.png);
	background-position: center bottom;
	background-size: auto;
	background-repeat: no-repeat;
	font-size: 22px;
    padding: 10px 0;
}

.iscebg {
	background-image: url(../../images/iscebg.jpg);
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0 200px;
}

.iscemore {
	background-image: url(../../images/iscemore.png);
	background-position: right bottom;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 16px;
}

.isce h2 span.iscenew {
	background: #dc5127;
	border-radius: 10px;
	font-size: 12px;
	padding: 2px 5px;
	vertical-align: middle;
	margin-right: 5px;
}

.isce h2 span.iscehot {
	background: #af2411;
	border-radius: 10px;
	font-size: 12px;
	padding: 2px 5px;
	vertical-align: middle;
	margin-right: 5px;
}

.isce {
	padding-top: 80px;
	padding-bottom: 60px;
}

.isce ul {
	margin: 0;
	padding: 0;
}

.isce ul li {
	display: inline-block;
	float: left;
	width: 25%;
	padding: 0 35px;
}

.isce ul li img {
	margin: 0 auto;
}

.isce ul li p {
	color: #fff;
}

.iscebtn img {
	margin: 0 auto;
	padding-bottom: 80px;
}

@media(max-width:1700px) {
	.iscebg {
		padding: 0 100px;
	}
}

@media(max-width:1550px) {
	.iscebg {
		padding: 0 20px;
	}
	.isce ul li {
		padding: 0 15px;
	}
}

@media(max-width:1250px) {
	#services_isce h2 {
		font-size: 20px;
	}
	.isce ul li p {
		font-size: 14px;
		line-height: 26px;
	}
}

@media(max-width:1100px) {
	#services_isce h2 {
		font-size: 16px;
	}
}

@media(max-width:991px) {
	#services_isce h2 {
		font-size: 20px;
	}
	.isce ul li {
		display: inline-block;
		float: left;
		width: 50%;
	}
	.iscebg {
		padding: 0 150px;
	}
	.isce ul li:nth-child(3) {
		clear: both;
	}
	.iscemore {
		margin-bottom: 20px;
	}
	.isce {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.iscebtn img {
		margin: 0 auto;
		padding-bottom: 20px;
	}
}

@media(max-width:850px) {
	.iscebg {
		padding: 0 80px;
	}
	.isce {
	}
}

@media(max-width:700px) {
	.iscebg {
		padding: 0 15px;
	}
	.iscebtn img {
		max-width: 300px;
	}
}

@media(max-width:500px) {
	.isce ul li {
		display: inline-block;
		float: left;
		width: 100%;
	}
	.iscebg {
		padding: 0 80px;
	}
}

@media(max-width:450px) {
	.iscebg {
		padding: 0 10px;
	}
	.isce ul li {
		width:50%;
	}
	.iscemore {
		background-image: url(../../images/iscemore.png);
		background-position: right bottom;
		background-size: auto;
		background-repeat: no-repeat;
		min-height: 16px;
	}
	.iscebtn img {
		max-width: 250px;
	}
	#services_isce h2 {
		font-size: 18px;
		line-height: 25px;
		padding: 10px 0;
	}
	.isce {
		padding-bottom:0;
	}
	iscebtn {
		padding-bottom:20px;
	}
}

@media(max-width:380px) {
	.iscebg {
		padding: 0 5px;
	}
	.iscebtn img {
		max-width: 80%;
	}
}

.isce li:hover {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	transform: translateY(-10px);
}

.isce ul li:hover img {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0.7;
}

.iscebtn img {
	position: relative;
	-webkit-animation: aniscebtn 0.6s infinite;
	animation: aniscebtn 0.6s infinite;
}

.iscebtn:hover img {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	transform: scale(0.9);
	transform-origin: center center;
}

@-webkit-keyframes aniscebtn {
	0% {
		top: 0;
	}
	50% {
		top: 10px;
	}
	100% {
		top: 2px;
	}
}

@keyframes aniscebtn {
	0% {
		top: 0;
	}
	50% {
		top: 10px;
	}
	100% {
		top: 2px;
	}
}
/*
.iscebtn img  {
	position: relative;
    -webkit-animation: myfirst 0.5s infinite;
    -webkit-animation-direction: alternate;
    animation: myfirst 0.5s infinite;
    animation-direction: alternate;
}

@-webkit-keyframes myfirst {
   0%   {top: 0px;}
    25%  {top: 2px;}
    50%  {top: 20px;}
    75%  {top: 2px;}
    100% {top: 0px;}
}

@keyframes myfirst {
    0%   {top: 0px;}
    25%  {top: 2px;}
    50%  {top: 20px;}
    75%  {top: 2px;}
    100% {top: 0px;}
}
*/
/*rinfo*/
.rinfo {
	text-align: left;
	padding: 3% 0%;
}

.rinfo ul {}

.rinfo li {}

.rinfo li span {
	display: inline-block;
	vertical-align: top;
}

.rinfo li span:nth-of-type(1) {}

.rinfo li span:nth-of-type(2) {
	width: 78%;
}
/*---main------------------------------------------------------------------------------------------------------------------------------------*/
main {
	background:url(../../images/inbg.jpg) repeat;
	text-align:center;
	color:#333;
	padding-top:100px;
}
	main .title_room {
		background: url(../../images/title_room.png) top center no-repeat;
		background-size: cover;
	}
	@media screen and (max-width:430px) {
		main {
			padding-top:80px;
		}
	}

/*services_room*/
#services_room {
}
	/*rmbt*/
	.rmbt {
	}
		.rmbt ul {
			text-align:left;
		}
			.rmbt li {
				display:inline-block;
				vertical-align:top;
				width:18%;
			}
				.rmbt li a {
					position:relative;
					text-align:center;
				}
					img.rmbt {
						max-width: 100%;
						transition: .3s ease-in-out;
					}
					img.rmbt1 {
						max-width: 100%;
						position: absolute;
						top: 0;
						left: 50%;
						transform: translateX(-50%);
						opacity: 0;
						transition: .3s ease-in-out;
					}
					/*hover*/
					.rmbt a:hover img.rmbt {
						opacity: 0;
					}
					.rmbt a:hover img.rmbt1 {
						opacity: 1;
					}
	h4 {
		text-align: right;
		font-size: 24px;
		font-weight: 500;
		margin: 4% 0 1%;
	}
	/*wowslider-container1*/
	#wowslider-container1 {
	}
		.ws_images div:nth-of-type(5) {
			display:none;
		}
	/*roomb*/
	.roomb {
		text-align:center;
		padding:3% 0 5%;
	}
	.roomb td {
		vertical-align:middle;
	}
	h5 {
		font-size:20px;
		margin:1% 0 3%;
		letter-spacing:2px;
		font-weight:bold;
	}
	@media screen and (max-width:1200px) {
		.rmbt li {
			width:19%;
			padding:0;
		}
	}
	@media screen and (max-width:991px) {
		.rmbt li {
			width:26%;
			padding:0 2% 1% 0;
		}
	}
	@media screen and (max-width:600px) {
		.rmbt li {
			width:30%;
			padding:0 1% 1% 0;
		}
	}
	@media screen and (max-width:500px) {
		.rmbt li {
			width:32%;
			padding:0 1% 1% 0;
		}
		h4 {
			font-size: 18px;
			margin: 4% 0 2%;
		}
		#wowslider-container1 a.ws_next,#wowslider-container1 a.ws_prev {
			display:none;
		}
		#wowslider-container1 .ws_bullets {
			bottom:10px;
		}
		.roomb {
			padding: 7% 0 5%;
		}
	}
	@media screen and (max-width:425px) {
		.rmbt li {
			padding:1%;
		}
		h5 {
			font-size:20px;
		}
	}
	@media screen and (max-width:375px) {
		.rmbt li {
			padding:5px;
		}
		h4 {
			font-size:18px;
			margin: 5% 0 3%;
		}
		h5 {
			font-size:17px;
			letter-spacing:1px;
		}
	}
/*---icons----------------------------------------------------------------------------------------------------------------------------------*/
.icons {}

.icons ul {
	list-style: none;
}

.icons li {
	margin: 5px 5px;
	display: inline-block;
	vertical-align: top;
	width: 21%;
	background: rgba(255, 255, 255, .6);
	border-radius: 7px;
	padding: 5px 0 8px;
	text-align: center;
}

.icons li img {
	padding: 0 7px;
	margin: 0 auto;
}

.icons li span {
	display: block;
	font-size: 14px;
	line-height: 20px;
}

@media screen and (max-width:1199px) {
	.icons li {
		width: 10%;
	}
}

@media screen and (max-width:900px) {
	.icons li span {
		font-size: 12px;
	}
}

@media screen and (max-width:768px) {
	.icons li {
		width: 13%;
	}
}

@media screen and (max-width:600px) {
	.icons li {
		width: 17%;
	}
}

@media screen and (max-width:500px) {
	.icons li {
		width: 21%;
	}
}

@media screen and (max-width:430px) {
	.icons li {
		width: 27%;
		margin: 5px 8px;
		padding: 5px 4px 8px;
	}
	.icons li span {
		font-size: 13px;
	}
}

@media screen and (max-width:360px) {
	.icons li span {
		font-size: 12px;
	}
}

@media screen and (max-width:340px) {
	.icons li {
		width: 28%;
		margin: 5px 5px;
		padding: 5px 2px 8px;
	}
}
/*---r_icons-----------------------------------------------------------------------------------------------------------------------------------*/
.r_icons {
	padding-bottom: 0;
	text-align: left;
}

.r_icons ul {
	list-style: none;
}

.r_icons li {
	width: 17%;
	float: left;
}

table.fac {
	padding: 0 0 3% 2%;
	display: block;
}

table.fac td {
	vertical-align: top;
}

@media screen and (max-width:1290px) {
	.r_icons li {
		width: 21%;
	}
}

@media screen and (max-width:1060px) {
	.r_icons li {
		width: 28%;
	}
}

@media screen and (max-width:991px) {
	.r_icons li {
		width: 15%;
	}
}

@media screen and (max-width:815px) {
	.r_icons li {
		width: 17%;
	}
}

@media screen and (max-width:765px) {
	.r_icons li {
		width: 20%;
	}
}

@media screen and (max-width: 765px) {
	.r_icons li {
		width: 17%;
	}
}

@media screen and (max-width:580px) {
	.r_icons li {
		width: 21%;
	}
}

@media screen and (max-width:480px) {
	.r_icons li {
		width: 22%;
	}
}

@media screen and (max-width:440px) {
	.r_icons li {
		width: 31%;
		margin: 5px 3px;
		padding: 5px;
	}
}


/*--note_icons--------------------------------------------------------------------------------------------------------------------------------*/

.note_icon {
	padding:0;
	text-align: left;
	padding:1% 0;
}

.note_icon ul {
	list-style: none;
}

.note_icon li {
	width: 10.666666%;
	padding: 5px 0 5px;
}

.note_icon li img {
	padding-bottom: 5px;
	max-width: 100%;
}

@media screen and (max-width:1220px) {
	.note_icon li {
		width: 12%;
	}
}

@media screen and (max-width:1080px) {
	.note_icon li {
		width: 12%;
	}
}

@media screen and (max-width:760px) {
	.note_icon li {
		width: 14%;
	}
}

@media screen and (max-width:700px) {
	.note_icon li {
		width: 17%;
	}
}

@media screen and (max-width:580px) {
	.note_icon li {
		width: 19%;
		margin: 5px 0;
	}
}

@media screen and (max-width:505px) {
	.note_icon li {
		width: 23%;
		padding: 7px;
	}
	.note_icon li img {
		width: 100%;
	}
}

@media screen and (max-width:453px) {
	.note_icon li {
		width: 23.66666%;
	}
	.icons li span {
		font-size: 12px;
	}
}

@media screen and (max-width:400px) {
	.note_icon li {
		width: 32%;
		padding: 6px;
	}
}
/*---notice------------------------------------------------------------------------------------------------------------------------------*/
.notice {
}
	/*note*/
	.note {
		text-align:center;
		padding:1% 0 6%;
	}
		.note img {
			max-width:100%;
		}
		@media screen and (max-width:425px) {
			.note {
				padding:0 0 10%;
			}
		}
		@media screen and (max-width:375px) {
			.note img {
				width:85%;
			}
		}
/*newstable*/
.newstable {
	width: 80%;
    margin: 0 auto;
    padding: 2em 0;
    position: relative;
    z-index: 3;
}
	.newstable table {
		width:100%;
	}
	table.tableimg img {
		max-width:100%;
	}
	.newstable a {
		display:inline-block;
		color:#000;
		transition:.3s ease-in-out;
	}
		.newstable a:hover {
			color:rgba(255,153,0,1);
		}
button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    background: transparent;
    border-radius: 5px;
    padding: 0% 4%;
	transition:.3s ease-in-out;
	letter-spacing:2px;
	margin:0 1%;
	height:45px;
	line-height:45px;
}
	button:hover, html input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover {
		background: #dddddd;
	}
	@media screen and (max-width:430px) {
		.newstable {
			width: 90%;
			padding: 1em 0;
		}
	}
	
/****************************************************************************************************************************************/
/*************************
********services_sce******
**************************/
#services_sce {
	padding:0 3em 60px;
}

.scebtn {
	text-align: center;
	margin-bottom: 30px;
}

.scebtn h2 {
	display: inline-block;
    margin:5px;
    color: #fff;
    padding: 25px 5px;
    font-size: 16px;
    border-radius: 100%;
    min-width: 82px;
    border: 3px solid #fff;
    cursor: pointer;
	line-height:24px;
}

.scebtn h2.scebtn1 {
	background: #d85a51;
}

.scebtn h2.scebtn2 {
	background: #80a076;
}

.scebtn h2.scebtn3 {
	background: #89b5cb;
}

.scebtn h2.scebtn4 {
	background: #8dcfca;
}

.scebtn h2.scebtn5 {
	background: #b7ad6f;
}

.scebtn h2.scebtn6 {
	background: #8b8583;
}

.scebtn h2:hover.scebtn1,
.scebtn h2:hover.scebtn2,
.scebtn h2:hover.scebtn3,
.scebtn h2:hover.scebtn4,
.scebtn h2:hover.scebtn5,
.scebtn h2:hover.scebtn6 {
	background: #fff;
	border: #7e6b5a 3px solid;
	color: #656565;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

@media (max-width:650px) {
	.scebtn {
		padding: 0 120px;
	}
}

@media (max-width:600px) {
	.scebtn {
		padding: 0 100px;
	}
}

@media (max-width:550px) {
	.scebtn {
		padding: 0 60px;
	}
}

@media (max-width:480px) {
	.scebtn {
		padding: 0 25px;
	}
}

@media (max-width:400px) {
	.scebtn {
		padding: 0 5px;
	}
	.scebtn {
		margin-bottom: 10px;
	}
}

@media (max-width:350px) {
	.scebtn {
		padding: 0 0px;
	}
}
/***********/

.scebox {
	border: #c3c3c3 1px solid;
	border-radius: 5px;
	box-shadow: -1px 1px 6px 0.5px rgba(138, 138, 138, 0.75);
	padding: 0 10px 10px 10px;
}

.mount .sceimg {
	background-color: #80a076;
}

.sea .sceimg {
	background-color: #89b5cb;
}

.farm .sceimg {
	background-color: #8dcfca;
}

.city .sceimg {
	background-color: #b7ad6f;
}

.hot .sceimg {
	background-color: #d85a51;
}

.scebox:hover {
	cursor: pointer;
}

.scebox:hover .sceimg img {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	transform: scale(0.95);
	overflow: hidden;
}

.scebox_hot {
	padding: 0 80px;
}

.scebox_hot .scebox {
	display: inline-block;
	float: left;
	width: 23%;
	margin: 0 10px;
}

.scetag {
	float: right;
	color: #fff;
	padding: 4px 20px;
	margin-left: 5px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.scetag1 {
	background: #d85a51;
}

.scetag2 {
	background: #80a076;
}

.scetag3 {
	background: #89b5cb;
}

.scetag4 {
	background: #8dcfca;
}

.scetag5 {
	background: #b7ad6f;
}

.scet h3 {
	clear: both;
	color: #3d3d3d;
	font-size: 23px;
	letter-spacing: 1px;
	margin-top: 20px;
    display: inline-block;
}

.sceimg img {
	margin: 0 auto;
}

.scep p {
	color: #616161;
	text-align:left;
	margin:10px 0 0 0;
}
.scemore {
	text-align:right;
}

@media(max-width:1700px) {
	.scebox_hot {
		padding: 0 10px;
	}
}

@media(max-width:1400px) {
	.scebox_hot .scebox {
		width: 24%;
		margin: 0 5px;
	}
}

@media(max-width:1199px) {
	.scebox_hot .scebox {
		width: 48%;
		margin: 5px;
	}
	.scebox_hot .scebox:nth-child(3) {
		clear: both;
	}
}

@media(max-width:700px) {
	.scebox_hot .scebox {
		width: 100%;
		margin: 5px 0px;
	}
	.scet h3 {
		font-size: 22px;
	}
	.scep p {
		line-height: 24px;
	}
	#services_sce {
		padding:0 1em 60px;
	}

}

@media(max-width:550px) {
	.city .sceimg,
	.farm .sceimg,
	.hot .sceimg,
	.mount .sceimg,
	.sea .sceimg {
		background-color: #fff;
	}
}

@media(max-width:500px) {
	.scet h3 {
		letter-spacing: 0px;
	}
}

@media(max-width:450px) {
	.mount .sceimg {
		background-color: #80a076;
	}
	.sea .sceimg {
		background-color: #89b5cb;
	}
	.farm .sceimg {
		background-color: #8dcfca;

	}
	.city .sceimg {
		background-color: #b7ad6f;
	}
	.hot .sceimg {
		background-color: #d85a51;
	}
}

@media(max-width:350px) {
	.scet h3 {
		font-size: 20px;
	}
}


/*************/

.scebox_content {
	padding: 0 0px;
	margin-top: 30px;
}

.scebox_content .scebox {
	display: inline-block;
	float: left;
	width: 100%;
	margin: 5px;
}

@media (max-width: 1800px) {
	.scebox_content {
		padding: 0px;
	}
}

@media screen and (max-width:1700px) {
	.scebox_content {
		padding: 0 0px;
		margin-top: 30px;
	}
}


/*********************** 20170328  以上 優質a****************/

.scecontainer {
	display: block;
	margin: auto;
	width: 100%;
}

.scecontainer .item {
	margin: 0.5%;
	float: left;
	background: #ffffff;
	display: block;
	width: 19%;
}

@media screen and (max-width: 1800px) {
	.scecontainer {
		width: 96%;
	}
	.scecontainer .item {
		width: 19%;
	}
}

@media screen and (max-width: 1400px) {
	.scecontainer .item {
		width: 24%;
	}
}

@media screen and (max-width: 991px) {
	.scecontainer .item {
		width: 32%;
	}
}

@media screen and (max-width:767px) {
	.scecontainer .item {
		width: 49%;
	}
}

@media screen and (max-width:550px) {
	.scecontainer .item {
		width: 99%;
		margin-bottom: 10px;
	}
}
/*---footer-------------------------------------------------------------------------------------------------------------------------------*/
.footer {
	text-align:center;
	padding:3% 0 0;
	color:#000;
}
	/*flogo*/
	.flogo {
		position:relative;
	}
		.flogo img {
			display:block;
			margin:0 auto;
		}
		.flogo:before {
			content:'';
			background:url(../../images/line.png) repeat-x;
			width:38%;
			height:40px;
			position:absolute;
			bottom:0;
			left:0;
		}
		.flogo:after {
			content:'';
			background:url(../../images/line.png) repeat-x;
			width:38%;
			height:40px;
			position:absolute;
			bottom:0;
			right:0;
		}
	/*finfo*/
	.finfo {
		text-align:left;
		padding:2% 0 2% 42%;
	}
		.finfo ul {
		}
			.finfo li {
			}
	/*footer_line*/
	.footer_line {
		background:url(../../images/footer_line.png) top center no-repeat;
		background-size:auto;
		min-height:12px;
	}
	/*fbtn*/
	.fbtn {
		padding:2% 0;
	}
		.fbtn ul {
		}
			.fbtn li {
				display: inline-block;
				vertical-align: bottom;
				width: 10%;
				padding:0 1%;
			}
				.fbtn li img {
					width:100%;
				}
				.fbtn li:hover {
					animation:imgflash 1.2s;
				}
	/*footer_bottom*/
	.footer_bottom {
		background:#252525;
		padding:2%;
	}
		/*fmark*/
		.fmark {
		}
			.fmark ul {
			}
				.fmark li {
					display:inline-block;
					vertical-align:top;
					width: 5%;
					padding: 3px;
				}
					.fmark li img {
						width:100%;
					}
		/*bnbnumber*/
		.bnbnumber {
			color:#fff;
			padding:1% 0;
		}
		/*icon*/
		.icon {
			color:#828282;
			font-size:14px;
			padding:15px 0 0 0;
		}	
			.icon span {
				display:inline-block;
				vertical-align:middle;
				color:#828282;
			}
			.icon a {
				display:inline-block;
				vertical-align:middle;
				color:#828282;
				transition:.3s;
			}
				.icon a:hover {
					-webkit-filter:drop-shadow(0px 0px 1px rgba(255,255,255,.8));
					filter:drop-shadow(0px 0px 1px rgba(255,255,255,.8));
				}
		/*copyright*/
		.copyright {
			color:#828282;
			font-size:14px;
			padding:5px 0 0 0;
		}
			.copyright a {
				color:#828282;
				display:inline-block;
				font-size:14px;
				transition:.3s;
			}
				.copyright a:hover {
					color:#fff;
				}
			@keyframes imgflash {
				0% {
					opacity:.5;
				}
				100% {
					opacity:1;
				}
			}
			@media screen and (max-width:1440px) {
				.finfo {
					padding: 2% 0 2% 40%;
				}
				.fbtn li {
					width:13%;
				}
				.fmark li {
					width:7%;
				}
			}
			@media screen and (max-width:960px) {
				.finfo {
					padding: 2% 0 2% 34%;
				}
				.fbtn li {
					width:18%;
				}
				.fmark li {
					width:10%;
				}
				.footer_line {
					width:70%;
					margin:0 auto;
				}
			}
			@media screen and (max-width:768px) {
				.footer {
					padding: 5% 0 0;
				}
				.finfo {
					padding: 3% 0 3% 30%;
				}
				.fbtn li {
					width:21%;
				}
				.fmark li {
					width:12%;
				}
				.flogo:after,.flogo:before {
					width:26%;
				}
				.flogo img {
					width:38%;
				}
				.flogo img:last-of-type {
					width:23%;
				}
			}
			@media screen and (max-width:500px) {
				.flogo img {
					width:43%;
				}
				.flogo img:last-of-type {
					width:26%;
				}
				.finfo {
					padding: 4% 0 4% 20%;
				}
				.fbtn {
					padding: 4% 0;
				}
				.fbtn li {
					width: 28%;
				}
				.footer_line {
					width:85%;
				}
				.fmark li {
					width: 15%;
				}
			}
			@media screen and (max-width:425px) {
				.finfo {
					padding: 4% 0 4% 5%;
				}
				.fbtn li {
					width: 30%;
				}
			}
#room,#location {
	transform:translateY(-100px);
}
	@media screen and (max-width:1024px) {
		#room,#location {
			transform:translateY(-80px);
		}
	}
	@media screen and (max-width:650px) {
		#room,#location {
			transform:translateY(-70px);
		}
	}















