
        /* コンテンツラッパー */
        .app-wrapper {
            width: 100%;
            max-width: 768px;
            margin: 0 auto;
            padding-bottom: 2rem;
            min-height: calc(100vh - 60px - 250px);
            padding-top: 1.5rem;
        }

        /* 共通カラー */
        .text-pink {
            color: #e86aa3;
        }

        /* ===== アクセス ===== */
        .access-section-title {
            color: #e86aa3;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .access-box {
            background-color: #FFE1F4;
            border-radius: 8px;
            padding: 12px;
            gap: 10px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .access-title {
            color: #e86aa3;
            font-size: 16px;
            font-weight: bold;
        }

        .access-text {
            font-size: 13px;
            line-height: 1.5;
        }

        /* 地図 */
        .map-box {
            width: 120px;
            aspect-ratio: 1 / 1;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* 会場マップセクション */
        .venue-map-section {
            margin-top: 20px;
        }

        .venue-map-title {
            color: #e86aa3;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .venue-map-image {
            width: 100%;
            border-radius: 8px;
        }

/* タブレット・PC表示用メディアクエリ */
@media (min-width: 768px) {
    .app-wrapper {
        padding-top: 0;
    }

    .access-box {
        padding: 20px;
        gap: 20px;
    }

    .access-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .access-title {
        font-size: 20px;
    }

    .access-text {
        font-size: 16px;
    }

    .map-box {
        width: 300px;
    }

    .venue-map-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
  