@charset "utf-8";

/* ==========================================================================
   Layout — 사용자 공통 레이아웃·컴포넌트·페이지
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Layout
   -------------------------------------------------------------------------- */
.wrap {
  min-height: calc(100vh - 540px);
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
}

.body {
  display: flex;
  flex: 1;
  min-height: 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.main {
  flex: 1;
  min-width: 0;
  background-color: var(--color-white);
}

.main__inner {
  padding: 40px 40px 80px;
  max-width: calc(var(--content-max-width) + 80px);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  height: var(--header-height);
  background-color: var(--color-white);
  flex-shrink: 0;
  overflow: visible;
}

.header.is-scrolled {
  box-shadow: 6px -4px 11px rgba(0, 0, 0, 0.5);
}

body {
  padding-top: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: visible;
}

.logo img {
  width: 381px;
  height: 28px;
}

.logo a:hover {
  color: var(--color-primary);
}

.gnb {
  overflow: visible;
}

.gnb__list {
  display: flex;
  align-items: center;
  gap: 80px;
}

.gnb__item {
  position: relative;
}

.gnb__link {
  display: block;
  padding: 22px 0px;
  font-size: 26px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.15s;
  font-weight: 800;
}

.gnb__item:hover .gnb__link,
.gnb__item:focus-within .gnb__link,
.gnb__item.is-hover .gnb__link {
  color: var(--color-accent);
}


/* GNB 드롭다운 */
.gnb__dropdown {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 300;
}

.gnb__item:hover .gnb__dropdown,
.gnb__item:focus-within .gnb__dropdown,
.gnb__item.is-hover .gnb__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnb__dropdown-inner {
  position: relative;
  padding: 10px 16px ;
  background-color: var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gnb__dropdown-inner::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-primary);
}

.gnb__sub a {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
  transition: color 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gnb__sub li:last-child a {
  border-bottom: none;
}

.gnb__sub a:hover,
.gnb__sub li.is-active a {
  color: var(--color-accent);
}

.header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  flex-shrink: 0;
}

.header__menu-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.header__menu-icon--close {
  display: none;
}

body.is-gnb-open .header__menu-icon--open {
  display: none;
}

body.is-gnb-open .header__menu-icon--close {
  display: block;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  height: 50px;
  background-color: #ee6d82;
  border-bottom: none;
  flex-shrink: 0;
}

.breadcrumb__inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.breadcrumb__nav {
  flex: 1;
  min-width: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url("../images/common/breadcrumb_arrow.svg") center / contain no-repeat;
  vertical-align: middle;
}

.breadcrumb__item {
  color: #ffdada;
}

.breadcrumb__home {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.breadcrumb__home:hover {
  color: #ffffff;
}

.breadcrumb__item.is-current {
  color: #ffffff;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.wrap .sidebar {
  width: 195px;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}

.wrap .sidebar__title {
  margin-bottom: 0;
  padding: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #5a371e;
}

.wrap .sidebar__item {
  border-left: 3px solid #eaeaea;
}

.wrap .sidebar__item a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #5a371e;
  transition: color 0.15s, background-color 0.15s;
}

.wrap .sidebar__item a.long_word {
  word-spacing: -7%;
  padding-right: 0;
}

.wrap .sidebar__item a:hover {
  color: #ee6d82;
}

.wrap .sidebar__item.is-active {
  border-left-color: #ee6d82;
}

.wrap .sidebar__item.is-active a {
  color: #ee6d82;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Page — US030201 교육 신청 지역 선택
   -------------------------------------------------------------------------- */
.user-apply-page .body {
  max-width: 1400px;
  padding: 63px 0 80px;
  gap: 5px;
}

.user-apply-page .main {
  background-color: transparent;
}

.user-apply-page .main__inner {
  padding: 0;
  max-width: none;
}

.sub-page-head {
  margin-bottom: 58px;
}

.sub-page-head__title {
  font-size: 28px;
  font-weight: 700;
  color: #373737;
  line-height: normal;
}

.sub-page-head__desc {
  margin-top: 18px;
  color: #373737;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.region-select__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(158px, 1fr));
  gap: 15px 16px;
  max-width: 1150px;
}

.region-select__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 15px 24px;
  border-radius: 999px;
  background-color: #5a371e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  transition: background-color 0.2s ease;
}

.region-select__btn:hover,
.region-select__btn:focus-visible {
  background-color: #ff8296;
}

/* --------------------------------------------------------------------------
   Page — US030301 지역 센터 교육 리스트
   -------------------------------------------------------------------------- */
/* 페이지 타이틀 + 오시는길 버튼 행 */
.edu-detail-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-place-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 15px 4px 10px;
  border-radius: 30px;
  background-color: #5a371e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  transition: background-color 0.15s;
}

.edu-place-btn:hover {
  background-color: #6f4527;
}

.edu-place-btn svg,
.edu-place-btn img {
  width: 20px;
  height: 20px;
}

/* 개인교육 / 단체교육 탭 */
.edu-tabs {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.edu-tabs__inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px;
  border: 1px solid #d0d0d0;
  border-radius: 18px;
}

.edu-tab {
  padding: 15px 60px;
  border-radius: 16px;
  background-color: #fff;
  color: #8d8d8d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.edu-tab.is-active {
  background-color: #ff8296;
  color: #fff;
}

/* 필터 영역 */
.edu-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.edu-select {
  position: relative;
  flex: 0 0 230px;
  width: 230px;
  min-width: 0;
}

.edu-select select {
  width: 100%;
  max-width: 100%;
  padding: 15px 40px 15px 15px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background-color: #fff;
  color: #373737;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  appearance: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edu-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../images/common/arrow_down_gray.svg") center / contain no-repeat;
  pointer-events: none;
}

/* 교육 리스트 */
.edu-panel[hidden] {
  display: none;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

/* 교육 카드 */
.edu-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 186px;
  padding: 30px 45px;
  border: 5px solid var(--edu-border, #dedede);
  border-radius: 30px;
  background-color: #fff;
}

.edu-card__head {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  justify-content: center;
  min-width: 0;
}

.edu-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 150px;
  max-width: 300px;
  box-sizing: border-box;
  padding: 8px 15px;
  border-radius: 30px;
  background-color: var(--edu-main, #aaa);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.edu-card__title {
  width: 100%;
  color: #5a371e;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.edu-card__info {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-card__meta {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
}

.edu-card__meta-row {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
}

.edu-card__meta-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: #5a371e;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.edu-card__meta-label svg,
.edu-card__meta-label img {
  width: 18px;
  height: 18px;
}

.edu-card__meta-value {
  color: #5a371e;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.edu-card__btn {
  flex-shrink: 0;
  min-width: 99px;
  padding: 10px 20px;
  border: 1px solid #727272;
  border-radius: 30px;
  background-color: #fff;
  color: #727272;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.edu-card__btn:hover {
  background-color: #727272;
  color: #fff;
}

/* 대기신청 상태 */
.edu-card__btn--wait {
  border-color: #ff8296;
  color: #ff8296;
}

.edu-card__btn--wait:hover {
  background-color: #ff8296;
  color: #fff;
}

/* 마감 상태 */
.edu-card.is-closed {
  overflow: hidden;
}

.edu-card.is-closed::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
  border-radius: 25px;
  pointer-events: none;
}

.edu-card.is-closed .edu-card__btn {
  position: relative;
  z-index: 1;
  cursor: not-allowed;
}

.edu-card.is-closed .edu-card__btn:hover {
  background-color: #fff;
  color: #727272;
}

/* 주 컬러별 케이스 클래스 — 공통 팔레트(base.css) 참조 */
.edu-card--green   { --edu-main: var(--edu-green-badge);   --edu-border: var(--edu-green-border); }
.edu-card--teal    { --edu-main: var(--edu-teal-badge);    --edu-border: var(--edu-teal-border); }
.edu-card--blue    { --edu-main: var(--edu-blue-badge);    --edu-border: var(--edu-blue-border); }
.edu-card--yellow  { --edu-main: var(--edu-yellow-badge);  --edu-border: var(--edu-yellow-border); }
.edu-card--orange  { --edu-main: var(--edu-orange-badge);  --edu-border: var(--edu-orange-border); }
.edu-card--gray    { --edu-main: var(--edu-gray-badge);    --edu-border: var(--edu-gray-border); }
.edu-card--purple  { --edu-main: var(--edu-purple-badge);  --edu-border: var(--edu-purple-border); }
.edu-card--pink    { --edu-main: var(--edu-pink-badge);    --edu-border: var(--edu-pink-border); }
.edu-card--red     { --edu-main: var(--edu-red-badge);     --edu-border: var(--edu-red-border); }
.edu-card--navy    { --edu-main: var(--edu-navy-badge);    --edu-border: var(--edu-navy-border); }
.edu-card--skyblue { --edu-main: var(--edu-skyblue-badge); --edu-border: var(--edu-skyblue-border); }
.edu-card--lime    { --edu-main: var(--edu-lime-badge);    --edu-border: var(--edu-lime-border); }
.edu-card--brown   { --edu-main: var(--edu-brown-badge);   --edu-border: var(--edu-brown-border); }
.edu-card--coral   { --edu-main: var(--edu-coral-badge);   --edu-border: var(--edu-coral-border); }
.edu-card--olive   { --edu-main: var(--edu-olive-badge);   --edu-border: var(--edu-olive-border); }
.edu-card--gold    { --edu-main: var(--edu-gold-badge);    --edu-border: var(--edu-gold-border); }
.edu-card--aqua    { --edu-main: var(--edu-aqua-badge);    --edu-border: var(--edu-aqua-border); }
.edu-card--violet  { --edu-main: var(--edu-violet-badge);  --edu-border: var(--edu-violet-border); }
.edu-card--burgundy { --edu-main: var(--edu-burgundy-badge); --edu-border: var(--edu-burgundy-border); }
.edu-card--charcoal { --edu-main: var(--edu-charcoal-badge); --edu-border: var(--edu-charcoal-border); }

/* --------------------------------------------------------------------------
   지점안내 팝업 (공통) — 오시는길 / 지역 센터 공통 모달
   -------------------------------------------------------------------------- */
.branch-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.branch-modal.is-open {
  display: block;
}

.branch-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.branch-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 1000px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.branch-modal__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid #ddd;
}

.branch-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.branch-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #373737;
}

.branch-modal__close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.branch-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.branch-modal__map {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 300px;
  margin: 0 30px 30px;
  background: #eee;
  overflow: hidden;
}

.branch-modal__map-text {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

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

.branch-modal__region {
  margin-bottom: 20px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #373737;
}

.branch-modal__card-wrap {
  padding: 0 30px;
}

.branch-modal__card {
  padding: 25px;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 20px;
}

.branch-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.branch-info__item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
}

