@charset "UTF-8";

.chatroom-top {
  margin-bottom: 20px;
}
.chatroom-top_flex {
  column-gap: 70px;
  justify-content: flex-end;
}
.chatroom-top_thumb {
  max-width: 270px;
  width: 100%;
}
.chatroom-form {
  max-width: 432px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
}
.chatroom-form form {
  display: grid;
  row-gap: 40px;
}
.chatroom-form_list {
  display: grid;
  row-gap: 20px;
  width: 100%;
}
.chatroom-form_item {
  display: grid;
  width: 100%;
  margin-top: 8px;
}
.chatroom-form_item_wrap {
  width: 100%;
  max-width: 340px;
  display:block;
  margin: 0 auto;
}
.chatroom-form_btn {
  display: flex;
  justify-content: center;
}

.caution {
  color: #1A69C6;
  font-size: 12px;
  text-align: center;
  }

@media print, screen and (max-width: 767px) {
  .chatroom-top {
    margin-bottom: 5.333vw;
  }
  .chatroom-top_flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 2.667vw;
  }
  .chatroom-top_thumb {
    max-width: 52.533vw;
    width: 100%;
  }
  .chatroom-top_thumb img {
    width: 100%;
  }
  .chatroom-form {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .chatroom-form form {
    display: grid;
    row-gap: 5.333vw;
  }
  .chatroom-form_list {
    display: grid;
    row-gap: 4vw;
    width: 100%;
  }
  .chatroom-form_item {
    display: grid;
    row-gap: 1.067vw;
    width: 100%;
  }
}