        #modal-body h1 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 200;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.5s;
            text-align: center;
        }

       .modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 20px;
            border-radius: 10px;
            width: 84%;
            max-width: 600px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.5s forwards;
        }


       .modal-content ul li {
			    list-style: disc;
			    text-indent: 0;
			    margin-left: 2em;
				margin-top: 0.5em;
			}
       .modal-content ul li.sub {
				list-style: none;
				text-indent: -1em;
				margin-left: 1em;
				margin-top: 0.5em;
			}
        #modal-body .accordionItem {
            margin: 10px 0;
            border: 1px solid #0066cc;
            border-radius: 5px;
            overflow: hidden;
        }

        #modal-body .accordionQuestion {
            padding: 15px;
            background-color: #007BFF;
            /* アコーディオンのタイトル背景色を青に */
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            color: white; /* タイトルのテキストを白に */
            display: flex;
            justify-content: space-between; /* アイコンの位置調整 */
            align-items: center; /* アイコンの縦位置調整 */
            transition: background-color 0.3s;
            text-align: left;
        }

        #modal-body .accordionQuestion:hover {
            background-color: #0056b3; /* ホバー時の色変更 */
        }

        #modal-body .accordionAnswer {
            padding: 15px;
            display: none; /* 初期状態では非表示 */
            overflow: hidden;
            background-color: #fafafa;
            font-size: 16px;
            border-top: 1px solid #ccc;
            line-height: 1.5;
            text-align: left; /* テキストを左寄せ */
        }

        #modal-body .toggleIcon {
            font-size: 20px;
            transition: transform 0.3s;
        }
	#modal-body .accordionHdg{
           font-weight: bold;
           margin: 10px 0px;
           font-size: 13px;
       }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        #modal-body .agreement{
           padding: 10px;
           margin: 10px;
            text-align: left;
        }
        #modal-body .cautionList{
            text-align: left;
            margin-top: 20px;
        }

        /* 同意ボタンのスタイル */
        .agreementInput {
            margin: 20px 0;
            text-align: center; /* 中央寄せ */
        }

        /* ボタンのスタイル */
        .submitBtn {
            padding: 15px 30px; /* ボタンサイズを大きく */
            color: #fff;
            background-color: #FFA500; /* オレンジ色 */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 18px; /* ボタンのフォントサイズを調整 */
        }

        .submitBtn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        .agreementCheckbox {
            margin-right: 5px;
        }
        
        #modal-body section.section {
    margin-bottom: 20px;
}