.branch-info__label {
  margin-bottom: 5px;
  color: #888;
  line-height: 20px;
}

.branch-info__value {
  color: #373737;
  line-height: 20px;
}

.branch-info__facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 5px;
}

.branch-facility {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.branch-facility img {
  margin-bottom: 5px;
  width: 30px;
  height: 30px;
}

.branch-facility span {
  font-size: 14px;
  font-weight: 700;
  color: #373737;
}

body.is-modal-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   오시는길 리스트 (US020401) — 전국 센터 카드
   -------------------------------------------------------------------------- */
.visit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-card {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 195px;
  padding: 35px;
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.visit-card:hover,
.visit-card:focus-visible {
  border-color: #ee6d82;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  outline: none;
}

.visit-card__name {
  flex-shrink: 0;
  width: 160px;
  padding: 0 30px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.96px;
  color: #373737;
  text-align: center;
}

.visit-card__body {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: 0 30px;
}

.visit-card__addr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: #888;
}

.visit-card__addr-text {
  font-weight: 700;
  line-height: 20px;
}

.visit-card__tel {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #888;
}

.visit-card__icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.visit-card__icons img {
  width: 30px;
  height: 30px;
}

.visit-card__untact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 72px;
}

.visit-card__untact img {
  width: 25px;
  height: 25px;
}

.visit-card__untact-text {
  font-size: 15px;
  font-weight: 800;
  color: #2859c5;
}

/* --------------------------------------------------------------------------
   약관 동의 (US030302)
   -------------------------------------------------------------------------- */
.agree__item {
  margin-bottom: 27px;
}

.agree__label {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 800;
  color: #373737;
}

.agree__box {
  height: 400px;
  padding: 30px;
  padding-right: 25px;
  border: 1px solid #cacaca;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #373737;
}

.policy_wrap {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.agree__box-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.agree__box-sub {
  margin-top: 14px;
  font-weight: 700;
}

.agree__box p {
  margin: 0;
}

.agree__box-indent {
  padding-left: 24px;
}

.agree__radios {
  display: flex;
  gap: 63px;
  align-items: center;
  margin-top: 20px;
  justify-content: end;
}

.agree__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   교육신청 정보입력 (US030303)
   -------------------------------------------------------------------------- */
.apply-summary {
  margin-bottom: 50px;
}

.apply-summary .edu-card {
  min-height: 0;
}

.apply-info__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.form-field.is-error .form-birth .form-select select {
  border-color: var(--color-error);
}

/* --------------------------------------------------------------------------
   교육신청 내역 입력 (US030401)
   -------------------------------------------------------------------------- */
.apply-history {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-history__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.apply-history__form {
  width: 100%;
  max-width: 500px;
  padding: 35px 40px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
}

.apply-history__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.apply-history__submit {
  width: 100%;
  padding: 12px 40px;
  background: #ff8296;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.apply-history__submit:hover,
.apply-history__submit:focus-visible {
  background: #ee6d82;
  outline: none;
}

.apply-history__notice {
  display: flex;
  gap: 3px;
  align-items: flex-start;
  max-width: 500px;
  color: #868686;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.apply-history__notice-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   교육신청 내역 리스트 (US030402)
   -------------------------------------------------------------------------- */
.history-list__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.history-table {
  width: 100%;
  min-width: 1190px;
  border-collapse: collapse;
}

.history-table thead th {
  padding: 20px 10px;
  background: #5a371e;
  border-bottom: 1px solid #ddd;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.history-table tbody td {
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
  color: #373737;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

.history-table tbody tr.history-table__row--closed td {
  background: #c1c1c1;
  color: #8a8a8a;
}

.history-table tbody td.history-table__title {
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.history-table__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.history-status {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.history-status--wait {
  color: #ff8296;
}

.history-status--ing {
  color: #2f6bff;
}

.history-status--selected {
  color: #4caf50;
}

.history-status--next {
  color: #ff8a00;
}

.history-status--cancel {
  color: #727272;
}

.history-status--closed {
  color: #ff0000;
}

.history-status--review-done {
  color: #5a371e;
}

@media (max-width: 1024px) {
  .history-status {
    font-size: 13px;
  }

  .history-card.history-card--closed {
    background: #c1c1c1;
  }
}

.history-table__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 4px 15px;
  background: #ff8296;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

.history-table__btn:hover,
.history-table__btn:focus-visible {
  background: #ee6d82;
  outline: none;
}

.history-list__cards {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.history-card {
  padding: 15px 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
}

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

.history-card__row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 10px;
}

.history-card__label,
.history-card__value {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 20px;
}

.history-card__label {
  color: #373737;
  font-weight: 400;
  opacity: 0.8;
}

.history-card__value {
  justify-content: flex-end;
  color: #373737;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.history-card__status {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.history-card__status .history-status {
  font-size: 13px;
}

.history-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  background: #ff8296;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

.history-card__btn:hover,
.history-card__btn:focus-visible {
  background: #ee6d82;
  outline: none;
}

a.history-table__btn,
a.history-card__btn {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   신청 취소 비밀번호 팝업 (US030402)
   -------------------------------------------------------------------------- */
.cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.cancel-modal.is-open {
  display: block;
}

.cancel-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.cancel-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 520px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.cancel-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid #ddd;
}

.cancel-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #373737;
}

.cancel-modal__close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cancel-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.cancel-modal__body {
  padding: 30px;
}

.cancel-modal__desc {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #373737;
}

.cancel-modal__foot {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 30px 30px;
}

.cancel-modal__foot .btn--cancel,
.cancel-modal__foot .btn--submit {
  min-width: 130px;
  padding: 12px 20px;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   후기 작성 (US030403)
   -------------------------------------------------------------------------- */
.review-write__form {
  display: flex;
  flex-direction: column;
  gap: 63px;
}

.review-write__fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-write__files {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-write__file-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-write__file-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.review-write__file-count {
  font-size: 14px;
  line-height: 20px;
  color: #373737;
}

.review-write__file-count strong {
  color: #ee6d82;
  font-weight: 800;
}

.review-write__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.review-write__file-help {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #868686;
}

.review-write__file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-write__file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background: #fff;
}

.review-write__file-name {
  flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #373737;
  word-break: break-all;
}

.review-write__file-remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.review-write__file-remove svg {
  display: block;
  width: 20px;
  height: 20px;
}

.review-survey {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.review-survey__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #373737;
}

.review-survey__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-survey__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background: #fff;
  min-width: 0;
  min-inline-size: 0;
}

.review-survey__question {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #373737;
}

.review-survey__item.is-error {
  border-color: var(--color-error);
}

.review-survey__item.is-error .form-field__error {
  display: block;
}

.review-survey__hint {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #808080;
}

.review-survey__item .form-radios {
  margin: 0;
}

.review-survey__item .input-textarea {
  margin-top: 0;
}

.review-write__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* --------------------------------------------------------------------------
   학교 검색 팝업 (CO010101)
   - 헤더/푸터 고정, 본문만 스크롤
   -------------------------------------------------------------------------- */
.school-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.school-modal.is-open {
  display: block;
}

.school-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.school-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 1000px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.school-modal__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid #ddd;
}

.school-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #373737;
}

.school-modal__close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}

.school-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.school-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px;
}

.school-modal__foot {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 30px 30px;
  background: #fff;
}

.school-modal__filters-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.school-modal__filters-row .form-select,
.school-modal__filters-row .input-text {
  flex: 1 1 0;
  min-width: 0;
}

.school-modal__filters-row .school-modal__search-btn {
  flex: 0 0 100px;
  min-width: 100px;
  padding: 15px;
  border-radius: 10px;
}

.school-modal__results {
  margin-top: 30px;
}

.school-table {
  width: 100%;
}

.school-table__head {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  background: #5a371e;
}

.school-table__cell {
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  color: #fff;
}

.school-table__cell--radio {
  width: 80px;
}

.school-table__body {
  border-top: 2px solid rgba(202, 202, 202, 0.87);
  max-height: 183px;
  overflow-y: auto;
}

.school-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(202, 202, 202, 0.87);
  cursor: pointer;
}

.school-row:last-child {
  border-bottom: 2px solid rgba(202, 202, 202, 0.87);
}

.school-row__name,
.school-row__region {
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #373737;
  word-break: break-word;
}

.school-row__radio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.school-row__radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.school-row__icon {
  width: 24px;
  height: 24px;
  background: url("../images/page/icon_agree_off.svg") no-repeat center / contain;
}

.school-row__radio input:checked + .school-row__icon {
  background-image: url("../images/page/icon_agree_on.svg");
}

/* --------------------------------------------------------------------------
   Button
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.btn--sm {
  min-width: 72px;
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
}

.btn--lg {
  min-width: 120px;
  height: 44px;
  padding: 0 32px;
  font-size: 15px;
  border-radius: 22px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn--outline {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-text-muted);
}

.btn--white {
  background-color: #fff;
  color: #727272;
  border: 1px solid #727272;
  font-weight: 700;
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: #727272;
  color: #fff;
  outline: none;
}

.btn--gray {
  background-color: #888;
  color: var(--color-white);
  border: 1px solid #888;
}

.btn--gray:hover {
  background-color: #777;
  border-color: #777;
}

.btn--save {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
  font-weight: 600;
}

.btn--save:hover,
.btn--save:focus-visible {
  background-color: #e55a72;
  border-color: #e55a72;
  outline: none;
}

.btn--submit {
  min-width: 178px;
  padding: 15px 40px;
  background: #ff8296;
  border: 1px solid #ff8296;
  border-radius: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn--submit:hover,
.btn--submit:focus-visible {
  background: #ee6d82;
  outline: none;
}

.btn--cancel {
  min-width: 178px;
  padding: 15px 40px;
  background: #fff;
  border: 1px solid #a2a2a2;
  border-radius: 30px;
  color: #a2a2a2;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn--cancel:hover,
.btn--cancel:focus-visible {
  border-color: #888;
  color: #888;
  outline: none;
}

.btn--search {
  padding: 8px 15px;
  background: #5a371e;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background-color: var(--color-white);
  color: var(--color-text-muted);
}

.btn-order:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.btn-order:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */
/* 약관 동의 등에서 공통으로 쓰는 체크 원형 라디오 */
.radio {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.radio__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("../images/page/icon_agree_off.svg") no-repeat center / contain;
}

.radio input:checked ~ .radio__icon {
  background-image: url("../images/page/icon_agree_on.svg");
}

.radio input:focus-visible ~ .radio__icon {
  outline: 2px solid #ee6d82;
  outline-offset: 2px;
  border-radius: 50%;
}

.radio__text {
  font-size: 14px;
  font-weight: 700;
  color: #373737;
}

.form-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background-color: var(--color-white);
  cursor: pointer;
  vertical-align: middle;
  flex-shrink: 0;
}

