@charset "UTF-8";
/* common */
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

ul, li, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --themomos-primary-light: #2C8DBE;
  --themomos-primary-dark: #1D2041;
  --text-color: #191F28;
  --text-light: #625F68;
  --bg-color: #FAFAF8;
  --bg-navy: #1D2040;
  --bg-navy-rgb: 30, 44, 94;
  --sub-navy: #312E81;
  --sub-dark-navy: #1E1B4B;
  --point-red: #C72030;
  --point-orange: #FF6412;
  --point-orange-light: #fff3ed;
  --point-orange-border: #ffd4b8;
  --point-purple: #4F46E5;
  --point-purple-light: #EEF2FF;
  --point-purple-border: #B9C7F8;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 6px 24px rgba(0, 0, 0, 0.2);
  --shadow-button: 0 3px 6px rgba(0, 0, 0, 0.18);
  --shadow-button-strong: 0 4px 8px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 1px 4px rgba(31, 47, 74, 0.08);
  --shadow-md: 0 4px 16px rgba(31, 47, 74, 0.10);
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* hover event */
html, body {
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.01em;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

html {
  font-size: 18px;
}

button {
  font-family: inherit;
}

/* responsive */
@media (max-width: 1024px) {
  html {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
/* grid 레이아웃 */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

[class^=span-] {
  grid-column: auto/span 12;
}

.span-1 {
  grid-column: span 1;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-9 {
  grid-column: span 9;
}

.span-10 {
  grid-column: span 10;
}

.span-11 {
  grid-column: span 11;
}

.span-12 {
  grid-column: span 12;
}

/* 넓이 레이아웃 */
.width-1000 {
  max-width: 1000px;
  margin: 0 auto;
  width: 94%;
}

.left-20 {
  flex: 2;
  max-width: 20%;
}

.left-30 {
  flex: 3;
  max-width: 30%;
}

.left-40 {
  flex: 4;
  max-width: 40%;
}

.left-50 {
  flex: 5;
  max-width: 50%;
}

.left-60 {
  flex: 6;
  max-width: 60%;
}

.left-70 {
  flex: 7;
  max-width: 70%;
}

.left-80 {
  flex: 8;
  max-width: 80%;
}

.left-100 {
  flex: 1;
  max-width: 100%;
}

.middle-20 {
  flex: 2;
  max-width: 20%;
}

.middle-30 {
  flex: 3;
  max-width: 30%;
}

.middle-40 {
  flex: 4;
  max-width: 40%;
}

.middle-50 {
  flex: 5;
  max-width: 50%;
}

.middle-60 {
  flex: 6;
  max-width: 60%;
}

.middle-70 {
  flex: 7;
  max-width: 70%;
}

.middle-80 {
  flex: 8;
  max-width: 80%;
}

.right-20 {
  flex: 2;
  max-width: 20%;
}

.right-30 {
  flex: 3;
  max-width: 30%;
}

.right-40 {
  flex: 4;
  max-width: 40%;
}

.right-50 {
  flex: 5;
  max-width: 50%;
}

.right-60 {
  flex: 6;
  max-width: 60%;
}

.right-70 {
  flex: 7;
  max-width: 70%;
}

.right-80 {
  flex: 8;
  max-width: 80%;
}

/* 높이 레이아웃 */
.top-20 {
  flex: 2;
  max-height: 20%;
}

.top-30 {
  flex: 3;
  max-height: 30%;
}

.top-40 {
  flex: 4;
  max-height: 40%;
}

.top-50 {
  flex: 5;
  max-height: 50%;
}

.top-60 {
  flex: 6;
  max-height: 60%;
}

.top-70 {
  flex: 7;
  max-height: 70%;
}

.top-80 {
  flex: 8;
  max-height: 80%;
}

.bottom-20 {
  flex: 2;
  max-height: 20%;
}

.bottom-30 {
  flex: 3;
  max-height: 30%;
}

.bottom-40 {
  flex: 4;
  max-height: 40%;
}

.bottom-50 {
  flex: 5;
  max-height: 50%;
}

.bottom-60 {
  flex: 6;
  max-height: 60%;
}

.bottom-70 {
  flex: 7;
  max-height: 70%;
}

.bottom-80 {
  flex: 8;
  max-height: 80%;
}

/* margin 레이아웃 */
.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mr-1 {
  margin-right: 1px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

/* flex 레이아웃 */
/* 방향 */
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* 줄 바꿈 */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* 메인축 정렬 (가로 기준: row, 세로 기준: column) */
.justify-start {
  display: flex;
  justify-content: flex-start;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}

.justify-between {
  display: flex;
  justify-content: space-between;
}

.justify-around {
  display: flex;
  justify-content: space-around;
}

/* 교차축 정렬 (세로/가로 공용) */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

/* flex-grow / shrink 공용 */
.flex-1 {
  flex: 1 1 auto;
}

.flex-none {
  flex: 0 0 auto;
}

.left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.flex-1 {
  flex: 1;
  min-height: 0;
}

.flex-2 {
  flex: 2;
  min-height: 0;
}

.flex-3 {
  flex: 3;
  min-height: 0;
}

.flex-4 {
  flex: 4;
  min-height: 0;
}

.flex-5 {
  flex: 5;
  min-height: 0;
}

.flex-6 {
  flex: 6;
  min-height: 0;
}

.flex-7 {
  flex: 7;
  min-height: 0;
}

.flex-8 {
  flex: 8;
  min-height: 0;
}

.flex-9 {
  flex: 9;
  min-height: 0;
}

.flex-10 {
  flex: 10;
  min-height: 0;
}

.flex-11 {
  flex: 11;
  min-height: 0;
}

.flex-12 {
  flex: 12;
  min-height: 0;
}

.border-none {
  border: none !important;
}

input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

.select-auto {
  flex: 0 0 auto;
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

.form-radio-group,
.form-check-group {
  align-items: flex-start;
  flex-wrap: wrap;
}
.form-radio-group label,
.form-check-group label {
  flex: 0 0 150px;
}
.form-radio-group .check-boxes,
.form-radio-group .radio-boxes,
.form-check-group .check-boxes,
.form-check-group .radio-boxes {
  flex: 1 1 auto;
}
.form-radio-group .check-group,
.form-radio-group .radio-group,
.form-check-group .check-group,
.form-check-group .radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.check-item,
.radio-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  white-space: nowrap;
  cursor: pointer;
}
.check-item span,
.radio-item span {
  font-size: 0.9rem;
}
.check-item:hover span,
.radio-item:hover span {
  color: var(--color-primary-light);
  font-weight: 500;
}
.check-item input[type=checkbox],
.check-item input[type=radio],
.radio-item input[type=checkbox],
.radio-item input[type=radio] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto !important;
}

input[type=date].date-min,
input[type=month].date-min,
input[type=time].date-min {
  width: 150px;
  min-width: 150px;
  flex: 0 0 150px;
  box-sizing: border-box;
}

/* Tabler 기반 select */
.form-select {
  line-height: normal;
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes shine-sweep {
  from {
    left: -70%;
  }
  to {
    left: 120%;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-gentle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes cta-glow-red {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(199, 32, 48, 0.32);
  }
  50% {
    box-shadow: 0 8px 32px rgba(199, 32, 48, 0.62);
  }
}
@keyframes cta-glow-orange {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(255, 100, 18, 0.32);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 100, 18, 0.62);
  }
}
.inner {
  max-width: 1440px;
  margin: 0 auto;
}

.inner-sm {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-gray {
  padding: 80px 0;
  background: #f7f8fc;
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  text-align: center;
}

/* sub common */
.sub-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 80px;
}

.sub-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 40px 120px;
}
@media (max-width: 1200px) {
  .sub-inner {
    padding-top: 85px;
  }
}
@media (max-width: 1024px) {
  .sub-inner {
    padding: 85px 28px 80px;
  }
}
@media (max-width: 768px) {
  .sub-inner {
    padding: 85px 20px 60px;
  }
}
@media (max-width: 480px) {
  .sub-inner {
    padding: 80px 16px 40px;
  }
}

/* num-badge */
.num-badge {
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border-radius: 50%;
  background-color: var(--point-purple);
  box-shadow: var(--shadow-medium);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.page-hero {
  max-width: 1440px;
  width: 100%;
  margin: 140px auto 0;
  position: relative;
  background-position: top;
  background-size: cover;
  border-radius: 10px;
}
.page-hero .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  border-radius: 10px;
}
.page-hero .inner {
  position: relative;
  z-index: 1;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero .sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 50px;
}
.page-hero .desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  text-align: center;
}

.sub-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--sub-dark-navy);
}

