<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-image: url(../img/);
    font-family: Prompt;
}

.image {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.image img {
    width: 350px;
    max-width: 70%;
    margin-top: 20px;
}

.text-image {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
}

.text-mb {
    display: none;
}

.text-pc {
    display: flex;
}

.text-image img {
    width: 700px;
    max-width: 90%;
}

.text-message {
    background-color: #e3ddff;
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: 5px solid #907dff;
    margin-top: 0px;
}

.text-message h1 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 35px;
}

.checkType {
    position: relative;
}

.checkType label {
    display: block;
    margin: 0px;
    padding: 0px;
}

.checkType span {
    margin: 0px;
    padding: 10px;
    padding-left: 35px;
    display: block;
    position: relative;
    cursor: pointer;
}

.checkType .radiox input {
    opacity: 0;
    width: 0px;
    height: 0px;
    padding: 0px;
    margin: 0px;
    line-height: 0px;
    position: absolute;
}

.checkType .radiox span::after {
    content: ' ';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ffffff;
    position: absolute;
    left: 5px;
    border-radius: 50%;
    border: 1px solid #5b49bd;
    top: 11px;
}

.checkType .radiox input:checked~span::after {
    background-color: #ffffff;
    border-width: 2px;
}

.checkType .radiox input:checked~span {
    /* background: #3f51b5; */
    color: #5b49bd;
    /* border-color: #3f51b5; */
    font-weight: bold;
}

.checkType .radiox input:checked~span::before {
    left: 12px;
    position: absolute;
    top: 15px;
    display: inline-block;
    width: 6px;
    height: 11px;
    border: solid 2px #5b49bd;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
    content: " ";
}

.printBtn {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tmsr {
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .text-pc {
        display: none;
    }
    .text-mb {
        display: flex;
    }
    .tmsr {
        text-align: left;
    }
}</pre></body></html>