/*
 * jQuery FlexSlider v2.4.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 * 
 */


/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/

.flex-container a:hover,
.flex-slider a:hover {
    outline: none;
}

.slides,
.slides>li,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-pauseplay span {
    text-transform: capitalize;
}


/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/

.flexslider {
    margin: 0;
    padding: 0;
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
    width: 100%;
    display: block;
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .flexslider .slides {
    display: block;
}

* html .flexslider .slides {
    height: 1%;
}

.no-js .flexslider .slides>li:first-child {
    display: block;
}


/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/

.flexslider {
    /* margin: 0 0 60px 0; */
    background: #fff;
    position: relative;
    zoom: 1;
    z-index: 0;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides img {
    height: auto;
    -moz-user-select: none;
}

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.loading .flex-viewport {
    max-height: 300px;
}

.carousel li {
    margin-right: 5px;
}

.flex-direction-nav {
    *height: 0;
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 42px;
    padding: 0px;
    margin: -20px 0 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flex-direction-nav a::before {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    margin-top: 6px;
    margin-left: 10px;
    border-left: 4px solid rgb(0, 0, 0);
    border-top: 4px solid rgb(0, 0, 0);
    content: "";
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

.flex-direction-nav a.flex-next:before {
    margin-left: 0px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.flex-direction-nav .flex-prev {
    left: 0px;
}

.flex-direction-nav .flex-next {
    right: 0px;
    text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 0.5;
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 0.5;
}

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000;
}

.flex-pauseplay a::before {
    font-family: "flexslider-icon";
    font-size: 20px;
    display: inline-block;
    content: '\f004';
}

.flex-pauseplay a:hover {
    opacity: 1;
}

.flex-pauseplay a.flex-play:before {
    content: '\f003';
}

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -50px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 2px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.flex-control-paging li a {
    width: 32px;
    height: 6px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.6);
    cursor: default;
}

.flex-control-thumbs {
    margin: 15px 0 0;
    position: static;
    overflow: hidden;
    text-align: center;
    font-size: 0;
}

.flex-control-thumbs li {
    display: inline-block;
    width: 80px;
    margin: 4px;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.flex-control-thumbs img:hover {
    opacity: 0.5;
}

.flex-control-thumbs .flex-active {
    opacity: 0.5;
    cursor: default;
}


/* ====================================================================================================================
 * メインイメージ
 * ====================================================================================================================*/

#topmainimg .flexslider {
    /* margin: 0 0 70px; */
    padding: 0 !important;
    background-color: #000;
    height: 100vh;
}

#mainimg .flexslider {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    #mainimg .flexslider {
        margin: 0;
        padding: 30px 0 0;
        background: #000;
        zoom: 1;
    }
    #topmainimg .flexslider {
        margin: 0;
        height: 60vh;
    }
}


/* ====================================================================================================================
 * 各種詳細
 * ====================================================================================================================*/

#detailimg {
    margin: 0 0 50px 0;
    padding: 0;
}

#detailimg .flexslider {
    margin: 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
    z-index: 0;
}

#detailimg .flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    z-index: 50;
}

.flex-control-paging li a {
    width: 32px;
    height: 6px;
    display: block;
    background: #666;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-paging li a:hover {
    background: #333;
    background: rgba(255, 255, 255, 1);
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(255, 255, 255, 0.8);
    cursor: default;
}

@media screen and (max-width: 680px) {
    #detailimg {
        margin: 0;
        padding: 0;
    }
    #detailimg .flexslider {
        margin: 0;
        padding: 0;
        background: none;
        position: relative;
        zoom: 1;
    }
}


/* ====================================================================================================================
 * レストラン個室一覧
 * ====================================================================================================================*/

#privateroom {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

#privateroom .flexslider {
    margin: 0 0 50px 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
    height: 100%;
    overflow: auto;
}

#privateroom .flexslider .slides li {
    padding: 0;
    margin: 0;
    position: relative;
}

#privateroom .flexslider .slides p {
    display: block;
    box-sizing: border-box;
    position: absolute;
    padding: 10px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    bottom: 0;
    right: 0;
    text-align: right;
    font-size: 12px;
    z-index: 10000;
}

#privateroom .flex-direction-nav a {
    top: 45%;
}

#privateroom .flex-control-thumbs {
    margin: 10px 0 0 0;
    padding: 0;
    height: auto;
    overflow: visible;
    text-align: left;
    font-size: 0;
    line-height: 0;
    float: none;
    text-align: center;
}

#privateroom .flex-control-thumbs li {
    display: inline-block;
    width: 10%;
    margin: 0;
    padding: 0 2px 0 2px;
    clear: both;
    float: none;
}

#privateroom .flex-control-thumbs img {
    width: 100%;
    margin: 0;
    height: auto;
    display: block;
    opacity: 0.6;
    cursor: pointer;
}

