#headerLogo {
    display: block;
    position: relative;
    width: 10rem;
}
#headerLogoWrap {
    display: inline-block;
    position: relative;
    width: fit-content;
    background: snow;
    padding: .7rem 1.2rem;
    border-radius: 10rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .8);
    pointer-events: auto;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    left: 50%;
    top: 50%;

}
main .contentTtl{
    font-family: sans-serif;
    font-weight: bold;
}
main .messageTxt {
    font-family: sans-serif;
}
main .main_content_wrapper_top {
    margin: -1.4rem 0 0;
    border-radius: .8rem;
    padding: 3rem 0;
    background-color: #1E8EA4;
}
main ol, #entryMessage {
    margin-left: 1rem;
}
main li:not(.no-space) {
    margin-bottom: 1.5rem;
}
main li.space-min {
    margin-bottom: .7rem;
}
main li:last-child {
    margin-bottom: 0;
}
main #entryMessage li > span {
    line-height: 2;
    display: inline-block;
}

main #cancelMessage ul {
    list-style: none;
}
.indent {
    margin-left: 1rem;
}
ol.indent {
    margin-left: 2.5rem;
}
ul.caution {
    margin-left: 1.2rem;
    list-style: none;
}
ul.caution li {
    position: relative;
    margin-bottom: 0;
}
ul.caution li::before {
    position: absolute;
    content: "※ ";
    top: 0;
    left: -1.2rem;
}

.button {
    background-color: #777;
    color: snow;
    width: 13rem;
    height: 3rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: none;
    transition: background-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
.check label, .check input {
    cursor: pointer;
}
.button a {
    display: inline-flex;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: snow;
    padding: 0 auto;
}
.button.enabled {
    pointer-events: auto;
    background-color: #07b53b;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .8);

}
.button.enabled:hover {
    filter: brightness(1.2);
}
.button:disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.gaibu{
    margin-top: 10px;
}
@media (min-width: 1024px) {
.indent {
    margin-left: 2rem;
}
ol.indent {
    margin-left: 3.5rem;
}
#headerLogo {
    width: 11rem;
}
#headerLogoWrap {
    padding: 1rem 2rem;
}
}