@charset "utf-8";
html, body {
  height: 100%; /* BodyとHTMLを100%に設定 */
  margin: 0; /* マージンを0に設定 */
}
main {
  height: 100%; /* Mainの高さを100%に設定 */
  width: 100%; /* Mainの幅を100%に設定 */
}
iframe {
  width: 100%; /* Iframeの幅を100%に設定 */
  height: 100%; /* Iframeの高さを100%に設定 */
  border: none; /* ボーダーをなしに設定 */
}