

.comment_form {
  background-color: #e9f7f7;
  padding: 16px 2%;
  border-radius: 4px;
}


.comment_form {
  margin-top: 16px;
}


.comment_box_list > br {
  display: none;
}

.comment_box {
  background-color: #fff;
  box-shadow: 0 2px 0 0 rgba(0,0,0,.05);
  border-radius: 4px;
  padding: 16px 3%;
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,.1);
}

.comment_box_list > .comment_box:nth-of-type(1) {
  margin-top: 0;
}

.comment_box .comment_name{
  font-size: 14px;
  font-weight: bold;
  color:#999;
}
.comment_box .comment_annotation{
  font-size: 12px;
  color:#999;
}

.comment_area .comment_form_head{
  font-size: 14px;
  font-weight: bold;
}
.comment_area .comment_form textarea{
  resize: none;
  display: block;
  margin-bottom: 16px;
}

.comment_area .comment_form_annotation {
  color:#999;
  font-size: 13px;
  margin-top: 16px;
}

.comment_area .comment_form_submit {
  text-align: center;
}

.comment_area .comment_form_submit button {
  padding: 8px 16px;
  margin-top: 16px;
  width: 80%;
}

.comment_form {
  position: relative;
}

.comment_form_mask {
  position: absolute;
  top:0;
  left:0;
  bottom:0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #eee;
  transition: opacity .2s;
}

.comment_form_mask.sending{
  background-color: rgba(222,217,164,.6);
}
.comment_form_mask.send_done{
  background-color: rgba(164,222,180,.6);
}

.comment_form_mask.hide {
  pointer-events: none;
  opacity: 0;
}