/* ===== 基本 ===== */
/* タイトル文字 */
.title {
    font-size: clamp(32px, 6vw, 64px); /* 小画面〜大画面まで自動調整 */
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.links a {
    display: block;
    margin-bottom: 16px; /* ← この数字を大きくすると改行感が強くなる */
}

/* ===== 背景動画 ===== */
.bg-video {
    position: fixed;        /* ← 画面基準 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;            /* ← 背景に送る */
}

/* ===== 前面コンテンツ ===== */
.container {
    position: relative;    /* ← これがないと前に出ない */
    z-index: 1;
    padding: 20px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont,
                 "SF Pro Text", "Helvetica Neue",
                 "Segoe UI", Arial, sans-serif;
}

/* リンク */
a {
    color: #ffffff;
    text-decoration: none;
}
