@charset 'UTF-8';
/* モーダルウィンドウ */
.madal_container {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10000;
}

.madal_contents {
  width: 29%;
  height: auto;
  position: absolute;
  top: 44%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.madal_contents span {
  cursor: pointer;
  position: absolute;
  top: -38px;
  right: -33px;
  color: #fff;
  font-size: 1em;
  z-index: 11111;
  font-weight: bold;
}

.madal_container.active {
  display: block !important;
  animation-name: fadeIn;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  bottom: 0 !important;
}

@media only screen and (max-width: 1000px) {
  .madal_contents {
    width: 80%;
    height: auto;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: auto;
    transform: inherit;
  }

  .madal_contents span {
    cursor: pointer;
    position: absolute;
    top: -57px;
    right: -19px;
    color: #fff;
    font-size: 30px;
    z-index: 11111;
    font-weight: bold;
  }
}
.rela {
  position: relative;
}
.timer {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 3%;
  right: 3%;
  color: #fff;
  font-size: 2vw;
}
.timer p {
  font-size: 1vw;
  padding: 7% 0 0;
}
.madal_contents img {
  width: 100%;
}