#privateroom .flex-control-thumbs img:hover {
    opacity: 1;
}

#privateroom .flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
}

@media screen and (max-width: 680px) {
    #privateroom .flex-control-thumbs {
        margin: 10px 0 0;
    }
    #privateroom .flex-control-thumbs li {
        width: 40px;
        margin: 0 2px;
    }
}


/* ====================================================================================================================
 * プラン詳細
 * ====================================================================================================================*/

#planimg {
    margin: 0 0 60px 0;
    padding: 0;
}

#planimg .flexslider {
    margin: 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
    height: inherit;
}

#planimg .flex-control-thumbs {
    margin: 30px 0 0;
    height: auto;
    position: static;
    overflow: visible;
    text-align: center;
    font-size: 0;
}

#planimg .flex-control-thumbs li {
    display: inline-block;
    width: 80px;
    margin: 0 5px;
    float: none;
    background-color: #000;
}

#planimg .flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    cursor: pointer;
}

#planimg .flex-control-thumbs img:hover {
    opacity: 1;
}

#planimg .flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
}

@media screen and (max-width: 680px) {
    #planimg .flex-control-thumbs {
        margin: 10px 0 0;
    }
    #planimg .flex-control-thumbs li {
        width: 40px;
        margin: 0 2px;
    }
}


/* ====================================================================================================================
 * おすすめプラン
 * ====================================================================================================================*/

.recomm_plan {
    position: relative;
    display: block;
    padding: 30px 0 20px 0;
    zoom: 1;
    margin: 0;
    text-align: center;
}

.recomm_plan .ttl {
    margin: 0 0 30px 0;
    padding: 0;
    font-size: 24px;
    font-weight: normal;
    font-weight: 300;
    font-family: Hiragino Sans, "游ゴシック", YuGothic, "メイリオ", "meiryo", sans-serif;
    background: none;
}

.recomm_plan .flexslider {
    margin: 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
}

.recomm_plan .flexslider .slides {
    font-size: 12px;
    zoom: 1;
}

.recomm_plan .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 42px;
    padding: 0;
    margin: -30px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.recomm_plan .flex-direction-nav a::before {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    margin-top: 6px;
    margin-left: 10px;
    border-left: 2px solid rgba(0, 0, 0, 0.6);
    border-top: 2px solid rgba(0, 0, 0, 0.6);
    content: "";
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

.recomm_plan .flex-direction-nav a.flex-next::before {
    margin-left: 5px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.recomm_plan .flex-direction-nav .flex-prev {
    left: -45px;
}

.recomm_plan .flex-direction-nav .flex-next {
    right: -45px;
    text-align: right;
}

.recomm_plan .flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1;
    left: -45px;
}

.recomm_plan .flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 0.4;
}

.recomm_plan .flexslider:hover .flex-direction-nav .flex-next {
    opacity: 1;
    right: -45px;
}

.recomm_plan .flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 0.4;
}

.recomm_plan .flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}

.recomm_plan ul.slides li {
    padding: 0;
    margin: 0 0 20px 0;
}

.recomm_plan ul.slides li a {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: none;
    text-align: left;
}

.recomm_plan ul.slides li a:hover {
    opacity: 0.7;
}

