/** START Header -  blank **/

header a{
    text-decoration: none;
}
.mobile-menu-icon,
#main-menu li{
    text-transform: uppercase;
}

/* font sizes */
#main-menu li {
	font-size: 0.95em;
}

/* colors */

#main-menu li a,
.mobile-menu-close,
.mobile-menu-icon{
    color: #9b9999;
}
#main-menu .active a,
#main-menu li a:hover,
.mobile-menu-icon:hover,
.mobile-menu-close:hover{
    color: #515151;
}

/* branding */
#branding {
	width: 50%;
	height: 50px;
	padding-top: 0px;
	margin-left: 0px;
}
    .logo {
    	width: 100%;
    	height: 100%;
    }
        .logo img {
        	width: auto;
        	height: 100%;
        }
    
/* main menu */
.mobile-menu-icon {
	position: absolute;
	top: 16px;
	right: 20px;
}
.mobile-menu-close {
	position: absolute;
	top: 20px;
	right: 20px;
}
#main-menu nav{
	width: 100%;
	height: 100%;
	background: #000;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 3;
	text-align: center;
	overflow: scroll;
	pointer-events:none;
	opacity:0;
	
	-webkit-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
#main-menu nav.open{
    pointer-events:auto;
	opacity:1; 
}
    nav ul{
        list-style-type:none;
        padding:0;
        margin:0;
    }
    #main-menu nav ul{
        margin: 76px 0 0 0;
    }
        #main-menu li{
            text-align:center;
        }

/* Phablet */
@media (min-width: 550px) {
    .mobile-menu-icon {
    	right: 0;
    }
}       
/* Larger than tablet */
@media (min-width: 750px) {
    .header-wrapper.container {
    	width: 100%;
    }
        #branding{
            margin-left:0;
        }
        .mobile-menu-icon {
        	right: 0;
        }
}
/* Larger than desktop */
@media (min-width: 1000px) {

    /* branding */
    #branding {
    	margin-right: 0;
    	float: left;
    	width: 165px;
    	margin-left: 0px;
    	margin-top: 4px;
    	height: 50px;
    }
    /*main menu */
    .mobile-menu-icon,
    .mobile-menu-close{
        display:none;
    }
    #main-menu {
    	float: right;
    	margin-top: 0px;
    	height: 50px;
    	margin-right: 0;
    	width: calc(100% - 165px);
    }
    #main-menu nav {
    	height: auto;
    	background: transparent;
    	position: relative;
    	left: 0;
    	top: 0;
    	overflow: hidden;
    	text-align: right;
    	pointer-events: auto;
    	opacity: 1;
    }
        #main-menu nav ul {
        	margin: 0 0 0 0;
        	text-align: right;
        }
            #main-menu li {
            	display: inline-block;
            	margin-left: 25px;
            	margin-top: 21px;
            }
            #main-menu li.privacy-policy,
            #main-menu li.terms-conditions,
            #main-menu li.careers,
            #main-menu li.contact-us,
            #main-menu li.sitemap{
                display:none;
            }
            #main-menu li.first{
                margin-left:0;
            }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
    /* branding */
    #branding {
    	margin-right: 0;
    	float: left;
    	width: 225px;
    	margin-left: 10px;
    	margin-top: 4px;
    	height: 80px;
    }
    #main-menu {
    	height: 71px;
    	width: calc(100% - 235px);
    }
        #main-menu li {
        	margin-left: 37px;
        	margin-top: 33px;
        	
        }
}
/** END Header -  blank **/
/** START Footer - blank **/

/** START copyright **/

.bottom-bar {
	margin-top: 25px;
	border-top: 1px solid #dadce0;
	padding-top: 20px;
	padding-bottom: 15px;
}
    footer .container.copyright-bar {
    	font-size: 0.7em;
    	padding-top: 0;
    }
    .copyright-bar p {
    	text-align:center;
    }
       
@media (min-width: 750px) {
     footer .container.copyright-bar {
    	font-size: 0.7em;
    	padding: 0 20px 20px;
    }
    .copyright-bar p {
    	margin: 0;
    	width: 50%;
    	float: left;
    	text-align:left;
    }
        .copyright-bar p.designed-by{
            text-align :right;
        }
}
 /* Larger than desktop */
@media (min-width: 1000px) {
     footer .container.copyright-bar {
        font-size:0.72em;
    	width: 88%;
    	padding: 0;
    }
        .copyright-bar p {
        	letter-spacing: 0.1px;
        }    
}

/** END copyright **/
/** END Footer - blank **/
/** START Main Visual - blank **/

.main-visual, .main-visual .slick-list{
    width: 100%;
    height: auto;
    position: relative;
}
.main-visual, .main-visual .slick-list, .main-visual .slider-item {
    height: 200px;
}
.main-visual .slick-slide img {
    display: none;
}
.slider-item{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.main-visual-arrow-wrapper{
    position: absolute;
    top: 50%;
    height: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    margin-top: -10px;
}
.slider-navigation {
    width: 18px;
    height: 25px;
    padding: 0;
    display: block;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    font-size: 3em;
    line-height: 0.5;
    position: relative;
    overflow: hidden;
}
.main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
    opacity: 1;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
.slider-navigation span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
	left: 50%;
}
.main-visual-arrow-wrapper .slider-navigation span {
	position: absolute;
	left: 50%;
	height: 59%;
}
.nav-left .line-one {
	transform: rotate(45deg);
	top: 0;
}
.nav-left .line-two {
	transform: rotate(-45deg);
	bottom: 0;
}
.nav-right .line-one {
	transform: rotate(-45deg);
	top: 0;
}
.nav-right .line-two {
	transform: rotate(45deg);
	bottom: 0;
}
.main-visual:hover .main-visual-pager-wrapper, .main-visual:hover .main-visual-arrow-wrapper{
    opacity: 1;
}
.prev{
    float: left;
    margin-left: 10px;
}
.next {
    float: right;
    margin-right: 10px;
}
.main-visual-pager-wrapper{
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}
.main-visual-pager-wrapper .slick-dots{
    text-align: center;
}
.main-visual-pager-wrapper .slick-dots li{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    cursor: pointer;
    border: 2px solid #fff;
}
.main-visual-pager-wrapper .slick-dots li.slick-active{
    cursor: default;
    background: transparent;
}
.main-visual-slogan-wrapper{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 38px;
    font-size: 0.75em;
}
.slider-item, .slogan-read-more, p.slogan, .main-visual-pager-wrapper .slick-dots, ul.slider-wrapper{
    margin-bottom: 0;
}
.main-visual-slogan-wrapper .container{
    padding: 0 30px;
}
.slogan-read-more .read-more{
    text-decoration: none;
    color: #fff;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
p.slogan{
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    padding-bottom: 5px;
}
.slogan-read-more .read-more:hover{
    opacity: 0.5;
}
.slick-slide img {
    display: inline-block;
}
.main-visual:before{
  content: '';
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
  display:none;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.main-visual .slick-list{
    height: 100%;
}
header.header-fixed{
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.8);
}
.main-visual.header-fixed, .main-visual.header-fixed .slick-list, .header-fixed .slick-list .slider-item{
    height: 100vh;
}
.header-fixed .main-visual-arrow-wrapper {
	margin-top: 27px;
}
.header-fixed .top-bar{
    background-color: rgba(0, 0, 0, 0.7);
}
.main-visual.loading:before{
    opacity: 0;
}

/* Larger than Mobile */
@media (min-width: 767px) {
	.main-visual, .main-visual .slick-list, .main-visual .slider-item {
        height: 480px;
    }
   .main-visual .slick-list{
        height: 100%;
        min-height: 480px;
    }
	.main-visual.header-fixed, .header-fixed .slick-list, .header-fixed .slick-list .slider-item{
		height: 100vh;
	}
    .slider-navigation {
        width: 35px;
        height: 53px;
        font-size: 6em;
    }
    p.slogan{
        font-size: 3em;
        padding-bottom: 15px;
    }
    .main-visual-pager-wrapper .slick-dots li{
        width: 8px;
        height: 8px;
        margin: 0 7px;
        border: 3px solid #fff;
    }
    .main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
        opacity: 1;
    }
    .prev{
        margin-left: 40px;
    }
    .next {
        margin-right: 40px;
    }
    .main-visual-arrow-wrapper{
        margin-top: -21px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 27px;
	}
    .main-visual-pager-wrapper{
        bottom: 20px;
    }
    .main-visual-slogan-wrapper{
        position: absolute;
        bottom: 80px;
        right: 0;
        text-align: right;
        font-size: 0.85em;
    }
}

/* Larger than Ipad */
@media (min-width: 1200px) {
    .slider-navigation{
        width: 50px;
        height: 76px;
        font-size: 9em;
    }
    .main-visual-pager-wrapper .slick-dots li{
        margin: 0 8px;
        border: 3px solid #fff;
    }
    .main-visual-arrow-wrapper{   
        opacity: 0;
    }
    .prev{
        margin-left: 100px;
    }
    .next {
        margin-right: 100px;
    }
    .main-visual-arrow-wrapper {
       margin-top: -42px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 0;
	}
    .main-visual-slogan-wrapper{
        font-size: 1em;
    }
}
/** END Main Visual - blank **/
/** START Content Block H1-C **/

h1 .first-phrase{
   display:block;
   font-size:0.85em;
}

 .main-content-block{
        text-align:center;
   }

@media (min-width: 1000px) {
    .main-content-block{
          max-width:745px;
          margin:20px auto;
    }
}
/** END Content Block H1-C **/
/** START Main Row **/


.main-row{
    margin-bottom:40px;
}

@media (min-width: 1000px) {
	.main-row{
		 margin-bottom:100px;
	}
}
/** END Main Row **/
/** START Social Sharing - Type B **/

.social-media.typeB{
    text-align: center;
    margin-bottom: 30px;
}
.social-media.typeB a{
    text-decoration: none;
}
.social-media.typeB h3{
    font-size: 0;
    display: block;
    margin-bottom: 10px;
}
.social-media.typeB a{
    color: #a4a4a4;
}
.social-media.typeB .sm-item .fa {
    color:#353637;
}

.social-media.typeB .sm-item .fa {
	background-color: #a4a4a4;
}
        .social-media.typeB .social-media-wrapper{
            display: inline-block;
            text-align:center;
            vertical-align: middle;
            max-width: 90%;
            margin: 0 auto 0 -8px;
        }
        .social-media.typeB .social-media-wrapper li{
            display: inline-block;
        	margin: 3px;
        }
            .social-media.typeB .sm-item a,
            .social-media.typeB .sm-item a .fa{
                -webkit-transition:all 0.5s ease;
                -ms-transition:all 0.5s ease;
                transition:all 0.5s ease;
            }
               .social-media.typeB .sm-item .fa {
                	width: 35px;
                	height: 35px;
                	background-color: #a4a4a4;
                	border-radius: 100%;
                	position: relative;
                	color:#353637;
                	text-align:center;
                }
                .social-media.typeB .sm-item .fa-facebook{
                    background-color: #3b5998;
                }
                .social-media.typeB .sm-item .fa-twitter{
                    background-color: #00aced;
                }
                .social-media.typeB .sm-item .fa-google-plus{
                    background-color: #dd4b39;
                }
                .social-media.typeB .sm-item .fa-youtube-play{
                    background-color: #bb0000;
                }
                .social-media.typeB .sm-item .fa-tripadvisor{
                    background-color: #00a680;
                }
                .social-media.typeB .sm-item .fa-instagram{
                    background-color: #517fa4;
                }
                .social-media.typeB .sm-item .fa-linkedin{
                    background-color: #0077b5;
                }
                .social-media.typeB .sm-item .fa-pinterest-p{
                    background-color: #cb2027;
                }
                
                    .social-media.typeB .sm-item .fa:before {
                    	line-height: 36px;
                    	color: #fff;
                    }
            
 
       
