@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:300,400,500,600,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,600&display=swap&subset=japanese");
/*=============================================
 * body
 *=============================================*/
body {
  color: #0f0b03;
  min-width: inherit;
  max-height: 100%;
  font-family: noto-sans-cjk-jp, 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  font-size: 14px;
  cursor: auto;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: normal;
  text-align: center;
  background: url("../img/shared/bg.jpg");
}

.fnt-mincho {
  /* font-family: 'Noto Serif JP', serif; */
  	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.fnt-notoserif{
	font-family: "Noto Serif JP", serif;
}
.fnt-notosan {
  font-family: "Noto Sans JP";
}

.block::after {
  clear: both;
  content: "";
  display: block;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt_b {
  font-weight: bold;
}

a:hover {
  text-decoration: none;
}

/*=============================================
 * header
 *=============================================*/
header .logo {
  max-width: 30%;
  z-index: 1;
  margin: 10px auto;
}

header .logo img {
  max-width: 100%;
  height: auto;
}

header h1 {
  font-size: 11px;
  z-index: 1;
  color: #fff;
  position: absolute;
  left: 15px;
  right: 15px;
  z-index: 1;
  bottom: 5px;
  /*opacity: 0;*/
}

header {
  position: relative;
}

.kv_txt {
  font-size: 13px;
  padding: 20px 4%;
  line-height: 2;
  text-align: justify;
  background: rgba(255, 255, 255, 0.85);
}

/*====================== nav ====================== */
header .topnavi {
  position: absolute;
  bottom: 3px;
  right: 5px;
  height: 54px;
}

header .topnavi li {
  display: inline-block;
  position: relative;
  width: 60px;
  vertical-align: top;
}

header .topnavi li a {
  color: #fff;
  font-size: 11px;
  line-height: 23px;
  text-align: center;
  display: block;
  height: 100%;
  padding-top: 5px;
  width: 100%;
  border-left: 1px dotted white;
}

header .topnavi li a:hover {
  text-decoration: none;
}

header .topnavi li a[class^="icon-"]:before {
  display: block;
  width: 100%;
  padding-bottom: 4px;
  font-size: 19px;
  font-weight: normal;
}

@-webkit-keyframes "smoky" {
  50% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes "smoky" {
  50% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@-webkit-keyframes "smoky-out" {
  50% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes "smoky-out" {
  50% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

header .sub_click {
  display: block;
  padding: 9px 0;
  position: relative;
}

header .sub_click:before {
  content: '';
  position: absolute;
  width: 15px;
  border-top: 1px solid #fff;
  right: 5px;
  top: 22px;
  -webkit-animation: smoky-out 0.7s 0s both;
          animation: smoky-out 0.7s 0s both;
}

header .sub_click:after {
  content: '';
  position: absolute;
  height: 15px;
  border-left: 1px solid #fff;
  right: 12px;
  top: 15px;
  -webkit-animation: smoky-out 0.7s 0s both;
          animation: smoky-out 0.7s 0s both;
}

header .sub_click.open:after {
  -webkit-animation: smoky 0.7s 0s both;
          animation: smoky 0.7s 0s both;
  opacity: 0;
}

header .sub_click.open:before {
  -webkit-animation: smoky 0.7s 0s both;
          animation: smoky 0.7s 0s both;
}

header .menu_toggle {
  padding: 60px 0 75px;
  background: #d5b136;
  z-index: 100;
  text-align: center;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

header .menu_toggle ul li a {
  color: #000;
  padding: 10px 0 10px;
  line-height: 1.3;
}

header .menu_toggle ul li.active:before {
  opacity: 0;
}

header .menu_toggle ul li.active a {
  color: #fff;
}

header .menu_toggle.nav-style01 {
  top: 0px;
  right: -100%;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#menu_toggle li {
  -webkit-transform: matrix(1, 0, 0, 1, 0, -20);
          transform: matrix(1, 0, 0, 1, 0, -20);
  -webkit-transition: all ease 0.5s 0.3s;
  transition: all ease 0.5s 0.3s;
  opacity: 0;
  font-weight: bold;
}

#menu_toggle .sub_scroll_box li {
  margin: 0 20px;
  border: none;
}

#menu_toggle .sub_scroll_box li a {
  padding: 5px 0;
}

#menu_toggle .sub_scroll_box li:last-child {
  border-bottom: none;
}

.hamburger {
  padding: 10px 13px 17px;
  background-color: #d5b136;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 999;
  text-align: center;
}

.hamburger .hamburger-box {
  width: 35px;
}

.hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  background: #000;
}

.hamburger:after {
  font-size: 12px;
  content: 'MENU';
  position: absolute;
  color: #000;
  bottom: 2px;
  left: 0px;
  right: 0;
  text-align: center;
  letter-spacing: 1px;
}

.navOpen .menu_toggle.nav-style01 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  right: 0;
}

.navOpen #menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.navOpen #menu_toggle li {
  opacity: 1;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
}

.navOpen .hamburger.type_a {
  opacity: 0;
  visibility: hidden;
}

.navOpen.mn_tyle_a li {
  text-align: left !important;
}

.navOpen.mn_tyle_a .hamburger {
  opacity: 0;
  visibility: hidden;
}

.navOpen.mn_tyle_a .hamburger.type_a {
  opacity: 1;
  visibility: visible;
}

.navOpen .hamburger {
  right: 15px;
  top: 15px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

.navOpen .hamburger:after {
  content: "CLOSE";
}

.type_a {
  padding: 11px 10px 3px;
  right: auto;
  left: 15px;
}

.type_a:after {
  display: none;
}

/*====================== end nav ====================== */
/*====================== header key ====================== */
header #key {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 4% 15px;
}

header #key p.tt {
  position: absolute;
  bottom: 6%;
  right: 3%;
  color: #fff;
  font-size: 20px;
}

