@charset "utf-8";

.must {
    color: #FF0000;
}

.alert {
    color: #FF0000;
}

.short {
    width: 40px;
}

p.error {
    color: #FF0000;
    margin-top: 10px;
    padding: 0;
}

input[name="back"] ,
input[name="back"]:hover {
    background: gray;
}


.format textarea[name="note"] {
    width: 300px;
    height: 150px;
}

.agree {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}
.agree .view_area {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    margin: 5% auto;
    border: 1px solid black;
    padding: 3%;
    box-sizing: border-box;
}
.agree .view_area pre {
    height: 90%;
    max-height: 300px;
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.agree .view_area pre::-webkit-scrollbar {
    width: 5px;
}
.agree .view_area pre::-webkit-scrollbar-thumb{
  background: #999;
  border-radius: 5px;
}
.agree .view_area pre::-webkit-scrollbar-track-piece {
  background: #efefef;
}
.agree .view_area .button_area {
    text-align: center;
    max-width: 400px;
    margin: 5% auto 0;
}
.agree .view_area .button_area > div {
    display: inline-block;
    width: 45%;
    margin: 0;
    vertical-align: top;
    box-sizing: border-box;
}
.agree .view_area button {
    display: inline-block;
    width: 100px;
    padding: 5px;
}
.agree .view_area p {
    margin-top: 5px;
    height: 2em;
}