.sub-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sub-dark-navy);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.sub-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 1200px) {
  .page-hero {
    margin-top: 65px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    text-align: center;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .page-hero .sub {
    font-size: 0.85rem;
    margin-bottom: 32px;
  }
  .page-hero .desc {
    font-size: 0.82rem;
  }
  .page-hero .inner {
    padding: 0 24px;
  }
  .sub-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section,
  .section-gray {
    padding: 56px 16px;
  }
  .section-heading {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.35rem;
  }
  .section,
  .section-gray {
    padding: 40px 16px;
  }
  .section-heading {
    font-size: 1.2rem;
  }
}
/* layout */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 500;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.header-in {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.header-in.header-top {
  max-width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-in.header-bottom {
  max-width: 1440px;
  height: 80px;
}
.header-in .logo {
  flex-shrink: 0;
  height: 40px;
  margin-right: 107px;
}
.header-in .logo img {
  height: 100%;
  width: auto;
}

.unb-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.unb-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.unb {
  display: flex;
  align-items: center;
  gap: 8px;
}
.unb .site-link {
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.unb .site-link:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.85);
}

.gnb {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.gnb > .gnb-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
  height: 80px;
}
.gnb > .gnb-wrap > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.gnb > .gnb-wrap > li > a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  transition: color 0.2s;
  white-space: nowrap;
}
.gnb > .gnb-wrap > li:hover > a {
  color: var(--point-purple);
}
.gnb > .gnb-wrap > li:hover .gnb-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(-35px);
}

.gnb-sub {
  position: absolute;
  top: 120px;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.gnb-sub li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.gnb-sub li a:hover {
  color: var(--point-purple);
  background: var(--bg-wrap);
}

.gnb .btn--cta {
  flex-shrink: 0;
  padding: 0;
  width: 103px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnb .btn--cta li {
  width: 100%;
  height: 100%;
}
.gnb .btn--cta a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 55px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-user {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sub-dark-navy);
}
.nav-user-info i {
  font-size: 1.1rem;
  color: var(--point-purple);
}

.nav-logout {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 12px;
  border: 1.5px solid #e4e4ec;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.nav-logout:hover {
  color: var(--point-purple);
  border-color: var(--point-purple-border);
  background: var(--point-purple-light);
}

.mgnb-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mgnb-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mgnb-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mgnb-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mgnb-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mgnb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 590;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mgnb-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mgnb-wrap {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 600;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 72px 28px 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.mgnb-wrap.open {
  right: 0;
}

.mgnb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  line-height: 1;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mgnb-close:hover {
  background: #f0f0f0;
}

.mgnb {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mgnb > li {
  border-bottom: 1px solid #f0f0f0;
}
.mgnb > li:first-child {
  border-top: 1px solid #f0f0f0;
}
.mgnb > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
  transition: color 0.2s;
}
.mgnb > li.has-sub > a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.2s;
  flex-shrink: 0;
  margin-right: 2px;
}
.mgnb > li.has-sub.open > a {
  color: var(--point-purple);
}
.mgnb > li.has-sub.open > a::after {
  transform: rotate(-135deg);
  border-color: var(--point-purple);
}

.mgnb-2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 4px;
}
.mgnb-2 li a {
  display: block;
  padding: 9px 4px 9px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  border-left: 2px solid #e8e8e8;
  transition: color 0.2s, border-color 0.2s;
}
.mgnb-2 li a:hover {
  color: var(--point-purple);
  border-left-color: var(--point-purple);
}
.mgnb-2 li:last-child a {
  margin-bottom: 8px;
}

.mgnb > li.open .mgnb-2 {
  max-height: 400px;
}

.mgnb-auth {
  margin-top: 28px;
}
.mgnb-auth a {
  display: block;
  padding: 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-align: center;
  background: var(--point-purple);
  border-radius: 8px;
  border: 1.5px solid var(--point-purple-light);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.18);
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.mgnb-auth a:hover {
  background: #3730a3;
  border-color: #3730a3;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.32);
  transform: translateY(-2px);
}
.mgnb-auth a:active {
  transform: translateY(1px);
}

.mgnb-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mgnb-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sub-dark-navy);
}
.mgnb-user-info i {
  font-size: 1.2rem;
  color: var(--point-purple);
}

.mgnb-logout {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 7px 14px;
  border: 1.5px solid #e4e4ec;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.mgnb-logout:hover {
  color: var(--point-purple);
  border-color: var(--point-purple-border);
  background: var(--point-purple-light);
}

@media (max-width: 1200px) {
  #header {
    height: 65px;
  }
  .gnb {
    gap: 32px;
  }
  .gnb > .gnb-wrap {
    gap: 32px;
  }
  .gnb > .gnb-wrap > li > a {
    font-size: 0.85rem;
  }
  .gnb .nav-auth {
    padding: 10px 20px;
  }
  .gnb-sub {
    top: 65px;
  }
  .header-in.header-top {
    display: none;
  }
  .header-in.header-bottom {
    height: 65px;
  }
}
@media (max-width: 900px) {
  .gnb {
    display: none;
  }
  .mgnb-btn {
    display: flex;
    margin-left: auto;
  }
  .header-in {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  #header {
    height: 64px;
  }
  .header-in {
    padding: 0 16px;
  }
  .header-in .logo {
    height: 30px;
  }
}
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 12, 40, 0.72) 0%, rgba(10, 12, 40, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #eee;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: center;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  box-sizing: border-box;
}

.hero-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* hero end */
.main-contents .section-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  padding: 150px 0;
}
.main-contents .section-inner > div {
  width: 100%;
}
.main-contents .section-inner .main-notice-wrap {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  box-sizing: border-box;
}
.main-contents .section-inner .main-notice-wrap .notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.main-contents .section-inner .main-notice-wrap .notice-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
}
.main-contents .section-inner .main-notice-wrap .notice-more {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: none;
}
.main-contents .section-inner .main-notice-wrap .notice-more:hover {
  color: #666;
}
.main-contents .section-inner .main-notice-wrap .notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-contents .section-inner .main-notice-wrap .notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.main-contents .section-inner .main-notice-wrap .notice-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main-contents .section-inner .main-notice-wrap .notice-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--point-purple);
  color: #fff;
}
.main-contents .section-inner .main-notice-wrap .notice-item-title {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-contents .section-inner .main-notice-wrap .notice-item-title:hover {
  color: var(--point-purple);
}
.main-contents .section-inner .main-notice-wrap .notice-date {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #bbb;
}
.main-contents .section-inner .main-popup-wrap {
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.main-contents .section-inner .main-popup-wrap .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.main-contents .section-inner .main-popup-wrap .popup-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
}
.main-contents .section-inner .main-popup-wrap .banner-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.main-contents .section-inner .main-popup-wrap .banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d3a8c 0%, #1a2255 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.main-contents .section-inner .main-popup-wrap .banner-slide:nth-child(2) {
  background: linear-gradient(135deg, #1a6b3a 0%, #0d3d20 100%);
}
.main-contents .section-inner .main-popup-wrap .banner-slide:nth-child(3) {
  background: linear-gradient(135deg, #7a2d2d 0%, #3d1010 100%);
}
.main-contents .section-inner .main-popup-wrap .banner-slide.active {
  opacity: 1;
}
.main-contents .section-inner .main-popup-wrap .banner-content {
  width: 100%;
}
.main-contents .section-inner .main-popup-wrap .banner-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 10px;
}
.main-contents .section-inner .main-popup-wrap .banner-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.main-contents .section-inner .main-popup-wrap .banner-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-contents .section-inner .main-popup-wrap .banner-prev, .main-contents .section-inner .main-popup-wrap .banner-next {
  background: none;
  border: 1.5px solid #ddd;
  color: #666;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.main-contents .section-inner .main-popup-wrap .banner-prev:hover, .main-contents .section-inner .main-popup-wrap .banner-next:hover {
  border-color: #999;
  color: #222;
}
.main-contents .section-inner .main-popup-wrap .banner-dots {
  display: flex;
  gap: 5px;
}
.main-contents .section-inner .main-popup-wrap .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}
.main-contents .section-inner .main-popup-wrap .dot.active {
  background: var(--point-purple);
}

