@charset "UTF-8";

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #333;
}

/* 画面全体を覆うコンテナ */
.entry-container {
    width: 100%;
    height: 100vh; /* スクロールなしで画面高さいっぱいに表示 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 背景画像を見やすくするためのオーバーレイ */
.entry-overlay {
    background-color: rgba(255, 255, 255, 0.2); /* 白色の半透明レイヤー */
    backdrop-filter: blur(3px); /* わずかに背景をぼかす（モダンブラウザ向け） */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 中央のコンテンツボックス */
.entry-content {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
}

.entry-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #222;
    letter-spacing: 0.05em;
}

.entry-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
}

/* 応募用ボタン */
.entry-btn {
    display: inline-block;
    padding: 18px 50px;
    background-color: #0056b3; /* 既存サイトに合わせて調整してください */
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
}

.entry-btn:hover {
    background-color: #004494;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}