.form-check input[type="checkbox"]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.form-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 공통 폼 필드 */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #373737;
}

.form-field__error {
  display: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-error);
}

.form-field.is-error .form-field__error {
  display: block;
}

.form-field.is-error .input-text,
.form-field.is-error .form-select select {
  border-color: var(--color-error);
}

/* 휴대폰 SMS 인증 (교육신청 개인/단체 공통) */
.sms-auth__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sms-auth__row .input-text {
  flex: 1 1 160px;
}

.sms-auth__btn {
  flex-shrink: 0;
  min-width: 104px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.sms-auth__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sms-auth__box {
  margin-top: 8px;
}

.sms-auth__timer {
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-error);
}

.sms-auth__timer.is-expired {
  color: var(--color-text-muted);
}

.sms-auth__timer.is-done {
  color: var(--color-primary);
}

.sms-auth__msg {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text-muted);
}

.sms-auth__msg.is-success {
  color: var(--color-primary);
}

.form-section {
  margin-bottom: 50px;
}

.form-section__head {
  margin-bottom: 35px;
  padding: 5px 0 5px 15px;
  border-left: 3px solid #373737;
}

.form-section__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #373737;
}

.form-section__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #373737;
}

.form-section__fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-radios {
  display: flex;
  gap: 63px;
  align-items: center;
}

.form-birth {
  display: flex;
  gap: 5px;
}

.form-birth .form-select {
  flex: 1 1 0;
  min-width: 0;
}

.form-school {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.form-school__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5a371e;
}

.form-school__name:empty {
  display: none;
}

.form-select {
  position: relative;
  width: 100%;
}

.form-select select {
  width: 100%;
  min-height: 50px;
  padding: 15px 40px 15px 15px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background-color: #fff;
  color: #373737;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  appearance: none;
  cursor: pointer;
}

.form-select select:invalid,
.form-select select option[value=""] {
  color: var(--color-placeholder);
}

.form-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../images/common/arrow_down_gray.svg") center / contain no-repeat;
  pointer-events: none;
}

.input-text {
  width: 100%;
  min-height: 50px;
  padding: 15px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #373737;
}

.input-text::placeholder {
  color: var(--color-placeholder);
}

.input-text:focus {
  border-color: var(--color-primary);
  outline: none;
}

.input-textarea {
  width: 100%;
  height: 200px;
  padding: 15px;
  border: 1px solid var(--color-input-border);
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #373737;
  resize: none;
  overflow-y: auto;
}

.input-textarea--sm {
  height: 100px;
}

.input-textarea::placeholder {
  color: var(--color-placeholder);
}

.input-textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-field.is-error .input-textarea {
  border-color: var(--color-error);
}

.input-count {
  position: relative;
  width: 100%;
}

.input-count__counter {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--color-text-light);
  pointer-events: none;
}

