@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: url("../img/common/bg01.jpg") repeat center top;
   color: #000;
   font-family: 'Shippori Mincho B1', serif;
   font-weight: 700;
   font-size: 18px;
   line-height: 36px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

@media screen and (max-width: 991px) {
   body {
      font-size: 16px;
      line-height: 32px;
   }
}

@media screen and (max-width: 767px) {
   body {
      font-size: 14px;
      line-height: 26px;
   }
}

/*=============================================
 * fonts
 *=============================================*/
.fnt-mincho {
   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-Montserrat {
   font-family: 'Montserrat', sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   position: relative;
   overflow: hidden;
   box-sizing: border-box;
   padding-top: 200px;
}

@media screen and (max-width: 767px) {
   main {
      padding-top: 70px;
   }
}

/* -- -- */
.wrap {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   box-sizing: border-box;
   position: relative;
}

@media screen and (max-width: 1400px) {
   .wrap {
      max-width: 960px;
   }
}

@media screen and (max-width: 991px) {
   .wrap {
      max-width: 720px;
   }
}

@media screen and (max-width: 767px) {
   .wrap {
      max-width: 100%;
      padding: 0 20px;
   }
}

a {
   transition: all 0.3s;
}

a:hover {
   opacity: 0.6;
   text-decoration: none;
}

a[href^="tel:"] {
   pointer-events: none;
   cursor: text;
}

@media screen and (max-width: 767px) {
   a[href^="tel:"] {
      pointer-events: auto;
      cursor: pointer;
   }
}

.pc {
   display: block;
}

.ipd {
   display: none;
}

.sp {
   display: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
   .ipd {
      display: block;
   }

   .hidden-ipd {
      display: none;
   }
}

@media screen and (max-width: 767px) {
   .pc {
      display: none;
   }

   .sp {
      display: block;
   }
}

/*=============================================
 * <header>
 *=============================================*/
/* -- -- */
header {
   background-position: center top;
   background-repeat: repeat;
   background-image: url("../img/common/header-bg.jpg");
   background-color: #7c6c10;
   background-blend-mode: multiply;
   width: 100%;
   box-sizing: border-box;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 100;
   transition: all 0.3s;
}

header .wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
}

header .logo {
   flex: auto;
   padding: 27px 0;
}

header .logo a {
   display: block;
   width: 220px;
   height: 71px;
}

header .bnr {
   width: 233px;
}

header .bnr+.bnr {
   padding-left: 15px;
}

header .bnr img {
   border-radius: 5px;
   box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

#navbar {
   background-position: center center;
   background-repeat: repeat;
   background-image: url("../img/common/header-bg.jpg"), linear-gradient(to top, #342c00, #554e29);
   background-blend-mode: multiply;
}

#navbar #navbar__nav {
   font-weight: 500;
   font-size: 18px;
   line-height: 25px;
   letter-spacing: 0;
   color: #fff;
   text-align: center;
}

#navbar #navbar__nav .menu-item {
   width: 14.28%;
   text-align: center;
   position: relative;
}

#navbar #navbar__nav .menu-item:before {
   content: '';
   width: 232px;
   height: 100%;
   background: url("../img/common/nav_bg.png") no-repeat center/100% 100%;
   position: absolute;
   top: 0;
   left: 50%;
   opacity: 0;
   transition: all 0.3s;
   transform: translateX(-50%);
}

#navbar #navbar__nav .menu-item a {
   display: block;
   padding: 25px 0;
   position: relative;
   z-index: 1;
}

#navbar #navbar__nav .menu-item:hover:before {
   opacity: 1;
}

#navbar #navbar__nav .menu-item.current-menu-item:before {
   opacity: 1;
}

body.home #navbar #navbar__nav .menu-item:before {
   opacity: 0;
}

body.home #navbar #navbar__nav .menu-item:hover:before {
   opacity: 1;
}

body.home #navbar #navbar__nav .menu-item.menu-item-10:before {
   opacity: 1;
}

.hamburger {
   width: 70px;
   height: 70px;
   box-sizing: border-box;
   cursor: pointer;
   position: relative;
}

.hamburger:after {
   content: 'Menu';
   color: #fff;
   font-weight: bold;
   font-size: 12px;
   letter-spacing: 0;
   line-height: 20px;
   text-align: center;
   position: absolute;
   right: 0;
   bottom: 14px;
   left: 0;
}

.hamburger .hamburger-line {
   width: 24px;
   height: 12px;
   position: absolute;
   top: 20px;
   left: 50%;
   transform: translateX(-50%);
   cursor: pointer;
}

.hamburger .hamburger-line div {
   width: 100%;
   height: 1px;
   background-color: #fff;
   position: absolute;
   right: 0;
   -webkit-transition: all 0.2s;
   -o-transition: all 0.2s;
   transition: all 0.2s;
}

