@charset "UTF-8";
@import 'common.css';
body {
  background: var(--background-color);
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; /* スクロールバーを非表示に */
}

.containerUB {
  display: flex;
  flex-direction: column;
  height: 100vh; /* ビューポートの高さを100%に設定 */
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh; /* ビューポートの高さを100%に設定 */
}

iframe {
  flex: 1; /* 各iframeを均等に配置 */
  border: none; /* ボーダーを非表示に */
  height: 100%;
}

.top {
  height: 150px; /* 上部の高さを指定 */
}/*# sourceMappingURL=divview.css.map */