/* contents end */
@media (max-width: 1024px) {
  .process_inner {
    flex-direction: column;
    gap: 40px;
  }
  .process_illust {
    flex: none;
    width: 100%;
  }
  .stats_cards {
    grid-template-columns: 1fr 1fr;
  }
  .main-contents .section-inner {
    flex-direction: column;
    padding: 80px 28px;
    gap: 20px;
  }
  .main-contents .section-inner > div {
    height: auto;
  }
  .main-contents .section-inner .main-popup-wrap {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .section_inner {
    padding: 0 20px;
  }
  .hero_inner {
    padding: 0 20px;
    padding-top: 64px;
  }
  .stats {
    padding: 60px 0;
  }
  .stats_list {
    flex-wrap: wrap;
  }
  .stats_list li {
    flex: 0 0 50%;
  }
  .stats_cards {
    grid-template-columns: 1fr;
  }
  .process {
    padding: 60px 0;
  }
  .cta_section {
    padding: 60px 0;
  }
  .cta_cards {
    grid-template-columns: 1fr;
  }
  .footer_top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer_nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-contents .section-inner {
    padding: 60px 20px;
  }
  .main-contents .section-inner .main-popup-wrap {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .stats_list li {
    flex: 0 0 100%;
  }
  .hero_title {
    font-size: 1.8rem;
  }
  .main-contents .section-inner {
    padding: 48px 16px;
  }
  .main-contents .section-inner .main-popup-wrap {
    height: 160px;
  }
}
#footer {
  background: var(--bg-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  width: 250px;
  display: flex;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 100px;
}
.footer-nav .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav .footer-menu .footer-menu-title {
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.footer-nav .footer-menu .footer-link {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: background-color 0.2s, border-color 0.2s;
}
.footer-nav .footer-menu .footer-link:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}
.footer-nav .footer-menu .footer-link > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}
.footer-nav .footer-menu .footer-link div {
  width: 60px;
  height: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav .footer-menu .footer-link div img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-nav .footer-menu .footer-link span {
  font-size: 0.7rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-info {
  font-size: 0.7rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-info p {
  text-align: center;
}

.footer-branch-label {
  display: inline-block;
  padding: 1px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-right: 4px;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* 태블릿 (≤1024px) */
@media (max-width: 1024px) {
  .footer-inner {
    padding: 0 28px;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-nav {
    gap: 48px;
  }
}
/* 모바일 (≤768px) */
@media (max-width: 768px) {
  #footer {
    padding: 40px 0 28px;
  }
  .footer-inner {
    padding: 0 20px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 24px;
    gap: 28px;
  }
  .footer-logo {
    width: auto;
  }
  .footer-logo img {
    height: 44px;
  }
  .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 28px 0;
    justify-content: center;
  }
  .footer-nav .footer-menu {
    width: 50%;
    padding-right: 0;
    padding: 0 16px;
    text-align: center;
  }
  .footer-nav .footer-menu .footer-link {
    min-width: 150px;
    align-self: center;
  }
  .footer-nav .footer-menu .footer-link > a {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-bottom .footer-info > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom .footer-info > div .footer-branch-label {
    align-self: center;
  }
  .footer-copy {
    white-space: normal;
    text-align: center;
  }
}
/* 소형 모바일 (≤480px) */
@media (max-width: 480px) {
  .footer-nav .footer-menu {
    width: 100%;
    padding: 0;
  }
  .footer-info {
    font-size: 0.65rem;
  }
}
.terms-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.terms-overlay.is-open {
  display: flex;
  animation: overlay-fade-in 0.25s ease forwards;
}
.terms-overlay.is-open .terms-modal {
  animation: popup-fade-in 0.25s ease forwards;
}
.terms-overlay.is-closing {
  animation: overlay-fade-out 0.2s ease forwards;
}
.terms-overlay.is-closing .terms-modal {
  animation: popup-fade-out 0.2s ease forwards;
}

.terms-modal {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.terms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.terms-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
}

.terms-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f4f4f8;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
  transition: background 0.2s;
}
.terms-modal-close:hover {
  background: #e8e8f0;
  color: #333;
}

.terms-modal-body {
  overflow-y: auto;
  padding: 24px;
  flex: 1;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.8;
}
.terms-modal-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  margin: 20px 0 8px;
}
.terms-modal-body h3:first-child {
  margin-top: 0;
}
.terms-modal-body p {
  margin-bottom: 8px;
}

.terms-modal-date {
  margin-top: 24px;
  color: #999;
  font-size: 0.8rem;
}

.terms-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .terms-modal {
    max-height: 90vh;
    border-radius: 10px;
  }
  .terms-modal-header,
  .terms-modal-body,
  .terms-modal-footer {
    padding: 16px;
  }
}
@keyframes popup-fade-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes popup-fade-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
}
@keyframes overlay-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlay-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-overlay.closing {
  animation: overlay-fade-out 0.2s ease forwards;
}
.popup-overlay.closing .popup {
  animation: popup-fade-out 0.2s ease forwards;
}

.popup {
  width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  animation: popup-fade-in 0.25s ease forwards;
}
.popup .img_wrap {
  background: var(--point-purple);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .img_wrap img {
  width: 36px;
  height: 36px;
}
.popup .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 24px;
  word-break: keep-all;
  text-align: center;
}
.popup .bottom p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}
.popup .bottom label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
}
.popup .bottom label input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
}
.popup .bottom label input[type=checkbox]:checked {
  background-color: var(--point-purple);
  border-color: var(--point-purple);
  background-size: 68%;
}
.popup .bottom > button {
  margin-top: 24px;
  min-width: 120px;
  padding: 0 24px;
}
.popup .bottom button {
  height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.popup .bottom .popup-ok {
  background: var(--point-purple);
  color: #fff;
  border: 1px solid var(--point-purple);
}
.popup .bottom .popup-ok:hover {
  opacity: 0.88;
}
.popup .bottom .popup-cancel {
  background: #fff;
  color: #666;
  border: 1px solid #e4e4ec;
}
.popup .bottom .popup-cancel:hover {
  border-color: #d0d0dc;
  background: #f9f9fb;
}
.popup .bottom .btn_wrap {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}
.popup .bottom .btn_wrap button {
  flex: 1;
}
.popup .bottom .popup-input {
  width: 100%;
  height: 42px;
  border: 1px solid #e4e4ec;
  border-radius: 6px;
  padding: 0 12px;
  margin-top: 16px;
  font-size: 14px;
}

/* components */
.sub-nav {
  display: flex;
  justify-content: center;
}

.sub-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 50px 0;
}

@media (max-width: 768px) {
  .sub-nav-inner {
    display: none;
  }
}
.sub-nav ul li a {
  display: block;
  padding: 16px 24px;
  color: #999;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--point-purple);
  border-radius: 2px 2px 0 0;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-nav ul li a:hover {
  color: #222;
}
.sub-nav ul li a:hover::after {
  width: 100%;
}

.sub-nav ul li.active a {
  color: #222;
  font-weight: 600;
}
.sub-nav ul li.active a::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.4);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--point-purple);
  color: #fff;
  border-color: var(--point-purple);
}
.btn--primary:hover {
  background: #3730a3;
  border-color: #3730a3;
}

.btn--outline {
  background: transparent;
  color: var(--point-purple);
  border-color: var(--point-purple);
}
.btn--outline:hover {
  background: var(--point-purple);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text-color);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--bg-wrap);
  color: var(--point-purple);
}

.btn--soft {
  background: #fff;
  color: #666;
  border-color: #e4e4ec;
  border-radius: 6px;
  font-weight: 500;
}
.btn--soft:hover {
  border-color: #d0d0dc;
  background: #f9f9fb;
}

.btn--orange {
  background: var(--point-orange);
  color: #fff;
  border-color: var(--point-orange);
}
.btn--orange:hover {
  filter: brightness(1.08);
}

.btn--sm {
  padding: 7px 16px;
  font-size: 0.7rem;
  border-radius: 6px;
}

