/* =========================================================
   鶴の趣味「あそび場」
   Asobiba Top Page
   ========================================================= */


/* =========================================================
   1. ページ全体
   ========================================================= */

#tsuru-asobiba {
    --asobiba-bg: #f6f8fc;
    --asobiba-card: #ffffff;
    --asobiba-text: #263238;
    --asobiba-subtext: #667085;
    --asobiba-border: #e5e7eb;

    --asobiba-blue: #4f7cff;
    --asobiba-purple: #8b5cf6;
    --asobiba-pink: #ec6fa9;
    --asobiba-green: #49a87a;

    --asobiba-radius: 20px;

    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--asobiba-bg);

    color: var(--asobiba-text);

    box-sizing: border-box;
}

#tsuru-asobiba *,
#tsuru-asobiba *::before,
#tsuru-asobiba *::after {
    box-sizing: border-box;
}


/* =========================================================
   2. ブログテーマ側の影響をできるだけ排除
   ========================================================= */

#tsuru-asobiba h1,
#tsuru-asobiba h2,
#tsuru-asobiba h3,
#tsuru-asobiba p {
    margin-top: 0;
}

#tsuru-asobiba a {
    text-decoration: none;
}

#tsuru-asobiba img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   3. メイン領域
   ========================================================= */

#tsuru-asobiba .asobiba-main {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 32px 70px;
}


/* =========================================================
   4. ヒーロー
   ========================================================= */

#tsuru-asobiba .asobiba-hero {
    width: 100%;

    margin: 0 0 48px;
    padding: 52px 30px 46px;

    background:
        linear-gradient(
            135deg,
            #eef4ff 0%,
            #f5efff 52%,
            #fff1f7 100%
        );

    border-radius: 0 0 28px 28px;
}

#tsuru-asobiba .asobiba-hero-inner {
    max-width: 1100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 26px;

    text-align: left;
}

#tsuru-asobiba .asobiba-hero-icon {
    flex: 0 0 auto;

    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 26px;

    font-size: 48px;

    box-shadow:
        0 8px 24px rgba(62, 72, 95, 0.10);
}

#tsuru-asobiba .asobiba-hero-text {
    min-width: 0;
}

#tsuru-asobiba .asobiba-eyebrow {
    margin: 0 0 5px;

    color: #74809a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

#tsuru-asobiba .asobiba-hero h1 {
    margin: 0;

    color: #202938;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.2;
}

#tsuru-asobiba .asobiba-lead {
    margin: 8px 0 0;

    color: #667085;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   5. セクション共通
   ========================================================= */

#tsuru-asobiba .asobiba-section {
    margin: 0 auto 62px;
}

#tsuru-asobiba .asobiba-section-heading {
    margin-bottom: 24px;

    text-align: center;
}

#tsuru-asobiba .asobiba-section-label {
    margin: 0 0 5px;

    color: #7a8498;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

#tsuru-asobiba .asobiba-section-heading h2 {
    margin: 0 0 8px;

    color: #202938;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.4;
}

#tsuru-asobiba .asobiba-section-heading > p:last-child {
    margin: 0;

    color: var(--asobiba-subtext);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   6. ゲーム一覧
   ========================================================= */

#tsuru-asobiba .asobiba-game-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   7. ゲームカード
   ========================================================= */

#tsuru-asobiba .asobiba-game-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 28px 25px 24px;

    overflow: hidden;

    background: var(--asobiba-card);

    border: 1px solid var(--asobiba-border);
    border-radius: var(--asobiba-radius);

    color: var(--asobiba-text) !important;

    box-shadow:
        0 5px 18px rgba(40, 50, 70, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

#tsuru-asobiba .asobiba-game-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);
}

#tsuru-asobiba .asobiba-game-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(40, 50, 70, 0.12);
}


/* ---------------------------------------------------------
   ゲームごとのアクセント
--------------------------------------------------------- */

#tsuru-asobiba .asobiba-game-color:hover {
    border-color: #f0a6c6;
}

#tsuru-asobiba .asobiba-game-shape:hover {
    border-color: #9eb8ff;
}

#tsuru-asobiba .asobiba-game-nakama:hover {
    border-color: #b59be9;
}


/* =========================================================
   8. ゲームアイコン
   ========================================================= */

#tsuru-asobiba .asobiba-game-card-icon {
    position: relative;
    z-index: 1;

    width: 82px;
    height: 82px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 42px;
}

#tsuru-asobiba .asobiba-game-color .asobiba-game-card-icon {
    background: #fff0f6;
}

