.CommentGroup{
  margin-bottom: 30px;
}
.CommentFormGroup{
}
@media screen and (max-width: 768px) {
  .CommentGroup{
    margin-bottom: 20px;
  }
  .CommentFormGroup{

  }
}
/* ---------------------------- */
/* --- モーダルウィンドウ --- */
/* ---------------------------- */
#modal-app{
  position: absolute;
  top: 15px;
  right: 0;
}
#show-modal{
  border: 1px solid #82be28;
  border-radius: 4px;
  padding: 2px 4px;
  color: #82be28;
  font-size: 14px;
}
.fa-comment{
  margin-right: 2px;
}
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}
.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.modal-container {
  position: relative;
  width: 40%;
  margin: 0px auto;
  padding: 60px 10px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
}
.modal-enter {
  opacity: 0;
}
.modal-leave-active {
  opacity: 0;
}
.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.CommentGroup__ModalClose{
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 768px){
  .modal-container {
    width: 80%;
    padding: 60px 10px;
  }
}
/* ---------------------------- */
/* --- コメントフォーム --- */
/* ---------------------------- */
.CommentGroupForm{
}
.CommentGroupTextarea{
  padding: 4px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
}
.CommentGroupBtn{
  padding: 10px 20px;
  width: 100%;
  background: #82be28;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px){
  .CommentGroupForm{
  }
  .CommentGroupTextarea{
  }
  .CommentGroupBtn{
  }
}
/* ---------------------------- */
/* --- コメントリスト --- */
/* ---------------------------- */
.CommentGroup__Content{

}
.CommentGroup__noImgText{
  text-align: center;
  color: #444;
  font-size: 14px;
}
.CommentGroup__Card{
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  word-break: break-all;
}
.CommentGroup__Card:not(:last-child){
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.CommentGroup__ImgBox{
  width: 45px;
  height: 45px;
}
.CommentGroup__Img{
  border: 1px solid #eee;
  border-radius: 50%;
  padding-top: 100%;
  width: 100%;
}
.CommentGroup__Title{
  margin-left: 8px;
  flex: 1;
  letter-spacing: 0.05em;
  color: #999;
  font-weight: bold;
  font-size: 12px;
}
.CommentGroup__Description{
  margin-top: 8px;
  width: 100%;
  line-height: 1.8;
  word-break: break-all;
  color: #444;
  font-size: 12px;
}
.CommentGroup__Delete{
  position: absolute;
  top: 10px;
  right: 10px;
}
.CommentGroup__MoreBtn{
  position: relative;
  line-height: 40px;
  width: 240px;
}
.CommentGroup__MoreBtn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: 1px solid #FF4E50;
  border-right: 1px solid #FF4E50;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 768px){
  .CommentGroup__Content{

  }
  .CommentGroup__Card{

  }
  .CommentGroup__ImgBox{

  }
  .CommentGroup__Img{

  }
  .CommentGroup__Title{
  }
  .CommentGroup__Description{
  }
  .CommentGroup__Delete{

  }
}