.file-input {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.file-input__name {
  flex: 1;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background-color: var(--color-white);
  font-size: 13px;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-input__btn {
  flex-shrink: 0;
  cursor: pointer;
}

.file-input__native {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}



/* --------------------------------------------------------------------------
   Page — Main ()
   -------------------------------------------------------------------------- */

/* Main visual */
.main-visual{padding:0 24px;margin-top:0;padding-bottom:48px;background:url('../images/page/main_bg03.png') no-repeat; background-size: cover; background-position: bottom -93px center;}
.main-visual__inner{display:flex;align-items:center;justify-content:space-between;gap:40px;max-width:1400px;margin:0 auto;min-height:383px;}
.main-visual__copy{display:flex;flex-direction:column;align-items:flex-end;gap:22px;flex:0 1 386px;max-width:386px;}
.main-visual__title{font-size:40px;font-weight:800;line-height:60px;color:#5a371e;text-align:right;letter-spacing:-0.02em;}
.main-visual__title .main-visual__accent{color:#f45d76;}
.main-visual__title .main-visual__line1{font-size:35px;}
.main-visual__cta{display:inline-flex;align-items:center;justify-content:center;min-width:141px;padding:8px 30px;background:#5a371e;border-radius:100px;font-size:22px;font-weight:800;line-height:30px;color:#fff;text-align:center;}
.main-visual__cta:hover{color:#fff;opacity:.9;}
.main-visual__banner{position:relative;flex:0 1 809px;width:100%;max-width:809px;display:flex;align-items:center;gap:0;}
.main-visual-swiper{border-radius:30px;overflow:hidden;width:100%;max-width:689px;margin:0 auto;aspect-ratio:689/383;}
.main-visual-swiper .swiper-slide{position:relative;height:100%;}
.main-visual-swiper .main-visual__link{display:block;width:100%;height:100%;cursor:pointer}
.main-visual-swiper .slide-bg{width:100%;height:100%;object-fit:cover;display:block;}
.main-visual-swiper .swiper-pagination{bottom:15px!important}
.main-visual-swiper .swiper-pagination-bullet{width:12px;height:12px;background:#ddd;opacity:1}
.main-visual-swiper .swiper-pagination-bullet-active{background:#ee6d82}
.main-visual__arrow{flex-shrink:0;width:60px;height:60px;background:center/28px 28px no-repeat url('../images/common/ArrowBackIosNewSharp.svg');opacity:.55;z-index:2;}
.main-visual__arrow--prev{margin-right:-10px;transform:scaleX(-1);}
.main-visual__arrow--next{margin-left:-10px;}
.main-visual__arrow.swiper-button-disabled{opacity:.25;cursor:default;}

/* Section */
.section{padding:80px 24px}
.section__inner{max-width:1400px;margin:0 auto}
.section__title{font-size:25px;font-weight:800;color:#ee6d82;text-align:center;margin-bottom:16px;position:relative;}
.section__title span{position: relative;  z-index: 10;}
.section__title::before{display:none;}
.programs .section__title::before{display:none;}
.section__title--inline{margin-bottom:0;text-align:left;flex-shrink:0;white-space:nowrap;}
.section__subtitle{text-align:center;font-size:15px;font-weight:700;color:#7f7f7f;margin:-24px 0 48px;line-height:50px;}

/* Schedule bg */
.schedule{position:relative;background:#FFF4F6; margin: 0 0 135px 0; padding-top: 0; padding-bottom: 80px;}
.schedule::after{content:'';position:absolute;left:0;right:0;height: 170px;background:url('../images/page/main_bg01.png') center/cover no-repeat;}
.schedule::after{bottom:-130px; top:auto; transform: rotate(180deg);}

/* Schedule header: title + region tabs */
.schedule__header{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:30px;}

/* Region tabs */
.region-tabs{display:flex;align-items:center;gap:8px;flex:1;min-width:0;max-width:none;margin:0;}
.region-tabs-swiper{flex:1;overflow:hidden;min-width:0;}
.region-tabs-swiper .swiper-slide{width:auto!important}
.region-tab{padding:12px 4px;font-size:16px;font-weight:400;color:#5a371e;white-space:nowrap;}
.region-tab.is-active{color:#ee6d82; font-weight: 800;}
.region-tabs__arrow{width:50px;height:50px;flex-shrink:0;background:url('../images/common/arrow_brown_left.svg') center/contain no-repeat;}
.region-tabs__arrow--next{transform:scaleX(-1)}

/* Schedule layout */
.schedule__content{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:1024px){
  .schedule__content{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;align-items:stretch}
  .schedule__content > .calendar,
  .schedule__content > .education-panel{
    min-width:0;
    width:100%;
    height:auto;
    min-height:auto;
    align-self:stretch;
  }
  .education-panel{
    display:flex;
    flex-direction:column;
    height:100%;
  }
  .education-panel__empty,
  .education-panel__cards{
    flex:1 1 auto;
    height:100%;
    min-height:452px;
  }
  .education-panel__empty{
    display:flex;
    flex-direction:column;
  }
  .education-panel__empty .education-card{
    flex:1;
    height:100%;
    min-height:0;
  }
  .education-panel__swiper-wrap{
    height:100%;
  }
  .education-panel__swiper-wrap .education-card-swiper,
  .education-card-swiper .swiper-wrapper,
  .education-card-swiper .swiper-slide{
    height:100%;
  }
  .education-card-swiper .swiper-slide .education-card{
    height:100%;
    min-height:0;
  }
}
.schedule__content > .calendar,
.schedule__content > .education-panel{min-width:0;width:100%}

/* Utilities */
.is-hidden{display:none!important}

/* Calendar — 행 수에 따라 높이 가변, 교육카드는 stretch로 맞춤 */
.calendar{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:30px;
  padding:35px 55px;
  box-shadow:0 4px 10px rgba(0,0,0,.1);
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  gap:12px;
  height:auto;
  overflow:visible;
}
.calendar__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:0;flex-shrink:0}
.calendar__month{font-size:20px;font-weight:800;color:#5a371e}
.calendar__nav{display:flex;gap:8px}
.calendar__nav button{width:46px;height:46px;background:url('../images/common/arrow_brown_left.svg') center/contain no-repeat;}
.calendar__nav button.is-next{transform:scaleX(-1)}
.calendar__weekdays{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  text-align:center;
  font-size:16px;
  font-weight:800;
  color:#5a371e;
  margin-bottom:0;
  gap:0;
  flex-shrink:0;
  place-items:center;
}
.calendar__weekdays span{
  width:54px;
  height:54px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}
.calendar__weekdays .sun{color:#5a371e}
.calendar__grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0;
  flex:0 0 auto;
  place-items:center;
}
.calendar__day{
  aspect-ratio:auto;
  width:54px;
  height:54px;
  min-height:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:400;
  color:#5a371e;
  border-radius:100px;
  position:relative;
  box-sizing:border-box;
  line-height:1;
}
.calendar__day--other{color:#a8a8a8}
.calendar__day--has{background:#E3F5F5;cursor:pointer;font-weight:700}
.calendar__day--past{background:#f3f3f3;color:#bbb;cursor:not-allowed}
.calendar__day--past.calendar__day--has{background:#f3f3f3}
.calendar__day--selected{background:var(--color-accent);color:#fff;font-weight:700}
.calendar__day--has.calendar__day--selected{background:var(--color-accent);color:#fff}
.calendar__day--today::after{content:'today';position:absolute;bottom:4px;left:50%;transform:translateX(-50%);font-size:10px;font-weight:800;color:var(--color-accent);line-height:1;letter-spacing:-0.02em;text-transform:lowercase}
.calendar__day--today.calendar__day--selected::after{color:#fff}
.calendar__day:not(.calendar__day--has):not(.calendar__day--other){cursor:default}

/* Education panel */
.education-panel{min-height:0;overflow:visible}
.education-panel__empty{height:100%;}
.education-panel__empty .education-card{height:100%;min-height:0}
.education-card{background:#fff;border:5px solid var(--edu-green-border);border-radius:30px;padding:40px 45px;min-height:452px;display:flex;flex-direction:column;box-sizing:border-box;gap:0}
.education-panel__empty-title{display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:800;color:#5a371e;text-align:center;margin-bottom:16px;line-height:1.25;min-height:72px;height:auto;flex-shrink:0}
.education-card--empty .education-panel__empty-title{flex:0 0 auto;}
.education-card--empty .meta-list{margin-top:0;padding:0 35px;margin-bottom:20px;flex:0 0 auto;}
.education-panel__cards{height:auto;min-height:452px;overflow:visible}
.education-panel__cards.is-multi .education-card{padding-bottom:68px}
.education-panel__swiper-wrap{position:relative;height:100%}
.education-panel__swiper-wrap .education-card-swiper{height:100%;overflow:hidden}
.education-panel__arrow{display:none;position:absolute;top:50%;transform:translateY(-50%);width:35px;height:35px;z-index:5;background:center/contain no-repeat url('../images/common/ArrowBackIosNewSharp.svg');opacity:.55}
.education-panel__cards.is-multi .education-panel__arrow{display:block}
.education-panel__arrow--prev{left:18px;transform:translateY(-50%) scaleX(-1)}
.education-panel__arrow--next{right:18px;transform:translateY(-50%)}
.education-panel__arrow.swiper-button-disabled{opacity:.35;cursor:not-allowed}
.education-panel__arrow.is-hidden{display:none!important}
@media(min-width:1024px){
  .schedule__content{overflow:visible}
  .calendar{
    height:auto;
    min-height:452px;
  }
  .education-panel{
    height:100%;
    min-height:452px;
  }
  .education-panel__empty,
  .education-panel__cards{
    height:100%;
    min-height:452px;
  }
  .education-card{
    min-height:452px;
  }
  .education-panel__arrow--prev{left:18px}
  .education-panel__arrow--next{right:18px}
}
.meta-list{list-style:none;flex:0 0 auto}
.meta-list li,.education-card__meta li{display:flex;align-items:center;gap:32px;padding:10px 0;font-size:18px}
.meta-list .label,.education-card__meta .label{display:inline-flex;align-items:center;gap:5px;font-weight:800;color:#5a371e}
.meta-icon{width:26px;height:26px;flex-shrink:0;display:block}
.education-card__tags{display:flex;gap:10px;justify-content:center;margin-bottom:10px;flex-wrap:wrap;flex-shrink:0}
.tag{padding:10px 15px;border-radius:30px;font-size:15px;font-weight:700; line-height: 15px; height: 35px;}
.tag--type{color:#fff}
.tag--gray{background:#fff;border:1px solid #dbdbdb;color:#5a371e}
.education-card__title{display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:800;color:#5a371e;text-align:center;margin-bottom:16px;line-height:30px;min-height:72px;height:auto;flex-shrink:0}
.education-card__meta{list-style:none;flex:0 0 auto;min-height:0;padding:0 35px;margin-bottom:24px}
.meta-list em{font-style:normal;font-weight:400}
.btn-apply{margin-top:auto;width:100%;padding:16px 20px;background:var(--edu-green-border);border-radius:30px;font-size:18px;font-weight:800;color:var(--edu-green-btn-text);flex-shrink:0;line-height:20px;position:relative;z-index:1}
.btn-apply:disabled{opacity:1;cursor:not-allowed}

/* 마감/폐강 상태 (메인 달력 카드) — 리스트(.edu-card.is-closed)와 동일 처리 */
.education-card.is-closed{position:relative;overflow:hidden}
.education-card.is-closed::after{content:"";position:absolute;inset:0;background-color:rgba(0,0,0,0.46);border-radius:25px;pointer-events:none}

/* 교육일정 카드 CASE — 컬러별(메인·US030301 공통 컬러 키) */
.education-card--green{border-color:var(--edu-green-border)}
.education-card--green .tag--type{background:var(--edu-green-badge);border:1px solid var(--edu-green-badge)}
.education-card--green .btn-apply{background:var(--edu-green-border);color:var(--edu-green-btn-text)}

.education-card--teal{border-color:var(--edu-teal-border)}
.education-card--teal .tag--type{background:var(--edu-teal-badge);border:1px solid var(--edu-teal-badge)}
.education-card--teal .btn-apply{background:var(--edu-teal-border);color:var(--edu-teal-btn-text)}

.education-card--blue{border-color:var(--edu-blue-border)}
.education-card--blue .tag--type{background:var(--edu-blue-badge);border:1px solid var(--edu-blue-badge)}
.education-card--blue .btn-apply{background:var(--edu-blue-border);color:var(--edu-blue-btn-text)}

.education-card--yellow{border-color:var(--edu-yellow-border)}
.education-card--yellow .tag--type{background:var(--edu-yellow-badge);border:1px solid var(--edu-yellow-badge)}
.education-card--yellow .btn-apply{background:var(--edu-yellow-border);color:var(--edu-yellow-btn-text)}

.education-card--orange{border-color:var(--edu-orange-border)}
.education-card--orange .tag--type{background:var(--edu-orange-badge);border:1px solid var(--edu-orange-badge)}
.education-card--orange .btn-apply{background:var(--edu-orange-border);color:var(--edu-orange-btn-text)}

.education-card--gray{border-color:var(--edu-gray-border)}
.education-card--gray .tag--type{background:var(--edu-gray-badge);border:1px solid var(--edu-gray-badge)}
.education-card--gray .btn-apply{background:var(--edu-gray-border);color:var(--edu-gray-btn-text)}

.education-card--purple{border-color:var(--edu-purple-border)}
.education-card--purple .tag--type{background:var(--edu-purple-badge);border:1px solid var(--edu-purple-badge)}
.education-card--purple .btn-apply{background:var(--edu-purple-border);color:var(--edu-purple-btn-text)}

.education-card--pink{border-color:var(--edu-pink-border)}
.education-card--pink .tag--type{background:var(--edu-pink-badge);border:1px solid var(--edu-pink-badge)}
.education-card--pink .btn-apply{background:var(--edu-pink-border);color:var(--edu-pink-btn-text)}

.education-card--red{border-color:var(--edu-red-border)}
.education-card--red .tag--type{background:var(--edu-red-badge);border:1px solid var(--edu-red-badge)}
.education-card--red .btn-apply{background:var(--edu-red-border);color:var(--edu-red-btn-text)}

.education-card--navy{border-color:var(--edu-navy-border)}
.education-card--navy .tag--type{background:var(--edu-navy-badge);border:1px solid var(--edu-navy-badge)}
.education-card--navy .btn-apply{background:var(--edu-navy-border);color:var(--edu-navy-btn-text)}

.education-card--skyblue{border-color:var(--edu-skyblue-border)}
.education-card--skyblue .tag--type{background:var(--edu-skyblue-badge);border:1px solid var(--edu-skyblue-badge)}
.education-card--skyblue .btn-apply{background:var(--edu-skyblue-border);color:var(--edu-skyblue-btn-text)}

.education-card--lime{border-color:var(--edu-lime-border)}
.education-card--lime .tag--type{background:var(--edu-lime-badge);border:1px solid var(--edu-lime-badge)}
.education-card--lime .btn-apply{background:var(--edu-lime-border);color:var(--edu-lime-btn-text)}

.education-card--brown{border-color:var(--edu-brown-border)}
.education-card--brown .tag--type{background:var(--edu-brown-badge);border:1px solid var(--edu-brown-badge)}
.education-card--brown .btn-apply{background:var(--edu-brown-border);color:var(--edu-brown-btn-text)}

.education-card--coral{border-color:var(--edu-coral-border)}
.education-card--coral .tag--type{background:var(--edu-coral-badge);border:1px solid var(--edu-coral-badge)}
.education-card--coral .btn-apply{background:var(--edu-coral-border);color:var(--edu-coral-btn-text)}

.education-card--olive{border-color:var(--edu-olive-border)}
.education-card--olive .tag--type{background:var(--edu-olive-badge);border:1px solid var(--edu-olive-badge)}
.education-card--olive .btn-apply{background:var(--edu-olive-border);color:var(--edu-olive-btn-text)}

.education-card--gold{border-color:var(--edu-gold-border)}
.education-card--gold .tag--type{background:var(--edu-gold-badge);border:1px solid var(--edu-gold-badge)}
.education-card--gold .btn-apply{background:var(--edu-gold-border);color:var(--edu-gold-btn-text)}

.education-card--aqua{border-color:var(--edu-aqua-border)}
.education-card--aqua .tag--type{background:var(--edu-aqua-badge);border:1px solid var(--edu-aqua-badge)}
.education-card--aqua .btn-apply{background:var(--edu-aqua-border);color:var(--edu-aqua-btn-text)}

.education-card--violet{border-color:var(--edu-violet-border)}
.education-card--violet .tag--type{background:var(--edu-violet-badge);border:1px solid var(--edu-violet-badge)}
.education-card--violet .btn-apply{background:var(--edu-violet-border);color:var(--edu-violet-btn-text)}

.education-card--burgundy{border-color:var(--edu-burgundy-border)}
.education-card--burgundy .tag--type{background:var(--edu-burgundy-badge);border:1px solid var(--edu-burgundy-badge)}
.education-card--burgundy .btn-apply{background:var(--edu-burgundy-border);color:var(--edu-burgundy-btn-text)}

.education-card--charcoal{border-color:var(--edu-charcoal-border)}
.education-card--charcoal .tag--type{background:var(--edu-charcoal-badge);border:1px solid var(--edu-charcoal-badge)}
.education-card--charcoal .btn-apply{background:var(--edu-charcoal-border);color:var(--edu-charcoal-btn-text)}

/* 일정 없음 */
.education-card--empty{border-color:var(--edu-empty-border);color:var(--edu-empty-text)}
.education-card--empty .education-panel__empty-title,
.education-card--empty .education-card__meta,
.education-card--empty .education-card__meta .label,
.education-card--empty .meta-list,
.education-card--empty .meta-list em{color:var(--edu-empty-text)}
.education-card--empty .tag--gray{color:var(--edu-empty-text)}
.education-card--empty .btn-apply{background:var(--edu-empty-btn);color:var(--edu-empty-btn-text)}
.education-card-swiper .swiper-wrapper{height:100%}
.education-card-swiper .swiper-slide{height:100%;display:flex;box-sizing:border-box}
.education-card-swiper .swiper-slide .education-card{width:100%;height:100%;min-height:0;margin:0}
.education-panel__cards:not(.is-multi) .education-card-swiper .swiper-pagination{display:none}
.education-card-swiper .swiper-pagination{position:absolute;bottom:28px;left:0;right:0;width:100%;z-index:2}
.education-card-swiper .swiper-pagination-bullet{width:10px;height:10px;background:#ddd;opacity:1;margin:0 5px}
.education-card-swiper .swiper-pagination-bullet-active{background:#ee6d82}

/* Programs */
.programs{background:#fff; padding-top: 0; padding-bottom: 0;}
.programs__wrap{position: relative; margin: 0 auto; padding: 0 35px;}
.program-swiper .swiper-slide{text-align:center;padding:20px}
.program-card__img{width:220px;height:226px;object-fit:contain;margin:0 auto 20px}
.program-card__title{max-width:100%;margin:0 auto;font-size:25px;font-weight:800;color:#505050;line-height:50px;overflow-wrap:anywhere;word-break:break-word;white-space:pre-wrap;}
.program-card__desc{max-width:100%;margin:0 auto;font-size:18px;font-weight:700;color:#808080;line-height:28px;overflow-wrap:anywhere;word-break:break-word;white-space:pre-wrap;}
.programs__arrow{position:absolute;top:50%;transform:translateY(-50%) scaleX(-1);width:35px;height:35px;z-index:2;background:center/contain no-repeat url('../images/common/ArrowBackIosNewSharp.svg')}
.programs__arrow--prev{left:0}
.programs__arrow--next{right:0;transform:translateY(-50%);}

/* 위로 가기 플로팅 버튼 */
.scroll-top-button {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  color: #5a371e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  pointer-events: none;
}

.scroll-top-button::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg);
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-button:hover {
  background: #fff4f6;
  color: #ee6d82;
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(238, 109, 130, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .scroll-top-button {
    right: 16px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-button {
    transition: none;
  }
}

/* Footer */
.footer{position:relative;background: url(../images/page/footer_bg.png) center / cover no-repeat; padding: 80px 40px 100px; margin-top:40px}
.footer__inner{max-width:1400px;margin:0 auto;position:relative}
.footer__top{display:flex;flex-wrap:wrap;align-items:center;gap:24px;margin-bottom:20px}
.footer__logo{width: 300px;}
.footer__links{display:flex;gap:16px;font-size:14px;color:#666; margin-bottom: 15px;}
.footer__links a.bold-link{font-weight:700;}
.footer__address,.footer__copy{font-size:14px;color:#888;}
.footer__selects{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px; align-items: end;}
.footer__site{position:relative;min-width:200px;width:249px;}
.footer__site-button{width:100%;height:48px;padding:12px 40px 12px 16px;border:1px solid #ddd;border-radius:8px;font-size:14px;color:#373737;background-color:#fff;background-image:url('../images/common/arrow_down_gray.svg');background-repeat:no-repeat;background-position:right 16px center;background-size:14px 14px;box-sizing:border-box;cursor:pointer;list-style:none;}
.footer__site-button::-webkit-details-marker{display:none;}
.footer__site-button::marker{content:"";}
.footer__site-list{position:absolute;left:0;bottom:calc(100% + 6px);z-index:20;width:100%;max-height:260px;margin:0;padding:8px 0;border:1px solid #ddd;border-radius:8px;background:#fff;box-shadow:0 8px 18px rgba(0,0,0,.08);list-style:none;box-sizing:border-box;overflow-y:auto;}
.footer__site-list a{display:block;padding:9px 16px;font-size:14px;line-height:20px;color:#373737;text-decoration:none;}
.footer__site-list a:hover,.footer__site-list a:focus{background:#f7f7f7;}
.footer__badge{width: 65px; height: 61px;}




/* --------------------------------------------------------------------------
   Responsive — 1500px 이하
   -------------------------------------------------------------------------- */
@media (max-width: 1500px) {
  .header__inner{padding-right: 50px;}  

  

}


/* --------------------------------------------------------------------------
   Responsive — 1448px 이하
   -------------------------------------------------------------------------- */
   @media (max-width: 1440px) {

    /* breadcrumb */
  .breadcrumb__inner{
    padding: 0 24px;
  }

  .user-apply-page .body{
    padding: 63px 24px 80px;
  }

  }
  

/* --------------------------------------------------------------------------
   Responsive — 1400px 이하
   -------------------------------------------------------------------------- */
   @media (max-width: 1400px) {
    
    /* Schedule */
    .schedule .section__inner{
      max-width: 900px;
    }
 
    .schedule {
    margin: 0;
    background: #fff4f6;
  }

  .schedule::before,
  .schedule::after {
    display: none;
  }

  .schedule__header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 16px;
  }

  .section__title--inline {
    text-align: center;
  }

  .region-tabs {
    max-width: none;
    margin-bottom: 0;
    gap: 0;
  }

  .region-tabs__arrow {
    width: 50px;
    height: 50px;
  }

  .region-tab {
    padding: 12px 8px;
    font-size: 14px;
  }

  .schedule__content {
    gap: 15px;
  }

  /* Calendar */
  .calendar {
    padding: 20px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: auto;
    gap: 8px;
  }

  .calendar__month {
    font-size: 16px;
  }

  .calendar__nav button {
    width: 34px;
    height: 34px;
    background-size: contain;
  }

  .calendar__weekdays {
    font-size: 14px;
    gap: 0;
    margin-bottom: 0;
  }

  .calendar__weekdays span {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .calendar__grid {
    gap: 0;
    place-items: center;
  }

  .calendar__day {
    font-size: 14px;
    aspect-ratio: auto;
    width: 40px;
    height: 40px;
    min-height: 0;
    padding: 0;
    border-radius: 100px;
  }

  .calendar__day--today::after {
    font-size: 9px;
    bottom: 2px;
  }

  .education-panel,
  .education-panel__empty,
  .education-panel__cards {
    height: auto;
    min-height: 0;
  }

  .education-card {
    min-height: 0;
    padding: 24px 35px 48px;
    border-width: 3px;
    border-radius: 20px;
  }

  .education-panel__empty-title,
  .education-card__title {
    font-size: 18px;
    height: auto;
    min-height: 64px;
    margin-bottom: 12px;
  }

  .education-card__tags {
    margin-bottom: 12px;
  }

  .tag {
    height: auto;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.3;
  }

  .meta-list li,
  .education-card__meta li {
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
  }

  .education-card__meta,
  .education-card--empty .meta-list {
    padding: 0;
    margin-bottom: 16px;
    flex: 0 0 auto;
  }

  .meta-icon {
    width: 20px;
    height: 20px;
  }

  .btn-apply {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 24px;
    margin-top: auto;
  }

  .education-panel__swiper-wrap {
    padding: 0;
  }

  .education-panel__arrow--prev {
    left: 5px;
    width: 25px;
  }

  .education-panel__arrow--next {
    right: 5px;
    width: 25px;
  }

  .education-panel__cards.is-multi .education-card {
    padding-bottom: 48px;
  }

  .education-card-swiper .swiper-pagination {
    bottom: 16px;
  }

  .education-card-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  
  /* Programs */
  .programs{padding-top: 70px;}
  .programs__wrap {
    padding: 0 28px;
  }

  .program-swiper .swiper-slide {
    padding: 12px 8px;
  }

  .program-card__img {
    width: 140px;
    height: 144px;
    margin-bottom: 12px;
  }

  .program-card__title {
    font-size: 18px;
  }

  .program-card__desc {
    font-size: 14px;
  }

  .programs__arrow {
    width: 28px;
    height: 28px;
  }


  }

/* --------------------------------------------------------------------------
   Responsive — 1280px 이하
   -------------------------------------------------------------------------- */
   @media (max-width: 1280px) {
    .header__inner{padding-right: 50px;}  

    .wrap .sidebar {
      display: none;
    }
  
    .sub-page-head {
      text-align: center;
    }

    .main-visual__inner {
      gap: 24px;
    }

    .main-visual__copy {
      max-width: 320px;
      flex-basis: 300px;
    }

    .main-visual__title {
      font-size: 32px;
      line-height: 1.4;
    }

    .main-visual__title .main-visual__line1 {
      font-size: 28px;
    }

    .main-visual__cta {
      font-size: 18px;
      padding: 8px 24px;
    }

    .main-visual__arrow {
      width: 40px;
      height: 40px;
      background-size: 20px 20px;
    }

    .main-visual__banner {
      max-width: 720px;
      flex-basis: auto;
    }
  
  
  }

/* --------------------------------------------------------------------------
   Responsive — 1023px 이하 (모바일)
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  body {
    padding-top: 56px;
  }

  .header {
    height: 56px;
    border-bottom: 1px solid #f3f3f3;
  }

  .header__inner {
    max-width: none;
    padding: 16px 20px;
  }

  .logo img {
    width: auto;
    height: 17px;
    max-width: 160px;
  }

  .header__menu-btn {
    display: flex;
  }

  .gnb {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 20px 40px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
  }

  .gnb.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s ease, visibility 0s linear 0s;
  }

  .gnb__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .gnb__item {
    width: 100%;
    border-top: 1px solid #f3f3f3;
  }

  .gnb__item:first-child {
    border-top: none;
  }

  .gnb__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    color: #373737;
  }

  .gnb__link::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("../images/common/icon_gnb_chevron.svg") center / contain no-repeat;
    transition: transform 0.2s ease;
  }

  .gnb__item.is-expanded .gnb__link::after {
    transform: rotate(180deg);
  }

  .gnb__item:hover .gnb__link,
  .gnb__item:focus-within .gnb__link {
    color: #373737;
  }

  .gnb__dropdown {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 0 20px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .gnb__item.is-expanded .gnb__dropdown {
    display: block;
  }

  .gnb__dropdown-inner {
    padding: 20px;
    border-radius: 12px;
    background: #fff4f6;
    box-shadow: none;
  }

  .gnb__dropdown-inner::before {
    display: none;
  }

  .gnb__sub a {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: #5a371e;
    text-align: left;
    border-bottom: none;
  }

  .gnb__sub li + li {
    margin-top: 20px;
  }

  .gnb__sub a:hover,
  .gnb__sub li.is-active a {
    color: #5a371e;
  }

  body.is-gnb-open {
    overflow: hidden;
  }

  /* Main visual */
  .main-visual {
    padding: 24px 16px 32px;
  }

  .main-visual__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    min-height: 0;
  }

  .main-visual__copy {
    display: none;
    /* align-items: center;
    max-width: none;
    flex: none;
    gap: 16px; */
  }

  .main-visual__title {
    font-size: 22px;
    line-height: 1.45;
    text-align: center;
  }

  .main-visual__cta {
    min-width: 120px;
    padding: 8px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .main-visual__banner {
    max-width: none;
    flex: none;
  }

  .main-visual__arrow {
    display: none;
  }

  .main-visual-swiper {
    border-radius: 16px;
    max-width: none;
    aspect-ratio: 689/383;
  }

  .main-visual-swiper .swiper-pagination {
    bottom: 12px !important;
  }

  .main-visual-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  /* Section */
  .section {
    padding: 40px 16px;
  }

  .section__inner,.schedule .section__inner{
    max-width: 600px;
  }

  .section__title {
    font-size: 22px;
    line-height: 1.4;
  }

  .section__title::before {
    display: none;
  }

  .programs .section__title::before {
    display: none;
  }

  .section__subtitle {
    font-size: 14px;
    margin: -12px 0 24px;
    line-height: 1.4;
  }

  
/* Calendar */
.calendar__grid{place-items: center; gap: 0;}
.calendar__day{min-height: auto; width: 36px; height: 36px; padding: 0;}
.calendar__weekdays span{width: 36px; height: 36px; padding: 0;}
  
/* Education panel */
.tag{padding: 3px 8px; font-size: 10px;}

  /* Footer */
  .footer {
    padding: 42px 16px 48px;
    margin-top: 0;
    background-size: cover;
    background-position: 0 0;
  }

  .footer__inner {
    max-width: none;
  }

  .footer__logo {
    width: 200px;
    max-width: 100%;
  }

  .footer__links {
    gap: 20px;
    font-size: 12px;
    margin-bottom: 15px;
  }

  .footer__address,
  .footer__copy {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
  }

  .footer__copy {
    display: block;
    margin-top: 4px;
  }

  .footer__selects {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
  }

  .footer__site {
    width: 100%;
    min-width: 0;
  }

  .footer__site-button {
    width: 100%;
    height: auto;
    padding: 12px 40px 12px 15px;
    font-size: 12px;
    border-radius: 5px;
    border-color: #bbb;
  }

  .footer__site-list {
    bottom: calc(100% + 4px);
  }

  .footer__site-list a {
    font-size: 12px;
  }

  .footer__badge {
    position: static;
    margin-top: 4px;
  }

  .breadcrumb {
    height: 36px;
  }

  .breadcrumb__inner {
    max-width: none;
    padding: 10px 16px;
  }

  .breadcrumb__list {
    font-size: 12px;
    gap: 4px;
  }

  .breadcrumb__item + .breadcrumb__item::before {
    width: 14px;
    height: 14px;
  }

  .sub-page-head{
    margin-bottom: 38px;
  }

  .user-apply-page .body {
    padding: 38px 16px 48px;
    display: block;
  }
 
  .sub-page-head__title {
    font-size: 22px;
  }

  .sub-page-head__desc {
    margin-top: 8px;
    font-size: 12px;
  }

  .region-select__grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .region-select__btn {
    min-height: 50px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .region-select__grid .region-select__btn:last-child {
    grid-column: 1 / 2;
  }

  /* US030301 지역 센터 교육 리스트 — 모바일 */
  /* 페이지 타이틀 + 오시는길 (세로 배치, 가운데 정렬) */
  .edu-detail-head {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .edu-place-btn {
    font-size: 12px;
    padding: 4px 15px 4px 10px;
  }

  .edu-place-btn svg,
  .edu-place-btn img {
    width: 15px;
    height: 15px;
  }

  /* 탭 — 가운데 알약형(전체폭 아님) */
  .edu-tabs {
    margin-top: 24px;
  }

  .edu-tabs__inner {
    border-radius: 12px;
  }

  .edu-tab {
    padding: 10px 40px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
  }

  /* 필터 — 가로 2열 */
  .edu-filters {
    gap: 10px;
    margin-top: 20px;
  }

  .edu-select {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .edu-select select {
    padding: 12px 36px 12px 15px;
    font-size: 12px;
  }

  /* 교육 카드 */
  .edu-list {
    margin-top: 15px;
    gap: 15px;
  }

  .edu-card {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    min-height: 0;
    padding: 30px 28px;
  }

  .edu-card__head {
    gap: 20px;
  }

  .edu-card__badge {
    width: fit-content;
    max-width: 100%;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 18px;
  }

  .edu-card__title {
    font-size: 16px;
    line-height: 25px;
  }

  .edu-card__info {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .edu-card__meta-row {
    gap: 25px;
    padding: 5px 0;
  }

  .edu-card__meta-label {
    font-size: 14px;
  }

  .edu-card__meta-value {
    font-size: 14px;
  }

  .edu-card__btn {
    width: 100%;
    min-width: 0;
    padding: 8px 20px;
    font-size: 14px;
  }

  .edu-card.is-closed::after {
    border-radius: 25px;
  }

  /* 지점안내 팝업 — 모바일(전체화면) */
  .branch-modal__panel {
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    transform: none;
    width: auto;
    max-width: none;
    height: 100vh;            /* 폴백 */
    height: 100dvh;           /* 동적 뷰포트(브라우저 UI 제외) */
    max-height: none;
    border-radius: 0;
  }

  .branch-modal__head {
    padding: 20px;
  }

  .branch-modal__scroll {
    padding: 25px 0 calc(30px + env(safe-area-inset-bottom, 0px));
  }

  .branch-modal__title {
    font-size: 16px;
  }

  .branch-modal__close {
    width: 20px;
    height: 20px;
  }

  .branch-modal__map {
    margin: 0 16px 25px;
  }

  .branch-modal__body {
    padding: 0 16px;
  }

  .branch-modal__region,
  .branch-modal__card-wrap {
    padding: 0;
  }

  .branch-modal__card {
    padding: 20px;
    border-radius: 10px;
  }

  .branch-info {
    grid-template-columns: 1fr;
  }

  .branch-info__facilities {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 30px;
  }

  /* 오시는길 리스트 — 모바일(1열 세로 카드) */
  .visit-list {
    grid-template-columns: 1fr;
  }

  .visit-card {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 0;
    padding: 30px 25px;
    text-align: center;
  }

  .visit-card__name {
    width: auto;
    padding: 0;
    font-size: 20px;
    letter-spacing: -0.8px;
  }

  .visit-card__body {
    align-items: center;
    gap: 10px;
    padding: 0;
    text-align: center;
  }

  .visit-card__addr {
    align-items: center;
    font-size: 14px;
    text-align: center;
  }

  .visit-card__tel {
    font-size: 14px;
  }

  .visit-card__icons img {
    width: 20px;
    height: 20px;
  }

  /* 약관 동의 — 모바일 */
  .agree__label {
    font-size: 14px;
  }

  .agree__box {
    padding: 20px;
    padding-right: 10px;
    font-size: 12px;
  }

  .agree__box-title {
    font-size: 14px;
  }

  .agree__radios {
    gap: 20px;
  }

  .btn--submit {
    max-width: 130px;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* 교육신청 정보입력 — 모바일 */
  .apply-summary {
    margin-bottom: 30px;
  }

  .apply-info__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn--cancel {
    min-width: 116px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .form-section {
    margin-bottom: 40px;
  }

  .form-section__head {
    margin-bottom: 25px;
  }

  .form-section__title {
    font-size: 18px;
  }

  .form-section__desc {
    font-size: 14px;
  }

  .form-radios {
    gap: 20px;
  }

  /* 교육신청 내역 입력 — 모바일 */
  .apply-history {
    gap: 15px;
  }

  .apply-history__body {
    padding: 0 9px;
  }

  .apply-history__form {
    padding: 25px;
    border-radius: 15px;
  }

  .apply-history__fields {
    margin-bottom: 20px;
  }

  .apply-history__submit {
    font-size: 16px;
  }

  .apply-history__notice {
    max-width: none;
    font-size: 12px;
  }

  /* 교육신청 내역 리스트 — 모바일 */
  .history-list__table-wrap {
    display: none;
  }

  .history-list__cards {
    display: flex;
  }

  .cancel-modal__panel {
    width: calc(100vw - 32px);
    border-radius: 20px;
  }

  .cancel-modal__head {
    padding: 20px;
  }

  .cancel-modal__title {
    font-size: 16px;
  }

  .cancel-modal__close {
    width: 20px;
    height: 20px;
  }

  .cancel-modal__body {
    padding: 20px;
  }

  .cancel-modal__desc {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .cancel-modal__foot {
    gap: 10px;
    padding: 0 20px 20px;
  }

  .cancel-modal__foot .btn--cancel,
  .cancel-modal__foot .btn--submit {
    flex: 1;
    min-width: 0;
    max-width: 130px;
  }

  /* 후기 작성 — 모바일 */
  .review-write__form {
    gap: 50px;
  }

  .review-write__actions {
    gap: 10px;
    margin-top: 40px;
  }

  .review-survey__title {
    font-size: 18px;
  }

  /* 학교 검색 팝업 — 모바일(전체화면) */
  .school-modal__panel {
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    transform: none;
    width: auto;
    max-width: none;
    height: 100vh;            /* 폴백 */
    height: 100dvh;           /* 동적 뷰포트(브라우저 UI 제외) */
    max-height: none;
    border-radius: 0;
  }

  .school-modal__head {
    padding: 20px;
  }

  .school-modal__title {
    font-size: 16px;
  }

  .school-modal__close {
    width: 20px;
    height: 20px;
  }

  .school-modal__scroll {
    padding: 25px 16px calc(30px + env(safe-area-inset-bottom, 0px));
  }

  .school-modal__foot {
    gap: 10px;
    padding: 0 16px 20px;
  }

  .school-modal__filters-row {
    flex-direction: column;
    align-items: stretch;
  }

  .school-modal__filters-row .school-modal__search-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 20px;
    border-radius: 10px;
    flex: 0;
  }

  .school-table__head{
    display: none;
  }
  .school-table__head,
  .school-row {
    grid-template-columns: 40px 1fr;
  }
  .school-table__body {
    max-height: none;
    overflow-y: visible;
  }

  .school-table__cell:last-child {
    display: none;
  }

  .school-row__name, .school-row__region{
    padding-left: 0;
  }
  .school-row__region {
    grid-column: 2 / 3;
    font-weight: 400;
    padding-top: 0;
  }
}


/* --------------------------------------------------------------------------
   Responsive — 430px 이하
   -------------------------------------------------------------------------- */

   @media(max-width:430px){

    .main-visual {
      padding: 0;
    }
    .main-visual-swiper {
      border-radius: 0;
    }

    .sub-page-head__title {
      font-size: 22px;
    }

    .education-panel__empty-title, .education-card__title{
      font-size: 16px;
      margin-bottom: 6px;
    }
    .education-card__tags {
       gap: 8px;
      }

   }

/* --------------------------------------------------------------------------
   Responsive — 2170px 이상
   -------------------------------------------------------------------------- */

   @media(min-width:2170px){
    .footer{background-size: auto 100%;}
   }

/* --------------------------------------------------------------------------
   공통 갤러리 보드 (Gallery / List Toggle Board)
   -------------------------------------------------------------------------- */

.gallery-board__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-board__count {
  font-size: 16px;
  font-weight: 400;
  color: #373737;
}

.gallery-board__count-num {
  color: #ee6d82;
  font-weight: 800;
}

.gallery-board__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-board__search {
  position: relative;
  width: 243px;
  border: 1px solid rgba(202, 202, 202, 0.87);
  border-radius: 10px;  
  padding: 15px 15px; 
  height: 50px;
}

.gallery-board__search-input {
  width: calc(100% - 33px);
  background: #fff;
  font-size: 14px;
  color: #373737;
  border: none;
}

.gallery-board__search-input::placeholder {
  color: #a7a6a6;
}

.gallery-board__search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gallery-board__search-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.gallery-board__toggle {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-board__toggle-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 202, 202, 0.87);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-board__toggle .gallery-board__toggle-btn:first-child{
  border-radius: 10px 0 0 10px;
} 

.gallery-board__toggle .gallery-board__toggle-btn:last-child{
  border-radius: 0 10px 10px 0;
}

.gallery-board__toggle-btn.is-active {
  background: #ee6d82;
  border-color: #ee6d82;
}

.gallery-board__toggle-icon {
  width: 20px;
  height: 20px;
}

.gallery-board__gallery {
  width: 100%;
  margin-bottom: 50px;
}

.gallery-board__gallery.is-hidden {
  display: none;
}

.gallery-board__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 18px;
}

.gallery-board__gallery-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
  cursor: pointer;
}

.gallery-board__thumb {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f2f2;
}

.gallery-board__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.gallery-board__gallery-card:hover .gallery-board__thumb img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-board__gallery-title {
  font-size: 20px;
  font-weight: 700;
  color: #373737;
  line-height: 26px;
  height: 52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.gallery-board__gallery-date {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 20px;
}

.gallery-board__list{
  margin-bottom: 50px;
}

.gallery-board__list.is-hidden {
  display: none;
}

.gallery-board__list-ul {
  border-top: 1px solid #ddd;
}

.gallery-board__list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 20px;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  background: #fff;
}

.gallery-board__list-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  color: #373737;
  line-height: 20px;
  letter-spacing: -0.8px;
  max-width: calc(100% - 130px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-board__list-date {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 20px;
  white-space: nowrap;
}

.gallery-board__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.gallery-board__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gallery-board__page-btn {
  width: 40px;
  height: 40px;
  border-radius: 32px;
  border: 1px solid #f1f1f1;
  background: #fff;
  color: #373737;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.gallery-board__page-btn.omission {
  border: none;
  background: transparent;
  color: #373737;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

.gallery-board__page-icon {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto;
}

.gallery-board__page-btn.is-active {
  background: #ee6d82;
  border-color: #ee6d82;
  color: #fff;
}

/* 모바일 — 기본을 리스트형으로 두고 토글로 전환 */
@media(max-width: 1023px) {
  .gallery-board__top {
    align-items: center;
    margin-bottom: 15px;
  }

  .gallery-board__count {
    display: none;
  }

  .gallery-board__controls {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }

  .gallery-board__search {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 15px;
  }

  .gallery-board__gallery-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }

  .gallery-board__gallery {
    margin-bottom: 30px;
  }

  .gallery-board__gallery-title,
  .gallery-board__list-title {
    font-size: 16px;
  }

  .gallery-board__list {
    margin-bottom: 30px;
  }

  .gallery-board__list-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }

  .gallery-board__list-title {
    max-width: 100%;
  }

  .gallery-board__cta {
    margin-bottom: 30px;
  }

  .gallery-board__cta .btn--submit {
    min-width: 130px;
    max-width: 130px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .gallery-board__page-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 32px;
  }

  .gallery-board__page-icon {
    width: 14px;
    height: 14px;
  }
}

/* --------------------------------------------------------------------------
   공통 갤러리 보드 변형 - 교육사진
   -------------------------------------------------------------------------- */
.gallery-board--photo {
  display: flex;
  flex-direction: column;
}

.gallery-board__gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #888;
}

@media(max-width: 1023px) {
  .gallery-board--photo .gallery-board__gallery {
    margin-bottom: 50px;
  }

  .gallery-board--photo .gallery-board__gallery-card {
    gap: 10px;
  }

  .gallery-board--photo .gallery-board__gallery-meta {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   공통 갤러리 보드 변형 - 홍보영상
   -------------------------------------------------------------------------- */
.gallery-board--video .gallery-board__gallery-card {
  gap: 17px;
}

@media(max-width: 1023px) {
  .gallery-board--video .gallery-board__gallery-card {
    gap: 10px;
  }

  .gallery-board--video .gallery-board__gallery-date {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   공통 갤러리 보드 변형 - 리스트 전용 (금융교육자료실)
   -------------------------------------------------------------------------- */
.gallery-board--list-only .gallery-board__list {
  margin-bottom: 47px;
}

@media(max-width: 1023px) {
  .gallery-board--list-only .gallery-board__list {
    margin-bottom: 50px;
  }
}

/* --------------------------------------------------------------------------
   공통 갤러리 보드 변형 - 공지사항
   -------------------------------------------------------------------------- */
.gallery-board--notice .gallery-board__list-row {
  justify-content: flex-start;
  gap: 40px;
  padding: 30px 20px;
}

.gallery-board--notice .gallery-board__list-badge {
  flex-shrink: 0;
  padding: 5px 20px;
  border-radius: 20px;
  background: #ff8296;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.gallery-board--notice .gallery-board__list-row:not(.is-notice) .gallery-board__list-badge {
  display: none;
}

.gallery-board--notice .gallery-board__list-title {
  flex: 1 1 auto;
  max-width: none;
}

.gallery-board--notice .gallery-board__list-meta {
  display: contents;
}

.gallery-board--notice .gallery-board__list-region {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #888;
  white-space: nowrap;
}

@media(max-width: 1023px) {
  .gallery-board--notice .gallery-board__list-row {
    display: grid;
    gap: 10px;
    padding: 20px 0;
  }

  .gallery-board--notice .gallery-board__list-row.is-notice {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 10px;
  }

  .gallery-board--notice .gallery-board__list-row.is-notice .gallery-board__list-badge {
    grid-column: 1;
    grid-row: 1;
    padding: 2px 16px;
    font-size: 12px;
  }

  .gallery-board--notice .gallery-board__list-row.is-notice .gallery-board__list-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    letter-spacing: -0.64px;
    white-space: nowrap;
  }

  .gallery-board--notice .gallery-board__list-row.is-notice .gallery-board__list-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 10px;
  }

  .gallery-board--notice .gallery-board__list-row:not(.is-notice) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .gallery-board--notice .gallery-board__list-row:not(.is-notice) .gallery-board__list-title {
    grid-row: 1;
    font-size: 16px;
    letter-spacing: -0.64px;
    white-space: nowrap;
  }

  .gallery-board--notice .gallery-board__list-row:not(.is-notice) .gallery-board__list-meta {
    grid-row: 2;
    display: flex;
    gap: 10px;
  }
}

.board-detail {
  display: flex;
  flex-direction: column;
  gap: 47px;
}


.board-detail__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 35px 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.board-detail__title {
  max-width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: #373737;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.board-detail__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #888;
}

.board-detail__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.board-detail__meta-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #888;
}

.board-detail__content {
  width: 100%;
  min-width: 0;
  min-height: auto;
  padding: 35px 20px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.board-detail__body {
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.board-detail__body--placeholder {
  width: 100%;
  min-width: 0;
  /*min-height: 1000px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.board-detail__placeholder-text {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.8px;
  color: #373737;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.board-detail__placeholder-text img {
  display: block;
}

.board-detail__body p {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  color: #373737;
}

.board-detail__figure {
  margin: 10px 0 24px;
}

.board-detail__figure img {
  width: 100%;
  max-width: 760px;
  border-radius: 20px;
  display: block;
}

.board-detail__list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.board-detail__list li {
  font-size: 16px;
  line-height: 28px;
  color: #373737;
}

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

/* --------------------------------------------------------------------------
   공통 보드 상세 변형 - 금융교육자료실 (첨부파일 다운로드)
   -------------------------------------------------------------------------- */
.board-detail--resource .board-detail__content {
  display: flex;
  flex-direction: column;
  min-height: 1000px;
}

.board-detail__downloads {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  margin-bottom: 40px;
}

.board-detail__download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 350px;
  padding: 15px;
  border: 1px solid rgba(202, 202, 202, 0.87);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: #373737;
}

.board-detail__download-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-detail__download-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.board-detail--resource .board-detail__body--placeholder {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: auto;
}

@media(max-width: 1023px) {
  .board-detail {
    gap: 50px;
  }

  .board-detail__head {
    padding: 35px 20px;
  }

  .board-detail__title {
    font-size: 24px;
    line-height: 30px;
  }

  .board-detail__content {
    min-height: 0;
    padding: 35px 20px;
  }

  .board-detail__body p {
    font-size: 15px;
    line-height: 26px;
  }

  .board-detail--photo .board-detail__body--placeholder {
    min-height: 500px;
  }

  .board-detail--photo .board-detail__placeholder-text {
    font-size: 20px;
    line-height: 20px;
  }

  .board-detail--resource .board-detail__content {
    min-height: 500px;
  }

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

  .board-detail__download-link {
    max-width: none;
  }

  .board-detail--resource .board-detail__body--placeholder {
    min-height: 300px;
  }

  .board-detail__figure img {
    border-radius: 14px;
  }

  .board-detail__actions .btn--submit {
    min-width: 130px;
    max-width: 130px;
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   청소년 금융교육센터 소개
   -------------------------------------------------------------------------- */
.center-intro {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.center-intro__welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 50px 30px;
  border-radius: 80px;
  text-align: center;
}

.center-intro__headline {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  color: #373737;
}

.center-intro__headline-accent {
  font-weight: 800;
  color: #ee6d82;
}

.center-intro__lead {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  color: #626262;
}

.center-intro__br-pc {
  display: inline;
}

.center-intro__facilities {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.center-intro__facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 70px 50px;
  border-radius: 40px;
}

.center-intro__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  border-radius: 50px;
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  color: #fff;
  text-align: center;
}

.center-intro__badge--classroom {
  background: #fd5969;
}

.center-intro__badge--bank {
  background: #884dee;
}

.center-intro__badge--safe {
  background: #2f6ae9;
}

.center-intro__badge--finance {
  background: #87b322;
}

.center-intro__badge--cinema {
  background: #ffbb00;
}

.center-intro__figure {
  width: 500px;
  max-width: 100%;
  height: 350px;
}

.center-intro__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.center-intro__desc {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: normal;
  color: #373737;
  text-align: center;
}

.center-intro__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  justify-content: center;
  justify-items: stretch;
}

.center-intro__photos--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.center-intro__photo {
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
  aspect-ratio: 4 / 3;
}

.center-intro__photo-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.center-intro__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media(max-width: 1023px) {
  .user-center-intro-page .sub-page-head {
    text-align: center;
  }

  .center-intro {
    gap: 0;
  }

  .center-intro__welcome {
    gap: 20px;
    padding: 0 10px;
    border-radius: 80px;
    margin-bottom: 0;
    align-items: flex-start;
    text-align: left;
  }

  .center-intro__headline {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -1.68px;
  }

  .center-intro__lead {
    font-size: 16px;
    line-height: 22px;
  }

  .center-intro__br-pc {
    display: none;
  }

  .center-intro__facilities {
    gap: 0;
  }

  .center-intro__facility {
    gap: 50px;
    padding: 70px 20px;
  }

  .center-intro__badge {
    padding: 10px 50px;
    font-size: 22px;
  }

  .center-intro__figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 700;
  }

  .center-intro__desc {
    font-size: 18px;
    line-height: normal;
  }

  .center-intro__photos {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .center-intro__photo {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
  }
}

/* --------------------------------------------------------------------------
   교육 커리큘럼 소개 (US030101)
   -------------------------------------------------------------------------- */
.curriculum-intro {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.curriculum-intro__head-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  min-width: 0;
}

.curriculum-intro__head-desc .curriculum-intro__desc--pc + .curriculum-intro__desc--pc {
  margin-top: 0;
}

.curriculum-intro__head-desc .sub-page-head__desc {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro [data-curriculum-text] {
  white-space: pre-wrap;
}

.curriculum-intro__desc--mo {
  display: none;
}

.curriculum-intro__programs {
  display: flex;
  flex-direction: column;
  gap: 120px;
  min-width: 0;
}

.curriculum-intro__program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 100%;
  min-width: 0;
  text-align: center;
}

.curriculum-intro__figure {
  max-width: 100%;
}

.curriculum-intro__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.curriculum-intro__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}

.curriculum-intro__detail-button {
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: #402411;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.curriculum-intro__detail-button:hover,
.curriculum-intro__detail-button:focus-visible {
  color: #2f1a0c;
  transform: scale(1.06);
}

.curriculum-intro__figure--regular {
  width: 339px;
  height: 221px;
}

.curriculum-intro__figure--nkids {
  width: 287px;
  height: 220px;
}

.curriculum-intro__figure--season {
  width: 313px;
  height: 233px;
}

.curriculum-intro__figure--junior {
  width: 302px;
  height: 216px;
}

.curriculum-intro__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 50px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 50px;
  background: #5a371e;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro__summary {
  margin: 0;
  max-width: 100%;
  color: #5a371e;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro__summary p {
  margin: 0;
}

.curriculum-intro__accent {
  color: #5a371e;
  font-weight: 800;
}

.curriculum-intro__br-pc {
  display: inline;
}

.curriculum-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-intro__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
  padding: 50px 20px;
  border-radius: 20px;
  background: #f9f9f9;
}

.curriculum-intro__card-title {
  display: block;
  color: #000;
  font-size: 26px;
  font-weight: 800;
  line-height: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro__card-desc {
  margin: 0;
  max-width: 100%;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro__card-desc--lg {
  font-size: 24px;
}

.curriculum-intro__card-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.curriculum-intro__card-steps p {
  margin: 0 0 20px;
}

.curriculum-intro__card-steps p:last-child {
  margin-bottom: 0;
}

.curriculum-intro__step-label {
  display: inline-block;
}

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

.curriculum-intro__actions .btn--submit {
  min-width: 177px;
}

.curriculum-detail-modal {
  padding: 16px;
}

.curriculum-detail-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-detail-modal .branch-modal__dim {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.curriculum-detail-modal__content {
  position: relative;
  z-index: 1;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
}

.curriculum-detail-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 32px);
  object-fit: contain;
}

.curriculum-detail-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

@media (max-width: 1023px) {
  .user-curriculum-intro-page .sub-page-head {
    text-align: center;
  }

  .curriculum-intro {
    gap: 72px;
  }

  .curriculum-intro__desc--pc {
    display: none;
  }

  .curriculum-intro__desc--mo {
    display: block;
  }

  .curriculum-intro__head-desc .sub-page-head__desc {
    margin-top: 10px;
  }

  .curriculum-intro__programs {
    gap: 80px;
  }

  .curriculum-intro__program {
    gap: 30px;
  }

  .curriculum-intro__figure--regular,
  .curriculum-intro__figure--nkids,
  .curriculum-intro__figure--season,
  .curriculum-intro__figure--junior {
    width: 230px;
    height: auto;
  }

  .curriculum-intro__figure--regular {
    aspect-ratio: 339 / 221;
  }

  .curriculum-intro__figure--nkids {
    aspect-ratio: 287 / 220;
  }

  .curriculum-intro__figure--season {
    aspect-ratio: 313 / 233;
  }

  .curriculum-intro__figure--junior {
    aspect-ratio: 302 / 216;
  }

  .curriculum-intro__badge {
    font-size: 20px;
  }

  .curriculum-intro__title-group {
    gap: 12px;
  }

  .curriculum-intro__detail-button {
    font-size: 13px;
  }

  .curriculum-intro__summary {
    font-size: 14px;
    line-height: 20px;
  }

  .curriculum-intro__br-pc {
    display: none;
  }

  .curriculum-intro__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .curriculum-intro__card {
    gap: 20px;
    padding: 35px 20px;
  }

  .curriculum-intro__card-title {
    font-size: 18px;
  }

  .curriculum-intro__card-desc,
  .curriculum-intro__card-desc--lg {
    font-size: 14px;
  }

  .curriculum-intro__card-steps {
    font-size: 14px;
    line-height: 20px;
  }

  .curriculum-intro__card-steps p {
    margin-bottom: 12px;
  }

  .curriculum-intro__actions .btn--submit {
    min-width: 130px;
    max-width: 130px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .curriculum-detail-modal__close {
    top: 6px;
    right: 8px;
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   Error Page — 404 등 (US990404)
   -------------------------------------------------------------------------- */
.login-page {
  padding-top: 0;
  min-height: 100vh;
  background-color: var(--color-white);
  background: url("../images/page/footer_bg.png") center bottom -50px / 100% no-repeat;
}

.error-page .login-intro {
  gap: 40px;
  margin-bottom: 0;
}

.error-page .login-brand__nh {
  width: 400px;
  max-width: 100%;
  margin-bottom: 50px;
}

.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  padding: 40px 24px;
  text-align: center;
}

.error-page__code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.error-page__code-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-muted);
}

.error-page__code-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
}

.error-page__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.error-page__desc {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.login-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.login-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 80px 20px 220px;
}

.login-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  margin-bottom: 25px;
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-brand__nh {
  width: 500px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .error-page .login-brand__nh {
    width: 280px;
    margin-bottom: 30px;
  }

  .error-page__code-num {
    font-size: 56px;
  }

  .error-page__title {
    font-size: 20px;
  }

  .error-page__desc {
    font-size: 14px;
  }

  .login-main {
    padding: 60px 20px 160px;
  }
}

/* --------------------------------------------------------------------------
   Privacy Policy — US990601
   -------------------------------------------------------------------------- */
.user-privacy-page .body.body--full {
  display: block;
  max-width: 1400px;
  padding: 63px 24px 80px;
}

.privacy-policy__content {
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  font-size: 15px;
  line-height: 1.7;
  color: #373737;
}

.privacy-policy__intro {
  margin: 0 0 36px;
  font-size: 16px;
}

.privacy-policy__article + .privacy-policy__article {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #f0f0f0;
}

.privacy-policy__article-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #5a371e;
  line-height: 1.4;
}

.privacy-policy__article p {
  margin: 0 0 12px;
}

.privacy-policy__note {
  margin-top: 16px;
  font-weight: 700;
}

.privacy-policy__list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.privacy-policy__list > li + li {
  margin-top: 12px;
}

.privacy-policy__list ul,
.privacy-policy__list--nested {
  margin-top: 8px;
}

.privacy-policy__list ul {
  padding-left: 18px;
  list-style: disc;
}

.privacy-policy__list ul li + li {
  margin-top: 4px;
}

.privacy-policy__table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.privacy-policy__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border-top: 2px solid #5a371e;
}

.privacy-policy__table th,
.privacy-policy__table td {
  padding: 14px 16px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: middle;
}

.privacy-policy__table thead th {
  background: #faf6f4;
  font-weight: 800;
  color: #5a371e;
}

.privacy-policy__table tbody th {
  background: #fcfcfc;
  font-weight: 700;
  color: #373737;
}

.privacy-policy__meta {
  margin-top: 40px;
  padding: 24px;
  border-radius: 12px;
  background: #fafafa;
}

.privacy-policy__meta p {
  margin: 0;
}

.privacy-policy__meta p + p {
  margin-top: 6px;
}

.privacy-policy__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.privacy-policy__select {
  min-width: 240px;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 14px;
  color: #373737;
  background: #fff url("../images/common/arrow_down_gray.svg") right 16px center / 14px 14px no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.privacy-policy__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 280px;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.privacy-policy__download-icon {
  flex-shrink: 0;
  transition: filter 0.2s;
}

.privacy-policy__download:hover .privacy-policy__download-icon,
.privacy-policy__download:focus-visible .privacy-policy__download-icon {
  filter: brightness(0) invert(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .header,
  .breadcrumb,
  .footer,
  .privacy-policy__foot {
    display: none !important;
  }

  .user-privacy-page .body.body--full {
    padding: 0;
  }

  .privacy-policy__content {
    border: none;
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .user-privacy-page .body.body--full {
    padding: 32px 16px 60px;
  }

  .privacy-policy__content {
    padding: 24px 20px;
    font-size: 14px;
  }

  .privacy-policy__article-title {
    font-size: 16px;
  }

  .privacy-policy__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-policy__select,
  .privacy-policy__download {
    width: 100%;
    min-width: 0;
  }
}
