@charset "UTF-8";

/* ========== Tokens ========== */
:root{
  --primary:#1f3da8;
  --primary-dark:#16307e;
  --primary-soft:#eef1ff;
  --accent:#ff4d4f;
  --accent-soft:#ffe9ea;
  --success:#16a34a;
  --text-1:#0f172a;
  --text-2:#475569;
  --text-3:#94a3b8;
  --line:#e5e7eb;
  --bg:#f4f6fb;
  --white:#ffffff;
  --radius:14px;
  --radius-lg:20px;
  --shadow-sm:0 1px 2px rgba(15,23,42,.04);
  --shadow:0 6px 20px rgba(15,23,42,.06);
  --shadow-lg:0 16px 40px -12px rgba(15,23,42,.16);
}

/* Exam apply modal: hide redundant step title/help area */
#examApplyDialog .exam-apply-section{display:none!important}
#examApplyDialog #applyCategoryBlock{margin-top:0!important}
#examApplyDialog #applyFieldBlock{margin-top:0!important}
#examApplyDialog .exam-apply-content{padding-top:16px!important}

/* ========== Reset ========== */
*,*::before,*::after{box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html,body{margin:0;padding:0;}
body{
  font-family:"Pretendard","Pretendard Variable","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  font-size:14px;color:var(--text-1);background:var(--bg);line-height:1.55;
  -webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;
}
a{color:inherit;text-decoration:none;}
ul,ol,dl,dd{margin:0;padding:0;list-style:none;}
button{cursor:pointer;border:0;background:transparent;font-family:inherit;color:inherit;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(31,61,168,.35);
  outline-offset:3px;
}
img{max-width:100%;display:block;}
h1,h2,h3,h4,h5,h6{margin:0;font-weight:700;letter-spacing:-.02em;}
address{font-style:normal;}

/* ========== 상단 채용 알림 바 ========== */
.m-notice-bar{
  display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;column-gap:7px;
  height:28px;padding:0 8px;
  background:#10233d;color:#fff;overflow:hidden;
  white-space:nowrap;box-sizing:border-box;
}
.m-notice-label{display:inline-flex;align-items:center;justify-content:center;height:24px;padding:0 9px;background:#ff4b55;color:#fff;border-radius:999px;font-size:11px;font-weight:900;}
.m-notice-viewport{height:20px;overflow:hidden;min-width:0;}
.m-notice-viewport ul{margin:0;padding:0;list-style:none;transition:transform .35s ease;}
.m-notice-viewport li{height:20px;line-height:20px;}
.m-notice-viewport a{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:6px;color:#fff;text-decoration:none;min-width:0;}
.m-notice-viewport b{font-size:13px;font-weight:900;color:#fff;letter-spacing:-.04em;}
.m-notice-viewport span{min-width:0;overflow:hidden;text-overflow:ellipsis;font-size:12px;font-weight:600;color:#dbe7ff;letter-spacing:-.04em;}
.m-notice-viewport em{display:inline-flex;align-items:center;justify-content:center;height:22px;padding:0 7px;background:#ff4b55;color:#fff;border-radius:999px;font-size:10px;font-style:normal;font-weight:900;}

/* ========== Header (블루 배경) ========== */
.m-header{
  position:sticky;top:0;z-index:40;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 16px;
  background:linear-gradient(135deg,#1475d8 0%,#1f63c8 100%);
  border-bottom:1px solid rgba(255,255,255,.22);
}
.m-icon-btn{width:28px;height:28px;border-radius:10px;font-size:20px;color:#fff;display:inline-flex;align-items:center;justify-content:center;}
.m-icon-btn:active{background:rgba(255,255,255,.12);}
.m-brand{display:inline-flex;align-items:center;gap:8px;background:transparent;padding:0;border-radius:0;margin-right:auto;}
.m-brand-logo{display:block;height:80px;width:auto;margin:4px 0 0;filter:drop-shadow(0 1px 3px rgba(0,0,0,.25));}
.brand-mark{display:none;}
.brand-name{display:none;}
.m-header-title{margin:0;font-size:18px;font-weight:800;color:#fff;letter-spacing:-.02em;flex:1;text-align:center;padding-right:40px;}
.m-hamburger{display:inline-flex;flex-direction:column;gap:4px;width:20px;}
.m-hamburger span{display:block;height:2px;background:#fff;border-radius:1px;}

/* 헤더 하단 가로 메뉴 */
.m-topnav{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:linear-gradient(135deg,#1475d8 0%,#1f63c8 100%);
  padding:0 8px 5px;
}
.m-topnav a{
  text-align:center;padding:10px 4px 9px;color:#fff;font-size:15px;font-weight:700;
  letter-spacing:-.02em;border-radius:10px;
}
.m-topnav a:active{background:rgba(255,255,255,.12);}

/* ========== Hero (큰 비주얼) ========== */
.m-hero{position:relative;background:#0f172a;overflow:hidden;}
.m-hero-slides{position:relative;height:180px;}
.m-hero-slide{
  position:absolute;inset:0;display:block;overflow:hidden;
  opacity:0;transition:opacity .6s;pointer-events:none;
}
.m-hero-slide.active{opacity:1;pointer-events:auto;}
.m-hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.m-hero-overlay{
  position:relative;z-index:2;height:100%;
  display:flex;flex-direction:column;justify-content:center;
  padding:22px 22px;color:#fff;
  background:
    linear-gradient(95deg,
      rgba(31,61,168,.92) 0%,
      rgba(31,61,168,.86) 45%,
      rgba(31,61,168,.45) 70%,
      rgba(31,61,168,.05) 100%);
}
.m-hero-slide[data-bg="m-2"] .m-hero-overlay{
  background:
    linear-gradient(95deg,
      rgba(14,116,144,.92) 0%,
      rgba(14,165,233,.84) 45%,
      rgba(14,165,233,.4) 70%,
      rgba(14,165,233,.05) 100%);
}
.m-hero-slide[data-bg="m-3"] .m-hero-overlay{
  background:
    linear-gradient(95deg,
      rgba(159,18,57,.92) 0%,
      rgba(244,63,94,.86) 45%,
      rgba(244,63,94,.4) 70%,
      rgba(244,63,94,.05) 100%);
}
/* 이미지 없을 때 fallback */
.m-hero-slide[data-bg="m-1"]{background:linear-gradient(135deg,#1f3da8 0%,#5b73e8 100%);}
.m-hero-slide[data-bg="m-2"]{background:linear-gradient(135deg,#0e7490 0%,#0ea5e9 100%);}
.m-hero-slide[data-bg="m-3"]{background:linear-gradient(135deg,#9f1239 0%,#f43f5e 100%);}

.m-hero-eyebrow{font-size:12px;font-weight:700;letter-spacing:.05em;color:rgba(255,255,255,.85);margin:0 0 8px;}
.m-hero-overlay h2{font-size:24px;line-height:1.2;letter-spacing:-.03em;margin:0 0 10px;color:#fff;}
.m-hero-overlay h2 strong{color:#fde047;font-weight:900;text-shadow:0 4px 16px rgba(253,224,71,.25);}
.m-hero-sub{font-size:12px;color:rgba(255,255,255,.85);line-height:1.5;margin:0 0 16px;}
.m-hero-cta{
  display:inline-flex;align-self:flex-start;align-items:center;gap:6px;
  padding:10px 22px;background:rgba(255,255,255,.18);color:#fff;
  border-radius:99px;font-size:13px;font-weight:700;
  border:1.5px solid rgba(255,255,255,.5);backdrop-filter:blur(10px);
}

/* 우측 하단 페이저 */
.m-hero-pager{
  position:absolute;right:14px;bottom:14px;z-index:3;
  display:inline-flex;align-items:center;gap:4px;
  padding:6px 10px;background:rgba(0,0,0,.35);backdrop-filter:blur(8px);
  border-radius:99px;border:1px solid rgba(255,255,255,.18);
  color:#fff;font-size:12px;font-weight:600;
}
.m-hero-pager strong{color:#fff;}
.m-hero-pager span{color:rgba(255,255,255,.7);margin:0 2px;}
.m-hero-plus{
  width:24px;height:24px;border-radius:50%;
  background:rgba(255,255,255,.2);color:#fff;font-size:14px;line-height:1;
  margin-left:4px;border:1px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;justify-content:center;
}

/* ========== 프로모 카드 (메달) ========== */
.m-promo{padding:14px 16px 0;}
.m-promo-card{
  display:flex;align-items:center;gap:14px;
  background:#fff;border-radius:18px;padding:16px 20px;
  box-shadow:0 6px 20px rgba(15,23,42,.08);
  border:1px solid var(--line);
}
.m-promo-icon{flex:0 0 44px;width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;}
.m-promo-icon svg{width:44px;height:44px;}
.m-promo-text{flex:1;min-width:0;}
.m-promo-eyebrow{font-size:12px;color:var(--text-2);margin:0 0 4px;font-weight:500;}
.m-promo-title{font-size:14px;color:var(--text-1);margin:0;line-height:1.4;letter-spacing:-.02em;}
.m-promo-title strong{color:var(--accent);font-weight:800;}
.m-promo-arrow{flex:0 0 auto;color:var(--text-3);font-size:20px;}

/* ========== 채용정보 (가로 스크롤) ========== */
.m-jobs{padding:24px 0 0;background:#fff;margin-top:14px;}
.m-sec-head.plain{display:flex;justify-content:space-between;align-items:baseline;padding:0 16px;margin-bottom:14px;border:0;}
.m-sec-head.plain h2{font-size:20px;letter-spacing:-.02em;}
.m-sec-sub{font-size:12px;color:var(--text-3);font-weight:500;margin-left:4px;letter-spacing:0;}
.m-jobs-scroll{
  display:flex;gap:10px;overflow-x:auto;
  padding:0 16px 14px;scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.m-jobs-scroll::-webkit-scrollbar{height:4px;}
.m-jobs-scroll::-webkit-scrollbar-track{background:transparent;}
.m-jobs-scroll::-webkit-scrollbar-thumb{background:var(--text-3);border-radius:99px;}

.m-job-card{
  flex:0 0 70%;max-width:280px;
  display:block;padding:18px 18px 16px;border-radius:14px;color:#fff;
  scroll-snap-align:start;transition:transform .2s;
  position:relative;
}
.m-job-card:active{transform:scale(.98);}
.m-job-card.blue{background:linear-gradient(155deg,#1f3da8 0%,#2563eb 100%);}
.m-job-card.orange{background:linear-gradient(155deg,#f97316 0%,#fb923c 100%);}
.m-job-card.green{background:linear-gradient(155deg,#1f3da8 0%,#2563eb 100%);}
.m-job-card.purple{background:linear-gradient(155deg,#f97316 0%,#fb923c 100%);}
.m-job-company{font-size:18px;font-weight:900;color:#fff;margin:0 0 6px;letter-spacing:-.02em;}
.m-job-title{
  font-size:14px;color:rgba(255,255,255,.95);font-weight:500;margin:0 0 12px;line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.m-job-card hr{border:0;height:1px;background:rgba(255,255,255,.25);margin:12px 0;}
.m-job-req{font-size:13px;color:#fff;font-weight:600;margin:2px 0;}
.m-job-due{font-size:12px;color:rgba(255,255,255,.8);margin:14px 0 0;}

.m-jobs-note{
  font-size:11px;color:var(--text-3);line-height:1.6;
  margin:0;padding:14px 16px 18px;border-bottom:1px solid var(--line);
}

/* ========== 공지/뉴스 탭 ========== */
.m-news{background:#fff;padding:8px 16px 18px;}
.m-news-tabs{display:flex;align-items:center;justify-content:center;gap:14px;padding:18px 0 14px;}
.m-news-tabs button{
  font-size:18px;font-weight:700;color:var(--text-3);letter-spacing:-.02em;
  padding:6px 4px;transition:.2s;
}
.m-news-tabs button.active{color:var(--text-1);font-weight:900;}
.m-news-divider{width:1px;height:18px;background:var(--line);}
.m-news-list{display:none;border-top:1px solid var(--line);}
.m-news-list.active{display:block;}
.m-news-list li{border-bottom:1px solid var(--line);}
.m-news-list a{
  display:flex;align-items:center;gap:8px;padding:14px 4px;
  font-size:14px;color:var(--text-1);
}
.m-news-list .new{
  display:inline-flex;align-items:center;justify-content:center;
  width:16px;height:16px;border-radius:50%;
  background:var(--accent);color:#fff;font-size:9px;font-weight:800;font-style:normal;
}

/* ========== Sections ========== */
.m-section{margin-top:24px;background:#fff;padding:24px 16px 16px;}
.m-sec-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:18px;}
.m-sec-eyebrow{font-size:10px;font-weight:700;letter-spacing:.2em;color:var(--primary);margin:0 0 4px;text-transform:uppercase;}
.m-sec-eyebrow.center{text-align:center;}
.m-sec-head h2{font-size:20px;letter-spacing:-.02em;}
.m-link{font-size:12px;color:var(--text-2);font-weight:600;padding-bottom:2px;border-bottom:1px solid var(--text-3);}

/* Schedule */
.m-sch-list{display:flex;flex-direction:column;gap:10px;}
.m-sch-list li{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:18px;
  position:relative;
}
.m-sch-list li.highlight{background:linear-gradient(155deg,#fff 0%,#fff5f5 100%);border-color:var(--accent-soft);}
.m-sch-tag{display:flex;align-items:center;gap:8px;margin-bottom:10px;}
.badge{font-size:10px;font-weight:700;letter-spacing:.05em;background:var(--primary-soft);color:var(--primary);padding:4px 8px;border-radius:99px;font-style:normal;}
.badge.red{background:var(--accent-soft);color:var(--accent);}
.state{font-size:11px;color:var(--success);font-weight:700;display:inline-flex;align-items:center;gap:3px;}
.state::before{content:"";width:5px;height:5px;background:var(--success);border-radius:50%;}
.m-sch-day{font-size:22px;font-weight:900;letter-spacing:-.03em;margin:0 0 10px;color:var(--text-1);}
.m-sch-day em{font-style:normal;font-size:14px;color:var(--text-2);font-weight:600;margin-left:4px;}
.m-sch-meta{font-size:12px;color:var(--text-3);margin:2px 0;}
.m-sch-meta strong{color:var(--text-2);font-weight:600;}
.m-sch-btn{
  display:flex;justify-content:center;align-items:center;gap:4px;
  margin-top:12px;padding:11px;background:var(--text-1);color:#fff;
  border-radius:10px;font-size:13px;font-weight:600;
}
.m-sch-list li.highlight .m-sch-btn{background:var(--accent);}

/* Info */
.m-info{padding:16px;display:flex;flex-direction:column;gap:10px;}
.m-info-card{
  position:relative;padding:22px 22px 26px;border-radius:var(--radius-lg);
  color:#fff;overflow:hidden;
}
.m-info-card.has-promo-image{
  background-color:#111827;
}
.m-info-card.has-promo-image::before{
  content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,23,42,.68),rgba(15,23,42,.18));z-index:0;
}
.m-info-card.has-promo-image > *{position:relative;z-index:1;text-shadow:0 2px 8px rgba(0,0,0,.45);}
.grad-1{background:linear-gradient(135deg,#1f3da8 0%,#5b73e8 100%);}
.grad-2{background:linear-gradient(135deg,#0ea5e9 0%,#22d3ee 100%);}
.m-info-eyebrow{font-size:11px;font-weight:700;letter-spacing:.2em;color:rgba(255,255,255,.85);margin:0 0 6px;}
.m-info-title{font-size:17px;font-weight:700;line-height:1.4;margin:0;letter-spacing:-.02em;}
.m-info-arrow{position:absolute;right:20px;top:22px;width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.18);display:inline-flex;align-items:center;justify-content:center;font-size:16px;}

/* CS */
.m-cs{margin-top:14px;background:#fff;color:var(--text-1);padding:22px 16px 20px;border-top:1px solid var(--line);}
.m-cs-panel{padding-bottom:18px;}
.m-cs-title{display:inline-flex;align-items:center;gap:4px;font-size:20px;font-weight:900;color:#111827;letter-spacing:-.04em;margin:0 0 14px;}
.m-cs-title span{font-size:26px;line-height:1;color:#6b7280;font-weight:700;transform:translateY(-1px);}
.m-cs-tels{display:flex;flex-direction:column;gap:5px;margin-bottom:10px;}
.m-cs-tels p{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:0;font-size:14px;color:#1f2937;}
.m-cs-tels strong{font-weight:800;letter-spacing:-.03em;}
.m-cs-tels b{font-size:15px;font-weight:900;letter-spacing:-.02em;white-space:nowrap;}
.m-cs-time{margin:4px 0 0;font-size:12px;color:#8b95a1;letter-spacing:-.03em;line-height:1.45;}
.m-cs-banner{position:relative;display:block;height:92px;border-radius:9px;overflow:hidden;background:#111827;box-shadow:0 14px 28px -20px rgba(15,23,42,.9);}
.m-cs-banner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:2;}
.m-cs-banner-fallback{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:radial-gradient(circle at 92% 50%,rgba(56,189,248,.45),transparent 28%),linear-gradient(110deg,#13182d 0%,#17142b 56%,#081f2d 100%);color:#fff;padding:12px 18px;}
.m-cs-banner-fallback p{margin:0 0 2px;font-size:11px;font-weight:800;color:#e2e8f0;}
.m-cs-banner-fallback h3{font-size:18px;font-weight:900;line-height:1.12;color:#5ab4ff;text-shadow:0 2px 10px rgba(59,130,246,.35);}
.m-cs-banner-fallback h3 strong{font-size:25px;color:#fff;letter-spacing:-.06em;}
.m-cs-banner-fallback span{margin-top:3px;font-size:10px;color:#cbd5e1;font-weight:700;}
.m-cs-dots{display:flex;justify-content:center;gap:6px;margin:10px 0 14px;}
.m-cs-dots button{width:7px;height:7px;border-radius:50%;background:#b8bec8;padding:0;}
.m-cs-dots button.active{background:#1677d2;}
.m-cs-quick{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:4px;}
.m-cs-quick a{display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:12px;min-height:86px;padding:15px 14px;border:1px solid #e8edf4;border-radius:14px;font-size:13px;font-weight:900;color:#172033;letter-spacing:-.04em;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);box-shadow:0 8px 20px rgba(15,23,42,.04);}
.m-cs-quick a:first-child{grid-column:1/-1;min-height:62px;flex-direction:row;align-items:center;justify-content:flex-start;}
.m-cs-quick a:active{transform:scale(.98);background:#f1f5f9;}
.m-quick-icon{width:32px;height:32px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;background:#eef3fa;color:#7b8794;font-weight:900;font-size:16px;line-height:1;box-shadow:inset 0 1px 0 rgba(255,255,255,.8);}
.m-quick-icon.building{background:#e9eef6;color:#8b96a3;font-size:16px;}
.m-quick-icon.pencil{background:linear-gradient(135deg,#ffd54f 0%,#ffb300 50%,#2aa7ff 51%,#2aa7ff 100%);color:transparent;transform:rotate(-45deg);}
.m-quick-icon.check{background:#20c997;color:#fff;font-size:17px;}
.m-quick-icon.siren{background:linear-gradient(#ef4444 0 58%,#cbd5e1 59% 100%);color:transparent;border-radius:12px;}

/* Footer */
.m-footer{background:#0f172a;color:#64748b;padding:30px 20px 36px;}
.m-footer-brand{display:flex;align-items:center;gap:8px;margin-bottom:14px;}
.m-footer-brand .brand-name{color:#fff;font-size:16px;}
.m-footer-row{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:12px;color:#94a3b8;margin:0 0 6px;}
.m-footer-row a{color:#cbd5e1;}
.m-footer-row span{color:#475569;}
.m-copy{font-size:11px;color:#475569;line-height:1.7;margin:14px 0 0;padding-top:14px;border-top:1px solid rgba(255,255,255,.08);}

.m-app{margin-top:22px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);padding:20px;text-align:center;}
.m-app p{margin:0 0 14px;font-size:13px;color:#cbd5e1;line-height:1.6;}
.m-app strong{color:#fff;font-weight:700;}
.m-app-btns{display:flex;gap:8px;}
.m-app-btns a{flex:1;padding:11px;border-radius:99px;font-size:12px;font-weight:600;border:1px solid rgba(255,255,255,.18);color:#fff;}
.m-app-btns a.primary{background:#fff;color:var(--text-1);border-color:#fff;}

/* Drawer (slide menu) */
.m-overlay{position:fixed;inset:0;background:rgba(15,23,42,.55);backdrop-filter:blur(2px);opacity:0;pointer-events:none;transition:.25s;z-index:90;}
.m-overlay.open{opacity:1;pointer-events:auto;}
.m-drawer{
  position:fixed;top:0;right:-100%;width:88%;max-width:380px;height:100%;
  background:#fff;z-index:91;transition:right .35s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;display:flex;flex-direction:column;
}
.m-drawer.open{right:0;}
.m-drawer-head{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid var(--line);}
.m-drawer-close{width:36px;height:28px;border-radius:10px;font-size:24px;color:var(--text-2);}
.m-drawer-close:active{background:var(--bg);}
.m-drawer-login{
  margin:14px 20px;padding:16px 20px;
  background:linear-gradient(135deg,var(--primary) 0%,#5b73e8 100%);
  color:#fff;border-radius:var(--radius);font-weight:600;font-size:14px;
  display:flex;justify-content:space-between;align-items:center;
  box-shadow:0 8px 20px -8px rgba(31,61,168,.5);
}
.m-drawer-nav{padding:0 8px 30px;}
.m-drawer-nav section{padding:14px 12px;}
.m-drawer-nav h3{font-size:11px;color:var(--text-3);font-weight:700;letter-spacing:.15em;margin-bottom:6px;padding-left:10px;}
.m-drawer-nav a{display:flex;justify-content:space-between;align-items:center;padding:13px 12px;border-radius:10px;font-size:15px;color:var(--text-1);font-weight:500;}
.m-drawer-nav a:active{background:var(--bg);}
.m-drawer-nav a .state{font-size:10px;}


/* ========== 채용정보 페이지 (recruit.html) ========== */
.m-header.sub{background:#fff;border-bottom:1px solid var(--line);}
.m-header.sub .m-header-title{color:var(--text-1);padding-right:40px;}
.m-header.sub .m-icon-btn{color:var(--text-1);}
.m-header.sub .m-hamburger span{background:var(--text-1);}

/* 탭 */
.rc-tabs{display:grid;grid-template-columns:1fr 1fr;background:#fff;border-bottom:1px solid var(--line);}
.rc-tabs button{
  padding:14px 0;font-size:15px;font-weight:700;color:var(--text-3);
  border-bottom:2px solid transparent;letter-spacing:-.02em;transition:.2s;
}
.rc-tabs button.active{color:var(--primary);border-bottom-color:var(--primary);}

/* 검색 영역 */
.rc-search{background:#fff;padding:18px 16px 16px;border-bottom:8px solid var(--bg);}
.rc-count{font-size:14px;color:var(--text-2);margin:0 0 12px;}
.rc-count strong{color:var(--text-1);font-weight:800;}
.rc-search-form{
  position:relative;display:flex;align-items:center;
  background:var(--bg);border-radius:12px;padding:0 12px;
  border:1px solid var(--line);
}
.rc-search-form input{
  flex:1;background:transparent;border:0;outline:0;
  padding:12px 4px;font-size:14px;color:var(--text-1);
  font-family:inherit;
}
.rc-search-form button{
  width:36px;height:28px;display:inline-flex;align-items:center;justify-content:center;
  color:var(--text-2);
}
.rc-search-form svg{width:18px;height:18px;}
.rc-mybtn{
  display:block;text-align:center;margin-top:14px;padding:14px;
  background:var(--text-1);color:#fff;border-radius:12px;font-size:14px;font-weight:700;
}

/* 카드 리스트 */
.rc-list{padding:14px 16px;display:flex;flex-direction:column;gap:10px;}
.rc-list-hint{margin:0;padding:0 16px 12px;font-size:12px;color:var(--text-3);background:#fff;}
.rc-card{
  display:block;width:100%;padding:18px 20px;border-radius:14px;color:#fff;
  transition:.2s;text-align:left;font-family:inherit;cursor:pointer;
}
.rc-card:active{transform:scale(.98);}
.rc-card.blue{background:linear-gradient(155deg,#1f3da8 0%,#2563eb 100%);}
.rc-card.orange{background:linear-gradient(155deg,#f97316 0%,#fb923c 100%);}
.rc-open{display:block;margin-top:10px;font-size:12px;font-weight:800;color:rgba(255,255,255,.95);}

.rc-card-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px;}
.rc-company{font-size:18px;font-weight:900;color:#fff;margin:0;letter-spacing:-.02em;}
.rc-type{
  font-size:11px;font-weight:600;color:#fff;
  background:rgba(255,255,255,.2);padding:3px 8px;border-radius:99px;
  border:1px solid rgba(255,255,255,.3);
}
.rc-title{font-size:14px;color:rgba(255,255,255,.95);margin:0 0 12px;line-height:1.4;}
.rc-req{padding:12px 0;border-top:1px solid rgba(255,255,255,.25);border-bottom:1px solid rgba(255,255,255,.25);margin-bottom:12px;}
.rc-req p{font-size:13px;color:#fff;font-weight:600;margin:2px 0;}
.rc-period{font-size:12px;color:rgba(255,255,255,.85);margin:0;}

.rc-detail{margin:10px 0 4px;background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 10px 28px -18px rgba(15,23,42,.35);}
.rc-detail-head{position:relative;padding:22px 18px 16px;background:linear-gradient(135deg,#f8fafc 0%,#eef4ff 100%);border-bottom:1px solid var(--line);}
.rc-detail-close{position:absolute;right:12px;top:10px;width:32px;height:32px;border-radius:50%;background:#fff;color:var(--text-2);font-size:24px;line-height:1;border:1px solid var(--line);}
.rc-detail-kicker{margin:0 34px 6px 0;font-size:13px;font-weight:800;color:var(--primary);}
.rc-detail h2{margin:0 34px 10px 0;font-size:20px;line-height:1.35;letter-spacing:-.04em;color:var(--text-1);}
.rc-detail-period{margin:0;font-size:13px;color:var(--text-2);font-weight:700;}
.rc-detail-meta{margin:0;padding:16px 18px;border-bottom:1px solid var(--line);}
.rc-detail-meta div{display:grid;grid-template-columns:78px 1fr;gap:10px;padding:8px 0;}
.rc-detail-meta dt{font-size:13px;color:var(--text-3);font-weight:800;}
.rc-detail-meta dd{margin:0;font-size:14px;color:var(--text-1);line-height:1.5;font-weight:600;}
.rc-detail-meta ul{margin:0;padding:0;list-style:none;}
.rc-detail-body{padding:18px;white-space:normal;}
.rc-detail-body p{margin:0 0 10px;font-size:14px;line-height:1.7;color:var(--text-1);}
.rc-detail-source{margin:0 18px 14px;padding:14px;border-radius:12px;background:var(--bg);font-size:13px;line-height:1.6;color:var(--text-2);}
.rc-detail-empty{padding:18px;margin:0;color:var(--text-3);font-size:14px;}
.rc-detail-actfl{margin:0;padding:0 18px 18px;font-size:11px;line-height:1.6;color:var(--text-3);}

.rc-note{
  font-size:11px;color:var(--text-3);line-height:1.6;
  margin:0;padding:6px 16px 18px;background:#fff;
}
.rc-more{
  display:block;width:calc(100% - 32px);margin:0 16px 24px;
  padding:14px;background:#fff;border:1px solid var(--line);
  border-radius:12px;font-size:14px;font-weight:700;color:var(--text-1);
}
.rc-more:active{background:var(--bg);}

/* ========== 내부 안내 콘텐츠 페이지 ========== */
.content-page{background:var(--bg);min-height:calc(100vh - 56px);padding-bottom:28px;}
.content-hero{background:#fff;padding:24px 18px 20px;border-bottom:8px solid var(--bg);}
.content-eyebrow{font-size:12px;font-weight:800;color:var(--primary);letter-spacing:.08em;margin:0 0 8px;}
.content-hero h2{font-size:26px;font-weight:900;color:var(--text-1);margin:0 0 10px;letter-spacing:-.04em;}
.content-hero p:last-child{font-size:14px;color:var(--text-2);line-height:1.6;margin:0;}
.content-body{padding:14px 16px;display:flex;flex-direction:column;gap:12px;}
.content-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.content-card h3{font-size:17px;font-weight:900;color:var(--text-1);margin:0 0 10px;}
.content-card p{font-size:14px;color:var(--text-2);line-height:1.7;margin:0;}
.content-card ul{display:flex;flex-direction:column;gap:8px;margin:0;padding:0;list-style:none;}
.content-card li{position:relative;padding-left:13px;font-size:14px;color:var(--text-2);line-height:1.6;}
.content-card li::before{content:"";position:absolute;left:0;top:.7em;width:5px;height:5px;border-radius:50%;background:var(--primary);}
.receipt-wrap{background:#fff;border:1px solid var(--line);border-radius:16px;padding:16px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.receipt-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;gap:10px;}
.receipt-top h3{font-size:18px;font-weight:900;margin:0;color:var(--text-1);}
.receipt-top a{font-size:12px;font-weight:800;color:var(--primary);white-space:nowrap;}
.receipt-table-scroll{overflow-x:auto;margin:0 -16px;padding:0 16px;}
.receipt-table{min-width:720px;width:100%;border-collapse:collapse;border-top:2px solid var(--text-1);}
.receipt-table th{background:#f8fafc;color:var(--text-1);font-size:12px;font-weight:800;padding:12px 8px;border-bottom:1px solid var(--line);}
.receipt-table td{font-size:13px;color:var(--text-2);text-align:center;padding:14px 8px;border-bottom:1px solid var(--line);}
.receipt-date{font-weight:800;color:var(--text-1)!important;}
.receipt-kind{display:inline-flex;border:1px solid #c7d2fe;color:var(--primary);background:#eef2ff;border-radius:999px;padding:4px 9px;font-weight:800;font-size:12px;}
.receipt-btn{min-width:78px;padding:9px 10px;border-radius:8px;font-size:12px;font-weight:800;}
.receipt-btn.active{background:var(--primary);color:#fff;}
.receipt-btn.disabled{background:#e5e7eb;color:#64748b;}
.package-grid{display:grid;grid-template-columns:1fr;gap:10px;}
.package-card{text-align:left;background:#f8fafc;border:1px solid var(--line);border-radius:14px;padding:16px;}
.package-name{display:block;font-size:12px;color:var(--primary);font-weight:900;margin-bottom:6px;}
.package-card strong{display:block;font-size:16px;color:var(--text-1);line-height:1.35;}
.package-sale{display:inline-flex;margin-top:12px;background:var(--accent);color:#fff;border-radius:999px;padding:3px 8px;font-size:11px;font-weight:900;}
.package-price{display:flex;align-items:baseline;gap:8px;margin-top:8px;}
.package-price del{font-size:13px;color:var(--text-3);}
.package-price b{font-size:19px;color:var(--text-1);}
.apply-flow .receipt-top{align-items:flex-start}
.apply-flow .receipt-top h3{font-size:20px;margin-top:6px}
.apply-category-grid,.apply-field-grid,.stage-grid{display:grid;grid-template-columns:1fr;gap:10px}
.apply-category-card,.apply-field-card,.stage-card{position:relative;text-align:left;background:#f8fafc;border:1px solid var(--line);border-radius:14px;padding:16px;min-height:86px}
.apply-category-card strong,.apply-field-card strong,.stage-card strong{display:block;color:var(--text-1);font-size:16px;font-weight:950;line-height:1.35}
.apply-category-card span{display:block;margin-top:6px;color:var(--text-2);font-size:13px;line-height:1.5}
.apply-category-card.active,.apply-field-card.active,.stage-card.active{background:#eef5ff;border-color:#1f3da8;box-shadow:0 12px 24px -20px rgba(31,61,168,.8)}
.apply-category-card.active::after,.apply-field-card.active::after,.stage-card.active::after{content:"선택";position:absolute;right:12px;top:10px;border-radius:999px;background:#1f3da8;color:#fff;font-size:10px;font-weight:900;padding:4px 7px}
.apply-field-card span{display:inline-flex;align-items:center;justify-content:center;width:32px;height:24px;border-radius:999px;background:#eaf1ff;color:#1f3da8;font-size:11px;font-weight:950;margin-bottom:9px}
.stage-card{min-height:112px}
.stage-num{display:inline-flex;margin-bottom:9px;border-radius:999px;background:#eaf1ff;color:#1f3da8;font-size:11px;font-weight:950;padding:5px 9px}
.stage-card em{display:block;margin-top:8px;color:#ef4444;font-size:17px;font-weight:950;font-style:normal}
.stage-card small{display:block;margin-top:7px;color:var(--text-3);font-size:12px;line-height:1.45}
.apply-summary-card{background:linear-gradient(135deg,#fff 0%,#f8faff 100%)}
.apply-summary dl{display:grid;grid-template-columns:1fr;gap:8px;margin:0 0 14px}
.apply-summary div{background:#fff;border:1px solid var(--line);border-radius:12px;padding:12px}
.apply-summary dt{font-size:11px;font-weight:900;color:var(--primary);margin-bottom:5px}
.apply-summary dd{margin:0;color:var(--text-1);font-size:14px;font-weight:900;line-height:1.35}
.apply-submit-btn{width:100%;padding:14px;border-radius:11px;font-size:15px}
.exam-apply-dialog[hidden]{display:none!important}
.exam-apply-dialog{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;padding:16px}
.exam-apply-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.58)}
.exam-apply-panel{position:relative;z-index:1;width:100%;max-height:94vh;display:flex;flex-direction:column;overflow:hidden;background:#f5f7fb;border-radius:22px 22px 0 0;box-shadow:0 -18px 44px -28px rgba(15,23,42,.9)}
.exam-apply-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:19px 18px;background:linear-gradient(135deg,#0f172a 0%,#1f3da8 62%,#2563eb 100%);color:#fff}
.exam-apply-head span{display:block;font-size:10px;font-weight:950;letter-spacing:.14em;color:#bfdbfe;margin-bottom:6px}.exam-apply-head h2{margin:0;font-size:23px;font-weight:950;letter-spacing:-.03em}.exam-apply-head p{margin:6px 0 0;color:#dbeafe;font-size:12px;line-height:1.45}
.exam-apply-close{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.14);color:#fff;font-size:24px;line-height:1}
.exam-apply-body{flex:1;min-height:0;overflow:auto;padding:14px;display:grid;gap:12px}
.exam-apply-block{background:#fff;border:1px solid var(--line);border-radius:16px;padding:15px;box-shadow:0 10px 24px -20px rgba(15,23,42,.65)}
.exam-apply-block-title{display:flex;flex-direction:column;gap:4px;margin-bottom:12px}.exam-apply-block-title b{font-size:17px;font-weight:950;color:var(--text-1)}.exam-apply-block-title span{font-size:12px;color:var(--text-3)}
.exam-apply-footer{padding:10px 12px calc(12px + env(safe-area-inset-bottom));background:#eef3fb;border-top:1px solid #dbe3f0}.exam-apply-footer .apply-summary dl{display:flex;gap:7px;overflow-x:auto;margin-bottom:9px;padding-bottom:1px}.exam-apply-footer .apply-summary div{flex:0 0 auto;min-width:86px;padding:7px 9px;border-radius:10px}.exam-apply-footer .apply-summary dt{font-size:10px;margin-bottom:3px}.exam-apply-footer .apply-summary dd{font-size:12px;white-space:nowrap}.exam-apply-actions{display:grid;grid-template-columns:86px 1fr;gap:8px}.exam-apply-actions .btn-ghost{border:1px solid var(--line);background:#fff;border-radius:11px;font-weight:900;color:var(--text-2)}.exam-apply-actions .apply-submit-btn{width:100%;padding:12px 10px;font-size:14px}
.exam-apply-body .apply-card-icon{position:static;width:38px;height:38px;border-radius:12px;display:grid;place-items:center;margin:0 0 10px;line-height:1;box-shadow:inset 0 1px 0 rgba(255,255,255,.75)}
.exam-apply-body .apply-card-icon svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:2.05;stroke-linecap:round;stroke-linejoin:round}
.exam-apply-body .apply-category-card strong,.exam-apply-body .apply-field-card strong{padding-left:0}
.exam-apply-body .apply-category-card span{padding-left:0}
#examApplyDialog.exam-apply-dialog{align-items:center;justify-content:center;padding:16px}
#examApplyDialog .exam-apply-backdrop{background:rgba(15,23,42,.56);backdrop-filter:blur(7px)}
#examApplyDialog .exam-apply-panel{width:min(100%,1180px);height:min(92vh,980px);max-height:980px;border-radius:24px;background:#fff;overflow:hidden;padding-top:env(safe-area-inset-top);transform:none;box-shadow:0 20px 48px rgba(8,17,47,.28)}
#examApplyDialog .exam-apply-head{position:relative;height:152px;flex:0 0 152px;padding:28px 58px 0 22px;background:linear-gradient(135deg,#08112f 0%,#132c72 42%,#1f55d6 100%);color:#fff;overflow:hidden;box-shadow:inset 0 -1px 0 rgba(255,255,255,.12),0 10px 28px rgba(8,17,47,.18)}
#examApplyDialog .exam-apply-head::before{content:"";position:absolute;inset:auto -110px -92px auto;width:320px;height:160px;border-radius:50%;background:radial-gradient(circle at 30% 30%,rgba(255,255,255,.24),rgba(255,255,255,0) 62%);transform:rotate(-8deg)}
#examApplyDialog .exam-apply-head::after{content:"";position:absolute;right:-35px;top:-28px;width:140px;height:140px;border-radius:50%;background:radial-gradient(circle,rgba(125,180,255,.28),rgba(125,180,255,0) 68%)}
#examApplyDialog .exam-apply-head-copy{position:relative;z-index:2;padding-right:36px}
#examApplyDialog .exam-apply-eyebrow{display:block;margin:0 0 10px;font-size:10px;font-weight:950;letter-spacing:.3em;color:#cddcff}
#examApplyDialog .exam-apply-head-copy h2{margin:0;font-size:28px;font-weight:950;letter-spacing:-.06em;line-height:1.05;text-shadow:0 2px 10px rgba(0,0,0,.12)}
#examApplyDialog .exam-apply-date{display:inline-flex;align-items:center;margin-top:14px;height:30px;border-radius:999px;padding:0 12px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.16);font-size:11px;font-weight:850;color:#fff;backdrop-filter:blur(10px)}
#examApplyDialog .exam-apply-close{position:absolute;z-index:5;right:12px;top:12px;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.16);color:#fff;font-size:22px;line-height:1;box-shadow:0 8px 18px rgba(0,0,0,.12)}
#examApplyDialog .exam-apply-illus{display:none}
#examApplyDialog .exam-apply-content{flex:1;min-height:0;overflow:auto;padding:18px 14px 14px;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);border-radius:18px 18px 0 0;margin-top:-8px;position:relative;z-index:2;box-shadow:0 -10px 28px rgba(15,23,42,.08)}
#examApplyDialog .exam-apply-content{scrollbar-width:none;-ms-overflow-style:none}
#examApplyDialog .exam-apply-content::-webkit-scrollbar{display:none;width:0;height:0}
#examApplyDialog .exam-apply-content::before{content:"";position:absolute;left:0;right:0;top:0;height:12px;border-radius:18px 18px 0 0;background:#fff}
#examApplyDialog .exam-apply-section{display:flex;align-items:center;gap:10px;margin:0 0 12px}
#examApplyDialog .exam-apply-check{width:32px;height:32px;flex:0 0 32px;border:3px solid #2478ff;border-radius:50%;display:grid;place-items:center;color:#2478ff;background:#fff;box-shadow:0 6px 14px rgba(36,120,255,.12)}
#examApplyDialog .exam-apply-section h3{margin:0 0 2px;font-size:18px;font-weight:950;letter-spacing:-.04em;color:#071126}
#examApplyDialog .exam-apply-section p{margin:0;font-size:12px;font-weight:650;color:#74839a}
#examApplyDialog #applyCategoryBlock,#examApplyDialog #applyFieldBlock{margin-top:0}
#examApplyDialog .apply-category-grid{display:grid;grid-template-columns:1fr;gap:10px}
#examApplyDialog .apply-category-card{position:relative;min-height:0;height:76px;border-radius:16px;background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);border:1px solid #e3e9f3;box-shadow:0 10px 22px rgba(37,48,75,.06);display:flex;flex-direction:row;align-items:center;justify-content:flex-start;gap:12px;padding:11px 44px 11px 12px;text-align:left}
#examApplyDialog .apply-category-card.active{border:2px solid #1975ff;background:linear-gradient(180deg,#f8fbff 0%,#eff6ff 100%);box-shadow:0 14px 26px rgba(25,117,255,.1)}
#examApplyDialog .apply-category-card.active::after,#examApplyDialog .apply-field-card.active::after{display:none!important}
#examApplyDialog .apply-category-card.active::after{content:"선택됨";position:absolute;right:10px;top:10px;height:22px;display:flex;align-items:center;border-radius:999px;padding:0 8px;background:#176fff;color:#fff;font-size:10px;font-weight:900;box-shadow:0 6px 14px rgba(23,111,255,.22)}
#examApplyDialog .apply-card-icon{width:40px;height:40px;flex:0 0 40px;border-radius:12px;margin:0;display:grid;place-items:center;box-shadow:inset 0 1px 0 rgba(255,255,255,.65),0 8px 16px rgba(15,23,42,.08)}
#examApplyDialog .apply-card-icon svg{width:25px;height:25px;stroke-width:2.25}
#examApplyDialog .apply-category-card strong{margin:0 0 2px;font-size:15px;font-weight:950;line-height:1.15;color:#071126}
#examApplyDialog .apply-category-card span{margin:0;font-size:11px;line-height:1.3;color:#52657f}
#examApplyDialog .apply-field-grid{display:grid;grid-template-columns:1fr;gap:8px}
#examApplyDialog .apply-field-card{position:relative;min-height:0;height:66px;border-radius:16px;background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);border:1px solid #e3e9f3;box-shadow:0 9px 18px rgba(37,48,75,.055);display:flex;flex-direction:row;align-items:center;justify-content:flex-start;gap:10px;padding:10px 44px 10px 12px;text-align:left}
#examApplyDialog .apply-field-card.active{border:2px solid #1975ff;background:linear-gradient(180deg,#f8fbff 0%,#eff6ff 100%);box-shadow:0 14px 26px rgba(25,117,255,.1)}
#examApplyDialog .apply-field-card.active::after{content:"선택됨";position:absolute;right:10px;top:10px;height:22px;display:flex;align-items:center;border-radius:999px;padding:0 8px;background:#176fff;color:#fff;font-size:10px;font-weight:900;box-shadow:0 6px 14px rgba(23,111,255,.22)}
#examApplyDialog .apply-field-card .apply-card-icon--field{width:34px;height:34px;flex:0 0 34px;border-radius:11px;margin:0}
#examApplyDialog .apply-field-card .apply-card-icon--field svg{width:21px;height:21px}
#examApplyDialog .apply-field-card strong{margin:0;font-size:14px;font-weight:950;line-height:1.2;text-align:left;color:#071126}
#examApplyDialog .apply-card-icon.blue{background:linear-gradient(135deg,#eaf3ff,#d8e9ff);color:#2563eb}
#examApplyDialog .apply-card-icon.green{background:linear-gradient(135deg,#e8fbf1,#d5f6e4);color:#0f9f62}
#examApplyDialog .apply-card-icon.purple{background:linear-gradient(135deg,#f2eaff,#e6d8ff);color:#7c3aed}
#examApplyDialog .apply-card-icon.orange{background:linear-gradient(135deg,#fff1df,#ffe2c2);color:#ea6a0a}
#examApplyDialog .apply-card-icon.cyan{background:linear-gradient(135deg,#e5fbff,#cef5fb);color:#0891b2}
#examApplyDialog .apply-card-icon svg{fill:none!important;stroke:currentColor!important;stroke-linecap:round;stroke-linejoin:round}
#examApplyDialog .exam-apply-footer{position:sticky;bottom:0;z-index:10;padding:12px 12px calc(12px + env(safe-area-inset-bottom));background:linear-gradient(180deg,rgba(239,243,249,.65) 0%,#ecf1f7 100%);backdrop-filter:blur(12px);border-top:1px solid rgba(217,228,244,.9);box-shadow:0 -10px 24px rgba(15,23,42,.08)}
#examApplyDialog .exam-apply-footer .apply-summary div{flex:0 0 auto;min-width:88px;padding:8px 10px;border-radius:12px;background:rgba(255,255,255,.9);border:1px solid #dbe6f4;box-shadow:0 6px 14px rgba(15,23,42,.05)}
#examApplyDialog .exam-apply-actions{display:grid;grid-template-columns:92px 1fr;gap:8px}
#examApplyDialog .exam-apply-actions .btn-ghost{height:46px;border:1px solid #d7e0ee;background:#fff;border-radius:12px;font-weight:900;color:#42566f;box-shadow:0 6px 14px rgba(15,23,42,.05)}
#examApplyDialog .exam-apply-actions .apply-submit-btn{width:100%;height:46px;padding:0 10px;font-size:14px;border-radius:12px;background:linear-gradient(135deg,#214fb9 0%,#17398e 100%);box-shadow:0 10px 20px rgba(23,57,142,.22)}
#examApplyDialog .apply-category-card .apply-card-icon.blue,#examApplyDialog .apply-field-card .apply-card-icon--field.blue{background:linear-gradient(135deg,#dfeaff 0%,#c9dbff 100%);color:#1848b7}
#examApplyDialog .apply-card-icon.green{background:linear-gradient(135deg,#dff7ea 0%,#c7ecd7 100%);color:#0e8a57}
#examApplyDialog .apply-card-icon.purple{background:linear-gradient(135deg,#ede4ff 0%,#dccdff 100%);color:#6f37d8}
#examApplyDialog .apply-card-icon.orange{background:linear-gradient(135deg,#fff0dd 0%,#ffe0bb 100%);color:#d8740d}
#examApplyDialog .apply-card-icon.cyan{background:linear-gradient(135deg,#ddf7fb 0%,#c7eef6 100%);color:#0b88a6}
#examApplyDialog.is-confirm .exam-apply-content{display:flex;flex-direction:column;padding:22px 16px 16px;background:linear-gradient(180deg,#fff 0%,#f5f8fc 100%)}
#examApplyDialog.is-confirm .exam-apply-section{align-items:flex-start;margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid #e6edf7}
#examApplyDialog.is-confirm .exam-apply-section h3{font-size:22px;margin-top:1px}
#examApplyDialog.is-confirm .exam-apply-section p{font-size:13px;line-height:1.45;color:#64748b}
#examApplyDialog.is-confirm .exam-apply-footer{position:static;margin-top:0;padding:0;background:transparent;border-top:0;box-shadow:none;backdrop-filter:none}
#examApplyDialog.is-confirm .apply-summary dl{display:grid;grid-template-columns:1fr;gap:10px;margin:0 0 18px}
#examApplyDialog.is-confirm .apply-summary div{display:grid;grid-template-columns:72px 1fr;align-items:center;min-width:0;padding:15px 16px;border-radius:16px;background:#fff;border:1px solid #dfe8f5;box-shadow:0 12px 24px rgba(15,23,42,.06)}
#examApplyDialog.is-confirm .apply-summary dt{margin:0;font-size:12px;font-weight:950;color:#1f5eea}
#examApplyDialog.is-confirm .apply-summary dd{margin:0;font-size:15px;font-weight:950;color:#071126;line-height:1.25}
#examApplyDialog.is-confirm .exam-apply-actions{display:grid;grid-template-columns:92px 1fr;gap:10px}
#examApplyDialog.is-confirm .exam-apply-actions .btn-ghost,#examApplyDialog.is-confirm .exam-apply-actions .apply-submit-btn{height:48px;border-radius:14px}
@media (max-width:380px){
  #examApplyDialog .apply-category-grid,#examApplyDialog .apply-field-grid{grid-template-columns:1fr}
  #examApplyDialog .apply-category-card{height:118px}
  #examApplyDialog .apply-field-card{height:82px!important;flex-direction:row!important;justify-content:flex-start!important;text-align:left!important;padding:12px 42px 12px 12px!important}
  #examApplyDialog .apply-field-card .apply-card-icon--field{margin:0 10px 0 0!important}
  #examApplyDialog .apply-field-card strong{text-align:left!important}
}

@media (min-width:768px){
  #examApplyDialog .exam-apply-panel{width:min(100%,1180px);height:min(92vh,980px);max-height:980px;border-radius:24px;box-shadow:0 20px 48px rgba(8,17,47,.28)}
  #examApplyDialog .exam-apply-head{height:240px;flex:0 0 240px;padding:44px 96px 0 32px}
  #examApplyDialog .exam-apply-head::before{right:-28px;bottom:-38px;width:520px;height:260px}
  #examApplyDialog .exam-apply-head::after{right:20px;top:-10px;width:180px;height:180px}
  #examApplyDialog .exam-apply-head-copy{padding-top:18px}
  #examApplyDialog .exam-apply-head-copy h2{font-size:34px;line-height:1.08;margin-top:6px}
  #examApplyDialog .exam-apply-eyebrow{font-size:12px;letter-spacing:.34em;margin-bottom:14px}
  #examApplyDialog .exam-apply-date{height:34px;padding:0 14px;font-size:12px;margin-top:14px}
  #examApplyDialog .exam-apply-close{width:44px;height:44px;font-size:28px;right:20px;top:20px}
  #examApplyDialog .exam-apply-content{padding:26px 24px 22px;background:linear-gradient(180deg,#fbfcfe 0%,#eef2f8 100%);margin-top:-12px;border-radius:24px 24px 0 0}
  #examApplyDialog .exam-apply-content::before{height:18px;border-radius:24px 24px 0 0}
  #examApplyDialog .exam-apply-section{margin:0 0 20px}
  #examApplyDialog .exam-apply-section h3{font-size:22px}
  #examApplyDialog .exam-apply-section p{font-size:13px}
  #examApplyDialog .apply-category-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}
  #examApplyDialog .apply-field-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  #examApplyDialog .apply-category-card{height:132px;padding:16px 14px 14px;flex-direction:column;justify-content:flex-start;align-items:center;text-align:center;border-radius:18px;box-shadow:0 10px 22px rgba(37,48,75,.07)}
  #examApplyDialog .apply-category-card .apply-card-icon{width:52px;height:52px;border-radius:16px;margin:0 0 12px;box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 10px 20px rgba(15,23,42,.08)}
  #examApplyDialog .apply-category-card .apply-card-icon svg{width:30px;height:30px}
  #examApplyDialog .apply-category-card strong{font-size:16px;margin:0 0 4px;text-align:center}
  #examApplyDialog .apply-category-card span{font-size:12px;text-align:center}
  #examApplyDialog .apply-field-card{height:86px;padding:12px 14px 12px 14px;border-radius:18px;gap:12px;box-shadow:0 9px 20px rgba(37,48,75,.06)}
  #examApplyDialog .apply-field-card .apply-card-icon--field{width:40px;height:40px;border-radius:12px}
  #examApplyDialog .apply-field-card .apply-card-icon--field svg{width:24px;height:24px}
  #examApplyDialog .apply-field-card strong{font-size:15px}
  #examApplyDialog .exam-apply-footer{padding:14px 16px calc(16px + env(safe-area-inset-bottom));background:linear-gradient(180deg,rgba(239,243,249,.78) 0%,#e7edf4 100%)}
  #examApplyDialog .exam-apply-footer .apply-summary dl{gap:10px;margin-bottom:12px}
  #examApplyDialog .exam-apply-footer .apply-summary div{min-width:116px;padding:10px 12px;border-radius:14px}
  #examApplyDialog .exam-apply-footer .apply-summary dt{font-size:11px}
  #examApplyDialog .exam-apply-footer .apply-summary dd{font-size:13px}
  #examApplyDialog .exam-apply-actions{grid-template-columns:110px 1fr;gap:10px}
  #examApplyDialog .exam-apply-actions .btn-ghost,#examApplyDialog .exam-apply-actions .apply-submit-btn{height:50px;border-radius:14px;font-size:15px}
}
.content-card.wide{grid-column:1/-1;}
.content-note{font-size:12px;color:var(--text-3);margin:0 4px;}
.login-choice{display:flex;flex-direction:column;gap:8px;margin-top:14px;}
.login-choice button,.form-grid button,.content-search button{background:var(--primary);color:#fff;border-radius:8px;padding:11px 14px;font-weight:800;}
.form-grid{display:grid;grid-template-columns:1fr;gap:12px;margin-top:14px;}
.form-grid label{font-size:13px;font-weight:800;color:var(--text-1);display:flex;flex-direction:column;gap:7px;}
.form-grid input,.form-grid textarea,.form-grid select,.content-search input{border:1px solid var(--line);border-radius:10px;padding:12px 13px;font-family:inherit;font-size:14px;outline:0;background:#fff;}
.form-grid textarea{min-height:110px;resize:vertical;}
.form-help{font-size:12px;color:var(--text-3);font-weight:400;}
.plaza-detail{display:grid;gap:12px;}
.plaza-card{display:none;grid-template-columns:1fr;gap:14px;background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.plaza-card.active{display:grid;}
.plaza-card h3{font-size:20px;font-weight:900;color:var(--text-1);margin:0 0 14px;padding-bottom:10px;border-bottom:2px solid var(--text-1);}
.plaza-card dl{display:grid;grid-template-columns:70px 1fr;gap:8px 12px;margin:0;}
.plaza-card dt{font-size:13px;font-weight:900;color:var(--primary);}
.plaza-card dd{font-size:13px;color:var(--text-2);line-height:1.6;margin:0;}
.plaza-label{display:inline-flex;margin:0 0 14px;padding:6px 11px;border-radius:999px;background:var(--primary-soft);color:var(--primary);font-size:11px;font-weight:900;letter-spacing:.06em;}
.plaza-map{min-height:240px;border-radius:14px;border:1px solid #cbd5e1;background:#f8fafc;overflow:hidden;}
.plaza-map iframe{display:block;width:100%;height:100%;min-height:240px;border:0;}
.content-search{display:flex;gap:8px;}
.content-search input{flex:1;min-width:0;}
.stat-grid,.sample-grid,.book-grid{display:grid;grid-template-columns:1fr;gap:10px;}
.stat-grid article,.sample-grid article,.book-grid article{background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.stat-grid b,.book-grid b,.sample-grid span{font-size:12px;font-weight:900;color:var(--primary);}
.stat-grid strong{display:block;font-size:34px;font-weight:900;color:var(--text-1);margin-top:6px;}
.stat-grid span{font-size:12px;color:var(--text-3);}
.sample-grid h3,.book-grid h3{font-size:17px;margin:7px 0;color:var(--text-1);}
.sample-grid p,.book-grid p{font-size:13px;color:var(--text-2);margin:0;line-height:1.7;}
.content-tabs{display:flex;gap:7px;overflow-x:auto;background:#fff;border:1px solid var(--line);border-radius:14px;padding:7px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.content-tabs button{flex:0 0 auto;padding:9px 13px;border-radius:9px;font-size:13px;font-weight:800;color:var(--text-2);}
.content-tabs button.active{background:var(--primary);color:#fff;}
.company-panels{display:block;}
.company-panel{display:none;}
.company-panel.active{display:block;}
.lead-card{background:linear-gradient(135deg,#fff 0%,#f8faff 100%);}
.lead-card h3{font-size:20px!important;}
.rich-panels .rich-panel{display:none;}
.rich-panels .rich-panel.active{display:block;}
.corp-sector-wrap{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  padding:18px;
  background:linear-gradient(135deg,#0f172a 0%,#1f3da8 58%,#2563eb 100%);
  box-shadow:0 18px 34px -26px rgba(15,23,42,.85);
}
.corp-sector-wrap::before{
  content:"";
  position:absolute;
  right:-70px;
  top:-80px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
}
.corp-sector-head{
  position:relative;
  z-index:1;
  color:#fff;
  margin-bottom:14px;
}
.corp-sector-head span{
  display:block;
  font-size:10px;
  font-weight:900;
  color:#bfdbfe;
  letter-spacing:.12em;
  margin-bottom:5px;
}
.corp-sector-head h3{
  font-size:21px;
  font-weight:950;
  color:#fff;
  margin:0 0 8px;
  letter-spacing:-.03em;
}
.corp-sector-head p{
  font-size:13px;
  color:#dbeafe;
  line-height:1.65;
  margin:0;
}
.corp-sector-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.corp-sector-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(255,255,255,.42);
  border-radius:15px;
  padding:16px;
  box-shadow:0 12px 24px -20px rgba(15,23,42,.8);
}
.corp-sector-num{
  position:absolute;
  right:14px;
  top:12px;
  font-size:24px;
  font-weight:950;
  color:#e2e8f0;
  letter-spacing:-.04em;
}
.corp-sector-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:29px;
  padding:0 10px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--primary);
  font-size:12px;
  font-weight:950;
  margin-bottom:11px;
}
.corp-sector-card h4{
  position:relative;
  margin:0 42px 11px 0;
  font-size:17px;
  font-weight:950;
  color:var(--text-1);
  line-height:1.35;
  letter-spacing:-.02em;
}
.corp-sector-card ul{
  display:grid;
  gap:7px;
  margin:0;
  padding:0;
  list-style:none;
}
.corp-sector-card li{
  position:relative;
  padding-left:14px;
  font-size:13px;
  color:var(--text-2);
  line-height:1.55;
}
.corp-sector-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.66em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#2563eb;
  box-shadow:0 0 0 3px #dbeafe;
}
.step-grid,.info-grid{display:grid;grid-template-columns:1fr;gap:10px;}
.step-grid article,.info-grid article{background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.step-grid span,.info-grid b{font-size:11px;font-weight:900;color:var(--primary);letter-spacing:.08em;}
.step-grid h3,.info-grid h3{font-size:17px;color:var(--text-1);margin:8px 0 6px;}
.step-grid p,.info-grid p{font-size:13px;color:var(--text-2);line-height:1.7;margin:0;}
.notice-card{border-color:#fed7aa;background:#fff7ed;}
.notice-card h3{color:#c2410c;}
.notice-card li::before{background:#f97316;}
.source-page{background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.source-page h3{font-size:19px;font-weight:900;color:var(--text-1);margin:0 0 13px;padding-bottom:10px;border-bottom:2px solid var(--text-1);}
.source-page p{font-size:14px;color:var(--text-2);line-height:1.8;margin:0 0 10px;}
.source-page ul{display:flex;flex-direction:column;gap:8px;margin:0;padding:0;list-style:none;}
.source-page li{position:relative;padding-left:13px;font-size:13px;color:var(--text-2);line-height:1.7;}
.source-page li::before{content:"";position:absolute;left:0;top:.72em;width:5px;height:5px;border-radius:50%;background:var(--primary);}
.history-tabs{display:flex;gap:7px;overflow-x:auto;background:#fff;border:1px solid var(--line);border-radius:14px;padding:7px;box-shadow:0 8px 20px -16px rgba(15,23,42,.35);}
.history-tabs button{flex:0 0 auto;padding:9px 13px;border-radius:9px;font-size:13px;font-weight:800;color:var(--text-2);}
.history-tabs button.active{background:var(--primary);color:#fff;}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}


/* ===== 모바일 공지사항 페이지 ===== */
.m-page-hero{padding:22px 16px 16px;background:linear-gradient(135deg,#eef5ff 0%,#dbeafe 100%);margin-bottom:12px}
.m-page-eyebrow{margin:0;color:#1f3da8;font-weight:900;font-size:11px;letter-spacing:.16em}
.m-page-title{margin:4px 0 0;font-size:24px;letter-spacing:-.03em}
.m-notice-page{padding:0 16px 80px}

.m-notice-toolbar{display:flex;flex-direction:column;gap:10px;margin-bottom:14px}
.m-notice-tabs{display:flex;gap:6px;overflow-x:auto;padding-bottom:4px;-webkit-overflow-scrolling:touch}
.m-notice-tabs::-webkit-scrollbar{display:none}
.m-notice-tabs button{flex:0 0 auto;background:#fff;border:1px solid #e2e8f0;color:#475569;border-radius:999px;padding:7px 14px;font-weight:800;font-size:13px;white-space:nowrap}
.m-notice-tabs button.active{background:#1f3da8;border-color:#1f3da8;color:#fff}
.m-notice-search{width:100%;border:1px solid #e2e8f0;border-radius:12px;padding:10px 12px;font-size:14px;outline:0;background:#fff}
.m-notice-search:focus{border-color:#1f3da8}

.m-notice-list{list-style:none;margin:0;padding:0;border-top:2px solid #0f172a}
.m-notice-list li{border-bottom:1px solid #f1f5f9}
.m-notice-list li.empty{padding:32px 16px;text-align:center;color:#94a3b8;font-weight:700}
.m-notice-list a{display:grid;grid-template-columns:auto 1fr;column-gap:10px;row-gap:6px;padding:14px 4px;color:#0f172a}
.m-notice-list a .cat{grid-column:1;align-self:start;display:inline-flex;align-items:center;justify-content:center;min-width:48px;padding:4px 8px;border-radius:999px;font-size:11px;font-weight:900}
.m-notice-list a b{grid-column:2;font-weight:700;font-size:15px;line-height:1.4}
.m-notice-list a em{grid-column:1/-1;color:#64748b;font-style:normal;font-size:12px;font-weight:700}

.m-notice-list .cat.cat-notice{background:#eef2ff;color:#1f3da8}
.m-notice-list .cat.cat-info{background:#e0f2fe;color:#0369a1}
.m-notice-list .cat.cat-event{background:#fef3c7;color:#b45309}
.m-notice-list .cat.cat-press{background:#ede9fe;color:#6d28d9}
.m-notice-list .cat.cat-fest{background:#fce7f3;color:#be185d}
.m-notice-list .cat.cat-news{background:#eaf8ef;color:#16a34a}
.m-notice-list .cat.cat-recruit{background:#fff1f2;color:#e11d48}

.m-notice-pagination{display:flex;justify-content:center;align-items:center;gap:4px;margin:18px 0 0;flex-wrap:wrap}
.m-notice-pagination button{min-width:34px;height:34px;border:1px solid #e2e8f0;background:#fff;color:#334155;border-radius:8px;font-weight:800;padding:0 10px}
.m-notice-pagination button.active{background:#1f3da8;border-color:#1f3da8;color:#fff}
.m-notice-pagination button:disabled{opacity:.4}

.m-notice-detail{background:#fff;border-top:2px solid #0f172a;border-bottom:1px solid #e5e7eb}
.m-notice-detail-head{padding:18px 16px 14px;border-bottom:1px solid #e5e7eb;background:#fafbfd}
.m-notice-detail-head .cat{display:inline-flex;align-items:center;justify-content:center;min-width:48px;padding:4px 10px;border-radius:999px;font-size:11px;font-weight:900;margin-bottom:8px}
.m-notice-detail-head .cat.cat-notice{background:#eef2ff;color:#1f3da8}
.m-notice-detail-head .cat.cat-info{background:#e0f2fe;color:#0369a1}
.m-notice-detail-head .cat.cat-event{background:#fef3c7;color:#b45309}
.m-notice-detail-head .cat.cat-press{background:#ede9fe;color:#6d28d9}
.m-notice-detail-head .cat.cat-fest{background:#fce7f3;color:#be185d}
.m-notice-detail-head h3{margin:0;font-size:18px;letter-spacing:-.02em;line-height:1.4}
.m-notice-detail-meta{margin:8px 0 0;color:#64748b;font-size:13px;font-weight:700}
.m-notice-detail-body{padding:18px 16px;line-height:1.7;color:#0f172a;font-size:14px}
.m-notice-detail-body img{max-width:100%;height:auto;display:block;margin:10px 0}
.m-notice-detail-body table{border-collapse:collapse;width:100%;margin:10px 0}
.m-notice-detail-body table th,.m-notice-detail-body table td{border:1px solid #e5e7eb;padding:8px;font-size:13px;vertical-align:top}
.m-notice-detail-body p{margin:6px 0}
.m-notice-detail-body a{color:#1f3da8;text-decoration:underline}

.m-notice-detail-actions{display:flex;justify-content:space-between;gap:8px;padding:14px 16px;background:#fafbfd;flex-wrap:wrap}
.m-pill{display:inline-flex;align-items:center;justify-content:center;gap:4px;padding:9px 14px;background:#fff;color:#0f172a;border:1px solid #e2e8f0;border-radius:999px;font-weight:800;font-size:13px;cursor:pointer;text-decoration:none;flex:1;min-width:80px}
.m-pill.ghost{background:transparent}
.m-pill:disabled{opacity:.4}

.m-site-footer{padding:18px 16px 28px;color:#94a3b8;font-size:12px;text-align:center;background:#f8fafc;border-top:1px solid #e5e7eb}


/* 공지사항 헤더(제목 + 더보기) */
.m-news-head{display:flex;align-items:center;justify-content:space-between;padding:18px 0 12px}
.m-news-head h3{margin:0;font-size:18px;font-weight:900;letter-spacing:-.02em;color:#0f172a}
.m-news-more{margin-left:auto;font-size:13px;color:#64748b;font-weight:700;text-decoration:none}
.m-news-more:hover{color:#1f3da8}


/* 이미지가 있는 모바일 hero 슬라이드는 텍스트 오버레이 숨김 + 이미지 전체 보이게 */
.m-hero.has-image-mode{background:#0f172a}
.m-hero.has-image-mode .m-hero-slides{position:relative;height:200px;}
.m-hero.has-image-mode .m-hero-slide{position:relative;inset:auto;display:none;opacity:1;pointer-events:auto;width:100%}
.m-hero.has-image-mode .m-hero-slide.active{display:block}
.m-hero-slide.has-image img{position:relative;inset:auto;width:100%;height:auto;display:block;object-fit:contain}
.m-hero-slide.has-image .m-hero-overlay{display:none}

/* 배너 로드 전 깜빡임 방지: HTML 기본 슬라이드는 일단 숨김 */
.m-hero{visibility:hidden}
.m-hero.has-image-mode,.m-hero[data-ready]{visibility:visible}

/* Mobile charge page */
.m-charge-screen{
  min-height:100vh;
  background:#f3f7fc;
  color:#0f172a;
}
.m-charge-header{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:44px 1fr 44px;
  align-items:center;
  height:56px;
  padding:0 14px;
  background:#fff;
  border-bottom:1px solid #e5edf7;
  box-shadow:0 10px 28px -26px rgba(15,23,42,.5);
  box-sizing:border-box;
}
.m-charge-header strong{
  text-align:center;
  font-size:17px;
  font-weight:950;
  letter-spacing:-.02em;
}
.m-charge-back{
  width:38px;
  height:38px;
  border-radius:14px;
  background:#eef5ff;
  position:relative;
}
.m-charge-back::before{
  content:"";
  position:absolute;
  left:15px;
  top:13px;
  width:10px;
  height:10px;
  border-left:2.5px solid #1f63ff;
  border-bottom:2.5px solid #1f63ff;
  transform:rotate(45deg);
}
.m-charge-main{
  padding:14px 16px 28px;
}
.m-charge-hero{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:26px 22px;
  color:#fff;
  background:linear-gradient(135deg,#111a55 0%,#1f3da8 55%,#2f80ff 100%);
  box-shadow:0 24px 48px -34px rgba(15,23,42,.9);
}
.m-charge-hero::after{
  content:"";
  position:absolute;
  right:-52px;
  bottom:-78px;
  width:220px;
  height:160px;
  border-radius:50%;
  background:rgba(255,255,255,.13);
}
.m-charge-hero p{
  position:relative;
  z-index:1;
  margin:0 0 8px;
  color:#c7d7ff;
  font-size:11px;
  font-weight:950;
  letter-spacing:.28em;
}
.m-charge-hero h1{
  position:relative;
  z-index:1;
  margin:0;
  font-size:32px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.04em;
}
.m-charge-hero span{
  position:relative;
  z-index:1;
  display:block;
  margin-top:12px;
  color:#dbeafe;
  font-size:14px;
  font-weight:750;
  line-height:1.5;
}
.m-charge-balance,.m-charge-card{
  background:#fff;
  border:1px solid #dfe8f4;
  border-radius:20px;
  box-shadow:0 18px 36px -30px rgba(15,23,42,.45);
}
.m-charge-balance{
  margin-top:12px;
  padding:17px 18px;
}
.m-charge-balance div{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.m-charge-balance span,.m-charge-method span,.m-charge-custom span{
  color:#2563eb;
  font-size:12px;
  font-weight:950;
}
.m-charge-balance strong{
  font-size:28px;
  line-height:1;
  font-weight:950;
  color:#0f172a;
}
.m-charge-balance p,.m-charge-balance em{
  display:block;
  margin:8px 0 0;
  color:#64748b;
  font-size:13px;
  font-style:normal;
  font-weight:750;
}
.m-charge-card{
  margin-top:12px;
  padding:20px 18px 22px;
}
.m-charge-kicker{
  display:block;
  color:#1f3da8;
  font-size:11px;
  font-weight:950;
  letter-spacing:.18em;
  margin-bottom:6px;
}
.m-charge-card h2{
  margin:0 0 16px;
  font-size:22px;
  line-height:1.2;
  font-weight:950;
  letter-spacing:-.03em;
}
.m-charge-presets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0 0 16px;
  padding:0;
  list-style:none;
}
.m-charge-presets button{
  width:100%;
  min-height:78px;
  border:1px solid #dce6f2;
  border-radius:16px;
  background:#f8fbff;
  color:#0f172a;
  padding:14px;
  text-align:left;
  font-size:18px;
  font-weight:950;
  line-height:1.25;
  font-family:inherit;
}
.m-charge-presets button em{
  display:inline-block;
  margin-left:4px;
  color:#16a34a;
  font-size:13px;
  font-style:normal;
  font-weight:950;
}
.m-charge-presets button.active{
  border-color:#1f63ff;
  background:#eef5ff;
  color:#1f3da8;
  box-shadow:0 12px 24px -22px rgba(31,99,255,.8);
}
.m-charge-custom{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}
.m-charge-custom input{
  height:52px;
  border:1px solid #dce6f2;
  border-radius:15px;
  padding:0 15px;
  font-size:16px;
  font-weight:800;
  outline:0;
  box-sizing:border-box;
  font-family:inherit;
}
.m-charge-custom input:focus{
  border-color:#1f63ff;
  box-shadow:0 0 0 4px rgba(31,99,255,.1);
}
.m-charge-bonus{
  margin:0 0 12px;
  color:#16a34a;
  font-size:13px;
  font-weight:850;
}
.m-charge-method{
  display:grid;
  gap:9px;
  margin:0 0 14px;
  padding:14px;
  border-radius:16px;
  background:#f4f8fd;
}
.m-charge-method label{
  color:#0f172a;
  font-size:15px;
  font-weight:850;
}
.m-charge-method input{
  accent-color:#1f63ff;
  margin-right:7px;
}
.m-charge-submit{
  width:100%;
  height:54px;
  border:0;
  border-radius:16px;
  background:linear-gradient(135deg,#1f63ff,#1f3da8);
  color:#fff;
  font-size:16px;
  font-weight:950;
  font-family:inherit;
  box-shadow:0 18px 34px -24px rgba(31,63,168,.85);
}
.m-charge-note{
  margin:12px 0 0;
  color:#64748b;
  font-size:12px;
  font-weight:700;
  line-height:1.55;
}

/* Shared alert/confirm modal for mobile standalone pages */
.jm-toast-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:18px;
  box-sizing:border-box;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.jm-toast-overlay.show{
  opacity:1;
  pointer-events:auto;
}
.jm-toast-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}
.jm-toast-panel{
  position:relative;
  z-index:1;
  width:min(100%,420px);
  max-height:calc(100vh - 48px);
  overflow:auto;
  background:#fff;
  border:1px solid #dfe8f4;
  border-radius:24px;
  padding:24px 20px 18px;
  box-shadow:0 28px 70px -26px rgba(15,23,42,.75);
  transform:translateY(10px) scale(.98);
  transition:transform .18s ease;
  text-align:left;
}
.jm-toast-overlay.show .jm-toast-panel{
  transform:translateY(0) scale(1);
}
.jm-toast-icon{
  width:50px;
  height:50px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin:0 0 14px;
  background:#eef5ff;
  color:#1f63ff;
  font-size:24px;
  font-weight:950;
}
.jm-toast-title{
  margin:0 0 10px;
  color:#0f172a;
  font-size:20px;
  line-height:1.25;
  font-weight:950;
  letter-spacing:-.03em;
}
.jm-toast-msg{
  margin:0 0 18px;
  color:#334155;
  font-size:14px;
  font-weight:700;
  line-height:1.75;
  word-break:keep-all;
}
.jm-toast-body-html{
  margin:0 0 18px;
}
.jm-toast-meta{
  margin:12px 0 0;
}

/* Mobile mypage */
.m-mypage-screen{
  min-height:100vh;
  background:#f3f7fc;
  color:#0f172a;
}
.m-mypage-home{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 10px;
  border-radius:14px;
  background:#eef5ff;
  color:#1f63ff;
  font-size:12px;
  font-weight:900;
}
.m-mypage-main{
  padding:14px 16px 28px;
}
.m-mypage-hero{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:24px 22px 22px;
  background:linear-gradient(135deg,#111a55 0%,#1f3da8 58%,#2f80ff 100%);
  color:#fff;
  box-shadow:0 24px 48px -34px rgba(15,23,42,.9);
}
.m-mypage-hero::after{
  content:"";
  position:absolute;
  right:-56px;
  bottom:-84px;
  width:220px;
  height:170px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
}
.m-mypage-hero p{
  position:relative;
  z-index:1;
  margin:0 0 8px;
  color:#c7d7ff;
  font-size:11px;
  font-weight:950;
  letter-spacing:.28em;
}
.m-mypage-hero h1{
  position:relative;
  z-index:1;
  margin:0;
  font-size:30px;
  line-height:1.14;
  font-weight:950;
  letter-spacing:-.04em;
}
.m-mypage-hero span{
  position:relative;
  z-index:1;
  display:block;
  margin-top:12px;
  color:#dbeafe;
  font-size:14px;
  font-weight:750;
  line-height:1.55;
}
.m-mypage-hero-actions{
  position:relative;
  z-index:1;
  display:flex;
  gap:8px;
  margin-top:16px;
  flex-wrap:wrap;
}
.m-mypage-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#1f3da8;
  font-size:13px;
  font-weight:900;
}
.m-mypage-chip.ghost{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
}
.m-mypage-grid{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.m-mypage-card,
.m-mypage-section{
  background:#fff;
  border:1px solid #dfe8f4;
  border-radius:22px;
  box-shadow:0 18px 36px -30px rgba(15,23,42,.45);
}
.m-mypage-card{
  padding:18px;
}
.m-mypage-kicker{
  display:block;
  color:#1f3da8;
  font-size:11px;
  font-weight:950;
  letter-spacing:.18em;
  margin-bottom:8px;
}
.m-mypage-profile-card h2{
  margin:0;
  font-size:26px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.04em;
}
.m-mypage-profile-card p{
  margin:8px 0 0;
  color:#64748b;
  font-size:13px;
  font-weight:750;
}
.m-mypage-profile-card .grade-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #dbe7f5;
  font-size:13px;
  font-weight:900;
}
.m-mypage-profile-card .benefits{
  display:grid;
  gap:8px;
  margin-top:14px;
}
.m-mypage-profile-card .benefits li{
  position:relative;
  padding-left:14px;
  color:#334155;
  font-size:13px;
  font-weight:700;
  line-height:1.55;
}
.m-mypage-profile-card .benefits li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#2563eb;
  box-shadow:0 0 0 3px #dbeafe;
}
.m-mypage-logout{
  width:100%;
  height:46px;
  margin-top:16px;
  border-radius:15px;
  border:1px solid #dce6f2;
  background:#f8fbff;
  color:#334155;
  font-size:14px;
  font-weight:900;
}
.m-mypage-balance{
  margin:0;
  font-size:15px;
  color:#64748b;
}
.m-mypage-balance b{
  font-size:34px;
  line-height:1;
  color:#0f172a;
  font-weight:950;
  letter-spacing:-.04em;
}
.m-mypage-sub{
  margin:8px 0 0;
  color:#64748b;
  font-size:13px;
  font-weight:750;
}
.m-mypage-primary{
  width:100%;
  justify-content:center;
  margin-top:16px;
}
.m-mypage-progress-card p{
  margin:0 0 14px;
  color:#334155;
  font-size:14px;
  font-weight:800;
  line-height:1.6;
}
.m-mypage-progress-card .progress{
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background:#e8eef8;
}
.m-mypage-progress-card .progress span{
  display:block;
  height:100%;
  width:8%;
  border-radius:999px;
  background:linear-gradient(135deg,#1f63ff,#1f3da8);
}
.m-mypage-section{
  margin-top:14px;
  padding:18px;
}
.m-mypage-section .card-head{
  gap:12px;
  margin-bottom:16px;
  flex-wrap:wrap;
}
.m-mypage-section .card-head h3{
  margin:0;
  font-size:24px;
  line-height:1.18;
  font-weight:950;
  letter-spacing:-.04em;
}
.m-mypage-section .card-head .btn-ghost,
.m-mypage-screen .btn-primary,
.m-mypage-screen .btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
}
.m-mypage-screen .btn-primary{
  background:linear-gradient(135deg,#1f63ff,#1f3da8);
  color:#fff;
  box-shadow:0 16px 30px -24px rgba(31,63,168,.85);
}
.m-mypage-screen .btn-ghost{
  background:#f1f5f9;
  color:#1f3da8;
  border:1px solid #dce6f2;
}
.m-mypage-table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid #e7edf6;
}
.m-mypage-table{
  width:100%;
  min-width:620px;
  border-collapse:collapse;
  background:#fff;
}
.m-mypage-table th,
.m-mypage-table td{
  padding:14px 12px;
  border-bottom:1px solid #eef2f7;
  font-size:13px;
  text-align:left;
  vertical-align:middle;
}
.m-mypage-table th{
  background:#f8fbff;
  color:#64748b;
  font-weight:900;
}
.m-mypage-screen .tx-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:70px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.m-mypage-screen .tx-tag.charge{background:#eaf8ef;color:#16a34a}
.m-mypage-screen .tx-tag.use{background:#eef2ff;color:#1f3da8}
.m-mypage-screen .tx-tag.adjust{background:#f1f5f9;color:#475569}
.m-mypage-screen .tx-tag.pending{background:#fff7ed;color:#ea580c}
.m-mypage-screen .tx-tag.reject{background:#fef2f2;color:#dc2626}
.m-mypage-screen .amount.plus{color:#16a34a;font-weight:900}
.m-mypage-screen .amount.minus{color:#dc2626;font-weight:900}
.m-mypage-screen .amount.muted{color:#64748b;font-weight:900}
.m-mypage-screen .empty{
  text-align:center;
  color:#94a3b8;
  font-weight:800;
}
.m-mypage-screen .exams-empty{
  padding:28px 10px 8px;
}
.m-mypage-screen .exams-empty p{
  color:#64748b;
  margin-bottom:14px;
}
.m-mypage-screen .exam-card-v2 .exam-count-box strong{
  word-break:break-all;
}
@media (max-width:380px){
  .m-mypage-main{padding:12px 12px 24px}
  .m-mypage-hero{padding:22px 18px 20px}
  .m-mypage-hero h1{font-size:27px}
  .m-mypage-card,.m-mypage-section{padding:16px}
  .m-mypage-section .card-head h3{font-size:22px}
}
.jm-toast-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}
.jm-toast-actions .jm-toast-btn:only-child{
  grid-column:1/-1;
}
.jm-toast-btn{
  height:48px;
  border:0;
  border-radius:15px;
  font-family:inherit;
  font-size:15px;
  font-weight:950;
}
.jm-toast-btn.primary{
  background:linear-gradient(135deg,#1f63ff,#1f3da8);
  color:#fff;
  box-shadow:0 16px 30px -22px rgba(31,63,168,.8);
}
.jm-toast-btn.ghost{
  background:#f1f5f9;
  color:#334155;
  border:1px solid #dfe8f4;
}
.jm-toast-warn .jm-toast-icon{
  background:#fff7ed;
  color:#f97316;
}
.jm-toast-danger .jm-toast-icon{
  background:#fee2e2;
  color:#dc2626;
}
.jm-toast-success .jm-toast-icon{
  background:#dcfce7;
  color:#16a34a;
}
.jm-point-hero{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:0 0 16px;
}
.jm-point-hero-icon{
  flex:0 0 48px;
  width:48px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,#fff3c4,#ffe08a);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#b45309;
  font-size:22px;
  font-weight:950;
  box-shadow:0 12px 24px -18px rgba(180,83,9,.55);
}
.jm-point-hero-copy{
  min-width:0;
  text-align:left;
}
.jm-point-kicker{
  margin:1px 0 7px;
  color:#1f3da8;
  font-size:10px;
  font-weight:950;
  letter-spacing:.18em;
}
.jm-point-hero-copy strong{
  display:block;
  color:#0f172a;
  font-size:20px;
  line-height:1.22;
  font-weight:950;
  letter-spacing:-.03em;
}
.jm-point-hero-copy span{
  display:block;
  margin-top:7px;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
  font-weight:700;
}
.jm-point-card{
  margin-top:2px;
  padding:15px 16px;
  border:1px solid #dbe4f0;
  border-radius:17px;
  background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);
  box-shadow:0 12px 28px -24px rgba(15,23,42,.3);
}
.jm-point-card-label{
  margin-bottom:7px;
  color:#1f3da8;
  font-size:12px;
  font-weight:950;
}
.jm-point-card-value{
  color:#071126;
  font-size:30px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.04em;
}
.jm-point-card-value small{
  margin-left:4px;
  color:#64748b;
  font-size:14px;
  font-weight:900;
}
.jm-point-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}
.jm-point-item{
  padding:13px 14px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:#f8fafc;
}
.jm-point-item span{
  display:block;
  margin-bottom:7px;
  color:#64748b;
  font-size:12px;
  font-weight:850;
}
.jm-point-item b{
  display:block;
  color:#0f172a;
  font-size:19px;
  line-height:1.1;
  font-weight:950;
  letter-spacing:-.03em;
}
.jm-point-item--accent{
  border-color:#fed7aa;
  background:linear-gradient(180deg,#fff7ed 0%,#fff 100%);
}
.jm-point-item--accent b{
  color:#c2410c;
}
.jm-point-note{
  margin-top:10px;
  padding:13px 14px;
  border:1px dashed #d7e0ec;
  border-radius:16px;
  background:#f8fbff;
}
.jm-point-note strong{
  display:block;
  margin-bottom:6px;
  color:#1f3da8;
  font-size:13px;
  font-weight:950;
}
.jm-point-note p{
  margin:0;
  color:#475569;
  font-size:13px;
  line-height:1.58;
  font-weight:700;
}
.jm-point-meta{
  margin-top:12px;
  padding:12px 13px;
  border:1px solid #fed7aa;
  border-radius:15px;
  background:#fff7ed;
  color:#9a3412;
  font-size:12px;
  font-weight:850;
  line-height:1.5;
}
@media (max-width:380px){
  .jm-toast-overlay{padding:12px}
  .jm-toast-panel{border-radius:21px;padding:21px 16px 16px}
  .jm-point-grid{grid-template-columns:1fr}
  .jm-point-card-value{font-size:27px}
}