@media (min-width: 750px) {
    .social-media.typeB h3{
        display: inline-block;
        vertical-align: middle;
        margin: 0 8px 0 0;
    }        
}
@media (min-width: 1200px) {
    .social-media.typeB .sm-label {
    	display: inline-block;
    	font-size: 0.87em;
    	letter-spacing: 0.2px;
    	margin-left: 12px;
    }
    .social-media.typeB .sm-item a:hover .fa{
        opacity: 0.7;
    }
}
/** END Social Sharing - Type B **/
/** START xList - blank **/
ul.xList-items{
    list-style: none;
}
/** END xList - blank **/
/** START Main Visual - blank **/

.main-visual, .main-visual .slick-list{
    width: 100%;
    height: auto;
    position: relative;
}
.main-visual, .main-visual .slick-list, .main-visual .slider-item {
    height: 200px;
}
.main-visual .slick-slide img {
    display: none;
}
.slider-item{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.main-visual-arrow-wrapper{
    position: absolute;
    top: 50%;
    height: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    margin-top: -10px;
}
.slider-navigation {
    width: 18px;
    height: 25px;
    padding: 0;
    display: block;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    font-size: 3em;
    line-height: 0.5;
    position: relative;
    overflow: hidden;
}
.main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
    opacity: 1;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
.slider-navigation span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
	left: 50%;
}
.main-visual-arrow-wrapper .slider-navigation span {
	position: absolute;
	left: 50%;
	height: 59%;
}
.nav-left .line-one {
	transform: rotate(45deg);
	top: 0;
}
.nav-left .line-two {
	transform: rotate(-45deg);
	bottom: 0;
}
.nav-right .line-one {
	transform: rotate(-45deg);
	top: 0;
}
.nav-right .line-two {
	transform: rotate(45deg);
	bottom: 0;
}
.main-visual:hover .main-visual-pager-wrapper, .main-visual:hover .main-visual-arrow-wrapper{
    opacity: 1;
}
.prev{
    float: left;
    margin-left: 10px;
}
.next {
    float: right;
    margin-right: 10px;
}
.main-visual-pager-wrapper{
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}
.main-visual-pager-wrapper .slick-dots{
    text-align: center;
}
.main-visual-pager-wrapper .slick-dots li{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    cursor: pointer;
    border: 2px solid #fff;
}
.main-visual-pager-wrapper .slick-dots li.slick-active{
    cursor: default;
    background: transparent;
}
.main-visual-slogan-wrapper{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 38px;
    font-size: 0.75em;
}
.slider-item, .slogan-read-more, p.slogan, .main-visual-pager-wrapper .slick-dots, ul.slider-wrapper{
    margin-bottom: 0;
}
.main-visual-slogan-wrapper .container{
    padding: 0 30px;
}
.slogan-read-more .read-more{
    text-decoration: none;
    color: #fff;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
p.slogan{
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    padding-bottom: 5px;
}
.slogan-read-more .read-more:hover{
    opacity: 0.5;
}
.slick-slide img {
    display: inline-block;
}
.main-visual:before{
  content: '';
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 1s linear infinite; 
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.main-visual .slick-list{
    height: 100%;
}
header.header-fixed{
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.8);
	top: 0;
	left: 0;
}
.main-visual.header-fixed, .main-visual.header-fixed .slick-list, .header-fixed .slick-list .slider-item{
    height: 100vh;
}
.header-fixed .main-visual-arrow-wrapper {
	margin-top: 27px;
}
.header-fixed .top-bar{
    background-color: rgba(0, 0, 0, 0.7);
}
.main-visual.loading:before{
    opacity: 0;
}

/* Larger than Mobile */
@media (min-width: 767px) {
	.main-visual, .main-visual .slick-list, .main-visual .slider-item {
        height: 480px;
    }
   .main-visual .slick-list{
        height: 100%;
        min-height: 480px;
    }
	.main-visual.header-fixed, .header-fixed .slick-list, .header-fixed .slick-list .slider-item{
		height: 100vh;
	}
    .slider-navigation {
        width: 35px;
        height: 53px;
        font-size: 6em;
    }
    p.slogan{
        font-size: 3em;
        padding-bottom: 15px;
    }
    .main-visual-pager-wrapper .slick-dots li{
        width: 8px;
        height: 8px;
        margin: 0 7px;
        border: 3px solid #fff;
    }
    .main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
        opacity: 1;
    }
    .prev{
        margin-left: 40px;
    }
    .next {
        margin-right: 40px;
    }
    .main-visual-arrow-wrapper{
        margin-top: -21px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 27px;
	}
    .main-visual-pager-wrapper{
        bottom: 20px;
    }
    .main-visual-slogan-wrapper{
        position: absolute;
        bottom: 80px;
        right: 0;
        text-align: right;
        font-size: 0.85em;
    }
}

/* Larger than Ipad */
@media (min-width: 1200px) {
    .slider-navigation{
        width: 50px;
        height: 76px;
        font-size: 9em;
    }
    .main-visual-pager-wrapper .slick-dots li{
        margin: 0 8px;
        border: 3px solid #fff;
    }
    .main-visual-arrow-wrapper{   
        opacity: 0;
    }
    .prev{
        margin-left: 100px;
    }
    .next {
        margin-right: 100px;
    }
    .main-visual-arrow-wrapper {
       margin-top: -42px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 0;
	}
    .main-visual-slogan-wrapper{
        font-size: 1em;
    }
}
/** END Main Visual - blank **/
/** START Main Content Block H1- L **/

h1 .first-phrase{
   display:block;
   font-size:0.85em;
}
.main-content-block.main-content-block-l{
    text-align:left;
}
ul li, ol li {
	text-align: left;
}
@media (min-width: 1000px) {
    .main-content-block{
        max-width:80%;
        margin:20px auto;
    }
}
/** END Main Content Block H1- L **/

/** START Main Row - blank **/

.main-row{
    margin-bottom:40px;
}

@media (min-width: 1000px) {
	.main-row{
		 margin-bottom:100px;
	}
}
/** END Main Row - blank **/
/** START Main Content Block H1-C **/

h1 .first-phrase{
   display:block;
   font-size:0.85em;
}
.main-content-block.main-content-block-l{
    text-align:left;
}
ul li, ol li {
	text-align: left;
}
.no-content{
display:none;
}
@media (min-width: 1000px) {
    .main-content-block{
        max-width:80%;
        margin:20px auto;
    }
}

.main-content-block.main-content-block-c{
    text-align:center;
}
/** END Main Content Block H1-C **/
/** START Google Map - Simple **/
#map{
	height: 500px;
	width: 100%;
    position: relative;
    /*-webkit-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);*/
}
#map:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.map-wrapper{
    position: relative;
}
.no-contents{
    display: none;
}
.map-wrapper .hotelInfo {
    padding: 20px 20px 20px 50px;
	max-width: 275px;
	margin: 0 auto;
}
.hotelInfo > *:last-child p{
    margin-bottom: 0;
}
.hotelInfo > *:last-child{
    margin-bottom: 0;
    padding-bottom: 0; 
}
.map-wrapper .hotelInfo a{
    color: #413838;
}
.hotelInfo > div{
    position: relative;
}
.hotelInfo > div:before{
    position: absolute;
    left: -40px;
    top: 5px;
    width: 30px;
    height: 20px;
    display: block;
    pointer-events: none;
    content: "\f041";
    font-family: FontAwesome;
    font-size: 2.5em;
    line-height: 0.5;
}
.hotelInfo .address:before{
    line-height: 0.8;
}
.hotelInfo .telephone:before{
    content: "\f095";
    font-size: 2em;
}
.hotelInfo .fax:before{
    content: "\f1ac";
    font-size: 1.6em;
}
.hotelInfo .email:before{
    content: "\f003";
    font-size: 1.5em;
    line-height: 0.6;
}



#get-directions {
    width: 100%;
    margin: 20px auto;
	text-align: center;
	max-width: 1200px;
}
#get-directions .inputBlock{
    width: 100%;
    text-align: left;
    margin: 10px 0;
}
#get-directions .directions-label {
    display: block;
}
#get-directions button.go-direction{
    margin: 15px auto;
}
#get-directions .inlineBlock{
	display: inline-block;
	vertical-align: middle;
}
.directions-label {
	font-size: 1.1em;
	margin: 5px 10px;
}
#get-directions input{
	background-color: #fff;
	margin-bottom: 0;
	font-family: inherit;
	letter-spacing: -0.01em;
	padding: 5px 10px;
	border: 1px solid #dedddd;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.1em;
	max-width: 1000px;
    width: 100%
}
.how-to-get {
	font-size: 1.4em;
	margin-right: 5px;
}
.route-mode button{
	border: none;
	background: #000;
	font-size: 1.1em;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 5px;
	position: relative;
	cursor: pointer;
	padding: 0;
}
.route-mode button:after{
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	content: "\f1b9";
	font-family: FontAwesome;
	color: #888888;
	line-height: 1.5;
	right: 0;
}
.route-mode button.transit:after{
	content: "\f207";
}
.route-mode button.walk:after{
	content: "\f554";
}
.go-direction{
	color: #fff;
	background-color: #ff6600;
	border-radius: 8px;
	border: none;
	font-size: 1.1em;
	text-transform: none;
	padding: 6px 34px 7px;
	cursor: pointer;
	line-height: 1.5;
}
.google-map-content ul{
	display: none;
}

@media(min-width:750px){
	.container .map-wrapper .hotelInfo{
        left: 5%;
    }
    .map-wrapper .hotelInfo {
        padding: 45px 30px 45px 75px;
        position: absolute;
        bottom: 0;
        left: 10%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 25%;
	max-width: 325px;
        background: rgba(255, 255, 255, 0.8);
    }
    .hotelInfo .address:before{
        line-height: 1;
    }
    #get-directions .inputBlock {
        width: auto;
    }
    #get-directions .directions-label {
        display: inline-block;
    }
    #get-directions input {
        max-width: 165px;
    }
    .route-mode button{
        margin: 0 2px;
    }
    .how-to-get {
        font-size: 1.2em;
    }
}

@media(min-width:1000px){
	#get-directions {
        width: 100%;
    }
    #get-directions button.go-direction {
        margin: 0px 15px;
    }
}

@media(min-width:1200px){
	.hotelInfo .address:before{
        line-height: 0.5;
    }
    #get-directions input {
        max-width: 250px;
    }
}
/** END Google Map - Simple **/
/** START H2 Heading - 2 Phrases **/
.first-phrase,  .second-phrase{
display: block;
}
h2 .first-phrase{
font-size: 0.6em;
}
/** END H2 Heading - 2 Phrases **/
/** START Gallery A - Style-2 **/
.gallery-typeA .gallery-list,
.gallery-typeA .gallery-item-list,
.gallery-typeA .gallery-list li{
    list-style-type: none;
    margin: 0;
}

.gallery-typeA .gallery-item .image-wrapper{
    padding: 37.5% 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}
