/*
 Theme Name: Blocksy Child
 Description: Blocksy Child theme
 Author: Creative Themes
 Template: blocksy
 Text Domain: blocksy
*/

/* ── Googleマップ埋め込み ───────────────────────── */
.entry-content iframe[src*="google.com/maps"] {
  display: block !important;
  margin: 2em auto !important;
  width: 100% !important;
  max-width: 750px !important;
  height: 450px !important;
}
@media (max-width: 767px) {
  .entry-content iframe[src*="google.com/maps"] {
    width: 90% !important;
    height: 300px !important;
  }
}

/* ── YouTube埋め込み ───────────────────────── */
.entry-content iframe[src*="youtube.com/embed/"] {
  display: block !important;
  margin: 2em auto !important;
  width: 100% !important;
  max-width: 750px !important; /* 動画の幅に合わせて調整 */
  height: 422px !important; /* 動画の高さに合わせて調整 */
}

@media (max-width: 767px) {
  .entry-content iframe[src*="youtube.com/embed/"] {
    width: 90% !important;
    height: 300px !important; /* スマートフォンでの高さ */
  }
}