.message-video-trigger {
/*
  width: 100%;
  position: relative; */
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  width: 34%;
  position: absolute;
  top: 22%;
  right: 0;
}
@media screen and (max-width:767px) {
  .message-video-trigger {
    /* margin: 0 auto; */
    position: static;
    width: 80%;
    margin: 50px auto 20px;
  }
}
@media screen and (min-width:768px) {
  .message-video-trigger {
    max-width: 400px;
    width: 60%;
  }
}
@media screen and (min-width:992px) {
  .message-video-trigger {
    width: 34%;
    position: absolute;
    top: 22%;
    right: 0;
  }
}
.message-video-trigger:hover {
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.message-video-trigger:hover .video-thumb {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.message-video-trigger:hover .play-button {
  background-color: rgb(255, 255, 255);
}
.message-video-trigger:hover .play-button .triangle {
  border-left-color: #333;
}
.message-video-trigger:hover .video-caption-bar {
  background-color: rgb(0, 66.976744186, 180);
}
.message-video-trigger .video-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.message-video-trigger .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.message-video-trigger .video-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.message-video-trigger .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media screen and (max-width:600px) {
  .message-video-trigger .play-button {
    width: 50px;
    height: 50px;
  }
}
.message-video-trigger .play-button .triangle {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.message-video-trigger .video-caption-bar {
  box-sizing:border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #003081;
  color: #fff;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  z-index: 3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width:767px) {
  .message-video-trigger .video-caption-bar {
    /* width: auto; */
    display: block;
    font-size: 13px;
    padding: 10px;
  }
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.video-modal.is-active {
  display: block;
  opacity: 1;
}
.video-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 960px;
  z-index: 10;
}
.video-modal__responsive-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-modal__responsive-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-modal__close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .video-modal__close-btn {
    top: -35px;
    right: -10px;
  }
}

.un_sp_info {
  position: relative;
}
