@charset "utf-8";

/* CSS Document */
#header {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  z-index: 10;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 16px;
}

.header_wrapper img {
  max-width: 100%;
  height: auto;
  width: 72%;
}
.header_right img{
  display:none;
}

/*PCここから*/
@media (min-width: 768px) {

  /* ヘッダー */
  #header{
    margin-top: 40px;
    margin-bottom: 16px;
  }
  header {
    width: 100%;
  }

  .header_wrapper {
    position: relative;
    max-width: 1160px;
  }

  .header_wrapper img {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .header_right img {
    display: block;
    max-width: 100%;
  }

}