.bx-wrapper {
  position: relative;
}

.bx-wrapper .bx-pager {
  color: #ffee00;
  font-family: Arial;
  font-size: 0.85em;
  font-weight: bold;
  text-align: center;
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  line-height: 10px;
  bottom: 5%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 60;
}

.bx-controls-direction {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  z-index: 60;
}

.bx-wrapper .bx-controls-direction a {
  color: #000;
  font-family: "fontello";
  font-size: 40px;
  height: 40px;
  line-height: 40px;
  outline: 0 none;
  position: absolute;
  text-indent: -9999px;
  top: 0%;
  width: 26px;
}

.bx-prev::after {
  content: "\f104";
  left: 11px;
  position: absolute;
  text-indent: 0;
  top: 0;
}

.bx-next::after {
  content: "\f105";
  left: 0;
  position: absolute;
  text-indent: 0;
  top: 0;
}

.bx-prev {
  position: absolute;
  top: 0;
  left: 0;
}

.bx-next {
  position: absolute;
  top: 0;
  right: 0;
}

.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background-color: #000;
  border-radius: 5px;
  display: block;
  height: 10px;
  margin: 0 5px;
  outline: 0 none;
  text-indent: -9999px;
  width: 10px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #be0900 none repeat scroll 0 0;
}

.sl_vertical .bx-pager {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  left: auto;
  width: 20px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sl_vertical .bx-pager-item {
  display: block;
  margin: 5px 0;
}

/*====================== end nav ====================== */
section {
  overflow: hidden;
}

/*=============================================*/
/*                   　footer　　　　　         */
/*=============================================*/
footer {
  background: url("../img/shared/bg2.jpg");
  padding-top: 50px;
  font-size: 13px;
  position: relative;
}

footer #f_logo span {
  display: block;
  font-weight: bold;
}

footer .bottom {
  padding-bottom: 60px;
}

footer .cookies_link {
  font-weight: bold;
}

footer .btn_web {
  width: 240px;
  margin-right: 10px;
}

footer .f_tel {
  margin: 10px auto 0;
  padding: 10px 2% 10px;
  border: 2px solid #000;
  width: 400px;
  max-width: 88%;
}

footer .f_tel img {
  max-width: 100%;
  height: auto;
}

footer .f_tel dd {
  font-size: 11px;
  font-weight: normal;
}

footer .btnArea {
  margin: 25px 0;
}

footer .btnArea p {
  margin: 0 5px;
}

footer .btn.ins {
  margin-right: 10px;
}

footer .nav {
  text-align: left;
}

footer .nav li {
  width: 33.33%;
}

footer .nav a {
  display: block;
  position: relative;
  padding-left: 10px;
}

