@charset "UTF-8";

/* --- 設定 --- */
:root {
    --bg: #050508;
    --gold: #D4AF37;
    --border: rgba(212, 175, 55, 0.3);
    --font-jp: "Noto Serif JP", serif;
    --font-en: "Cinzel", serif;
    --font-footer: "Cormorant Garamond", serif;
}

/* リセット */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: #fff;
    font-family: var(--font-jp);
    width: 100%;
    /* dvhを使うことでスマホのアドレスバーによるガタつきを防ぐ */
    min-height: 100dvh; 
    overflow-x: hidden;
    position: relative;
}

/* --- 背景 (Canvas) --- */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; /* 一番後ろへ */
    opacity: 0;
    transition: opacity 2s ease;
}

/* --- コンテナ (中央揃えの要) --- */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100dvh; /* 画面いっぱいに広げる */
    display: flex;       /* Flexbox起動 */
    flex-direction: column;
    justify-content: center; /* 上下中央 */
    align-items: center;     /* 左右中央 */
    padding: 40px 20px;
    opacity: 0; /* JSでフェードインさせる */
    transform: translateY(20px);
    transition: all 1s ease-out;
}

/* --- ロゴ --- */
.logo-area {
    margin-bottom: 25px;
    width: 100%; /* 親要素を幅いっぱいに */
    display: flex;
    justify-content: center; /* 中央揃え */
}
.main-logo {
    /* ↓ここを修正 (100pxから変更) */
    width: 65%; /* 画面幅の60%に設定。スマホでもPCでもいい感じの大きさになります */
    max-width: 300px; /* ただし、PCなどで大きくなりすぎないように最大幅を設定 */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); /* 発光を少し強くしました */
    animation: none;
}


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --- テキスト --- */

.gold-script {
    font-family: var(--font-en); /* オシャレな英字フォント */
    color: #d4af37;              /* あのゴールド色 */
    font-size: 14px;             /* 文字サイズ：小さく上品に */
    letter-spacing: 0.25em;      /* 文字間隔：広げて高級感 */
    margin-bottom: 8px;          /* 下のCLUB LUXIDとの隙間 */
    font-weight: 500;            /* ほんの少し太く */
    
    /* 控えめな発光演出 */
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.brand-name {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #666;
    margin-bottom: 15px;
}

.main-name {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.role-title {
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.message {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

/* --- ボタンエリア --- */
.links {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- ボタンエリア修正版 --- */

.btn {
    display: flex;
    justify-content: center; /* 全体を中央寄せ */
    align-items: center;     /* 上下中央寄せ */
    gap: 10px;               /* ↓ アイコンと文字の間隔を追加 */
    
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.15em;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

/* --- ↓↓↓ 新しく追加：アイコンのスタイル ↓↓↓ --- */
.btn-icon {
    width: 18px;  /* アイコンサイズ（文字とのバランスで微調整） */
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); /* 白く発光 */
    transition: all 0.3s;
}
/* --- ↑↑↑ ここまで ↑↑↑ --- */

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.25em;
}


/* --- フッター --- */

.footer {
    margin-top: 40px;
    font-family: var(--font-footer); /* 新しいフォント */
    font-size: 11px;                 /* 少し小さく繊細に */
    color: #666;
    letter-spacing: 0.1em;           /* 文字間隔を少し狭めて読みやすく */
    text-transform: none;            /* 勝手に大文字になるのを防ぐ */
    font-style: normal;            /* イタリック（斜体）にすると更に高級感出ます（お好みで！） */
}

/* --- ローダー --- */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}
.loader-inner {
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    animation: spin 1s infinite linear;
}
@keyframes spin { 100% { transform: rotate(360deg); } }