.btn--lg {
  padding: 14px 36px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn--full {
  width: 100%;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

[class*=btn--cta] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
[class*=btn--cta]:active {
  transform: translateY(0);
}

.btn--cta {
  background-color: var(--point-purple);
  color: #fff;
  border-color: var(--point-purple);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.18);
}
.btn--cta:hover {
  background-color: #3730a3;
  border-color: #3730a3;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.38);
  transform: translateY(-2px);
}

.btn--cta-white {
  background-color: #fff;
  color: var(--point-purple);
  border-color: var(--point-purple);
}
.btn--cta-white:hover {
  background-color: var(--point-purple-light);
  transform: translateY(-2px);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.22s ease;
}

.gachiup-cta {
  background: var(--point-red);
  animation: cta-glow-red 2.8s ease-in-out infinite;
}
.gachiup-cta:hover {
  background: #a81a28;
  animation: none;
}

.toolro-cta {
  background: var(--point-orange);
  animation: cta-glow-orange 2.8s ease-in-out infinite;
}
.toolro-cta:hover {
  background: #e05510;
  animation: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.tag {
  font-size: 0.75rem;
  color: var(--point-purple);
  background: var(--point-purple-light);
  border: 1px solid var(--point-purple-border);
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: 500;
}
.tag.orange {
  color: var(--point-orange);
  background: var(--point-orange-light);
  border-color: var(--point-orange-border);
}
.tag.gray {
  color: #555;
  background: #f0f0f5;
  border-color: #ddd;
}

.tag-add {
  font-size: 0.8rem;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.tag-add:hover {
  color: var(--point-purple);
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, var(--sub-dark-navy) 0%, var(--point-purple) 100%);
  border-radius: 10px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-block-text h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 12px;
}
.cta-block-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cta-block-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #fff;
  color: var(--point-purple);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cta-block-btn:hover {
  opacity: 0.88;
}

@media (max-width: 768px) {
  .cta-block {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-block-text h3 {
    font-size: 1rem;
  }
  .cta-block-text p {
    font-size: 0.8rem;
  }
}
#top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 400;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--point-purple);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.2s;
}
#top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#top-btn:hover {
  background-color: #3730a3;
}

/* pages */
/* program common */
.program-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.program-wrap .sub-logo {
  width: 350px;
  margin: 3rem 0;
}

.program-wrap .desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.program-wrap .program-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 2px solid #ccc;
}
.program-wrap .program-info:nth-child(1) {
  border-top: none;
}
.program-wrap .program-info .program-img {
  margin-bottom: 48px;
}
.program-wrap .program-info h1 {
  font-size: 3rem;
  color: var(--sub-dark-navy);
  margin-bottom: 32px;
  letter-spacing: -0.2rem;
}
.program-wrap .program-info .program-desc {
  text-align: center;
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.program-wrap .service-wrap {
  width: 100%;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-wrap .service-item {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 3rem 0;
  border-bottom: 1px solid #eaeaf0;
}
.program-wrap .service-item:last-child {
  border-bottom: none;
}
.program-wrap .service-item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program-wrap .service-item .title {
  font-size: 36px;
  font-weight: 700;
  color: var(--sub-navy);
  line-height: 1.05;
  letter-spacing: -1px;
}
.program-wrap .service-item .subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  margin-bottom: 24px;
}
.program-wrap .service-item .program-desc {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.9;
}

.program-wrap .service-item.reverse {
  flex-direction: row-reverse;
}

.program-wrap .program-img {
  flex: 0 0 46%;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 16px;
  padding: 28px;
}
.program-wrap .program-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gachiup-cta {
  background: var(--point-red);
  color: #fff;
}

.toolro-cta {
  background: var(--point-orange);
  color: #fff;
}

@media (max-width: 1280px) {
  .program-wrap .service-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .program-wrap {
    padding: 80px 24px 24px;
  }
  .program-wrap .sub-logo {
    width: 220px;
    margin: 40px 0 20px;
  }
  .program-wrap .service-item {
    flex-direction: column !important;
    gap: 20px;
    padding: 2rem 0;
  }
  .program-wrap .program-img {
    flex: none;
    width: 100%;
  }
  .program-wrap .service-item .title {
    font-size: 32px;
  }
  .program-wrap .program-info {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .program-wrap .program-info h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .program-wrap .service-item .title {
    font-size: 24px;
  }
  .program-wrap .desc {
    font-size: 0.9rem;
  }
}
/* ===== equipment common ===== */
.equipment-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* ===== equipment filter ===== */
.filter-wrap {
  padding: 1.5rem 0;
  width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.filter-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.filter-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 14px;
  cursor: pointer;
  color: #333;
}
.filter-toggle-btn .toggle-icon {
  transition: transform 0.2s ease;
}
.filter-toggle-btn.active .toggle-icon {
  transform: rotate(180deg);
}

.reset-btn {
  font-size: 0.7rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 14px;
  cursor: pointer;
}

.all-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.filter-section {
  margin-bottom: 1.5rem;
}

.filter-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e6;
}

.list-box {
  background: #f5f5f3;
  border-radius: 10px;
  padding: 8px 12px;
  max-height: 700px;
  overflow-y: auto;
}

.list-box::-webkit-scrollbar {
  width: 4px;
}

.list-box::-webkit-scrollbar-track {
  background: transparent;
}

.list-box::-webkit-scrollbar-thumb {
  background: #D1D0CC;
  border-radius: 999px;
}

.list-box::-webkit-scrollbar-thumb:hover {
  background: #4E46DC;
}

.cb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #e8e8e6;
  cursor: pointer;
}

.cb-row:last-child {
  border-bottom: none;
}

.cb-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #D1D0CC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.cb-box.on {
  background: #4E46DC;
}

.cb-box.on::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  color: #fff;
}

.cb-label {
  font-size: 0.8rem;
  color: #555;
  font-weight: 400;
  transition: color 0.15s, font-weight 0.15s;
}

.cb-row:hover .cb-label {
  color: #4E46DC;
  font-weight: 600;
}

/* ===== equipment grid ===== */
.equipment-section {
  flex: 1;
  padding: 1.5rem;
}

.equipment-count {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.filter-name {
  color: #333;
  font-weight: 400;
}

.count {
  color: #4E46DC;
  font-weight: 700;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 150px;
}

.equipment-card {
  border: 1px solid #e8e8e6;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.equipment-card:hover {
  box-shadow: 0 12px 32px rgba(78, 70, 220, 0.12);
}
.equipment-card:hover .card-img img {
  transform: scale(1.06);
}
.equipment-card:hover .card-title {
  color: #4E46DC;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.card-body {
  padding: 32px 16px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
  transition: color 0.25s ease;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .filter-wrap {
    width: 220px;
    max-width: 220px;
  }
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .equipment-layout {
    flex-direction: column;
    gap: 0;
  }
  .filter-wrap {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e8e8e6;
    margin-bottom: 1.5rem;
  }
  .filter-header {
    margin-bottom: 0;
  }
  .filter-toggle-btn {
    display: flex;
  }
  .filter-body {
    display: none;
    margin-top: 1rem;
  }
  .filter-body.open {
    display: block;
  }
  .list-box {
    max-height: 300px;
  }
  .equipment-section {
    padding: 0 1.5rem 1.5rem;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card-body {
    padding: 16px 12px;
  }
  .card-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
/* ===== MAKERSPACE ===== */
.ms-hero {
  padding: 150px 0 210px;
  background-image: url("/include/img/about/makerspace1.png");
}

.meta-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  border-radius: 0 0 10px 10px;
}

.meta-item {
  flex: 1;
  max-width: 280px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.meta-item:last-child {
  border-right: none;
}

.meta-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.meta-val {
  font-size: 0.95rem;
  color: #fff;
}

.overview-wrap {
  margin-bottom: 80px;
}

.overview-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.overview-list {
  display: flex;
  flex-direction: column;
}

.overview-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeef5;
  align-items: baseline;
}
.overview-item:first-child {
  border-top: 1px solid #eeeef5;
}
.overview-item dt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--point-purple);
  padding-top: 2px;
  white-space: nowrap;
}
.overview-item dd {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.7;
}

.overview-note {
  font-size: 0.78rem;
  color: #999;
  display: block;
  margin-top: 5px;
}

.consortium-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.co-card {
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #e8e8f0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.co-card .tag {
  align-self: flex-start;
}
.co-card .btn {
  align-self: flex-end;
}
.co-card.lead {
  border-color: var(--point-purple-border);
  background: linear-gradient(135deg, var(--point-purple-light) 0%, #fff 60%);
}

.co-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sub-dark-navy);
}

.co-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
}

.role-list {
  display: flex;
  flex-direction: column;
}

.role-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid #e8e8f0;
}
.role-item:last-child {
  border-bottom: none;
}

.role-num {
  flex-shrink: 0;
  margin-top: 4px;
}

.role-body {
  flex: 1;
}

.role-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sub-dark-navy);
  margin-bottom: 10px;
}

.role-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.role-sub {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
  padding-left: 14px;
  border-left: 3px solid var(--point-purple-border);
  margin-bottom: 8px;
}
.role-sub strong {
  color: var(--sub-dark-navy);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pg-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e8e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-key {
  font-size: 0.8rem;
  color: #bbb;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.pg-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--point-purple);
  background: var(--point-purple-light);
  border: 1px solid var(--point-purple-border);
  border-radius: 4px;
  padding: 2px 8px;
  align-self: flex-start;
}

.pg-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--point-purple);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.pg-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f8;
}

