/* カスタマイズ用CSS */

/*iframePC70%スマホ100%表示*/
.iframeWrap-parent {
  width: 70%; /* サイト幅の70% */
}
@media screen and (max-width: 959px) {
  .iframeWrap-parent {
    width: 100%; /* タブレット以下だとサイト幅100%になる */
  }
}
.iframeWrap-child {
  position: relative;
  width: 100%;
  height: 0;
  /* 以下タテヨコ比（アスペクト比） */
  padding-top: 56.25%;/* 16:9 */
}
.iframeWrap-child iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}