header .description {
    padding: 18px;
    font-size: 0.95em;
}

#questions {
    margin-top: 40px;
    text-align: center;
}

#questions > .question {
    display: none;
}

#questions > div:first-child {
    display: block;
}

#questions .visual {
    margin-top: 20px;
}

#questions .question {
    margin-top: 20px;
    margin-bottom: 20px;
}

#questions .next img {
    width: 100%;
    margin: 30px 0;
}

/* input要素を隠す */
input[type="radio"] {
    display: none;
}

/* 通常のボタンスタイル */
.buttons > label {
    width: 80%;
    background-color: white;
    color: #4CAF50;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    transition-duration: 0.4s;
    box-shadow: 0 4px #999;
}

/* ホバースタイル */
.buttons > label:hover {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
    box-shadow: 0 8px #666;
    transform: translateY(-2px);
}

/* アクティブスタイル */
.buttons > label:active {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 2px #666;
    transform: translateY(4px);
}

/* 選択されたボタンスタイル */
input[type="radio"]:checked + label {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
    box-shadow: 0 8px #666;
    transform: translateY(-2px);
}

#answer {
    margin-top: 30px;
    display: none;
}

#answer .button {
    margin-top: 20px;
    text-align: center;
}

#answer .information {
    padding: 16px;
    margin-top: 20px;
    font-size: 0.9em;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: black;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

.about {
    margin-top: 30px;
    padding: 16px;
}

.about h3 {
    text-align: center;
    font-weight: bold;
}

.about tr {
    border-bottom: 1px solid lightgrey;
}

.about tr th {
    min-width: 5em;
}

.about tr > * {
    padding: 10px;
}

.about > h3 + div {
    margin-top: 10px;
}