@charset "UTF-8";

/* ベース設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* フルスクリーン背景（PC用背景画像） */
.bg-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('img/pc-bg.jpg'); /* お好みの背景写真のパスに変更してください */
    background-size: cover;
    background-position: center;
}

/* 写真を少し暗くして文字やボタンを浮き立たせるフィルター */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
}

/* --- 最上部のヘッダー帯 --- */
.top-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #d4af37;
    padding: 8px 15px;
    box-sizing: border-box;
    text-align: center;
    z-index: 10;
}

.header-title {
    font-size: 11px;
    color: #333333;
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
}

/* --- 写真の上に浮かぶメインエリア --- */
.hero-content {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    margin: auto;
    z-index: 2;
}

/* ロゴ画像 */
.logo-area {
    margin-bottom: 20px;
}

.brand-logo-img {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 140px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)); /* 写真に馴染む影 */
}

/* メッセージ */
.message-area {
    margin-bottom: 30px;
}

.verification-text {
    font-size: 13px;
    line-height: 1.8;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* 文字が写真に埋もれないように影をつける */
    letter-spacing: 1px;
}

/* --- 浮かぶボタンエリア --- */
.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.float-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* 角丸ですっきりスタイリッシュに */
    transition: all 0.3s ease;
    box-sizing: border-box;
    letter-spacing: 2px;
    backdrop-filter: blur(5px); /* すりガラス風のエフェクト */
}

.btn-sub {
    font-size: 18px;
    letter-spacing: 1px;
}

/* ENTERボタン（高級感のあるゴールド・半透明グラス風） */
.enter-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.85), rgba(170, 119, 28, 0.85));
    color: #ffffff;
    border: 1px solid rgba(255, 223, 128, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.enter-btn:hover {
    background: linear-gradient(135deg, rgba(230, 197, 93, 0.95), rgba(197, 140, 34, 0.95));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* EXITボタン（ブルー系グラス風） */
.exit-btn {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.75), rgba(53, 122, 189, 0.75));
    color: #ffffff;
    border: 1px solid rgba(135, 186, 245, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.exit-btn:hover {
    background: linear-gradient(135deg, rgba(91, 160, 242, 0.85), rgba(42, 99, 160, 0.85));
    transform: translateY(-2px);
}

/* フッター */
.site-footer {
    padding: 10px;
    text-align: center;
    z-index: 2;
}

.site-footer p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 1px;
}

/* --- パソコン向けの調整 --- */
@media (min-width: 768px) {
    .header-title {
        font-size: 12px;
    }

    .brand-logo-img {
        max-height: 170px;
    }

    .floating-buttons {
        flex-direction: row; /* PCではボタンを横並びに */
        max-width: 520px;
        gap: 20px;
    }

    .float-btn {
        padding: 16px 0;
        font-size: 17px;
    }
}