.video-container {
    position: relative;
    width: 100%; /* コンテナの幅を調整 */
    height: auto; /* コンテナの高さを調整 */
    margin: 0px auto; /* コンテナを中央に配置 */
    overflow: hidden; /* 動画がコンテナからはみ出さないようにする */
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 動画の表示方法を調整 */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* テキストの色 */
    text-align: center;
}

.header-box {
    background-color: rgba(90, 80, 70, 0.9);
    padding: 4px 40px;
    border-radius: 4px;
    display: inline-block; /* ← 重要：必要幅だけに調整 */
    white-space: nowrap;   /* ← 1行に収めたいなら追加 */
}



