@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: 200px;
  height: 200px;
  max-width: 30%;
  max-height: 100%;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  z-index: 2;
  background: url(../../images/main/top/play.png)center center / 95% no-repeat;
}
.slick-slider .playButton::after {
  content: "";
  width:100px;
  height: 100px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  z-index: 2;
  background: url(../../images/main/top/play_s.png)center center / contain no-repeat;
}

.playButton img,
.playButton iframe {
  pointer-events: none;
  vertical-align: bottom;
}

#youtube .c-youtubeWrap {
  padding: 0;
  height: 500px;
  max-height: calc(100vw * 9 / 16);
  display: flex;
  justify-content: stretch;
  align-items: center;
  overflow: hidden;
}

#youtube .c-youtubeWrap iframe {
  height: calc(100vw * 9 / 16)!important;
  position: relative;
}
.btnText{
  position:absolute;
  top:0;
  bottom:0;
  height:1em;
  width: 33%;
  margin:auto;
  z-index: 1;
  font-size: 1.3em;
  letter-spacing: 0.3em;
  line-height: 1;
}
.btnText.left{
  left:0;
  text-align:right;
}
.btnText.right{
  right:0;
  text-align:left;
}

@media screen and (max-width: 899px){
  #ytbSlide{display:none;}
}
@media screen and (min-width: 900px){
  .btnText{
    display:none;
  }
  .playButton:hover::before {
    opacity: .1;
  }

  .playButton:hover::after {
    transform: scale(0,0);
  }
}


/* ==========================================
*
*  twitter timeline
*
========================================== */

.twTimelineWrap {
  overflow: hidden;
  margin: 1em 0;
}

.twTimeline {
  overflow-y: auto;
  height: 300px;
  max-height: min(80vh,120vw);
  transition: .3s;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin: 0 auto;
  /* max-width: 500px; */
}

.twTimelineWrap iframe{
  width: 1000px !important;
  max-width: 100% !important;
}

@media screen and (min-width: 900px){
  .twTimeline {
     max-height: none !important;
  }
}

