/* ========================= */
/* Base */
/* ========================= */

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  width:100%;
  height:100%;
}

body{
	background:#292C33;
  -webkit-tap-highlight-color: transparent;
}

#app{
  position:relative;

  width:100%;

  height:100%;   /* ←変更（超重要） */


  padding-top: calc(95px + env(safe-area-inset-top));
  padding-bottom: calc(120px + env(safe-area-inset-bottom)); /* ←追加 */
}


/* ========================= */
/* Keyboard Fix */
/* ========================= */

.keyboard-close-fix {
  transition: none !important;
}