@charset "utf-8";
.drawer ul {
  font-size: 17px;
  display: block;
  list-style: none;
  margin: 0px;
  margin: 0px;
  padding: 0px;
  padding-top: 55px;
}
.drawer li a {
  color: #FFFFFF;
  display: block;
  background: #000;
  padding: 20px;
  letter-spacing: .3rem !important;
}
.drawer li a:hover {
  opacity: 1;
}
/*ドロワー*/
.drawer {
  position: relative;
}
.drawer_box {
  display: none;
}
.drawer_icon {
  cursor: pointer;
  display: block;
  width: 55px;
  height: 55px;
  position: fixed;
  right: 0;
}
.drawer_icon-parts, .drawer_icon-parts:before, .drawer_icon-parts:after {
  background-color: #000;
  display: block;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.drawer_icon-parts:before, .drawer_icon-parts:after {
  content: " ";
}
.drawer_icon-parts:before {
  top: 16px;
}
* .drawer_icon-parts:after {
  top: -16px;
}
.drawer_overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}
.drawer_menu {
  background: #000;
  color: #000;
  max-width: 100%;
  width: 260px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: -320px;
}
.drawer_icon {
  z-index: 4;
}
.drawer_menu {
  z-index: 3;
}
.drawer_overlay {
  z-index: 2;
}
.drawer_box:checked ~ .drawer_icon .drawer_icon-parts {
  background: transparent;
}
.drawer_box:checked ~ .drawer_icon .drawer_icon-parts:before {
  transform: rotate(-45deg);
  top: 0;
  background-color: #fff;
}
.drawer_box:checked ~ .drawer_icon .drawer_icon-parts:after {
  transform: rotate(45deg);
  top: 0;
  background-color: #fff;
}
.drawer_box:checked ~ .drawer_overlay {
  opacity: 0.5;
  pointer-events: auto;
  background-
}
.drawer_box:checked ~ .drawer_menu {
  right: 0;
}
.drawer_icon-parts, .drawer_icon-parts:after, .drawer_icon-parts:before, .drawer_overlay, .drawer_menu {
  transition: all 0.3s;
}
@media screen and (min-width:1000px) {
  .drawer ul {
    font-size: 14px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0px;
  }
  .drawer_menu {
    background: none;
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden
  }
  .drawer li a {
    color: #000000;
    display: block;
    background: none;
    padding: 0;
    margin: 70px 0px 0px 50px;
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
  }
  .drawer li a:hover {
    opacity: .7;
    background: none;
  }
  .drawer li a::after {
    background-color: #000;
    bottom: -5px;
    content: '';
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: .5s all;
    width: 0;
  }
  .drawer li a:hover::after {
    width: 60px;
  }
  .drawer li::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; /* 位置調整 */
    bottom: -20px; /* 下線の上下位置調整 */
    width: 50px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    background-color: #666666; /* 下線の色 */
  }
  .drawer li:last-of-type {
    border-bottom: 0px
  }
  .drawer_icon {
    display: none;
  }
  .drawer_icon-parts {
    display: none;
  }
  .drawer_overlay {
    display: none;
  }
}