/*注意表示のスタイル*/
.frame {
    width: 95%;
    margin: 100px auto 5px;
    padding: 30px 10px 10px;
    border: 3px solid #aaa;
    position: relative;
    border-radius: 3px;
    //background-color: #fff;
}

.frame-title {
    position: absolute;
    top: -2px;
    left: 0px;
    padding: 0 10px;
    background-color: #fff;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.frame-title .fa {
    margin-right: 5px;
}

.caution {
    background-color: #fdd35c;
    border: 2px solid #fdd35c;
    color: #fff;
    //
}

.frame-red {
    border-color: #fdd35c;
}

.frame-content {
    font-size: 65%;
}