{"id":1934,"date":"2025-07-26T09:38:54","date_gmt":"2025-07-26T09:38:54","guid":{"rendered":"https:\/\/visionnetworkcamp.org\/?page_id=1934"},"modified":"2025-07-26T09:39:01","modified_gmt":"2025-07-26T09:39:01","slug":"%ec%9e%ac%eb%b0%8c%eb%8a%94-%ec%a7%88%eb%ac%b8","status":"publish","type":"page","link":"https:\/\/visionnetworkcamp.org\/ko\/%ec%9e%ac%eb%b0%8c%eb%8a%94-%ec%a7%88%eb%ac%b8\/","title":{"rendered":"\uc7ac\ubc0c\ub294 \uc9c8\ubb38"},"content":{"rendered":"<!DOCTYPE html>\n<html lang=\"ko\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\ub85c\ub4dc\ud2b8\ub9bd \ub300\ud654 \uc9c8\ubb38<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n            min-height: 100vh;\n            padding: 0 0 80px 0;\n        }\n\n        .header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            background: rgba(255, 255, 255, 0.95);\n            backdrop-filter: blur(10px);\n            padding: 15px 20px;\n            box-shadow: 0 2px 20px rgba(0,0,0,0.1);\n            z-index: 1000;\n        }\n\n        .title {\n            font-size: 20px;\n            font-weight: 700;\n            color: #333;\n            margin-bottom: 10px;\n            text-align: center;\n        }\n\n        .dropdown-container {\n            position: relative;\n        }\n\n        .dropdown-btn {\n            width: 100%;\n            padding: 12px 20px;\n            background: #667eea;\n            color: white;\n            border: none;\n            border-radius: 25px;\n            font-size: 16px;\n            font-weight: 600;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            transition: all 0.3s ease;\n        }\n\n        .dropdown-btn:hover {\n            background: #5a6fd8;\n            transform: translateY(-1px);\n        }\n\n        .dropdown-arrow {\n            transition: transform 0.3s ease;\n        }\n\n        .dropdown-arrow.open {\n            transform: rotate(180deg);\n        }\n\n        .dropdown-menu {\n            position: absolute;\n            top: 100%;\n            left: 0;\n            right: 0;\n            background: white;\n            border-radius: 15px;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.2);\n            max-height: 0;\n            overflow: hidden;\n            transition: all 0.3s ease;\n            z-index: 1001;\n        }\n\n        .dropdown-menu.open {\n            max-height: 300px;\n            overflow-y: auto;\n        }\n\n        .dropdown-item {\n            padding: 12px 20px;\n            border-bottom: 1px solid #f0f0f0;\n            cursor: pointer;\n            transition: background 0.2s ease;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .dropdown-item:hover {\n            background: #f8f9ff;\n        }\n\n        .dropdown-item:last-child {\n            border-bottom: none;\n        }\n\n        .dropdown-item.current {\n            background: #667eea;\n            color: white;\n        }\n\n        .main-content {\n            margin-top: 140px;\n            padding: 0 20px;\n        }\n\n        .day-section {\n            background: white;\n            border-radius: 20px;\n            padding: 25px;\n            margin-bottom: 25px;\n            box-shadow: 0 8px 30px rgba(0,0,0,0.1);\n            opacity: 0;\n            transform: translateY(20px);\n            animation: fadeInUp 0.6s ease forwards;\n        }\n\n        @keyframes fadeInUp {\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .day-header {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            margin-bottom: 20px;\n            padding-bottom: 15px;\n            border-bottom: 2px solid #f0f0f0;\n        }\n\n        .day-title {\n            font-size: 22px;\n            font-weight: 700;\n            color: #333;\n        }\n\n        .day-date {\n            font-size: 14px;\n            color: #667eea;\n            font-weight: 600;\n        }\n\n        .day-subtitle {\n            font-size: 16px;\n            color: #666;\n            font-weight: 500;\n        }\n\n        .question {\n            margin-bottom: 20px;\n            padding: 15px;\n            background: #f8f9ff;\n            border-radius: 12px;\n            border-left: 4px solid #667eea;\n        }\n\n        .question:last-child {\n            margin-bottom: 0;\n        }\n\n        .question-number {\n            font-weight: 700;\n            color: #667eea;\n            margin-bottom: 8px;\n        }\n\n        .question-text {\n            color: #333;\n            line-height: 1.6;\n            font-size: 16px;\n        }\n\n        .prompt {\n            background: linear-gradient(135deg, #764ba2, #667eea);\n            color: white;\n            padding: 20px;\n            border-radius: 15px;\n            margin-bottom: 25px;\n            text-align: center;\n            line-height: 1.6;\n        }\n\n        .floating-buttons {\n            position: fixed;\n            bottom: 20px;\n            right: 20px;\n            display: flex;\n            flex-direction: column;\n            gap: 10px;\n            z-index: 1000;\n        }\n\n        .floating-btn {\n            width: 50px;\n            height: 50px;\n            border-radius: 50%;\n            border: none;\n            background: #667eea;\n            color: white;\n            font-size: 20px;\n            cursor: pointer;\n            box-shadow: 0 4px 15px rgba(0,0,0,0.2);\n            transition: all 0.3s ease;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n\n        .floating-btn:hover {\n            background: #5a6fd8;\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(0,0,0,0.3);\n        }\n\n        .current-indicator {\n            display: inline-block;\n            width: 8px;\n            height: 8px;\n            background: #4CAF50;\n            border-radius: 50%;\n            margin-left: 8px;\n        }\n\n        @media (max-width: 480px) {\n            .main-content {\n                padding: 0 15px;\n            }\n            \n            .day-section {\n                padding: 20px;\n            }\n            \n            .header {\n                padding: 12px 15px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"header\">\n        <div class=\"title\">\ud83d\ude97 \ub85c\ub4dc\ud2b8\ub9bd \ub300\ud654 \uc9c8\ubb38<\/div>\n        <div class=\"dropdown-container\">\n            <button class=\"dropdown-btn\" onclick=\"toggleDropdown()\">\n                <span id=\"current-selection\">\ub0a0\uc9dc \uc120\ud0dd<\/span>\n                <span class=\"dropdown-arrow\" id=\"dropdown-arrow\">\u25bc<\/span>\n            <\/button>\n            <div class=\"dropdown-menu\" id=\"dropdown-menu\"><\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"main-content\">\n        <div class=\"prompt\">\n            \ud83d\udcad <strong>\uc0ac\uc6a9\ubc95:<\/strong> \ub9e4\uc77c \uc138 \uac1c\uc758 \uc9c8\ubb38\uc73c\ub85c \uc11c\ub85c\ub97c \uc54c\uc544\uac00\ub294 \uc2dc\uac04\uc744 \uac00\uc838\ubcf4\uc138\uc694. \uc815\ub2f5\uc740 \uc5c6\uc73c\ub2c8 \ud3b8\uc548\ud558\uac8c \ub300\ud654\ub97c \ub098\ub204\uba70 \uc5ec\ud589\uc758 \ucd94\uc5b5\uc744 \ub354\uc6b1 \uae4a\uac8c \ub9cc\ub4e4\uc5b4\ubcf4\uc138\uc694!\n        <\/div>\n\n        <div id=\"day-1\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">1\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ucd9c\ubc1c\uc758 \uc124\ub818<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 23\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ub9cc\uc57d \ub2f9\uc2e0\uc758 \uc778\uc0dd\uc774 \uc601\ud654\ub77c\uba74, \uc9c0\uae08 \uc774 \uc21c\uac04\uc740 \uc5b4\ub5a4 \uc7a5\ub974\uc758 \uc5b4\ub5a4 \uc7a5\uba74\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc5ec\ud589 \uac00\ubc29\uc5d0 \ub123\uc740 \ubb3c\uac74 \uc911 \uac00\uc7a5 \uc4f8\ubaa8\uc5c6\uc5b4 \ubcf4\uc774\uc9c0\ub9cc \uc808\ub300 \ube7c\uace0 \uc62c \uc218 \uc5c6\uc5c8\ub358 \uac83\uc740 \ubb34\uc5c7\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">&#8216;\ubaa8\ud5d8&#8217;\uacfc &#8216;\ubb34\ubaa8\ud568&#8217;\uc758 \uacbd\uacc4\uc120\uc740 \uc5b4\ub514\uc5d0 \uc788\ub2e4\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-2\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">2\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ub0af\uc120 \uae38 \uc704\uc5d0\uc11c<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 24\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uae38\uc744 \uc783\ub294 \uac83\uacfc \uae38\uc744 \ucc3e\ub294 \uac83 \uc911 \uc5b4\ub290 \ucabd\uc774 \ub354 \uac00\uce58 \uc788\ub294 \uacbd\ud5d8\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ub2f9\uc2e0\uc5d0\uac8c &#8216;\uc9d1&#8217;\uc774\ub780 \uc7a5\uc18c\uc778\uac00\uc694, \uc0ac\ub78c\uc778\uac00\uc694, \uc544\ub2c8\uba74 \uac10\uc815\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ub9cc\uc57d \ud558\ub8e8 \uc885\uc77c \ucc28 \uc548\uc5d0\uc11c \ud55c \uac00\uc9c0 \uc8fc\uc81c\ub85c\ub9cc \ub300\ud654\ud574\uc57c \ud55c\ub2e4\uba74 \ubb34\uc5c7\uc744 \uc120\ud0dd\ud558\uaca0\uc5b4\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-3\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">3\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uccab \ubc88\uc9f8 \ub3c4\uc2dc<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 25\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ub3c4\uc2dc\uc640 \uc790\uc5f0 \uc911 \uc5b4\ub514\uc5d0\uc11c \ub354 &#8216;\ub098\ub2e4\uc6b4&#8217; \ubaa8\uc2b5\uc774 \ub098\ud0c0\ub09c\ub2e4\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uad00\uad11\uc9c0\uc5d0\uc11c \uc0ac\uc9c4\uc744 \ucc0d\ub294 \uc774\uc720\ub294 \uae30\uc5b5\ud558\uae30 \uc704\ud568\uc77c\uae4c\uc694, \uc99d\uba85\ud558\uae30 \uc704\ud568\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ud604\uc9c0\uc778\ucc98\ub7fc \uc5ec\ud589\ud558\ub294 \uac83\uacfc \uad00\uad11\uac1d\uc73c\ub85c \uc5ec\ud589\ud558\ub294 \uac83\uc758 \uc7a5\ub2e8\uc810\uc744 \uc5b4\ub5bb\uac8c \ubcf4\uc138\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-4\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">4\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc0ac\ub9c9\uc744 \ub9c8\uc8fc\ud558\uba70<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 26\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uad11\ud65c\ud55c \uc790\uc5f0 \uc55e\uc5d0\uc11c \ub290\ub07c\ub294 \uac10\uc815\uc740 \ub450\ub824\uc6c0\uc778\uac00\uc694, \uc790\uc720\ub85c\uc6c0\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ud63c\uc790\ub9cc\uc758 \uc2dc\uac04\uacfc \ud568\uaed8\ud558\ub294 \uc2dc\uac04, \uc5b4\ub290 \ucabd\uc5d0\uc11c \ub354 \uc9c4\uc9dc \uc790\uc2e0\uc744 \ubc1c\uacac\ud558\uac8c \ub418\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">&#8216;\uc544\ubb34\uac83\ub3c4 \uc5c6\ub2e4&#8217;\ub294 \uac83\uc774 \ub54c\ub85c\ub294 &#8216;\ubaa8\ub4e0 \uac83\uc774 \uc788\ub2e4&#8217;\ub294 \ub73b\uc77c \uc218 \uc788\uc744\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-5\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">5\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc791\uc740 \ub9c8\uc744\uc5d0\uc11c<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 27\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ud070 \ub3c4\uc2dc\uc758 \uc775\uba85\uc131\uacfc \uc791\uc740 \ub9c8\uc744\uc758 \uce5c\ubc00\ud568 \uc911 \uc5b4\ub290 \ucabd\uc774 \ub354 \ud3b8\uc548\ud55c\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ub2f9\uc2e0\uc758 \uace0\ud5a5\uc744 \ucc98\uc74c \ubc29\ubb38\ud55c \uc678\uad6d\uc778\uc5d0\uac8c \uac00\uc7a5 \uc790\ub791\ud558\uace0 \uc2f6\uc740 \uac83\uc740 \ubb34\uc5c7\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ud3c9\ubc94\ud55c \uc77c\uc0c1\uc774 \ub204\uad70\uc5d0\uac8c\ub294 \ud2b9\ubcc4\ud55c \uc5ec\ud589\uc774 \ub420 \uc218 \uc788\ub2e4\ub294 \uac78 \uc5b4\ub5bb\uac8c \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-6\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">6\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uad6d\ub9bd\uacf5\uc6d0\uc5d0\uc11c<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 28\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc790\uc5f0\uc744 \ubcf4\ud638\ud55c\ub2e4\ub294 \uac83\uc740 \uc778\uac04\uc774 \uac1c\uc785\ud558\uc9c0 \uc54a\ub294 \uac83\uc77c\uae4c\uc694, \uc801\uadf9\uc801\uc73c\ub85c \uad00\ub9ac\ud558\ub294 \uac83\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">100\ub144 \ud6c4 \uc774 \ud48d\uacbd\uc744 \ubcf4\uac8c \ub420 \uc0ac\ub78c\ub4e4\uc5d0\uac8c \uc6b0\ub9ac\uac00 \ub0a8\uaca8\uc57c \ud560 \uac83\uc740 \ubb34\uc5c7\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc778\uc2a4\ud0c0\uadf8\ub7a8\uc5d0 \uc62c\ub9b4 \uc218 \uc5c6\ub294 \uc21c\uac04\uc774 \ub354 \uc18c\uc911\ud560 \uc218 \uc788\uc744\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-7\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">7\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uccab \uc8fc\ub97c \ub3cc\uc544\ubcf4\uba70<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 29\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc77c\uc8fc\uc77c \uc804\uc758 \uc790\uc2e0\uacfc \uc9c0\uae08\uc758 \uc790\uc2e0 \uc0ac\uc774\uc5d0 \uc5b4\ub5a4 \ubcc0\ud654\ub97c \ub290\ub07c\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc5d0\uc11c \uac00\uc7a5 \uc911\uc694\ud55c \uac83\uc740 \uacc4\ud68d\uc778\uac00\uc694, \uc6b0\uc5f0\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ud568\uaed8 \uc5ec\ud589\ud558\ub294 \uc0ac\ub78c\ub4e4 \ub54c\ubb38\uc5d0 \ud3ec\uae30\ud55c \uac83\uacfc \uc5bb\uc740 \uac83\uc744 \ube44\uad50\ud55c\ub2e4\uba74?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-8\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">8\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ud574\uc548\uc120\uc744 \ub530\ub77c<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 30\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ubc14\ub2e4\ub97c \ubcf4\uba74 \uc2dc\uc791\uc774 \ub5a0\uc624\ub974\ub098\uc694, \ub05d\uc774 \ub5a0\uc624\ub974\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ud30c\ub3c4\ub294 \ud56d\uc0c1 \uac19\uc740 \uacf3\uc5d0 \ub3c4\ub2ec\ud558\ub824\uace0 \ud558\ub294\ub370 \uc65c \uacc4\uc18d \ubc00\ub824\uc640\uc57c \ud560\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc218\ud3c9\uc120 \ub108\uba38\uc5d0 \uc815\ub9d0 \uc0c8\ub85c\uc6b4 \uc138\uc0c1\uc774 \uc788\uc744\uae4c\uc694, \uc544\ub2c8\uba74 \uac19\uc740 \uc138\uc0c1\uc758 \uc5f0\uc18d\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-9\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">9\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ucea0\ud551\uc7a5\uc5d0\uc11c<\/div>\n                <\/div>\n                <div class=\"day-date\">7\uc6d4 31\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ubb38\uba85\uc758 \ud3b8\ub9ac\ud568\uc744 \ud3ec\uae30\ud558\uace0 \uc5bb\ub294 \uac83\uc740 \ubb34\uc5c7\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ubaa8\ub2e5\ubd88\uc744 \ubc14\ub77c\ubcf4\ub294 \uac83\uc774 \uc65c \uc774\ub807\uac8c \ub9c8\uc74c\uc744 \ud3b8\uc548\ud558\uac8c \ud560\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ubcc4\uc744 \ubcf4\uba70 \ub290\ub07c\ub294 \uc791\uc740 \uc874\uc7ac\uac10\uc774 \uc704\ucd95\ub418\ub294 \ub290\ub08c\uc778\uac00\uc694, \ud574\ubc29\ub418\ub294 \ub290\ub08c\uc778\uac00\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-10\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">10\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc911\uac04 \uc9c0\uc810<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 1\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc758 \uc808\ubc18\uc774 \uc9c0\ub0ac\uc744 \ub54c, \ub354 \ube68\ub9ac \uac00\uace0 \uc2f6\ub098\uc694 \ucc9c\ucc9c\ud788 \uac00\uace0 \uc2f6\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc9c0\uae08\uae4c\uc9c0\uc758 \uc5ec\ud589 \uc911 \uac00\uc7a5 \uc608\uc0c1\uacfc \ub2ec\ub790\ub358 \uc21c\uac04\uc740 \uc5b8\uc81c\uc600\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc5d0\uc11c \ub9cc\ub09c \uc0ac\ub78c\ub4e4 \uc911 \ub204\uad6c\uc758 \uc0b6\uc744 \ud558\ub8e8\ub9cc \uc0b4\uc544\ubcf4\uace0 \uc2f6\ub098\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-11\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">11\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc0b0\ub9e5\uc744 \ub118\uc73c\uba70<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 2\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ub192\uc740 \uacf3\uc5d0\uc11c \ub0b4\ub824\ub2e4\ubcf4\ub294 \uc804\ub9dd\uc774 \uc8fc\ub294 \uac83\uc740 \uc131\ucde8\uac10\uc77c\uae4c\uc694, \uacb8\uc190\ud568\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc815\uc0c1\uc5d0 \uc624\ub974\ub294 \uacfc\uc815\uacfc \uc815\uc0c1\uc5d0\uc11c\uc758 \uc21c\uac04 \uc911 \uc5b4\ub290 \ucabd\uc774 \ub354 \uc911\uc694\ud560\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uac00\uc7a5 \ud798\ub4e0 \uae38\uc774 \uac00\uc7a5 \uc544\ub984\ub2e4\uc6b4 \ud48d\uacbd\uc73c\ub85c \uc774\uc5b4\uc9c4\ub2e4\ub294 \uac83\uc774 \uc6b0\uc5f0\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-12\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">12\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc608\uc220\uacfc \ubb38\ud654<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 3\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ubc15\ubb3c\uad00\uc5d0\uc11c \uc791\ud488\uc744 \ubcf4\ub294 \uac83\uacfc \uae38\uac70\ub9ac\uc5d0\uc11c \uc0b4\uc544\uc788\ub294 \uc608\uc220\uc744 \ubcf4\ub294 \uac83\uc758 \ucc28\uc774\ub294 \ubb34\uc5c7\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ub2e4\ub978 \ubb38\ud654\ub97c \uc774\ud574\ud55c\ub2e4\ub294 \uac83\uc740 \uc815\ub9d0 \uac00\ub2a5\ud55c \uc77c\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc608\uc220\uac00\uac00 \ub418\uace0 \uc2f6\uc5c8\ub358 \uc801\uc774 \uc788\ub098\uc694? \uadf8 \uc774\uc720\ub294 \ubb34\uc5c7\uc774\uc5c8\ub098\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-13\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">13\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc74c\uc2dd\uacfc \ucd94\uc5b5<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 4\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ud604\uc9c0 \uc74c\uc2dd\uc744 \uba39\ub294 \uac83\uc774 \uadf8 \uc9c0\uc5ed\uc744 \uc774\ud574\ud558\ub294 \uac00\uc7a5 \ube60\ub978 \ubc29\ubc95\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\ub9db\uc788\ub294 \uc74c\uc2dd\uc744 \ud63c\uc790 \uba39\ub294 \uac83\uacfc \ud3c9\ubc94\ud55c \uc74c\uc2dd\uc744 \uc88b\uc740 \uc0ac\ub78c\ub4e4\uacfc \uba39\ub294 \uac83 \uc911 \uc5b4\ub290 \ucabd\uc744 \uc120\ud0dd\ud558\uaca0\uc5b4\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc5b4\ub5a4 \uc74c\uc2dd \ub0c4\uc0c8\uac00 \ub2f9\uc2e0\uc744 \uac00\uc7a5 \ud589\ubcf5\ud588\ub358 \uc21c\uac04\uc73c\ub85c \ub370\ub824\uac00\ub098\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-14\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">14\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc1fc\ud551\uacfc \uc18c\uc720<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 5\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc5d0\uc11c \uc0ac\ub294 \uae30\ub150\ud488\uc740 \ucd94\uc5b5\uc744 \uc0ac\ub294 \uac83\uc77c\uae4c\uc694, \uc99d\uac70\ub97c \uc0ac\ub294 \uac83\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc815\ub9d0 \ud544\uc694\ud55c \uac83\uacfc \uac16\uace0 \uc2f6\uc740 \uac83\uc744 \uad6c\ubd84\ud558\ub294 \uae30\uc900\uc740 \ubb34\uc5c7\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc18c\uc720\ud558\uc9c0 \uc54a\uace0\ub3c4 \uc790\uc2e0\uc758 \uac83\uc774\ub77c\uace0 \ub290\ub084 \uc218 \uc788\ub294 \uac83\ub4e4\uc774 \uc788\ub098\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-15\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">15\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc0ac\ub78c\ub4e4\uacfc\uc758 \ub9cc\ub0a8<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 6\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc5d0\uc11c \ub9cc\ub09c \uc0ac\ub78c\uacfc \uc77c\uc0c1\uc5d0\uc11c \ub9cc\ub09c \uc0ac\ub78c \uc0ac\uc774\uc5d0\ub294 \uc5b4\ub5a4 \ucc28\uc774\uac00 \uc788\uc744\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc5b8\uc5b4\uac00 \ud1b5\ud558\uc9c0 \uc54a\uc544\ub3c4 \ub9c8\uc74c\uc774 \ud1b5\ud560 \uc218 \uc788\ub2e4\uace0 \ubbff\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ub2e4\uc2dc \ub9cc\ub0a0 \uac00\ub2a5\uc131\uc774 \ud76c\ubc15\ud55c \uc0ac\ub78c\uacfc\uc758 \ub9cc\ub0a8\uc774 \ub354 \ud2b9\ubcc4\ud55c \uc774\uc720\ub294 \ubb34\uc5c7\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-16\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">16\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ub3c4\uc804\uacfc \ud55c\uacc4<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 7\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589 \uc911 \uac00\uc7a5 \ubb34\uc11c\uc6e0\ub358 \uc21c\uac04\uc774 \ub098\uc911\uc5d0 \uac00\uc7a5 \uc88b\uc740 \ucd94\uc5b5\uc774 \ub418\ub294 \uc774\uc720\ub294 \ubb34\uc5c7\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc790\uc2e0\uc758 \ud55c\uacc4\ub97c \uc54c\uac8c \ub418\ub294 \uac83\uacfc \ud55c\uacc4\ub97c \ub6f0\uc5b4\ub118\ub294 \uac83 \uc911 \uc5b4\ub290 \ucabd\uc774 \ub354 \uc131\uc7a5\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">&#8216;\uc548\uc804\ud55c \ubaa8\ud5d8&#8217;\uc774\ub77c\ub294 \ud45c\ud604\uc774 \ubaa8\uc21c\uc801\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-17\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">17\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc2dc\uac04\uc758 \ud750\ub984<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 8\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589 \uc911\uc5d0\ub294 \uc65c \uc2dc\uac04\uc774 \ub2e4\ub974\uac8c \ud750\ub974\ub294 \uac83\ucc98\ub7fc \ub290\uaef4\uc9c8\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uae30\uc5b5\uc5d0 \ub0a8\ub294 \uc21c\uac04\ub4e4\uc758 \uacf5\ud1b5\uc810\uc740 \ubb34\uc5c7\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc9c0\uae08 \uc774 \uc21c\uac04\uc744 10\ub144 \ud6c4\uc758 \uc790\uc2e0\uc774 \uadf8\ub9ac\uc6cc\ud560\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-18\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">18\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ubcc0\ud654\uc640 \uc131\uc7a5<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 9\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc774 \uc0ac\ub78c\uc744 \ubc14\uafb8\ub294 \uac78\uae4c\uc694, \uc544\ub2c8\uba74 \uc6d0\ub798 \uc790\uc2e0\uc744 \ubc1c\uacac\ud558\uac8c \ud558\ub294 \uac78\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc9d1\uc5d0 \ub3cc\uc544\uac00\uc11c\ub3c4 \uc720\uc9c0\ud558\uace0 \uc2f6\uc740 \uc5ec\ud589 \uc911\uc758 \uc790\uc2e0\uc758 \ubaa8\uc2b5\uc774 \uc788\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc131\uc7a5\uc774\ub780 \uc0c8\ub85c\uc6b4 \uac83\uc744 \ubc1b\uc544\ub4e4\uc774\ub294 \uac83\uc77c\uae4c\uc694, \ubd88\ud544\uc694\ud55c \uac83\uc744 \ubc84\ub9ac\ub294 \uac83\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-19\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">19\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ub9c8\uc9c0\ub9c9\uc744 \uc55e\ub450\uace0<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 10\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\ub05d\uc774 \ubcf4\uc774\uae30 \uc2dc\uc791\ud560 \ub54c \ub290\ub07c\ub294 \uac10\uc815\uc740 \uc544\uc26c\uc6c0\uc778\uac00\uc694, \ub9cc\uc871\uac10\uc778\uac00\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc774 \uc5ec\ud589\uc744 \ud55c \ubb38\uc7a5\uc73c\ub85c \ud45c\ud604\ud55c\ub2e4\uba74 \ubb34\uc5c7\uc774\ub77c\uace0 \ud558\uaca0\uc5b4\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc758 \ub9c8\uc9c0\ub9c9 \ub0a0\uc5d0 \ud558\uace0 \uc2f6\uc740 \ud55c \uac00\uc9c0\uac00 \uc788\ub2e4\uba74 \ubb34\uc5c7\uc778\uac00\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-20\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">20\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ub3cc\uc544\uac08 \uc900\ube44<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 11\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc5ec\ud589\uc5d0\uc11c \uac00\uc838\uac08 \uac83\uacfc \ub450\uace0 \uac08 \uac83\uc744 \uc815\ub9ac\ud55c\ub2e4\uba74?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc77c\uc0c1\uc73c\ub85c \ub3cc\uc544\uac00\ub294 \uac83\uc774 \ub450\ub824\uc6b4\uac00\uc694, \uae30\ub300\ub418\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\uc774 \uacbd\ud5d8\uc744 \ub2e4\ub978 \uc0ac\ub78c\uc5d0\uac8c \ucd94\ucc9c\ud558\uace0 \uc2f6\ub098\uc694? \uadf8 \uc774\uc720\ub294?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-21\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">21\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\ub9c8\uc9c0\ub9c9 \ub0a0<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 12\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">21\uc77c \uc804\uc758 \uc790\uc2e0\uc5d0\uac8c \ud574\uc8fc\uace0 \uc2f6\uc740 \ub9d0\uc774 \uc788\ub098\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc774 \uc5ec\ud589\uc774 \ub05d\ub098\ub294 \uac83\uc77c\uae4c\uc694, \uc2dc\uc791\ub418\ub294 \uac83\uc77c\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ud568\uaed8 \uc5ec\ud589\ud55c \uc0ac\ub78c\ub4e4\uacfc \uc55e\uc73c\ub85c\ub3c4 \uc5f0\ub77d\uc744 \uc720\uc9c0\ud560 \uac83 \uac19\ub098\uc694? \uadf8\uac8c \uc911\uc694\ud560\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n\n        <div id=\"day-22\" class=\"day-section\">\n            <div class=\"day-header\">\n                <div>\n                    <div class=\"day-title\">22\uc77c\ucc28<\/div>\n                    <div class=\"day-subtitle\">\uc0c8\ub85c\uc6b4 \uc2dc\uc791<\/div>\n                <\/div>\n                <div class=\"day-date\">8\uc6d4 13\uc77c<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 1<\/div>\n                <div class=\"question-text\">\uc774 \uc5ec\ud589\uc5d0\uc11c \uc5bb\uc740 \uac00\uc7a5 \ud070 \uc120\ubb3c\uc740 \ubb34\uc5c7\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uc138\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 2<\/div>\n                <div class=\"question-text\">\uc55e\uc73c\ub85c\uc758 \uc77c\uc0c1\uc5d0\uc11c &#8216;\uc5ec\ud589\ud558\ub294 \ub9c8\uc74c&#8217;\uc744 \uc5b4\ub5bb\uac8c \uc720\uc9c0\ud560 \uc218 \uc788\uc744\uae4c\uc694?<\/div>\n            <\/div>\n            <div class=\"question\">\n                <div class=\"question-number\">\uc9c8\ubb38 3<\/div>\n                <div class=\"question-text\">\ub9cc\uc57d 1\ub144 \ud6c4 \ub611\uac19\uc740 \uba64\ubc84\ub85c \ub2e4\uc2dc \uc5ec\ud589\uc744 \uac04\ub2e4\uba74, \uc5b4\ub5a4 \uac83\uc774 \ub2ec\ub77c\uc838 \uc788\uc744\uae4c\uc694?<\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"floating-buttons\">\n        <button class=\"floating-btn\" onclick=\"goToTop()\" title=\"\ub9e8 \uc704\ub85c\">\u2191<\/button>\n        <button class=\"floating-btn\" onclick=\"goToToday()\" title=\"\uc624\ub298\ub85c\">\ud83d\udcc5<\/button>\n    <\/div>\n\n    <script>\n        const days = [\n            { id: 'day-1', date: '7\uc6d4 23\uc77c', title: '1\uc77c\ucc28 - \ucd9c\ubc1c\uc758 \uc124\ub818' },\n            { id: 'day-2', date: '7\uc6d4 24\uc77c', title: '2\uc77c\ucc28 - \ub0af\uc120 \uae38 \uc704\uc5d0\uc11c' },\n            { id: 'day-3', date: '7\uc6d4 25\uc77c', title: '3\uc77c\ucc28 - \uccab \ubc88\uc9f8 \ub3c4\uc2dc' },\n            { id: 'day-4', date: '7\uc6d4 26\uc77c', title: '4\uc77c\ucc28 - \uc0ac\ub9c9\uc744 \ub9c8\uc8fc\ud558\uba70' },\n            { id: 'day-5', date: '7\uc6d4 27\uc77c', title: '5\uc77c\ucc28 - \uc791\uc740 \ub9c8\uc744\uc5d0\uc11c' },\n            { id: 'day-6', date: '7\uc6d4 28\uc77c', title: '6\uc77c\ucc28 - \uad6d\ub9bd\uacf5\uc6d0\uc5d0\uc11c' },\n            { id: 'day-7', date: '7\uc6d4 29\uc77c', title: '7\uc77c\ucc28 - \uccab \uc8fc\ub97c \ub3cc\uc544\ubcf4\uba70' },\n            { id: 'day-8', date: '7\uc6d4 30\uc77c', title: '8\uc77c\ucc28 - \ud574\uc548\uc120\uc744 \ub530\ub77c' },\n            { id: 'day-9', date: '7\uc6d4 31\uc77c', title: '9\uc77c\ucc28 - \ucea0\ud551\uc7a5\uc5d0\uc11c' },\n            { id: 'day-10', date: '8\uc6d4 1\uc77c', title: '10\uc77c\ucc28 - \uc911\uac04 \uc9c0\uc810' },\n            { id: 'day-11', date: '8\uc6d4 2\uc77c', title: '11\uc77c\ucc28 - \uc0b0\ub9e5\uc744 \ub118\uc73c\uba70' },\n            { id: 'day-12', date: '8\uc6d4 3\uc77c', title: '12\uc77c\ucc28 - \uc608\uc220\uacfc \ubb38\ud654' },\n            { id: 'day-13', date: '8\uc6d4 4\uc77c', title: '13\uc77c\ucc28 - \uc74c\uc2dd\uacfc \ucd94\uc5b5' },\n            { id: 'day-14', date: '8\uc6d4 5\uc77c', title: '14\uc77c\ucc28 - \uc1fc\ud551\uacfc \uc18c\uc720' },\n            { id: 'day-15', date: '8\uc6d4 6\uc77c', title: '15\uc77c\ucc28 - \uc0ac\ub78c\ub4e4\uacfc\uc758 \ub9cc\ub0a8' },\n            { id: 'day-16', date: '8\uc6d4 7\uc77c', title: '16\uc77c\ucc28 - \ub3c4\uc804\uacfc \ud55c\uacc4' },\n            { id: 'day-17', date: '8\uc6d4 8\uc77c', title: '17\uc77c\ucc28 - \uc2dc\uac04\uc758 \ud750\ub984' },\n            { id: 'day-18', date: '8\uc6d4 9\uc77c', title: '18\uc77c\ucc28 - \ubcc0\ud654\uc640 \uc131\uc7a5' },\n            { id: 'day-19', date: '8\uc6d4 10\uc77c', title: '19\uc77c\ucc28 - \ub9c8\uc9c0\ub9c9\uc744 \uc55e\ub450\uace0' },\n            { id: 'day-20', date: '8\uc6d4 11\uc77c', title: '20\uc77c\ucc28 - \ub3cc\uc544\uac08 \uc900\ube44' },\n            { id: 'day-21', date: '8\uc6d4 12\uc77c', title: '21\uc77c\ucc28 - \ub9c8\uc9c0\ub9c9 \ub0a0' },\n            { id: 'day-22', date: '8\uc6d4 13\uc77c', title: '22\uc77c\ucc28 - \uc0c8\ub85c\uc6b4 \uc2dc\uc791' }\n        ];\n\n        let isDropdownOpen = false;\n\n        function getCurrentDay() {\n            const today = new Date();\n            const tripStart = new Date('2025-07-23');\n            const daysDiff = Math.floor((today - tripStart) \/ (1000 * 60 * 60 * 24));\n            \n            if (daysDiff >= 0 && daysDiff < days.length) {\n                return daysDiff;\n            }\n            return 0; \/\/ \uae30\ubcf8\uac12\uc73c\ub85c \uccab\uc9f8 \ub0a0\n        }\n\n        function initializeDropdown() {\n            const menu = document.getElementById('dropdown-menu');\n            const currentSelection = document.getElementById('current-selection');\n            const currentDay = getCurrentDay();\n            \n            days.forEach((day, index) => {\n                const item = document.createElement('div');\n                item.className = 'dropdown-item';\n                if (index === currentDay) {\n                    item.classList.add('current');\n                }\n                \n                item.innerHTML = `\n                    <span>${day.title}<\/span>\n                    <span>${day.date}${index === currentDay ? '<span class=\"current-indicator\"><\/span>' : ''}<\/span>\n                `;\n                \n                item.onclick = () => {\n                    scrollToDay(day.id);\n                    closeDropdown();\n                    currentSelection.textContent = day.title;\n                };\n                \n                menu.appendChild(item);\n            });\n            \n            currentSelection.textContent = days[currentDay].title;\n        }\n\n        function toggleDropdown() {\n            const menu = document.getElementById('dropdown-menu');\n            const arrow = document.getElementById('dropdown-arrow');\n            \n            isDropdownOpen = !isDropdownOpen;\n            \n            if (isDropdownOpen) {\n                menu.classList.add('open');\n                arrow.classList.add('open');\n            } else {\n                menu.classList.remove('open');\n                arrow.classList.remove('open');\n            }\n        }\n\n        function closeDropdown() {\n            const menu = document.getElementById('dropdown-menu');\n            const arrow = document.getElementById('dropdown-arrow');\n            \n            isDropdownOpen = false;\n            menu.classList.remove('open');\n            arrow.classList.remove('open');\n        }\n\n        function scrollToDay(dayId) {\n            const element = document.getElementById(dayId);\n            const headerHeight = document.querySelector('.header').offsetHeight;\n            const elementPosition = element.offsetTop;\n            const offsetPosition = elementPosition - headerHeight - 20;\n\n            window.scrollTo({\n                top: offsetPosition,\n                behavior: 'smooth'\n            });\n        }\n\n        function goToTop() {\n            window.scrollTo({\n                top: 0,\n                behavior: 'smooth'\n            });\n        }\n\n        function goToToday() {\n            const currentDay = getCurrentDay();\n            const dayId = days[currentDay].id;\n            scrollToDay(dayId);\n            \n            const currentSelection = document.getElementById('current-selection');\n            currentSelection.textContent = days[currentDay].title;\n        }\n\n        \/\/ \ud398\uc774\uc9c0 \ub85c\ub4dc \uc2dc \ucd08\uae30\ud654\n        window.onload = function() {\n            initializeDropdown();\n            \n            \/\/ \ud604\uc7ac \ub0a0\uc9dc\uc5d0 \ub9de\ub294 \uc139\uc158\uc73c\ub85c \uc790\ub3d9 \uc2a4\ud06c\ub864\n            setTimeout(() => {\n                const currentDay = getCurrentDay();\n                scrollToDay(days[currentDay].id);\n            }, 500);\n        };\n\n        \/\/ \ub4dc\ub86d\ub2e4\uc6b4 \uc678\ubd80 \ud074\ub9ad \uc2dc \ub2eb\uae30\n        document.addEventListener('click', function(event) {\n            const dropdown = document.querySelector('.dropdown-container');\n            if (!dropdown.contains(event.target)) {\n                closeDropdown();\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>","protected":false},"excerpt":{"rendered":"<p>\ub85c\ub4dc\ud2b8\ub9bd \ub300\ud654 \uc9c8\ubb38 \ud83d\ude97 \ub85c\ub4dc\ud2b8\ub9bd \ub300\ud654 \uc9c8\ubb38 \ub0a0\uc9dc \uc120\ud0dd \u25bc \ud83d\udcad \uc0ac\uc6a9\ubc95: \ub9e4\uc77c \uc138 \uac1c\uc758 \uc9c8\ubb38\uc73c\ub85c \uc11c\ub85c\ub97c \uc54c\uc544\uac00\ub294 \uc2dc\uac04\uc744 \uac00\uc838\ubcf4\uc138\uc694. \uc815\ub2f5\uc740 \uc5c6\uc73c\ub2c8 \ud3b8\uc548\ud558\uac8c \ub300\ud654\ub97c \ub098\ub204\uba70 \uc5ec\ud589\uc758 \ucd94\uc5b5\uc744 \ub354\uc6b1 \uae4a\uac8c \ub9cc\ub4e4\uc5b4\ubcf4\uc138\uc694!&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":"","_tec_slr_enabled":"","_tec_slr_layout":""},"class_list":["post-1934","page","type-page","status-publish","hentry"],"ticketed":false,"_links":{"self":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages\/1934","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/comments?post=1934"}],"version-history":[{"count":0,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages\/1934\/revisions"}],"wp:attachment":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/media?parent=1934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}