@charset "utf-8";

.topSection {
  position: relative;
  /* padding-top: 140px; */
}

@media screen and (min-width: 900px){
  .topSection {
    padding: 0;
  }
}

.mainImg img {
  width: 100%;
}

@media screen and (min-width: 900px){
  .mainImg {
    margin-left: calc(-46 / 1212 * 100%);
  }
}


/* ==========================================
*
*  
*
========================================== */

.catch {
  background: #916918;
  border-top: 5px solid #DCAB47;
  padding: 20px 0;
  text-align: center;
}

/* ==========================================
*
*  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);
}

