@charset "UTF-8";
html{
  min-width: 1000px;
}
/*=============================================
 * body
 *=============================================*/
body {
  color: #000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  background: url(../img/shared/body_bg.jpg) repeat center top;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}
.clear{
	clear:both !important;
}
@media only screen and (max-width: 767px) {
  body {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    line-height: 28px;
  }
}
/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media only screen and (max-width: 767px) {
  .fnt-mincho {
    font-family: 'Noto Serif JP', 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 - customs
 *=============================================*/
.fnt-RyoDisplayPlusN_B {
  font-family: ryo-display-plusn, serif;
  font-weight: 700;
  font-style: normal;
}

.fnt-RyoDisplayPlusN_SB {
  font-family: ryo-display-plusn, serif;
  font-weight: 600;
  font-style: normal;
}

.fnt-RyoDisplayPlusN_M {
  font-family: ryo-display-plusn, serif;
  font-weight: 500;
  font-style: normal;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  width: 1000px;
}

/*=============================================
 * <header>
 *=============================================*/
header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
header h1 {
  color: #7f6a4d;
  font-size: 13px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: right;
  padding: 163px 50px 5px 0;
}
header .box {
  width: 290px;
  padding: 130px 0 0 80px;
}
header .col_right {
  width: calc(100% - 450px);
}

.nav-fixed {
  width: 770px;
  position: absolute;
  top: 35px;
  right: 0;
  padding: 0 50px;
}
.nav-fixed ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
.nav-fixed ul a {
  color: #2a2010;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 78px;
  display: block;
  position: relative;
}
.nav-fixed ul a:before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #000;
  opacity: 0;
  transition: all 0.3s;
}
.nav-fixed ul a:hover {
  text-decoration: none;
}
.nav-fixed ul a:hover:before {
  opacity: 1;
}

.nav-fixed.fixed {
  background: rgba(236, 222, 196, 0.8);
  position: fixed;
  top: 0;
  z-index: 101;
}

@media only screen and (max-width: 767px) {
  header {
    display: block;
    position: relative;
  }
  header h1 {
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    z-index: 9;
    padding: 0;
    text-align: center;
  }
  header .box {
    width: auto;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35%;
  }
  header .col_right {
    width: auto;
  }
  header .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
  }
  header .hamburger .hamburger-inner, header .hamburger .hamburger-inner:after, header .hamburger .hamburger-inner:before {
    background-color: #fff;
  }
  header .hamburger:after {
    font-size: 11px;
    content: 'MENU';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
  }
  .nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background: url("../img/shared/body_bg.jpg") repeat center top !important;
    padding: 80px 4%;
    z-index: 101;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
  }
  .nav-fixed ul {
    display: block;
    text-align: center;
    margin-top: 4%;
  }
  .nav-fixed ul a {
    line-height: 50px;
  }

  .has_nav .hamburger {
    background: #2a2010;
  }

  .nav--opened .hamburger {
    background: #2a2010;
  }
  .nav--opened .nav-fixed {
    opacity: 1;
    visibility: visible;
  }
.nav-fixed ul a:before {
  bottom: 0;
}
  
}
/*=============================================
 * key
 *=============================================*/
#key {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: 680px;
  position: relative;
}

#key ul {
  min-height: inherit;
}

#key li {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  #key {
    min-height: inherit;
  }
}
/*=============================================
 * <section>
 *=============================================*/
/*=============================================
 * <footer>
 *=============================================*/
footer {
  background: url("../img/shared/ft_bg.jpg") repeat center top;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  padding: 60px 0 70px;
}
footer .logo {
  text-align: center;
}
footer .tel {
  text-align: center;
}
footer .vcard {
  padding:37px 40px 14px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #5e584f;
}
footer .vcard dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 22px;
}
footer .vcard dl>* {
  display: table-cell;
}
footer .vcard dl dt {
  width: 107px;
}
footer nav {
  text-align: center;
  border-top: 1px solid #5e584f;
  /*margin: 0 90px;*/
  padding: 35px 0 55px;
}
footer nav a {
  padding-left: 0;
}
footer nav a+a:before {
  content: "";
  padding: 0 27px;
}
footer .box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
footer #socialbuttons {
  margin: 0;
  order: 2;
}
footer address {
  text-align: left;
  font-size: 13px;
  color: #8d8982;
  padding-top: 5px;
  order: 1;
}

@media only screen and (max-width: 767px) {
  footer {
    font-size: 14px;
    padding-bottom: 105px;
  }
  footer .logo {
    width: 80px;
    margin: 0 auto 20px;
  }
  footer .tel {
    text-align: center;
  }
  footer .vcard {
    padding: 30px 0 15px;
    display: block;
    border-bottom: 1px solid #5e584f;
  }
  footer .vcard .col {
    width: auto;
  }
  footer .vcard .col dl {
    max-width: 380px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  footer .vcard .col dl dt {
    width: 70px;
  }
  footer .box {
    display: block;
    text-align: center;
    padding-top: 30px;
  }
  footer .box #socialbuttons {
    text-align: center;
  }
  footer .box address {
    text-align: center;
    padding-top: 15px;
  }
}
/*=============================================
 * box_fixed_right
 *=============================================*/
.box_fixed_right {
  position: fixed;
  bottom: 0 !important;
  right: 10px;
  /*transform: translateY(-50%);*/
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity .3s ease, visibility .3s ease;
  -moz-transition: opacity .3s ease, visibility .3s ease;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
}
.box_fixed_right #pagetop {
  position: static;
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.box_fixed_right.visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  .box_fixed_right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2a2010;
    top: auto;
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    box-sizing: border-box;
    padding: 4px 4%;
  }
  .box_fixed_right .tel {
    width: calc(100% - 50px);
  }
  .box_fixed_right .tel a {
    width: 195px;
    display: block;
    margin: 0 auto;
  }
  .box_fixed_right #pagetop {
    width: 50px;
    margin-top: 0;
  }

  .nav--opened .box_fixed_right {
    z-index: 0;
  }
}
/*=============================================
 * slick
 *=============================================*/
.slick-dots {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  box-sizing: border-box;
  width: 80px;
  height: 8px;
  border: 1px solid #b62d00;
  background-color: transparent;
  overflow-y: hidden;
  text-indent: -9999px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #b62d00;
}

@media only screen and (max-width: 767px) {
  .slick-dots li button {
    width: 40px;
    height: 6px;
  }
}
/*=============================================
 * Reponsive
 *=============================================*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .fnt-mincho {
    font-family: 'Noto Serif JP', serif;
  }

  html {
    min-width: auto;
  }

  body {
    font-size: 14px;
    line-height: 28px;
  }

  .wrap {
    width: auto;
    padding: 0 4%;
  }

  img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*# sourceMappingURL=shared.css.map */




.fz22{
	font-size:22px !important;
}
@media only screen and (max-width: 767px) {
.fz22{
	font-size:18px !important;
}
}

.copyright span a{ font-size: 10px; padding:5px; display: block;}
