/* ハンバーガーメニューのボタン */
.menu-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  height: 80px;
  width: 80px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 2px;
  background-color: #666;
  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 {
  display: none;
}

/* メニュー部分 */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #faf7f4;
}

.menu-content .menu-content-list {
  height: 80%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 70px 10px 50px;
  margin-bottom: 50px;
}

.menu-content .menu-content-list li {
  font-size: 1.4rem;
  border-bottom: solid 1px #eee;
}

.menu-content .menu-content-list li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding:15px;
  position: relative;
}

.menu-content .menu-content-list li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 20px;
}

/* お問い合わせ */
.menu-content_contact{
  font-size: 1.4rem;
  margin:20px 0;
}

.menu-content .menu-content_contact a {
  background: #00aa6e;
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding:15px;
  position: relative;
  border-radius: 5px;
}

.menu-content .menu-content_contact a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 20px;
}

/* お問い合わせ */
.menu-content_lang{
  display:flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin:10px 0;
}

.menu-content .menu-content_lang a {
  background: #fff;
  display: block;
  flex:0 0 47.5%;
  color: #333;
  text-decoration: none;
  text-align: center;
  padding:15px;
  position: relative;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #faf7f4;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
  left: 0;
  /*メニューを画面内へ*/
}