body {
  background: #008080; /* Win98風の背景 */
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.window {
  position: absolute;
  width: 400px;
  height: 300px;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.title-bar {
  cursor: move;
}
iframe {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#desktop {
  pointer-events: none; /* デスクトップ自身はクリックを受けない */
}

#desktop iframe {
  pointer-events: auto; /* iframeだけクリックを受ける */
}