.recomm_plan .flexslider ul.slides a img {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.recomm_plan ul.slides li a .wrap {
    display: block;
    padding: 20px 0;
    margin: 0;
    width: 100%;
}

.recomm_plan ul.slides li a .category {
    display: block;
    text-align: left;
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 12px;
    line-height: 1;
    opacity: 0.6;
    display: none;
}

.recomm_plan ul.slides li a .planttl {
    display: block;
    font-size: 14px;
    padding: 0;
    margin: 0 0 10px 0;
    position: relative;
    /*height: 48px;*/
    /*overflow: hidden;*/
    line-height: 24px;
    font-weight: normal;
}

.recomm_plan ul.slides li a p {
    display: none;
}

.recomm_plan ul.slides li a .point {
    display: inline-block;
    margin: 1px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background-color: rgba(0, 0, 0, 1);
    display: none;
}

.recomm_plan ul.slides li a:hover .point {
    background-color: rgba(0, 0, 0, 0.2);
}

.recomm_plan ul.slides li a .price {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: normal;
    display: none;
}

.recomm_plan ul.slides li a .price span {
    margin: 0 0 0 4px;
    font-weight: 600;
    font-size: 18px;
}

.recomm_plan ul.slides li a .icon_new {
    position: absolute;
    top: 0px;
    right: 0;
    display: block;
    overflow: hidden;
    width: 50px;
    height: 0;
    margin: 0;
    padding: 50px 0 0 0;
    background: url(../img/common/icon_new.svgz) center center no-repeat;
    background-size: cover;
    z-index: 1000;
}

.recomm_plan ul.slides li a .icon_no1 {
    position: absolute;
    top: 2px;
    right: 2px;
    display: block;
    overflow: hidden;
    width: 50px;
    height: 0;
    margin: 0;
    padding: 50px 0 0 0;
    background: url(../img/top/icon_no1.png) center center no-repeat;
    background-size: cover;
    z-index: 1;
    display: none;
}

.recomm_plan ul.slides li a .icon_no2 {
    position: absolute;
    top: 2px;
    right: 2px;
    display: block;
    overflow: hidden;
    width: 50px;
    height: 0;
    margin: 0;
    padding: 50px 0 0 0;
    background: url(../img/top/icon_no2.png) center center no-repeat;
    background-size: cover;
    z-index: 1;
    display: none;
}

.recomm_plan ul.slides li a .icon_no3 {
    position: absolute;
    top: 2px;
    right: 2px;
    display: block;
    overflow: hidden;
    width: 50px;
    height: 0;
    margin: 0;
    padding: 50px 0 0 0;
    background: url(../img/top/icon_no3.png) center center no-repeat;
    background-size: cover;
    z-index: 1;
    display: none;
}

@media screen and (max-width: 1023px) {
    .recomm_plan .flex-direction-nav a::before {
        display: none;
    }
    .recomm_plan .flex-direction-nav a.flex-next::before {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .recomm_plan .flexslider {
        margin: 0 0 0px 0;
        padding: 0;
        background: none;
        position: relative;
        zoom: 1;
    }
}

@media screen and (max-width: 680px) {
    .recomm_plan .ttl {
        margin: 0px 0 10px 0;
        padding: 46px 0 0 0;
        font-size: 20px;
        background: url(../img/common/icon_mark_4c.svg) center top no-repeat;
        background-size: 40px;
    }
}


/* ====================================================================================================================
 * トップページおすすめ情報
 * ====================================================================================================================*/

#toprecomm {
    position: absolute;
    bottom: 0px;
    left: 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 5%;
    margin: 0;
    zoom: 1;
    text-align: center;
    background: #493F34;
    overflow: hidden;
}
#toprecomm h2{
    color:#FFF;
    margin:0 0 10px;
    font-size: 22px;
    font-family: serif;
    text-align:left;
}
#toprecomm h2 span.hotel_name{
    font-size: 14px;
}
#toprecomm h2 span.value{
    font-size: 26px;
    border-bottom: 1px solid #FFF;
    line-height: 100%;
}
#toprecomm .flexslider {
    margin: 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
}

#toprecomm .flexslider::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5%;
    height: 0;
    padding: 300px 0 0 0;
    margin: -5% 0 0 -10%;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    -webkit-transform: rotate(22deg);
    -moz-transform: rotate(22deg);
    -o-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
}

#toprecomm .flexslider::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 5%;
    height: 0;
    padding: 300px 0 0 0;
    margin: -5% -8% 0 0;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    -webkit-transform: rotate(22deg);
    -moz-transform: rotate(22deg);
    -o-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
}

#toprecomm .flexslider .slides {
    font-size: 12px;
    zoom: 1;
}

#toprecomm .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 42px;
    padding: 0;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#toprecomm .flex-direction-nav a::before {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    margin-top: 6px;
    margin-left: 10px;
    border-left: 2px solid #9B7D53;
    border-top: 2px solid #9B7D53;
    content: "";
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

#toprecomm .flex-direction-nav a.flex-next::before {
    margin-left: 5px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

#toprecomm .flex-direction-nav .flex-prev {
    left: -45px;
}

#toprecomm .flex-direction-nav .flex-next {
    right: -45px;
    text-align: right;
}

#toprecomm .flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1;
    left: -45px;
}

#toprecomm .flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 0.4;
}

#toprecomm .flexslider:hover .flex-direction-nav .flex-next {
    opacity: 1;
    right: -45px;
}

#toprecomm .flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 0.4;
}

#toprecomm .flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}

#toprecomm ul.slides li {
    padding: 0;
    margin: 0;
}

#toprecomm ul.slides li a {
    display: table;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #fff;
}

#toprecomm ul.slides li a:hover {
    opacity: 0.7;
}

#toprecomm ul.slides a .thumb {
    display: table-cell;
    width: 20%;
    margin: 0;
    padding: 0 0;
    vertical-align: middle;
}

#toprecomm ul.slides a .thumb img {
    display: block;
    width: auto;
    height: auto;
    max-height: 80px;
    margin: 10px auto;
}

#toprecomm ul.slides li a .wrap {
    display: table-cell;
    padding: 0 0 0 10px;
    margin: 0;
    vertical-align: middle;
    height: inherit;
    max-height: 100px;
    overflow: hidden;
}