.hamburger .hamburger-line div:nth-child(1) {
   top: 0;
}

.hamburger .hamburger-line div:nth-child(2) {
   top: 6px;
}

.hamburger .hamburger-line div:nth-child(3) {
   top: 12px;
}

.hamburger:hover .hamburger-line div:nth-child(2) {
   width: 100%;
}

.hamburger.is-active:after {
   content: "Close";
}

.hamburger.is-active .hamburger-line {
   left: 53%;
}

.hamburger.is-active .hamburger-line div:nth-child(1) {
   -webkit-transform: rotate(45deg) translateY(13px);
   -ms-transform: rotate(45deg) translateY(13px);
   transform: rotate(45deg) translateY(13px);
   left: 8px;
}

.hamburger.is-active .hamburger-line div:nth-child(2) {
   opacity: 0;
}

.hamburger.is-active .hamburger-line div:nth-child(3) {
   -webkit-transform: rotate(-45deg) translateY(-4px);
   -ms-transform: rotate(-45deg) translateY(-4px);
   transform: rotate(-45deg) translateY(-4px);
   left: 1px;
}

@media screen and (max-width: 1400px) {
   #navbar #navbar__nav .menu-item:before {
      width: 136%;
   }
}

@media screen and (max-width: 991px) {
   #navbar #navbar__nav {
      font-size: 14px;
   }
}

@media screen and (max-width: 767px) {
   header {
      background: transparent;
   }

   header:before {
      content: '';
      width: 100%;
      height: 70px;
      background-position: center top;
      background-repeat: repeat;
      background-image: url(../img/common/header-bg.jpg);
      background-color: #7c6c10;
      background-blend-mode: multiply;
      position: absolute;
      top: 0;
      left: 0;
   }

   header .logo {
      padding: 11px 0;
   }

   header .logo a {
      width: 150px;
      height: 48px;
   }

   header .bnr {
      display: none;
   }

   header .hamburger {
      margin-right: -20px;
   }

   #navbar {
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
      padding: 100px 20px 120px;
      position: fixed;
      top: 0;
      left: 0;
      transition: all 0.5s ease;
      opacity: 0;
      visibility: hidden;
      z-index: -1;
   }

   #navbar #navbar__nav {
      display: block;
      font-size: 18px;
   }

   #navbar #navbar__nav .menu-item {
      width: 100%;
      padding: 0;
   }

   #navbar #navbar__nav .menu-item:before {
      width: 100%;
   }

   #navbar #navbar__nav .menu-item a {
      padding: 15px 0;
   }

   #navbar #navbar__nav .menu-item:hover:before {
      opacity: 0;
   }

   .navOpen #navbar {
      opacity: 1;
      visibility: visible;
   }
}

/* --- --- */
/*=============================================
 * <footer>
 *=============================================*/
/* --- --- */
footer {
   background-position: center top;
   background-repeat: repeat;
   background-image: url("../img/common/bg03.jpg");
   background-color: #7c6c10;
   background-blend-mode: multiply;
   text-align: center;
   padding: 60px 0 85px;
   position: relative;
}

footer .logo a {
   display: inline-block;
   width: 236px;
}

footer .footer__nav {
   padding-top: 60px;
}

footer .footer__nav ul {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   color: #fff;
   font-weight: 500;
   font-size: 18px;
   line-height: 22px;
   letter-spacing: 0;
}

footer .footer__nav ul li {
   padding: 0 30px;
}

@media screen and (max-width: 1400px) {
   footer .footer__nav ul li {
      padding: 0 20px;
   }
}

@media screen and (max-width: 991px) {
   footer .footer__nav ul {
      font-size: 14px;
   }

   footer .footer__nav ul li {
      padding: 0 15px;
   }
}

@media screen and (max-width: 767px) {
   footer {
      padding: 40px 0 100px;
   }

   footer .footer__nav {
      padding-top: 10px;
   }

   footer .footer__nav ul {
      justify-content: flex-start;
      text-align: left;
   }

   footer .footer__nav ul li {
      width: 33.333%;
      padding: 10px 0 0;
   }
}

/* --- --- */
.ft_fixed {
   width: 100%;
   position: fixed;
   bottom: 0;
   left: 0;
   z-index: 90;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s;
}

.ft_fixed.visible {
   opacity: 1;
   visibility: visible;
}

.ft_fixed ul {
   display: flex;
   flex-wrap: wrap;
}

.ft_fixed ul li {
   width: 50%;
   background-color: #ddc965;
   text-align: center;
}

.ft_fixed ul li+li {
   background-color: #70c65e;
}

.ft_fixed ul li img {
   width: auto;
   height: 60px;
}

/* --- --- */