
/* Button */

.btn_l{ min-width: 100px; }

.btn.green{ color: #FFF !important; border:#34844c !important ; background:#34844c !important;}
.btn.green:hover{ opacity: 0.8; transition: 0.3s;}

.btn.blue{ color: #FFF !important; border:#34ace0 !important ; background:#34ace0 !important;}
.btn.black:hover{ opacity: 0.8; transition: 0.3s;}

.btn.red{ color: #FFF !important; border:#ff5252 !important ; background:#ff5252 !important;}
.btn.red:hover{ opacity: 0.8; transition: 0.3s;}

.btn.yellow{ color: #FFF !important; border:#ffb142 !important ; background:#ffb142 !important;}
.btn.yellow:hover{ opacity: 0.8; transition: 0.3s;}

.btn.black{ color: #222 !important; border:#CCC !important ; background:#CCC !important;}
.btn.black:hover{ opacity: 0.8; transition: 0.3s;}

#icon_top_chat::before{ color: #FFF !important; }

/*Hr*/
hr{
    height: 8px;
    border: none;
    background-image: repeating-linear-gradient(45deg, #222 0, #222 1px, transparent 0, transparent 50%);
    background-size: 8px 8px;
    margin: 2.0em 0;
}

/* header */
nav.navbar{
    background:#c0e2ca;
}

/* space */
.pb-50{
    padding-bottom: 50px;
}


/*** home **/
#home .btn{
    font-weight: bold;
    padding: 1.0em 1.0em;
}
#home .btn.green{ color: #222 !important; border:#c0e2ca !important ; background:#c0e2ca !important;}
#home .btn.green:hover{ color: #FFF !important; background:#34844c !important;}

#home .card{
    border: none;
    background: none;
    padding-block: 50px;
}
#home .card-body .btn_area{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.0em;
    width: 100%;
}
#home .card-body .btn_area a{
    width: 30%;
}

/*** chatroom **/
#chatroom h2{
    color:#34844c;
    font-weight: bold;
    padding: 1.0em 0 0.25em 0;
    letter-spacing: 0.05em;
}
#chatroom .search{
    margin-bottom: 50px;
}
#chatroom .search b{
    font-size: 0.9em;
    line-height: 1.0;
    letter-spacing: 0.1em;
}
#chatroom .search .form-control{
    background: #FFF;
}
#chatroom .ql-editor{
    padding-left: 0;
    padding-right: 0;
}

/*アコーディオンタイトル*/
#chatroom .search .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
}
/*アイコンの＋と×*/
#chatroom .search .title::before,
#chatroom .search .title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
}
#chatroom .search .title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
}
#chatroom .search .title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
#chatroom .search .title.close::before{
	transform: rotate(45deg);
}
#chatroom .search .title.close::after{
	transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
#chatroom .search .box {
    display: none;/*はじめは非表示*/
}
#chatroom .table + .table {
    margin-bottom: 0;
}
#chatroom .table thead th{
    color: #FFF;
    background: #34844c;
    padding: 0.75em;
}
#chatroom .table td{
    background: none;
    padding: 1.0em 0.5em;
    vertical-align: middle;
}
#chatroom #room.card-body{
    padding-top: 0;
    padding-bottom: 1.0em;
}
.card-body-mine{
    background-color: #ddebf7;
}
#chatroom #msg{
    /*max-height: inherit;*/
    /*overflow-y: auto;*/
    max-height: 100%;
    overflow-y: visible;
}
#chatroom #msg .card-body p{
    margin-bottom: 0;
}
#chatroom #file_area{
    display: flex;
    gap: 10px;
    align-self:baseline;
}
#chatroom #file_area button,
#chatroom #mention_area button{
    color: #FFF;
    border: 1px solid #34844c;
    background: #34844c;
    padding: 0.5em 1.0em 0.4em;
    border-radius: var(--bs-border-radius);
}
#chatroom #file_area button:hover,
#chatroom #mention_area button:hover{
    opacity: 0.8;
    transition: 0.3s;
}
#chatroom #file_area input{
    display: none;
}

