@charset "utf-8";
/* CSS Document */

.hamburger-button {
  display: flex; /* media query時にはflexでもどして */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  background-color: rgba(83, 174, 158, 0.6);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  outline: none;
  border-radius: 10%;
}
.hamburger-button svg {
  height: 25px; /* autoではなく同じ数字で */
  width: 25px; /* autoではなく同じ数字で */
}
.hamburger-button path {
  fill: #fff;
}
.hamburger-nav {
  position: fixed;
  width: 35%;
  height: 210px;
  background-color: rgba(83, 174, 158, 0.6);
  z-index: 1001;
  padding: 20px;
  display: none;
  text-align: left;
}
.hamburger-nav ul li a{
  color: #fff;
  font-size: 20px;
  font-family: 'Cinzel', serif;
  font-family: 'Neuton', serif;
  font-weight: normal;
  line-height:40px ;
}
.hamburger-nav ul li a:hover{
  border-bottom: 1px solid #86ae9e;
}
#hamburger-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
}