footer .nav a:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 8px;
  background: #000;
}

footer .vcard {
  max-width: 400px;
  text-align: left;
  padding: 30px 5% 0;
  margin: 0 auto 20px;
}

footer .vcard dl {
  padding: 10px 0;
}

footer .link {
  margin: 0 auto 0;
  text-align: center;
  width: 100%;
  font-weight: normal;
}

footer .link p {
  width: 45%;
  min-width: 170px;
  max-width: 210px;
  margin: 10px auto;
  padding: 0 6px;
  line-height: 30px;
}

footer .link p a {
  background: #9F9F9F;
  border: solid 1px rgba(200, 200, 200, 0.78);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  padding: 3px 20px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: inset 0 0 1px #a8a398;
          box-shadow: inset 0 0 1px #a8a398;
}

footer .link .link-pc a::before {
  margin-right: 9px;
}

/*====================== ft_fixed ====================== */
#ft_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility .3s ease;
    -moz-transition: opacity .3s ease, visibility .3s ease;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    z-index: 9999;
}

.navOpen #ft_fixed {
  z-index: 0;
}

#ft_fixed.visible {
  opacity: 1;
  visibility: visible;
}

.ft_fixed_shared {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  text-align: center;
  width: 100%;
  border-top: 1px solid #000;
  z-index: 100;
  background: #d5b136;
}

.ft_fixed_shared li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30%;
  border-right: 1px solid #000;
}

.ft_fixed_shared li.ft_tel {
  width: 25%;
}

.ft_fixed_shared li.ft_web {
  width: 50%;
}

.ft_fixed_shared li.ft_map {
  width: 25%;
}

.ft_fixed_shared li:last-child {
  border-right: 0;
}

.ft_fixed_shared li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  line-height: 1.5;
  letter-spacing: 1px;
  height: 100%;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.ft_fixed_shared li a:before {
  font-size: 18px;
  display: block;
}

.ft_fixed_shared li a img {
  margin-right: 5px;
}

.ft_fixed_shared li a:after {
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
}

.ft_fixed_shared #pagetop {
  position: absolute;
  width: 45px;
}

.ft_fixed_shared #pagetop:before {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ft_fixed_shared.ft_a li {
  width: 100%;
}

.ft_fixed_shared.ft_b li {
  width: 50%;
}

.ft_fixed_shared.ft_c li {
  width: calc((100% - 50px)/3);
}

.ft_d a, .ft_c a, .ft_b a, .ft_a a {
  padding: 3px 10px 3px 0 !important;
}

.ft_a a:after, .ft_b a:after, .ft_c a:after, .ft_d a:after {
  right: 8px !important;
}

.ft_fixed_shared.ft_c li:nth-child(2) {
  min-width: 110px;
}

.ft_fixed_shared.ft_e li {
  border: none;
  width: calc(100% - 174px);
}

.ft_fixed_shared.ft_e li a {
  padding: 8px 23px 8px 0;
}

.ft_fixed_shared.ft_e .btn_reserve {
  padding: 8px 10px;
  width: 130px;
}

.ft_fixed_shared.ft_e .btn_reserve a {
  background-color: #fff;
  color: #000;
  padding: 0 15px 0 0px;
  border-radius: 2px;
}

.ft_fixed_shared.ft_e li.icon-up-dir {
  position: relative;
  top: auto;
  bottom: auto;
  width: 44px;
  border-left: 1px solid #fff;
}

.ft_fixed_shared.ft_e li.icon-up-dir:before {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#pagetop {
  bottom: 50px;
  right: 10px;
}

