﻿

/*** for PC Browser ***/
@media (min-width:401px)
{
body {
            font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
            background-color: #f4f6f7;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
        }
        .container {
            background-color: #fff;
            max-width: 600px;
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            padding: 30px;
            box-sizing: border-box;
        }
        h1 {
            font-size: 1.4rem;
            color: #2c3e50;
            text-align: center;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            margin-top: 0;
        }
        .notice {
            background-color: #fdf3e7;
            border: 1px solid #e67e22;
            padding: 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .notice h2 {
            font-size: 1rem;
            color: #d35400;
            margin-top: 0;
            margin-bottom: 10px;
        }
        .notice ul {
            margin: 0;
            padding-left: 20px;
        }
        .notice li {
            margin-bottom: 5px;
        }
        .notice a {
            color: #2980b9;
            font-weight: bold;
            text-decoration: underline;
        }
        .notice a:hover {
            color: #1c5980;
        }
        #question-container {
            margin-top: 20px;
        }
        .question-text {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .note-text {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        button {
            background-color: #3498db;
            color: #fff;
            border: none;
            padding: 15px;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: left;
        }
        button:hover {
            background-color: #2980b9;
        }
        .btn-back {
            background-color: #ecf0f1;
            color: #2c3e50;
            font-weight: bold;
            text-align: center;
            margin-top: 15px;
            border: 1px solid #bdc3c7;
        }
        .btn-back:hover {
            background-color: #bdc3c7;
        }
        .q-footer {
            margin-top: 20px;
            font-size: 0.95rem;
            text-align: center;
            background-color: #eaf2f8;
            padding: 10px;
            border-radius: 5px;
        }
        .q-footer a {
            color: #2980b9;
            text-decoration: none;
            font-weight: bold;
        }
        .q-footer a:hover {
            text-decoration: underline;
        }
        #result-container {
            display: none;
            text-align: center;
            margin-top: 20px;
        }
        .result-title {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .result-yes {
            color: #27ae60;
        }
        .result-no {
            color: #c0392b;
        }
        .result-disclaimer {
            background-color: #fdf3e7;
            border: 1px dashed #d35400;
            color: #d35400;
            padding: 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            text-align: left;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        .btn-restart {
            background-color: #95a5a6;
            text-align: center;
            margin-top: 0px;
        }
        .btn-restart:hover {
            background-color: #7f8c8d;
        }
}
