body {
  background-color: #f5f4f0; /* 外側の背景（PC用） */
  margin: 0;
}
/* モバイルファーストのラッパー */
.mobile-wrapper {
    max-width: 448px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--color-bg-base, #f5f4f0);
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow-x: hidden;
}
/* 非表示スクロールバー */
.mobile-wrapper::-webkit-scrollbar {
    display: none;
}
/* Back Button Base */
.back-button {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-base, #1d1457);
    text-decoration: none;
    z-index: 50;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.back-button:hover {
    opacity: 1;
}
/* YouTube埋め込みのサイズを強制的に固定 */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* アスペクト比を固定 */
    background-color: #000; /* 読み込み前の下地 */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