.pg-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pg-points li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0 12px;
  align-items: start;
  padding: 8px 0;
}
.pg-points .pg-point-key {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.pg-points .pg-point-key i {
  font-size: 0.8rem;
  color: var(--sub-dark-navy);
  margin-right: 4px;
}
.pg-points .pg-point-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.55;
}

.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.role-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.flow-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.flow-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f7;
}
.flow-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.flow-card-step {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.flow-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-card-icon {
  font-size: 1.2rem;
  color: var(--point-purple);
  margin: 6px 0 2px;
}

.flow-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.flow-sep {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #ccc;
  padding: 0 2px;
}

.flow-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #999;
  text-align: center;
}

@media (max-width: 1024px) {
  .overview-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .role-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .flow-sep {
    display: none;
  }
}
@media (max-width: 768px) {
  .ms-hero {
    padding: 72px 0 56px;
  }
  .ms-hero h1 {
    font-size: 1.6rem;
  }
  .ms-hero .sub {
    line-height: 1.8;
  }
  .meta-bar {
    display: none;
  }
  .meta-item {
    flex: 0 0 50%;
    max-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .section,
  .section-gray {
    padding: 56px 16px;
  }
  .overview-wrap .overview-img {
    display: none;
  }
  .consortium-wrap,
  .program-grid {
    grid-template-columns: 1fr;
  }
  .role-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .role-item {
    gap: 20px;
  }
  .role-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .ms-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
}
@media (max-width: 480px) {
  .role-flow {
    grid-template-columns: 1fr;
  }
}
/* ===== INTRO ===== */
.intro-hero {
  padding: 150px 0;
  background-image: url("/include/img/about/intro1.jpg");
}

.framework-wrap {
  display: flex;
  gap: 56px;
  align-items: center;
}

.framework-left {
  flex: 0 0 600px;
}
.framework-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.framework-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.framework-left p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.85;
}

.vm-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vm-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #eeeef5;
}
.vm-item:first-child {
  border-top: 1px solid #eeeef5;
}

.vm-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vm-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #999;
}

.vm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  line-height: 1.5;
}

.vm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.fw-section-head {
  text-align: center;
  margin: 0 auto 48px;
}
.fw-section-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.fw-section-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.fw-section-head p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.85;
}

.fw-flow {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.fw-phase-group {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-phase-group--sm {
  flex: 1;
}

.fw-cards {
  display: flex;
  gap: 12px;
}
.fw-cards .fw-step-card {
  flex: 1;
}

.fw-phase-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 8px;
}

.fw-phase {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--point-purple-border);
  color: var(--sub-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fw-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--point-purple);
  opacity: 0.25;
  font-size: 0.85rem;
}

.fw-step-card {
  background: #fff;
  border: 1px solid #eaeaf4;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fw-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--point-purple-light);
  border: 1px solid var(--point-purple-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fw-step-icon i {
  font-size: 1.2rem;
  color: var(--point-purple);
}

.fw-step-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f6;
}

.fw-step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fw-step-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.fw-step-list li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--point-purple-border);
}

.gantt-wrap {
  padding: 0 40px;
}

.gantt-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-bottom: 2px solid #e8e8f0;
  border-radius: 12px 12px 0 0;
}

.gantt-col-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 0;
}

.gantt-body {
  position: relative;
  background-color: transparent;
  padding: 8px 1rem;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gantt-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}
.gantt-grid > div {
  border-right: 1px dashed #ccc;
}
.gantt-grid > div:last-child {
  border-right: none;
}

.gantt-row {
  position: relative;
  height: 56px;
  border-bottom: 1px solid #ddd;
}
.gantt-row:last-child {
  border-bottom: none;
}

.gantt-bar {
  position: absolute;
  top: 10px;
  bottom: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  overflow: hidden;
  white-space: nowrap;
  background: #eee;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.gantt-bar:hover {
  opacity: 1;
}
.gantt-bar b {
  font-size: 0.8rem;
  font-weight: 700;
}
.gantt-bar span {
  font-size: 0.72rem;
  font-weight: 400;
}

.gantt-bar-tf {
  background-color: var(--point-purple);
  color: #fff;
}

.gantt-bar-gachiup {
  background-color: var(--point-red);
  color: #fff;
}

.gantt-bar-toolro {
  background-color: var(--point-orange);
  color: #fff;
}

.gantt-bar-lonatec {
  background-color: #1E1F40;
  color: #fff;
}

.gantt-bar-themomos {
  background-color: #3889B1;
  color: #fff;
}

@media (max-width: 768px) {
  .gantt-wrap {
    padding: 0 20px;
  }
  .gantt-col-label {
    font-size: 0.6rem;
    letter-spacing: 0;
  }
  .gantt-bar {
    gap: 4px;
    padding: 0 8px;
  }
  .gantt-bar b {
    font-size: 0.68rem;
  }
  .gantt-bar span {
    display: none;
  }
}
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  height: 550px;
}

.location-map {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.location-map .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}
.location-map .root_daum_roughmap .wrap_map {
  height: 100% !important;
}
.location-map iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f7;
}
.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-desc {
  display: flex;
  flex-direction: column;
}
.location-desc .map-desc {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sub-dark-navy);
  line-height: 1.65;
  margin-bottom: 20px;
}
.location-desc > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid #eeeef5;
}
.location-desc > div p:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.location-desc > div p:last-child {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .framework-wrap {
    flex-direction: column;
    gap: 36px;
  }
  .framework-left {
    flex: none;
    width: 100%;
  }
  .fw-flow {
    flex-direction: column;
  }
  .fw-arrow {
    display: none;
  }
  .fw-cards {
    flex-direction: column;
  }
  .location-wrap {
    grid-template-columns: 1fr;
    height: auto;
  }
  .location-map {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .intro-hero {
    padding: 72px 0;
  }
  .intro-hero h1 {
    font-size: 1.6rem;
  }
  .framework-left h2 {
    font-size: 1.8rem;
  }
  .framework-left h3 {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .fw--head h2 {
    font-size: 1.6rem;
  }
  .fw--head {
    margin-bottom: 32px;
  }
  .location-map {
    height: 260px;
  }
  .location-info {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .framework-left h2 {
    font-size: 1.5rem;
  }
  .fw-section-head h2 {
    font-size: 1.3rem;
  }
  .location-map {
    height: 220px;
  }
}
/* ===== COMMUNITY ===== */
.community {
  max-width: 1200px;
}

.community-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}

.board-item {
  border-bottom: 1px solid #eeeef5;
  transition: background 0.18s ease;
}
.board-item.is-important {
  background-color: var(--point-purple-light);
}
.board-item.is-important .board-item-title {
  color: var(--point-purple);
}

.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.18s ease;
  border-radius: 4px;
}
.board-row:hover {
  background: #fafafe;
}

.board-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.board-item-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s;
}
.board-item:hover .board-item-title {
  color: var(--point-purple);
}

.board-row-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.board-meta {
  font-size: 0.8rem;
  color: #aaa;
  white-space: nowrap;
}

.board-page-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #e4e4ee;
  border-radius: 8px;
  background: #fff;
  font-size: 0.82rem;
  color: #666;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  font-family: inherit;
}
.board-page-btn:hover {
  background: var(--point-purple-light);
  border-color: var(--point-purple-border);
  color: var(--point-purple);
}
.board-page-btn.is-active {
  background: var(--point-purple);
  border-color: var(--point-purple);
  color: #fff;
  font-weight: 700;
}

.notice-col-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #999;
  gap: 16px;
}
.notice-col-header span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  text-align: center;
}

.notice-col-num {
  flex-shrink: 0;
  min-width: 48px;
}

.notice-col-title {
  flex: 1;
}

.notice-col-meta {
  white-space: nowrap;
  width: 68px;
}

.notice-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: #bbb;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}

.faq-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open {
  border-color: var(--point-purple-border);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #f8f8ff;
}

.faq-q-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--point-purple);
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  font-size: 1.1rem;
  color: #111;
  font-weight: 500;
}

.faq-icon {
  font-size: 0.9rem;
  color: #aaa;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--point-purple);
}

.faq-answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 24px;
}

.faq-a-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--point-purple);
  flex-shrink: 0;
}

.faq-a-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.7;
}

