@charset "UTF-8";
/*======================================
header
======================================*/
.spheader {
  display: none;
}

/* 下層用 */
.pcheader {
  width: 100%;
  height: 80px;
  background: #212735;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-headertit {
  width: 530px;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
header-レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 900px) {
  /* 下層用 */
  .pcheader {
    display: none;
  }
  .spheader {
    display: block;
    width: 100%;
    height: 60px;
    background: #212735;
    display: flex;
    align-items: center;
  }
  .sp-headertit {
    width: 70%;
    max-width: 400px;
    margin: 0 0 0 14px;
  }
  /*　↓ハンバーガーメニュー↓ */
  body.fixed {
    width: 100%;
    position: fixed;
  }
  #sp-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 50%;
    height: 100vh;
    background: #212735;
    transition: all 0.6s;
    border-left: 2px solid #a46d1c;
  }
  #sp-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #sp-nav.panelactive #sp-nav-list {
    position: fixed;
    z-index: 999;
    width: 50%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spnav-listtit {
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212735;
    font-size: 20px;
    font-weight: bold;
  }
  /*リストのレイアウト設定*/
  #sp-nav li {
    list-style: none;
    border-bottom: 1px solid #a46d1c;
  }
  #sp-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
  }
  #sp-nav li a:hover {
    background: #a46d1c;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 7px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 46px;
    background: #a46d1c;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #fff;
    width: 50%;
  }
  .openbtn span:nth-of-type(1) {
    top: 23px;
  }
  .openbtn span:nth-of-type(2) {
    top: 29px;
  }
  .openbtn span:nth-of-type(3) {
    top: 35px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 34px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn::after {
    content: "Menu"; /*Menu表示を指定*/
    position: absolute;
    top: 0px;
    left: 4px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
  }
  .openbtn.active::after {
    content: "Close"; /*Close表示を指定*/
    top: 0px;
    left: 2px;
  }
} /* end media */
@media screen and (max-width: 600px) {
  #sp-nav {
    width: 80%;
  }
  /*ナビゲーションの縦スクロール*/
  #sp-nav.panelactive #sp-nav-list {
    width: 80%;
  }
} /* end media */
/*======================================
navi
======================================*/
/* pc用gナビ*/
.pc-gnavbox {
  background: #212735;
  width: 100%;
  padding: 13px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #a46d1c;
}

.pc-gnav ul {
  display: flex;
}
.pc-gnav li {
  border-left: 1px solid #a46d1c;
}
.pc-gnav li:last-of-type {
  border-right: 1px solid #a46d1c;
}
.pc-gnav li a {
  display: inline-block;
  color: #fff;
  padding: 6px 20px;
  font-size: 14px;
  transition: all 0.3s;
}
.pc-gnav li a:hover {
  color: #f4ce77;
}

/* pc用MV右上のナビ*/
.pc-asidenav {
  position: absolute;
  top: 0;
  right: 0;
  background: #212735;
  padding: 10px;
}
.pc-asidenav ul {
  display: flex;
}
.pc-asidenav li:first-of-type {
  border-right: 1px solid #a46d1c;
}
.pc-asidenav li a {
  display: inline-block;
  color: #fff;
  padding: 6px 20px;
  font-size: 14px;
  transition: all 0.3s;
}
.pc-asidenav li a:hover {
  color: #f4ce77;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
navi-レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 900px) {
  /* pc用ナビ*/
  .pc-gnavbox, .pc-asidenav {
    display: none;
  }
} /* end media */
/* end media */
/*======================================
footer
======================================*/
.footer-img {
  background: url(../img/common/img_moss.jpg) no-repeat center 60%/cover;
  width: 100%;
  height: 400px;
}

.footer-main {
  background: #a46d1c;
  padding: 40px 0;
}

.footer-flexbox {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  color: #fff;
}
.footer-flexbox .flex-item {
  display: flex;
  align-items: flex-start;
}
.footer-flexbox .footer-tit {
  background: #212735;
  padding: 6px 20px;
  margin: 0 20px 0 0;
  text-align: center;
  font-size: 16px;
}
.footer-flexbox address {
  font-style: normal;
}
.footer-flexbox address .name {
  font-size: 18px;
  line-height: 1;
  margin: 0 0 8px;
}
.footer-flexbox address .name img {
  width: 20px;
  vertical-align: top;
}
.footer-flexbox address .add {
  font-size: 14px;
}

.footer-btnbox {
  margin: 15px 0 0;
}

small {
  background: #212735;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  padding: 10px 0;
  color: #fff;
  border-top: 1px solid #fff;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
footer-レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 900px) {
  .footer-img {
    height: 200px;
  }
  .footer-flexbox .flex-item {
    display: block;
    width: 48%;
  }
  .footer-flexbox .footer-tit {
    padding: 6px 20px;
    margin: 0 0 15px;
    width: 100%;
  }
  .footer-flexbox .footer-tit br {
    display: none;
  }
} /* end media */
@media screen and (max-width: 700px) {
  .footer-flexbox {
    display: block;
  }
  .footer-flexbox .flex-item {
    width: 100%;
    margin: 0 0 20px;
  }
  .footer-flexbox .footer-tit {
    margin: 0 0 10px;
  }
  .footer-btnbox {
    text-align: center;
  }
} /* end media */