@charset "UTF-8";

.wrapper{
  margin-left: auto;
  margin-right: auto;
  display: grid;
  width: 640px;
  height: 100vh;                /* grid全体の高さを設定 */
  grid-template-rows: 32px 328px 115px 17px 25px auto;  /* gridの割合 */
  grid-template-columns: 220px 420px;  /* 横幅 */
}

.header{
  grid-row: 1;
  grid-column: 1 / 3;
}

.topl{
  grid-row: 2 / 5;
  grid-column: 1;
}
.topl img{
  position: absolute;
  clip: rect(0px, 220px, 460px, 0px);
}

.topr1{
  position: relative;
  grid-row: 2;
  grid-column: 2;
   margin-left: -220px;
   margin-top: 0px;
}
.topr1 img{
  position: absolute;
  clip: rect(0px, 640px, 327px, 220px);
}

.topr2{
  grid-row: 3;
  grid-column: 2;
  overflow-y: scroll;
}
.topr3{
  grid-row: 4;
  grid-column: 2;
  margin-left: -220px;
  margin-top: -443px;
}
.topr3 img{
  position: absolute;
  clip: rect(443px, 640px, 460px, 220px);
}

.menu{
  grid-row: 5;
  grid-column: 1 / 3;
}
.footer{
  grid-row: 6;
  grid-column: 1 / 3;
  background: #333 url(menuubg.png) no-repeat 0% 0%;
}

