body {
    font-family: 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans HK', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(224, 244, 255, 1);
    font-size: 12px;
    color: #515151;
}

.questionnaire {
    background-color: #e3e3ea;
}

.header {
    background-color: midnightblue;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    padding: 10px 0;
    font-size: 24px;
}

form {
    margin: 10px;
    padding: 10px;
    background-color: white;
    margin-top: -8px;
    margin-bottom: 65px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

input {
    width: 100%;
    padding: 2px 2px;
    margin: 5px 0;
    border-color: midnightblue;
    border-radius: 5px;
    border-width: 1px;
    /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3); */
    background-color: white;
    margin-top: 0;
}

textarea {
    width: 100%;
    margin: 5px 0;
    border-color: midnightblue;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3); */
    margin-top: 0;
}

select {
    width: 100%;
    margin: 5px 0;
    padding: 5px 2px;
    border-color: midnightblue;
    background-color: white;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3); */
    margin-top: 0;
}

form p {
    font-size: 20px;
    font-weight: 800;
}

p>span {
    font-size: 12px;
    font-weight: 500;
}

label {
    display: inline-block;
    margin-top: 5px;
}

.error-words {
    float: right;
    display: inline;
    color: red;
    margin-top: 5px;
}

.submit {
    margin-top: 10px;
    background-color: rgba(255, 204, 0, 1);
    margin-bottom: 20px;
    padding: 5px 0;
    color: midnightblue;

}

.red {
    color: red;
}

.question-header {
    background-color: #007bff;
}

.radio {
    font-size: 12px;
    font-weight: normal;
    /* display: flex; */
    padding: 0;
    margin: 10px 0;
    /* transform: translateX(20px); */
    text-align: center;
}

.radio-input {
    width: 25%;
    margin: 0;
    padding: 0;
    transform: translateY(2px);
}

.question-submit {
    background-color: rgba(87, 209, 201, 1);
}

.q-detail {
    line-height: 15px;
    display: inline-block;
}



.gift_point {
    background-color: white;
}

.gift_point-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(10, 6.4%);
    grid-template-rows: auto;
    grid-row-gap: 20px;
    grid-column-gap: 4%;
    margin-top: 100px;
}

.gift_point-container p {
    grid-column: 2/10;
    text-align: center;
    font-weight: 900;
    font-size: 1.5em;
    color: #515151;
}

.gift_point-container span {
    grid-column: 4/10;
    grid-row: 2;
    text-align: left;
    color: midnightblue;
    font-weight: 900;
    font-size: 1.2em;
}

.gift_point-container i {
    grid-column: 2/4;
    grid-row: 2;
    font-size: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: midnightblue;

}

button {
    display: block;
    margin: 100px auto;
    width: 90%;
    height: 50px;
    background-color: midnightblue;
    color: white;
}

.send,
.cancel {
    color: #007bff;
    -webkit-appearance: none;
    border-radius: 4px;
    border: solid 1px transparent;
    border-color: #007bff;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.send:hover,
.cancel:hover {
    color: #007bff;
}

.send:active,
.cancel:active {
    color: #007bff;
    opacity: 0.5;
}