@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
 .fancybox-close-small{
    top: -10px;
 }
 /*loading*/
 .siteLoading {
     position: fixed;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0px;
     background-color: #FFF;
     z-index: 99999;
 }

 .siteLoading .loadingWrap {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 50%;
     height: 50%;
     max-width: 160px;
     max-height: 160px;
     text-align: center;
 }

 .siteLoading .loadingWrap .loadingIcon {
     width: 100%;
     height: 100%;
     position: relative;
     text-align: center;
 }

 .siteLoading .loadingWrap .loadingIcon img {
/*     max-width: 100%;
     max-height: 100%;
     height: auto;*/
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .siteLoading .loadingWrap .loadingIcon .loadingImg {
     z-index: 999;
     width: 100px;
 }

 .siteLoading .loadingWrap .loadingIcon .loadingRotate {
     z-index: 101;
     animation: spin 2s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }
body {
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary-font-color);
    font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
    font-weight: 300;
    font-style: normal;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
ul {
    list-style: none;
}
.banner{
    position: relative;
}
.filter{
    background-color:#ffffff
}
.filter-img{
	display: block;
	opacity: 0.9
}
.banner .img{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 252px;
    text-align: center;
    background: rgba(255,  255,  255, 0.0);

/*     border: 1px solid #707070; */
    padding: 30px 0;
}
.banner .img img{
    width: 202px;
}
.resetFont {
    font-family: sans-serif;
}
.recherche{
    font-family: recherche, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wraper{
    max-width: 1400px;
    margin: 0 auto;
}


/* =============================================
  画像サイズ
============================================= */
.navbar-brand img {
  height: 100px;
}
.hamburger-menu-brand img {
  height: 100px;
}
.hall-logo img {
  height: 120px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .navbar-brand img {
    height: 80px;
  }
  .hamburger-menu-brand img {
    height: 80px;
  }
  .hall-logo img {
    width: 200px;
    height: auto;
  }
}


/* =============================================
  ヘッダー(header.tpl)
============================================= */

/* ナビバー */
.navbar {
  width: 100%;
  height: 100px;
  padding: 0 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width:768px) {
  .navbar {
    height: 80px;
    padding: 0 20px;
  }
}

/* ナビバー 右側 */
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-fair-btn {
  height: 46px;
  padding: 0 36px;
  margin-right: 50px;
  font-size: 22px;
  line-height: 46px;
  color: #fff;
  background-color: var(--primary-btn-color);
}
@media screen and (max-width:768px) {
  .navbar-fair-btn {
    height: 36px;
    padding: 0 20px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 36px;
    color: var(--primary-btn-color);
    background-color: #fff;
    border: 1px solid var(--primary-btn-color);
  }
}

/* トグルボタン */
.navbar-toggler {
  width: 32px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: none;
  cursor: pointer;
  z-index: 1000;
}
.navbar-toggler .bar {
  width: 32px;
  height: 3px;
  background-color: var(--primary-btn-color);
  transition: transform 0.3s ease;
}
/* トグルボタン バツ */
.navbar-toggler.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.navbar-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  width: 500px;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -500px;
  transition: right 0.3s;
  overflow-y: auto;
}
.hamburger-menu.open {
  right: 0;
}
@media screen and (max-width:768px) {
  .hamburger-menu {
    width: 100vw;
    right: -100vw;
  }
}
/* ハンバーガーメニュー トップ部分 */
.hamburger-menu-top {
  height: 100px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}
@media screen and (max-width:768px) {
  .hamburger-menu-top {
    height: 80px;
    padding-left: 20px;
  }
}
/* ハンバーガーメニュー 電話番号部分 */
.hamburger-menu-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 90px;
}
dl.tel-contact {
  text-align: center;
  margin: 20px 0;
}
dl.tel-contact dt {
  font-size: 14px;
}
dl.tel-contact dd.tel-number {
  font-size: 22px;
}
dl.tel-contact dd.tel-number .tel-icon {
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  margin-bottom: .3rem;
}
dl.tel-contact dd.business-hours {
  font-size: 12px;
}
@media screen and (max-width:768px) {
  dl.tel-contact {
    margin: 15px 0;
  }
}
/* ハンバーガーメニュー btnデザインlink部分 */
.btn-design-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.btn-design-link a {
  width: 230px;
  height: 36px;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  color: var(--primary-btn-color);
  background-color: #fff;
  border: 1px solid #3e3e3e;
  margin-bottom: 10px;
}
.btn-design-link a:last-child {
  margin-bottom: 0;
}
.btn-design-link a.color-text {
  color: #ae3846;
}
.btn-design-link a.color-btn {
  color: #fff;
  background-color: var(--primary-btn-color);
}
@media screen and (max-width:768px) {
  .btn-design-link {
    margin: 15px 0;
  }
}
/* ハンバーガーメニュー linkリスト部分 */
.link-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
}
.link-list ul li {
  width: 250px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-bottom: 1px solid #3e3e3e;
}
@media screen and (max-width:768px) {
  .link-list ul li {
    width: 50vw;
  }
}
.link-list ul li:nth-child(1),
.link-list ul li:nth-child(2) {
  border-top: 1px solid #3e3e3e;
}
.link-list ul li:nth-child(odd) {
  border-right: 1px solid #3e3e3e;
}
.link-list ul li a {
  color: var(--primary-font-color);
  font-size: 14px;
}
/* ハンバーガーメニュー ボトム部分 */
.hamburger-menu-bottom {
  width: 500px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid #3e3e3e;
}
.hamburger-menu-bottom a.sns-link {
  margin-right: 10px;
}
.hamburger-menu-bottom a.sns-link:last-child {
  margin-right: 0;
}
.hamburger-menu-bottom a.sns-link .sns-icon {
  width: 25px;
  height: 25px;
}
@media screen and (max-width:768px) {
  .hamburger-menu-bottom {
    width: 100vw;
  }
}

