@charset "UTF-8";
/*********************
head
**********************/
.head-flex {
  display: flex;
  padding: 10px 30px;
  align-items: center;
}
.head-flex .left a {
  font-size: 20px;
  color: #523c3c;
  font-weight: 600;
}
.head-flex .left a img {
  width: 100px;
}
.head-flex .right {
  flex-grow: 1;
  padding-left: 30px;
}
.head-flex .right ul {
  display: flex;
  justify-content: right;
  align-items: center;
}
.head-flex .right ul li {
  background: #fffbf8;
  padding: 20px 0;
  position: relative;
  padding-right: 50px;
  line-height: 150%;
}
.head-flex .right ul li .hover-box {
  position: absolute;
  background: white;
  opacity: 0;
  pointer-events: none;
  margin-top: 20px;
}
.head-flex .right ul li .hover-box ul {
  display: block;
  width: 200px;
  padding: 20px;
  padding-top: 10px;
}
.head-flex .right ul li .hover-box ul li {
  margin: 0;
  padding: 10px 0 5px 0;
  cursor: auto;
  background: white;
}
.head-flex .right ul li .hover-box ul a {
  text-align: left;
  margin: 0;
  border-bottom: solid 1px #707070;
  padding-bottom: 2px;
  font-size: 15px;
}
.head-flex .right ul li:hover .hover-box {
  opacity: 1;
  pointer-events: auto;
}
.head-flex .right ul li:active .hover-box {
  opacity: 1;
  pointer-events: auto;
}
.head-flex .right ul li.pointer {
  cursor: context-menu;
}
.head-flex .right ul li:first-child a {
  margin-left: 50px;
}
.head-flex .right ul .contact {
  padding: 10px 0;
}
.head-flex .right ul .contact a {
  background: #523c3c;
  color: #fffbf8;
  padding: 10px 20px;
  border-radius: 10px;
  margin-left: 50px;
  margin-right: 30px;
}
.head-flex .right ul a {
  color: #523c3c;
}

/*********************
ハンバーガーメニュー
**********************/
.menu-btn {
  display: none !important;
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: white;
  border-radius: 5px;
  border: solid 1px #707070;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background-color: #707070;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-btn {
  background-color: transparent;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0%; /**/
  z-index: 80;
  background-color: transparent;
}

.menu-logo {
  display: flex;
  height: 50px;
  align-items: center;
  margin: 20px 5%;
}
.menu-logo img {
  width: 150px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: white;
  transition: all 0.5s; /*アニメーション設定*/
  display: none;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.menu-content .menu-logo {
  height: auto;
  margin: 0;
  padding: 10px 30px;
  margin-bottom: 20px;
}
.menu-content .menu-logo a {
  font-size: 14px;
  color: #523c3c;
  font-weight: 600;
}
.menu-content .menu-logo a img {
  width: 70px;
}
.menu-content ul {
  padding-left: 5%;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.menu-content ul a {
  display: inline;
}
.menu-content ul li {
  padding: 10px 0%;
  list-style: "- ";
}
.menu-content ul ul {
  padding-left: 10%;
}
.menu-content ul ul li {
  list-style: none;
  padding-bottom: 0;
}
.menu-content ul ul li a {
  color: #e7cbb4;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

.menu-content .menu-area {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
.menu-content .menu-area li {
  display: block;
  list-style: none;
  text-align: left;
  width: auto;
  font-size: 16px;
  margin: 20px auto;
  width: 80px;
}
.menu-content .menu-area .sns {
  display: flex;
  justify-content: center;
}
.menu-content .menu-area .sns li {
  margin: 30px 20px;
}

.menu-area input {
  display: none; /*チェックボックスを隠す*/
}

.menu-area label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  position: relative;
}

.menu-content .menu-area .menu-anime li {
  font-size: 15px;
  margin: 0;
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li {
  width: 200px;
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
  padding: 10px;
}

.menu-content .menu-area .menu-anime {
  height: 0;
}

#menu_bar01:checked ~ #links01,
#menu_bar02:checked ~ #links02 {
  height: auto;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 0px;
}

/*閉じた状態の矢印描画*/
.menu-area label {
  position: relative;
}

.menu-area label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #707070 2px solid;
  border-right: #707070 2px solid;
  transform: rotate(135deg);
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.menu-area input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: gray3 2px solid;
  border-right: gray3 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  right: -20px;
  bottom: -5px;
  margin: auto;
}

.menu-bg nav {
  padding: 0 5%;
}

@media (max-width: 1250px) {
  .head-flex .right ul .contact a {
    margin-left: 0;
  }
  .head-flex .right ul li {
    padding-right: 30px;
  }
}
@media (max-width: 1080px) {
  .head-flex .right ul li {
    padding-right: 20px;
    font-size: 15px;
  }
}
@media (max-width: 1000px) {
  .head-flex .right {
    display: none;
  }
  .menu-btn {
    display: flex !important;
  }
  .menu-content {
    display: block;
  }
  .head-flex .left a {
    font-size: 14px;
  }
  .head-flex .left a img {
    width: 70px;
  }
}/*# sourceMappingURL=head.css.map */