@charset "UTF-8";
/*************** main content ***************/
/*************** wrapper size ***************/
/*************** list size ***************/
/*************** color ***************/
/*************** width/height ***************/
.chat_info {
  border-left: 1px solid #959595;
}
.chat_info .top {
  background: #323232;
  padding: 2rem;
}
.chat_info .top .chat-partner {
  color: #fff;
  font-weight: bold;
  text-align: left;
}
.chat_info .top .ttl h2 {
  color: #fff;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: none;
  padding: 0;
  margin: 1rem 0;
}
@media only screen and (max-width: 834px), (max-device-width: 834px) {
  .chat_info .top .ttl h2 {
    width: auto;
  }
}
.chat_info .top .ttl h2::before {
  content: none;
}
.chat_info .top .ttl .flex {
  justify-content: space-between;
  padding: 0 !important;
}
.chat_info .top .ttl .flex p, .chat_info .top .ttl .flex a {
  color: #fff;
}
.chat_info .top .ttl .flex p {
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 834px), (max-device-width: 834px) {
  .chat_info .top .ttl .flex p {
    padding: 0;
  }
}
.chat_info .detail .msg-notification {
  text-align: center;
  opacity: 0.7;
  background-color: #E0E0E0;
  cursor: pointer;
  color: #FF6F00;
  padding: 5px;
}
.chat_info .detail #chat-area {
  padding: 0 2rem;
  overflow-y: auto;
  height: 500px;
  font-size: 14px;
}
@media only screen and (max-width: 834px), (max-device-width: 834px) {
  .chat_info .detail #chat-area {
    padding: 0 1rem;
  }
}
.chat_info .detail #chat-area .date {
  background-color: #CACACA;
  border-radius: 15px;
  margin: 4rem auto;
  width: 20%;
  text-align: center;
  padding: 1rem 0;
}
@media only screen and (max-width: 834px), (max-device-width: 834px) {
  .chat_info .detail #chat-area .date {
    width: 50%;
    border-radius: 50px;
    padding: 0.5rem 0;
  }
}
.chat_info .detail #chat-area .comment {
  display: flex;
  justify-content: flex-start;
  align-items: self-end;
  margin-bottom: 25px;
}
.chat_info .detail #chat-area .comment p {
  border-radius: 10px;
  padding: 1rem;
  display: inline-block;
  max-width: 40%;
  background-color: #F4F4F4;
  color: #525252;
}
.chat_info .detail #chat-area .comment span {
  color: #AAAAAA;
  font-size: 13px;
  padding: 0 5px;
}
.chat_info .detail #chat-area .comment.my_comment {
  flex-direction: row-reverse;
}
.chat_info .detail #chat-area .comment.my_comment p {
  background-color: #0F318D;
  color: #fff;
}
.chat_info .send-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1rem;
}
.chat_info .send-area textarea {
  width: 79%;
  height: 43px;
  resize: none;
  transition: 0s;
}
.chat_info .send-area button {
  width: 20%;
  border-radius: 10px;
  background: #FED30E;
  border: none;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.6rem;
}
.chat_info .btn_box {
  display: flex;
  justify-content: space-between;
  max-height: 60px;
}
.chat_info .btn_box > div {
  width: 100%;
}
.chat_info .btn_box .reject_btn i {
  color: #BDBDBD;
}
.chat_info .btn_box .reject_btn.on {
  pointer-events: none;
}
.chat_info .btn_box .reject_btn.on i {
  color: #FFAD3B;
}
.chat_info .btn_box .reject_btn.on:after {
  content: "不採用済み";
}
.chat_info .btn_box .reject_btn:not(.on):after {
  content: "不採用にする";
}
.chat_info .btn_box .block_btn i {
  color: #BDBDBD;
}
.chat_info .btn_box .block_btn.on i {
  color: #FF0000;
}
.chat_info .btn_box .block_btn.on:after {
  content: "ブロックを解除する";
}
.chat_info .btn_box .block_btn:not(.on):after {
  content: "ブロックする";
}
.chat_info .btn_box .action_btn {
  border-right: 1px solid;
  border-bottom: 1px solid;
  background: #F4F4F4;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  padding: 1.5rem 0;
}
@media only screen and (max-width: 834px), (max-device-width: 834px) {
  .chat_info .btn_box .action_btn {
    font-size: 1.6rem;
    padding: 0.5rem 0;
  }
}
.chat_info .recruitment-end-msg {
  background-color: #BDBDBD;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.chat_info .chat-end-message {
  text-align: center;
  font-size: 18px;
  color: #BDBDBD;
  padding: 20px;
}
