/* #header {
  background: #000;
} */
.header_pc_container {
  position: fixed;
  top: 0;

  width: 100%;
  z-index: 9999;
}

@media screen and (min-width: 1440px) {
  .header_mobile_container {
    display: none;
  }
  .header_pc_container {
    display: block;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .header_mobile_container {
    display: none;
  }
  .header_pc_container {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header_mobile_container {
    display: none;
  }
  .header_pc_container {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header_pc_container {
    display: none;
  }
  .header_mobile_container {
    display: block;
  }
}
