@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #24211b;
    border-radius: 10px;
    cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fdc;
}
.menu-content ul {
  padding-top: 90px;
  padding-left: 30px;
}
.menu-content ul li {
  list-style: none;
}
.menu-content ul li p {
  display: block;
  width: 100%;
  font-size: 34px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 34px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li .tool-link {
  padding-left: 26px;
  font-size: 20px;
}
.menu-content ul li .tool-link-1 {
  padding-left: 26px;
  font-size: 20px;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #004876;
    transition: all 0.5s;
}

#menu-btn-check:checked ~ .menu-content {
    left: 78%;
}



@media (max-width: 800px){
  *,
  ::before,
  ::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
  }

  .menu-content ul {
    padding-top: 40px;
  }

  .menu-content ul li p {
    font-size: 28px;
  }

  .menu-content ul li a {
      font-size: 28px;
  }

  .menu-btn {
      position: fixed;
      top: 14px;
      right: 10px;
      display: flex;
      height: 50px;
      width: 50px;
      justify-content: center;
      align-items: center;
      z-index: 90;
      background-color: #24211b;
      border-radius: 10px;
      cursor: pointer;
  }

  #menu-btn-check:checked ~ .menu-content {
      left: 0%;
  }

}
