@charset "UTF-8";
/*********************
head
**********************/
.head-flex {
  display: flex;
  padding: 10px 10px;
  align-items: center;
}
.head-flex .left a {
  width: 200px;
}
.head-flex .right {
  flex-grow: 1;
}
.head-flex .right ul {
  display: flex;
  justify-content: right;
}
.head-flex .right ul a {
  margin-right: 20px;
}

/*********************
ハンバーガーメニュー
**********************/
.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;
}

#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: 900px) {
  .head-flex .right {
    display: none;
  }
  .menu-btn {
    display: flex !important;
  }
  .menu-content {
    display: block;
  }
}/*# sourceMappingURL=head.css.map */