/* メイン画像 */
.main-img-wrapper {
  width: 100%;
  height: calc(100% - 100px);
}
.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:768px) {
  .main-img-wrapper {
    height: calc(100% - 80px);
    margin-top: 80px;
  }
  .main-img {
    height: auto;
  }
}

/* ページタイトル */
.page-title {
  width: 100%;
  text-align: center;
  margin-top: 100px;
}
.page-title h1 {
  color: #262626;
  font-size: 28px;
  padding: 40px 0;
}
.sub-title {
  color: #262626;
  font-size: 14px;
  display: block;
}
@media screen and (max-width:768px) {
  .page-title {
    margin-top: 80px;
  }
  .page-title h1 {
    font-size: 24px;
  }
  .sub-title {
    font-size: 14px;
  }
}


/* =============================================
  フッター(footer.tpl)
============================================= */

/* フッター上部 */
.footer-top {
  width: 100%;
  padding: 50px 0;
  background-color: var(--primary-bg-color);
}
.footer-top ul {
  display: flex;
  justify-content: center;
}
.footer-top ul.link-list-top {
  margin-bottom: 40px;
}
.footer-top ul li {
  padding: 0 20px;
  border-right: 1px solid #fff;
}
.footer-top ul li:last-child {
  border-right: none;
}
.footer-top ul li a {
  color: #fff;
}
@media screen and (max-width:768px) {
  .footer-top {
    padding: 40px 20px;
  }
  .footer-top ul {
    justify-content: flex-start;
  }
  .footer-top ul li {
    padding: 15px;
    border: none;
  }
}

/* フッター下部 */
.footer-bottom {
  width: 100%;
  background-color: #fff;
}
/* ロゴ・式場名・住所部分 */
.logo-and-info {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}
.hall-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}
.footer-hall-name {
  font-size: 18px;
}
.footer-address {
  font-size: 14px;
}
@media screen and (max-width:768px) {
  .logo-and-info {
    flex-direction: column;
    text-align: center;
  }
}