.mb0 {
  margin-bottom: 0;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 30px;
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 30px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.fz-10 {
  font-size: 10px;
}

.fz-12 {
  font-size: 12px;
}

.fz-14 {
  font-size: 14px;
}

.fz-16 {
  font-size: 16px;
}

.fz-18 {
  font-size: 18px;
}

.fz-20 {
  font-size: 20px;
}

.fz-22 {
  font-size: 22px;
}

.fz-24 {
  font-size: 24px;
}

.fz-26 {
  font-size: 26px;
}

.fz-28 {
  font-size: 28px;
}

.fz-30 {
  font-size: 30px;
}

/*=============================================*/
/*                   　index　　　　　          */
/*=============================================*/
.js_full .bx-viewport {
  overflow: visible !important;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.js_full_ext {
  padding-left: 0;
}

.js_full_ext .js_in {
  padding-left: 5%;
}

.js_full_ext img {
  width: 90%;
}

.js_full_ext .bx-prev {
  display: none;
}

.js_full_ext .bx-next {
  right: -18%;
}

.wrap {
  padding-left: 4%;
  padding-right: 4%;
}

.bnr_shared {
  width: 66%;
  margin: 0 auto;
}

.bnr_shared a {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 10px 5px 10px 15px;
  font-size: 15px;
  font-weight: bold;
}

.bnr_shared a .icon-angle-right {
  float: right;
  padding-right: 5px;
}

.bnr_shared_w90 {
  width: 90%;
}

.bnr_shared_w100 {
  width: 100%;
}

.toggle .accor4:after {
  color: #000;
  display: block;
  position: static;
  margin-top: 0;
}

.pop_icon i {
  display: block;
}

#bg_parallax {
  position: relative;
  padding-top: 100%;
}

#bg_parallax .info2 {
  bottom: 0;
  top: auto;
}

.img_parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.img_parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

ul.wi-container {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 70%;
  position: relative;
  list-style-type: none;
  -webkit-perspective: 1400px;
  -ms-perspective: 1400px;
  -o-perspective: 1400px;
  perspective: 1400px;
}

ul.wi-container li {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 20px;
  pointer-events: auto;
}

ul.wi-container li.wi-move {
  pointer-events: none;
  -webkit-transition: -webkit-transform 600ms ease, opacity 600ms ease, left 600ms ease, top 600ms ease;
  -webkit-transition: opacity 600ms ease, left 600ms ease, top 600ms ease, -webkit-transform 600ms ease;
  transition: opacity 600ms ease, left 600ms ease, top 600ms ease, -webkit-transform 600ms ease;
  transition: transform 600ms ease, opacity 600ms ease, left 600ms ease, top 600ms ease;
  transition: transform 600ms ease, opacity 600ms ease, left 600ms ease, top 600ms ease, -webkit-transform 600ms ease;
}

.windy-demo {
  color: #aaa;
}