#toprecomm ul.slides li a .wrap img {
    display: block;
    width: 80%;
    height: auto;
    max-width: 400px;
    max-height: 100px;
}

#toprecomm ul.slides li a .category {
    display: block;
    text-align: left;
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 12px;
    line-height: 1;
    opacity: 0.6;
}

#toprecomm ul.slides li a .infottl {
    display: block;
    font-size: 14px;
    padding: 0;
    margin: 0 0 5px 0;
    position: relative;
    /* line-height: 28px; */
    font-family: serif;
}

#toprecomm ul.slides li a p {
    display: block;
    font-size: 13px;
    padding: 0;
    margin: 0;
    position: relative;
    line-height: 1.5;
    max-height: 4em;
    overflow: hidden;
}

#toprecomm ul.slides li a p br {
    display: block;
}

#toprecomm ul.slides li a h2.infottl.oshirase {
    font-family: メイリオ, Meiryo, "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    #toprecomm {
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 20px 5%;
        margin: 0;
        zoom: 1;
        text-align: center;
        background: #493F34;
        overflow: hidden;
    }
}

@media screen and (max-width: 1024px) {
    #toprecomm {
        position: relative;
        padding: 20px 5%;
        background: #5B4F40;
    }
}

@media screen and (max-width: 680px) {
    #toprecomm .flexslider::before {
        display: none;
    }
    #toprecomm .flexslider::after {
        display: none;
    }
    #toprecomm ul.slides a .thumb {
        display: table-cell;
        width: 100px;
        max-width: 100px;
        margin: 0;
    }
    #toprecomm ul.slides a .thumb img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100px;
        max-height: 100px;
        margin: 0 auto;
    }
    #toprecomm ul.slides li a .wrap {
        display: table-cell;
        padding: 0 0 0 10px;
    }
    #toprecomm ul.slides li a .wrap img {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 80px;
    }
    #toprecomm ul.slides li a .infottl {
        display: block;
        font-size: 16px;
        padding: 0;
        margin: 0;
        position: relative;
        line-height: 24px;
        font-family: serif;
    }
    #toprecomm ul.slides li a p br {
        display: none;
    }
    #toprecomm h2{
        font-size: 18px;
    }
    #toprecomm h2 span.hotel_name{
        display: block;
    }
    #toprecomm h2 span.value{
        font-size: 22px;
    }
}


/* ====================================================================================================================
 * トップページレストラン・客室イメージ
 * ====================================================================================================================*/

.col_img .flexslider {
    margin: 0;
    padding: 0;
    background: none;
    position: relative;
    zoom: 1;
}

.col_img .flexslider ul.slides {
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.col_img .flexslider ul.slides li {
    display: inline-block;
}

.col_img .flexslider ul.slides li img {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
}

.col_img .flex-control-nav {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    text-align: center;
    z-index: 50;
    padding: 0 3%;
    box-sizing: border-box;
}

.col_img .flex-control-paging li {
    display: inline-block;
    margin: 0;
    padding: 0 2px;
}

.col_img .flex-control-paging li a {
    width: 20px;
    height: 4px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-indent: -9999px;
}

.col_img .flex-control-paging li a:hover {
    background: #333;
    background: rgb(0, 0, 0);
}

.col_img .flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    cursor: default;
}

@media screen and (max-width: 800px) {}


/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/

@media screen and (max-width: 1023px) {
    .flexslider {
        margin: 0 0 40px 0;
        background: #fff;
        position: relative;
        zoom: 1;
    }
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px;
    }
    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px;
    }
    .flex-control-nav li {
        margin: 0 2px;
    }
    .flex-control-paging li a {
        width: 20px;
        height: 4px;
    }
    #detailimg {
        margin: 0px 0 50px 0;
        padding: 0;
    }
    #detailimg .wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .flex-control-thumbs li {
        display: inline-block;
        width: 50px;
        margin: 2px;
    }
}

@media screen and (max-width: 680px) {
    .flex-direction-nav {
        display: none;
    }
    .flex-control-nav {
        width: 100%;
        position: absolute;
        bottom: -40px;
        text-align: center;
        height: auto;
    }
    .flex-control-nav li {
        margin: 0 1px 0 1px;
        padding: 0;
        height: 0px;
        line-height: 1;
    }
    .flex-control-paging li a {
        width: 20px;
        height: 4px;
        margin: 0;
        padding: 0;
    }
}

#topcont_news .flex-control-paging li a,
#thumb_news .flex-control-paging li a {
    width: 20px;
    height: 4px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-indent: -9999px;
}

#topcont_news .flex-control-paging li a:hover,
#thumb_news .flex-control-paging li a:hover {
    background: #000;
    background: rgba(0, 0, 0, 0.5);
}

#topcont_news .flex-control-paging li a.flex-active,
#thumb_news .flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    cursor: default;
}