#tmgWidget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 320px;
  z-index: 999;
  cursor: pointer;
  
  display:none; /* 追記 */
}
@media (max-width: 767px) {
  #tmgWidget {
    left: 8px;
    bottom: 19vw;
    transition: bottom 0.3s ease;
    width: 45%;
  }
  #tmgWidget._not-nav {
    transform: translateY(17vw);
  }
}
#tmgWidget .tmg-box {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tmgWidget.minimized {
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
#tmgWidget img {
  width: 100%;
  height: auto;
  display: block;
}
#tmgWidget .tmg-close {
  position: absolute;
  right: -8px;
  top: -8px;
  cursor: pointer;
  border: 2px solid #66b945;
  border-radius: 50%;
  background: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#tmgWidget .tmg-close::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.31461 0L10 1.64414L6.65169 5L9.95506 8.33333L8.31461 10L4.96629 6.68919L1.66292 9.97748L0.022472 8.31081L3.2809 5L0 1.68919L1.66292 0L4.96629 3.28829L8.31461 0Z" fill="%2366B945"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tmg-toast {
  position: fixed;
  top: 80px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 100000;
  opacity: 0;
  animation: tmgToastFade 2.5s ease-in-out forwards;
}

@keyframes tmgToastFade {
  0% {
    opacity: 0;
  }
  10.7% {
    opacity: 1;
  }
  78.6% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=widget.css.map */