@charset "UTF-8";

/* 以下、ハンバーガーメニュー */
#hbgbtn {
  position: fixed;
  z-index: 9999999;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background-color: #b18559;
  cursor: pointer;
}
#hbgbtn .btninner {
  position: relative;
}
#hbgbtn .btninner span {
  height: 1px;
  width: 40px;
  background-color: #FFF;
  position: absolute;
  transition: 0.5s;
}
#hbgbtn .btninner span:nth-child(1) {
  top: 12px;
  left: 15px;
}
#hbgbtn .btninner span:nth-child(2) {
  top: 24px;
  left: 15px;
}
#hbgbtn .btninner span:nth-child(3) {
  top: 36px;
  left: 15px;
}
#hbgbtn .btninner span.openbtn:nth-child(1) {
  top: 24px;
  transform: rotate(315deg);
  transition: 0.5s;
}
#hbgbtn .btninner span.openbtn:nth-child(2) {
  top: 24px;
  width: 0px;
  left: 50%;
  transition: 0.5s;
}
#hbgbtn .btninner span.openbtn:nth-child(3) {
  top: 24px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#hbgbtn .btninner p {
  color: #fff;
  font-family: "Yu Mincho", "YuMincho";
  font-weight: lighter;
  font-size: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 42px;
}

/* 以下、ハンバーガーメニューを押したときに出るウィンドウ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 40px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.overlay ul {
  list-style-type: none;
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
}
.overlay ul li {
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.2s, transform 0.2s;
}
.overlay ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 10px;
  display: flex;
  justify-content: space-around;
}
.overlay ul li:nth-child(5) {
  position: relative;
}
.overlay ul li:nth-child(5)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(5):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(1) {
  position: relative;
}
.overlay ul li:nth-child(1)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(1):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(3) {
  position: relative;
}
.overlay ul li:nth-child(3)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(3):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(4) {
  position: relative;
}
.overlay ul li:nth-child(4)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(4):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(2) {
  position: relative;
}
.overlay ul li:nth-child(2)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(2):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay .overlay_btn1 {
  margin-top: 40px;
}
.overlay .overlay_btn1 a {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-decoration: none;
  color: #000;
  border: #000 solid 1px;
  padding: 10px 38px;
}
.overlay .overlay_btn1 a:hover {
  color: #FFF;
  background-color: #000;
}
.overlay .overlay_btn2 {
  margin-top: 40px;
}
.overlay .overlay_btn2 a {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-decoration: none;
  color: #000;
  border: #000 solid 1px;
  padding: 10px 30px;
}
.overlay .overlay_btn2 a:hover {
  color: #FFF;
  background-color: #000;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.overlay.show li {
  opacity: 1;
  transform: none;
}
.overlay.show li:nth-child(1) {
  transition-delay: 50ms;
}
.overlay.show li:nth-child(2) {
  transition-delay: 100ms;
}
.overlay.show li:nth-child(3) {
  transition-delay: 150ms;
}
.overlay.show li:nth-child(4) {
  transition-delay: 200ms;
}
.overlay.show li:nth-child(5) {
  transition-delay: 250ms;
}

/* 以下ページ下部の固定配置BOX */
.fixedbox {
  z-index: 3;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
.fixedbox.appear {
  opacity: 1;
  pointer-events: auto;
}
.fixedbox p {
  width: 49.9%;
}
.fixedbox a {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  background-color: #321e0a;
  text-decoration: none;
}
.fixedbox a span {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  color: #FFF;
}
.fixedbox a img {
  width: 22px;
  height: 22px;
  padding-right: 3px;
}
.fixedbox #border {
  width: 0.2%;
  height: 70px;
  background-color: #FFF;
}

.fixedbox2 {
  z-index: 3;
  position: fixed;
  bottom: 80px;
  right: 10px;
  opacity: 0.4;
  display: none;
}
.fixedbox2.appear {
  display: block;
}
.fixedbox2:hover {
  opacity: 1;
}


/* 以下フッター */
footer {
  background-color: #193d04;
  color: #FFF;
}
footer .company {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
footer .company p {
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
footer .copyright {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 80px;
}
footer .copyright p {
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}/*# sourceMappingURL=style.css.map */


@media screen and (max-width:767px){
  .overlay ul {
    width: 100%;
  }

  .fixedbox2:active {
    opacity: 1;
  }
  .fixedbox2:hover{
    opacity: 0.4;
  }
}