.faq-wrap .cta-block {
  margin-top: 2rem;
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .community {
    padding: 80px 20px;
  }
  .notice-col-header {
    display: none;
  }
  .board-row {
    padding: 12px 8px;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .board-row-left {
    width: 100%;
  }
  .board-row-right {
    width: 100%;
    gap: 8px;
    justify-content: flex-end;
  }
  .board-meta {
    font-size: 0.75rem;
    color: #bbb;
  }
  .faq-question {
    padding: 16px;
    gap: 12px;
  }
  .faq-q-label,
  .faq-a-label {
    font-size: 0.85rem;
  }
  .faq-q-text {
    font-size: 0.95rem;
  }
  .faq-item.open .faq-answer {
    padding: 16px;
  }
  .faq-wrap {
    padding: 1rem 0;
  }
}
@media (max-width: 480px) {
  .board-item-title {
    font-size: 0.85rem;
  }
  .notice-num {
    font-size: 0.72rem;
    min-width: 36px;
  }
  .community-title {
    font-size: 1.3rem;
  }
}
.write-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.write-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

.write-divider {
  height: 1px;
  background: #f0f0f6;
  margin: 0 -4px;
}

.write-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.write-field .dx-htmleditor {
  min-height: 400px;
}

.write-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  letter-spacing: -0.01em;
}

.write-req {
  color: var(--point-red);
  margin-left: 2px;
}

.write-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e4e4ee;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-color);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.write-input::placeholder {
  color: #ccc;
}
.write-input:focus {
  border-color: var(--point-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.write-textarea {
  resize: none;
  min-height: 360px;
  line-height: 1.8;
}

.write-uploader {
  width: 100%;
  min-height: 120px;
  border: 2px dashed #e0e0ec;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 16px;
}
.write-uploader:not(.has-files):hover, .write-uploader:not(.has-files).drag-over {
  border-color: #ccc;
  background: #eee;
}
.write-uploader:not(.has-files):hover .write-uploader-empty i,
.write-uploader:not(.has-files):hover .write-uploader-empty p,
.write-uploader:not(.has-files):hover .write-uploader-empty span, .write-uploader:not(.has-files).drag-over .write-uploader-empty i,
.write-uploader:not(.has-files).drag-over .write-uploader-empty p,
.write-uploader:not(.has-files).drag-over .write-uploader-empty span {
  color: #999;
}
.write-uploader.has-files {
  cursor: default;
}

.write-uploader-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
}
.write-uploader-empty i, .write-uploader-empty p, .write-uploader-empty span {
  color: #ccc;
  transition: color 0.2s;
}
.write-uploader-empty i {
  font-size: 1.8rem;
}
.write-uploader-empty p {
  font-size: 0.88rem;
  font-weight: 600;
}
.write-uploader-empty span {
  font-size: 0.78rem;
}

.write-uploader-empty.hidden {
  display: none;
}

.write-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.write-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #eeeef4;
  border-radius: 6px;
}
.write-file-item i {
  font-size: 0.9rem;
  color: var(--point-purple);
  flex-shrink: 0;
}
.write-file-item .wfi-name {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.write-file-item .wfi-size {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #bbb;
}
.write-file-item .wfi-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 2px 4px;
  font-size: 0.8rem;
  transition: color 0.15s;
}
.write-file-item .wfi-remove:hover {
  color: var(--point-red);
}

.write-toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.write-toggle-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.write-toggle-info div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.write-toggle-info span {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 700;
  color: var(--sub-dark-navy);
  margin-bottom: 3px;
}
.write-toggle-info .write-toggle-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.write-toggle {
  flex-shrink: 0;
  cursor: pointer;
}
.write-toggle input[type=checkbox] {
  display: none;
}

.write-toggle-track {
  display: flex;
  align-items: center;
  width: 48px;
  height: 26px;
  border-radius: 100px;
  background: #e0e0ec;
  padding: 3px;
  transition: background 0.25s ease;
}

.write-toggle-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.write-toggle input:checked ~ .write-toggle-track {
  background: var(--point-purple);
}

.write-toggle input:checked ~ .write-toggle-track .write-toggle-thumb {
  transform: translateX(22px);
}

.write-file-uploader {
  display: none;
  align-items: center;
  gap: 8px;
}
.write-file-uploader .write-file-input {
  display: none;
}
.write-file-uploader .write-file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 44px;
  background: #fff;
  color: #555;
  border: 1.5px solid #e4e4ee;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.write-file-uploader .write-file-btn:hover {
  border-color: var(--point-purple);
  background: var(--point-purple-light);
  color: var(--point-purple);
}
.write-file-uploader .write-file-name {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid #e4e4ee;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: inherit;
  color: #aaa;
  background: #fafafa;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.write-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .write-uploader {
    display: none;
  }
  .write-card {
    padding: 24px 20px;
    gap: 20px;
  }
  .write-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .write-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .dx-htmleditor-toolbar-wrapper {
    display: none !important;
  }
  .dx-htmleditor-container {
    border-top: 1px solid #d3d3d3 !important;
  }
  .write-toggle-row .write-toggle-desc {
    display: none;
  }
}
@media (max-width: 480px) {
  .write-card {
    padding: 20px 16px;
  }
  .write-label {
    font-size: 1rem;
  }
  .write-input {
    padding: 11px 14px;
    font-size: 0.85rem;
  }
}
.detail-wrap {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.detail-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 28px;
}

.detail-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.detail-meta-dot {
  color: #ddd;
}

.detail-divider {
  height: 1px;
  background: #f0f0f6;
  margin: 0 -4px;
}

.detail-body {
  padding-top: 32px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-color);
  min-height: 200px;
}

.detail-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 32px 0 80px;
}

@media (max-width: 768px) {
  .detail-wrap {
    padding: 24px 20px;
  }
  .detail-title {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .detail-actions {
    flex-direction: column;
  }
  .detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.archive {
  max-width: 1200px;
}

.archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--sub-dark-navy);
}

.archive-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sub-dark-navy);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.archive-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}

.archive-grid {
  columns: 3;
  column-gap: 24px;
}

.archive-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #eaeaf4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.archive-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.archive-card:hover .archive-card-title {
  color: var(--point-purple);
}

.archive-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.archive-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.archive-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sub-dark-navy);
  line-height: 1.5;
  letter-spacing: -0.02em;
  transition: color 0.18s;
}

.archive-card-company {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .archive-grid {
    columns: 2;
  }
}
@media (max-width: 768px) {
  .archive {
    padding: 80px 20px;
  }
  .archive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .archive-grid {
    columns: 2;
    column-gap: 16px;
  }
  .archive-card {
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .archive-grid {
    columns: 1;
  }
}
.space-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.space-tab {
  padding: 9px 20px;
  border-radius: 8px;
  border: 1.5px solid #e4e4ec;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.space-tab:hover {
  border-color: var(--point-purple-border);
  color: var(--point-purple);
  background: var(--point-purple-light);
}
.space-tab.active {
  background: var(--point-purple);
  border-color: var(--point-purple);
  color: #fff;
}

.space-panel {
  display: none;
}
.space-panel.active {
  display: block;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.space-info,
.space-plan {
  min-width: 0;
}

.space-plan {
  display: flex;
  flex-direction: column;
}

.space-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sub-dark-navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.space-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid #eeeef5;
}

.space-meta-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeef5;
  align-items: baseline;
}

.space-meta-label {
  flex-shrink: 0;
  width: 36px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.space-meta-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sub-dark-navy);
}

.space-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.space-desc li {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.space-desc li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--point-purple-border);
  margin-top: 8px;
}

.space-img {
  width: 100%;
  height: 440px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eaeaf4;
  box-shadow: var(--shadow-sm);
  background: #f5f5f7;
}
.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-img--zoomable {
  position: relative;
  cursor: zoom-in;
}

.space-img-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
  border-radius: 14px;
}

.space-img-zoom i {
  font-size: 2.4rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transform: scale(0.8);
  transition: transform 0.25s;
}

.space-img--zoomable:hover .space-img-zoom {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.space-img--zoomable:hover .space-img-zoom i {
  transform: scale(1);
}

/* 라이트박스 */
.img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.img-lightbox.is-open {
  display: flex;
}

.img-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}

.img-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightbox-in 0.25s ease;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.93);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.img-lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  display: block;
}

.img-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.img-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.img-lightbox-close i {
  font-size: 1.4rem;
  color: #fff;
}

@media (max-width: 1024px) {
  .space-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .space-page {
    padding: 80px 20px 80px;
  }
  .space-tabs {
    gap: 6px;
  }
  .space-tab {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
  .space-name {
    font-size: 1.4rem;
  }
}
#join_page_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
}

.jd_title {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}
.jd_title span {
  color: var(--point-purple);
}

