@charset "UTF-8";
/* CSS Document */
/* モーダル全体 */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }
		  
	    /* モーダルの中身 */
    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 20px;
      width: 90%;
      max-width: 800px;
      border-radius: 8px;
    }

    iframe {
      width: 100%;
      height: 500px;
      border: 1px solid #ccc;
      margin-bottom: 20px;
    }

    label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    #confirmBtn:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

	.test-button {
  display: block;
  margin: 0 auto;
　　}

