@charset "utf-8";
/*
  YouTube 初回表示軽量化スクリプト
  Copyright Rectus Inc, 2020/05/11 Ver 0.04
  https://www.rectus.co.jp/
 */

.yt {
  position: relative;
}

.yt_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yt_play:hover {
  cursor: pointer;
}

.yt_play::before {
  /* YouTubeアイコン */
  position: absolute;
  background: url(https://testsite.bell-shotan.co.jp/wp/wp-content/themes/bell/img/index/yt_icon_mono_light.webp);
  content: "";
  background-size: 100%;
  width: 70px;
  height: 70px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.90;
  transition: 0.5s;
}


/* 動画表示領域に関するレスポンシブ対応のみ */
.movie-section {
  display: block;
  padding: 20px 16px;
}

.movie_inner {
  max-width: 100%;
  box-sizing: border-box;
}

.movie-section .yt {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
}

.movie-section .yt img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 480px) {
  .headline_top1 {
    font-size: 1.25rem;
  }

  .headline_eng {
    font-size: 0.75rem;
  }
}
