/* 全体のスタイル設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Meiryo", sans-serif;
    text-align: center;
    background-color: #ffffff; /* 清潔感のある白 */
    margin: 0;
    padding: 0;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ヘッダー：コンパクトに配置 */
header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.logo {
    max-width: 140px;
    height: auto;
}

/* コンテンツエリア：中央寄せ */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

h1 { 
    font-size: 1rem; 
    margin: 0 0 15px 0; 
    line-height: 1.4; 
}

/* 縦型動画プレイヤーの枠（9:16） */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px; /* スマホでボタンが隠れない絶妙なサイズ */
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    border: none;
}

/* 案内テキスト */
.notice { 
    font-size: 0.8rem; 
    color: #888; 
    margin: 15px 0; 
    line-height: 1.5;
}

/* ボタン：以前のような青系（または黒） */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #333333; /* 青系ボタン */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.btn:hover { 
    background-color: #0056b3; 
}
.btn:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}