.join_tab_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0;
  gap: 20px;
}
.join_tab_wrap .tab_menu {
  display: flex;
  width: 400px;
  background: #f2f2f7;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}
.join_tab_wrap .tab_menu button {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  color: #aaa;
  border: none;
  background: transparent;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.join_tab_wrap .tab_menu button:hover {
  color: #555;
}
.join_tab_wrap .tab_menu button.on {
  color: var(--point-purple);
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.join_tab_content {
  display: none;
}
.join_tab_content.on {
  display: block;
}

#join_detail_user .wrap_in,
#join_detail_cmpny .wrap_in {
  width: 400px;
  padding: 40px 0 100px;
}
#join_detail_user .jd_line,
#join_detail_cmpny .jd_line {
  display: flex;
  flex-direction: column;
  height: auto;
  margin-bottom: 24px;
  position: relative;
}
#join_detail_user .jd_line label:not(.form__label--file),
#join_detail_cmpny .jd_line label:not(.form__label--file) {
  display: flex;
  align-items: center;
  height: 28px;
  font-size: 16px;
  padding-top: 10px;
  padding-left: 5px;
  color: #555;
  margin-bottom: 10px;
}
#join_detail_user .jd_line label:not(.form__label--file).req::after,
#join_detail_cmpny .jd_line label:not(.form__label--file).req::after {
  content: " *";
  color: #ff0000;
  margin-left: 3px;
}
#join_detail_user .jd_line input,
#join_detail_cmpny .jd_line input {
  height: 45px;
  border: 1px solid #e4e4ec;
  border-radius: 5px;
  padding: 0 10px;
}
#join_detail_user .jd_line .password_cover,
#join_detail_cmpny .jd_line .password_cover {
  position: absolute;
  right: 10px;
  top: 40px;
  transform: translateY(50%);
  width: 20px;
  cursor: pointer;
}
#join_detail_user .jd_line .password_cover img,
#join_detail_cmpny .jd_line .password_cover img {
  width: 100%;
  height: 100%;
}
#join_detail_user .jd_line .password_cover .eye_on,
#join_detail_cmpny .jd_line .password_cover .eye_on {
  display: none;
}
#join_detail_user .jd_line .jd_line_status,
#join_detail_cmpny .jd_line .jd_line_status {
  font-size: 13px;
  line-height: 1;
  margin-top: 8px;
  margin-left: 8px;
  color: #555;
}
#join_detail_user .jd_line .jd_line_status.cant,
#join_detail_cmpny .jd_line .jd_line_status.cant {
  color: #ff0000;
}
#join_detail_user .jd_line .jd_line_status.can,
#join_detail_cmpny .jd_line .jd_line_status.can {
  color: green;
}
#join_detail_user .jd_line .input_line,
#join_detail_cmpny .jd_line .input_line {
  display: flex;
  justify-content: space-between;
}
#join_detail_user .jd_line .input_line input,
#join_detail_cmpny .jd_line .input_line input {
  width: calc(100% - 110px);
}
#join_detail_user .jd_line .input_line button,
#join_detail_cmpny .jd_line .input_line button {
  width: 100px;
}
#join_detail_user .jd_condition .jdc_title,
#join_detail_cmpny .jd_condition .jdc_title {
  color: #555;
  font-size: 16px;
  font-weight: bold;
  padding-left: 5px;
  margin-bottom: 12px;
}
#join_detail_user .jd_condition .jdc_wrap,
#join_detail_cmpny .jd_condition .jdc_wrap {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
}
#join_detail_user .jd_condition .jdc_cndtn_head,
#join_detail_cmpny .jd_condition .jdc_cndtn_head {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#join_detail_user .jd_condition .jdc_line,
#join_detail_cmpny .jd_condition .jdc_line {
  display: flex;
}
#join_detail_user .jd_condition .jdc_line input[type=checkbox],
#join_detail_cmpny .jd_condition .jdc_line input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 6px;
  margin-bottom: auto;
  margin-right: 8px;
}
#join_detail_user .jd_condition .jdc_line_in,
#join_detail_cmpny .jd_condition .jdc_line_in {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: color 0.15s;
}
#join_detail_user .jd_condition .jdc_line_in:hover .jdc_all_agree,
#join_detail_cmpny .jd_condition .jdc_line_in:hover .jdc_all_agree {
  color: var(--point-purple);
}
#join_detail_user .jd_condition .jdc_all_agree,
#join_detail_cmpny .jd_condition .jdc_all_agree {
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
  transition: color 0.15s;
}
#join_detail_user .jd_condition .jd_condition_descript,
#join_detail_cmpny .jd_condition .jd_condition_descript {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}
#join_detail_user .jd_condition .jdc_line_title,
#join_detail_cmpny .jd_condition .jdc_line_title {
  color: #555;
  font-size: 14px;
  line-height: 2;
  cursor: pointer;
  transition: color 0.15s;
  flex: 1;
}
#join_detail_user .jd_condition .jdc_line_title:hover,
#join_detail_cmpny .jd_condition .jdc_line_title:hover {
  color: var(--point-purple);
}
#join_detail_user .jd_condition .essential .jdc_line_title,
#join_detail_cmpny .jd_condition .essential .jdc_line_title {
  color: #222;
}
#join_detail_user .jd_condition .essential .jdc_line_title:hover,
#join_detail_cmpny .jd_condition .essential .jdc_line_title:hover {
  color: var(--point-purple);
}
#join_detail_user .jd_condition .terms-detail-btn,
#join_detail_cmpny .jd_condition .terms-detail-btn {
  flex-shrink: 0;
  align-self: center;
  background: none;
  border: none;
  color: #999;
  font-size: 12px;
  cursor: pointer;
  padding: 2px 4px;
  text-decoration: underline;
  transition: color 0.15s;
}
#join_detail_user .jd_condition .terms-detail-btn:hover,
#join_detail_cmpny .jd_condition .terms-detail-btn:hover {
  color: var(--point-purple);
}
#join_detail_user .jdc_btn_wrap button,
#join_detail_cmpny .jdc_btn_wrap button {
  width: 100%;
  height: 45px;
}
#join_detail_user .jdc_btn_wrap button:focus,
#join_detail_cmpny .jdc_btn_wrap button:focus {
  outline: none;
}
#join_detail_user .jdc_btn_wrap button:disabled,
#join_detail_cmpny .jdc_btn_wrap button:disabled {
  background-color: #f2f2f2;
  color: #555555;
}

#join_detail_cmpny .jd_line input[type=file] {
  display: none;
}
#join_detail_cmpny .jd_line select {
  width: 100%;
  height: 45px;
  border: 1px solid #e4e4ec;
  border-radius: 5px;
  padding: 0 10px;
  color: #555;
}
#join_detail_cmpny .jd_line .file_area {
  display: flex;
  align-items: center;
  gap: 8px;
}
#join_detail_cmpny .jd_line .file_area .form__label--file {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 45px;
  background: #fff;
  color: #666;
  border: 1px solid #e4e4ec;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#join_detail_cmpny .jd_line .file_area .form__label--file:hover {
  border-color: #d0d0dc;
  background: #f9f9fb;
}
#join_detail_cmpny .jd_line .file_area .form__span--file {
  height: 45px;
  line-height: 45px;
  border: 1px solid #e4e4ec;
  border-radius: 5px;
  padding: 0 10px;
  width: 100%;
  font-size: 13px;
  color: #aaa;
  background-color: #f9f9f9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#join_detail_cmpny .jd_location .input_line,
#join_detail_cmpny .jd_location input {
  height: 45px;
  margin-bottom: 4px;
  cursor: pointer;
}
#join_detail_cmpny .category .jd_select_with_btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
#join_detail_cmpny .category .jd_select_with_btn select {
  width: calc(100% - 50px);
}
#join_detail_cmpny .category .jd_select_with_btn button {
  height: 45px;
  width: 45px;
  background-color: transparent;
  background-image: url("/image/icon_xmark_main.png");
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position: center;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  text-indent: -999999px;
}
#join_detail_cmpny #jd_category .add_category {
  display: block;
  width: 100%;
  height: 45px;
}

@media screen and (max-width: 460px) {
  .join_tab_wrap .tab_menu {
    width: 100%;
    padding: 8px 15px;
  }
  #join_detail_cmpny .wrap_in,
  #join_detail_user .wrap_in {
    width: 100%;
    padding: 40px 20px 80px;
  }
}
#login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login .wrap_in {
  padding-top: 50px;
  font-size: 16px;
}

#login .wrap_in .login_wrap {
  display: flex;
  flex-direction: column;
  width: 360px;
  margin: 0 auto;
  word-break: keep-all;
}

