@charset "UTF-8"; /* 文字化けを防ぐおまじない */

/* 全体のリセットと基本設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #0b1d3a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative; /* フッターを下部に固定するための基準点 */
}

/* アイコン配置エリア */
.logo-container {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* アプリ名とキャッチコピー */
h1 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.catchphrase {
    font-size: 14px;
    color: #a0b0c0;
    margin-bottom: 48px;
}

/* ボタン群のレイアウト */
.button-group {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ボタンの共通スタイル */
.btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    transition: opacity 0.2s;
}

.btn:active {
    opacity: 0.7;
}

.btn-primary {
    background-color: #ffffff;
    color: #0b1d3a;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* フッター (Very Micro Soft) のスタイル */
footer {
    position: absolute;
    bottom: 20px; /* 画面の一番下から20pxの位置に固定 */
    font-size: 12px;
    color: #6b7a8c; /* 少し暗めの色にして控えめに */
    letter-spacing: 1px;
}