#tsuru-asobiba .asobiba-game-shape .asobiba-game-card-icon {
    background: #edf3ff;
}

#tsuru-asobiba .asobiba-game-nakama .asobiba-game-card-icon {
    background: #f2edff;
}


/* =========================================================
   9. ゲームカード本文
   ========================================================= */

#tsuru-asobiba .asobiba-game-card-body {
    position: relative;
    z-index: 1;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#tsuru-asobiba .asobiba-game-number {
    display: block;

    margin-bottom: 7px;

    color: #8992a4;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

#tsuru-asobiba .asobiba-game-card h3 {
    margin: 0 0 9px;

    color: #202938;

    font-size: 23px;
    font-weight: 800;

    line-height: 1.35;
}

#tsuru-asobiba .asobiba-game-card p {
    margin: 0;

    color: var(--asobiba-subtext);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   10. NEWラベル
   ========================================================= */

#tsuru-asobiba .asobiba-game-new {
    position: absolute;

    top: 0;
    right: 0;

    display: inline-block;

    padding: 4px 9px;

    background: #ec6fa9;

    border-radius: 999px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.06em;
}


/* =========================================================
   11. 「あそぶ」リンク
========================================================= */

#tsuru-asobiba .asobiba-game-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 20px;

    color: #3d4a62;

    font-size: 13px;
    font-weight: 800;
}

#tsuru-asobiba .asobiba-game-link span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

#tsuru-asobiba .asobiba-game-card:hover .asobiba-game-link span {
    transform: translateX(4px);
}


/* =========================================================
   12. 無料プリント
   ========================================================= */

#tsuru-asobiba .asobiba-print-section {
    max-width: 900px;
}

#tsuru-asobiba .asobiba-print-card {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--asobiba-border);
    border-radius: var(--asobiba-radius);

    box-shadow:
        0 5px 18px rgba(40, 50, 70, 0.05);
}

#tsuru-asobiba .asobiba-print-icon {
    flex: 0 0 auto;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f4f8;

    border-radius: 20px;

    font-size: 40px;
}

#tsuru-asobiba .asobiba-print-body {
    flex: 1;
}

#tsuru-asobiba .asobiba-print-body h3 {
    margin: 0 0 7px;

    color: #202938;

    font-size: 21px;
    font-weight: 800;
}

#tsuru-asobiba .asobiba-print-body p {
    margin: 0 0 18px;

    color: var(--asobiba-subtext);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   13. ボタン
   ========================================================= */

#tsuru-asobiba .asobiba-button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

#tsuru-asobiba .asobiba-button:hover {
    transform: translateY(-2px);

    opacity: 0.85;
}

#tsuru-asobiba .asobiba-button-dark {
    background: #303846;

    color: #ffffff !important;
}

#tsuru-asobiba .asobiba-button-shop {
    background: #7b5ac7;

    color: #ffffff !important;
}


/* =========================================================
   14. CreMemo商品
   ========================================================= */

#tsuru-asobiba .asobiba-shop-section {
    max-width: 900px;
}

#tsuru-asobiba .asobiba-product-card {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #faf8ff 100%
        );

    border: 1px solid #e5def5;

    border-radius: var(--asobiba-radius);

    box-shadow:
        0 5px 18px rgba(40, 50, 70, 0.05);
}

#tsuru-asobiba .asobiba-product-icon {
    flex: 0 0 auto;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eee8ff;

    border-radius: 20px;

    font-size: 40px;
}

#tsuru-asobiba .asobiba-product-body {
    flex: 1;
}

#tsuru-asobiba .asobiba-product-label {
    display: inline-block;

    margin-bottom: 7px;

    color: #8065bb;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

#tsuru-asobiba .asobiba-product-body h3 {
    margin: 0 0 8px;

    color: #202938;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.5;
}

#tsuru-asobiba .asobiba-product-body p {
    margin: 0 0 18px;

    color: var(--asobiba-subtext);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   15. Coming Soon
   ========================================================= */

#tsuru-asobiba .asobiba-coming-section {
    max-width: 900px;
}

#tsuru-asobiba .asobiba-coming {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 25px 28px;

    background: #ffffff;

    border: 1px dashed #ccd2dc;

    border-radius: var(--asobiba-radius);
}

#tsuru-asobiba .asobiba-coming-icon {
    flex: 0 0 auto;

    font-size: 35px;
}

#tsuru-asobiba .asobiba-coming-label {
    margin: 0 0 5px;

    color: #8a94a7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

