.chatLayout {
  position: fixed;
  right: 20px;
  bottom: 0;
  width: 270px;
  height: 55px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  background:  #ff1a1a url(/chat/image/chat_fukidashi.png) no-repeat center left 10px;
  color: #fff;
  display: table;
  z-index: 10000;
}

.chatLayout:hover {
  background-color: #ff4d4d;
}

.chatLayout-text {
  display: table-cell;
  vertical-align: middle;
  font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding-left: 34px;
  text-align: center;
}
.chatLayout-text br {
  display: none;
}

.chatLayout-space {
  display: inline-block;
  padding-bottom: 55px;
}
#topAnch .chatLayout-space {
  background: #595959;
} /* 海外送金のフッター色に合わせる */

@media screen and (max-width: 767px) {
  .chatLayout {
    width: auto;
    height: 60px;
    right: 10px;
    background-size: 20%;
  }
  .chatLayout-text {
    text-align: left;
    font-size: 13px;
    padding-left: 36px;
  }
  .chatLayout-text br {
    display: block;
  }
  .chatLayout-space {
    padding-bottom: 60px;
  }
}