@charset "UTF-8";
/* CSS Document */
.nav_wrap {
  width: 250px;
  margin-top: 100px;
}
.nav_wrap li {
  list-style: none;
  font-size: 18px;
  font-weight: bold;
}
.nav_wrap li a {
  background-color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  display: block;
  color: #000;
  padding: 15px 10px 15px 20px;
  margin: 0px 0px 5px 0px;
  border-radius: 8px;
  transition: all .3s;
}
.nav_wrap li a:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #572f5a;
  border-right: solid 3px #572f5a;
  border-radius: 2px;
  transform: rotate(45deg);
}
.nav_wrap li a:hover {
  background-color: rgba(103, 72, 95, 0.85);
  color: #fff;
}
.nav_wrap li a:hover:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}
/* ハンバーガーボタン */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 2px;
  background: #333;
  transition: .3s;
}
.nav-toggle span:nth-child(1) {
  top: 14px;
}
.nav-toggle span:nth-child(2) {
  top: 23px;
}
.nav-toggle span:nth-child(3) {
  top: 32px;
}
/* 開いた時 */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
}
.nav_wrap li a.current {
	color: #fff;
	background-color: rgba(103, 72, 95, 0.85);
}

.nav_wrap li a.current:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ===================== */
@media (max-width:992px) {
  .nav_wrap {
    width: auto;
    margin-top: 0px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
  }
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: .4s;
    padding-top: 100px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .1);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  .nav li {
    border-bottom: 1px solid #eee;
  }
  .nav a {
    padding: 20px;
  }
}