@charset "utf-8";

/* ==========================================
*
*  play button
*
========================================== */
.playButton  {
  cursor: pointer;
  position: relative;
}

.playButton::before,
.playButton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: .3s;
}

.playButton::before {
  content: "";
  background: #000;
  opacity: .7;
  z-index: 1;
}

.playButton::after {
  content: "▶";
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  z-index: 2;
}

.playButton img,
.playButton iframe {
  pointer-events: none;
  vertical-align: bottom;
}

.playButton:hover::before {
  opacity: .1;
}

.playButton:hover::after {
  transform: scale(1.5,1.5);
}

/* ==========================================
*
*  AGF2019インフォ
*
========================================== */
.agfInfo{
  padding: 0 7vw 1vw;
}