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

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

@media screen and (min-width: 1200px) {
.fixmenu{}
}

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

.fixmenu{position: fixed; top: 20px; right: 30px; z-index:10;}
.accordion ul{ display:none; width:320px; background-color:#000; border: 1px solid #fff;
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: 10px; }
}
.accordion{ color: #fff;}
.accordion a{ text-decoration:none; color:#fff;}
.accordion a:hover{ text-decoration:none; color:#fff;text-shadow:0 0 2px #4390ec, 0 0 2px #4390ec, 0 0 2px #4390ec, 0 0 15px #4390ec, 0 0 5px #4390ec, 0 0 15px #4390ec, 0 0 15px #4390ec, 0 0 15px #4390ec;}
.accordion ul li{ line-height:150%; font-weight:bold; border-bottom:1px dotted #fff; padding:10px 0 10px 20px; margin-right:20px; }
.accordion ul li:last-of-type{ border:none;}


.hamburger { border: 1px #fff solid;
  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;
}
