/* PC表示（デフォルト） */
body {
    background-color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

h1 {
    font-size: 2em;
    color: #333;
    word-break: break-all;
}

.message {
    font-size: 1.2em;
    color: #555;
    margin: 20px 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.date {
    font-size: 1.5em;
    color: #50b848;
    font-weight: bold;
    word-break: break-all;
}

.download-button {
    display: inline-block;
    background-color: #50b848;
    color: #fff;
    padding: 12px 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #267520;
}
/* --- ヘッダーのスタイル --- */
.site-header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.site-logo img {
    max-width: 150px;
    height: auto;
}

/* --- フッターのスタイル --- */
.site-footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    color: #888;
    font-size: 0.8em;
}
/* --- レスポンシブ対応 --- */
/* 画面幅が768px以下の時に適用されるスタイル */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
    }

    h1 {
        font-size: 1.7em;
    }
    
    .message {
        font-size: 1em;
        margin: 15px 0;
    }
    
    .date {
        font-size: 1.2em;
    }
    
    .download-button {
        padding: 10px 20px;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 0.9em;
    }

    .site-header {
        padding: 10px 0;
    }

    .site-logo img {
        max-width: 120px;
    }

    .site-footer {
        padding: 10px 0;
    }
}