.gallery-typeA .xbox.gallery-item .image-wrapper{
    margin-bottom: 0;
}
.gallery-typeA .slick-slide .gallery-item .image-wrapper.video-item{
    padding: 35.4% 50%;
}
.gallery-typeA .gallery-item .image-wrapper .video-item{
    background: none;
}
    .gallery-typeA .gallery-item .image-wrapper .mobile-iframe {
    	border: 0;
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
    .gallery-typeA .gallery-item img,
    .gallery-typeA .video-src,
    .gallery-typeA .image-wrapper .image-caption{
        display: none;
    }

.gallery-typeA .gallery-cat-wrapper {
    margin: 0 auto 15px;
}

.gallery-typeA .gallery-cat-inner-wrapper,
.gallery-typeA .image-wrapper .image-caption{
    position: relative;
	padding-top: 50px;
    border: 1px solid #a9a9a9;
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition:    all 0.5s ease-in-out;
	-o-transition:      all 0.5s ease-in-out;
	-ms-transition:     all 0.5s ease-in-out;
	transition:     	all 0.5s ease-in-out;
}

.gallery-typeA .gallery-cat-wrapper.open {
	max-height: 1000px;
}
    .gallery-typeA .gallery-cat-wrapper .gallery-label{
        color: #838383;
        cursor: pointer;
        display: none;
        width: calc(100% - 53px);
        padding: 13px 33px 13px 20px;
    }
    
    .gallery-typeA .gallery-label.active .fa{
        color: #000;
        display: none;
        position: absolute;
        right: 15px;
        top: 16px;
        font-size: 1.1em;
        pointer-events: none
    }
    .gallery-typeA .gallery-label .fa{
        display: none;
    }
    .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        color: #000;
        display: block;
    	position: absolute;
    	top: 0;
    	left: 0;
    	overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .gallery-typeA .gallery-cat-wrapper.open .gallery-label,
    .gallery-typeA .gallery-label.active .fa{
        display: block;
    }
    .gallery-typeA .gallery-cat-wrapper.open .fa-angle-down:before {
    	content: "\f106";
    }

    .gallery-typeA .gallery-cat-wrapper,
    .gallery-typeA .gallery-item-list{
    	text-align: center;
    }
        
    .gallery-typeA .gallery-item-list{
    	width: 100%;
        margin: 0 auto;
    	position: absolute;
    	top: 0;
    	left: 0;
    	opacity: 0;
    	pointer-events: none;
    	z-index: 0;
    	-webkit-transition: all .4s ease-in-out;
    	-moz-transition:    all .4s ease-in-out;
    	-o-transition:      all .4s ease-in-out;
    	-ms-transition:     all .4s ease-in-out;
    	transition:     	all .4s ease-in-out;
    }
    .gallery-typeA .gallery-item-list .slick-slide{
        overflow: hidden;
    }
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-item-list.active{
        opacity: 1;
        position: relative;
        pointer-events: auto;
        z-index: 1;
    }
        .gallery-typeA .gallery-item-list .xList-item {
        	width: 100%;
        }
            .gallery-typeA .gallery-item-list .data-fancy{
                pointer-events: none    
            }
            .gallery-typeA .slick-arrow {
                cursor: pointer;
                position: absolute;
                top: 50%;
                font-size: 3em;
                color: #fff;
                z-index: 1;
                -webkit-transition: translateY(-50%);
            	-moz-transition:    translateY(-50%);
            	-o-transition:      translateY(-50%);
            	-ms-transition:     translateY(-50%);
                transform:          translateY(-50%);
            }
            .gallery-typeA .slick-arrow.prev-arrow{
                left: 3%;
            }
            .gallery-typeA .slick-arrow.next-arrow{
                right: 3%;
            }



/* For devices larger than 400px */
@media (min-width: 400px) and (max-width: 549px) {
    .gallery-typeA .gallery-list{
        max-width: 85%;
        margin: 0 auto;
    }
}
/* For devices larger than 550px */
@media (min-width: 550px) and (max-width: 749px) {
    .gallery-typeA .gallery-list{
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-cat-inner-wrapper {
    	width: 100%;
    	border: 0;
    	padding: 0;
    	max-height: none;
    }
    .gallery-typeA .gallery-item-list{
        font-size: 0;
        overflow: hidden;
        pointer-events: none;
    }
        .gallery-typeA .gallery-cat-wrapper .gallery-label {
        	padding: 4px 28px 4px 20px;
        	border-right: 1px solid #838383;
        	margin-bottom: 15px;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label:last-child {
            border: none;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label,
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active{
            display: inline-block;
            width: auto;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        	position: relative;
        	top: auto;
        	left: auto;
        	overflow: visible;
        }
            .gallery-typeA .gallery-label.active .fa {
                display: none;
            }
    .gallery-typeA .gallery-item-list .xList-item {
    	width: 31.8%;
    	max-width: 435px;
    	margin: 0 0 1.15% 0;
    	display: inline-block;
    }
    .gallery-typeA .gallery-item-list .xList-item:nth-child(2n){
        margin: 0 1.15% 1.15% 1.15%;
    }
    
        .gallery-typeA .gallery-item-list .data-fancy {
            pointer-events: auto;
        	line-height: 0;
        	display: block;
        }
            .gallery-typeA .gallery-item-list .fa-play-circle:before {
            	position: absolute;
            	top: 50%;
            	left: 50%;
            	color: #fff;
            	font-size: 4em;
                -webkit-transition: translate(-50%, -50%);
                -moz-transition:    translate(-50%, -50%);
                -o-transition:      translate(-50%, -50%);
                -ms-transition:     translate(-50%, -50%);
            	transform:          translate(-50%, -50%);
            }
            .gallery-typeA .gallery-item-list .image-wrapper a{
                display: block;
                width: 100%;
                height: 100%;
            }
                .gallery-typeA .image-wrapper .image-caption {
                	width: 90%;
                	position: absolute;
                	left: 0;
                	bottom: 0;
                	height: 45px;
                	color: #fff;
                	padding: 0 5%;
                	display: block;
                	background-color: rgba(0,0,0,0.6);
                	overflow: hidden;
                	text-overflow: ellipsis;
                	line-height: 3.5;
                	white-space: nowrap;
                	border: 0;
                	font-size: 14px;
                	font-family: 'Poppins', Helvetica, Arial, sans-serif;
                }
                
            
/* fancybox */
.gallery-typeA .fancybox-button--thumbs{
	position: fixed;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
}
.gallery-typeA.fancybox-show-thumbs .fancybox-button--thumbs{
    bottom: 95px;
}

.gallery-typeA .fancybox-thumbs-x,
.gallery-typeA .fancybox-button--thumbs{
    -webkit-transition: all .4s ease-in-out;
	-moz-transition:    all .4s ease-in-out;
	-o-transition:      all .4s ease-in-out;
	-ms-transition:     all .4s ease-in-out;
	transition:     	all .4s ease-in-out;
}
.gallery-typeA .fancybox-thumbs-x {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 0;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    display: block !important;
}
.gallery-typeA.fancybox-show-thumbs .fancybox-thumbs-x {
	height: 95px;
}
    .gallery-typeA.fancybox-container .fancybox-thumbs-loading.video-thumb:after{
        content: "\f144";
        font-family: FontAwesome;
        text-rendering:auto;
        -webkit-font-smoothing:antialiased;
        -moz-osx-font-smoothing:grayscale;
        font-size: 32px;
        color: #fff;
        text-align: center;
        height: 100%;
        line-height: 75px;
        display: block;
    }
  
    .gallery-typeA.fancybox-show-thumbs .fancybox-inner {
        right: 0;
        bottom: 95px;
    }
        .gallery-typeA .fancybox-infobar{
            font-size: 1.2em;
        }
            .gallery-typeA .fancybox-infobar span:first-child {
            	font-size: 1.3em;
            }

.gallery-typeA .fancybox-infobar {
	left: 15px;
	top: 5px;
}

/* button styles */
.gallery-typeA .fancybox-toolbar {
	right: 20px;
	top: 20px;
}
.gallery-typeA .fancybox-button--arrow_right,
.gallery-typeA .fancybox-button--arrow_left,
.gallery-typeA .fancybox-button--close{
    background: transparent;
    border: 0;
}
.gallery-typeA .fancybox-button span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
    left: 50%;
}
/* close button */
.gallery-typeA .fancybox-button--close .line-one {
    -webkit-transition: translate(-50%, -50%) rotate(-45deg);
    -moz-transition:    translate(-50%, -50%) rotate(-45deg);
    -o-transition:      translate(-50%, -50%) rotate(-45deg);
    -ms-transition:     translate(-50%, -50%) rotate(-45deg);
	transform:          translate(-50%, -50%) rotate(-45deg);
	top: 50%;
}
.gallery-typeA .fancybox-button--close .line-two {
	-webkit-transition: translate(-50%, -50%) rotate(45deg);
    -moz-transition:    translate(-50%, -50%) rotate(45deg);
    -o-transition:      translate(-50%, -50%) rotate(45deg);
    -ms-transition:     translate(-50%, -50%) rotate(45deg);
	transform:          translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

/* arrows */
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 80px;
	width: 80px;
	-webkit-transition: translateY(-50%);
    -moz-transition:    translateY(-50%);
    -o-transition:      translateY(-50%);
    -ms-transition:     translateY(-50%);
	transform:          translateY(-50%);
}
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 65px;
	width: 40px;
}
    .gallery-typeA .fancybox-navigation .fancybox-button span{
        position: absolute;
    	left: 50%;
    	height: 59%;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-one{
    	transform: rotate(-45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-two {
    	transform: rotate(45deg);
    	bottom: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-one{
    	transform: rotate(45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-two {
    	transform: rotate(-45deg);
    	bottom: 0;
    }

.gallery-typeA .fancybox-slide--image {
	padding: 70px 0;
}
.gallery-typeA .fancybox-caption{
    font-size: 1.1em;
    width: calc(100% - 45px);
}
.gallery-typeA .fancybox-caption:before,
.gallery-typeA .fancybox-caption:after{
    display: none;
}
.gallery-typeA .fancybox-slide--iframe .fancybox-content{
    position: relative;
    height: 0;
    padding-top: 49.25%;
	max-width: 80vw;
}

    .gallery-typeA .fancybox-slide--iframe .fancybox-iframe {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 6em;
    	font-size: 6vw;
    }
    .gallery-typeA .image-wrapper .image-caption{
        height: 50px;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 7em;
    	font-size: 7vw;
    }
    .gallery-typeA .image-wrapper .image-caption {
        height: 0;
    }
    .gallery-typeA .data-fancy:hover .image-caption {
    	height: 50px;
    }
    .gallery-typeA .fancybox-navigation .fancybox-button {
    	height: 80px;
    	width: 80px;
    }
    .gallery-typeA .fancybox-slide--iframe .fancybox-content {
    	padding-top: 35.25%;
        max-width: 62vw;
    }
}


/* Larger than Desktop HD */
@media (min-width: 1920px) {
    .gallery-typeA .gallery-item-list .xList-item:nth-child(4n){
        margin-right: 0;
    }
}

.gallery-typeA.style-2 .gallery-row{
    height:400px;
    margin-bottom:20px;
}
.gallery-typeA.style-2 .xbox.gallery-item,
.gallery-typeA.style-2 .gallery-section,
.gallery-typeA.style-2 .xbox.gallery-item .inner-container,
.gallery-typeA.style-2 .gallery-item-list .data-fancy,
.gallery-typeA.style-2 .gallery-row .gallery-item .image-wrapper{
	height: 100%;
}
.gallery-typeA.style-2 .gallery-row .gallery-item .image-wrapper{
    padding:0;
}
.gallery-typeA.style-2 .gallery-item-list .gallery-row .xList-item,
.gallery-typeA.style-2 .gallery-item-list .gallery-row .xList-item:nth-child(2n){
    float: left;
    background-size:cover;
    background-position:center center;
	margin: 0;
	position:relative;
	max-width:none;
}

.gallery-typeA.style-2 .gallery-item-list .gallery-row.odd .section-1 .xList-item,
.gallery-typeA.style-2 .gallery-item-list .gallery-row.even .section-2 .xList-item{
	width:100%;
	height: 100%;

}

.gallery-typeA.style-2 .gallery-row .section-2{
    float: right;
}
.gallery-typeA.style-2 .gallery-row .section-1 {
    float: left;
}

/*layout-2*/
.gallery-typeA.style-2 .gallery-row.layout-2.odd .section-1,
.gallery-typeA.style-2 .gallery-row.layout-2.even .section-2{
    width:calc((100% - 20px) * 65 / 100);
}
.gallery-typeA.style-2 .gallery-row.layout-2.odd .section-2,
.gallery-typeA.style-2 .gallery-row.layout-2.even .section-1{
    width:calc((100% - 20px) * 35 / 100);
}

.gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.odd .section-2 .xList-item,
.gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.even .section-1 .xList-item{
	width: 100%;
	height: calc(50% - 10px);
}
.gallery-typeA.style-2 .gallery-item-list .gallery-row.odd .section-2 .xList-item:first-child,
.gallery-typeA.style-2 .gallery-item-list .gallery-row.odd .section-2 .xList-item:nth-child(2n),
.gallery-typeA.style-2 .gallery-item-list .gallery-row.even .section-1 .xList-item:first-child,
.gallery-typeA.style-2 .gallery-item-list .gallery-row.even .section-1 .xList-item:nth-child(2n){
	margin-bottom:20px;
}
.gallery-typeA.style-2 .gallery-item-list .gallery-row.odd .section-2 .xList-item:last-child,
.gallery-typeA.style-2 .gallery-item-list .gallery-row.even .section-1 .xList-item:last-child{
	margin-bottom:0px;
}



.gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2 .section-balance {
	width: 100%;
}
    .gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.balance-row .section-balance .xList-item{
    	height: 100%;
    }
    .gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.balance-row .section-balance .xList-item{
    	width:100%;
    }
    .gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.balance-row .section-balance.items-2 .xList-item{
    	width:calc(50% - 10px);
    }
    .gallery-typeA.style-2 .gallery-item-list .gallery-row.layout-2.balance-row .section-balance .xList-item:nth-child(2n){
    	margin-left:20px;
    }


/** END Gallery A - Style-2 **/
/** START Gallery A - Style-3 **/
.gallery-typeA .gallery-list,
.gallery-typeA .gallery-item-list,
.gallery-typeA .gallery-list li{
    list-style-type: none;
    margin: 0;
}

.gallery-typeA .gallery-item .image-wrapper{
    padding: 37.5% 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}
.gallery-typeA .xbox.gallery-item .image-wrapper{
    margin-bottom: 0;
}
.gallery-typeA .slick-slide .gallery-item .image-wrapper.video-item{
    padding: 35.4% 50%;
}
.gallery-typeA .gallery-item .image-wrapper .video-item{
    background: none;
}
    .gallery-typeA .gallery-item .image-wrapper .mobile-iframe {
    	border: 0;
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
    .gallery-typeA .gallery-item img,
    .gallery-typeA .video-src,
    .gallery-typeA .image-wrapper .image-caption{
        display: none;
    }

.gallery-typeA .gallery-cat-wrapper {
    margin: 0 auto 15px;
}

.gallery-typeA .gallery-cat-inner-wrapper,
.gallery-typeA .image-wrapper .image-caption{
    position: relative;
	padding-top: 50px;
    border: 1px solid #a9a9a9;
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition:    all 0.5s ease-in-out;
	-o-transition:      all 0.5s ease-in-out;
	-ms-transition:     all 0.5s ease-in-out;
	transition:     	all 0.5s ease-in-out;
}

.gallery-typeA .gallery-cat-wrapper.open {
	max-height: 1000px;
}
    .gallery-typeA .gallery-cat-wrapper .gallery-label{
        color: #838383;
        cursor: pointer;
        display: none;
        width: calc(100% - 53px);
        padding: 13px 33px 13px 20px;
    }
    
    .gallery-typeA .gallery-label.active .fa{
        color: #000;
        display: none;
        position: absolute;
        right: 15px;
        top: 16px;
        font-size: 1.1em;
        pointer-events: none
    }
    .gallery-typeA .gallery-label .fa{
        display: none;
    }
    .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        color: #000;
        display: block;
    	position: absolute;
    	top: 0;
    	left: 0;
    	overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .gallery-typeA .gallery-cat-wrapper.open .gallery-label,
    .gallery-typeA .gallery-label.active .fa{
        display: block;
    }
    .gallery-typeA .gallery-cat-wrapper.open .fa-angle-down:before {
    	content: "\f106";
    }

    .gallery-typeA .gallery-cat-wrapper,
    .gallery-typeA .gallery-item-list{
    	text-align: center;
    }
        
    .gallery-typeA .gallery-item-list{
    	width: 100%;
        margin: 0 auto;
    	position: absolute;
    	top: 0;
    	left: 0;
    	opacity: 0;
    	pointer-events: none;
    	z-index: 0;
    	-webkit-transition: all .4s ease-in-out;
    	-moz-transition:    all .4s ease-in-out;
    	-o-transition:      all .4s ease-in-out;
    	-ms-transition:     all .4s ease-in-out;
    	transition:     	all .4s ease-in-out;
    }
    .gallery-typeA .gallery-item-list .slick-slide{
        overflow: hidden;
    }
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-item-list.active{
        opacity: 1;
        position: relative;
        pointer-events: auto;
        z-index: 1;
    }
        .gallery-typeA .gallery-item-list .xList-item {
        	width: 100%;
        }
            .gallery-typeA .gallery-item-list .data-fancy{
                pointer-events: none    
            }
            .gallery-typeA .slick-arrow {
                cursor: pointer;
                position: absolute;
                top: 50%;
                font-size: 3em;
                color: #fff;
                z-index: 1;
                -webkit-transition: translateY(-50%);
            	-moz-transition:    translateY(-50%);
            	-o-transition:      translateY(-50%);
            	-ms-transition:     translateY(-50%);
                transform:          translateY(-50%);
            }
            .gallery-typeA .slick-arrow.prev-arrow{
                left: 3%;
            }
            .gallery-typeA .slick-arrow.next-arrow{
                right: 3%;
            }



/* For devices larger than 400px */
@media (min-width: 400px) and (max-width: 549px) {
    .gallery-typeA .gallery-list{
        max-width: 85%;
        margin: 0 auto;
    }
}
/* For devices larger than 550px */
@media (min-width: 550px) and (max-width: 749px) {
    .gallery-typeA .gallery-list{
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-cat-inner-wrapper {
    	width: 100%;
    	border: 0;
    	padding: 0;
    	max-height: none;
    }
    .gallery-typeA .gallery-item-list{
        font-size: 0;
        overflow: hidden;
        pointer-events: none;
    }
        .gallery-typeA .gallery-cat-wrapper .gallery-label {
        	padding: 4px 28px 4px 20px;
        	border-right: 1px solid #838383;
        	margin-bottom: 15px;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label:last-child {
            border: none;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label,
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active{
            display: inline-block;
            width: auto;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        	position: relative;
        	top: auto;
        	left: auto;
        	overflow: visible;
        }
            .gallery-typeA .gallery-label.active .fa {
                display: none;
            }
    .gallery-typeA .gallery-item-list .xList-item {
    	width: 31.8%;
    	max-width: 435px;
    	margin: 0 0 1.15% 0;
    	display: inline-block;
    }
    .gallery-typeA .gallery-item-list .xList-item:nth-child(2n){
        margin: 0 1.15% 1.15% 1.15%;
    }
    
        .gallery-typeA .gallery-item-list .data-fancy {
            pointer-events: auto;
        	line-height: 0;
        	display: block;
        }
            .gallery-typeA .gallery-item-list .fa-play-circle:before {
            	position: absolute;
            	top: 50%;
            	left: 50%;
            	color: #fff;
            	font-size: 4em;
                -webkit-transition: translate(-50%, -50%);
                -moz-transition:    translate(-50%, -50%);
                -o-transition:      translate(-50%, -50%);
                -ms-transition:     translate(-50%, -50%);
            	transform:          translate(-50%, -50%);
            }
            .gallery-typeA .gallery-item-list .image-wrapper a{
                display: block;
                width: 100%;
                height: 100%;
            }
                .gallery-typeA .image-wrapper .image-caption {
                	width: 90%;
                	position: absolute;
                	left: 0;
                	bottom: 0;
                	height: 45px;
                	color: #fff;
                	padding: 0 5%;
                	display: block;
                	background-color: rgba(0,0,0,0.6);
                	overflow: hidden;
                	text-overflow: ellipsis;
                	line-height: 3.5;
                	white-space: nowrap;
                	border: 0;
                	font-size: 14px;
                	font-family: 'Poppins', Helvetica, Arial, sans-serif;
                }
                
            
/* fancybox */
.gallery-typeA .fancybox-button--thumbs{
	position: fixed;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
}
.gallery-typeA.fancybox-show-thumbs .fancybox-button--thumbs{
    bottom: 95px;
}

.gallery-typeA .fancybox-thumbs-x,
.gallery-typeA .fancybox-button--thumbs{
    -webkit-transition: all .4s ease-in-out;
	-moz-transition:    all .4s ease-in-out;
	-o-transition:      all .4s ease-in-out;
	-ms-transition:     all .4s ease-in-out;
	transition:     	all .4s ease-in-out;
}
.gallery-typeA .fancybox-thumbs-x {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 0;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    display: block !important;
}
.gallery-typeA.fancybox-show-thumbs .fancybox-thumbs-x {
	height: 95px;
}
    .gallery-typeA.fancybox-container .fancybox-thumbs-loading.video-thumb:after{
        content: "\f144";
        font-family: FontAwesome;
        text-rendering:auto;
        -webkit-font-smoothing:antialiased;
        -moz-osx-font-smoothing:grayscale;
        font-size: 32px;
        color: #fff;
        text-align: center;
        height: 100%;
        line-height: 75px;
        display: block;
    }
  
    .gallery-typeA.fancybox-show-thumbs .fancybox-inner {
        right: 0;
        bottom: 95px;
    }
        .gallery-typeA .fancybox-infobar{
            font-size: 1.2em;
        }
            .gallery-typeA .fancybox-infobar span:first-child {
            	font-size: 1.3em;
            }

.gallery-typeA .fancybox-infobar {
	left: 15px;
	top: 5px;
}

/* button styles */
.gallery-typeA .fancybox-toolbar {
	right: 20px;
	top: 20px;
}
.gallery-typeA .fancybox-button--arrow_right,
.gallery-typeA .fancybox-button--arrow_left,
.gallery-typeA .fancybox-button--close{
    background: transparent;
    border: 0;
}
.gallery-typeA .fancybox-button span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
    left: 50%;
}
/* close button */
.gallery-typeA .fancybox-button--close .line-one {
    -webkit-transition: translate(-50%, -50%) rotate(-45deg);
    -moz-transition:    translate(-50%, -50%) rotate(-45deg);
    -o-transition:      translate(-50%, -50%) rotate(-45deg);
    -ms-transition:     translate(-50%, -50%) rotate(-45deg);
	transform:          translate(-50%, -50%) rotate(-45deg);
	top: 50%;
}
.gallery-typeA .fancybox-button--close .line-two {
	-webkit-transition: translate(-50%, -50%) rotate(45deg);
    -moz-transition:    translate(-50%, -50%) rotate(45deg);
    -o-transition:      translate(-50%, -50%) rotate(45deg);
    -ms-transition:     translate(-50%, -50%) rotate(45deg);
	transform:          translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

/* arrows */
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 80px;
	width: 80px;
	-webkit-transition: translateY(-50%);
    -moz-transition:    translateY(-50%);
    -o-transition:      translateY(-50%);
    -ms-transition:     translateY(-50%);
	transform:          translateY(-50%);
}
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 65px;
	width: 40px;
}
    .gallery-typeA .fancybox-navigation .fancybox-button span{
        position: absolute;
    	left: 50%;
    	height: 59%;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-one{
    	transform: rotate(-45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-two {
    	transform: rotate(45deg);
    	bottom: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-one{
    	transform: rotate(45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-two {
    	transform: rotate(-45deg);
    	bottom: 0;
    }

.gallery-typeA .fancybox-slide--image {
	padding: 70px 0;
}
.gallery-typeA .fancybox-caption{
    font-size: 1.1em;
    width: calc(100% - 45px);
}
.gallery-typeA .fancybox-caption:before,
.gallery-typeA .fancybox-caption:after{
    display: none;
}
.gallery-typeA .fancybox-slide--iframe .fancybox-content{
    position: relative;
    height: 0;
    padding-top: 49.25%;
	max-width: 80vw;
}

    .gallery-typeA .fancybox-slide--iframe .fancybox-iframe {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 6em;
    	font-size: 6vw;
    }
    .gallery-typeA .image-wrapper .image-caption{
        height: 50px;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 7em;
    	font-size: 7vw;
    }
    .gallery-typeA .image-wrapper .image-caption {
        height: 0;
    }
    .gallery-typeA .data-fancy:hover .image-caption {
    	height: 50px;
    }
    .gallery-typeA .fancybox-navigation .fancybox-button {
    	height: 80px;
    	width: 80px;
    }
    .gallery-typeA .fancybox-slide--iframe .fancybox-content {
    	padding-top: 35.25%;
        max-width: 62vw;
    }
}


/* Larger than Desktop HD */
@media (min-width: 1920px) {
    .gallery-typeA .gallery-item-list .xList-item:nth-child(4n){
        margin-right: 0;
    }
}

.gallery-typeA.style-3 .gallery-row{
    height:400px;
    margin-bottom:20px;
}
.gallery-typeA.style-3 .xbox.gallery-item,
.gallery-typeA.style-3 .gallery-section,
.gallery-typeA.style-3 .xbox.gallery-item .inner-container,
.gallery-typeA.style-3 .gallery-item-list .data-fancy,
.gallery-typeA.style-3 .gallery-row .gallery-item .image-wrapper{
	height: 100%;
}
.gallery-typeA.style-3 .gallery-row .gallery-item .image-wrapper{
    padding:0;
}
.gallery-typeA.style-3 .gallery-item-list .gallery-row .xList-item,
.gallery-typeA.style-3 .gallery-item-list .gallery-row .xList-item:nth-child(2n){
    float: left;
    background-size:cover;
    background-position:center center;
	margin: 0;
	position:relative;
	max-width:none;
}

.gallery-typeA.style-3 .gallery-item-list .gallery-row.odd .section-2 .xList-item:first-child,
.gallery-typeA.style-3 .gallery-item-list .gallery-row.odd .section-2 .xList-item:nth-child(2n),
.gallery-typeA.style-3 .gallery-item-list .gallery-row.even .section-1 .xList-item:first-child,
.gallery-typeA.style-3 .gallery-item-list .gallery-row.even .section-1 .xList-item:nth-child(2n){
	margin-bottom:20px;
}
.gallery-typeA.style-3 .gallery-item-list .gallery-row.odd .section-2 .xList-item:last-child,
.gallery-typeA.style-3 .gallery-item-list .gallery-row.even .section-1 .xList-item:last-child{
	margin-bottom:0px;
}
/*layout-3*/
.gallery-typeA.style-3 .gallery-row.layout-3 .section-1{
    float: left;
}
.gallery-typeA.style-3 .gallery-row.layout-3 .section-2{
    float: right;
}
.gallery-typeA.style-3 .gallery-row.layout-3.odd .section-1 .xList-item,
.gallery-typeA.style-3 .gallery-row.layout-3.even .section-2 .xList-item{
    width: 100%;
    height: 100%;
}
.gallery-typeA.style-3 .gallery-row.layout-3 .section-1,
.gallery-typeA.style-3 .gallery-row.layout-3 .section-2{
    width:calc((100% - 20px) * 50 / 100);
}

.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.odd .section-2 .xList-item,
.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.even .section-1 .xList-item{
	width: calc(50% - 10px);
	height: calc(50% - 10px);
}
.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.odd .section-2 .xList-item:nth-child(2n),
.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.even .section-1 .xList-item:nth-child(2n){
	margin-left:20px;
}

.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.half-height {
	height:190px;
}
.gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3 .section-balance {
	width: 100%;
}
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row .section-balance .xList-item{
    	height: 100%;
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row.full-height .section-balance .xList-item{
    	width:calc(50% - 10px);
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row.full-height .section-balance.items-1 .xList-item{
    	width:100%;
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row.full-height .section-balance .xList-item:nth-child(2n){
    	margin-left:20px;
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row .section-balance.items-3 .xList-item{
    	width:calc((100% - 40px) / 3);
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row .section-balance.items-3 .xList-item:nth-child(2n){
    	margin-left:20px;
    	margin-right:20px;
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row .section-balance.items-4 .xList-item{
    	width:calc((100% - 60px) / 4);
    	margin-left:20px;
    }
    .gallery-typeA.style-3 .gallery-item-list .gallery-row.layout-3.balance-row .section-balance.items-4 .xList-item:first-child{
    	margin-left:0px;
    }
/** END Gallery A - Style-3 **/
/** START Sub Row - blank **/

.sub-row{
    margin-bottom: 25px;
}

@media (min-width: 1000px) {
	.sub-row{
		 margin-bottom: 75px;
	}
}
/** END Sub Row - blank **/
/** START Main Row - blank **/

.main-row{
    margin-bottom:40px;
}

@media (min-width: 1000px) {
	.main-row{
		 margin-bottom:100px;
	}
}
/** END Main Row - blank **/
/** START Google Map - Simple **/
#map{
	height: 500px;
	width: 100%;
    position: relative;
    /*-webkit-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);*/
}
#map:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.map-wrapper{
    position: relative;
}
.no-contents{
    display: none;
}
.map-wrapper .hotelInfo {
    padding: 20px 20px 20px 50px;
	max-width: 275px;
	margin: 0 auto;
}
.hotelInfo > *:last-child p{
    margin-bottom: 0;
}
.hotelInfo > *:last-child{
    margin-bottom: 0;
    padding-bottom: 0; 
}
.map-wrapper .hotelInfo a{
    color: #413838;
}
.hotelInfo > div{
    position: relative;
}
.hotelInfo > div:before{
    position: absolute;
    left: -40px;
    top: 5px;
    width: 30px;
    height: 20px;
    display: block;
    pointer-events: none;
    content: "\f041";
    font-family: FontAwesome;
    font-size: 2.5em;
    line-height: 0.5;
}
.hotelInfo .address:before{
    line-height: 0.8;
}
.hotelInfo .telephone:before{
    content: "\f095";
    font-size: 2em;
}
.hotelInfo .fax:before{
    content: "\f1ac";
    font-size: 1.6em;
}
.hotelInfo .email:before{
    content: "\f003";
    font-size: 1.5em;
    line-height: 0.6;
}



#get-directions {
    width: 100%;
    margin: 20px auto;
	text-align: center;
	max-width: 1200px;
}
#get-directions .inputBlock{
    width: 100%;
    text-align: left;
    margin: 10px 0;
}
#get-directions .directions-label {
    display: block;
}
#get-directions button.go-direction{
    margin: 15px auto;
}
#get-directions .inlineBlock{
	display: inline-block;
	vertical-align: middle;
}
.directions-label {
	font-size: 1.1em;
	margin: 5px 10px;
}
#get-directions input{
	background-color: #fff;
	margin-bottom: 0;
	font-family: inherit;
	letter-spacing: -0.01em;
	padding: 5px 10px;
	border: 1px solid #dedddd;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.1em;
	max-width: 1000px;
    width: 100%
}
.how-to-get {
	font-size: 1.4em;
	margin-right: 5px;
}
.route-mode button{
	border: none;
	background: #000;
	font-size: 1.1em;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 5px;
	position: relative;
	cursor: pointer;
	padding: 0;
}
.route-mode button:after{
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	content: "\f1b9";
	font-family: FontAwesome;
	color: #888888;
	line-height: 1.5;
	right: 0;
}
.route-mode button.transit:after{
	content: "\f207";
}
.route-mode button.walk:after{
	content: "\f554";
}
.go-direction{
	color: #fff;
	background-color: #ff6600;
	border-radius: 8px;
	border: none;
	font-size: 1.1em;
	text-transform: none;
	padding: 6px 34px 7px;
	cursor: pointer;
	line-height: 1.5;
}
.google-map-content ul{
	display: none;
}

@media(min-width:750px){
	.container .map-wrapper .hotelInfo{
        left: 5%;
    }
    .map-wrapper .hotelInfo {
        padding: 45px 30px 45px 75px;
        position: absolute;
        left: 10%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 25%;
	max-width: 325px;
        background: rgba(255, 255, 255, 0.8);
    }
    .hotelInfo .address:before{
        line-height: 1;
    }
    #get-directions .inputBlock {
        width: auto;
    }
    #get-directions .directions-label {
        display: inline-block;
    }
    #get-directions input {
        max-width: 165px;
    }
    .route-mode button{
        margin: 0 2px;
    }
    .how-to-get {
        font-size: 1.2em;
    }
}

@media(min-width:1000px){
	#get-directions {
        width: 100%;
    }
    #get-directions button.go-direction {
        margin: 0px 15px;
    }
}

@media(min-width:1200px){
	.hotelInfo .address:before{
        line-height: 0.5;
    }
    #get-directions input {
        max-width: 250px;
    }
}
/** END Google Map - Simple **/
/** START Main Visual - blank **/

.main-visual, .main-visual .slick-list{
    width: 100%;
    height: auto;
    position: relative;
}
.main-visual, .main-visual .slick-list, .main-visual .slider-item {
    height: 200px;
}
.main-visual .slick-slide img {
    display: none;
}
.slider-item{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.main-visual-arrow-wrapper{
    position: absolute;
    top: 50%;
    height: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    margin-top: -10px;
}
.slider-navigation {
    width: 18px;
    height: 25px;
    padding: 0;
    display: block;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    font-size: 3em;
    line-height: 0.5;
    position: relative;
    overflow: hidden;
}
.main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
    opacity: 1;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
.slider-navigation span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
	left: 50%;
}
.main-visual-arrow-wrapper .slider-navigation span {
	position: absolute;
	left: 50%;
	height: 59%;
}
.nav-left .line-one {
	transform: rotate(45deg);
	top: 0;
}
.nav-left .line-two {
	transform: rotate(-45deg);
	bottom: 0;
}
.nav-right .line-one {
	transform: rotate(-45deg);
	top: 0;
}
.nav-right .line-two {
	transform: rotate(45deg);
	bottom: 0;
}
.main-visual:hover .main-visual-pager-wrapper, .main-visual:hover .main-visual-arrow-wrapper{
    opacity: 1;
}
.prev{
    float: left;
    margin-left: 10px;
}
.next {
    float: right;
    margin-right: 10px;
}
.main-visual-pager-wrapper{
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}
.main-visual-pager-wrapper .slick-dots{
    text-align: center;
}
.main-visual-pager-wrapper .slick-dots li{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    cursor: pointer;
    border: 2px solid #fff;
}
.main-visual-pager-wrapper .slick-dots li.slick-active{
    cursor: default;
    background: transparent;
}
.main-visual-slogan-wrapper{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 38px;
    font-size: 0.75em;
}
.slider-item, .slogan-read-more, p.slogan, .main-visual-pager-wrapper .slick-dots, ul.slider-wrapper{
    margin-bottom: 0;
}
ul.slider-wrapper{
    list-style-type:none;
}
.main-visual-slogan-wrapper .container{
    padding: 0 30px;
}
.slogan-read-more .read-more{
    text-decoration: none;
    color: #fff;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
p.slogan{
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    padding-bottom: 5px;
}
.slogan-read-more .read-more:hover{
    opacity: 0.5;
}
.slick-slide img {
    display: inline-block;
}
.main-visual:before{
  content: '';
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.main-visual .slick-list{
    height: 100%;
}
header.header-fixed{
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.8);
	top: 0;
	left: 0;
}
.main-visual.header-fixed, .main-visual.header-fixed .slick-list, .header-fixed .slick-list .slider-item{
    height: 100vh;
}
.header-fixed .main-visual-arrow-wrapper {
	margin-top: 27px;
}
.header-fixed .top-bar{
    background-color: rgba(0, 0, 0, 0.7);
}
.main-visual.loading:before{
    opacity: 0;
}

/* Larger than Mobile */
@media (min-width: 767px) {
	.main-visual, .main-visual .slick-list, .main-visual .slider-item {
        height: 480px;
    }
   .main-visual .slick-list{
        height: 100%;
        min-height: 480px;
    }
	.main-visual.header-fixed, .header-fixed .slick-list, .header-fixed .slick-list .slider-item{
		height: 100vh;
	}
    .slider-navigation {
        width: 35px;
        height: 53px;
        font-size: 6em;
    }
    p.slogan{
        font-size: 3em;
        margin-bottom: 0;
        padding-bottom: 15px;
    }
    .main-visual-pager-wrapper .slick-dots li{
        width: 8px;
        height: 8px;
        margin: 0 7px;
        border: 3px solid #fff;
    }
    .main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
        opacity: 1;
    }
    .prev{
        margin-left: 40px;
    }
    .next {
        margin-right: 40px;
    }
    .main-visual-arrow-wrapper{
        margin-top: -21px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 27px;
	}
    .main-visual-pager-wrapper{
        bottom: 20px;
    }
    .main-visual-slogan-wrapper{
        position: absolute;
        bottom: 80px;
        right: 0;
        text-align: right;
        font-size: 0.85em;
    }
}

/* Larger than Ipad */
@media (min-width: 1200px) {
    .slider-navigation{
        width: 50px;
        height: 76px;
        font-size: 9em;
    }
    .main-visual-pager-wrapper .slick-dots li{
        margin: 0 8px;
        border: 3px solid #fff;
    }
    .main-visual-arrow-wrapper{   
        opacity: 0;
    }
    .prev{
        margin-left: 100px;
    }
    .next {
        margin-right: 100px;
    }
    .main-visual-arrow-wrapper {
       margin-top: -42px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 0;
	}
    .main-visual-slogan-wrapper{
        font-size: 1em;
    }
}
/** END Main Visual - blank **/
/** START Main Content Block H1-C **/

h1 .first-phrase{
   display:block;
   font-size:0.85em;
}
.main-content-block.main-content-block-l{
    text-align:left;
}
ul li, ol li {
	text-align: left;
}
.no-content{
display:none;
}
@media (min-width: 1000px) {
    .main-content-block{
        max-width:80%;
        margin:20px auto;
    }
}

.main-content-block.main-content-block-c{
    text-align:center;
}
/** END Main Content Block H1-C **/
/** START Gallery A - Style-1 **/
.gallery-typeA .gallery-list,
.gallery-typeA .gallery-item-list,
.gallery-typeA .gallery-list li{
    list-style-type: none;
    margin: 0;
}

.gallery-typeA .gallery-item .image-wrapper{
    padding: 37.5% 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}
.gallery-typeA .xbox.gallery-item .image-wrapper{
    margin-bottom: 0;
}
.gallery-typeA .slick-slide .gallery-item .image-wrapper.video-item{
    padding: 35.4% 50%;
}
.gallery-typeA .gallery-item .image-wrapper .video-item{
    background: none;
}
    .gallery-typeA .gallery-item .image-wrapper .mobile-iframe {
    	border: 0;
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
    .gallery-typeA .gallery-item img,
    .gallery-typeA .video-src,
    .gallery-typeA .image-wrapper .image-caption{
        display: none;
    }

.gallery-typeA .gallery-cat-wrapper {
    margin: 0 auto 15px;
}

.gallery-typeA .gallery-cat-inner-wrapper,
.gallery-typeA .image-wrapper .image-caption{
    position: relative;
	padding-top: 50px;
    border: 1px solid #a9a9a9;
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition:    all 0.5s ease-in-out;
	-o-transition:      all 0.5s ease-in-out;
	-ms-transition:     all 0.5s ease-in-out;
	transition:     	all 0.5s ease-in-out;
}

.gallery-typeA .gallery-cat-wrapper.open {
	max-height: 1000px;
}
    .gallery-typeA .gallery-cat-wrapper .gallery-label{
        color: #838383;
        cursor: pointer;
        display: none;
        width: calc(100% - 53px);
        padding: 13px 33px 13px 20px;
    }
    
    .gallery-typeA .gallery-label.active .fa{
        color: #000;
        display: none;
        position: absolute;
        right: 15px;
        top: 16px;
        font-size: 1.1em;
        pointer-events: none
    }
    .gallery-typeA .gallery-label .fa{
        display: none;
    }
    .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        color: #000;
        display: block;
    	position: absolute;
    	top: 0;
    	left: 0;
    	overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .gallery-typeA .gallery-cat-wrapper.open .gallery-label,
    .gallery-typeA .gallery-label.active .fa{
        display: block;
    }
    .gallery-typeA .gallery-cat-wrapper.open .fa-angle-down:before {
    	content: "\f106";
    }

    .gallery-typeA .gallery-cat-wrapper,
    .gallery-typeA .gallery-item-list{
    	text-align: center;
    }
        
    .gallery-typeA .gallery-item-list{
    	width: 100%;
        margin: 0 auto;
    	position: absolute;
    	top: 0;
    	left: 0;
    	opacity: 0;
    	pointer-events: none;
    	z-index: 0;
    	-webkit-transition: all .4s ease-in-out;
    	-moz-transition:    all .4s ease-in-out;
    	-o-transition:      all .4s ease-in-out;
    	-ms-transition:     all .4s ease-in-out;
    	transition:     	all .4s ease-in-out;
    }
    .gallery-typeA .gallery-item-list .slick-slide{
        overflow: hidden;
    }
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-item-list.active{
        opacity: 1;
        position: relative;
        pointer-events: auto;
        z-index: 1;
    }
        .gallery-typeA .gallery-item-list .xList-item {
        	width: 100%;
        }
            .gallery-typeA .gallery-item-list .data-fancy{
                pointer-events: none    
            }
            .gallery-typeA .slick-arrow {
                cursor: pointer;
                position: absolute;
                top: 50%;
                font-size: 3em;
                color: #fff;
                z-index: 1;
                -webkit-transition: translateY(-50%);
            	-moz-transition:    translateY(-50%);
            	-o-transition:      translateY(-50%);
            	-ms-transition:     translateY(-50%);
                transform:          translateY(-50%);
            }
            .gallery-typeA .slick-arrow.prev-arrow{
                left: 3%;
            }
            .gallery-typeA .slick-arrow.next-arrow{
                right: 3%;
            }



/* For devices larger than 400px */
@media (min-width: 400px) and (max-width: 549px) {
    .gallery-typeA .gallery-list{
        max-width: 85%;
        margin: 0 auto;
    }
}
/* For devices larger than 550px */
@media (min-width: 550px) and (max-width: 749px) {
    .gallery-typeA .gallery-list{
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    .gallery-typeA .gallery-list{
        position: relative;
    }
    .gallery-typeA .gallery-cat-inner-wrapper {
    	width: 100%;
    	border: 0;
    	padding: 0;
    	max-height: none;
    }
    .gallery-typeA .gallery-item-list{
        font-size: 0;
        overflow: hidden;
        pointer-events: none;
    }
        .gallery-typeA .gallery-cat-wrapper .gallery-label {
        	padding: 4px 28px 4px 20px;
        	border-right: 1px solid #838383;
        	margin-bottom: 15px;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label:last-child {
            border: none;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label,
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active{
            display: inline-block;
            width: auto;
        }
        .gallery-typeA .gallery-cat-wrapper .gallery-label.active {
        	position: relative;
        	top: auto;
        	left: auto;
        	overflow: visible;
        }
            .gallery-typeA .gallery-label.active .fa {
                display: none;
            }
    .gallery-typeA .gallery-item-list .xList-item {
    	width: 31.8%;
    	max-width: 435px;
    	margin: 0 0 1.15% 0;
    	display: inline-block;
    }
    .gallery-typeA .gallery-item-list .xList-item:nth-child(2n){
        margin: 0 1.15% 1.15% 1.15%;
    }
    
        .gallery-typeA .gallery-item-list .data-fancy {
            pointer-events: auto;
        	line-height: 0;
        	display: block;
        }
            .gallery-typeA .gallery-item-list .fa-play-circle:before {
            	position: absolute;
            	top: 50%;
            	left: 50%;
            	color: #fff;
            	font-size: 4em;
                -webkit-transition: translate(-50%, -50%);
                -moz-transition:    translate(-50%, -50%);
                -o-transition:      translate(-50%, -50%);
                -ms-transition:     translate(-50%, -50%);
            	transform:          translate(-50%, -50%);
            }
            .gallery-typeA .gallery-item-list .image-wrapper a{
                display: block;
                width: 100%;
                height: 100%;
            }
                .gallery-typeA .image-wrapper .image-caption {
                	width: 90%;
                	position: absolute;
                	left: 0;
                	bottom: 0;
                	height: 45px;
                	color: #fff;
                	padding: 0 5%;
                	display: block;
                	background-color: rgba(0,0,0,0.6);
                	overflow: hidden;
                	text-overflow: ellipsis;
                	line-height: 3.5;
                	white-space: nowrap;
                	border: 0;
                	font-size: 14px;
                	font-family: 'Poppins', Helvetica, Arial, sans-serif;
                }
                
            
/* fancybox */
.gallery-typeA .fancybox-button--thumbs{
	position: fixed;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
}
.gallery-typeA.fancybox-show-thumbs .fancybox-button--thumbs{
    bottom: 95px;
}

.gallery-typeA .fancybox-thumbs-x,
.gallery-typeA .fancybox-button--thumbs{
    -webkit-transition: all .4s ease-in-out;
	-moz-transition:    all .4s ease-in-out;
	-o-transition:      all .4s ease-in-out;
	-ms-transition:     all .4s ease-in-out;
	transition:     	all .4s ease-in-out;
}
.gallery-typeA .fancybox-thumbs-x {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 0;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    display: block !important;
}
.gallery-typeA.fancybox-show-thumbs .fancybox-thumbs-x {
	height: 95px;
}
    .gallery-typeA.fancybox-container .fancybox-thumbs-loading.video-thumb:after{
        content: "\f144";
        font-family: FontAwesome;
        text-rendering:auto;
        -webkit-font-smoothing:antialiased;
        -moz-osx-font-smoothing:grayscale;
        font-size: 32px;
        color: #fff;
        text-align: center;
        height: 100%;
        line-height: 75px;
        display: block;
    }
  
    .gallery-typeA.fancybox-show-thumbs .fancybox-inner {
        right: 0;
        bottom: 95px;
    }
        .gallery-typeA .fancybox-infobar{
            font-size: 1.2em;
        }
            .gallery-typeA .fancybox-infobar span:first-child {
            	font-size: 1.3em;
            }

.gallery-typeA .fancybox-infobar {
	left: 15px;
	top: 5px;
}

/* button styles */
.gallery-typeA .fancybox-toolbar {
	right: 20px;
	top: 20px;
}
.gallery-typeA .fancybox-button--arrow_right,
.gallery-typeA .fancybox-button--arrow_left,
.gallery-typeA .fancybox-button--close{
    background: transparent;
    border: 0;
}
.gallery-typeA .fancybox-button span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
    left: 50%;
}
/* close button */
.gallery-typeA .fancybox-button--close .line-one {
    -webkit-transition: translate(-50%, -50%) rotate(-45deg);
    -moz-transition:    translate(-50%, -50%) rotate(-45deg);
    -o-transition:      translate(-50%, -50%) rotate(-45deg);
    -ms-transition:     translate(-50%, -50%) rotate(-45deg);
	transform:          translate(-50%, -50%) rotate(-45deg);
	top: 50%;
}
.gallery-typeA .fancybox-button--close .line-two {
	-webkit-transition: translate(-50%, -50%) rotate(45deg);
    -moz-transition:    translate(-50%, -50%) rotate(45deg);
    -o-transition:      translate(-50%, -50%) rotate(45deg);
    -ms-transition:     translate(-50%, -50%) rotate(45deg);
	transform:          translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

/* arrows */
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 80px;
	width: 80px;
	-webkit-transition: translateY(-50%);
    -moz-transition:    translateY(-50%);
    -o-transition:      translateY(-50%);
    -ms-transition:     translateY(-50%);
	transform:          translateY(-50%);
}
.gallery-typeA .fancybox-navigation .fancybox-button {
	height: 65px;
	width: 40px;
}
    .gallery-typeA .fancybox-navigation .fancybox-button span{
        position: absolute;
    	left: 50%;
    	height: 59%;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-one{
    	transform: rotate(-45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_right .line-two {
    	transform: rotate(45deg);
    	bottom: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-one{
    	transform: rotate(45deg);
    	top: 0;
    }
    .gallery-typeA .fancybox-button--arrow_left .line-two {
    	transform: rotate(-45deg);
    	bottom: 0;
    }

.gallery-typeA .fancybox-slide--image {
	padding: 70px 0;
}
.gallery-typeA .fancybox-caption{
    font-size: 1.1em;
    width: calc(100% - 45px);
}
.gallery-typeA .fancybox-caption:before,
.gallery-typeA .fancybox-caption:after{
    display: none;
}
.gallery-typeA .fancybox-slide--iframe .fancybox-content{
    position: relative;
    height: 0;
    padding-top: 49.25%;
	max-width: 80vw;
}

    .gallery-typeA .fancybox-slide--iframe .fancybox-iframe {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 6em;
    	font-size: 6vw;
    }
    .gallery-typeA .image-wrapper .image-caption{
        height: 50px;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
    .gallery-typeA .gallery-item-list .fa-play-circle:before {
    	font-size: 7em;
    	font-size: 7vw;
    }
    .gallery-typeA .image-wrapper .image-caption {
        height: 0;
    }
    .gallery-typeA .data-fancy:hover .image-caption {
    	height: 50px;
    }
    .gallery-typeA .fancybox-navigation .fancybox-button {
    	height: 80px;
    	width: 80px;
    }
    .gallery-typeA .fancybox-slide--iframe .fancybox-content {
    	padding-top: 35.25%;
        max-width: 62vw;
    }
}


/* Larger than Desktop HD */
@media (min-width: 1920px) {
    .gallery-typeA .gallery-item-list .xList-item:nth-child(4n){
        margin-right: 0;
    }
}

.gallery-typeA.style-1 .gallery-row{
    height:400px;
    margin-bottom:20px;
}
.gallery-typeA.style-1 .xbox.gallery-item,
.gallery-typeA.style-1 .gallery-section,
.gallery-typeA.style-1 .xbox.gallery-item .inner-container,
.gallery-typeA.style-1 .gallery-item-list .data-fancy,
.gallery-typeA.style-1 .gallery-row .gallery-item .image-wrapper{
	height: 100%;
}
.gallery-typeA.style-1 .gallery-row .gallery-item .image-wrapper{
    padding:0;
}
.gallery-typeA.style-1 .gallery-item-list .gallery-row .xList-item,
.gallery-typeA.style-1 .gallery-item-list .gallery-row .xList-item:nth-child(2n){
    float: left;
    background-size:cover;
    background-position:center center;
	margin: 0;
	position:relative;
	max-width:none;
}

.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1 .xList-item{
	width:calc((100% - 40px) * 25 / 100);
	height:100%;
}
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.odd .xList-item:nth-child(2n),
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.even .xList-item:first-child{
	width:calc((100% - 40px) * 50 / 100);
}
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1 .xList-item:nth-child(2n){
	margin:0 20px;
}
.gallery-typeA-style-1 .gallery-item-list .gallery-row.layout-1 .xList-item:nth-child(2n){
	margin:0 20px;
}

.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.items-1 .xList-item,
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.odd.items-1 .xList-item
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.even.items-1 .xList-item{
	width:100%;
}
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.items-2 .xList-item,
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.odd.items-2 .xList-item,
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.even.items-2 .xList-item{
	width:calc(50% - 10px);
}
.gallery-typeA.style-1 .gallery-item-list .gallery-row.layout-1.balance-row.items-2 .xList-item:nth-child(2n){
	margin:0 0 0 20px;
}
/** END Gallery A - Style-1 **/
/** START Main Row - blank **/

.main-row{
    margin-bottom:40px;
}

@media (min-width: 1000px) {
	.main-row{
		 margin-bottom:100px;
	}
}
/** END Main Row - blank **/
/** START xBox D-6 **/

.xbox .image-wrapper {
      margin-bottom:20px;
}
.xbox h3 span {
	display:block;
}
.xbox .first-phrase {
	font-size: 0.85em;
}
/** END xBox tA Styles **/

/** END xBox D-6 **/
/** START xBox D-6 **/

/*.xbox-typeD {
	position: relative;
}
    .xbox-typeD .image-wrapper img{
        height:auto;
        width:100%;
    }
    .xbox-typeD .flex-container {
    	bottom: 0;
    	left: 0;
    	background: rgba(255,255,255,0.6);
    	width: 100%;
    	padding: 21px 27px 24px;
    	box-sizing: border-box;
    }
        .xbox-typeD h3 {
        	margin-bottom: 0;
        	font-weight: 300;
        	line-height: 1.1;
        }
.xbox-typeD h3 span {
	display: block;
}
            .xbox-typeD .first-phrase {
            	font-size: 0.55em;
            	color:#323232;
            }
            .xbox-typeD .second-phrase {
            	font-size: 0.3em;
            	margin-top: 6px;
            	letter-spacing: 0.1px;
            	color:#565656;
            }
.xbox-typeD .item-link {
	font-size: 0.75em;
	padding-left: 15px;
}
@media (min-width: 750px) {
    .xbox-typeD .flex-container {
        padding: 10px 15px 10px;
    }   
}
@media (min-width: 1200px) {
    .xbox-typeD .flex-container {
        padding: 21px 27px 24px;
    } 
.xbox-typeD .item-link {
	padding-left: 27px;
}
}*/

/**xBox Style-6**/
/** END xBox D-6 **/
/** START xBox D-6 **/
.xbox.xbox-style-6 {
    position: relative;
margin-bottom: 0;
}
    .xbox.xbox-style-6 .image-wrapper img{
        height:auto;
        width:100%;
    }

    .xbox.xbox-style-6 .flex-container {
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(255,255,255,0.6);
        width: 69%;
        padding: 21px 27px 24px;
        box-sizing: border-box;
    }
        .xbox.xbox-style-6 h3 {
            margin-bottom: 0;
            font-weight: 300;
            line-height: 1.1;
        }
.xbox.xbox-style-6 h3 span {
    display: block;
}
            .xbox.xbox-style-6 .first-phrase {
                font-size: 0.55em;
                color:#323232;
            }
            .xbox.xbox-style-6 .second-phrase {
                font-size: 0.3em;
                margin-top: 6px;
                letter-spacing: 0.1px;
                color:#565656;
            }
 .xbox.xbox-style-6 .read-more.link{
margin:0;
}
    .xbox.xbox-style-6 .item-link {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
@media (min-width: 750px) {
    .xbox.xbox-style-6 .flex-container {
        padding: 10px 15px 10px;
        width:80%;
    }   
}
@media (min-width: 1200px) {
    .xbox.xbox-style-6 .flex-container {
        padding: 21px 11px 24px 27px;
        width:64%;
    }   
}
/** END xBox D-6 **/
/** START Sub Row - blank **/

.sub-row{
    margin-bottom: 25px;
}

@media (min-width: 1000px) {
	.sub-row{
		 margin-bottom: 75px;
	}
}
/** END Sub Row - blank **/
/** START Google Map - Simple **/
#map{
	height: 500px;
	width: 100%;
    position: relative;
    /*-webkit-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.75);*/
}
#map:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(1,122,130,1);
  border-radius: 50%;
  border-top: 4px solid rgba(1,122,130,0.5);
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.map-wrapper{
    position: relative;
}
.no-contents{
    display: none;
}
.map-wrapper .hotelInfo {
    padding: 20px 20px 20px 50px;
	max-width: 275px;
	margin: 0 auto;
}
.hotelInfo > *:last-child p{
    margin-bottom: 0;
}
.hotelInfo > *:last-child{
    margin-bottom: 0;
    padding-bottom: 0; 
}
.map-wrapper .hotelInfo a{
    color: #413838;
}
.hotelInfo > div{
    position: relative;
}
.hotelInfo > div:before{
    position: absolute;
    left: -40px;
    top: 5px;
    width: 30px;
    height: 20px;
    display: block;
    pointer-events: none;
    content: "\f041";
    font-family: FontAwesome;
    font-size: 2.5em;
    line-height: 0.5;
}
.hotelInfo .address:before{
    line-height: 0.8;
}
.hotelInfo .telephone:before{
    content: "\f095";
    font-size: 2em;
}
.hotelInfo .fax:before{
    content: "\f1ac";
    font-size: 1.6em;
}
.hotelInfo .email:before{
    content: "\f003";
    font-size: 1.5em;
    line-height: 0.6;
}



#get-directions {
    width: 100%;
    margin: 20px auto;
	text-align: center;
	max-width: 1200px;
}
#get-directions .inputBlock{
    width: 100%;
    text-align: left;
    margin: 10px 0;
}
#get-directions .directions-label {
    display: block;
}
#get-directions button.go-direction{
    margin: 15px auto;
}
#get-directions .inlineBlock{
	display: inline-block;
	vertical-align: middle;
}
.directions-label {
	font-size: 1.1em;
	margin: 5px 10px;
}
#get-directions input{
	background-color: #fff;
	margin-bottom: 0;
	font-family: inherit;
	letter-spacing: -0.01em;
	padding: 5px 10px;
	border: 1px solid #dedddd;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.1em;
	max-width: 1000px;
    width: 100%
}
.how-to-get {
	font-size: 1.4em;
	margin-right: 5px;
}
.route-mode button{
	border: none;
	background: #000;
	font-size: 1.1em;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 5px;
	position: relative;
	cursor: pointer;
	padding: 0;
}
.route-mode button:after{
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	content: "\f1b9";
	font-family: FontAwesome;
	color: #888888;
	line-height: 1.5;
	right: 0;
}
.route-mode button.transit:after{
	content: "\f207";
}
.route-mode button.walk:after{
	content: "\f554";
}
.go-direction{
	color: #fff;
	background-color: #ff6600;
	border-radius: 8px;
	border: none;
	font-size: 1.1em;
	text-transform: none;
	padding: 6px 34px 7px;
	cursor: pointer;
	line-height: 1.5;
}
.google-map-content ul{
	display: none;
}

@media(min-width:750px){
	.container .map-wrapper .hotelInfo{
        left: 5%;
    }
    .map-wrapper .hotelInfo {
        padding: 45px 30px 45px 75px;
        position: absolute;
        left: 10%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 25%;
	max-width: 325px;
        background: rgba(255, 255, 255, 0.8);
    }
    .hotelInfo .address:before{
        line-height: 1;
    }
    #get-directions .inputBlock {
        width: auto;
    }
    #get-directions .directions-label {
        display: inline-block;
    }
    #get-directions input {
        max-width: 165px;
    }
    .route-mode button{
        margin: 0 2px;
    }
    .how-to-get {
        font-size: 1.2em;
    }
}

@media(min-width:1000px){
	#get-directions {
        width: 100%;
    }
    #get-directions button.go-direction {
        margin: 0px 15px;
    }
}

@media(min-width:1200px){
	.hotelInfo .address:before{
        line-height: 0.5;
    }
    #get-directions input {
        max-width: 250px;
    }
}
/** END Google Map - Simple **/
/** START Image / Logo - with Link **/

.image-only{
    text-align:center;
position:relative;
}

.image-only img{
    width:auto;
    max-width:100%;
}
.image-only a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/** END Image / Logo - with Link **/
/** START Main Visual - blank **/

.main-visual, .main-visual .slick-list{
    width: 100%;
    height: auto;
    position: relative;
}
.main-visual, .main-visual .slick-list, .main-visual .slider-item {
    height: 200px;
}
.main-visual img {
    display: none;
}
.slider-item{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.main-visual-arrow-wrapper{
    position: absolute;
    top: 50%;
    height: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    margin-top: -10px;
}
.slider-navigation {
    width: 18px;
    height: 25px;
    padding: 0;
    display: block;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    font-size: 3em;
    line-height: 0.5;
    position: relative;
    overflow: hidden;
}
.main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
    opacity: 1;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
.slider-navigation span {
	width: 1px;
	display: block;
	background: #fff;
	height: 100%;
	position: absolute;
	left: 50%;
}
.main-visual-arrow-wrapper .slider-navigation span {
	position: absolute;
	left: 50%;
	height: 59%;
}
.nav-left .line-one {
	transform: rotate(45deg);
	top: 0;
}
.nav-left .line-two {
	transform: rotate(-45deg);
	bottom: 0;
}
.nav-right .line-one {
	transform: rotate(-45deg);
	top: 0;
}
.nav-right .line-two {
	transform: rotate(45deg);
	bottom: 0;
}
.main-visual:hover .main-visual-pager-wrapper, .main-visual:hover .main-visual-arrow-wrapper{
    opacity: 1;
}
.prev{
    float: left;
    margin-left: 10px;
}
.next {
    float: right;
    margin-right: 10px;
}
.main-visual-pager-wrapper{
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}
.main-visual-pager-wrapper .slick-dots{
    text-align: center;
}
.main-visual-pager-wrapper .slick-dots li{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    cursor: pointer;
    border: 2px solid #fff;
}
.main-visual-pager-wrapper .slick-dots li.slick-active{
    cursor: default;
    background: transparent;
}
.main-visual-slogan-wrapper{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 38px;
    font-size: 0.75em;
}
.slider-item, .slogan-read-more, p.slogan, .main-visual-pager-wrapper .slick-dots, ul.slider-wrapper{
    margin-bottom: 0;
}
.main-visual-slogan-wrapper .container{
    padding: 0 30px;
}
.slogan-read-more .read-more{
    text-decoration: none;
    color: #fff;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
p.slogan{
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 5px;
}
.slogan-read-more .read-more:hover{
    opacity: 0.5;
}
.main-visual:before{
  content: '';
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #9b9999;
  width: 48px;
  height: 48px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.main-visual .slick-list{
    height: 100%;
}
header.header-fixed{
    position: fixed;
    width: 100%;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.8);
	top: 0;
	left: 0;
}
.main-visual.header-fixed, .main-visual.header-fixed .slick-list, .header-fixed .slick-list .slider-item{
    height: 100vh;
}
.header-fixed .main-visual-arrow-wrapper {
	margin-top: 27px;
}
.header-fixed .top-bar{
    background-color: rgba(0, 0, 0, 0.7);
}
.main-visual.loading:before{
    opacity: 0;
}

/* Larger than Mobile */
@media (min-width: 767px) {
	.main-visual, .main-visual .slick-list, .main-visual .slider-item {
        height: 480px;
    }
   .main-visual .slick-list{
        height: 100%;
        min-height: 480px;
    }
	.main-visual.header-fixed, .header-fixed .slick-list, .header-fixed .slick-list .slider-item{
		height: 100vh;
	}
    .slider-navigation {
        width: 35px;
        height: 53px;
        font-size: 6em;
    }
    p.slogan{
        font-size: 3em;
        margin-bottom: 15px;
    }
    .main-visual-pager-wrapper .slick-dots li{
        width: 8px;
        height: 8px;
        margin: 0 7px;
        border: 3px solid #fff;
    }
    .main-visual-pager-wrapper,  .main-visual-arrow-wrapper{   
        opacity: 1;
    }
    .prev{
        margin-left: 40px;
    }
    .next {
        margin-right: 40px;
    }
    .main-visual-arrow-wrapper{
        margin-top: -21px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 27px;
	}
    .main-visual-pager-wrapper{
        bottom: 20px;
    }
    .main-visual-slogan-wrapper{
        position: absolute;
        bottom: 80px;
        right: 0;
        text-align: right;
        font-size: 0.85em;
    }
}

/* Larger than Ipad */
@media (min-width: 1200px) {
    .slider-navigation{
        width: 50px;
        height: 76px;
        font-size: 9em;
    }
    .main-visual-pager-wrapper .slick-dots li{
        margin: 0 8px;
        border: 3px solid #fff;
    }
    .main-visual-arrow-wrapper{   
        opacity: 0;
    }
    .prev{
        margin-left: 100px;
    }
    .next {
        margin-right: 100px;
    }
    .main-visual-arrow-wrapper {
       margin-top: -42px;
    }
	.header-fixed .main-visual-arrow-wrapper {
		margin-top: 0;
	}
    .main-visual-slogan-wrapper{
        font-size: 1em;
    }
}
/** END Main Visual - blank **/
/** START Image / Logo - with Link **/

.image-only{
    text-align:center;
position:relative;
}

.image-only img{
    width:auto;
    max-width:100%;
}
.image-only a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/** END Image / Logo - with Link **/
/** START Cookie Message Box **/
.cookie-section {
    width: 100%;
    z-index: 9999;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 0;
}
    .cookie-section .cookie-wrapper {
        padding: 25px 30px 25px 30px;
        max-width: 1000px;
        margin: 0 auto 0;
        display: inline-block;
    }
        .cookie-section .cookie-wrapper .message p,
        .cookie-section .cookie-wrapper .message span {
            margin: 0;
        }
        .cookie-section .cookie-wrapper a.cookie-accept{
            text-decoration: none;
            margin-top: 3px;
            display: inline-block;
            text-transform: uppercase;
        }
@media (min-width: 1200px) {
    .cookie-section .cookie-wrapper {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-align: center;
        align-items: center;
    }
    .cookie-section .cookie-wrapper .cookie-content-wrap {
        width: 80%;
    }
    .cookie-section .cookie-wrapper .cookie-btn-wrap {
        width: 20%;
    }
}
@media (max-width: 800px) {
    .cookie-section .cookie-wrapper p.accept-button{
        margin-top:20px;
    }
}
/** END Cookie Message Box **/
/** START Cookie Message Box **/
.cookie-section {
    width: 100%;
    z-index: 9999;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 0;
}
    .cookie-section .cookie-wrapper {
        padding: 25px 30px 25px 30px;
        max-width: 1000px;
        margin: 0 auto 0;
        display: inline-block;
    }
        .cookie-section .cookie-wrapper .message p,
        .cookie-section .cookie-wrapper .message span {
            margin: 0;
        }
        .cookie-section .cookie-wrapper a.cookie-accept{
            text-decoration: none;
            margin-top: 3px;
            display: inline-block;
            text-transform: uppercase;
        }
@media (min-width: 1200px) {
    .cookie-section .cookie-wrapper {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-align: center;
        align-items: center;
    }
    .cookie-section .cookie-wrapper .cookie-content-wrap {
        width: 80%;
    }
    .cookie-section .cookie-wrapper .cookie-btn-wrap {
        width: 20%;
    }
}
@media (max-width: 800px) {
    .cookie-section .cookie-wrapper p.accept-button{
        margin-top:20px;
    }
}
/** END Cookie Message Box **/
/** START R2G Main Content H1 + P **/
.main-content-block{
    padding: 0 20px;
}
.container .main-content-block{
    padding: 0
}
.text-align-left.main-content-block *{
	text-align: left;
}
.text-align-center.main-content-block *{
	text-align: center;
}
.text-align-right.main-content-block *{
	text-align: right;
}
/** END R2G Main Content H1 + P **/
/** START R2G xList Accordion **/
.accordion-xlist .accordion-title{
    position: relative;
    margin: 0;
    padding: 5px 40px 5px 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.accordion-xlist .accordion-title,
.collapsible .accordion-xlist .active .accordion-title{
    cursor: pointer;    
}
.accordion-xlist .active .accordion-title{
    cursor: default;
}
.accordion-xlist .accordion-title:after {
	content: '\eb63';
	font-family: 'icomoon';
	position: absolute;
	top: 50%;
	right: 0;
	
	-ms-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.accordion-xlist .active .accordion-title:after{
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.accordion-xlist > .xList-items > .xList-item .inner-wrapper {
    display: none;
}
.no-js .accordion-xlist > .xList-items > .xList-item .inner-wrapper{
    display: block;
}
/** END R2G xList Accordion **/