#login .login_logo {
  width: 120px;
  height: auto;
  margin: 0 auto 30px auto;
}

#login .login_sub_title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}
#login .login_sub_title p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
#login .login_sub_title span {
  font-weight: bold;
  color: var(--point-purple);
}

#login .login_radio {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#login .login_radio_in {
  display: flex;
  width: auto;
  border: 1px solid #ccc;
  padding: 0 20px 0 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
#login .login_radio_in:hover {
  border-color: var(--point-purple);
  background-color: var(--point-purple-light);
}

#login .login_radio_in:has(input:checked) {
  border-color: var(--point-purple);
  background-color: var(--point-purple-light);
}

#login .login_radio_personal {
  margin-right: 8px;
  cursor: pointer;
}

#login .login_radio_in label {
  line-height: 40px;
  font-size: 15px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
}

#login .login_radio_in:hover label,
#login .login_radio_in:has(input:checked) label {
  color: var(--point-purple);
}

#login .login_radio input {
  appearance: none;
  cursor: pointer;
}

#login .login_id {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

#login .login_pw {
  margin-bottom: 8px;
  position: relative;
}

#login .login_pw .password_cover {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
  transition: color 0.2s;
}
#login .login_pw .password_cover:hover {
  color: var(--point-purple);
}

#login .login_pw .password_cover .eye_on {
  display: none;
}

#login .login_id input,
#login .login_pw input {
  width: 100%;
  height: 45px;
  border: 1px solid #e4e4ec;
  border-radius: 5px;
  padding: 0 15px 0 45px;
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: auto 18px;
}

#login .login_pw input::-ms-reveal {
  display: none;
}

#login .login_id label,
#login .login_pw label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  /* font-weight: bold; */
}

#login .login_method_wrap .login_line {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  line-height: 1;
  margin-bottom: 30px;
}

#login .login_option_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px;
}

#login .login_save {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
#login .login_save input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
}
#login .login_save input[type=checkbox]:checked {
  background-color: var(--point-purple);
  border-color: var(--point-purple);
  background-size: 68%;
}
#login .login_save label {
  font-size: 13px;
  color: #777;
  cursor: pointer;
  line-height: 1;
}

#login .login_wrap .login_find {
  display: flex;
  align-items: center;
  gap: 4px;
}
#login .login_wrap .login_find a {
  font-size: 13px;
  color: #999;
  line-height: 1;
  transition: color 0.18s;
}
#login .login_wrap .login_find a:hover {
  color: var(--point-purple);
}
#login .login_wrap .login_find a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  background: #ddd;
  margin-right: 4px;
  vertical-align: middle;
}

#login .btn--full {
  margin-bottom: 10px;
  letter-spacing: 2px;
}

#login .btn--cta-white {
  margin-bottom: 30px;
}

#login .login_list ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#login .login_list ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-size: 55% auto;
  background-position: center;
  cursor: pointer;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
#login .login_list ul li:hover {
  background-color: var(--point-purple-light);
  transform: translateY(-2px);
  border: 1px solid var(--point-purple-border);
}

#login .login_list ul li:first-child {
  background-image: url("/include/img/naver.svg");
}

#login .login_list ul li:nth-child(2) {
  background-image: url("/include/img/kakao.png");
  background-position: center 12px;
}

#login .login_list ul li:nth-child(3) {
  background-image: url("/include/img/google.png");
}

@media screen and (max-width: 460px) {
  #login .wrap_in {
    padding-top: 20px;
    width: 100%;
  }
  #login .wrap_in .login_wrap {
    width: 100%;
    padding: 0 20px 40px;
  }
  #login .login_sub_title {
    font-size: 14px;
  }
  #login .login_id input,
  #login .login_pw input {
    width: 100%;
  }
}
/* login end */
#recall_page_wrap #login .wrap_in {
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 350px);
  padding: 0;
  position: relative;
}

#recall_page_wrap #login .wrap_in .tab_menu {
  display: flex;
  width: 100%;
  background: #f2f2f7;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 30px;
}
#recall_page_wrap #login .wrap_in .tab_menu button {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  color: #aaa;
  border: none;
  background: transparent;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
#recall_page_wrap #login .wrap_in .tab_menu button:hover {
  color: #555;
}
#recall_page_wrap #login .wrap_in .tab_menu button.on {
  color: var(--point-purple);
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

#recall_page_wrap #login .wrap_in form {
  height: 500px;
  width: 100%;
}

#recall_page_wrap #login .wrap_in .recall_info_box {
  display: none;
}
#recall_page_wrap #login .wrap_in .recall_info_box.on {
  display: block;
}

#recall_page_wrap #login .wrap_in .recall_info_box > p {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

#recall_page_wrap #login .wrap_in .recall_info_box > span {
  font-size: 13px;
  color: #999;
}

#recall_page_wrap .recall_info_detail {
  margin: 24px 0;
}
#recall_page_wrap .recall_info_detail label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
#recall_page_wrap .recall_info_detail .input_line {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
#recall_page_wrap .recall_info_detail .input_line button {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 16px;
  height: 45px;
  min-width: 96px;
}
#recall_page_wrap .recall_info_detail input {
  flex: 1;
  min-width: 0;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
  transition: border-color 0.18s;
}
#recall_page_wrap .recall_info_detail input:focus {
  border-color: var(--point-purple);
}
#recall_page_wrap .recall_info_detail input[readonly] {
  background: #f9f9fb;
  color: #aaa;
  cursor: default;
}

#recall_page_wrap .link_login_btn {
  display: flex;
  justify-content: center;
}
#recall_page_wrap .link_login_btn span {
  font-size: 13px;
  color: #aaa;
  transition: color 0.18s;
}
#recall_page_wrap .link_login_btn:hover span {
  color: var(--point-purple);
}

@media screen and (max-width: 460px) {
  #recall_page_wrap #login .wrap_in {
    height: auto;
    padding: 30px 20px 60px;
  }
  #recall_page_wrap #login .wrap_in form {
    height: auto;
  }
}
#recall_page_wrap .recall_info_box .btn--cta {
  width: 100%;
  margin-bottom: 16px;
  transform: none !important;
}

.mypage {
  max-width: 1200px;
}

.mypage-wrap {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.mypage-box {
  height: 380px;
  max-height: 380px;
  min-width: 0;
  background: #fff;
  border: 1px solid #eeeef4;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.mypage-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f6;
}

.mypage-user .mypage-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--point-purple-light);
  border: 2px solid var(--point-purple-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234F46E5' opacity='0.4'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: 55%;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.user-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.user-name {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--sub-dark-navy) !important;
}

.mypage-user .btn {
  width: 100%;
  margin-top: 8px;
}

.mypage-box:not(.mypage-user) .mypage-cont {
  flex: 1;
  overflow-y: auto;
}

.mypage-grid {
  width: 100%;
  padding-right: 8px;
}
.mypage-grid .mypage-grid-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f8;
  cursor: pointer;
  transition: background 0.15s;
}
.mypage-grid .mypage-grid-row:last-child {
  border-bottom: none;
}
.mypage-grid .mypage-grid-row:hover .mg-subject {
  color: var(--point-purple);
}

.mg-status {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.mg-status--wait {
  background: var(--point-orange-light);
  border: 1px solid var(--point-orange-border);
  color: var(--point-orange);
}
.mg-status--done {
  background: var(--point-purple-light);
  border: 1px solid var(--point-purple-border);
  color: var(--point-purple);
}

.mg-subject {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}

.mg-date {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #bbb;
}

.mypage-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: #ccc;
}
.mypage-empty i {
  font-size: 2rem;
}
.mypage-empty p {
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .mypage-wrap {
    grid-template-columns: 1fr;
  }
  .mypage-box {
    height: auto;
    max-height: none;
    min-width: 0;
  }
  .mypage-box:not(.mypage-user) {
    height: 320px;
    max-height: 320px;
  }
  .mypage-user .mypage-cont {
    flex-direction: row;
    text-align: left;
    flex-wrap: wrap;
  }
  .mypage-user .mypage-cont .avatar {
    width: 60px;
    height: 60px;
  }
  .mypage-user .mypage-cont .user-info {
    flex: 1;
  }
  .mypage-user .mypage-cont .btn {
    width: auto;
    margin-top: 0;
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .mypage-box {
    padding: 24px 20px;
  }
  .mypage-user .mypage-cont {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mypage-user .mypage-cont .btn {
    width: 100%;
    margin-top: 8px;
  }
  .mg-date {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
