/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f0f0f0; /* 薄いグレーの背景 */
    color: #000;
    line-height: 1.4; /* 行間を少し詰め気味に設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px; /* 全体の幅を少し絞って凝縮感を出す */
    padding: 20px;
    text-align: center;
}

/* ロゴエリア */
.logo-area {
    margin-bottom: 25px; /* ロゴ下の余白を短縮 */
}

.logo-area img {
    max-width: 100%;
    height: auto;
    width: 500px;
}

/* メインメッセージ */
.message-area {
    margin-bottom: 30px; /* メッセージ下の余白を短縮 */
}

.message-area p {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* フッター・リンク */
.footer-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* コピーライトとリンクの間の距離を最小化 */
}

.copyright {
    font-size: 0.75rem;
}

.shop-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #000;
    padding-bottom: 1px;
    transition: opacity 0.3s;
}

.shop-link:hover {
    opacity: 0.6;
}

/* レスポンシブ対応 (スマホ) */
@media (max-width: 768px) {
    .logo-area {
        margin-bottom: 15px;
    }

    .logo-area img {
        width: 85%;
    }

    .message-area {
        margin-bottom: 20px;
    }

    .message-area p {
        font-size: 1.05rem;
    }

    .footer-area {
        gap: 8px;
    }
}