/* =====================================
   Kakurega Dog Skitter
   FINAL STABLE (PC / SP)
   2025-12-15
===================================== */

.dog-skitter-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* PC：元サイズ固定 */
.dog-skitter-wrap iframe{
  width: 920px;
  height: 313px;
  border: none;
  display: block;
}

/* SP：scale禁止＋高さを物理的に保証 */
@media (max-width: 768px){

  /* transformがどこかに残っても必ず無効化 */
  .dog-skitter-wrap{
    transform: none !important;
    min-height: 380px;          /* ★ これが重要 */
    overflow: hidden;           /* 下の青を見せない保険 */
  }

  /* iframeの高さを強制的に増やす */
  .dog-skitter-wrap iframe{
    width: 100% !important;
    max-width: 920px !important;
    height: 380px !important;   /* ← 好みで微調整OK */
    display: block;
  }
}