/* 電話番号・営業時間部分 */
.footer-tel-contact {
  text-align: center;
  margin: 36px 0;
}
.footer-tel-contact .tel-number {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-tel-contact .tel-number .tel-icon {
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  margin-bottom: .3rem;
}
.footer-tel-contact .business-hours {
  font-size: 14px;
}
/* btnデザインlink部分 */
.footer-btn-design-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.footer-btn-design-link a {
  width: 230px;
  height: 36px;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: var(--primary-btn-color);
  background-color: #fff;
  border: 1px solid #3e3e3e;
  margin-right: 20px;
}
.footer-btn-design-link a:last-child {
  margin-right: 0;
}
.footer-btn-design-link a.color-text {
  color: #ae3846;
}
.footer-btn-design-link a.color-btn {
  color: #fff;
  background-color: var(--primary-btn-color);
}
@media screen and (max-width:768px) {
  .footer-btn-design-link {
    flex-direction: column;
  }
  .footer-btn-design-link a {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-btn-design-link a:last-child {
    margin-bottom: 0;
  }
}
/* SNSアイコン部分 */
.footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.footer-sns a.sns-link {
  margin-right: 10px;
}
.footer-sns a.sns-link:last-child {
  margin-right: 0;
}
.footer-sns a.sns-link .sns-icon {
  width: 25px;
  height: 25px;
}
/* copyright部分 */
/* small.copyright {
  display: inline-block;
  width: 100%;
  margin: 8px 0;
  text-align: center;
} */


.inner {
    width: 1024px;
    margin: 0 auto;
}
.flowme{
    position: fixed;
    top: 0;
    left: -1px;
    background: #000;
    text-align: center;
    color: #fff;
    width: 58px;
    padding-top: 105px;
    padding-bottom: 2px;
    display: none;
    z-index: 1;
}
.flowme .text{
    text-align: center;
    font-size: 12px;
    letter-spacing: -0.5px;
}
.flowme .sns{
    margin-top: 12px;
}
.flowme .sns li{
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 18px;
}
.flowme .sns li:first-child a{
    width: 13.1px;
}
.flowme .sns li a{
    display: inline-block;
    width: 25px;
}
.flowme .sns li:last-child a{
    width: 27px;
}
.btn-link{
    font-size: 14px;
    color: #fff;
    background: #000;
    text-align: center;
    display: block;
    width: 196px;
    text-decoration: none;
    padding: 8px;
    margin: 0 auto;
    transition: all 200ms linear;
}

.instagram{
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    margin-top: -2px;
}
.instagram .ins{
    overflow: hidden;
    width: 2385px;
    margin: 0 -130px;
    margin-top: 10px;
}
.instagram .ins li{
    width: 260px;
    height: 260px;
    overflow: hidden;
    float: left;
    margin-right: 5px;
}
.instagram .insText{
    position: absolute;
    top: 45.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    width: 300px;
    text-align: center;
    padding-top: 22px;
    padding-bottom: 23px;
}

.instagram .insText .title{
    letter-spacing: 4px;
    font-size: 12px;
}
.instagram .insText .button{
    width: 140px;
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
}
.instagram .insText .button a{
    box-shadow: inset 0px 0px 0 1px #B4B4B4;
    color: #7E7575;
    padding: 11px 0;
    display: block;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}
.instagram .insText .button a:hover{
    box-shadow: inset 0px 0px 0 4px #B4B4B4;
}
.aboutUs{
    background: url(../img/common/contact-bg@2x.jpg) no-repeat top center;
    text-align: center;
    padding: 23px 0;
    background-size: cover;
}
.aboutUs .subInfo{
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
}
.aboutUs .subInfo .textTop{
    font-size: 13px;
    line-height: 1.6;
}
.aboutUs .subInfo .tel{
    width: 238px;
    display: inline-block;
    vertical-align: top;
    margin-top: 22px;
}
.aboutUs .subInfo .textBot{
    font-size: 13px;
    line-height: 1.6;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.listBtn{
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    width: 589px;
    margin-top: 26px;
}
.listBtn li{
    width: 292px;
    float: left;
    margin-right: 5px;
}
.listBtn li:nth-child(1),
.listBtn li:nth-child(2){
    margin-bottom: 5px;
}
.listBtn li:nth-child(2n){
    margin-right: 0;
}
.listBtn a{
    background: #5F8299;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: -0.5px;
}
.listBtn li:nth-child(1) a,
.listBtn li:nth-child(2) a{
    background: #C37C74;
}

/*BANNER*/
.banner{
    overflow: hidden;
}
.banner .sp{
    display: none;
}
.banner span{
    display: block;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    transform: rotate(-3deg) scale(1.2);
    transition: all 2s;
    background-color: #000000
}
.banner.active span{
    transform: rotate(0deg) scale(1);
}
.banner span::before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.1);
}

/*AREATOP*/
.areaTop{
    background: url(../img/common/pageTitle-bg.png) no-repeat bottom center;
    background-size: cover;
}
.areaPageTitle{
    text-align: center;
    padding: 80px 0;
    margin-bottom: 5px;
    margin-top: 100px;
}

.areaPageTitle .pageTitle{
    font-size: 26px;
    font-family: garamond-premier-pro-display, a-otf-ryumin-pr6n, serif;
	font-weight: 400;
	font-style: normal;

/*     font-family: 'recherche'; */
/*     font-weight: 300; */
    letter-spacing: 0.5px;
}
.yakumo{
    font-size: 76px;
    font-family: garamond-premier-pro-display, serif;
	font-weight: 400;
	font-style: normal;

/*     font-family: 'recherche'; */
/*     font-weight: 300; */
    letter-spacing: 0.5px;
}
.areaPageTitle.areaTop .pageTitle{
    font-size: 30px;
}
.areaPageTitle .subPagetitle{
    font-size: 12px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 42px;
}
.areaPageTitle .subPagetitle:after{
    width: 70px;
    height: 1px;
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #707070;
}





/* HOVER ACTION */
.hoverAction {
    overflow: hidden;
    position: relative;
}
.hoverAction .hvImg {
    -webkit-transition: all 2s;
    transition: all 2s;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}
.hoverAction:hover .hvImg {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg);
}
.hoverAction .hvBg {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0,0,0,.6);
}
.hoverAction .txt-more {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color: #FFF;
    left: 0;
    bottom: 25%;
    z-index: 9;
    opacity: 0;
    -webkit-transition: all .8s;
    transition: all .8s;
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
    font-size: 14px;
}
.hoverAction:hover .txt-more {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}



