    <style>
        body {
            font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
            background-color: #f4f4f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        h1 {
            color: #2c3e50;
            text-align: center;
            border-top: 1px solid #8b008b;
            border-bottom: 3px solid #8b008b;
            padding-top: 15px;
            padding-bottom: 20px;
            margin-bottom: 45px;
			font-family: "New Tegomin", serif;
			font-weight: 800;
			font-style: normal;
  			font-size: 230%;
			color: #000;
        }
		
		h2{
			font-size: 130%;
			margin-top: 25px;
			margin-bottom: 7px;
		}
		
		h3{
			font-size: 125%;
			margin-top: 15px;
			margin-bottom: 7px;
		}

        .disclaimer {
            color: #e74c3c;
            text-align: left;
            font-weight: bold;
            margin-bottom: 25px;
            padding: 10px;
            border: 1px dashed #e74c3c;
            border-radius: 6px;
        }

        .question-block {
            background: #ecf0f1;
            padding: 15px; 
            margin-bottom: 20px; 
            border-left: 6px solid #3498db;
            border-radius: 8px;
        }

        .question-block p {
            font-weight: bold;
            font-size: 1.0em;
            margin-top: 0;
            margin-bottom:20px;
            color: #2980b9;
        }

        label {
            display: block;
            margin: 3px 0; 
            cursor: pointer;
            padding: 5px 2px 4px 8px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        label:hover {
            background-color: #dce4e6;
        }

        input[type="radio"] {
            margin-right: 10px;
        }

        button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: #2ecc71;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.2em;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
            margin-top: 30px;
        }

        button:hover {
            background-color: #27ae60;
        }

        .result-area {
            margin-top: 40px;
            padding: 30px;
            border: 3px solid #f39c12;
            background-color: #fffaf0;
            border-radius: 10px;
            text-align: center;
        }

        .result-area h2 {
            color: #d35400;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
        }

        #totalScore {
            font-size: 3em;
            color: #e74c3c;
            font-weight: 900;
        }

        #resultText {
            font-size: 1.5em;
            color: #c0392b;
            font-weight: bold;
            margin-top: 10px;
            display: block;
        }

        #detailResult {
            margin-top: 15px;
            padding: 15px;
            background-color: #ffeaa7;
            border-radius: 6px;
            font-style: italic;
        }
    </style>