@charset "UTF-8";
/* エラーメッセージ用に使用
*/
.change, .change2, .error {
    padding: 10px 30px 10px 15px;
    /*font-size: 1.3rem;*/
    margin-bottom: 30px;
    position: relative;
}
.change .close, .change2 .close, .error .close {
    position: absolute;
    right: 0;
    top: 0;
}
.change {
    background-color: #ECF5F2;
    border: solid 1px #419D78;
    color: #419D78;
}
.change .close { color: #419D78; }
.change2 {
    background-color: #FEF6E8;
    border: solid 1px #DB9814;
    color: #DB9814;
}
.change2 .close { color: #DB9814; }
.error {
    text-align: left;
    background-color: #FBEAEB;
    border: solid 1px #DB2B39;
    color: #DB2B39;
}
.error .close { color: #DB2B39; }
.close { padding-top: 5px; }

.change dl.list dt:after, .change2 dl.list dt:after, .error dl.list dt:after {
    content: "：";
}
.change dl.list dd, .change2 dl.list dd, .error dl.list dd {
    font-weight: bold;
}
.change .list li, .change2 .list li, .error .list li {
    list-style: disc outside;
    margin-left: 18px;
}

@media (min-width: 768px) {
    .change dl.list, .change2 dl.list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .change dl.list dt, .change2 dl.list dt, .error dl.list dt {
        margin-left: 20px;
    }
    .change dl.list dt:first-child, .change2 dl.list dt:first-child, .error dl.list dt:first-child {
        margin-left: 0;
    }
}

button, [type="button"], [type="reset"], [type="submit"] { cursor: pointer; }
[disabled] { cursor: default; }
button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
input[type='button'] { -webkit-appearance: none; box-sizing: border-box; font-size: 1.4rem; vertical-align: top; }
input[type='button'],button { border: none; color: #fff; cursor: pointer; background: none; }