.sp{
    display: none;
}

/* slide */

.bx-wrapper {
    margin-bottom: 0px;
    box-shadow: none;
    border: 0;
    border-right: 3px solid #fff;

}

.bx-wrapper .bx-controls-direction a {
    margin-top: -60px;
    padding: 60px 28px;
}


.bx-wrapper .bx-prev {
    background: url(../img/common/prev.png) no-repeat;
    left: 0;
}

.bx-wrapper .bx-next {
    background: url(../img/common/next.png) no-repeat;
    right: 0;
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus {
    background-position: unset;
}

.gallery-thumbs-container {
    margin-top: 15px;
}

.slideshow .thumb-item {
    width: 133px;
    display: inline-block;
    margin-right: 10px;
}
.area4 .slideshow .thumb-item {
    width: auto;
    display: inline-block;
    margin-right: 26px;
}
.slideshow #gallery-thumbs li.thumb-item .thumb.pager-active {
	position: relative;
}
.slideshow #gallery-thumbs li.thumb-item .thumb.pager-active:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0);
}

.slideshow .thumb-item:last-child {
    margin-right: 0;
}

/* slide */
.datepicker > .datepicker_header > .icon-close{
    width: 30px;
    height: 30px;
}
	#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    z-index: 999999
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}
@media(max-width: 1250px){
    body{
        width: 1349px;
    }
}
@media(max-width: 768px){
    body{
        width: 100%;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .banner span.sp{
/*         position: fixed; */
        top: 0;
        left: 0;
/*         z-index: -1; */
    }
	.banner .img{
	    top: 15%;
	    left: 50%;
	}
	.banner .img img{
	    width: 30vw;
	}
    #content{
        margin-top: 0 !important;
        background: #fff;
    }
    .areaPageTitle .pageTitle{
        font-size: 30px;
    }
    #header:before, #header:after {
        display: none;
    }
    #header{
        /*display: none;*/
        background: transparent;
    }
    .inner{
        width: 100%;
        padding: 0 3%;
    }
    /*//BANNER*/
    .banner img{
        width: 100%;
    }
    .areaPageTitle .textPage{
        padding: 0 3%;
    }


    body.lock{
        position: fixed;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .flowme{
        display: none;
    }
    .instagram{
        display: none;
    }
    .instagram .ins{
        width: 100%;
        margin: 0;
        padding: 0 12px;
    }
    .instagram .ins li{
        margin-right: 0;
        width: calc(100% / 3 - 2px);
        height: calc(94.2vw / 3 - 2px);
        margin-bottom: 2px;
        margin-right: 2px;
    }
    .instagram .ins li:nth-child(3n){
        margin-right: 0;
    }
    .instagram .insText{
        position: static;
        width: 100%;
        transform: none;
    }
    .instagram .insText .button{
        margin-top: 0;
    }
    .instagramTop{
        display: block;
    }
    .instagramTop.insText .button{
        display: none;
    }

    .listBtn{
        width: 100%;
        padding: 0 34px;
    }
    .listBtn li{
        width: 100%;
        margin-bottom: 5px;
    }
    .listBtn a{
        padding: 20px 0;
    }
    .aboutUs{
        background-size: cover;
        padding: 40px 0;
    }
    .aboutUs .subInfo{
        padding-bottom: 34px;
    }
    .aboutUs .subInfo .textTop{
        display: none;
    }
    .aboutUs .subInfo .tel{
        margin-top: 0;
        width: 250px;
    }
    .aboutUs .subInfo .textBot{
        font-size: 14px;
    }
    #footer .footLeft{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    #footer .footLeft .logoFoot{
        display: inline-block;
        vertical-align: top;
        margin-left: 0;
        /*width: 300px;*/
        width: 100%;
    }
    #footer .footLeft .text{
        width: 100%;
        padding-left: 50px;
        font-size: 14px;
        text-align: left;
        margin-left: 0;
    }
    #footer .footRight{
        display: none;
    }
    #footer .footLeft .btnMap{
        margin: 15px auto;
        width: 90%;
    }
    #copyright{
        text-align: center;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }


    .banner .sp{
        display: block;
    }
    .banner .pc{
        display: none;
    }
    .banner span{
        background-size: 100%;
        /*height: 270px;*/
        height: 48vh;
        background-position: top;
        background-repeat: no-repeat;
    }


    .areaTop{
         background: url(../img/common/pageTitle-bg-sp.png) no-repeat bottom center;
         background-size: cover;
    }
    .areaTop .inner{
        padding-left: 0;
        padding-right: 0;
    }
    .areaPageTitle{
        padding: 70px 0;
        margin-top: 0;
    }
    .menuSP {
        display: block;
        width: 100%;
        overflow: hidden;
        position: fixed;
        bottom: 0;
        left: 0;
        /* z-index: 999; */
        z-index: 99;
    }

    .menuSP .scrollToTop {
        display: none;
        text-align: right;
        padding: 10px;
    }
    .menuFix{
        width: 100%;
        display: block;
    }
    .menuFix li{
        list-style: none;
        margin-right: 0.25%;
        float: left;
    }
    .menuFix .li1{
        width: 47.735%;
        background-color: #BBAB93;
        text-align: center;
    }
    .menuFix .li2{
        width: 18.135%;
        background-color: #F6F3EF;
        text-align: center;
    }
    .menuFix .li3{
        width: 17.334%;
        background-color: #F6F3EF;
        text-align: center;
    }
    .menuFix .li4{
        width: 16%;
        background-color: #F6F3EF;
        text-align: center;
    }
    .menuFix li:last-child{
        margin-right: 0;
    }
    #copyright{
        padding-bottom: 10px;
    }

