/*--------------------------------------------------------
　WordPressのブロックエディタ調整CSS
--------------------------------------------------------*/


/* =======================================
　テーブル（表）
======================================= */

figure.wp-block-table table td {
  padding: 1rem 2rem;
}

figure.wp-block-table {
  word-break: break-all;
  word-wrap: break-all;
}



/* =======================================
　画像
======================================= */

.wp-block-column figure img, .wp-block-image img {
  height: auto !important;
}

.wp-block-embed figcaption {
  color: #888 !important;
  font-size: 1.35rem !important;
  font-style: italic !important;
  margin-bottom: 5rem !important;
  margin-top: -1.5rem !important;
}



/* =======================================
　YouTube埋め込み
======================================= */

figure.is-type-video.is-provider-youtube.wp-block-embed-youtube.fullsize .wp-block-embed__wrapper {
  height: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  padding-bottom: 56.25%;
  /* アスペクト比16:9の場合 */
  padding-top: 30px;
  position: relative;
  /* YouTubeの下に余白をつける */
}

figure.is-type-video.is-provider-youtube.wp-block-embed-youtube.fullsize .wp-block-embed__wrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}



/* =======================================
　ボタン
======================================= */
a.smb-btn.smb-btn--wrap {
  text-decoration: none !important;
}
