 html {
    cursor: none;
    height: 100%;
  }

  body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
	font-family:"Lucida Console", Monaco, "monospace"
  }

  #customCursor {
    position: absolute;
    width: 40px;
    height: 25px;
    background-image: url('trapped cursor.png');
    background-size: cover;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1000;
  }

  #gifCursor {
    position: absolute;
    width: 40px;
    height: 25px;
    background-image: url('trapped cursor.gif');
    background-size: cover;
    pointer-events: none;
    display: none; /* 初期は非表示 */
    z-index: 1000;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1500;
  }

  #welcomeText {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 283px;
    height: 56px;
    background-image: url("WELCOMEtext.png");
    background-size: cover;
    z-index: 500;
}