#tsuru-asobiba .asobiba-coming h2 {
    margin: 0 0 5px;

    color: #343d4d;

    font-size: 18px;
    font-weight: 800;
}

#tsuru-asobiba .asobiba-coming p:last-child {
    margin: 0;

    color: #7a8392;

    font-size: 13px;
}


/* =========================================================
   16. あそび場フッター
   ========================================================= */

#tsuru-asobiba .asobiba-footer {
    width: 100%;

    padding: 24px 20px 30px;

    background: #ffffff;

    border-top: 1px solid var(--asobiba-border);

    text-align: center;

    color: #7b8494;

    font-size: 12px;
}

#tsuru-asobiba .asobiba-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;
}

#tsuru-asobiba .asobiba-footer-home {
    color: #4b5565 !important;

    font-weight: 700;
}


/* =========================================================
   17. タブレット
   ========================================================= */

@media (max-width: 900px) {

    #tsuru-asobiba .asobiba-game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #tsuru-asobiba .asobiba-game-nakama {
        grid-column: 1 / -1;

        min-height: 260px;
    }

}


/* =========================================================
   18. スマートフォン
   ========================================================= */

@media (max-width: 600px) {

    #tsuru-asobiba .asobiba-main {
        padding: 0 14px 50px;
    }


    /* ヒーロー */

    #tsuru-asobiba .asobiba-hero {
        margin-bottom: 38px;

        padding: 34px 20px 32px;

        border-radius: 0 0 22px 22px;
    }

    #tsuru-asobiba .asobiba-hero-inner {
        gap: 15px;

        justify-content: flex-start;
    }

    #tsuru-asobiba .asobiba-hero-icon {
        width: 68px;
        height: 68px;

        border-radius: 19px;

        font-size: 36px;
    }

    #tsuru-asobiba .asobiba-eyebrow {
        font-size: 9px;
    }

    #tsuru-asobiba .asobiba-hero h1 {
        font-size: 31px;
    }

    #tsuru-asobiba .asobiba-lead {
        margin-top: 5px;

        font-size: 13px;
    }


    /* セクション */

    #tsuru-asobiba .asobiba-section {
        margin-bottom: 48px;
    }

    #tsuru-asobiba .asobiba-section-heading {
        margin-bottom: 18px;
    }

    #tsuru-asobiba .asobiba-section-heading h2 {
        font-size: 23px;
    }

    #tsuru-asobiba .asobiba-section-heading > p:last-child {
        font-size: 13px;
    }


    /* ゲームカード */

    #tsuru-asobiba .asobiba-game-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    #tsuru-asobiba .asobiba-game-card,
    #tsuru-asobiba .asobiba-game-nakama {
        grid-column: auto;

        min-height: 0;

        padding: 21px;
    }

    #tsuru-asobiba .asobiba-game-card-icon {
        width: 68px;
        height: 68px;

        margin-bottom: 17px;

        border-radius: 18px;

        font-size: 35px;
    }

    #tsuru-asobiba .asobiba-game-card h3 {
        font-size: 21px;
    }

    #tsuru-asobiba .asobiba-game-card p {
        font-size: 13px;
    }


    /* 無料プリント */

    #tsuru-asobiba .asobiba-print-card {
        align-items: flex-start;

        gap: 16px;

        padding: 21px;
    }

    #tsuru-asobiba .asobiba-print-icon {
        width: 58px;
        height: 58px;

        border-radius: 15px;

        font-size: 29px;
    }

    #tsuru-asobiba .asobiba-print-body h3 {
        font-size: 18px;
    }

    #tsuru-asobiba .asobiba-print-body p {
        font-size: 13px;
    }


    /* 商品 */

    #tsuru-asobiba .asobiba-product-card {
        align-items: flex-start;

        gap: 16px;

        padding: 21px;
    }

    #tsuru-asobiba .asobiba-product-icon {
        width: 58px;
        height: 58px;

        border-radius: 15px;

        font-size: 29px;
    }

    #tsuru-asobiba .asobiba-product-body h3 {
        font-size: 18px;
    }

    #tsuru-asobiba .asobiba-product-body p {
        font-size: 13px;
    }


    /* Coming Soon */

    #tsuru-asobiba .asobiba-coming {
        align-items: flex-start;

        gap: 14px;

        padding: 20px;
    }

    #tsuru-asobiba .asobiba-coming h2 {
        font-size: 16px;
    }


    /* フッター */

    #tsuru-asobiba .asobiba-footer {
        padding-bottom: 25px;
    }

}