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

 body{ background-color:#c99526;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.m-sub{ font-size:12px;}

.fixmenu{position: fixed; top: 30px; right: 70px; z-index:10;}
.accordion ul{ display:none; width:320px; background-color:#000;
margin:50px 0px 0 0; padding:10px;z-index:9; list-style:none;  }

@media screen and (max-width:767px) {
.fixmenu{ top: 30px; right: 50px; }
}

@media screen and (max-width: 37.5em) {
.fixmenu{ top: 0px; right: 0px; }
}
.accordion{ color: #896822;}
.accordion a{ text-decoration:none; color:#fff;}
.accordion a:hover{ text-decoration:none; color:#c99526;}
.accordion ul li{ line-height:350%; font-weight:bold; border-bottom:1px dotted #c99526; padding-left:20px; margin-right:20px;}
.accordion ul li:last-of-type{ border:none;}


.hamburger {
  width: 40px;
  height: 40px;
  background-color:#000;
  /*background: rgba(255,243,243,1.00);*/
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hamburger.active span {
  visibility: hidden;
}
.hamburger.active span::before, .hamburger.active span::after {
  top: 0;
  visibility: visible;
}
.hamburger.active span::before {
  transform: rotate(45deg);
}
.hamburger.active span::after {
  transform: rotate(135deg);
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.3s;
}
.hamburger span::before {
  top: -8px;
}
.hamburger span::after {
  top: 8px;
}
