@charset "utf-8";

/*room@index 検索ページ*/
.room-search-bar{
  margin: 2%;
  width: 95%;
}
.room-search-bar input{
  width: 90%;
}
.search-list{
    width: 100%;
    margin: 2%;
    height: auto;
}
.search-room-content{
  height: auto;
  width: 95%;
  border-bottom: 1.5px solid teal;
  margin-bottom: 2%;
  transition: .3s;
}
.search-room-content h2{
    font-size: 25px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.search-room-content p{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.search-room-content:hover{
    background-color: #DDDDDD;
    box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.no-search-post{
  font-size: 20px;
  margin: 2%;
}

/*room@show*/
.room-chat-message{
    margin:0 auto;
    margin-bottom: 2%;
    margin-top: 2%;
    width: 95%;
    height: auto;
    max-height: 500px;
    overflow: scroll;
     /* IE, Edge 対応 */
     -ms-overflow-style: none;
     /* Firefox 対応 */
     scrollbar-width: none;
    border-radius: 10px;
    border:2px solid teal;
    background-color: white;
    
}
.message-btn{
    margin:0 auto;
    margin-bottom: 2%;
    margin-top: 2%;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.chat-message{
    padding: 1%;
    margin: 2%;
    border:2px solid teal;
    border-radius: 10px;
    box-shadow: 5px 3px 0px 0 gray;
    overflow-wrap: break-word;
}
.chat-message label{
    padding: 1%;
    font-size: 18px;
}
.chat-message h3{
    padding: 1%;
    font-size: 20px;
}
.chat-message-detail{
    margin-bottom: 2%;
}
.chat-message p{
    text-align: right;
    font-size: 15px;
}
.chat-form{
    padding: 2%;
    margin:0 auto;
    margin-bottom: 5%;
    margin-top: 2%;
    width: 95%;
    border-radius: 10px;
    border:2px solid teal;
    background-color: white;
}

.chat-message-content h5{
    color: black;
}

.acbox{
  width: auto;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0 10px; /* ボックス全体の位置調整 */
}

.acbox label{
  width: auto;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: teal; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
}

.acbox label:hover{
  background: #8BC34A; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #F3F4F5; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #8BC34A; /* クリック後のラベルの背景色 */
}

.acbox-under{
  font-size: 15px; /* 開いた部分の文字サイズ */
  color: #555555; /* 開いた部分の文字色 */
}

/*参加者一覧*/
.room-enterning-list{
  display: inline-block;
  flex-wrap: wrap;
  width: 25%;
}
.room-enterning-content h5{
  width: 100%;
  font-size: 15px;
}


/*モーダル表示*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

.modal-button {
    font-weight: bold;
    text-align: center;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    max-width:300px;
    text-decoration: none;
}

.modal-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*ラベルホバー時*/
.modal-button:hover {
  color: #FFFFFF;
  background-color: #DDDDDD;
  box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 10px 30px 25px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}

.modal_title {
  font-size: 1.5em;
	position: relative;
	overflow: hidden;
  padding: 0;
}

.modal_title::before,
.modal_title::after{
	content: "";
	position: absolute;
	bottom: 0;
}

/* h2 プライマリカラー*/
.modal_title:before{
	border-bottom: 4px solid teal;
	width: 100%;
}
/* h2 セカンダリカラー*/
.modal_title:after{
	border-bottom: 4px solid #c8e4ff;
	width: 100%;
}

.modal-content p {
  margin: 10px 0 0 0;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}




/*room@show 会議入室ページ*/
.enterning-room{
  margin: 2%;
  width: 95%;
}
.enterning-room h1{
  font-size: 20px;
  margin-bottom: 1%;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
#room_password{
  width: 90%;
}


@media screen and (max-width: 1024px){
  /*room@index 検索ページ*/
}

@media screen and (max-width: 768px){
  /*room@index 検索ページ*/
}

@media screen and (max-width: 376px){
  .room-search-bar{
    margin: 2%;
    width: 100%;
  }
  #room-search{
    width: 70%;
  }
}