@charset "UTF-8";
/* CSS Document */
.fix_menu {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 65px 0;
  height: auto;
  transition: background .5s;
}
.fixedmenu {
  background: rgb(255 255 255 / 80%);
}
#menu {
  width: auto;
  padding: 0;
  z-index: 999;
  position: relative;
}
#menu-btn {
  display: none;
}
#menu-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  list-style-type: none;
  width: 90%;
  height: 130px;
  position: fixed;
  border-bottom: 1px solid rgb(51 51 77 / 30%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 999;
}
#menu-content > li {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /*z-index: 999;*/
}
#menu-content > li > a {
  display: block;
  color: #33334D;
  font-weight: 500;
  font-size: 1.8rem;
  text-decoration: none;
  padding: 15px 15px 15px 15px;
}
#menu-content > li > a:hover {
  opacity: 0.3;
}
#menu-content > li.head-btn > a {
  padding: 15px 0px 15px 35px;
  width: 90px;
  text-decoration: none;
  font-weight: 500;
  background: rgb(255 255 255 / 80%);
  border: 1px solid rgb(51 51 77 / 30%);
  border-radius: 100vh;
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
}
.head-btn {
  cursor: pointer;
  align-items: center;
  margin: 0px 0px 0px 20px;
}
.head-btn a:before {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin: auto 0px;
  content: "";
  vertical-align: top;
  width: 10px;
  height: 10px;
  border-radius: 100vh;
  background-color: #FF7BAC;
}
.menu_home {
  display: none;
}
.sp {
  display: none;
}
@media screen and (max-width:1500px) {
  #menu-content {
    width: 100%;
  }
  .head-btn {
    margin: 0 1%;
  }
}
@media screen and (max-width:1300px) {
  #menu-content {
    width: calc(100% - 260px);
    left: auto;
    right: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
  #menu-content > li > a {
    font-size: 1.4vw;
    padding: 15px 10px 15px 10px;
  }
  #menu-content > li.head-btn > a {
    width: 70px;
  }
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1080px) {
  .fixedmenu {
    background: none;
  }
  #menu.fixed {
    height: auto;
  }
  nav {
    position: fixed;
    top: 0;
    left: -1060px;
    bottom: 0;
    width: 100%;
    background-color: #33334D;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
  }
  .open nav {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 3%;
    width: 25px;
    height: 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #33334D;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 0px;
  }
  .toggle_btn span:nth-child(2) {
    top: 10px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 3px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu-content {
    display: block;
    margin: 50px auto;
    width: 90%;
  }
  #menu-content > li {
    width: 100%;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 20px 0px 20px 20px;
    font-size: 1.8rem;
    color: #FFF;
  }
  #menu-content > li::before {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin: auto 0px;
    content: "";
    vertical-align: top;
    width: 10px;
    height: 10px;
    background-color: #FF7BAC;
    border-radius: 100vh;
  }
  #menu-content > li.head-btn > a {
    padding: 20px 0px 20px 20px;
    width: 100%;
    background: none;
    display: inline-block;
    font-size: 1.8rem;
  }
  .br_non {
    display: none;
  }
  .menu_home {
    display: block;
  }
  .sp {
    display: block;
  }
  .head-btn {
    margin: 0px 0px 0px 0px;
  }
  .head-btn a:before {
    display: none;
  }
}
@media screen and (max-width:800px) {}
/*# sourceMappingURL=style.css.map */