@charset "utf-8";

#radiation-movie .movie-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#radiation-movie .movie-wrap .movie-box {
  width: calc(50% - 12px);
  margin: 0 0 24px;
  text-align: center;
}

#radiation-movie .movie-wrap figure {
  width: 100%;
  margin: 0 0 12px;
  position: relative;
}

#radiation-movie .movie-wrap figure:before {
  content:"";
  display: block;
  padding-top: 56.25%;
}
#radiation-movie .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#radiation-movie .notes {
  width: 100%;
  padding: 1em 1.5em;
  box-sizing: border-box;
  background-color:#ccffe5;
}

@media screen and (max-width:640px) {
  #radiation-movie .movie-wrap .movie-box {
    width: 100%;
  }
}