.windy-demo ul.wi-container {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.windy-demo li img {
  display: block;
}

.windy-demo ul.wi-container:before, .windy-demo ul.wi-container:after {
  content: '';
  position: absolute;
  z-index: -2;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
          box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.windy-demo ul.wi-container:after {
  right: 10px;
  left: auto;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}

.windy-demo ul.wi-container li {
  padding: 0;
  border: 10px solid #DDD;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.windy-demo nav {
  position: relative;
  width: 100px;
  margin: 0 auto;
}

.windy-demo nav span {
  width: 42px;
  height: 42px;
  margin: 0 4px;
  float: left;
  background: url(../img/shared/nav.png) no-repeat 100% 0;
  text-indent: -9000px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.windy-demo nav span:first-child {
  background-position: 0 0;
}

.windy-demo nav span:active {
  background-position: 100% 2px;
}

.windy-demo nav span:first-child:active {
  background-position: 0 2px;
}

/* Slicebox Style */
.sb-slider {
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  list-style-type: none;
  padding: 0;
}

.sb-slider li {
  margin: 0;
  padding: 0;
  display: none;
}

.sb-slider li > a {
  outline: none;
}

.sb-slider li > a img {
  border: none;
}

.sb-slider img {
  max-width: 100%;
  display: block;
}

.sb-description {
  padding: 5px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1000;
  position: absolute;
  background: #CBBFAE;
  background: rgba(190, 176, 155, 0.4);
  border-left: 4px solid rgba(255, 255, 255, 0.7);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  color: #fff;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.sb-slider li.sb-current .sb-description {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  opacity: 1;
}

.sb-slider li.sb-current .sb-description:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
  filter: alpha(opacity=99);
  background: rgba(190, 176, 155, 0.7);
}

.sb-perspective {
  position: relative;
}

.sb-perspective > div {
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sb-side {
  margin: 0;
  display: block;
  position: absolute;
  -moz-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.shadow {
  width: 100%;
  height: 168px;
  position: relative;
  margin-top: -110px;
  background: transparent url(../img/shared/shadow.png) no-repeat bottom center;
  background-size: 100% 100%;
  /* stretches it */
  z-index: -1;
  display: none;
}

.sb-description h3 {
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.sb-description h3 a {
  color: #4a3c27;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav-arrows {
  display: none;
  position: absolute;
  top: 40vw;
  left: 0;
  right: 0;
}

.nav-arrows span {
  width: 42px;
  height: 42px;
  background: #cbbfae url(../img/shared/nav1.png) no-repeat top left;
  position: absolute;
  top: 50%;
  left: 2px;
  text-indent: -9000px;
  cursor: pointer;
  margin-top: -21px;
  opacity: 0.9;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
          box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.nav-arrows span:first-child {
  left: auto;
  right: 2px;
  background-position: top right;
}

.nav-arrows span:hover {
  opacity: 1;
}

.nav-dots {
  text-align: center;
  height: 30px;
  width: 100%;
}

.nav-dots span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 3px;
  background: #cbbfae;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.nav-dots span.nav-dot-current {
  -webkit-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #cbbfae, inset 0 0 0 8px #fff;
          box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #cbbfae, inset 0 0 0 8px #fff;
}

.nav-options {
  width: 70px;
  height: 30px;
  position: absolute;
  right: 70px;
  bottom: 0px;
  display: none;
}

.nav-options span {
  width: 30px;
  height: 30px;
  background: #cbbfae url(../img/shared/options.png) no-repeat top left;
  text-indent: -9000px;
  cursor: pointer;
  opacity: 0.7;
  display: inline-block;
  border-radius: 50%;
}

.nav-options span:first-child {
  background-position: -30px 0px;
  margin-right: 3px;
}

.nav-options span:hover {
  opacity: 1;
}

.flexBox, .flexMiddle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flexMiddle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.txt {
  text-align: justify;
  line-height: 28px;
  font-weight: 400;
}

.txt p + p {
  margin-top: 15px;
}

.w100 {
  width: 100%;
  height: auto;
}

.shadw {
  -webkit-box-shadow: 0px 8px 10px 0px rgba(63, 59, 51, 0.34);
          box-shadow: 0px 8px 10px 0px rgba(63, 59, 51, 0.34);
}

.btn {
  text-align: center;
}

.btn img {
  max-width: 100%;
  height: auto;
}

.slick-slide > div {
  font-size: 0;
}

.toggleBox .sub_click {
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}

.toggleBox .sub_click span {
  position: relative;
  display: inline-block;
}

.toggleBox .sub_click span:after {
  content: "\f107";
  font-family: 'fontello';
  font-weight: bold;
  margin-left: 5px;
  font-size: 25px;
  line-height: 0;
  vertical-align: -3px;
  display: inline-block;
}

.toggleBox .sub_click.open span::after {
  content: "\f106";
}

.menuBox {
  text-align: left;
}

.menuBox h3 {
  font-size: 16px;
  padding: 4px 0 5px;
  text-align: center;
  color: #fff;
  background: #000;
  margin-bottom: 10px;
}

.menuBox dl, .menuBox .txt1 {
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.menuBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menuBox dd {
  text-align: right;
}

.menuBox + .menuBox {
  margin-top: 20px;
}

.menuBox.toggle .toggle-main {
  padding-bottom: 40px;
}

.btnStyle {
  position: relative;
  border: 1.5px solid #000;
  border-right: 0;
  display: block;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
  line-height: 1;
  max-width: 300px;
}

.btnStyle:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5px;
  width: 15px;
  height: 1.5px;
  background: #000;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btnStyle span {
  padding: 0 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #d5b136));
  background: linear-gradient(transparent 50%, #d5b136 50%);
}

.kv_btn{
	
}
.kv_btn a{
    text-align: center;
    background: #D5B136;
    color: #000;
    padding: 10px 0;
    display: block;
    margin: 20px auto 20px;
    font-weight: bold;
    font-size: 120%;

}
.kv_btn a:hover{
	text-decoration:none;
	filter:alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity:0.8;
	opacity:0.8;
	
}

#news_box {
    background: hsla(51,59%,93%,0.40);
    width: 90%;
    margin: 10px auto;
    line-height: 1.8;
    padding-bottom: 39px;
}
#news_box .ttl {
    padding: 39px 50px 10px;
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
}

#news_box .txt {
    padding: 20px 50px 0;
    text-align: center;
}
