/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 16 2023 | 09:37:57 */
/* コメント
コメント終わり */ 

#chatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 97px;
    background-color: #FFF;
    border-radius: 50%;
    cursor: pointer;
}

.chatContainer {
    position: fixed;
    z-index: 99999;
    right: 16px;
    bottom: 16px;
    display: flex;
    width: 376px;
    height: 667px;
    flex-direction: column;
    box-shadow: 0px 10px 40px rgba(0,0,0,.1);
}

#chatContainer {
    right: 12px;
    bottom: 12px;
    width: 376px;
    height: 667px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s;
}

#chatHeader {
  color: #FFF;
  background-color: #337ab7;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chatHeader p {
  margin: 0;
	font-size:1.4em;
}
#chatFrame {
  width: 100%;
  height: calc(100% - 50px);
  border: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
	width: auto;
}
.agree_title {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 0.3em;
}
.modal-content p {
	line-height: 1.4;
}
.modal-content button {
	width: 8em;
	margin-bottom: 4px;
	border: 1px solid #000;
	border-radius: 5px;
	font-size: 0.9em;
	padding: 5px 3px 3px;
}
.modal-content .button-aria{
	text-align: center;
}
