body{
  max-width: none;
}
article{
  max-width: 1100px;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

/*ヘッダー背景*/
.widescreen{display: none;}
@media screen and (min-width:1100px) {
  .widescreen{
    display: block;
  }
  .middlescreen{
    display: none;
  }
  .top-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px; /* 背景を適用したい高さ */
    background-color: #598000; /* ここに適用したい背景色を指定 */
    z-index: -1;
  }
}