/* slide */
.bx-wrapper {
        margin-bottom: 0px;
        box-shadow: none;
        border: 0;
        border-right: 3px solid #fff;

    }

    .bx-wrapper .bx-controls-direction a {
        margin-top: -60px;
    }

    .bx-wrapper .bx-prev,
    .bx-wrapper .bx-next {
        background: none;
    }

    .bx-wrapper .bx-prev {
        left: 0;
    }

    .bx-wrapper .bx-next {
        right: 0;
    }

    .gallery-thumbs-container {
        margin-top: 15px;
    }

    .slideshow .thumb-item {
        width: 110px;
        display: inline-block;
        margin-right: 16px;
    }

    .slideshow #gallery-thumbs {}

    .slideshow .thumb-item:last-child {
        margin-right: 0;
    }

    .slideshow .thumb-item .thumb {
        width: 0;
        padding: 3px;
        background: #a9a9a9;
        border-radius: 10px;
        margin-right: 2px;
    }

    .slideshow .thumb-item .thumb a {
        display: none;
    }

    .gallery-thumbs-container {
        margin-top: 0;
        text-align: center;
    }

    .slideshow .thumb-item {
        width: unset;
        margin-right: unset;
    }

    .slideshow .thumb-item .thumb.pager-active {
        background: #000;
    }

    .bx-wrapper .bx-controls-direction a {
        margin-top: 0;
        top: 100%;
        background: none;
        font-size: 10px;
        text-indent: 0;
        padding: 10px 28px;
        text-decoration: none;
        color: #000;
    }

    .bx-wrapper .bx-controls-direction .bx-next {
        text-align: right;
        padding-right: 5%;
    }

    .bx-wrapper .bx-controls-direction .bx-prev {
        text-align: left;
        padding-left: 5%;
    }

    /* slide */

}
