/* モーダル背景 */
.tls-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

/* モーダル本体 */
.tls-modal-content {
  display: none;
  background: #fff;
  margin: 12% auto;
  padding: 40px;
  border-radius: 14px;
  width: 60%;
  max-width: 550px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.tls-icon-area {
  margin: 0 auto;
}

/* 閉じるボタン */
.tls-close {
  display: block;
  margin-top: 30px;
  color: #e4007f;
  cursor: pointer;
  font-size: 15px;
}

/* メッセージ */
.tls-message {
  font-size: 22px;
  margin-top: 20px;
  font-weight: 500;
}

/* アイコン */
.tls-icon {
  display: none;
  width: 100px;
  margin-bottom: 10px;
}

/* ローディング表示 */
.tls-loading {
  display: none;
  margin: 12% auto;
  padding: 40px;
  border-radius: 14px;
  width: 60%;
  max-width: 550px;
  text-align: center;
}

.tls-loading img {
  width: 250px;
}