/*infoエリアをはじめは非表示*/
#info {
    display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
    max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

/* ✕ボタンの位置調整 */
.modaal-close {
  position: absolute;
  top: -60px;
  right: 0;
}