﻿form h1 {
    text-align: center;
    font-style: italic;
}

form .form-group {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: bold;
}

.form-label.autocompleted::before {
    content: "*";
}

.form-label.required::after {
    content: "必須";
    font-size: smaller;
    font-weight: bold;
    display: inline-block;
    color: white;
    background-color: lightsalmon;
    margin-left: 10px;
    margin-right: 30px;
    padding: 2px 6px;
    border-radius: 6px;
}
body {
    font-family: "Noto Sans JP",-apple-system,blinkmacsystemfont,"Segoe UI","Hiragino Kaku Gothic ProN","BIZ UDPGothic",meiryo,sans-serif !important;
}