:root {
    --bg-color: #fcfcf5;
    /* ほんの少し黄色がかったアイボリー */
    --text-color: #a7a7a7;
    --logo-font: "Libre Baskerville", serif;
    --jp-font: "Noto Sans JP", "IBM Plex Sans JP", sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--jp-font);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mark {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-family: var(--logo-font);
    font-style: italic;
    font-size: 2.5rem;
    color: #8c7f84;
    line-height: 1;
}

.coming-soon-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

/* ▼▼▼ 以下を修正・追記 ▼▼▼ */
.btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 45px;
    background-color: #E6A4B4;
    /* 上品なピンクに変更 */
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 50px;
    /* 丸みを強くしました */
    transition: background-color 0.3s ease;
    min-width: 280px;
    box-sizing: border-box;
}

.btn:hover {
    background-color: #d693a3;
    /* ホバー時に少し濃いピンクにします */
}

/* 2行目のテキストスタイルを追記 */
.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 4px;
}

/* ▲▲▲ ここまで ▲▲▲ */


@media (max-width: 600px) {
    .logo-mark {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    /* ▼▼▼ 以下を修正・追記 ▼▼▼ */
    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
        min-width: 250px;
    }

    .btn-subtext {
        font-size: 0.75rem;
    }

    /* ▲▲▲ ここまで ▲▲▲ */
}