@charset "utf-8";
.caution-area {
    width: 100%;
    height: auto;
    display: block;
}

.header-user-neme-right,
.header-user-neme-left {
    display: block;
    margin-top: 30px;
}

.caution-text-area {
    color: #FFFF00;
    display: grid; /* Gridレイアウトを使用 */
    place-items: center; /* 縦横ともに中央揃え */
    height: 80px;
    /* margin: 30px auto; */
}

.caution-button-area {
    margin-top: 30px;
    text-align: center;
}

#cautionButton {
    margin-left: 15px;
    width: 120px;
    height: 60px;
    background-color: #595959;
    border: solid 2px #7EFFFF;
    color: #7EFFFF;
}

#cautionButton:hover {
    opacity: 0.8;
}

/*スマホ版装飾*/
@media screen and (min-width:0px) and (max-width:768px) {
    .header-user-neme-right,
    .header-user-neme-left {
        margin-top: 15px;
    }
    .caution-area {
        margin: 20px auto;
    }
    .caution-text-area {
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
        font-size: 13px;
        text-align: left;
    }
}

