@charset "utf-8";
/* =========================================================================
   오감놀이터 (senseland) 전용 스타일
   - 시안(디자인시안_오감놀이터)을 참고해 flow 레이아웃으로 재구성
   - 콘텐츠 폭 1320px, 지도 영역만 절대배치
   ========================================================================= */

/* 콘텐츠 영역 밖(페이지) 배경 */
body { background:#FFFCF7; }

.sl-wrap { max-width:1320px; margin:0 auto 40px; font-family:'Noto Sans KR','Malgun Gothic',sans-serif; color:#3A3A3A; }
.sl-wrap * { box-sizing:border-box; }

/* 색 토큰
   --sl-orange   #F2884B  포인트/활성
   --sl-cream     #FFFCF7  페이지 배경(이 페이지는 body 톤에 맞춤)
   --sl-green     #3FA796  꿀팁 카드
   --sl-tab-bg    #FFF0CC  월 탭
   --sl-tab-txt   #B08D5F
*/

/* =============================== 1. 메인 지도 =============================== */
.sl-map {
    position:relative;
    width:1320px; height:660px;
    margin:40px auto 0;
    background:#cfeaf6 url(/images/spedu/senseland/senseland_map_bg.png) center/cover no-repeat;
    border-radius:20px;
    overflow:hidden;
}
.sl-map__logo {
    position:absolute; left:455px; top:-31px;
    width:400px; height:267px; z-index:3;
}
.sl-map__guide {
    position:absolute; right:20px; top:18px; z-index:4;
    display:inline-flex; align-items:center; gap:8px;
    height:30px; padding:0 14px;
    background:#fff; border:1px solid #EAD9C8;
    box-shadow:0 2px 4px rgba(0,0,0,.08); border-radius:15px;
    font-size:12.5px; font-weight:500; color:#F2884B; cursor:pointer;
}
.sl-map__guide i {
    width:16px; height:16px; line-height:14px; text-align:center;
    border:1.2px solid #F2884B; border-radius:50%;
    font-size:10.5px; font-weight:700; font-style:normal;
}

/* 지도 노드 — 이미지·이름 pill 을 배경(1320×660) 기준 px 좌표로 각각 절대배치 */
.sl-node-img {
    position:absolute; z-index:2; width:200px;
    display:block; text-decoration:none; cursor:pointer;
}
.sl-node-img img {
    display:block; width:200px; height:auto;
    filter:drop-shadow(0 6px 8px rgba(0,0,0,.12));
    transition:transform .2s;
}
.sl-node-img:hover img { transform:translateY(-4px) scale(1.04); }
.sl-node-img.is-active img { transform:scale(1.06); }
.sl-node__img--empty { display:block; width:170px; height:110px; }

.sl-node-label {
    position:absolute; z-index:3;
    box-sizing:border-box; width:120px; height:38px;
    display:inline-flex; align-items:center; justify-content:flex-start; gap:6px;
    padding:0 8px;
    background:#fff; border:1.5px solid #F0E4D8; border-radius:19px;
    font-size:13.5px; font-weight:700; color:#3A3A3A;
    white-space:nowrap; text-decoration:none;
}
.sl-node-label:hover { text-decoration:none; }
.sl-node__name {
    flex:1; min-width:0; text-align:center;
    overflow:hidden; text-overflow:ellipsis;
}
.sl-node__badge {
    box-sizing:border-box; flex:none;
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:24px; border-radius:12px;
    color:#fff; font-size:12px; font-weight:700;
}
/* 현재 월(활성) 라벨 */
.sl-node-label.is-active {
    background:#FFB088; border-color:#FFB088; color:#fff;
}

/* =============================== 2. 월별 탭 =============================== */
.sl-months {
    display:grid; grid-template-columns:repeat(6, 1fr); gap:12px 14px;
    margin:38px 0 0;
    scroll-margin-top:160px;
}
.sl-months a {
    display:flex; align-items:center; justify-content:center;
    height:46px; padding:0 6px;
    background:#FFF0CC; border:1px solid #F0DFC0; border-radius:20px;
    font-size:16px; font-weight:500; color:#B08D5F;
    text-decoration:none; transition:.15s;
}
.sl-months a:hover { background:#ffe7ad; }
.sl-months__name { color:#6B5B45; font-weight:600; margin-left:5px; }
.sl-months a.is-active {
    background:#F2884B; border-color:#F2884B; color:#fff; font-weight:700;
    box-shadow:0 4px 10px rgba(242,135,74,.38);
}
.sl-months a.is-active .sl-months__name { color:#fff; }
/* 미사용 월 — 비활성 */
.sl-months a.is-disabled {
    background:#F3F1EC; border:1px solid #E4E0D8; color:#C7C1B5; cursor:pointer;
}
.sl-months a.is-disabled:hover { background:#F3F1EC; }
.sl-months a.is-disabled .sl-months__name { color:#C7C1B5; }
/* 미사용 지도 노드 — 아이콘 이미지는 원본 그대로, 라벨만 비활성 */
.sl-node-label.is-disabled { background:#F3F1EC; border-color:#E4E0D8; }
.sl-node-label.is-disabled .sl-node__name { color:#C7C1B5; }
.sl-node-label.is-disabled .sl-node__badge { background:#C7C1B5 !important; }

/* =============================== 3. 꿀팁 아코디언 =============================== */
.sl-tip-head {
    display:flex; align-items:center; gap:14px; margin:59px 0 21px;
}
.sl-tip-head__badge {
    display:inline-flex; align-items:center; gap:8px;
    height:44px; padding:0 20px;
    background:#fff; border:1px solid #FFF0CC; border-radius:22px;
    font-size:14px; font-weight:700; color:#FF862A;
}
.sl-tip-head__badge i { color:#FF862A; }
.sl-tip-head__desc { font-size:15px; color:#FF862A; }

.sl-tips {
    border:2px solid #3FA796; border-radius:16px;
    background:#fff; padding:22px 20px;
}
.sl-tip {
    border-bottom:1px solid #EFE5DA;
    padding:11px 0;
}
.sl-tip:last-child { border-bottom:0; }
.sl-tip__toggle {
    width:100%; display:flex; align-items:center; justify-content:space-between;
    padding:0px 20px; background:none; border:0; cursor:pointer;
    font-size:18px; font-weight:700; color:#3FA796; text-align:left;
}
.sl-tip:not(.is-open) .sl-tip__toggle { color:#5C5148; font-size:16px; font-weight:600; }
.sl-tip__toggle .sl-arrow { color:#3FA796; font-size:15px; transition:transform .2s; }
.sl-tip:not(.is-open) .sl-tip__toggle .sl-arrow { color:#B5A99D; transform:rotate(180deg); }
.sl-tip__body { display:none; padding:4px 4px 20px; }
.sl-tip.is-open .sl-tip__body { display:block; }

.sl-tip-block {
    position:relative;
    background:rgba(205,232,224,.3); border-radius:16px;
    padding:20px; margin:7px 0px;
}
.sl-tip-block__label {
    font-size:14.5px; font-weight:700; color:#3FA796; margin:0 0 10px;
}
/* 한 박스 안 두 번째 라벨(배움지원) — 위 텍스트와 간격 */
.sl-tip-block__text + .sl-tip-block__label { margin-top:16px; }
.sl-tip-block__text {
    font-size:13px; line-height:1.68; color:#5C5148;
    margin:0; padding-right:130px;
}
.sl-copy-btn {
    position:absolute; right:20px; bottom:18px;
    height:34px; padding:0 20px;
    background:#F2884B; border:0; border-radius:17px;
    color:#fff; font-size:13.5px; font-weight:700; cursor:pointer;
}
.sl-copy-btn:hover { background:#e0733a; }

/* =============================== 4. 식재료 소개 + 영상 =============================== */
.sl-intro {
    display:grid; grid-template-columns:636fr 677fr; gap:8px;
    margin-top:26px;
}
.sl-intro__card {
    background:#FAF4EC; border-radius:16px; overflow:hidden;
    display:flex; flex-direction:column;
}
.sl-intro__thumb {
    width:100%; height:180px; object-fit:cover; background:#eee;
    display:block;
}
.sl-intro__thumb--empty { background:#f1ece5; }
.sl-empty { padding:40px 0; text-align:center; color:#B5A99D; font-size:14px; }
.sl-intro__body { padding:19px 65px; display:flex; align-items:stretch; gap:29px; }
.sl-intro__name {
    flex:none; align-self:flex-start; font-size:26px; font-weight:700; color:#F2884B;
}
.sl-intro__desc {
    flex:1; display:flex; align-items:center;   /* 한 줄이면 세로 중앙, 여러 줄이면 윗선 맞춤 */
    font-size:14px; line-height:1.5; color:#5C5148;
}
.sl-intro__video {
    background:#3D3D3D; border-radius:16px; overflow:hidden;
    display:flex; align-items:center; justify-content:center;
    min-height:262px; position:relative;
}
.sl-intro__video video, .sl-intro__video iframe {
    position:absolute; inset:0; width:100%; height:100%; border:0;
    object-fit:cover; display:block;
}
.sl-intro__video .sl-play {
    width:70px; height:70px; border-radius:50%;
    background:rgba(255,255,255,.9);
    display:flex; align-items:center; justify-content:center;
}
.sl-intro__video .sl-play::after {
    content:''; margin-left:5px;
    border-style:solid; border-width:14px 0 14px 22px;
    border-color:transparent transparent transparent #F2884B;
}

/* =============================== 5. 자료 탭 + 그리드 =============================== */
.sl-res { margin-top:66px; }
.sl-res__tabs {
    display:flex; align-items:flex-end; position:relative;
    border-bottom:1.5px solid #EFE5DA;
}
.sl-res__tab {
    flex:1; height:60px; border:1.5px solid #EFE5DA; border-bottom:0;
    background:#FAF4EC; color:#8A7D72;
    font-size:17px; font-weight:500; cursor:pointer;
}
.sl-res__tab.is-active {
    background:#FFE3A3; color:#F2884B; font-weight:700;
    border-top:4px solid #FFA900;
}
.sl-res__bar { display:flex; justify-content:flex-end; margin:0 0 14px; }
.sl-res__bar[hidden] { display:none; }
.sl-res__dl {
    height:42px; padding:0 22px;
    background:#F2884B; border:0; border-radius:21px;
    color:#fff; font-size:14px; font-weight:700; cursor:pointer;
}
.sl-res__dl:hover { background:#e0733a; }

.sl-res__panel { position:relative; padding:14px 0 0; }
.sl-res__panel[hidden] { display:none; }
.sl-grid {
    display:grid; grid-template-columns:repeat(4, 1fr); gap:24px;
    list-style:none; padding:0; margin:0;
}
/* 놀이자료 — 맨 앞 카드 세로로 길게(좌1열, 2행 span), 이후 6개는 기본 */
#sl-panel-play .sl-card:nth-child(1) { grid-column:1; grid-row:1 / span 2; }
#sl-panel-play .sl-card:nth-child(1) a { height:100%; display:flex; flex-direction:column; }
#sl-panel-play .sl-card:nth-child(1) .sl-card__thumb { aspect-ratio:auto; flex:1; }

/* 가정연계자료 — 좌1·좌2 세로카드(각 2행 span) + 우열 가로카드 2개 스택 */
#sl-panel-home .sl-grid {
    grid-template-columns:271px 271px 312px;
    justify-content:center;
    column-gap:41px;
    align-items:start;
}
/* 1·2번 카드: 세로형, 좌1·좌2 열에서 2행 span */
#sl-panel-home .sl-card:nth-child(1) { grid-column:1; grid-row:1 / span 2; }
#sl-panel-home .sl-card:nth-child(2) { grid-column:2; grid-row:1 / span 2; }
#sl-panel-home .sl-card:nth-child(1) .sl-card__thumb,
#sl-panel-home .sl-card:nth-child(2) .sl-card__thumb { aspect-ratio:271/386; }
/* 3번 이후 카드: 가로형, 우열(3열)에 세로 스택 */
#sl-panel-home .sl-card:nth-child(n+3) { grid-column:3; }
#sl-panel-home .sl-card:nth-child(n+3) .sl-card__thumb { aspect-ratio:312/186; }

/* 자료 슬라이더 (Swiper) — 화살표는 .swiper(overflow:hidden) 바깥 .sl-carousel 에 배치 */
.sl-carousel { position:relative; }
.sl-swiper .swiper-slide { height:auto; box-sizing:border-box; }
.sl-swiper .swiper-slide .sl-grid { width:100%; }
.sl-carousel .swiper-button-prev,
.sl-carousel .swiper-button-next {
    position:absolute; top:50%; transform:translateY(-50%);
    width:32px; height:32px; margin:0;
    display:flex; align-items:center; justify-content:center;
    color:#B5A99D; cursor:pointer; z-index:5;
}
.sl-carousel .swiper-button-prev { left:-42px; }
.sl-carousel .swiper-button-next { right:-42px; }
.sl-carousel .swiper-button-prev::after,
.sl-carousel .swiper-button-next::after { content:none; }   /* 기본 Swiper 화살표 제거 */
.sl-carousel .swiper-button-prev i,
.sl-carousel .swiper-button-next i { font-size:24px; }
.sl-carousel .swiper-button-disabled { opacity:.25; }

.sl-card { position:relative; }
.sl-card a { text-decoration:none; color:#5C5148; display:block; }
.sl-card__thumb {
    position:relative; width:100%; aspect-ratio:312/200;
    border-radius:14px; overflow:hidden; background:#f1ece5;
}
.sl-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.sl-card a:hover .sl-card__thumb img { transform:scale(1.04); }
.sl-card__title {
    margin:10px 4px 0; font-size:15.5px; font-weight:500; text-align:center;
    line-height:1.4; color:#5C5148;
    white-space:nowrap; overflow:hidden;
}
.sl-card__title-in { display:inline-block; transition:transform .8s ease; }
/* 넘치는 제목 — 왼쪽 정렬 후, hover 시 넘친 만큼 왼쪽으로 슬라이드해 전체 노출 */
.sl-card__title.is-clip { text-align:left; }
.sl-card:hover .sl-card__title.is-clip .sl-card__title-in {
    transform:translateX(calc(-1 * var(--sl-over, 0px)));
}
.sl-card__empty {
    display:flex; align-items:center; justify-content:center;
    color:#B5A99D; font-size:14px; padding:60px 0;
    grid-column:1/-1;
}

/* =============================== 6. 그림책 =============================== */
.sl-sec-title {
    display:inline-block; margin:73px 0 21px;
    padding:8px 26px; background:#FFE3A3; border-radius:20px;
    font-size:18px; font-weight:700; color:#5C5148;
}
.sl-books { display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; }
.sl-book {
    display:flex; gap:36px; align-items:center;
    height:228px;
    background:#fff; border-radius:10px; padding:18px 26px;
    text-decoration:none; color:inherit;
}
.sl-book:hover { text-decoration:none; }
.sl-book:not([href]) { cursor:default; } /* 링크 미등록 카드는 비링크 처리 */
.sl-book__cover { width:153px; height:auto; object-fit:cover; background:#f1ece5; flex:none; }
.sl-book__info { align-self:flex-start; margin-top:12px; font-size:14px; font-weight:500; color:#5C5148; }
.sl-book__title { font-size:18px; font-weight:500; margin:0 0 21px; }
.sl-book__meta { margin:0; }
.sl-book__meta + .sl-book__meta { margin-top:15px; }
.sl-book__meta b { display:inline-block; width:44px; color:#8C8178; font-weight:500; }

/* =============================== 7. 쇼핑몰 배너 =============================== */
.sl-banner { margin:101px 0 0; }
.sl-banner img { width:100%; height:auto; display:block; }

/* =============================== 8. 활용 후기 =============================== */
.sl-review-head { display:flex; align-items:center; gap:20px; margin:172px 0 23px; }
.sl-review-head__badge {
    padding:5px 16px; background:#FFE3A3; border-radius:18px;
    font-size:18px; font-weight:700; color:#7A5A1F;
}
.sl-review-head__desc { font-size:12px; font-weight:500; color:#F2884B; }

.sl-review-form {
    display:flex; gap:16px; align-items:stretch;
    background:#fff; border:1.5px solid #F0DFC0; border-radius:16px; padding:18px 20px;
}
.sl-review-form__main { flex:1; }
.sl-review-form textarea {
    width:100%; height:78px; resize:none;
    background:#FDFAF5; border:1px solid #EFE5DA; border-radius:10px;
    padding:12px 14px; font-size:12.5px; color:#5C5148;
}
.sl-review-form textarea::placeholder { color:#B5A99D; }
.sl-review-form__foot { display:flex; align-items:center; gap:12px; margin-top:8px; }
.sl-photo-btn {
    height:30px; padding:0 12px; background:#fff;
    border:1px solid #F0DFC0; border-radius:15px;
    font-size:10.5px; color:#8A7D72; cursor:pointer;
}
.sl-review-form__note { font-size:10.5px; color:#B5A99D; }
.sl-review-form__submit {
    width:130px; flex:none;
    background:#F2884B; border:0; border-radius:14px;
    color:#fff; font-size:14px; font-weight:700; cursor:pointer;
}

.sl-review {
    display:flex; gap:16px; align-items:flex-start;
    background:#FDFAF5; border-radius:14px; padding:20px 60px; margin-top:14px;
}
.sl-review__avatar { width:40px; height:40px; border-radius:50%; background:#F6EFE7; flex:none; }
.sl-review__body { flex:1; }
.sl-review__meta { display:flex; align-items:center; gap:16px; margin-bottom:8px; }
.sl-review__name {
    flex:none; width:80px;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    font-size:13px; font-weight:600; color:#5C5148;
}
.sl-review__name--admin { cursor:pointer; }
.sl-review__bar { flex:none; width:1px; height:13px; background:#B5A99D; }
.sl-review__date { font-size:12px; color:#B5A99D; word-spacing:15px; }
.sl-review__text { font-size:12.5px; line-height:1.5; color:#8A7D72; margin:0; }
.sl-review__del { margin-left:8px; font-size:11px; color:#B5A99D; text-decoration:none; }
.sl-review__del:hover { color:#8A7D72; }
.sl-review--hidden { display:none; }
.sl-review__like { font-size:11.5px; color:#B5A99D; flex:none; }
.sl-review-more {
    display:block; width:100%; margin-top:16px; padding:8px;
    background:none; border:0; cursor:pointer;
    font-size:12.5px; font-weight:700; color:#F2884B; text-align:center;
}

/* 후기 사진 첨부 버튼/미리보기 */
.sl-review-photo-btn {
    display:inline-flex; align-items:center; gap:5px;
    height:22px; padding:0 10px; box-sizing:border-box; flex:none;
    background:#fff; border:1px solid #F0DFC0; border-radius:15px;
    font-family:'Inter'; font-size:10.5px; font-weight:500; line-height:1;
    color:#8A7D72; cursor:pointer; white-space:nowrap;
}
.sl-review-photo-btn i { font-size:11px; color:#8A7D72; }
.sl-review-photo-btn.is-full { opacity:.45; cursor:default; pointer-events:none; }
.sl-review-photo-max { font-size:10.5px; color:#B5A99D; flex:none; }
.sl-review-preview { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.sl-review-preview:empty { margin-top:0; }
.sl-review-preview__item { position:relative; width:64px; height:64px; border-radius:8px; overflow:hidden; }
.sl-review-preview__item img { width:100%; height:100%; object-fit:cover; display:block; }
.sl-review-preview__del {
    position:absolute; top:2px; right:2px; width:18px; height:18px; padding:0;
    border:0; border-radius:50%; background:rgba(0,0,0,.55);
    color:#fff; font-size:13px; line-height:18px; text-align:center; cursor:pointer;
}
/* 후기 목록 첨부 이미지 */
.sl-review__imgs { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.sl-review__img { position:relative; display:block; width:88px; height:88px; border-radius:8px; overflow:visible; }
.sl-review__img > img { width:100%; height:100%; object-fit:cover; display:block; border-radius:8px; }
/* 마우스오버 확대 미리보기 */
.sl-review__zoom {
    position:absolute; left:50%; bottom:calc(100% + 8px); transform:translateX(-50%) scale(.96);
    z-index:20; display:block; padding:5px; background:#fff;
    border:1px solid #EFE5DA; border-radius:10px; box-shadow:0 8px 24px rgba(0,0,0,.18);
    opacity:0; visibility:hidden; pointer-events:none; transition:opacity .15s ease, transform .15s ease;
}
.sl-review__zoom img { display:block; width:240px; max-width:60vw; height:auto; border-radius:6px; }
.sl-review__img:hover .sl-review__zoom { opacity:1; visibility:visible; transform:translateX(-50%) scale(1); }

/* =============================== 온보딩 팝업 =============================== */
.sl-onb { position:fixed; inset:0; z-index:12000; display:flex; align-items:center; justify-content:center; padding:20px; }
.sl-onb__dim { position:absolute; inset:0; background:rgba(0,0,0,.5); }
.sl-onb__card {
    position:relative; width:569px; height:569px; max-width:92vw; max-height:92vh; overflow:hidden;
    background:#fff; border-radius:16px; box-shadow:0 8px 24px rgba(0,0,0,.3);
    padding:24px 0 16px; box-sizing:border-box; display:flex; flex-direction:column;   /* 정사각형 · 좌우 패딩 0(이미지 풀블리드) */
}
.sl-onb__viewport { overflow:hidden; flex:1; min-height:0; }
.sl-onb__track { display:flex; height:100%; transition:transform .3s ease; }
.sl-onb__slide { min-width:100%; box-sizing:border-box; display:flex; flex-direction:column; justify-content:space-between; text-align:center; }
.sl-onb__body { padding:0 30px; }                              /* 텍스트만 좌우 여백 */
.sl-onb__step {
    display:inline-flex; align-items:center; justify-content:center;
    height:22px; padding:0 14px; box-sizing:border-box;
    background:#FF7A3D; color:#fff; border-radius:20px;
    font-size:14px; font-weight:700; margin-bottom:12px;
}
.sl-onb__title { font-size:21px; font-weight:700; line-height:1.4; color:#2B2B2B; margin:0 0 8px; }
.sl-onb__desc { font-size:14px; font-weight:500; line-height:1.5; color:#424242; margin:0 0 14px; }
.sl-onb__desc b { color:#FF7A3D; font-weight:700; }
.sl-onb__desc--accent { color:#FF7A3D; font-weight:600; }
.sl-onb__img { flex:none; width:100%; aspect-ratio:2501 / 1412.33; overflow:hidden; background:#F6EFE7; }  /* 풀블리드 · 시안 비율(≈16:9) */
.sl-onb__img img { display:block; width:100%; height:100%; object-fit:cover; -webkit-user-drag:none; user-select:none; pointer-events:none; }
.sl-onb__dots { display:flex; align-items:center; justify-content:center; gap:8px; padding:10px 0 0; }  /* 이미지 바로 아래 */
.sl-onb__dot { width:9px; height:9px; border-radius:50%; background:#D4D4D4; cursor:pointer; transition:all .2s; }
.sl-onb__dot.is-active { width:11px; height:11px; background:#FF7A3D; }
.sl-onb__foot { display:flex; align-items:center; justify-content:space-between; padding:0 30px 0; }
.sl-onb__skip { background:none; border:0; color:#AAAAAA; font-size:14px; font-weight:500; cursor:pointer; padding:8px 4px; }
.sl-onb__next {
    display:inline-flex; align-items:center; justify-content:center;
    height:46px; padding:0 28px; box-sizing:border-box;
    background:#FF7A3D; border:0; border-radius:20px; color:#fff;
    font-size:14px; font-weight:700; cursor:pointer; white-space:nowrap;
}

/* =============================== 토스트 메시지 (블록 가운데) =============================== */
.sl-toast-block {
    position:absolute; left:50%; top:50%;
    transform:translate(-50%,-50%) scale(.96);
    background:rgba(0,0,0,.82); color:#fff;
    padding:12px 22px; border-radius:24px; font-size:14px; font-weight:500;
    white-space:nowrap; z-index:10; opacity:0; pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
}
.sl-toast-block.show { opacity:1; transform:translate(-50%,-50%) scale(1); }

/* =============================== 멀티회원 안내 팝업 =============================== */
.sl-member-modal {
    position:fixed; inset:0; z-index:10001;
    display:flex; align-items:center; justify-content:center;
}
.sl-member-modal[hidden] { display:none; }
.sl-member-dim { position:absolute; inset:0; background:rgba(0,0,0,.5); }
.sl-member-box {
    position:relative; z-index:1;
    width:340px; max-width:90vw;
    background:#fff; border-radius:16px; padding:36px 28px 24px;
    text-align:center; box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.sl-member-close {
    position:absolute; top:14px; right:14px;
    width:26px; height:26px; border:0; background:none;
    color:#B5A99D; font-size:22px; line-height:1; cursor:pointer;
}
.sl-member-icon {
    width:56px; height:56px; margin:0 auto 16px;
    display:flex; align-items:center; justify-content:center;
    background:#FFF0CC; border-radius:50%;
    color:#F2884B; font-size:22px;
}
.sl-member-title { font-size:18px; font-weight:700; color:#3A3A3A; line-height:1.45; margin:0 0 10px; }
.sl-member-desc { font-size:13px; color:#777777; line-height:1.5; margin:0 0 22px; }
.sl-member-btns { display:flex; gap:8px; }
.sl-member-go,
.sl-member-go:link,
.sl-member-go:visited,
.sl-member-go:hover {
    flex:1; height:44px; line-height:44px; text-align:center;
    background:#FF7A3D; border-radius:23px;
    color:#fff; font-size:15px; font-weight:700; text-decoration:none;
}
.sl-member-cancel {
    flex:none; padding:0 26px; height:44px;
    background:#F7F7F7; border:1.5px solid #BFBFBF; border-radius:23px;
    color:#8A7D72; font-size:15px; font-weight:500; cursor:pointer;
}

/* =============================== 준비중 안내 팝업 =============================== */
.sl-ready-modal { position:fixed; inset:0; z-index:10001; display:flex; align-items:center; justify-content:center; }
.sl-ready-modal[hidden] { display:none; }
.sl-ready-dim { position:absolute; inset:0; background:rgba(0,0,0,.5); }
.sl-ready-box {
    position:relative; z-index:1; width:400px; max-width:90vw;
    background:#fff; border-radius:20px; padding:44px 36px 32px; text-align:center;
    box-shadow:0 20px 55px rgba(0,0,0,.22);
}
.sl-ready-icon {
    width:78px; height:78px; margin:0 auto 22px;
    display:flex; align-items:center; justify-content:center;
    background:#FCEFD3; border-radius:50%; font-size:34px;
}
.sl-ready-title { font-size:26px; font-weight:800; color:#5C5148; margin:0 0 14px; }
.sl-ready-desc { font-size:15px; color:#9A8F82; line-height:1.6; margin:0 0 26px; }
.sl-ready-ok {
    width:200px; max-width:100%; height:48px;
    background:#F0834A; border:0; border-radius:24px;
    color:#fff; font-size:17px; font-weight:700; cursor:pointer;
}
.sl-ready-ok:hover { background:#e0733a; }

/* =============================== 오감놀이터란? 안내 모달 =============================== */
.sl-guide-modal {
    position:fixed; inset:0; z-index:9999;
    display:flex; align-items:center; justify-content:center;
}
.sl-guide-modal[hidden] { display:none; }
.sl-guide-dim { position:absolute; inset:0; background:rgba(0,0,0,.5); }
.sl-guide-inner { position:relative; z-index:1; }
.sl-guide-box {
    width:1000px; height:707px; max-width:96vw; max-height:92vh;
    box-sizing:border-box;
    background:#fff; border-radius:8px;
    overflow:hidden;
}
.sl-guide-close {
    position:absolute; top:-25px; right:-40px; z-index:5;
    width:36px; height:36px; border:0; background:none;
    color:#fff; font-size:30px; line-height:1; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
}
.sl-guide-swiper { width:100%; height:100%; }
.sl-guide-swiper .swiper-slide {
    display:flex; align-items:center; justify-content:center;
}
.sl-guide-swiper .swiper-slide img { max-width:100%; max-height:100%; object-fit:contain; }
.sl-guide-swiper .swiper-button-prev,
.sl-guide-swiper .swiper-button-next {
    width:40px; height:40px; color:#fff; border-radius:50%;
    background:rgba(0,0,0,.35);
    display:flex; align-items:center; justify-content:center;
}
.sl-guide-swiper .swiper-button-prev { left:16px; }
.sl-guide-swiper .swiper-button-next { right:16px; }
.sl-guide-swiper .swiper-button-prev::after,
.sl-guide-swiper .swiper-button-next::after { content:none; }
.sl-guide-swiper .swiper-button-prev i,
.sl-guide-swiper .swiper-button-next i { font-size:18px; }

/* =============================== 반응형(축소) =============================== */
@media (max-width:1360px) {
    .sl-wrap { max-width:100%; padding:0 12px; }
    .sl-map { width:100%; }
}