#chatroom #mention_area{
    padding: 0.575rem 0.75rem 0.375rem ;
    border: 1px solid #CCC;
    border-radius: var(--bs-border-radius);
}
#chatroom #file-info span,
#chatroom #mention_area span{
    display: inline-block;
    border: 1px solid #34844c;
    background: #c0e2ca;
    margin-right: 5px;
    border-radius: var(--bs-border-radius);
    padding: 0.2rem 1.25rem 0.15rem 0.5rem;
    position: relative;
    cursor: pointer;
}
#chatroom #file-info span:hover,
#chatroom #mention_area span:hover{
    opacity: 0.8;
    transition: 0.3s
}
#chatroom #file-info span::after,
#chatroom #mention_area span::after{
    content: "×";
    position: absolute;
    right: 0.35rem;
}
#modalOverlay{
    display: none; /* 最初は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 10%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
#mention_popup{
    position: absolute;
    padding: 30px;
    background-color: #fff;
    width: 500px;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    margin: auto;
    border-radius: var(--bs-border-radius);
}
.tab_area .tab{
    color: #CCC;
    position: relative;
    line-height: 1.0;
}
.tab_area .tab:hover{
    opacity: 0.8;
    transition: 0.3s;
}
.tab_area .tab.active{
    color: #34844c;
    font-weight: bold;
}

@media screen and (max-width: 991px) {

    #home .card-body .btn_area a{
        width: 100%;
    }
   
}

#popup_members{
    display: none;
    position: fixed;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #ffffff;
    width: 300px;
    border-left: 1px solid #cccccc;
}
.side_open #popup_members{
    display: block;
}
#popup_members_title{
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    padding: 10px 10px;
    position: relative;
}
#popup_members_close{
    width: 20px;
    height: 20px;
    display: inline-block;
    padding: 0px;
    border: 0px;
    vertical-align: middle;
    background: none;
    cursor: pointer;
    position: absolute;
    right: 0px;
    cursor: pointer;
}
#popup_members_close i{
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}
#popup_members_close i:before,
#popup_members_close i:after{
    content: '';
    background: #999999;
    width: 3px;
    height: 20px;
    display: block;
    position: absolute;
    transform: rotateZ(45deg);
}
#popup_members_close i:after{
    transform: rotateZ(-45deg);
}

#popup_members_body input{
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #999999;
    -webkit-appearance: unset;
    border-radius: 50px;
    vertical-align: middle;
    margin-right: 10px;
}
#popup_members_body thead{
    display: none;
}
#popup_members_body tbody td{
    padding: 10px;
}
#popup_members_close:hover{
    opacity: 0.7;
}
#popup_members_body{
    height: calc(100% - 40px);
    overflow-y: scroll;
    padding-bottom: 40px;
}
#popup_members td dl{
    display: flex;
    margin: 0px;
    gap: 10px;
    height: 43px;
}
#popup_members td dt{
    line-height: 43px;
    margin: 0px;
}
#popup_members td dd{
    margin: 0px;
}
#popup_members td dt i{
    display: inline-block;
    height: 42px;
    width: 42px;
    border: 1px solid #999999;
    border-radius: 50px;
}
#popup_members td dd label{
}
#popup_members .members_office{
    display: block;
    color: #999999;
    font-size: 0.7rem;
}
#popup_members{
    transition: 0.7s;
    right: -400px !important;
    display: block !important;
}
.side_open #popup_members{
    right: 0px !important;
}
#popup_members_close:hover{
    opacity: 0.7;
}
#popup_members_body{
    height: calc(100% - 40px);
    overflow-y: scroll;
    padding-bottom: 40px;
}
#popup_members td dl{
    display: flex;
    margin: 0px;
    gap: 10px;
    height: 43px;
}
#popup_members td dt{
    line-height: 43px;
    margin: 0px;
}
#popup_members td dd{
    margin: 0px;
}
#popup_members td dt i{
    display: inline-block;
    height: 42px;
    width: 42px;
    border: 1px solid #999999;
    border-radius: 50px;
}
#popup_members .members_office{
    display: block;
    color: #999999;
    font-size: 0.7rem;
}
/* 2023.12.12 ADD ATK */
#popup_members table{
    margin-bottom: 0px;
}
#popup_members_loading{
    text-align: center;
    padding: 10px;
    color: #999999;
}
