body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-y: auto;
}
#videoModalContent.remove{
  display: none;
}
#videoModalContent {
  position: relative;
  height: auto;
  width: 80%;
  max-width: 110rem;
  padding: 0;
  border-radius: .693rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
#videoModalContent iframe{
  width: 100%;
  height: 100%;
}
#nextMessage {
  padding: 0 0 0;
  height: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin:auto;
  z-index: 1100; 
  text-align: center;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  min-width: auto;
  height: 86rem;
  max-height: calc(100vh - 4rem);
  aspect-ratio: 1100 / 860;
}
#nextMessage__inner{
  max-height: calc(100vh - 4rem);
  background-image: url(../images/img_message_bk.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 13.09% 0 11.27%;
  aspect-ratio: 1100 / 860;
  overflow-y: auto;
  box-sizing: border-box;
}
.nextMessage__message{
  width: 72%;
  margin: 0 auto;
}
.nextMessage__message img{
  display: block;
}
.nextMessage__seed{
  width: 43.6%;
  display: block;
  margin: 0 auto;
  margin-top: 5.9%;
}
.nextMessage__link-cont{
  margin-top: 7.45%;
}
.nextMessage__link{
  width: 68.18%;
  aspect-ratio: 759 / 93;
  border-radius: 9rem;
  background-color: #39AA00;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(.693rem .693rem 0px #35783A);
  margin-inline: auto;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  transition: all 200ms ease;
}
.nextMessage__link:hover{
  transform: translate(0.8rem,0.8rem);
  filter: none;
}
.nextMessage__link:after{
  content: "";
  position: absolute;
  background-image: url(../images/icon_message_link_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1.3rem;
  right: 3.1rem;
}
#videoModal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}
#videoModal.is-active {
  display: flex;
}
.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
#nextMessage {
  display: none;
}
#nextMessage.is-visible {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #videoModalContent{
    width: 92%;
  }
  #nextMessage {
    height: 40.2rem;
    aspect-ratio: 335 / 402;
  }
  #nextMessage__inner{
    width: 33.5rem;
    height: 40.2rem;
    padding: 4.2rem 0 5.3rem;
    background-image: url(../images/img_message_bk_sp.png);
    aspect-ratio: 335 / 402;
  }
  .nextMessage__message{
    width: 24.6rem;
  }
  .nextMessage__seed{
    width: 20.6rem;
    display: block;
    margin: 0 auto;
    margin-top: 2.7rem;
  }
  .nextMessage__link-cont{
    margin-top: 3.4rem;
  }
  .nextMessage__link{
    width: 30.5rem;
    height: 5.1rem;
    filter: drop-shadow(.4rem .4rem 0px #35783A);
    font-size: 1.8rem;
  }
  .nextMessage__link:hover{
    transform: translate(0);
    filter: drop-shadow(.4rem .4rem 0px #35783A);
  }
  .nextMessage__link:after{
    width: .7rem;
    height: .9rem;
    right: 2rem;
  }
}