@charset "UTF-8";

@import url("font.css");
@import url("layout.css");

/* =========================================================
   Reset / Base
========================================================= */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

p,
dl,
dd,
ul {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a,
a:hover,
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: var(--dark);
  text-decoration: none;
}

em,
i {
  font-style: normal;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111 !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

input.left{text-align: left;}
input.center{text-align: center;}
input.right{text-align: right;}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
  height: 100vh;
}

/* =========================================================
   Common / Utility
========================================================= */
.btn-warp{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.btn {
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 9999px;
}

.btn:focus,
.btn:active,
.btn:focus:active {
  outline: none !important;
  box-shadow: none !important;
}

.btn.btn-write {
  width: 100px;
}

.btn-xm, .btn-group-xm > .btn {
  padding: 2px 12px 2px 12px;
  font-size: 12px;
  border-radius: 0.2rem;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 16px 30px 16px 30px;
  font-size: 18px;
  line-height: 100%;
}

.btn-wrap .btn{min-width: 140px !important;}

td.left,
.text-align-left {
  text-align: left !important;
}

td.right,
.text-align-right {
  text-align: right !important;
}

td.center,
.text-align-center {
  text-align: center !important;
}

.w200 {
  width: 200px !important;
}

.w300 {
  width: 300px !important;
}

.c-blue {
  color: #0064d7;
}

.c-red {
  color: #ff0000;
}

.c-main {
  color: var(--cyj-main);
}

.c-sub1 {
  color: var(--cyj-sub1);
}

.c-sub2 {
  color: var(--cyj-sub2);
}

.c-sub3 {
  color: var(--cyj-sub3);
}

.img-pc,
.br-pc {
  display: block;
}

.img-mo,
.br-ta,
.br-mo {
  display: none;
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.container {
  max-width: 1240px;
  min-height: calc(100vh - 200px);
  padding: 0px 20px 70px 20px;
}

.modal-title{
  font-weight: 700;
}
.modal-content{
  border-radius: 12px;
}
.modal-body{
  padding: 24px;
}
.modal-footer .btn{
  min-width: 120px;
}

.modal-footer.center{
  justify-content: center;
}

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

.scroll-hidden {
  overflow-y: auto;

  /* IE, Edge */
  -ms-overflow-style: none;

  /* Firefox */
  scrollbar-width: none;
}

/* Chrome, Safari */
.scroll-hidden::-webkit-scrollbar {
  display: none;
}


.modal-video .modal-content {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 0;
}

.modal-video .modal-header {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  padding: 0;
  border: 0;
  background: transparent;
}

.modal-video .btn-close {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.modal-video .modal-body {
  padding: 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* =========================================================
   Modal 모달 공통
========================================================= */
.layerpopup {
  --layerpopup-gap: 24px;
  --layerpopup-max-width: 400px;
  --layerpopup-max-height: 420px;
  --layerpopup-width: min(var(--layerpopup-max-width), calc((100vw - (var(--layerpopup-gap) * 2)) / 3));
  --layerpopup-content-height: min(var(--layerpopup-max-height), calc(100vh - (var(--layerpopup-gap) * 2)));
  --layerpopup-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  --layerpopup-footer-height: 44px;
  pointer-events: none;
}

.layerpopup.is-open {
  display: block !important;
}

.layerpopup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.layerpopup.modal {
  padding: var(--layerpopup-gap);
}

.layerpopup .modal-dialog.layerpopup-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0;
  pointer-events: none;
  z-index: 1055;
}

.layerpopup .modal-content {
  width: min(var(--layerpopup-width), calc(100vw - (var(--layerpopup-gap) * 2)));
  height: var(--layerpopup-content-height);
  max-height: var(--layerpopup-content-height);
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--layerpopup-shadow);
  pointer-events: auto;
}

.layerpopup .modal-body {
  flex: 1 1 auto;
  overflow: hidden;
  padding: 0;
}

.layerpopup .layerpopup-box {
  display: block;
  width: 100%;
}

.layerpopup .layerpopup-box a,
.layerpopup .layerpopup-box img {
  display: block;
  width: 100%;
}

.layerpopup .layerpopup-box img {
  height: auto;
  max-height: calc(var(--layerpopup-content-height) - var(--layerpopup-footer-height));
  object-fit: contain;
  vertical-align: top;
}

.layerpopup .showcheck {
  background: #fff;
}

.layerpopup .modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--layerpopup-footer-height);
  margin: 0;
  padding: 0 14px 0 12px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  background: #fff;
}

.layerpopup .modal-footer,
.layerpopup .form-check,
.layerpopup .form-check-input,
.layerpopup .form-check-label,
.layerpopup .btn-close {
  pointer-events: auto;
}

.layerpopup .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-left: 0;
  cursor: pointer;
}

.layerpopup .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 1px solid #7b7b7b;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
}

.layerpopup .form-check-input:checked {
  background-color: #006039;
  border-color: #006039;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.layerpopup .form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 96, 57, 0.15);
}

.layerpopup .form-check-label {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  color: #222;
  cursor: pointer;
  user-select: none;
}

.layerpopup .btn-close {
  flex: 0 0 auto;
  margin: 0;
  box-shadow: none;
  opacity: 0.65;
  cursor: pointer;
}

.layerpopup .btn-close:hover {
  opacity: 1;
}

/* 위치값 */
.layerpopup .modal-dialog.layerpopup-pos-1 {
  top: 25%;
  left: 16.6667%;
  transform: translate(-50%, -50%);
}

.layerpopup .modal-dialog.layerpopup-pos-2 {
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layerpopup .modal-dialog.layerpopup-pos-3 {
  top: 25%;
  left: 83.3333%;
  transform: translate(-50%, -50%);
}

.layerpopup .modal-dialog.layerpopup-pos-4 {
  top: 75%;
  left: 16.6667%;
  transform: translate(-50%, -50%);
}

.layerpopup .modal-dialog.layerpopup-pos-5 {
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layerpopup .modal-dialog.layerpopup-pos-6 {
  top: 75%;
  left: 83.3333%;
  transform: translate(-50%, -50%);
}

/* 모바일은 무조건 중앙 */
@media (max-width: 767px) {
  .layerpopup {
    --layerpopup-width: 92vw;
    --layerpopup-gap: 16px;
    --layerpopup-footer-height: 46px;
  }

  .layerpopup .modal-dialog.layerpopup-dialog {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
  }

  .layerpopup .form-check-label {
    font-size: 14px;
  }
}


/* =========================================================
   Header
========================================================= */
.header {
  position: relative;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}

.header .header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}

.header-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.header .header-logo a {
  display: block;
  height: 30px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.header .header-logo .logo-img {
  display: inline-block;
  width: 89px;
  height: 40px;
  font-size: 0;
  background: url(../images/logo.svg) no-repeat 50% 50%;
  background-size: cover;
}

.header .header-logo .logo-text {
  font-family: var(--font-point);
  font-size: var(--font-size20);
  font-weight: 700;
  color: #0064d7;
}

.header .header-menu .navbar-nav-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header .header-menu .main-nav {
  display: flex;
  gap: 30px;
}

.header .header-menu .main-nav .nav-item {
  position: relative;
}

.header .header-menu .main-nav .nav-item.campus-nav-hidden,
.header .js-campus-nav-item.campus-nav-hidden {
  display: none;
}

.header .header-menu .main-nav .nav-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.header .header-menu .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 100%;
  cursor: pointer;
}

.header .header-menu .nav-menu .current-campus-name {
  padding-right: 5px;
}

.header .header-menu .nav-menu:hover,
.header .header-menu .nav-menu.active {
  color: #e26136;
}

.header .header-menu .nav-menu.active {
  color: #f08300;
  font-weight: 700;
}

.header-btn-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-btn-area .header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: var(--spacing-8, 8px) 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  background: #17191a;
  border: 1px solid #17191a;
  border-radius: 99999px;
}

.header-btn-area .header-btn.outline {
  background: #fff;
  color: #17191a;
}

.header-btn-area .header-btn .icon {
  width: 24px;
  height: 24px;
}

.header-btn-area .header-btn .icon path {
  fill: currentColor;
}
.header-btn-area .header-btn.cyj-shop {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
  padding: var(--spacing-8, 8px) 12px;
}

.header .header-menu .nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 100;
  min-width: 190px;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.header .header-menu .nav-submenu li + li {
  margin-top: 2px;
}

.header .header-menu .nav-submenu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header .header-menu .nav-submenu a:hover,
.header .header-menu .nav-submenu a:focus,
.header .header-menu .nav-submenu a.active {
  color: #f08300;
  font-weight: 700;
}

.header .header-menu .main-nav .nav-item:hover .nav-submenu,
.header .header-menu .main-nav .nav-item:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* =========================================================
  에러 공용 페이지
========================================================= */

.error-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding-top: 50px;
}
.error-cont-box dl {
  text-align: center;
}

.error-cont-box dl dt {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}

.error-cont-box dl dt img {
  width: 100%;
}

.error-cont-box dl dd {
  font-size: var(--font-size16);
  padding: 0 30px;
  word-break: keep-all;
  line-height: 160%;
}

.error-cont-box .error-title{
  font-size: var(--font-size24);
  margin: 0px 0 20px 0;
  font-weight: 700;
}

.error-cont-box dl dd .btn {
  max-width: 200px;
  width: 100%;
}

.error-cont-box dl dd a {
  background: #fffecd;
  color: #000;
  display: inline-block;
  padding: 0 5px;
  border-radius: 3px;
}

.error-cont-box dl dd a:hover {
  color: #000;
}

.error-cont-box .btn-warp {
  margin-top: 20px;
  text-align: center;
}


/* =======================================================
   Academy Dropdown / User Menu
   ======================================================= */
.academy-dropdown,
.header-user-menu {
  position: relative;
}

.academy-dropdown-hidden {
  display: none;
}

.academy-btn {
  padding: 0 18px 0 0;
  color: #e26136;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  background: transparent;
  border: 0;
  box-shadow: none !important;
}

.academy-btn:focus,
.academy-btn:active {
  color: #e26136 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.academy-btn.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 2px;
  border-top: 0.3em solid #e26136;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.academy-list.dropdown-menu {
  min-width: 180px;
  margin-top: 8px !important;
  padding: 8px 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.academy-list .dropdown-item {
  padding: 10px 16px;
  color: #222;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.academy-list .dropdown-item:hover,
.academy-list .dropdown-item:focus {
  color: #e26136;
  background: #fff5f1;
}

.academy-list .dropdown-item.active, 
.academy-list .dropdown-item:active{
  color: #fff;
  background: #e26136;

}


.hw-modal .hw-box {
  color: #222;
}

.hw-modal .hw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.hw-modal .hw-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.hw-modal .hw-state {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
.hw-modal .hw-state span{
  display: inline-block;
  width: 50px;
  text-align: center;
}

.hw-modal .hw-group {
  margin-top: 20px;
}

.hw-modal .hw-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
  table-layout: fixed;
}

.hw-modal .hw-table th,
.hw-modal .hw-table td {
  height: 42px;
  padding: 0 12px;
  background: #f2f2f2;
  vertical-align: middle;
}

.hw-modal .hw-table th {
  border-radius: 2px 0 0 2px;
  font-size: 14px;
  padding: 0 20px;
  font-weight: 700;
  color: #444;
  text-align: left;
}

.hw-modal .hw-table td {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  word-break: keep-all;
}

.hw-modal .hw-table td:last-child {
  border-radius: 0 2px 2px 0;
}

.hw-modal .radio-set {
  display: inline-grid;
  grid-template-columns: repeat(2, 28px);
  gap: 22px;
  justify-content: end;
}

.hw-modal .radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.hw-modal .radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hw-modal .radio span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #8a8a8a;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.hw-modal .radio input:checked + span{
  border-color: var(--primary);
}
.hw-modal .radio input:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.hw-modal .radio input:focus + span {
  box-shadow: 0 0 0 3px rgba(0, 112, 60, 0.12);
}

.hw-modal .check {
  display: block;
  width: 20px;
  height: 20px;
}

.hw-modal .check.done{
  background: url(../images/icon/check_lg.svg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.hw-modal .check.undone::before {
  content: "";
}

/* 과거 숙제 */
.hw-modal .hw-table tr.is-past th,
.hw-modal .hw-table tr.is-past td {
  background: #f5f5f5;
  color: #999;
  opacity: 0.7;
}

.hw-modal .hw-table tr.is-past .check {
  color: #bbb;
}

.hw-modal .hw-table tr.is-past .radio {
  cursor: default;
}

.hw-modal .hw-table tr.is-past .radio span {
  border-color: #ccc;
  background: #f2f2f2;
}

.hw-modal .hw-table tr.is-past .radio input:checked + span::after {
  background: #bbb;
}

.hw-modal .hw-table tr.is-past .radio input {
  pointer-events: none;
}

.hw-check-wrap .hw-section {
  margin-top: 20px;
}

.hw-check-wrap .hw-section:first-child {
  margin-top: 0;
}

.hw-check-wrap .hw-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 16px;
  border-bottom: 1px solid #d6d6d6;
}

.hw-check-wrap .hw-section-head h6 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.hw-check-wrap .hw-section-head span {
  font-size: 18px;
}

.hw-check-wrap .hw-list {
  margin-top: 14px;
}

.hw-check-wrap .hw-row {
  display: grid;
  grid-template-columns: 90px 1fr auto 50px;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  background: #f1f1f1;
  border-bottom: 5px solid #fff;
}

.hw-check-wrap .hw-row-extra {
  grid-template-columns: 1fr auto 50px;
}

.hw-check-wrap .hw-code,
.hw-check-wrap .hw-name {
  font-size: 16px;
  font-weight: 600;
}

.hw-check-wrap .hw-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hw-check-wrap .hw-icon {
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.hw-check-wrap .hw-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hw-check-wrap .hw-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 6px 0 13px;
  border: 1px solid #c6c6c6;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  line-height: 1;
}

.hw-check-wrap .hw-file button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #fff;
  color: #777;
}
.hw-check-wrap .hw-file button::before{
  content: '×';
  display: block;
  padding: 0 0 2px 0;
}

.hw-check-wrap .hw-submit {
  height: 28px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #006f43;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hw-check-wrap .hw-submit .btn-icon{
  position: relative;
  top: -1px;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.hw-check-wrap .hw-submit .btn-icon svg{
  width: 100%;
  fill: currentColor;
}

.hw-check-wrap .hw-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  cursor: default;
}

.hw-check-wrap .hw-checkbox input {
  display: none;
}

.hw-check-wrap .hw-checkbox__mark {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d5d5d5;
  flex-shrink: 0;
  cursor: pointer;
}

.hw-check-wrap .hw-checkbox__mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.hw-check-wrap .hw-checkbox input:checked + .hw-checkbox__mark {
  background: #000;
}

.hw-check-wrap .hw-online-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 22px;
  background: #f1f1f1;
  border-bottom: 5px solid #fff;
}

.hw-check-wrap .hw-online-name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
}

.hw-check-wrap .hw-link,
.hw-check-wrap .hw-retry {
  height: 26px;
  padding: 0px 16px 2px 16px;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
}

.hw-check-wrap .hw-link {
  border: 1px solid #007344;
  color: #007344;
}

.hw-check-wrap .hw-retry {
  border: 1px solid #222;
  color: #222;
}

.hw-check-wrap .hw-status {
  font-size: 14px;
}

.hw-check-wrap .hw-status.is-done {
  color: #111;
}

.hw-check-wrap .hw-status.is-none {
  color: #777;
}

.hw-check-wrap .hw-note-section {
  margin-top: 22px;
}

.hw-check-wrap .hw-note-box {
  margin-top: 14px;
  padding: 14px 22px;
  background: #f1f1f1;
}

.hw-check-wrap .hw-note-box dl {
  display: flex;
  font-size: 16px;
}

.hw-check-wrap .hw-note-box dt {
  width: 78px;
  font-weight: 500;
}

.hw-check-wrap .hw-note-box dd {
  margin: 0;
}

.hw-check-wrap .hw-note-box a {
  color: #0064d7;
  text-decoration: none;
}



/* user menu */
.header-user-menu .header-btn {
  justify-content: space-between;
  width: auto;
  min-width: 140px;
  padding: 8px 12px;
}

.user-toggle,
.user-info,
.user-arrow {
  display: flex;
  align-items: center;
}

.user-toggle {
  justify-content: space-between;
  gap: 8px;
}

.user-info {
  gap: 6px;
}

.user-submenu {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  min-width: 140px;
  margin-top: 10px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.user-submenu a {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.user-submenu a:hover {
  background: #f5f5f5;
}

.header-user-menu.is-open .user-submenu {
  display: block;
}

.header-user-menu.is-open .user-arrow {
  transform: rotate(180deg);
}

/* =========================================================
   Footer
========================================================= */
.footer {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  color: #fff;
  background: #3f444a;
  border-top: 0.5px solid rgba(91, 91, 91, 0.2);
}

.footer-top {
  width: 100%;
  margin-bottom: 30px;
  background: #353a40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  height: 60px;
  padding: 0 20px;
  margin: 0 auto;
}

/* 정책 링크 */
.footer-policy {
  display: flex;
  align-items: center;
}

.footer-policy a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-policy a + a {
  margin-left: 15px;
  padding-left: 15px;
}

.footer-policy a + a::before {
  content: "|";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}

/* 캠퍼스 드롭다운 */
.footer-campus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 100%;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.campus-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #353a40;
  border: 0;
  cursor: pointer;
}

.campus-plus {
  font-size: 24px;
  color: #ff3b30;
}

.campus-menu {
  position: absolute;
  right: 0;
  bottom: 60px;
  display: none;
  width: 200px;
  padding: 10px 0;
  background: #353a40;
  list-style: none;
  z-index: 1000;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.campus-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
}

.campus-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.footer-campus.active .campus-menu {
  display: block;
}

.footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.footer .foot-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}

.footer .foot-area .foot-cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 140%;
}

.footer .foot-area .foot-cont .academy-branch {
  font-size: 18px;
  font-weight: 700;
}

.footer .foot-area .foot-cont p span {
  display: inline-block;
  font-size: 14px;
}

.footer .foot-area .foot-cont p span::after {
  content: "|";
  padding-left: 5px;
  margin-right: 5px;
}

.footer .foot-area .foot-cont p span:last-child::after {
  display: none;
}

.footer .foot-area .foot-cont .copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--font-size12);
  font-weight: 300;
}

.footer .footer-btn-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.footer .footer-btn-area .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 30px;
  padding: 5px 17px 6px;
  color: rgba(255, 255, 255, 1);
  border-radius: 22px;
}

.footer .footer-btn-area .sns-link.blog {
  color: rgba(0, 185, 40, 1);
  border: 1px solid rgba(0, 185, 40, 1);
}

.footer .footer-btn-area .sns-link.youtube {
  color: rgba(255, 0, 0, 1);
  border: 1px solid rgba(255, 0, 0, 1);
}

.footer .foot-cs-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer .foot-cs-guide dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer .foot-cs-guide dl dd {
  color: #fff;
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.footer .foot-cs-guide dl dd a {
  color: #fff;
}

.footer .foot-cs-guide dl dd span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size12);
  font-weight: 400;
}

/* =========================================================
   Quick Menu
========================================================= */
.quick-control-box {
  position: fixed;
  top: 50%;
  right: 30px;
  z-index: 1050;
  width: 80px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-control-box.is-show {
  opacity: 1;
  pointer-events: auto;
}

.quick-menu {
  background: #fff;
  border-left: 1px solid #e5e5e5;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 35, 112, 0.16);
}

.quick-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-menu li {
  border-bottom: 1px solid #e5e5e5;
}

.quick-menu li:last-child {
  border-bottom: 0;
}

.quick-menu .quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 12px 0;
  cursor: pointer;
}

.quick-menu .quick-link .quick-text {
  color: #171717;
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.24px;
  text-align: center;
}

.quick-menu .quick-link .quick-icon {
  display: block;
  width: 40px;
  height: 40px;
}

.btn-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 10px auto 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  background: #ff5a2f;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.icon-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
}

.icon-top::before {
  content: "↑";
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

/* =========================================================
   Local Navigation
========================================================= */
.local-navigation-area {
  display: block;
  padding: 50px 0 40px 0;
}

.local-navigation-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb {
  margin-bottom: 0;
  color: #888;
  font-size: 14px;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
}

.breadcrumb a::after {
  padding-right: 8px;
  padding-left: 8px;
  color: #8899b3;
  content: var(--breadcrumb-divider, "/");
}

.breadcrumb-sep {
  margin: 0 6px;
}

.breadcrumb-current {
  color: #222;
  font-weight: 700;
}

.lnb-title {
  margin: 0;
  color: #666;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.lnb-title .lnb-current-title {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  opacity: 1;
}

.user-greeting {
  margin: 0;
  color: #222;
  font-size: 16px;
}



/* mypage local nav */
.local-navigation-area.mypage {
  padding: 12px 0;
  background: #fff;
}

.local-navigation-area.mypage .local-navigation-bar {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}

.local-navigation-area.mypage .profile-thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  background: #eee;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.local-navigation-area.mypage .profile-thumb {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.local-navigation-area.mypage .user-meta {
  margin-left: 20px;
}

.local-navigation-area.mypage .user-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.local-navigation-area.mypage .user-greeting .user-name {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.local-navigation-area.mypage .user-greeting .greeting-text {
  font-size: 22px;
  color: #666;
  font-weight: 500;
}

.local-navigation-area.mypage .user-school {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.local-navigation-area.mypage .user-school span::after {
  content: "|";
  color: #d9d9d9;
  padding-left: 10px;
  margin-right: 10px;
}

.local-navigation-area.mypage .user-school span:last-child::after {
  display: none;
}

/* =========================================================
   My Page Tabs
========================================================= */
.mypage-tab-area{
  background: #353b44;
}

.mypage-tab {
  background: #353b44;
  margin-bottom: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mypage-tab::-webkit-scrollbar {
  display: none;
}

.mypage-tab.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.mypage-tab-list {
  display: flex;
  width: 100%;
  min-width: 880px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.mypage-tab-item {
  flex: 1 0 0;
  min-width: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mypage-tab-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mypage-tab-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 98px;
  padding: 16px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.mypage-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.mypage-tab-icon--placeholder {
  border-radius: 50%;
  background: #d7dde4;
}

.mypage-tab-icon--blue {
  background: #4b7bd7;
}

.mypage-tab-icon--orange {
  background: #f07f2f;
}

.mypage-tab-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.mypage-tab-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  word-break: keep-all;
  white-space: nowrap;
}

.mypage-tab-item.is-active .mypage-tab-link,
.mypage-tab-link:hover{
  background: #2d333b;
}

/* 한글 상세 주석: 학부모 계정에서 활성 자녀가 없으면 상세 메뉴 탭 링크를 대시보드와 동일하게 비활성화한다. */
.mypage-tab-link.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(1);
  background: #2d333b;
}

.mypage-tab-link.is-disabled:hover,
.mypage-tab-link.is-disabled:focus,
.mypage-tab-item.is-active .mypage-tab-link.is-disabled {
  background: #2d333b;
}

.mypage-tab-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
/* =========================================================
   Campus Choice Modal
========================================================= */
.campus-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.campus-choice-modal.is-open {
  display: block;
}

.campus-choice-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.campus-choice-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, calc(100% - 40px));
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  transform: translate(-50%, -50%);
}

.campus-choice-modal__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
  height: 200px;
  padding: 30px;
  color: #fff;
  background: url(../images/cyj_main_modal_top.jpg);
}

.campus-choice-modal__sub {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.campus-choice-modal__title {
  margin: 0;
  font-family: var(--font-point);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.campus-choice-modal__body {
  padding: 50px 32px 32px;
  background: #fff;
}

.campus-choice-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.campus-option {
  position: relative;
  cursor: pointer;
}

.campus-option input {
  position: absolute;
  opacity: 0;
}

.campus-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  color: #23457c;
  font-family: var(--font-point);
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #ccd4dd;
  border-radius: 6px;
}

.campus-option input:checked + span {
  font-weight: 700;
  border: 1px solid #23457c;
}

.campus-choice-modal__btn {
  width: 100%;
  height: 60px;
  margin-top: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #17191a;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.campus-choice-modal__btn:disabled {
  background: #b8bcc3;
  cursor: not-allowed;
}

/* =========================================================
   Main Page / Common Section
========================================================= */
.main-page {
  width: 100%;
  overflow-x: hidden;
  background: #f7f8fb;
}

.main-section {
  position: relative;
  width: 100%;
  padding: 100px 30px;
}

.main-section + .main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.08) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  transform: translateX(-50%);
}

.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
  word-break: keep-all;
  line-height: 1.2;
}

.section-heading.justify-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading.justify-between .section-title {
  font-size: 32px;
}

.section-heading.sub .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  margin: 0 auto 30px;
  padding: 12px 20px;
  color: #fff !important;
  font-family: var(--font-point);
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3%;
  background: #333;
  border-radius: 6px;
}

.section-label {
  display: inline-block;
  margin-bottom: 20px;
  color: #333;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2%;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: #333;
  font-family: var(--font-point);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.section-title p{
  display: inline-block;
}

.section-desc {
  display: block;
  color: #333;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -2%;
}

.main-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 149px;
  height: 48px;
  padding: 12px 24px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: center;
  border: 1px solid #333;
  border-radius: 99999px;
  cursor: pointer;
}

.main-btn svg {
  width: 24px;
  height: 24px;
}

.main-btn svg path {
  fill: currentColor;
}

/* =========================================================
   Main Visual / Swiper
========================================================= */
.section-visual {
  width: 100%;
  height: 430px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3ff 0%, #f7f8fb 100%);
}

.section-visual .swiper {
  z-index: 1000;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  background: #444;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 0 20px;
  color: #fff !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.swiper-slide-cont {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.swiper-slide-cont img {
  width: 100%;
  height: 100%;
}

.swiper-pagination.main-slide .swiper-pagination-bullet {
  width: 50px;
  height: 6px;
  border-radius: 10px;
}

.swiper-pagination.main-slide .swiper-pagination-bullet-active {
  background: #fff !important;
}

/* =========================================================
   Section: Shortcut
========================================================= */
.section-shortcut {
  padding: 70px 30px;
  background: #fff;
}

.section-shortcut .banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wecan-schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #e76634;
  border-radius: 6px;
  box-sizing: border-box;
}

.wecan-schedule-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  max-width: 110px;
  color: #fff;
  text-align: center;
  font-family: var(--font-point);
  border-radius: 14px;
}

.wecan-schedule-card .schedule-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: #fff;
  color: #ff4f22;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
}

.wecan-schedule-card .schedule-brand {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #ff5c2d;
  letter-spacing: -1px;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff,
    -3px  0px 0 #fff,
     3px  0px 0 #fff,
     0px -3px 0 #fff,
     0px  3px 0 #fff;
  filter: drop-shadow(0 4px 0 rgba(170, 57, 16, 0.45));
}

.wecan-schedule-card .schedule-title {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.wecan-schedule-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
}

.schedule-item + .schedule-item {
  margin-top: 28px;
}

.schedule-date {
  font-size: 14px;
  font-weight: 400;
  color: #111;
}

.schedule-subject {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.schedule-divider {
  border-top: 1px dashed #cfcfcf;
}
.banner-card{
  border-radius: 6px;
  overflow: hidden;
}

.banner-card img,
.content-card-cont img {
  width: 100%;
  height: 100%;
}
.banner-card > div{

  width: 100%;
  height: 100%;
}

/* =========================================================
   Section: Education
========================================================= */
.section-education {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f8 100%);
}

.section-education .section-heading .section-label,
.section-education .section-heading .section-title,
.section-education .section-heading .section-desc {
  color: #103b6e;
}

.section-education .section-heading.sub .section-label,
.section-education .section-heading.sub .section-desc {
  color: #333;
}

.content-card-grid {
  display: grid;
  gap: 70px;
}

.content-card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 50px;
  background: #fff;
  border-radius: 50px;
}

.content-card-cont {
  width: 100%;
}

.skill-up-section {
  width: 100%;
  margin-top: 50px;
}

.skill-up-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.skill-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  border: 3px solid transparent;
  border-radius: inherit;
  transition: border-color 0.28s ease, opacity 0.28s ease;
}

.skill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 45%
  );
  transition: opacity 0.28s ease;
}

.skill-card:hover,
.skill-card:focus-visible {
  filter: brightness(1.03);
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.skill-card:hover::before,
.skill-card:focus-visible::before {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.38);
}

.skill-card:hover::after,
.skill-card:focus-visible::after {
  opacity: 1;
}

.skill-card:focus-visible {
  outline: none;
}

.skill-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #fff;
}

.skill-card__eyebrow {
  margin: 0 0 3px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.skill-card__desc {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}

.skill-card__title {
  display: inline-block;
  font-family: var(--font-point);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}

.skill-card__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.skill-card__icon img {
  width: 100%;
}

.skill-card:hover .skill-card__icon,
.skill-card:focus-visible .skill-card__icon {
  opacity: 1;
  transform: scale(1.08);
}

.skill-card.orange {
  background: #ff9400;
}

.skill-card.orange .skill-card__title {
  color: #fff200;
}

.skill-card.lime {
  background: #39b400;
}

.skill-card.lime .skill-card__title {
  color: #8dff00;
}

.skill-card.green {
  background: #00811d;
}

.skill-card.green .skill-card__title {
  color: #00ff57;
}

.education-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.education-support-item {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.education-support-item dl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  height: 170px;
  padding: 20px;
  color: #fff;
  font-family: var(--font-point);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: background-size 0.45s ease;
}

.education-support-item dl::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
  transition: opacity 0.35s ease;
}

.education-support-item dt {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.3s ease;
}

.education-support-item dd {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  transition: transform 0.3s ease;
}

.education-support-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.education-support-item:hover dl {
  background-size: 110%;
}

.education-support-item:hover dl::before {
  opacity: 0.85;
}

.education-support-item:hover dt,
.education-support-item:hover dd {
  transform: translateY(-2px);
}

.education-support-item.item01 dl { background-image: url(../images/education_support01_bg.png); }
.education-support-item.item02 dl { background-image: url(../images/education_support02_bg.png); }
.education-support-item.item03 dl { background-image: url(../images/education_support03_bg.png); }
.education-support-item.item04 dl { background-image: url(../images/education_support04_bg.png); }
.education-support-item.item05 dl { background-image: url(../images/education_support05_bg.png); }
.education-support-item.item06 dl { background-image: url(../images/education_support06_bg.png); }
.education-support-item.item07 dl { background-image: url(../images/education_support07_bg.png); }
.education-support-item.item08 dl { background-image: url(../images/education_support08_bg.png); }
.education-support-item.item09 dl { background-image: url(../images/education_support09_bg.png); }
.education-support-item.item10 dl { background-image: url(../images/education_support10_bg.png); }
.education-support-item.item11 dl { background-image: url(../images/education_support11_bg.png); }
.education-support-item.item12 dl { background-image: url(../images/education_support12_bg.png); }

/* =========================================================
   Section: Learning
========================================================= */
.section-learning {
  background: #fff;
}

.ai-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ai-card {
  position: relative;
  min-height: 280px;
  padding: 40px 30px;
  overflow: visible;
  color: #fff;
  font-family: var(--font-point);
  border-radius: 30px;
  transition: transform 0.25s ease;
}

.ai-card:hover {
  transform: scale(1.03);
}

.ai-card.card-red {
  background: linear-gradient(135deg, #ff5a3c, #ff3c2c);
}

.ai-card.card-green {
  background: linear-gradient(135deg, #15c45a, #05a64d);
}

.ai-card.card-blue {
  background: linear-gradient(135deg, #5a7ff5, #4669da);
}

.ai-label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.ai-text p {
  margin-bottom: 3px;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}

.ai-text strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.ai-character {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 255px;
  height: 230px;
  transition: transform 0.35s ease;
}

.ai-card:hover .ai-character {
  animation: bounceCharacter 0.7s ease;
}

@keyframes bounceCharacter {
  0% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
  55% { transform: translateY(4px); }
  75% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* =========================================================
   Section: Video
========================================================= */
.section-video {
  background: url(../images/section_video_bg.png) no-repeat;
  background-size: cover;
}

.section-video .section-heading .section-label,
.section-video .section-heading .section-title,
.section-video .section-heading .section-desc,
.section-portfolio .section-heading .section-label,
.section-portfolio .section-heading .section-title,
.section-portfolio .section-heading .section-desc {
  color: #103b6e;
}

.represent-video-box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.represent-video-box .represent-video-swiper {
  padding-bottom: 42px;
  overflow: hidden;
}

.represent-video-box .swiper-wrapper {
  align-items: stretch;
}

.represent-video-box .swiper-slide {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  background: transparent;
}

.represent-video-box .represent-video-card {
  display: block;
  padding: 26px;
  text-decoration: none;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.represent-video-box .represent-video-thumb img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 40px;
}

.represent-video-box .represent-video-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.represent-video-box .represent-video-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 6px;
  margin: 0 !important;
  opacity: 1;
  background: #c9d0d9;
  border-radius: 999px;
}

.represent-video-box .represent-video-pagination .swiper-pagination-bullet-active {
  background: #244e86;
}

/* =========================================================
   Section: News
========================================================= */
.section-news {
  background: #fff;
}

.main-notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.main-notice-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-notice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.main-notice-thumb {
  overflow: hidden;
  aspect-ratio: 38 / 24;
  background: #f1f1f1;
}

.main-notice-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.main-notice-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 158px;
  padding: 22px 20px 18px;
}

.main-notice-campus {
  color: #888;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}

.main-notice-title {
  margin: 0;
  overflow: hidden;
  color: #050101;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.main-notice-date {
  color: #323743;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-align: right;
}

.main-notice-empty-inline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  margin: 12px 0 0;
  color: #666;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
}

/* =========================================================
   Section: Portfolio (Main)
========================================================= */
.section-portfolio {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f8 100%);
}

.growth-portfolio {
  padding: 100px 0;
}

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

.portfolio-item {
  position: relative;
  padding: 20px 20px 0;
  overflow: visible;
  background: #f8f8f8;
  border-radius: 32px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06);
}

.portfolio-thumb {
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #ddd;
  border-radius: 20px;
}

.portfolio-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.portfolio-item:has(.portfolio-play:hover) .portfolio-thumb img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.portfolio-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.portfolio-text {
  flex: 1;
  min-width: 0;
}

.portfolio-text dl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.portfolio-text dt {
  margin: 0;
  flex: 0 0 auto;
  line-height: 0;
}

.portfolio-text dd {
  margin: 0;
}

.portfolio-text .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.portfolio-text .icon img {
  display: block;
  width: 48px;
  height: auto;
}

.portfolio-title {
  margin: 0;
  color: #f3bc16;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.portfolio-name {
  margin: 4px 0 0;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.portfolio-name span {
  font-weight: 700;
}

.portfolio-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #123f7a;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.portfolio-play:hover {
  transform: scale(1.05);
  background: #0f3566;
}

.play-icon {
  width: 26px;
  height: 30px;
  margin-left: 4px;
}

/* =========================================================
   My Page Intro
========================================================= */
.mypage-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.mypage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 10px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.mypage-card {
  padding: 20px 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s;

  border: 1px solid transparent; /* ⭐ 기본에 넣기 */
  box-sizing: border-box;        /* ⭐ 안정성 */
}

.mypage-card:hover {
  transform: translateY(-5px);
  border: 1px solid #353b44;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mypage-card.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(1);
  background: #f5f5f5;
}

.mypage-card.is-disabled:hover {
  transform: none;
  border: 1px solid transparent;
  box-shadow: none;
}

.mypage-card img {
  width: 70px;
  margin-bottom: 20px;
}

.mypage-card h3 {
  margin-bottom: 10px;
  color: #333;
  font-family: var(--font-point);
  font-size: 16px;
  font-weight: 700;
}

.mypage-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.4;
  word-break: keep-all;
}



/* =========================================================
   Notice List
========================================================= */
.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #2b2b2b;
}

.notice-item {
  padding: 26px 0;
  border-bottom: 1px solid #d9d9d9;
}

.notice-item a {
  display: flex;
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.notice-thumb {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 300 / 150;
  overflow: hidden;
  background: #f2f2f3;
  border-radius: 10px;
}

.notice-thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.notice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.notice-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.notice-campus {
  margin-bottom: 0;
  color: #888;
  font-size: 14px;
}

.notice-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  padding: 0 14px;
  border: 1px solid #17191a;
  border-radius: 99999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: #17191a;
}

.notice-status-badge.outline {
  color: #17191a;
  background: #fff;
}

.notice-status-badge.is-ended {
  border-color: #b7b7b7;
  color: #fff;
  background: #b7b7b7;
}

.notice-title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.notice-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.notice-title-row .notice-title {
  margin-bottom: 0;
}

.notice-type-badge {
  height: 28px;
  padding: 0 12px;
  font-size: 13px;
  white-space: nowrap;
}

.notice-date {
  color: #666;
  font-size: 14px;
}

/* =========================================================
   Pagination
========================================================= */
.pagination-wrap {
  margin-top: 30px;
}

.pagination {
  gap: 10px;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #222;
  font-weight: 600;
  background: #eee;
  border: none;
  border-radius: 10px;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background: #0b5d3b;
}

.pagination .page-link.page-arrow {
  background: transparent;
}

.page-arrow-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #0d1028;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   Login
========================================================= */
.member-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: 50px 30px;
}

.login-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.login-wrap .login-box {
  width: 100%;
  max-width: 380px;
}

.login-wrap .login-header {
  margin-bottom: 40px;
  text-align: center;
}

.login-wrap .login-welcome {
  margin-bottom: 6px;
  color: #444;
  font-size: 14px;
}

.login-wrap .login-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.login-wrap .login-field + .login-field {
  margin-top: 10px;
}

.login-wrap .login-input {
  width: 100%;
  height: 50px;
  padding: 0 22px;
  color: #111;
  font-size: 16px;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  outline: none;
}

.login-wrap .login-input::placeholder {
  color: #b8b8b8;
}

.login-wrap .login-input:focus {
  border-color: #0a6a3b;
}

.login-wrap .login-btn {
  width: 100%;
  height: 60px;
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: var(--primary);
  font-family: var(--font-point);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.login-wrap .login-links {
  margin-top: 20px;
  text-align: center;
}

.login-wrap .login-links p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.login-wrap .login-links p + p {
  margin-top: 10px;
}

.login-wrap .login-links a {
  margin-left: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.login-wrap .login-links a:hover {
  text-decoration: underline;
}

/* 회원가입 전용 추가 스타일 */
.login-wrap .login-header--join {
  margin-bottom: 32px;
}

.login-wrap .login-welcome--hide {
  display: none;
}

.login-wrap .login-title--join {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

/* 비밀번호 토글 */
.login-wrap .login-password--join {
  position: relative;
}

.login-wrap .login-password--join .login-input {
  padding-right: 52px;
}

.login-wrap .login-password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f8f8f;
  transform: translateY(-50%);
  cursor: pointer;
}

.login-wrap .login-help-text {
  margin: 4px 8px 0;
  color: #9d9d9d;
  font-size: 12px;
  line-height: 1.4;
}

.login-sub-btn{
  border-radius: 6px;
  width: 130px;
}
.login-wrap .login-inline-group {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.login-wrap .login-inline-group > *:first-child {
  flex: 1;
  min-width: 0;
}

.login-wrap .login-inline-btn {
  flex: 0 0 138px;
  height: 56px;
  padding: 0 14px;
  border-width: 2px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.login-wrap .login-select-wrap {
  position: relative;
}

.login-wrap .login-select {
  padding-right: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.login-wrap .login-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #8d8d8d;
  border-bottom: 2px solid #8d8d8d;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.login-wrap .login-code-box {
  position: relative;
}

.login-wrap .login-code-input {
  padding-right: 72px;
}

.login-wrap .login-code-time {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #444;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(-50%);
}

/* 약관 */
.login-wrap .login-agree {
  margin-top: 14px;
}

.login-wrap .login-agree-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.login-wrap .login-agree-item + .login-agree-item {
  margin-top: 6px;
}

.login-wrap .login-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-wrap .login-check input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.login-wrap .login-check-box {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
}

.login-wrap .login-check input:checked + .login-check-box {
  background: var(--primary);
  border-color: var(--primary);
}

.login-wrap .login-check input:checked + .login-check-box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.login-wrap .login-agree-text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.login-wrap .login-agree-link {
  margin-left: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.login-wrap .login-agree-link:hover {
  text-decoration: underline;
}

/* 회원가입 버튼만 살짝 키움 */
.login-wrap .login-form .login-btn {
  margin-top: 18px;
  height: 64px;
  font-size: 20px;
  font-weight: 700;
}


/* =========================================================
   Offcanvas
========================================================= */
.offcanvas-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #17191a;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.offcanvas.offcanvas-end {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-left: 0;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.offcanvas-header .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.offcanvas-header .logo-img {
  display: inline-block;
  width: 89px;
  height: 40px;
  font-size: 0;
  background: url(../images/logo.svg) no-repeat 50% 50%;
  background-size: contain;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.offcanvas-menu {
  flex: 1;
  overflow-y: auto;
  padding-top: 10px;
  scrollbar-width: thin;
  scrollbar-color: #cfcfcf transparent;
}

.offcanvas-menu::-webkit-scrollbar {
  width: 8px;
}

.offcanvas-menu::-webkit-scrollbar-track {
  background: transparent;
}

.offcanvas-menu::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 999px;
}

.offcanvas-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.offcanvas-user-message {
  flex: 1;
  margin: 0;
  color: #17191a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.offcanvas-user-message strong {
  font-weight: 700;
}

.offcanvas-user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 100px;
  height: 36px;
  padding: 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: #17191a;
  border: 1px solid #17191a;
  border-radius: 999px;
}

.offcanvas-user-btn.outline {
  color: #17191a;
  background: #fff;
}

.offcanvas-user-btn:hover {
  color: #fff;
}

.offcanvas-user-btn.outline:hover {
  color: #17191a;
}

.offcanvas-menu > ul {
  margin: 0;
  padding: 0;
}

.offcanvas-menu > ul > li {
  border-bottom: 1px solid #ededed;
}

.offcanvas-link {
  display: block;
  padding: 18px 20px 10px;
  color: #17191a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.offcanvas-link .current-campus-name {
  padding-right: 4px;
}

.offcanvas-submenu {
  margin: 0;
  padding: 0 20px 18px;
}

.offcanvas-submenu li + li {
  margin-top: 5px;
}

.offcanvas-submenu a {
  display: block;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.offcanvas-submenu a:hover {
  color: #e26136;
}

.offcanvas-user-box {
  display: grid;
  gap: 20px;
  padding: 10px 20px 24px 20px;
  background: #fff;
  border-bottom: 8px solid #f1f1f1;
}

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

.offcanvas-user-box .shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.offcanvas-user-box .shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  gap: 5px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #f7fbff;
  transition: all 0.2s ease;
}

.offcanvas-user-box .shortcut-card img {
  width: 46px;
  height: 46px;
}

.foot-menu {
  padding: 10px;
}

.foot-menu a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  color: #9e9e9e;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

/* =========================================================
   Education Program
========================================================= */
.education-program-visual {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.education-program-visual img {
  width: 100%;
  height: auto;
}

.education-program-card-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 130px;
}

.education-program-card {
  width: 100%;
  max-width: 400px;
  padding: 28px 28px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.education-program-list {
  margin: 0;
  padding-left: 28px;
}

.education-program-list li {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  list-style: disc;
}

.education-program-list li + li {
  margin-top: 4px;
}

.education-program-desc-box {
  margin-top: 18px;
  padding: 18px 20px;
  background: #f3f3f3;
  border-radius: 18px;
}

.education-program-desc-box p {
  position: relative;
  margin: 0;
  padding-left: 10px;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
}

.education-program-desc-box p::before {
  content: "-";
  position: absolute;
  left: -5px;
}

.education-program-desc-box p + p {
  margin-top: 10px;
}

/* =========================================================
   Board View
========================================================= */
.board-view-area {
  width: 100%;
  margin: 0 auto;
}

.board-view {
  border-top: 2px solid #2b2b2b;
}

.board-view__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #d9d9d9;
}

.board-view__back {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.board-view__back:hover {
  background: #f7f7f7;
  border-color: #bdbdbd;
}

.board-view__back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-view__title-wrap {
  flex: 1;
  min-width: 0;
}

.board-view__title {
  margin: 0;
  color: #111;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.board-view__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
  color: #777;
  font-size: 16px;
}

.board-view__meta-item::after {
  content: "•";
  padding-left: 10px;
  margin-right: 10px;
  color: #b0b0b0;
}

.board-view__meta-item:last-child::after {
  display: none;
}

.board-view__meta-item strong {
  color: #666;
  font-weight: 500;
}

.board-view__body {
  padding: 52px 0 64px;
  border-bottom: 1px solid #d9d9d9;
}

.board-view__content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
}

.board-view__content p {
  margin: 0;
}

.board-view__content p + p {
  margin-top: 6px;
}

.board-view__nav {
  border-bottom: 1px solid #d9d9d9;
}

.board-view__nav-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  color: inherit;
  text-decoration: none;
}

.board-view__nav-item + .board-view__nav-item {
  border-top: 1px solid #ececec;
}

.board-view__nav-label {
  flex: 0 0 72px;
  color: #444;
  font-size: 16px;
  font-weight: 400;
}

.board-view__nav-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-view__nav-item:hover .board-view__nav-title {
  color: #111;
}

.board-view__actions {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.board-view__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 52px;
  padding: 0 24px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  border: 1px solid #222;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.board-view__btn:hover {
  color: #fff;
  background: #111;
}

/* =========================================================
   Portfolio Best / Roadmap
========================================================= */
.portfolio-best-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.portfolio-best-block + .portfolio-best-block {
  margin-top: 90px;
}

.portfolio-best-head {
  margin-bottom: 32px;
  text-align: center;
}

.portfolio-best-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(245, 122, 31, 0.1);
  color: #f57a1f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portfolio-best-title {
  margin: 14px 0 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.03em;
}

.portfolio-best-desc {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: #6b7280;
}

.portfolio-best-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 28px;
}

.portfolio-card {
  min-width: 0;
}

.portfolio-card__link {
  display: block;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card__link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.portfolio-card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e7eb;
}

.portfolio-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card__link:hover .portfolio-card__thumb img {
  transform: scale(1.06);
}

.portfolio-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  color: #fff;
  background: var(--level-main, #f57a1f);
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transform: translate(-50%, -50%);
}

.portfolio-card__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.portfolio-card__body {
  padding: 22px 22px 24px;
  text-align: center;
}

.portfolio-card__label {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--level-main, #f57a1f);
  letter-spacing: 0.03em;
}

.portfolio-card__name {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.portfolio-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  word-break: keep-all;
}

.portfolio-roadmap {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.portfolio-roadmap-nav {
  position: sticky;
  top: 50px;
  padding-left: 20px;
  border-left: 2px solid #e5e7eb;
}

.portfolio-roadmap-group + .portfolio-roadmap-group {
  margin-top: 30px;
}

.portfolio-roadmap-group__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  opacity: 0.55;
  letter-spacing: -0.02em;
  color: var(--level-main);
}

.portfolio-roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-roadmap-list li + li {
  margin-top: 8px;
}

.portfolio-roadmap-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}

.portfolio-roadmap-link:hover {
  background: var(--level-soft);
  color: var(--level-main);
}

.portfolio-roadmap-link.is-active {
  background: var(--level-main);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-roadmap-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.portfolio-roadmap-row {
  position: relative;
  scroll-margin-top: 120px;
  padding-top: 6px;
}

.portfolio-roadmap-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--level-main) 0%, rgba(255, 255, 255, 0) 100%);
}

.portfolio-roadmap-row__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.portfolio-roadmap-row__title {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--level-main);
  letter-spacing: -0.03em;
}

.portfolio-roadmap-row__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #6b7280;
  text-align: right;
}

.portfolio-roadmap-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-roadmap-group--wind,
.portfolio-roadmap-row--wind {
  --level-main: #f57a1f;
  --level-soft: rgba(245, 122, 31, 0.12);
}

.portfolio-roadmap-group--island,
.portfolio-roadmap-row--island {
  --level-main: #b8832f;
  --level-soft: rgba(184, 131, 47, 0.12);
}

.portfolio-roadmap-group--nation,
.portfolio-roadmap-row--nation {
  --level-main: #33a532;
  --level-soft: rgba(51, 165, 50, 0.12);
}

.portfolio-roadmap-group--globe,
.portfolio-roadmap-row--globe {
  --level-main: #157a47;
  --level-soft: rgba(21, 122, 71, 0.12);
}

.portfolio-roadmap-row .portfolio-card__link:hover {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   Campus List / Map Modal
========================================================= */
.campus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.campus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  transition: all 0.25s ease;
}

.campus-item:hover {
  background: #eef7f3;
  border-color: #0f6b46;
}

.campus-item:hover .campus-name {
  color: #0f6b46;
}

.campus-item.is-active {
  background: #edf7f1;
  border-color: #0f6b46;
  box-shadow: inset 0 0 0 1px #0f6b46;
}

.campus-item .campus-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  gap: 50px;
  min-width: 0;
}

.campus-item .campus-name {
  min-width: 160px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.campus-item .campus-address {
  font-size: 14px;
  color: #444;
}

.campus-item .campus-tel-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 130px;
}

.campus-item .campus-tel-area .campus-tel {
  font-size: 14px;
  color: #222;
}

.campus-item .btn-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  color: #0f6b46;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #0f6b46;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.campus-item .btn-location:hover {
  background: #0f6b46;
  color: #fff;
}

.campus-item .campus-item.is-active .btn-location {
  background: #0f6b46;
  color: #fff;
}

.campus-item .campus-empty {
  padding: 48px 20px;
  text-align: center;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fafafa;
  color: #888;
}

.campus-map-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.campus-map-info__name {
  padding-right: 10px;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  border-right: 1px solid #666;
}

.campus-map-info__name .campus-name {
  font-size: 20px;
  font-weight: 700;
}

.campus-map-info__mata {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.campus-map-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.campus-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  text-align: center;
}

.campus-map-placeholder p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.campus-map-placeholder span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* =========================================================
   Board Section / Toolbar / Table
========================================================= */
.board-list-section {
  padding: 20px 0 40px;
  background: #fff;
}

/* =========================
   Filter Bar
========================= */
.board-filter-bar {
  margin-bottom: 24px;
}

.board-filter-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.board-filter-bar__left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.board-filter-bar__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2f2f2f;
  letter-spacing: -0.04em;
}

.board-filter-bar__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.board-filter-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.board-filter-item__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}

.board-date-range {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.board-date-range__dash {
  font-size: 1.15rem;
  font-weight: 700;
  color: #666;
}

.board-date-field .form-control,
.board-select.form-select {
  height: 48px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: none;
  color: #333;
  font-size: 16px;
}

.board-date-field .form-control {
  width: 180px;
  padding-left: 14px;
  padding-right: 14px;
}

.board-select.form-select {
  width: 160px;
  padding-left: 18px;
  padding-right: 42px;
}

.board-date-field .form-control:focus,
.board-select.form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.18rem rgba(25, 135, 84, 0.12);
}

.board-btn-search.btn {
  min-width: 78px;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}


/* 안내 박스 */
.page-guide-box {
  margin-bottom: 36px;
  padding: 24px;
  background: #f3f3f3;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #2f2f2f;
}

.page-guide-box__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.page-guide-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-guide-box__list li {
  position: relative;
  padding-left: 12px;
  line-height: 1;
  margin-top: 5px;
  word-break: keep-all;
}

.page-guide-box__list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}


/* =========================
   Tab
========================= */
.tab {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

/* 탭 버튼 */
.tab-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2d;
  text-decoration: none;
  background: #e6e8ea;
  position: relative;
  transition: all 0.2s ease;
}

/* hover */
.tab-link:hover {
  background: #d7dade;
  color: #090909;
}

/* 활성 탭 */
.tab-link.active {
  background: #353b44; 
  color: #fff;
  font-weight: 600;
}



/* =========================
   테이블
========================= */
.board-list-section {
  padding: 0;
  background: #fff;
}

.board-list-wrap {
  width: 100%;
}
.board-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.board-scroll .board-list-table {
  min-width: 900px;
}

.board-list-header {
  margin-bottom: 10px;
}

.board-scroll::-webkit-scrollbar {
  height: 8px;
}
.board-scroll::-webkit-scrollbar-track {
  background: #f5f6f8;
  border-radius: 999px;
}
.board-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #cfd4da, #dee2e6);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.board-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #adb5bd, #ced4da);
}
.board-list-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.board-list-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.board-list-header__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111;
}
.board-list-header__text{
  font-weight: 700;
  font-size: 16px;
}
/* 필터 */
.board-list-filter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.board-list-filter__label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.board-list-filter__date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.board-list-filter .form-select{
  width: auto;
}

.board-list-filter__date .form-control {
  width: 160px;
  height: 40px;
  font-size: 14px;
  border-radius: 6px;
}

.board-list-filter__date .dash {
  font-weight: 600;
}

.btn-search {
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
  border-radius: 6px;
}

/* 셀렉트 */
.board-list-header__right .form-select {
  width: 140px;
  height: 40px;
  font-size: 14px;
}

.board-list-table {
  width: 100%;
  margin-bottom: 0;
  border-top: 1px solid #1f1f1f;
  table-layout: fixed;
}

.board-list-table > :not(caption) > * > * {
  box-shadow: none;
}
.table > :not(:first-child) {
  border-top: 1px solid currentColor;
}
/* 헤더 */
.board-list-table thead th {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}

/* 바디 */
.board-list-table tbody td {
  padding: 12px 12px;
  min-height: 50px;
  border-bottom: 1px solid #e3e6e8;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  transition: background-color 0.2s ease;
}

.board-list-table tbody tr:hover td {
  background: #fafcfa;
}

.board-list-table tbody tr.is-notice td {
  background: #f3f8f5;
  font-weight: 600;
}
.board-list-table tbody tr:hover.is-notice td {
  background: #f3f8f5;
}
.board-list-table.list-view tbody td{
  font-size: 16px;
  min-height: 72px;
}
.board-list-table.list-view tbody .list-view-title{
  position: relative;
}
.board-list-table.list-view tbody .list-view-title::after{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: #dedede;
}
.list-link {
  display: inline-block;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
}

.list-link:hover {
  text-decoration: underline;
}

.profile-edit-list{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.profile-edit-list .board-list-table.list-view tbody td{
  height: 75px; 
}
.profile-edit-list .profile-edit-input{
  width: 100%;
  height: 50px;
  padding: 0 22px;
  color: #111;
  font-size: 16px;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-edit-list .profile-edit-input::placeholder{
  color: #b8b8b8;
}

.profile-edit-list .profile-edit-input:focus{
  border-color: #0a6a3b;
  box-shadow: none;
}

.profile-edit-list .form-control:disabled, .profile-edit-list .form-control[readonly]{
  background: transparent;
  border: none;
  padding-left: 0;
  font-size: 16px;
  
}

.profile-edit-list .profile-edit-input[readonly]{
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.profile-edit-actions .btn[hidden]{
  display: none !important;
}

.board-list-table tbody td:nth-child(2),
.board-list-table tbody td:nth-child(3),
.board-list-table tbody td:nth-child(4) {
  white-space: nowrap;
}

.board-list-table.custom-list-table th,
.board-list-table.custom-list-table td{
  background: transparent;
}

.board-detail-box .board-view__header{
  padding: 10px 10px 20px 10px;
}
.board-detail-box .board-view__body {
  border-top: 0;
  background: #fff;
  max-height: 390px;
  overflow-y: auto;
  border-bottom: none;
  padding: 10px 0 0 0 ;
}
.board-detail-box .board-view__title {
  font-size: 24px;
  font-weight: 600;
}
.board-detail-box .board-view__content{
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  word-break: keep-all;
  min-height: 300px;
}

.board-detail-box .board-view__body::-webkit-scrollbar {
  width: 8px;
}

.board-detail-box .board-view__body::-webkit-scrollbar-track {
  background: transparent;
}

.board-detail-box .board-view__body::-webkit-scrollbar-thumb {
  background: #a9a9a9;
  border-radius: 999px;
}


.table-column-wrap {
  overflow-x: auto;
}

.table-column {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-column th,
.table-column td {
  padding: 12px 12px;
  border: 1px solid #cfcfda;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  color: #111;
  word-break: keep-all;
}

.table-column thead th {
  background: #edf0f6;
  font-weight: 700;
  color: #111;
}

.table-column tbody td {
  background: #fff;
}

.table-column tbody tr:nth-child(even) td {
  background: #f9fbff;
}


.table .btn-file{
  display: inline-block; 
  width: 22px; 
  height: 22px; 
  cursor: pointer;
}


/* =========================
   Mypage Accordion Scoped
========================= */


.accordion-list-section + .accordion-list-section {
  margin-top: 56px;
}

.mypage-accordion-wrap .accordion-list-section {
  position: relative;
}

.mypage-accordion-wrap .accordion-list-section + .accordion-list-section {
  margin-top: 44px;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-item {
  overflow: hidden;
  border: 1px solid #e6ebf0;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding: 30px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-item:hover {
  border-color: #dbe3ea;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.mypage-accordion-wrap .accordion-list-section .accordion-header {
  margin: 0;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #111827;
  box-shadow: none;
  padding: 0px 0px 0px 36px;
  transition: background-color 0.2s ease;
}


.mypage-accordion-wrap .accordion-list-section .custom-accordion-button:focus {
  box-shadow: none;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 28px;
  height: 28px;
  margin-left: 0;
  border-radius: 999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='10' viewBox='0 0 17 10' fill='currentColor'%3E%3Cpath d='M8.5 10L0 1.5L1.5 0L8.5 7L15.5 0L17 1.5L8.5 10Z'/%3E%3C/svg%3E");  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  text-align: left;
  flex-wrap: wrap;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button__month {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button__period {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-button__amount {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.mypage-accordion-wrap .accordion-list-section .custom-accordion-button__amount span{
  display: inline-block;
  padding-left: 5px;
}

.mypage-accordion-wrap .accordion-list-section .custom-accordion-body {
  padding: 0;
  background: #f7f7f8;
  margin-top: 20px;
}

.mypage-accordion-wrap .accordion-list-section .custom-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  min-height: auto;
}

.mypage-accordion-wrap .accordion-list-section .custom-check .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid #c5cdd6;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mypage-accordion-wrap .accordion-list-section .custom-check .form-check-input:hover {
  border-color: #93a4b3;
}

.mypage-accordion-wrap .accordion-list-section .custom-check .form-check-input:checked {
  background-color: #0a6b3f;
  border-color: #0a6b3f;
}

.mypage-accordion-wrap .accordion-list-section .custom-check .form-check-input:focus {
  border-color: #0a6b3f;
  box-shadow: 0 0 0 0.18rem rgba(10, 107, 63, 0.12);
}

.mypage-accordion-wrap .accordion-list-section .custom-check .form-check-label {
  display: none;
}

.modal-video-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}
.list-badge{
  position: relative;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #ff5c2d;
  border-radius: 999px;
  letter-spacing: 0.5px;
}


/* =========================================================
   계정관리
========================================================= */
.child-card-section {
  padding: 8px 0 0;
}

.child-card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.child-card-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.child-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.child-card-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.child-card-item__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.child-card-item__name-wrap {
  min-width: 0;
}

.child-card-item__name {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.child-card-item__school {
  margin: 0;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.4;
}

.child-card-item__info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.child-card-item__info-box {
  padding: 18px 20px;
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.child-card-item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.child-card-item__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #868e96;
  line-height: 1.2;
}

.child-card-item__value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #343a40;
  line-height: 1.3;
  word-break: break-word;
}


.is-required::after{
  content: '*';
  color: #ff3b30;
  padding-left: 3px;
  position: relative;
  top: -2px;
}


/* =========================================================
   풀캘린더
========================================================= */

.cyj-schedule-calendar--dual .cyj-calendar-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px 40px 20px;
  overflow: hidden;
  border: 1px solid #e9edf3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 30px;
}

.cyj-schedule-calendar--dual #monthCalendar,
.cyj-schedule-calendar--dual #listCalendar {
  width: 100%;
}
.cyj-schedule-calendar .fc .fc-daygrid-event {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cyj-schedule-calendar .fc .fc-daygrid-event-harness {
  padding: 5px 5px 0px 5px;
}

.cyj-schedule-calendar .fc-ui-event {
  width: 100%;
}
.fc-ui-event--attendance{
  height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
}
.cyj-schedule-calendar .fc-ui-event--attendance,
.cyj-schedule-calendar .fc-ui-event--homework {
  width: 100%;
}
.cyj-schedule-calendar .fc-ui-event--homework{
  position: absolute;
  bottom: 4px;
}
.cyj-schedule-calendar .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  min-height: 80px;
}
/* 출결 배지 */
.cyj-schedule-calendar .fc-ui-attendance-badge {
  display: block;
  width: 100%;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  box-sizing: border-box;
}

.cyj-schedule-calendar .fc-ui-attendance-badge.is-present {
  background: #d8e9ff;
  color: #0062c3;
}

.cyj-schedule-calendar .fc-ui-attendance-badge.is-late {
  background: #f7efff;
  color: #551d90;
}

.cyj-schedule-calendar .fc-ui-attendance-badge.is-absent {
  background: #ffd4da;
  color: #ae1919;
}

.cyj-schedule-calendar .fc-ui-attendance-badge.is-other {
  background: #d9dde3;
  color: #525866;
}

.cyj-schedule-calendar .fc-ui-attendance-badge.is-scheduled {
  background: #f4f4f4;
  border: 1px solid #646366;
  color: #646366;
  cursor: default;
  text-align: center;
}

.cyj-schedule-calendar .fc-ui-attendance-text {
  display: block;
  width: 100%;
  padding: 4px 0;
  color: #646366;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

/* 출결 처리 전 버튼 */
.cyj-schedule-calendar .fc-ui-attendance-action {
  display: block;
  width: 100%;
  padding: 3px 8px;
  border: 1px solid #f06a22;
  border-radius: 3px;
  background: #fff;
  color: #f06a22;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.cyj-schedule-calendar .fc-ui-attendance-action:hover {
  background: #fff7f2;
}

.cyj-schedule-calendar .fc-ui-attendance-action.is-disabled,
.cyj-schedule-calendar .fc-ui-attendance-action:disabled {
  border-color: #ddd;
  background: #f4f4f4;
  color: #ccc;
  font-weight: 500;
  cursor: default;
}

.cyj-schedule-calendar .fc-ui-attendance-action.is-disabled:hover,
.cyj-schedule-calendar .fc-ui-attendance-action:disabled:hover {
  background: #f4f4f4;
}

/* 숙제 텍스트형 */
.cyj-schedule-calendar .fc-ui-homework-link {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 2px;
  border: 0;
  background: transparent;
  text-align: left;
}

.mypage-campus-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 32px 20px;
  color: #646366;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.cyj-schedule-calendar .fc-ui-homework-text {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #2f3237;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cyj-schedule-calendar .fc-ui-homework-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4f7dd9;
  border: 1px solid #4f7dd9;
}

.cyj-schedule-calendar .fc-ui-homework-dot.is-done {
  border: 1px solid #4f7dd9;
}

.cyj-schedule-calendar .fc-ui-homework-dot.is-partial {
  background: #fff;
}
.cyj-schedule-calendar .fc-ui-homework-dot.is-pending {
  background: #fff;
  border-style: dashed;
}

.cyj-schedule-calendar .fc-ui-homework-link:hover .fc-ui-homework-text {
  color: #222;
}

.cyj-schedule-calendar .fc .fc-more-link {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.cyj-schedule-calendar .js-attendance-tooltip {
  pointer-events: auto;
}


.cyj-calendar-list{
  padding: 0 10px;
}
.cyj-calendar-list .fc-list-custom-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.cyj-calendar-list .fc-list-custom-item__title {
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
}
/* 출결 공통 */
.cyj-calendar-list .fc-list-custom-item__status {
  flex-shrink: 0;
  min-width: 72px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border: 1px solid #3b3d43;
  color: #3b3d43;
}

.cyj-calendar-list .fc-list-custom-item__status.is-done{
  background: #3b3d43;;
  color: #fff;
}

.cyj-calendar-list .fc-list-custom-item__status.is-pending{
  border-style: dashed;
}

.cyj-calendar-list .fc-list-custom-item__status.is-present {
  border-color: #e8f7ee;
  background: #d8e9ff; 
  color: #0062c3;
}

/* 지각 */
.cyj-calendar-list .fc-list-custom-item__status.is-late {
  border-color: #fff4e5;
  background: #f7efff; 
  color: #551d90;
}

/* 결석 */
.cyj-calendar-list .fc-list-custom-item__status.is-absent {
  border-color: #fdecec;
  background: #ffd4da; 
  color: #ae1919;
}

/* 기타 */
.cyj-calendar-list .fc-list-custom-item__status.is-other {
  background-color: #f1f3f5;
  border-color: #f1f3f5;
  color: #6c757d;
}

.cyj-calendar-list .fc-list-event-title {
  width: 100%;
}

.cyj-calendar-list .fc-list-event-title a {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.cyj-calendar-list .fc-list-event:hover td {
  background-color: #f8fafc;
}
.cyj-calendar-list .fc-list-event-time {
  display: none !important;
}

.cyj-calendar-list .fc-list-event-graphic {
  display: none;
}


.fc .fc-toolbar-title{
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-point);
}


.fc-daygrid-day-frame {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.fc-daygrid-day-events {
  margin-bottom: auto;
}

.fc-ui-homework-status {
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fc-ui-homework-status.is-before {
  background: #b8b8b8;
}

.fc-ui-homework-status.is-incomplete {
  background: #FF8282;
}

.fc-ui-homework-status.is-complete {
  background: #4784FF;
}

.fc-ui-homework-status__text {
  text-align: left;
}

.fc-ui-homework-status__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.fc-ui-homework-status__icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  display: block;
}

.cyj-attendance-modal__body {
  padding: 28px;
  background: #fff;
}

.cyj-attendance-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cyj-attendance-type__group {
  display: flex;
  gap: 14px;
}

.cyj-attendance-type__item {
  flex: 1;
  margin: 0;
  cursor: pointer;
}

.cyj-attendance-type__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cyj-attendance-type__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.cyj-attendance-type__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.cyj-attendance-type__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.cyj-attendance-type__item input:checked + .cyj-attendance-type__card{
  font-weight: 700;
}

.cyj-attendance-type__item.type-absent input:checked + .cyj-attendance-type__card {
  border-color: #ae1919;
  background: #ffd4da;
  color: #ae1919;
}

.cyj-attendance-type__item.type-absent .cyj-attendance-type__icon{
  background: #ae1919;
}

.cyj-attendance-type__item.type-late input:checked + .cyj-attendance-type__card {
  border-color: #551d90;
  background: #f7efff;
  color: #551d90;
}

.cyj-attendance-type__item.type-late .cyj-attendance-type__icon{
  background: #551d90;
}

.cyj-attendance-reason__help {
  margin: 5px 0 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
  text-align: right;
}


.phone-reservation-calendar__desc {
  margin-top: 6px;
  color: #6c757d;
  font-size: 14px;
}

.phone-reservation-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 16px;
}

.phone-reservation-calendar__legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.phone-reservation-calendar__legend .available {
  color: #24549b;
  background: #ecf4ff;
}

.phone-reservation-calendar__legend .booked {
  color: #fff;
  background: #24549b;
}
.phone-reservation-calendar__legend .closed {
  color: #6c757d;
  background: #e9ecef !important;
}

/* FullCalendar 내부 글자색 강제 */
.phone-reservation-calendar .slot-event--available,
.phone-reservation-calendar .slot-event--available .fc-event-main,
.phone-reservation-calendar .slot-event--available .fc-event-title {
  color: #24549b !important;
}

.phone-reservation-calendar .slot-event--booked,
.phone-reservation-calendar .slot-event--booked .fc-event-main,
.phone-reservation-calendar .slot-event--booked .fc-event-title {
  color: #fff !important;
}

.phone-reservation-calendar .slot-event--closed,
.phone-reservation-calendar .slot-event--closed .fc-event-main,
.phone-reservation-calendar .slot-event--closed .fc-event-title {
  color: #6c757d !important;
  background: #e9ecef !important;
}

.phone-reservation-calendar__wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #edf0f3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.phone-reservation-calendar__wrap::-webkit-scrollbar {
  height: 6px;
}

.phone-reservation-calendar__wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
}

.phone-reservation-calendar__wrap::-webkit-scrollbar-thumb {
  background: rgba(36, 84, 155, 0.35);
  border-radius: 999px;
}

.phone-reservation-calendar__wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 84, 155, 0.55);
}

.phone-reservation-calendar__split {
  min-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.phone-reservation-calendar__section-label {
  display: none;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #495057;
}

.phone-reservation-calendar__break {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px dashed #dee2e6;
  border-radius: 16px;
  background: #f8f9fa;
  color: #868e96;
  font-size: 14px;
  font-weight: 600;
}

.phone-reservation-calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
}

.phone-reservation-calendar .fc .fc-toolbar-title {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
}

.fc .fc-button {
  border: 0;
  border-radius: 12px;
  background: #f8f9fa;
  color: #343a40;
  box-shadow: none;
  padding: 8px 12px;
}

.fc .fc-button:hover,
.fc .fc-button:focus,
.fc .fc-button:active,
.fc .fc-button-primary:disabled {
  background: #e9ecef;
  color: #212529;
  box-shadow: none;
}

.phone-reservation-calendar .fc-theme-standard th,
.phone-reservation-calendar .fc-theme-standard td,
.phone-reservation-calendar .fc-theme-standard .fc-scrollgrid {
  border-color: #edf0f3;
}

.phone-reservation-calendar .fc-col-header-cell,
.phone-reservation-calendar .fc .fc-scrollgrid-section-header > th {
  background: #fafbfc;
}

.phone-reservation-calendar .fc-col-header-cell-cushion {
  padding: 12px 6px;
  font-size: 14px;
  font-weight: 700;
  color: #343a40;
}

.phone-reservation-calendar .fc-timegrid-slot {
  height: 54px;
}

.phone-reservation-calendar .fc-timegrid-slot-label-cushion {
  font-size: 12px;
  color: #868e96;
}

.phone-reservation-calendar .fc-timegrid-now-indicator-line {
  border-color: #ff6b6b;
}

.phone-reservation-calendar .fc-timegrid-now-indicator-arrow {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.phone-reservation-calendar #phoneReservationCalendarAfternoon .fc-header-toolbar {
  display: none;
}

.phone-reservation-calendar #phoneReservationCalendarAfternoon .fc-scrollgrid-section-header {
  display: none;
}

.phone-reservation-calendar .fc-timegrid-event-harness {
  inset-inline: 4px !important;
}

.phone-reservation-calendar .fc-v-event {
  border: 0;
  background: transparent;
}

.phone-reservation-calendar .slot-event {
  position: relative;
  min-height: 46px;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
}

.phone-reservation-calendar .slot-event .fc-event-main {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  white-space: normal;
}

.phone-reservation-calendar .slot-event .fc-event-main-frame {
  width: 100%;
}

.phone-reservation-event-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.phone-reservation-event-content__time,
.phone-reservation-event-content__title {
  display: block;
  width: 100%;
}

.phone-reservation-calendar .slot-event--available {
  background: #ecf4ff;
  color: #0d6efd;
}
.phone-reservation-calendar .slot-event--booked {
  background: #24549b;
}
.phone-reservation-calendar .fc-event,
.phone-reservation-calendar .fc-event:hover,
.phone-reservation-calendar .fc-event:focus,
.phone-reservation-calendar .fc-event:active {
  text-decoration: none;
  outline: none;
}

.fc .fc-daygrid-day-number{
  z-index: 10;
}

.phone-reservation-modal .reservation-info {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8f9fa;
}

.phone-reservation-modal .reservation-info--mt {
  margin-top: 12px;
}

.phone-reservation-modal .reservation-info dt {
  margin-bottom: 6px;
  font-size: 13px;
  color: #6c757d;
}

.phone-reservation-modal .reservation-info dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #212529;
}


.reservation-contact-box{
  text-align: center;
  margin-top: 30px;
}
.reservation-contact-box__title {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
}

.reservation-contact-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.reservation-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.reservation-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reservation-radio span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #dee2e6;
  border-radius: 999px;
  background: #fff;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reservation-radio.is-disabled span {
  background: #f1f3f5;
  color: #adb5bd;
  border-color: #e9ecef;
  cursor: not-allowed;
}

.reservation-radio input[type="radio"]:checked + span {
  border-color: #198754;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.reservation-radio--full span {
  min-width: 100px;
}

.reservation-custom-input {
  margin-top: 12px;
}

.reservation-custom-input .form-control {
  height: 46px;
  border-radius: 12px;
  box-shadow: none;
}

.reservation-custom-input .form-control:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.12);
}
.reservation-custom-input .form-control[readonly] {
  background: #f8f9fa;
  cursor: not-allowed;
}


/* =========================================================
   모달
========================================================= */
.account-select-list {
  padding: 10px 30px 20px;
}
.account-select-list ul{
  display: grid;
  gap: 16px;

}
.account-select-btn{
  cursor: pointer;
}
.account-select-btn span{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 24px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  transition: all 0.2s ease;
}

.account-select-btn:hover span{
  transform: translateY(-1px);
  border-color: #1f1f20;
  color: #1f1f20;
  box-shadow: 0 6px 12px rgba(107, 47, 10, 0.18);
}

.account-select-btn:hover span.account-type__parent{
  background: #f5fbf8;
  border-color: #0a6b3f;
  color: #0a6b3f;
}
.account-select-btn:hover span.account-type__child{
  background: #fbf5f5;
  border-color: #d45c00;
  color: #d45c00;
}

.form-title-box .form-title-box__title{
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.form-account-pin{
  text-align: center;
  letter-spacing: 30px;
  font-weight: 700;
  height: 60px;
  font-size: 24px;
}
.form-account-pin::placeholder{
  font-weight: 500;
}

.mypage-page .quick-control-box{display: none;}


.modal-body .pay-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 20px 20px;
  border-radius: 16px;
  background: #f1f1f1;
}

.modal-body .pay-total span {
  font-size: 18px;
  font-weight: 600;
}

.modal-body .pay-total strong {
  font-size: 24px;
  font-weight: 800;
}

.tuition-pay-type{
  display: block;
}
.tuition-pay-type::before{
  content: '(';
}
.tuition-pay-type::after{
  content: ')';
}
.pay-detail__head {
  padding-bottom: 20px;
  text-align: center;
}

.pay-detail__month {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  line-height: 1.3;
  font-family: var(--font-point);
}

.pay-detail__period {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  line-height: 1.4;
}
/* =========================================================
  레벨테스트 신청
========================================================= */

.leveltest-container{
  background: url(../images/leveltest_apply_bg.jpg) no-repeat 50% 0%;
}
.leveltest-container .local-navigation-area{
  background: transparent;
}
.leveltest-container .lnb-title .lnb-current-title{
  color: #ffd54a;
}
.leveltest-container .local-navigation-bar{
  justify-content: center;
}
.leveltest-container .breadcrumb{
  display: none;
}
.leveltest-container .breadcrumb a{
  color: #fff;
}
.leveltest-container .breadcrumb-current{
  color: #fff;
}

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

.leveltest__notice {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 30px 30px 60px 60px;
  border: 1px solid #efe7c5;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffdf2 0%, #ffffff 100%);
  box-shadow: 0 20px 40px rgba(26, 36, 24, 0.08);
}

.leveltest__notice::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.12);
}

.leveltest__notice::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd54a 0%, #ffbf00 100%);
}

.leveltest__notice-list {
  position: relative;
  z-index: 1;
  margin: 0 20px 30px 20px;
  padding: 20px 10px 20px 30px;
  list-style: none;
  border-radius: 30px;
  background: rgba(255, 195, 0, 0.12);
}

.leveltest__notice-list ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-left: 14px;
  color: #171717;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -3%;
  word-break: keep-all;
}

.leveltest__notice-list ul li + li{
  margin-top: 5px;
}
.leveltest__notice-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #006039;
}
.leveltest__notice-list ul li .campus-phone::before{
  content: '(';
}
.leveltest__notice-list ul li .campus-phone::after{
  content: ')';
}
.leveltest__notice-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: #006039;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-left: 5px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.leveltest__notice-list a::after {
  content: "→";
  margin-left: 6px;
  font-size: 12px;
}

.leveltest__notice-list a:hover {
  background: #ffcf24;
  box-shadow: 0 8px 18px rgba(255, 195, 0, 0.22);
  transform: translateY(-1px);
  text-decoration: none;
}

.leveltest__notice-list--campus-unselected ul li {
  align-items: center;
}

.leveltest__notice-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #006039;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.leveltest__notice-action-button:hover {
  background: #ffcf24;
  box-shadow: 0 8px 18px rgba(255, 195, 0, 0.22);
  transform: translateY(-1px);
}

/* 폼 카드 */
.leveltest__form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.leveltest__row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3e8;
}

.leveltest__row:first-child {
  padding-top: 0;
}

.leveltest__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.leveltest__label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  height: 100%;
  color: #252525;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.leveltest__content {
  min-width: 0;
}

.leveltest__cols {
  display: grid;
  gap: 12px;
}

.leveltest__cols--2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 220px);
}

.leveltest__name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.leveltest__gender {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.leveltest__gender .form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.leveltest__gender .form-check-input {
  display: none;
}

.leveltest__gender .form-check-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #dfe5d0;
  border-radius: 14px;
  background: #fff;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.leveltest__gender .form-check-input:checked + .form-check-label {
  border-color: #2f8f4e;
  background: rgba(47, 143, 78, 0.08);
  color: #1f6d39;
  box-shadow: inset 0 0 0 1px rgba(47, 143, 78, 0.08);
}

.leveltest__address {
  display: grid;
  gap: 10px;
}

.leveltest__address-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 10px;
}

.leveltest__search-btn {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* 인풋 */
.leveltest-form__input,
.school-autocomplete__input {
  height: 48px;
  padding: 0 18px;
  border: 1px solid #dde4cf;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: none;
}
.leveltest-form__select {
  height: 48px;
  padding: 0 44px 0 18px; 
  border: 1px solid #dde4cf;
  border-radius: 14px;
  background: #fff;
  color: #222;
  font-size: 15px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23555555' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.leveltest-form__input::placeholder,
.school-autocomplete__input::placeholder {
  color: #9aa08f;
}

.leveltest-form__input:focus,
.leveltest-form__select:focus,
.school-autocomplete__input:focus {
  border-color: #79b78d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 143, 78, 0.12);
}

.leveltest-form__select:disabled,
.leveltest-form__input:disabled {
  background: #f2f4eb;
  color: #9ba18f;
}

/* 학교 자동완성 */
.school-field {
  width: 100%;
}

.school-autocomplete {
  position: relative;
  width: 100%;
}

.school-autocomplete__list {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #dfe4d1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 36px rgba(17, 24, 39, 0.12);
}

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

.school-autocomplete__item + .school-autocomplete__item {
  margin-top: 4px;
}

.school-autocomplete__item button {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.school-autocomplete__item.is-active button,
.school-autocomplete__item button:hover {
  background: #f4f8ef;
  color: #1e6b39;
}

.school-autocomplete__match {
  color: #2f8f4e;
  font-weight: 700;
}

/* 동의영역 */
.leveltest__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid #e8ecd9;
  border-radius: 20px;
  background: #fafcf6;
}

.leveltest__agree .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-height: auto;
}

.leveltest__agree .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  cursor: pointer;
}

.leveltest__agree .form-check-label {
  font-size: 16px;
  font-weight: 600;
  color: #2e2e2e;
  cursor: pointer;
  line-height: 1.4;
}

.leveltest__agree a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef7f0;
  color: #1d7a3c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.leveltest__agree a:hover {
  background: #e2f1e6;
  text-decoration: none;
}

/* 버튼영역 */
.leveltest__wrap .btn-warp {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 20px;
}

.leveltest__wrap .btn-warp .btn {
  min-width: 220px;
  height: 60px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(20, 30, 20, 0.08);
}

.leveltest__wrap .btn-success {
  background: linear-gradient(135deg, #2f8f4e 0%, #3ea75f 100%);
  border-color: #2f8f4e;
}

.leveltest__wrap .btn-success:hover {
  background: linear-gradient(135deg, #277943 0%, #379454 100%);
  border-color: #277943;
}

.leveltest__wrap .btn-outline-success {
  border-color: #cfe2d3;
  color: #2f8f4e;
  background: #fff;
}

.leveltest__wrap .btn-outline-success:hover {
  background: #f3faf5;
  color: #256e3a;
  border-color: #b8d7c0;
}

/* 모달 */
.leveltest-modal-body {
  color: #444;
  line-height: 1.8;
}

.leveltest-modal-body p + p {
  margin-top: 16px;
}

.score-report-modal .modal-dialog {
  max-width: 1180px;
}

.score-report-modal .modal-content {
  border-radius: 0;
}

.score-report-modal .modal-body {
  padding: 22px 32px 20px;
  background-color: #f5f5f5;
}

.score-report-section + .score-report-section {
  margin-top: 18px;
}

.score-report-subtitle {
  margin: 0;
  padding: 8px 16px;
  border: 1px solid #b8b8b8;
  border-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #2f2f2f;
  background-color: #f5f5f5;
}

.score-report-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #b8b8b8;
}

.score-report-table th,
.score-report-table td {
  border: 1px solid #b8b8b8;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #454545;
  vertical-align: middle;
  background: #f5f5f5;
}

.score-report-table th {
  background: #d8d8e3;
  font-weight: 600;
  text-align: center;
}

.score-report-table--student col {
  width: 25%;
}

.score-report-table--student td {
  background: #f7f7f7;
}

.score-report-table--result col:nth-child(1) {
  width: 300px;
}

.score-report-table--result col:nth-child(2) {
  width: 165px;
}

.score-report-table--result .score-report-label {
  text-align: center;
  background: #efefef;
}

.score-report-table--result .score-report-bar-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f7f7;
}

.score-report-bar-wrap {
  flex: 1 1 auto;
  height: 34px;
  background: #e8e8e8;
}

.score-report-bar {
  height: 100%;
}

.score-report-bar--mine {
  background: #5a96c9;
}

.score-report-bar--avg {
  background: #cfcfd1;
}

.score-report-table--result .score-report-bar-cell strong {
  min-width: 92px;
  text-align: right;
  font-weight: 500;
}

.score-report-table--result tr.is-total th,
.score-report-table--result tr.is-total td {
  background: #f3ebcc;
}

.score-report-table--distribution th,
.score-report-table--distribution td {
  text-align: center;
}

.score-report-memo {
  min-height: 100px;
  padding: 12px 14px;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  background: #f7f7f7;
  line-height: 1.5;
  white-space: pre-wrap;
}

.extra-learning-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.extra-learning-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.extra-learning-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  aspect-ratio: 16 / 9;
  color: #777;
  font-size: 15px;
  background: #f2f4f7;
  border: 1px solid #d9dee5;
  border-radius: 16px;
}

.extra-learning-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.extra-learning-info {
  flex: 1;
  min-width: 0;
}

.extra-learning-title {
  margin: 0 0 10px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.extra-learning-period {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.4;
}

.extra-learning-action {
  flex: 0 0 auto;
}

.extra-learning-btn {
  min-width: 130px;
  height: 52px;
  padding: 0 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #198754;
  border: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.extra-learning-btn:hover{
  color: #fff;
}

/* ============== 상점 ================= */

.shop-page {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 20px 100px 20px;
}

.shop-search-panel {
  margin-bottom: 34px;
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.shop-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 54px;
  padding-left: 12px;
  overflow: hidden;
  background: #f7f8fb;
  border: 1px solid #e0e3e8;
  border-radius: 9999px;
}

.shop-search-input {
  flex: 1;
  height: 100%;
  padding: 0 14px;
  color: #222;
  font-size: 15px;
  background: transparent;
  border: 0;
  outline: none;
}

.shop-search-input::placeholder {
  color: #999;
}

.shop-search-btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 12px;
  margin-right: 8px;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  color: #17191a;
  background: transparent;
}
.shop-search-btn svg {
  width: 20px;
  height: 20px;
}
.shop-search-btn svg path{
  fill: currentColor;
}

.shop-search-clear {
  display: none;
  flex: 0 0 auto;
  background: #ddd;
  border: 1px solid #ddd;
  padding: 2px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  top: 1px;
}

.shop-search-clear svg{
  width: 14px;
  height: 14px;
}

.shop-search-clear.is-show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-search-guide {
  margin-top: 10px;
  padding-left: 16px;
  color: #888;
  font-size: 13px;
}

.shop-search-guide strong {
  color: #333;
  font-weight: 700;
}

.shop-product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.shop-product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
}

.shop-product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 24px);
  aspect-ratio: 1 / 1;
  margin: 12px;
  color: #777;
  font-size: 14px;
  background: #f0f1f3;
  border: 1px solid #ddd;
  border-radius: 16px;
  cursor: pointer;
}

.shop-product-body {
  padding: 0 16px 16px;
}

.shop-product-name {
  margin: 4px 8px 12px;
  overflow: hidden;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shop-product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin: 0 8px 14px;
}

.shop-product-point {
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.shop-product-expire {
  color: #777;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.shop-btn-apply,
.shop-btn-disabled {
  width: 100%;
  height: 44px;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 9999px;
}

.shop-btn-apply {
  background: #ff6b1a;
}

.shop-btn-apply:hover {
  background: #f05c0a;
  color: #fff;
}

.shop-btn-disabled {
  background: #8b8b8b;
  cursor: not-allowed;
}
.shop-modal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-modal-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  color: #777;
  font-size: 14px;
  background: #f0f1f3;
  border: 1px solid #ddd;
  border-radius: 18px;
}

.shop-modal-content {
  width: 100%;
}

.shop-modal-name {
  margin-bottom: 12px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 0 10px;
  text-align: left;
  word-break: keep-all;
}

.shop-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 14px;
  margin-bottom: 20px;
}

.shop-modal-point {
  color: #ff6b1a;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.shop-modal-expire {
  color: #777;
  font-size: 13px;
}

.shop-modal-desc-box {
  padding: 18px;
  background: #f7f8fb;
  border: 1px solid #ececec;
  border-radius: 14px;
}

.shop-modal-desc-box strong {
  display: none;
  margin-bottom: 8px;
  color: #222;
  font-size: 15px;
  font-weight: 800;
}

.shop-modal-desc-box p {
  max-height: 85px;
  overflow-y: auto;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}
.shop-modal-desc-box p::-webkit-scrollbar {
  width: 6px;
}

.shop-modal-desc-box p::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 999px;
}

.shop-modal-desc-box p::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 999px;
}

.shop-modal-desc-box p::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.shop-search-input:-webkit-autofill,
.shop-search-input:-webkit-autofill:hover,
.shop-search-input:-webkit-autofill:focus,
.shop-search-input:-webkit-autofill:active {
    -webkit-text-fill-color: #222 !important;
    -webkit-box-shadow: 0 0 0 1000px #f7f8fb inset !important;
    transition: background-color 9999s ease-out 0s;
}

@media (max-width: 1024px) {
  .shop-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* 반응형 */
@media (max-width: 991px) {
  .leveltest-page {
    padding: 0 16px 20px;
  }

  .leveltest__notice {
    padding: 24px 20px 24px 24px;
    border-radius: 22px;
  }

  .leveltest__notice::after {
    left: 20px;
  }

  .leveltest__notice-list {
    padding-left: 18px;
  }

  .leveltest__form {
    padding: 0px 20px;
    border-radius: 24px;
  }

  .leveltest__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .leveltest__label {
    min-height: auto;
    font-size: 15px;
  }

  .leveltest__cols--2,
  .leveltest__address-top {
    grid-template-columns: 1fr;
  }

  .leveltest__name-row {
    grid-template-columns: 1fr;
  }

  .leveltest__gender {
    gap: 8px;
  }

  .leveltest__gender .form-check{
    width:calc(50% - 4px);}

  .leveltest__gender .form-check-label {
    min-width: 100%;
    width: 100%;
    height: 44px;
  }

  .leveltest__agree {
    flex-wrap: wrap;
    padding: 18px;
    text-align: center;
  }

  .leveltest__wrap .btn-warp {
    flex-direction: column;
  }

  .leveltest__wrap .btn-warp .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   셔틀안내
========================================================= */
.shuttle-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.shuttle-area .shuttle-accordion {
  --bs-accordion-border-color: #d9d9d9;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #fff;
  --bs-accordion-bg: #fff;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-border-radius: 0;
  border-top: 3px solid #111;
}

.shuttle-area .shuttle-item {
  border: 0;
  border-bottom: 1px solid #d9d9d9;
}

.shuttle-area .shuttle-item__header {
  margin: 0;
}

.shuttle-area .shuttle-item__button {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 20px 42px;
  background: #fff;
  box-shadow: none;
}

.shuttle-area .shuttle-item__button:not(.collapsed) {
  color: #111;
  background: #fff;
  box-shadow: none;
}

.shuttle-area .shuttle-item__button::after {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-left: 24px;
  background-size: 14px 14px;
}

.shuttle-area .shuttle-item__title {
  flex: 0 0 auto;
  min-width: 180px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.shuttle-item-info{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.shuttle-area .shuttle-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
  padding-right: 8px;
  font-size: 15px;
  color: #777;
}

.shuttle-area .shuttle-item__divider {
  width: 1px;
  height: 14px;
  background: #d0d0d0;
}

.shuttle-area .shuttle-item__body {
  padding: 0 0 24px;
  background: #fff;
}

.shuttle-area .shuttle-empty {
  padding: 40px 20px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  color: #888;
  text-align: center;
  background: #fafafa;
  border-radius: 6px;
}

.shuttle-area .shuttle-route {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.shuttle-area .shuttle-route__item {
  position: relative;
  flex: 0 0 calc((100% - (6 * 8px)) / 7);
  min-height: 112px;
  padding: 18px 14px 16px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  word-break: keep-all;
}

.shuttle-area .shuttle-route__name {
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shuttle-area .shuttle-route__time {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e8e8e8;
  font-size: 20px;
  font-weight: 800;
  color: #111;
  display: none;
}

.shuttle-area .shuttle-route__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 10px;
  height: 2px;
  background: #cfcfcf;
  transform: translateY(-50%);
}

.shuttle-area .shuttle-route__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #cfcfcf;
  border-right: 2px solid #cfcfcf;
  transform: translateY(-50%) rotate(45deg);
}

.shuttle-area .shuttle-route__item:nth-child(7n)::before,
.shuttle-area .shuttle-route__item:nth-child(7n)::after,
.shuttle-area .shuttle-route__item:last-child::before,
.shuttle-area .shuttle-route__item:last-child::after {
  display: none;
}

.shuttle-area .shuttle-route__item--arrival {
  background: linear-gradient(180deg, #fdfcf6 0%, #f7f1dc 100%);
  border-color: #eadfb0;
}

.shuttle-area .shuttle-route__item--academy {
  background: linear-gradient(180deg, #f5f9ff 0%, #eaf2ff 100%);
  border-color: #cfe0ff;
}

.shuttle-area .shuttle-route__item--academy .shuttle-route__name,
.shuttle-area .shuttle-route__item--academy .shuttle-route__time {
  color: #2457b8;
}


/* =========================================================
   마이페이지 > 시험
========================================================= */
.mypage-test-area {
  width: 100%;
}

.mypage-test-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.mypage-test-tabs {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.mypage-test-tab {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 16px; 
  border: 1px solid #cfcfcf;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #f6f6f6;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-right: -1px;
}

.mypage-test-tab:hover {
  background: #fafafa;
  color: #222;
}

.mypage-test-tab.is-active {
  background: #fff;
  color: #222;
  font-weight: 800;
  border-color: #bfbfbf;
  z-index: 2;
  border-bottom: 0;
}

.mypage-test-body {
  position: relative;
  margin-top: -1px;
  border: 1px solid #bfbfbf;
  min-height: 600px;
}

.mypage-test-panel {
  display: none;
}

.mypage-test-panel.is-active {
  display: block;
}
.panel-head{
  padding: 10px 10px;
  margin: 10px 20px 0px 20px;
  border-radius: 6px;
  background: #f2f2f2;
}
.mypage-test-cont {
  padding: 20px 30px 30px 30px;
}

.review-test-card {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.review-test-card__chart {
  position: relative;
  margin-top: 30px;
}

#reviewTestChart {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.review-test-chart-label {
  position: absolute;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #4a76d1;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

/* =========================
   시설 리스트
========================= */
.academy-facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
.academy-facility-item {
  display: block;
}
.academy-facility-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  background: #f5f5f5;
}
.academy-facility-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.academy-facility-item:hover .academy-facility-thumb img {
  transform: scale(1.03);
}
.academy-facility-desc {
  margin-top: 10px;
  font-size: 16px;
  color: #111;
  text-align: center;
  line-height: 1.4;
  word-break: keep-all;
}


/* =========================================================
   오시는길
========================================================= */


.academy-location__cont {

  margin: 10px 0 20px 0;
  display: grid;
  gap: 10px;
}

.academy-location__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #1f1f1f;
  letter-spacing: -0.04em;
}

.academy-location__address {
  font-size: 18px;
  line-height: 1.2;
  color: #444;
  word-break:keep-all;
}

.academy-location__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 16px;
  line-height: 1;
  color: #666;
}

.academy-location__contact strong {
  margin-right: 6px;
  font-weight: 700;
  color: #222;
}

.academy-location__map {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #f8f8f8;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  min-height: 480px;
}

.academy-location__map img,
.academy-location__map iframe,
.academy-location__map > div {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  object-fit: cover;
}

.campus-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  color: #666;
  text-align: center;
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
}

.campus-map-placeholder p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.campus-map-placeholder span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   Policy
========================================================= */


.policy-box {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* 스크롤 박스 */
.policy-scroll {
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 28px 26px 28px 30px;
  scrollbar-gutter: stable;

  scrollbar-width: thin;
  scrollbar-color: #b8b8b8 transparent;
}

/* 스크롤 디자인 */
.policy-scroll::-webkit-scrollbar {
  width: 10px;
}

.policy-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.policy-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #cfcfcf 0%, #a9a9a9 100%);
  border-radius: 999px;
  border: 2px solid #fafafa;
}

.policy-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #bdbdbd 0%, #919191 100%);
}


.policy-content {
  color: #444;
  font-size: 1.5rem;
  line-height: 1.95;
  word-break: keep-all;
}

.policy-content h3 {
  margin: 0 0 24px;
  color: #555;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.policy-content h4 {
  margin: 30px 0 3px;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.policy-content p {
  font-size: 14px;
}

.policy-content ul {
  margin: 5px 0 16px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 4px;
  font-size: 14px;
}
.policy-content li::before{
  content: '-';
  padding-right: 5px;
}

.policy-content__divider {
  height: 1px;
  margin: 26px 0;
  background: #e7e7e7;
}

.policy-content__updated {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed #d8d8d8;
  color: #666;
  font-size: 1.4rem;
}


.email-policy__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 72px 64px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  backdrop-filter: blur(4px);
}

.email-policy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  color: #fff;
  background: var(--primary);
  border-radius: 100%;
}

.email-policy__icon svg {
  display: block;
  width: 70px;
  height: 70px;
}

.email-policy__title {
  margin: 0;
  color: #384552;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.email-policy__title span {
  display: inline-block;
  margin-top: 6px;
  color: var(--primary);
}

.email-policy__divider {
  width: 100%;
  height: 1px;
  margin: 30px auto 30px;
  background: #d9dde2;
}

.email-policy__desc {
  margin: 0 auto;
  padding: 0 30px;
  color: #6a7078;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.email-policy__desc strong {
  color: #ef4036;
  font-weight: 800;
}

.email-policy__law {
  width: 100%;
  margin: 30px auto 0;
  padding: 24px 30px;
  border-radius: 18px;
  background: #f0f1f3;
  text-align: center;
}

.email-policy__law-title {
  color: #4f5963;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.email-policy__law-text {
  margin: 0;
  color: #5f6871;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  word-break: keep-all;
}



/* =========================
   STICKY TAB
========================= */

.sticky-tab {
  position: sticky;
  top: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 20px auto 56px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.sticky-tab .anchor-btn {
  min-width: 144px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.sticky-tab .anchor-btn:hover {
  background: #f3f4f6;
  color: #111827;
}


.sticky-tab .anchor-btn.is-active {
  background: linear-gradient(135deg, #198754 0%, #006039 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 139, 15, 0.25);
}



/* =========================
   서브 랜딩페이지 공통
========================= */

.landing-section{
  min-height: 900px;
}

.landing-title {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
}


.landing-section-head {
  margin-bottom: 3rem;
  text-align: center;
}

.landing-section-head .eyebrow {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.landing-section-head .title-text {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #111827;
}

.landing-section-head .title-deco {
  max-width: 700px;
  margin:12px auto 0 auto;
  font-size: 18px;
  line-height: 1.4;
  color: #6b7280;
  word-break: keep-all;
}


.landing-section-cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 70px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 18px;
}
.landing-section-cont:last-child{
  border-bottom: none;
}
.landing-section-cont .text-box{
  line-height: 2;
  color: #4b5563;
  word-break: keep-all;
}




/* =========================
  학원안내
========================= */
#cyjVision,
#cyjContribution {
  scroll-margin-top: 120px;
}
.brand-vision{
  position: relative;
  height: 620px;
  max-width: 100%;
  margin: 0 auto;
  background: url(../images/brand_intro_hero.png) no-repeat;
  background-position: 80% 0;
  background-size: cover;
  background-attachment: fixed;
  
}
.brand-vision::after{
  position: absolute;
  bottom: 50px;
  left: 10%;
  content: '';
  display: block;
  width: 195px;
  height: 215px;
  background: url(../images/brand_intro_hero_point.png) no-repeat;
  background-size: 100%;
}

.brand-vision__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.brand-vision__content h3 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-point);
}
.brand-vision__content p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  max-width: 700px;
  word-break: keep-all;
  letter-spacing: -3%;
}

.brand-intro-hero {
  position: relative;
  height: 450px;
  max-width: 100%;
  margin: 0 auto;
  background: #000;
}

.brand-intro-hero.contribution-message{
  height: 600px;
  margin-top: 100px;
}
.brand-intro-hero.contribution-message p{
  font-size: 48px;
  word-break: keep-all;
}
.brand-intro-hero.contribution-message span{
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.6;
  word-break: keep-all;
}

.brand-intro-hero.is-shrink .brand-intro-hero__video {
  max-width: 1200px;
  border-radius: 20px;
  overflow: hidden;
}
.brand-intro-hero__video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition:
    max-width 0.45s ease,
    border-radius 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
}


.brand-intro-hero__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.brand-intro-hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.brand-intro-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  line-height: 1.4;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-point);
}

.brand-intro-hero__content p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.brand-intro-hero__content .btn-light{
  color: #0f172a;
}

.cyj-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 50px ;
}

.cyj-value-card {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.0);
}
.cyj-value-card.value01{
  background: url(../images/value01_bg.png) no-repeat;
  background-size: cover;
}
.cyj-value-card.value02{
  background: url(../images/value02_bg.png) no-repeat;
  background-size: cover;
}
.cyj-value-card.value03{
  background: url(../images/value03_bg.png) no-repeat;
  background-size: cover;
}
.cyj-value-card.value04{
  background: url(../images/value04_bg.png) no-repeat;
  background-size: cover;
}
.cyj-value-card.value05{
  background: url(../images/value05_bg.png) no-repeat;
  background-size: cover;
}
.cyj-value-card.value06{
  background: url(../images/value06_bg.png) no-repeat;
  background-size: cover;
}
/* 딤
.cyj-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
*/

.cyj-value-card h4,
.cyj-value-card p {
  position: relative;
  z-index: 2;
}

.cyj-value-card__label {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #eaffef;
  color: #198754;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.cyj-value-card__icon{
  width: 100px;
  height: 100px;
  display: block;
}
.cyj-value-card__icon img{
  width: 100%;
}
.cyj-value-card h4 {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #111827;
}

.cyj-value-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #4b5563;
  word-break: keep-all;
}

.full-cont-box {
  margin: 70px 0 0 0;
  min-height: 500px;
  background: linear-gradient(135deg, #f8fbff 0%, #f7faff 48%, #eef4ff 100%);
  border: 1px solid #dbe7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.full-cont-box__inner{
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 20px;
}

.full-cont-box h3{
  font-size: 42px;
  font-weight: 700;
  word-break: keep-all;
}
.full-cont-box p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.2;
  color: #4b5563;
  max-width: 900px;
  word-break: keep-all;
}


.full-cont-box.value-message{
  background:url(../images/value_message.png) no-repeat 50% 50%;
  background-size: cover;
  min-height: 600px;
  border: none;
  font-family: var(--font-point);
}
.full-cont-box.value-message .landing-title{
  color: rgba(255, 255, 255, 1);
}

.full-cont-box.value-message p{
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}
.full-cont-box.value-message .point-text{
  display: block;
  font-size: 30px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 1);
}

.cyj-contribution{
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0 auto;
  padding: 0 20px;
}
.cyj-contribution-item {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid #e5e7eb;
}

.cyj-contribution-item--reverse {
  grid-template-columns: 1fr 600px;
}

.cyj-contribution-item--reverse .cyj-contribution-item__image {
  order: 2;
}

.cyj-contribution-item--reverse .cyj-contribution-item__content {
  order: 1;
}

.cyj-contribution-item__image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f3f4f6;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cyj-contribution-item__image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cyj-contribution-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0);

  opacity: 0;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.cyj-contribution-item__overlay-logo {
  transform: translateY(8px) scale(0.94);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cyj-contribution-item__overlay-logo img {
  display: block;
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cyj-contribution-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.cyj-contribution-item__org {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #2458e6;
}


.cyj-contribution-item__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  word-break: keep-all;
}

.cyj-contribution-item__content h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111827;
}

.cyj-contribution-item__content h3 + p {
  margin-top: 0;
}

.cyj-contribution-item__content p + p {
  margin-top: 10px;
}

.cyj-contribution-item:hover .cyj-contribution-item__image img {
  transform: scale(1.04);
}

.cyj-contribution-item:hover .cyj-contribution-item__overlay {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.cyj-contribution-item:hover .cyj-contribution-item__overlay-logo {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cyj-contribution-item__logo {
  display: none !important;
}

.cyj-value-card,
.cyj-contribution-item__image,
.cyj-contribution-note,
.full-cont-box {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.cyj-value-card:hover,
.cyj-contribution-item__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.08);
}


/* =========================
    입학 안내
========================= */
#cyjAdmission,
#cyjRules,
#cyjPayment{
  scroll-margin-top: 120px;
}

.academy-admission-area {
  --admission-point: #1f8f5f;
  --admission-point-dark: #166d48;
  --admission-point-soft: #eff9f4;
  --admission-border: #d9e4dd;
  --admission-text: #222;
  --admission-text-sub: #667085;
  --admission-bg: #fff;
  --admission-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);

  max-width: 1280px;
  margin: 0 auto 120px auto;
  color: var(--admission-text);
}

/* process */
.academy-admission-area .admission-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.academy-admission-area .admission-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  padding: 28px 22px 24px;
  border: 1px solid var(--admission-border);
  border-radius: 24px;
  background: var(--admission-bg);
  box-shadow: var(--admission-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.academy-admission-area .admission-step:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 143, 95, 0.35);
  box-shadow: 0 22px 44px rgba(31, 143, 95, 0.14);
}

.academy-admission-area .admission-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #b7c8bf;
  border-right: 1px solid #b7c8bf;
  background: #fff;
  z-index: 2;
}

.academy-admission-area .admission-step--active {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
  border-color: rgba(31, 143, 95, 0.28);
}

.academy-admission-area .admission-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--admission-point-soft);
  color: var(--admission-point);
}

.academy-admission-area .admission-step__icon svg {
  width: 30px;
  height: 30px;
}
.admission-step__text{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  min-height: 64px;
}
.academy-admission-area .admission-step__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--admission-point);
}

.academy-admission-area .admission-step__title {
  display: block;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  color: #1b1f1d;
  word-break: keep-all;
}

.academy-admission-area .admission-step__desc {
  font-size: 12px;
  line-height: 140%;
  color: var(--admission-text-sub);
  text-align: center;
  word-break: keep-all;
}

.academy-admission-area .btn-warp .btn{
  width: 100%;
  max-width: 200px;
}


/* notice */
.academy-admission-area .admission-notice {
  margin-top: 50px;
  padding: 34px 36px;
  border: 1px solid var(--admission-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  box-shadow: var(--admission-shadow);
}

.academy-admission-area .admission-notice__group + .admission-notice__group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #ebf0ed;
}

.academy-admission-area .admission-notice__title {
  position: relative;
  margin: 0 0 14px;
  padding-left: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #18201c;
}

.academy-admission-area .admission-notice__title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--admission-point);
  box-shadow: 0 0 0 6px rgba(31, 143, 95, 0.12);
}

.academy-admission-area .admission-notice__list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-admission-area .admission-notice__list li {
  position: relative;
  padding: 10px 0px 10px 30px;
}

.academy-admission-area .admission-notice__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: calc(100% - 20px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--admission-point) 0%, rgba(31, 143, 95, 0.18) 100%);
}

.academy-admission-area .admission-notice__list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
  color: #1d2b23;
}

.academy-admission-area .admission-notice__list p,
.academy-admission-area .admission-notice__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #4d5b54;
  word-break: keep-all;
}

.academy-admission-area .admission-notice__list span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--admission-text-sub);
}

.academy-admission-area .admission-notice__text {
  padding: 0 0 0 2px;
}


.admission-guide-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  text-align: center;
}

.admission-guide-empty__message {
  margin: 0;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  padding-top: 120px;
  background: url(../images/null_img.png) no-repeat 50% 0;
  background-size: 100px;
}

/* responsive */
@media (max-width: 1200px) {
  .academy-admission-area .admission-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .academy-admission-area .admission-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .academy-admission-area .admission-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }

  .academy-admission-area .admission-step {
    min-height: 160px;
    padding: 10px 18px;
    border-radius: 12px;
  }

  .academy-admission-area .admission-step__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .academy-admission-area .admission-step__title {
    font-size: 16px;
  }

  .academy-admission-area .admission-notice {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .academy-admission-area .admission-notice__title {
    font-size: 16px;
  }

  .academy-admission-area .admission-notice__list li {
    padding: 16px 16px 16px 20px;
  }
  .academy-admission-area .btn-warp .btn{
    font-size: 16px;
    padding: 12px 6px 12px 6px;
  }
}
/* =========================
    강사 소개
========================= */
.academy-teacher-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
}
.academy-teacher-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  background: #f5f6f8;
}

.academy-teacher-card__image-area {
  width: 100%;
  height: 100%;
}

.academy-teacher-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.academy-teacher-card__name-default {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;

  display: flex;
  gap: 6px;
  align-items: center;

  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.academy-teacher-card__hover {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: rgba(34, 197, 94, 0.7); /* 초록 + 투명 */

  color: #fff;
  font-size: 2rem;
  font-weight: 700;

  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.academy-teacher-card__thumb:hover .academy-teacher-card__hover {
  transform: translateY(0);
}

.academy-teacher-card__thumb:hover
  .academy-teacher-card__name-default {
  opacity: 0;
  transition: opacity 0.2s ease;
}


/* =========================
   교육과정 >> 프로그램
========================= */
.cyj-program-area {
  padding: 100px 0 120px 0;
  background: url(../images/cyj_program_area_bg.png) no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
}

.cyj-program__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cyj-program-section{
  background: #fff;
  border-radius: 36px;
  padding: 50px 50px 70px 50px;
}

.cyj-program-section + .cyj-program-section {
  margin-top: 120px;
}

.cyj-program-section__head {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.cyj-program-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: #006039;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cyj-program-section__head h3 {
  margin: 0;
  color: #111;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cyj-program-section__head > p:last-child {
  margin: 18px 0 0;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}

/* 01. bridge */
.cyj-program-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.cyj-program-bridge__item {
  position: relative;
  min-height: 100%;
  padding: 28px 30px 34px 30px;
  border: 2px solid #dbe8df;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 30, 18, 0.06);
  z-index: 52;
}

.cyj-program-bridge__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  height: 200px;
  margin: 0 auto 24px auto;
  border-radius: 24px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 96, 57, 0.22);
  position: relative;
  overflow: hidden;
  background: #000;
  z-index: 0;
}

.cyj-program-bridge__circle::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1000;
}

.cyj-program-bridge__circle.part-esl::before {
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url(../images/program_bridge_esltest.png) no-repeat 50% 50%;
  background-size: cover;
}

.cyj-program-bridge__circle.part-school::before {
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url(../images/program_bridge_schoolwork.png) no-repeat 50% 50%;
  background-size: cover;
}
.cyj-program-bridge__circle > span {
  position: relative;
  z-index: 1001;
}
.cyj-program-bridge__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.cyj-program-bridge__list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: #f2f8f4;
  color: #006039;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.cyj-program-bridge__list.part-esl li{
  letter-spacing: -3%;
  padding: 10px 8px;
}
.cyj-program-bridge__text p {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.cyj-program-bridge__text p + p {
  margin-top: 10px;
}

.cyj-program-bridge__text p::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #006039;
}

.cyj-program-bridge__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #21a36a, #006039 72%);
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 20px 40px rgba(0, 96, 57, 0.24);
  z-index: 51;
}

.cyj-program-bridge__center::before,
.cyj-program-bridge__center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 3px;
  background: rgba(0, 96, 57, 1);
  transform: translateY(-50%);
}

.cyj-program-bridge__center::before {
  left: -36px;
}

.cyj-program-bridge__center::after {
  right: -36px;
}
.cyj-program-bridge__center p{
  font-size: 22px;
}
.cyj-program-bridge__center p:first-child::after{
  content: '>>';
  font-size: 20px;
  font-weight: 600;
  padding-right: 5px;
  padding-left: 7px;
}

.cyj-team-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
}
.cyj-team-item{
  flex: 1;
  position: relative;
  height: 100%;
  max-height: 140px;
  padding: 34px 0px 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid #dfe8e1;
  box-shadow: 0 16px 38px rgba(18, 32, 20, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cyj-team-item::after{
  content: '+';
  font-size: 72px;
  color: #dfe8e1;
  position: absolute;
  top: 50%;
  right: -50px;
  line-height: 1;
  transform: translateY(-50%);

}

.cyj-team-item:last-child::after{
  display: none;
}

.cyj-team-item h4{
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-point);
  line-height: 1.2;
}
.cyj-team-item:nth-child(1) h4{
  color: #36AD7A;
}
.cyj-team-item:nth-child(2) h4{
  color: #00D134;
}
.cyj-team-item:nth-child(3) h4{
  color: #58A500;
}
.cyj-team-item p{
  border-top: 1px dotted rgba(0, 0, 0, 0.24);
  font-size: 18px;
  line-height: 1.2;
  width: 80%;
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
}
.cyj-team-point-title{
  padding: 30px 0;
  text-align: center;
  width: 100%;
}
.cyj-team-point-title p{
  display: inline-block;
}
.cyj-team-point-title strong{
  display: block;
  font-size: 20px;
  padding-top: 10px;
}
.cyj-team-grid__img{
  text-align: center;
  margin: 30px 0;
}
.cyj-team-grid__img img{
  width: 90%;
}

.cyj-team-area {
  margin-top: 32px;
  color: #222;
  line-height: 1.8;
  font-size: 18px;
}

.cyj-team-subject-list{
  margin: 12px 0 24px;
  padding-left: 22px;
}

.cyj-team-subject-list li{
  margin-bottom: 6px;
}

.cyj-team-point-box{
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 24px 30px 22px;
  border-radius: 26px;
  background: var(--primary);
  border: 1px solid #dfe8e1;
  box-shadow: 0 16px 38px rgba(18, 32, 20, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cyj-team-point-item{
  min-width: 165px;
  text-align: left;
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  color: #fff;
}

.cyj-team-point-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 700;
}

.cyj-team-card {
  width: 250px;
  aspect-ratio: 1 / 1;
  padding: 34px 30px;
  border: 1px solid #dde6df;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 35, 23, 0.05);
  position: relative;
}

/* 👉 오른쪽으로 점선 연결 */
.cyj-team-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  border-top: 2px dashed #c8d5cc;
  transform: translateY(-50%);
}

.cyj-team-card h4 {
  color: #111;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.cyj-check-list li {
  font-weight: 600;
}

/* 03. management */

.cyj-manage{
  margin-bottom: 30px;
}
.cyj-manage__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cyj-manage__grid {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 40px;
  min-height: 500px;
}

.cyj-manage__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

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

.cyj-manage__side.cyj-manage__side--left .cyj-manage__item:nth-child(2){
  justify-content: flex-start;
}
.cyj-manage__side.cyj-manage__side--right .cyj-manage__item:nth-child(2){
  justify-content: flex-end;
}

.cyj-manage__circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cyj-manage__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  color: #048b2d;
}

.cyj-manage__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.cyj-manage__circle p {
  margin: 0;
  color: #222;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.cyj-manage__center {
  position: relative;
  z-index: 3;
  text-align: center;
}

.cyj-manage__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cyj-manage__center::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.8) 0%,   /* 중앙 */
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.2) 70%,
      rgba(255, 255, 255, 0) 100%   /* 바깥 */
  );
}
.cyj-manage__visual img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}

.cyj-manage__center h3 {
  margin: 8px 0 0;
  color: #057537;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

/* 연결선 */
.cyj-manage__line {
  position: absolute;
  z-index: 1;
  border-top: 2px dashed #79c3a1;
  border-bottom: 2px dashed #79c3a1;
  height: 72px;
  width: 220px;
}

.cyj-manage__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 2px;
  height: 72px;
  background-image: linear-gradient(#79c3a1 50%, rgba(255,255,255,0) 0%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

/* 왼쪽 선 */
.cyj-manage__line--lt {
  left: 150px;
  top: 85px;
  border-bottom: none;
}

.cyj-manage__line--lm {
  left: 150px;
  top: 254px;
  border-bottom: none;
}

.cyj-manage__line--lb {
  left: 150px;
  bottom: 112px;
  border-top: none;
}

/* 오른쪽 선 */
.cyj-manage__line--rt {
  right: 150px;
  top: 85px;
  border-bottom: none;
}

.cyj-manage__line--rm {
  right: 150px;
  top: 254px;
  border-bottom: none;
}

.cyj-manage__line--rb {
  right: 150px;
  bottom: 112px;
  border-top: none;
}

/* 오른쪽은 세로선이 반대 방향처럼 보이게 */
.cyj-manage__line--rt::after,
.cyj-manage__line--rb::after {
  left: 0;
  right: auto;
}

.cyj-manage__line--rm::after,
.cyj-manage__line--lm::after{
  display: none;
}


.cyj-manage-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
}

.cyj-manage-img{
  text-align: center;
  margin-bottom: 24px;
}
.cyj-manage-img img{
  width: 100%;
  max-width: 600px;
}

.cyj-manage-item {
  position: relative;
  padding: 30px 28px 28px;
  border-left: 7px solid #e2e8e3;
  width: 100%;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(15, 28, 17, 0.05);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
}


.cyj-manage-item h4 {
  margin: 0 0 14px;
  color: #111;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
}
.cyj-manage-item:hover h4{
  color: #006039;
}
.cyj-manage-item p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.4;
  word-break: keep-all;
  text-align: left;
}

/* 04. flow */
.cyj-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cyj-flow-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid #dfe8e1;
  box-shadow: 0 16px 38px rgba(18, 32, 20, 0.05);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.cyj-flow-card__icon{
  width: 100%;
  text-align: center;
}
.cyj-flow-card__icon img{
  width: 80%;
}
.cyj-flow-card h4 {
  margin: 0;
  color: #111;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  width: 100%;
  letter-spacing: -0.03em;
}

.cyj-flow-card__sub {
  margin: 12px 0 22px;
  color: #006039;
  font-size: 16px;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.cyj-flow-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyj-flow-card li {
  position: relative;
  padding-left: 14px;
  color: #4e544f;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

.cyj-flow-card li + li {
  margin-top: 12px;
}

.cyj-flow-card li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #006039;
}

/* hover */
@media (hover: hover) {
  .cyj-program-bridge__item,
  .cyj-team-card,
  .cyj-manage-item,
  .cyj-flow-card,
  .cyj-team-item {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .cyj-program-bridge__item:hover,
  .cyj-team-card:hover,
  .cyj-manage-item:hover,
  .cyj-flow-card:hover,
  .cyj-team-item:hover {
    transform: translateY(-6px);
    border-color: #006039;
    box-shadow: 0 22px 44px rgba(0, 96, 57, 0.1);
  }
}


/* =========================
   교육과정 >> 커리큘럼
========================= */
.cyj-curriculum-section {
  padding: 120px 0;
}

.cyj-curriculum__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cyj-wing-area {
  margin-bottom: 96px;
}

.cyj-wing-head {
  max-width: 760px;
}


.cyj-wing-head__title {
  margin: 0;
  color: var(--primary);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 700;
}
.cyj-wing-head__title p{
  font-size: 50px;
}
.cyj-wing-head__title::before{
  content: '';
  width: 150px;
  height: 4px;
  margin-bottom: 20px;
  background: #006039;
  display: block;
}
.cyj-wing-head__desc{
  font-size: 36px;
  line-height: 1.08;
  font-weight: 700;
}
.cyj-curriculum__desc {
  margin: 18px 0 0;
  color: #555;
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

.cyj-curriculum__note {
  margin: 18px 0 0;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

/* wing program */
.cyj-wing-program {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: end;
  overflow: visible;
}

.cyj-wing__step {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 18px 40px rgba(22, 30, 24, 0.14);
  overflow: visible;
}


/* 계단 높이 */
.cyj-wing__step--1 {
  z-index: 1;
  min-height: 617px;
  background: linear-gradient(180deg, #eb7f46 0%, #db6731 100%);
}

.cyj-wing__step--2 {
  z-index: 2;
  min-height: 666px;
  margin-left: -10px;
  background: linear-gradient(180deg, #9a7a42 0%, #7d6032 100%);
}

.cyj-wing__step--3 {
  z-index: 3;
  min-height: 716px;
  margin-left: -10px;
  background: linear-gradient(180deg, #467247 0%, #2f5a32 100%);
}

.cyj-wing__step--4 {
  z-index: 4;
  min-height: 766px;
  margin-left: -10px;
  background: linear-gradient(180deg, #0f5338 0%, #083926 100%);
}

/* 상단 사선 계단 느낌 */
.cyj-wing__step--2::before,
.cyj-wing__step--3::before,
.cyj-wing__step--4::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 50px;
  background: inherit;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.cyj-wing-program-wrap {
  position: relative;
}

.cyj-wing-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px 0 0;
}

.cyj-wing-process__line {
  position: absolute;
  top: 34px;
  left: 12.5%;
  width: 75%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eb7f46 0%, #9a7a42 33%, #467247 66%, #0f5338 100%);
  opacity: 0.28;
}

.cyj-wing-process__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cyj-wing-process__dot {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 31, 21, 0.12);
}

.cyj-wing-process__item:nth-child(2) .cyj-wing-process__dot {
  background: #eb7f46;
}

.cyj-wing-process__item:nth-child(3) .cyj-wing-process__dot {
  background: #9a7a42;
}

.cyj-wing-process__item:nth-child(4) .cyj-wing-process__dot {
  background: #467247;
}

.cyj-wing-process__item:nth-child(5) .cyj-wing-process__dot {
  background: #0f5338;
}

.cyj-wing-process__name {
  margin-top: 14px;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  display: none;
}

.cyj-wing-process__grade {
  margin: 6px 0 0;
  color: #111;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  word-break: keep-all;
}

.cyj-wing-process__item.is-active .cyj-wing-process__dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(15, 83, 56, 0.10);
}

.cyj-wing-process__item.is-active .cyj-wing-process__name {
  color: #0f5338;
}
.cyj-wing-process__item::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 2px;
  height: 34px;
  background: rgba(17, 17, 17, 0.12);
  transform: translateX(-50%);
}
.cyj-wing-process__dot::after {
  content: "";
}
.cyj-wing__top {
  position: relative;
  padding: 26px 22px 0;
}

.cyj-wing__eng {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 900;
  word-break: keep-all;
}

.cyj-wing__badge {
  position: relative;
  margin-top: 12px;
  padding: 10px 16px 10px;
  background: rgba(0, 0, 0, 0.12);
}

.cyj-wing__badge span {
  display: inline-block;
  margin-right: 10px;
  font-size: 54px;
  line-height: 0.95;
  font-weight: 900;
  vertical-align: middle;
}

.cyj-wing__badge strong {
  display: inline-block;
  max-width: calc(100% - 74px);
  vertical-align: middle;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.03em;
  word-break: keep-all;
  opacity: 0.6;
}

.cyj-wing__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 26px;
}

.cyj-wing__summary {
  min-height: 82px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
  word-break: keep-all;
}
.cyj-wing__summary p{
  font-size: 24px;
  line-height: 1.2;
}
.cyj-wing__summary .process-period span::before{
  content: '(';
}
.cyj-wing__summary .process-period span::after{
  content: ')';
}
.cyj-wing__list {
  margin: 14px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.cyj-wing__list li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.3;
  word-break: keep-all;
}

.cyj-wing__list li + li {
  margin-top: 8px;
}

.cyj-wing__list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
}

.cyj-wing__level {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.cyj-wing__level span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

@media (hover: hover) {
  .cyj-wing__step {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  }

  .cyj-wing__step:hover {
    filter: brightness(1.06);
    box-shadow: 0 26px 48px rgba(18, 28, 20, 0.18);
  }
  .cyj-wing__step:hover .cyj-wing__badge strong{
    opacity: 1;
  }
}

/* curriculum list */
.cyj-curriculum-list {
  display: grid;
  gap: 22px;
}

.cyj-curriculum-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;

}

.cyj-curriculum-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #006039;
  aspect-ratio: 1 / 1;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 5%;
  font-family: var(--font-point);
  position: relative;
}

.cyj-curriculum-item__num::after{
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  border-bottom: 2px dashed #e1e6df;
  right: -30px;
}

.cyj-curriculum-item__body{
  padding: 32px;
  border: 1px solid #e1e6df;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 33, 22, 0.05);
}

.cyj-curriculum-item__body h3 {
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cyj-curriculum-item__body strong {
  display: block;
  margin-top: 10px;
  color: #262626;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
}

.cyj-curriculum-item__body ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cyj-curriculum-item__body li {
  position: relative;
  padding-left: 16px;
  color: #444;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.cyj-curriculum-item__body li + li {
  margin-top: 4px;
}

.cyj-curriculum-item__body li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #006039;
}

.cyj-curriculum-item__body p {
  margin: 18px 0 0;
  color: #006039;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 700;
  word-break: keep-all;
}

/* core */
.cyj-curriculum-core {
  margin-top: 60px;
  padding: 34px 34px 38px;
  border: 1px solid #dfe5dd;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(19, 32, 22, 0.05);
}

.cyj-curriculum-core__head {
  margin-bottom: 26px;
}

.cyj-curriculum-core__head h3 {
  margin: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cyj-curriculum-core__head p {
  margin: 10px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.cyj-curriculum-core__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cyj-curriculum-core__card {
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  background: #fafaf8;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.cyj-curriculum-core__icon {

  display: flex;
  max-width: 100px;
  height: 100px;
  margin: 0 auto 16px auto;
  background: #006039;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  
}
.cyj-curriculum-core__icon img{
  width: 80%;
}

.cyj-curriculum-core__card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cyj-curriculum-core__card p {
  margin: 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.cyj-curriculum-core__card p b {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.cyj-curriculum-core__card--green {
  background: #f1f8f3;
}

.cyj-curriculum-core__card--green .cyj-curriculum-core__icon{
  background: #1b7c4a;
}
.cyj-curriculum-core__card--green strong {
  color: #1b7c4a;
}

.cyj-curriculum-core__card--gold {
  background: #fbf6ea;
}

.cyj-curriculum-core__card--gold .cyj-curriculum-core__icon{
  background: #a88438;
}
.cyj-curriculum-core__card--gold strong {
  color: #a88438;
}

.cyj-curriculum-core__card--orange {
  background: #fff3ea;
}

.cyj-curriculum-core__card--orange .cyj-curriculum-core__icon{
  background: #f07d2f;
}
.cyj-curriculum-core__card--orange strong {
  color: #f07d2f;
}

@media (hover: hover) {
  .cyj-curriculum-item__body {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .cyj-curriculum-item__body:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(17, 31, 20, 0.09);
  }
}

/* =========================
   교육과정 >> 교육지원시스템
========================= */

.cyj-support-section{
  padding: 120px 0;
}

.cyj-support__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cyj-support__head {
  max-width: 880px;
  margin-bottom: 60px;
}

.cyj-support__eyebrow {
  margin: 0 0 12px;
  color: #006039;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cyj-support__title {
  margin: 0;
  color: #111;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.cyj-support__desc {
  margin: 22px 0 0;
  color: #444;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  word-break: keep-all;
}

.cyj-support-list {
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.cyj-support-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 50px;
  align-items: center;
  padding-top: 68px;
  border-top: 1px solid #d9ded8;
}

.cyj-support-row:last-child {
  padding-bottom: 0;
}

.cyj-support-row--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.cyj-support-row--reverse .cyj-support-row__media {
  order: 2;
}

.cyj-support-row--reverse .cyj-support-row__content {
  order: 1;
}

.cyj-support-row__media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(19, 30, 22, 0.12);
  width: 100%;
}

.cyj-support-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cyj-support-row__content {
  padding: 10px 0;
}

.cyj-support-row__eyebrow {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  margin: 0 0 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;

}

.cyj-support-row__content h3 {
  margin: 0;
  color: #111827;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  word-break: keep-all;
}

.cyj-support-row__content strong {
  display: none;
  margin-top: 18px;
  color: #4c5666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 800;
  word-break: keep-all;
}

.cyj-support-row__content p:last-child {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  padding-right: 20px;
  word-break: keep-all;
}

@media (hover: hover) {
  .cyj-support-row:hover .cyj-support-row__media img {
    transform: scale(1.04);
  }
}


.video-player-modal .modal-dialog {
  max-width: 1064px;
}

.video-player-modal .modal-content {
  position: relative;
  height: 645px;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.video-player-modal .video-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #444;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.video-player-modal .video-player-box {
  width: 100%;
  height: 100%;
}

.video-player-modal video {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}


/* =========================================================
   Responsive
========================================================= */


@media (max-width: 1280px) {
  .quick-control-box {
    right: 16px;
  }
}


@media (max-width: 1200px) {
  .portfolio-roadmap-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card__name {
    font-size: 26px;
  }
}



@media (max-width: 1024px) {

  .mypage-intro {
    min-height: calc(100vh - 300px);
    padding: 20px 30px 30px 30px;
  }
  

  .shuttle-area .shuttle-route__item {
    flex: 0 0 calc((100% - (3 * 8px)) / 4);
    min-height: 100px;
  }

  .shuttle-area .shuttle-route__time {
    font-size: 18px;
  }

  .shuttle-area .shuttle-route__item:nth-child(7n)::before,
  .shuttle-area .shuttle-route__item:nth-child(7n)::after {
    display: block;
  }

  .shuttle-area .shuttle-route__item:nth-child(4n)::before,
  .shuttle-area .shuttle-route__item:nth-child(4n)::after,
  .shuttle-area .shuttle-route__item:last-child::before,
  .shuttle-area .shuttle-route__item:last-child::after {
    display: none;
  }
  
  .brand-vision {
    background-position: 80% 0;
    background-size: auto;
    height: 540px;
  }

  .brand-vision::after {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 145px;
    height: 155px;
  }
  .cyj-manage__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .cyj-manage__side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cyj-manage__center {
    order: -1;
  }

  .cyj-manage__line {
    display: none;
  }

  .cyj-manage__center h3 {
    font-size: 40px;
  }
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }

  .br-pc {
    display: none;
  }

  .br-ta {
    display: block;
  }

  .br-mo {
    display: none;
  }

  .header {
    height: 60px;
  }

  .child-card-item__info-box{
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .academy-btn {
    font-size: 16px;
  }

  .header .header-logo .logo-img {
    width: 73px;
    height: 33px;
  }

  .header .header-menu .navbar-nav-area {
    gap: 20px;
  }

  .cyj-program-bridge {
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  }
  .cyj-program-bridge__center{
    min-height: 120px;
    font-size: 18px;
    word-break: keep-all;
  }
  .cyj-program-section__head > p:last-child{
    max-width: 70%;
    word-break: keep-all;
    margin: 18px auto 0 auto;
    line-height: 1.6;
  }
  .cyj-flow-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .cyj-program-card-grid--2,
  .cyj-program-card-grid--3 {
    grid-template-columns: 1fr;
  }
  .header .header-menu .main-nav {
    gap: 20px;
  }

  .header .header-menu .nav-menu {
    width: auto;
    font-size: var(--font-size16);
  }

  .header-btn-area .header-btn {
    width: auto;
    height: 36px;
    padding: var(--spacing-8, 8px) 5px;
    font-size: 14px;
    justify-content: center;
  }

  .header-btn .text {
    display: none;
  }


  .mypage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-notice-title {
    font-size: 20px;
  }

  .education-program-card-wrap {
    gap: 24px;
  }

  .education-program-list li {
    font-size: 17px;
  }

  .education-program-desc-box p {
    font-size: 15px;
  }

  .skill-up-section {
    margin-top: 20px;
  }

  .skill-card {
    min-height: 180px;
    padding: 20px;
  }

  .skill-card__title {
    font-size: 22px;
  }

  .skill-card__eyebrow {
    font-size: 20px;
  }

  .skill-card__desc {
    font-size: 14px;
    letter-spacing: -0.5px;
  }

  .skill-card__icon {
    width: 60px;
    height: 60px;
  }

  .education-support-item dl {
    height: 120px;
  }

  .ai-card {
    min-height: 200px;
  }

  .ai-text p {
    font-size: 20px;
  }

  .ai-text strong {
    font-size: 30px;
  }

  .ai-character {
    width: 175px;
    height: 150px;
  }

  .main-notice-content {
    min-height: 140px;
  }

  .schedule-date {
    font-size: 12px;
  }

  .schedule-subject {
    font-size: 14px;
  }

  .portfolio-play {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 20px;
    height: 24px;
  }

  .board-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .board-toolbar__left,
  .board-toolbar__right {
    width: 100%;
  }

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

  .board-toolbar__title {
    font-size: 1.7rem;
  }

  .shuttle-stops {
    grid-template-columns: repeat(5, 1fr);
  }
  .cyj-contribution-item {
    grid-template-columns: 50% 1fr;
  }
  .cyj-contribution-item--reverse {
    grid-template-columns: 1fr 50%;
  }
  .cyj-wing__badge span {
    font-size: 28px;
  }
  .cyj-wing__badge strong {

    font-size: 16px;
  }
  .cyj-wing__badge{
    padding: 10px 10px 10px 16px;
  }
  .cyj-wing__eng{
    font-size: 28px;
  }
  .cyj-wing__summary p {
    font-size: 18px;
  }
  .cyj-wing__list li{
    font-size: 12px;
  }
  .cyj-wing__step--1 {
    min-height: 569px;
  }
  .cyj-wing__step--2 {
    min-height: 618px;
  }
  .cyj-wing__step--3 {
    min-height: 668px;
  }
  .cyj-wing__step--4 {
    min-height: 718px;
  }
  .cyj-curriculum-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .cyj-support-row__media img {
    min-height: 300px;
  }

  .cyj-flow-card{
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .cyj-flow-card__icon{
    width: 40%;
  }
  .cyj-flow-card h4{
    text-align: left;
  }
  .cyj-flow-card__sub{
    text-align: left;
  }

}

@media (max-width: 900px) {
  .campus-item .campus-name {
    min-width: 80px;
  }

}

@media (max-width: 820px) {
  .img-pc {
    display: none;
  }

  .img-mo {
    display: block;
  }

  .mypage-card img {
    margin-bottom: 10px;
  }

  .swiper-slide-cont {
    padding: 0;
  }

  .section-shortcut .banner-grid {
    gap: 20px;
  }

  .wecan-schedule-card {
    flex-direction: column;
    padding: 20px 10px 10px 10px;
  }

  .wecan-schedule-left {
    width: 100%;
    max-width: 100%;
  }

  .wecan-schedule-right {
    flex: auto;
    width: 100%;
    padding: 5px 15px;
  }

  .wecan-schedule-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .wecan-schedule-card .wecan-schedule-title .schedule-title {
    margin-top: 0;
  }

  .wecan-schedule-card .wecan-schedule-title .schedule-badge {
    margin-bottom: 0;
  }

  .education-program-desc-box p {
    font-size: 12px;
  }

  .skill-up-grid {
    gap: 20px;
  }

  .skill-card {
    min-height: 160px;
  }

  .skill-card__eyebrow {
    font-size: 18px;
  }

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

  .skill-card__desc {
    font-size: 12px;
  }

  .skill-card__icon {
    top: 5px;
    right: 0;
    bottom: auto;
  }

  .education-support-item dl {
    height: 100px;
  }

  .education-support-item dt,
  .education-support-item dd {
    font-size: 14px;
  }

  .ai-learning-grid {
    gap: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-label {
    font-size: 26px;
  }

  .section-desc {
    font-size: 18px;
  }

  .ai-card {
    padding: 20px 20px;
  }

  .ai-label {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .ai-text p {
    font-size: 18px;
  }

  .ai-text strong {
    font-size: 24px;
  }

  .main-notice-campus {
    font-size: 14px;
  }

  .main-notice-title {
    font-size: 16px;
  }

  .main-notice-content {
    min-height: 130px;
  }

  .main-btn {
    width: 140px;
    height: 38px;
    padding: 12px 24px;
  }

  .main-notice-grid {
    gap: 20px;
  }

  .portfolio-play {
    right: -7px;
    bottom: -5px;
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 22px;
    height: 26px;
  }

  .portfolio-title,
  .portfolio-name {
    font-size: 16px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer .foot-cs-guide {
    width: 40%;
  }

  .cyj-program-bridge{
    grid-template-columns: 1fr;
  }
  .cyj-program-bridge__center {
    max-width: 200px;
    min-height: 150px;
    margin: 0 auto;
    
  }
  .cyj-program-bridge__center::before, .cyj-program-bridge__center::after {
    top: -17px;
    left: 50%;
    width: 2px;
    height: 36px;
  }
  .cyj-program-bridge__center::after{
    bottom: -50px;
    right: 50%;
    top: auto;
  }
  .cyj-program-section__head > p:last-child {
    max-width: 90%;
  }
  .cyj-team-card h4 {
    font-size: 18px;
    word-break: keep-all;
  }
  .cyj-program-section__head h3 {
    font-size: 36px;
  }
  .cyj-program-section + .cyj-program-section {
    margin-top: 60px;
  }
  .cyj-team-grid__img img {
    width: 100%;
  }

  .cyj-team-item {
    padding: 26px 0px 26px;
    min-height: 140px;
  }
  .cyj-team-item::after {
    font-size: 30px;
    right: -20px;
  }
  .cyj-team-item h4{
    font-size: 16px;
  }
  .cyj-team-item p {
    font-size: 14px;
    margin-top: 0px;
  }
  .cyj-wing-area {
    margin-bottom: 60px;
  }

  .cyj-team-point-title{
    font-size: 16px;
  }
  .cyj-team-point-title p{
    display:inline;
    word-break: keep-all;
    line-height: 1.2;
  }

  .cyj-wing-head {
    top: 0px;
  }
  .cyj-wing-head__title {
    font-size: 30px;
    word-break: keep-all;
    width: 70%;
    line-height: 1.2;
  }
  .cyj-wing__badge span {
    font-size: 24px;
  }
  .cyj-wing__badge strong {
    max-width: calc(100% - 30px);
  }
  .cyj-wing__summary{
    min-height: auto;
  }
  .cyj-wing__summary p {
    font-size: 16px;
  }
  .cyj-wing__summary .process-period{

    line-height: 1.4;
  }
  .cyj-wing__summary .process-period span{
    font-size: 14px;
  }
  .cyj-wing__list li{
    line-height: 1.2;
  }
  .cyj-wing__list li::before {
    top: 7px;
    width: 3px;
    height: 3px;
  }
  .cyj-wing__top {
    padding: 20px 20px 0 14px;
  }
  .cyj-wing__body {
    padding: 16px 16px 16px 12px;
  }
  .cyj-wing__list {
    margin: 10px 0 0;
    padding: 14px 0 0;
  }

  .cyj-wing__step--1 {
    min-height: 531px;
  }
  .cyj-wing__step--2 {
    min-height: 581px;
  }
  .cyj-wing__step--3 {
    min-height: 631px;
  }
  .cyj-wing__step--4 {
    min-height: 681px;
  }
  .cyj-curriculum-core__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cyj-curriculum-core__card{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .cyj-curriculum-core__icon{
    width: 100px;
    margin: 0 20px;
  }
  .cyj-curriculum-core__text{
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .cyj-curriculum-core__card p{
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
  }
  .cyj-curriculum-core__card strong {
    margin-bottom: 4px;
  }
  .cyj-curriculum-item__body p{
    line-height: 1.4;
  }
  .cyj-curriculum-item__body li {
    line-height: 1.4;
  }
  .cyj-curriculum-item__body h3 {
    font-size: 28px;
    letter-spacing: 0;
  }
  .cyj-flow-card li + li {
    margin-top: 6px;
  }
  .cyj-flow-card li{
    line-height: 1.2;
  }
  .cyj-support-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-top: 40px;
  }
  .cyj-curriculum-section{
    padding: 100px 0 0 0;
  }
  .cyj-support-row--reverse {
    display: flex;
    gap: 30px;
    flex-direction: column-reverse;
  }
  .cyj-support-list {
    gap: 30px;
  }
}



@media (max-width: 768px) {

  
  .shuttle-area .shuttle-route {
    gap: 8px;
  }

  .shuttle-area .shuttle-route__item {
    flex: 0 0 calc((100% - 8px) / 2);
    min-height: 90px;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .shuttle-area .shuttle-route__name {
    font-size: 14px;
  }

  .shuttle-area .shuttle-route__time {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 18px;
  }

  .shuttle-area .shuttle-route__item::before,
  .shuttle-area .shuttle-route__item::after {
    display: none;
  }

  .shuttle-item-info{
    flex-direction: column;
    gap: 5px;
  }
  .shuttle-area .shuttle-item__meta{
    margin-left: 0;
  }
  .shuttle-area .shuttle-item__button{
    padding: 20px 20px;
  }
  #reviewTestChart {
    min-height: 320px;
  }
  .cyj-manage {
    padding: 32px 16px;
  }

  .cyj-manage__circle {
    width: 170px;
    height: 170px;
    padding: 18px;
  }

  .cyj-manage__circle p {
    font-size: 18px;
  }

  .cyj-manage__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .cyj-manage__center h3 {
    font-size: 34px;
  }
  .offcanvas-btn {
    display: flex;
  }

  .header .header-menu .navbar-nav-area {
    display: none;
  }

  .quick-control-box {
    display: none;
  }

  .br-pc,
  .br-ta {
    display: none;
  }

  .br-mo {
    display: block;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .campus-choice-modal__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-shortcut .shortcut-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .education-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-support-item dl {
    height: 140px;
  }

  .education-support-item dt {
    font-size: 18px;
  }

  .ai-learning-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-card {
    min-height: 140px;
  }

  .ai-character {
    width: 140px;
    height: auto;
    bottom: -10px;
  }

  .skill-up-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    min-height: 160px;
    padding: 28px 22px 22px;
    border-radius: 24px;
  }

  .skill-card__eyebrow {
    font-size: 18px;
  }

  .skill-card__desc {
    font-size: 16px;
  }

  .skill-card__title {
    margin-top: 28px;
    font-size: 20px;
  }

  .skill-card__icon {
    top: auto;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
  }

  .main-notice-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-notice-card {
    display: flex;
    justify-content: space-between;
    border-radius: 22px;
  }

  .main-notice-empty-inline {
    min-height: 230px;
    margin-top: 8px;
    font-size: 20px;
  }

  .main-notice-thumb {
    width: 45%;
  }

  .main-notice-content {
    flex: 1;
    min-height: auto;
    padding: 18px 16px 16px;
  }

  .main-notice-campus {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .main-notice-title {
    font-size: 18px;
  }

  .main-notice-date {
    margin-top: 18px;
    font-size: 15px;
  }

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

  .portfolio-play {
    width: 60px;
    height: 60px;
  }


  .portfolio-best-title {
    font-size: 34px;
  }

  .portfolio-roadmap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-roadmap-nav {
    display: none;
  }

  .portfolio-roadmap-row__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .portfolio-roadmap-row__desc {
    text-align: left;
  }
  .portfolio-roadmap-content {
    gap: 70px;
  }
  .portfolio-best-badge {
    height: 30px;
  }

  .education-program-section {
    padding: 56px 0;
  }

  .education-program-inner {
    padding: 0 16px;
  }

  .education-program-visual {
    margin-bottom: 24px;
  }

  .education-program-card-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .education-program-card {
    padding: 22px 20px 18px;
    border-radius: 20px;
  }

  .education-program-list {
    padding-left: 24px;
  }

  .education-program-list li {
    font-size: 16px;
  }

  .education-program-desc-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .education-program-desc-box p {
    font-size: 14px;
  }

  .board-view {
    padding: 32px 16px 60px;
  }

  .board-view__header {
    gap: 14px;
    padding: 24px 0 20px;
  }

  .board-view__back {
    width: 40px;
    height: 40px;
  }

  .board-view__title {
    font-size: 28px;
  }

  .board-view__meta {
    margin-top: 14px;
    font-size: 14px;
  }

  .board-view__body {
    padding: 36px 0 44px;
  }

  .board-view__content {
    font-size: 16px;
    line-height: 1.8;
  }

  .board-view__nav-item {
    gap: 14px;
    padding: 16px 0;
  }

  .board-view__nav-label {
    flex-basis: 56px;
    font-size: 14px;
  }

  .board-view__nav-title {
    font-size: 15px;
  }

  .board-view__btn {
    min-width: 140px;
    height: 48px;
    font-size: 15px;
  }

  .represent-video-box .represent-video-swiper {
    padding-bottom: 34px;
  }

  .represent-video-box .represent-video-card {
    padding: 14px;
    border-radius: 24px;
  }

  .represent-video-box .represent-video-thumb {
    border-radius: 18px;
  }

  .represent-video-box .represent-video-pagination .swiper-pagination-bullet {
    width: 48px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-label {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .section-heading.sub .section-title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .content-card-box {
    padding: 50px 30px;
  }

  .section-heading.justify-between .section-title {
    font-size: 30px;
  }

  .main-btn {
    font-size: 0px;
    width: 38px;
    padding: 0 0 0 0;
    justify-content: center;
  }

  .campus-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .campus-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .campus-name {
    min-width: auto;
  }

  .btn-location {
    width: 100%;
    justify-content: center;
  }

  .campus-map-box {
    height: 320px;
  }

  .board-section {
    padding: 28px 0 44px;
  }

  .board-toolbar {
    gap: 18px;
    margin-bottom: 18px;
  }

  .board-toolbar__left {
    gap: 18px;
  }

  .board-filter-group {
    align-items: stretch;
    gap: 12px;
  }

  .board-date-range {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .board-date-field {
    width: 100%;
  }

  .board-date-separator {
    display: none;
  }

  .board-btn--search {
    width: 100%;
  }

  .board-toolbar__right {
    justify-content: stretch;
  }

  .board-select {
    width: 100%;
  }

  .board-table {
    min-width: 760px;
  }

  .board-table thead th,
  .board-table tbody td {
    padding: 16px 14px;
    font-size: 0.98rem;
  }

  .board-table__title a {
    font-size: 16px;
  }

  .board-filter-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .board-filter-bar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .board-filter-bar__date {
    flex-direction: column;
    width: 100%;
  }

  .board-input-date,
  .board-btn-search,
  .board-select {
    width: 100%;
  }


  .brand-vision {
    height: 500px;
    background: url(../images/brand_intro_hero_mo.png) no-repeat;
    background-position: 100% 100%;
    background-size: 100%;
  }
  .brand-vision::after {
    width: 85px;
    height: 100px;
    bottom: -50px;
  }
  .brand-vision::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: rgba(0, 0, 0, 0.6);
  }
  .brand-vision__content h3 {
    font-size: 28px;
  }
  .brand-vision__content {
    gap: 10px;
  }
  .brand-vision__content p {
    font-size: 16px;
    padding: 10px 20px 0 20px;
    line-height: 1.6;
  }
  


  .shop-search-input {
    min-width: 0;
    height: 42px;
  }

  .shop-product-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
  .shop-product-card{
    display: flex;
    align-items: flex-start;
  }

  .shop-product-thumb{
    flex: 0 0 150px;
    width: 150px;
  }

  .shop-product-body{
    flex: 1;
    min-width: 0;
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .shop-product-meta{
    flex-direction: column;
    align-items: flex-start;
  }
  .shop-product-point {
    font-size: 26px;
  }
  .shop-modal-thumb{
  width: 100%;
  }
  .shop-modal-desc-box p {
    max-height: 75px;
    line-height: 1.4;
  }
  .shop-btn-apply, .shop-btn-disabled {
    height: 40px;
    font-size: 14px;
    letter-spacing: -3%;
  }
  .extra-learning-card {
    gap: 16px;
    align-items: stretch;
    padding: 16px;
    display: flex;
        flex-direction: column;
  }

  .extra-learning-thumb {
    width: 100%;
    border-radius: 18px;
  }

  .extra-learning-cont {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    min-width: 0;
  }

  .extra-learning-title {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.35;
  }

  .extra-learning-period {
    font-size: 13px;
  }

  .extra-learning-action {
    width: 100%;
  }

  .extra-learning-btn {
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 15px;
    border-radius: 9999px;
  }
}

@media (max-width: 767px) {

  .local-navigation-area{
    padding: 30px 0 20px 0;
  }

  .campus-item .campus-left {
    align-items: flex-start;
    gap: 5px;
  }

  .portfolio-best-inner {
    width: min(100%, calc(100% - 24px));
  }

  .portfolio-best-block + .portfolio-best-block {
    margin-top: 70px;
  }

  .portfolio-best-head {
    margin-bottom: 24px;
  }

  .portfolio-best-title {
    font-size: 28px;
  }

  .portfolio-best-desc {
    font-size: 15px;
    margin-top: 3px;
  }

  .portfolio-roadmap-group__title {
    font-size: 15px;
  }

  .portfolio-roadmap-link {
    min-height: 34px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .portfolio-roadmap-row__title {
    font-size: 28px;
  }

  .portfolio-card__play {
    width: 72px;
    height: 72px;
    border-width: 6px;
  }

  .portfolio-card__name {
    font-size: 18px;
    margin-top: 3px;
  }
  .portfolio-card__label {
    font-size: 12px;
  }

  .portfolio-card__body {
    padding: 12px 10px 10px 10px;
  }

  .login-wrap .login-inline-group {
    gap: 8px;
  }

  .login-wrap .login-inline-btn {
    flex-basis: 120px;
    font-size: 14px;
    padding: 0 10px;
  }

  .login-wrap .login-title--join {
    font-size: 32px;
  }

  .login-wrap .login-agree-text {
    font-size: 15px;
  }

  .login-wrap .login-agree-link {
    font-size: 14px;
  }



  .page-guide-box {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .page-guide-box__title,
  .shuttle-time__title {
    font-size: 14px;
  }

  .page-guide-box__list li {
    font-size: 14px;
  }
  .tab-link {
    height: 50px;
    font-size: 14px;
  }

  .shuttle-stops {
    grid-template-columns: repeat(4, 1fr);
  }
  .shuttle-time__list {
    gap: 6px 10px;
  }
  .shuttle-time__chip {
    min-width: auto;
    padding: 10px 18px;
    font-size: 16px;
  }
  .shuttle-route__name {
    margin: 0;
    font-size: 22px;
  }
  .shuttle-staff-item{
    font-size: 14px;
  }
  .shuttle-staff{
    gap: 10px;
    flex-direction:row;
    justify-content: flex-start;
  }
  .shuttle-route__header{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-bottom: 10px;
  }
  .shuttle-stop__name {
    font-size: 16px;
  }

  .cyj-contribution-item__overlay-logo img{
    max-height: 50px;
  }
  .academy-facility-list {
    grid-template-columns: 1fr;
  }
  .academy-facility-desc {
    font-size: 14px;
  }

  .portfolio-best-featured{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
  .portfolio-roadmap-cards{
    gap: 16px;
  }
  .email-policy__card {
    padding: 30px 30px 30px 30px;
  }

  .email-policy__desc{
    padding: 0 0;
  }

  .email-policy__law {
    margin: 20px auto 0;
    padding: 24px 10px;
  }

  .board-list-header__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .board-list-header__left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap-reverse;
  }

  .board-list-header__right{
    width: 100%;
  }

  .board-list-header__right .board-list-filter__date .form-control{
    width: 100px;
    height: 32px;
    padding: 6px 6px 6px 12px;
  }

  .board-list-header .btn-search {
    padding: 0px 10px;
    font-size: 14px;
    height: 32px;
  }
  .board-list-header__title {
    font-size: 24px;
  }
  .board-list-header__right .form-select {
    width: 100%;
  }
  .board-list-filter {
    gap: 6px;
  }
  .board-list-filter__label {
    font-size: 14px;
  }
  .mypage-accordion-wrap .accordion-list-section .custom-accordion-button__left {
    gap: 2px;
  }

  .mypage-accordion-wrap .accordion-list-section .custom-accordion-button {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .mypage-accordion-wrap .accordion-list-section .custom-accordion-button__amount {
    font-size: 20px;
  }
  .mypage-accordion-wrap .accordion-list-section .custom-accordion-button__month{
    font-size: 14px;
  }
  .mypage-accordion-wrap .accordion-list-section .custom-accordion-button__period{
    font-size: 14px;
  }


  .landing-program {
    margin-top: 80px;
    padding: 0 16px;
  }

  .landing-program .landing-section-cont + .landing-section-cont {
    margin-top: 72px;
  }
  .cyj-support-section{
    padding: 60px 0;
  }
  .cyj-program-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .cyj-program-head__num {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .cyj-program-head__desc,
  .cyj-program-text p,
  .cyj-program-card p,
  .cyj-program-dot-list li,
  .cyj-program-check-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .cyj-program-bridge__item,
  .cyj-program-card {
    padding: 16px 16px;
    border-radius: 20px;
  }

  .cyj-program-bridge__circle {
    width: 92px;
    height: 150px;
    margin-bottom: 18px;
    font-size: 24px;
    border-radius: 12px;
  }
  .cyj-program-bridge__circle.part-esl::before{
    background-position: 50% 40%;
  }
  .cyj-program-bridge__circle.part-school::before{
    background-position: 50% 20%;
  }
  .cyj-program-list li {
    font-size: 18px;
  }

  .cyj-program-card h4 {
    font-size: 22px;
  }

  .cyj-program-card__sub {
    font-size: 14px;
  }

  .sticky-tab{
    gap: 0;
    padding: 4px;
    top: 10px;
  }
  .sticky-tab .anchor-btn {
    min-width: 100px;
    height: 40px;
    word-break: keep-all;
    text-align: center;
    font-size: 16px;
    padding: 0 10px;
  }

  .cyj-program-section {
    padding: 30px 20px 30px 20px;
    border-radius: 24px;
  }

  .cyj-program-section__head h3 {
    font-size: 26px;
  }
  .cyj-program-section__head > p:last-child {
    max-width: 100%;
    margin: 10px auto 0 auto;
    line-height: 1.3;
    font-size: 16px;
  }
  .cyj-program-section__head {
    margin: 0 auto 20px;
  }
  .cyj-program-area {
    padding: 50px 0 50px 0;
  }
  .cyj-program-section__label {
    margin: 0 0 10px;
  }
  .cyj-program-bridge{
    gap: 16px;
  }
  .cyj-program-bridge__text p {
    font-size: 14px;
    line-height: 1.2;
  }
  .cyj-program-bridge__list {
    gap: 3px 10px;
    margin: 0 0 12px;
  }
  .cyj-program-bridge__text p::before {
    top: 6px;
    width: 5px;
    height: 5px;
  }
  .cyj-program-bridge__center {
    max-width: 250px;
    min-height: 70px;
    margin: 0 auto;
    border-radius: 52px;
    padding: 20px 30px;
  }
  .cyj-team-grid {
    gap: 20px;
  }
  .cyj-team-card {
    width: 100%;
    padding: 10px 10px;
  }
  .cyj-team-card h4 {
    font-size: 12px;
  }
  .cyj-team-card:not(:last-child)::after {
    border-top: 1px dashed #c8d5cc;
  }
  .cyj-manage-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
  }
  
  .cyj-manage-item p {
    font-size: 12px;
  }
  .cyj-manage-item {
    padding: 10px 10px 10px 18px;
  }
  .cyj-flow-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 20px 20px;
  }
  .cyj-flow-card__icon {
    width: 100%;
  }
  .cyj-flow-card__icon img {
    width: 100%;
  }
  .cyj-flow-card h4{
    font-size: 20px;
    text-align: center;
  }
  .cyj-flow-card__sub {
    text-align: center;
    margin-top: 6px;
    line-height: 1.2;
  }
  .cyj-flow-card li {
    font-size: 14px;
  }
  .cyj-flow-card li::before {
    top: 6px;
  }
  .cyj-contribution-item__image{
    border-radius: 12px;
  }
  .landing-section-head .title-deco{
    padding: 0 20px;
    font-size: 16px;
  }
  .cyj-support-row {
    gap: 10px;
    padding-top: 30px;
  }
  .cyj-support-row__media {
    border-radius: 12px;
  }
  .cyj-support-row__media img {
    min-height: 150px;
  }
  .cyj-support-row__content{
    position: relative;
  }
  .cyj-support-row__eyebrow {
    min-width: 36px;
    height: 30px;
    margin-bottom: 5px;
  }
  .cyj-support-row__content h3 {
    font-size: 24px;
  }
  .cyj-support-row__content p:last-child {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    padding-right: 0px;
  }
  .cyj-wing-head__title {
    font-size: 20px;
    width: 100%;
  }
  .cyj-wing-program{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }
  .cyj-wing__step--1,
  .cyj-wing__step--2,
  .cyj-wing__step--3,
  .cyj-wing__step--4{
    min-height: auto;
    margin-left: 0;
  }
  .cyj-wing__step--2::before, 
  .cyj-wing__step--3::before, 
  .cyj-wing__step--4::before{
    display: none;
  }
  .cyj-wing-head {
    top: 0px;
    text-align: center;
  }
  .cyj-wing-head__title::before {
    margin: 0px auto 16px auto;
  }
  .cyj-wing-head__desc {
    font-size: 18px;
  }
  .cyj-wing-area {
    padding-top: 30px;
  }
  .cyj-wing__summary p {
    font-size: 22px;
    text-align: center;
  }
  .cyj-wing__summary .process-period {
    text-align: center;
  }
  .cyj-wing__list li {
    font-size: 14px;
  }
  .cyj-wing-process{
    display: none;
  }
  .cyj-curriculum__note {
    margin: 14px 0 0;
    font-size: 10px;
    line-height: 1.2;
  }
  .cyj-wing__eng{
    display: flex;
    justify-content: space-between;
    align-items: self-end;
  }
  .cyj-wing__eng::after{
    content: '';
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
  }
  .cyj-wing__step--2 .cyj-wing__eng::after{
    content: '미국 1~3학년';
  }
  .cyj-wing__step--3 .cyj-wing__eng::after{
    content: '미국 3~5학년';
  }
  .cyj-wing__step--4 .cyj-wing__eng::after{
    content: '미국 5~6학년';
  }
  .cyj-curriculum-item{
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  .cyj-curriculum-item .cyj-curriculum-item__num{
    position: absolute;
    left: -5px;
    top: -15px;
    font-size: 16px;
    padding: 16px;
  }
  .cyj-curriculum-item__num::after{
    display: none;
  }
  .cyj-curriculum-item__body h3 {
    font-size: 22px;
    text-align: center;
  }
  .cyj-curriculum-item__body strong {
    margin-top: 3px;
    font-size: 18px;
    text-align: center;
  }
  .cyj-curriculum-item__body ul {
    margin: 14px 0 0;
  }
  .cyj-curriculum-item__body li {
    font-size: 16px;
    line-height: 1.2;
  }
  .cyj-curriculum-item__body li + li {
    margin-top: 6px;
  }
  .cyj-curriculum-item__body li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }
  .cyj-curriculum-item__body p {
    line-height: 1.2;
    font-size: 16px;
    text-align: center;
  }
  .cyj-curriculum-core {
    margin-top: 30px;
    padding: 24px 20px 24px 20px;
  }
  .cyj-curriculum-core__card {
    align-items: center;
    flex-direction: column;
  }
  .cyj-curriculum-core__card p {
    text-align: center;
    font-size: 16px;
  }
  .cyj-curriculum-core__text {
    align-items: center;
  }
  .cyj-curriculum-core__icon {
    width: 80px;
    height: 80px;
  }
  .cyj-curriculum-core__card strong {
    font-size: 20px;
  }
  #cyjVision,
  #cyjContribution,
  #cyjProgram,
  #cyjCurriculum,
  #cyjSupportSystem,
  #cyjAdmission,
  #cyjRules,
  #cyjPayment{
    scroll-margin-top: 60px;
  }
}

@media (max-width: 640px) {

  .container {
    padding: 0px 20px 70px 20px;
  }

  .lnb-title .lnb-current-title {
    font-size: 32px;
  }

  .mypage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item {
    padding: 16px 16px 0;
    border-radius: 24px;
  }

  .portfolio-thumb {
    height: 190px;
    border-radius: 16px;
  }

  .portfolio-text .icon img {
    width: 42px;
  }

  .portfolio-title {
    font-size: 18px;
  }

  .portfolio-play {
    right: -4px;
    width: 54px;
    height: 54px;
  }

  .play-icon {
    width: 22px;
    height: 26px;
  }

  .main-section {
    padding: 70px 20px;
  }

  .main-section.section-visual {
    height: 300px;
    padding: 0;
  }

  .section-shortcut {
    padding: 30px 20px;
  }

  .section-heading.justify-between .section-title {
    width: 100%;
    text-align: left;
    font-size: 24px;
  }

  .footer-campus,
  .footer .foot-cs-guide {
    display: none;
  }

  .footer .footer-btn-area .sns-link {
    width: 100%;
  }

  .footer-policy a + a {
    margin-left: 10px;
    padding-left: 10px;
  }

  .represent-video-box .swiper-slide {
    padding: 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-label {
    font-size: 18px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-education .section-heading.sub .section-label {
    font-size: 24px;
  }

  .represent-video-box .represent-video-swiper {
    padding-bottom: 0;
  }

  .represent-video-box .represent-video-card {
    padding: 10px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
  }

  .represent-video-box .represent-video-thumb img {
    height: 100%;
    border-radius: 30px;
  }

  .education-support-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .education-support-item dt {
    font-size: 20px;
  }

  .section-shortcut .banner-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .wecan-schedule-card {
    flex-direction: row;
  }

  .wecan-schedule-title {
    flex-direction: column;
  }

  .wecan-schedule-left {
    width: 100px;
  }

  .wecan-schedule-right {
    flex: 1;
    gap: 10px;
    padding: 15px 15px;
  }

  .section-heading.sub .section-title {
    padding: 8px 10px;
    font-size: 20px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .skill-card {
    min-height: 140px;
    padding: 20px 20px 20px;
  }

  .skill-card__title {
    margin-top: 5px;
  }

  .education-program-card-wrap {
    flex-direction: column;
  }

  .education-program-desc-box {
    height: auto;
  }

  .content-card-box {
    padding: 40px 20px 20px 20px;
    border-radius: 30px;
  }

  .education-program-list li + li {
    margin-top: 0;
  }

  .content-card-grid {
    gap: 30px;
  }

  .education-program-card {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .education-program-card .education-program-list {
    position: relative;
    padding-left: 120px;
  }

  .education-program-card .education-program-list::before {
    content: "";
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 72px;
    font-size: 20px;
    font-family: var(--font-point);
    font-weight: 700;
  }

  .education-program-card:nth-child(1) .education-program-list::before {
    content: "ELC";
  }

  .education-program-card:nth-child(2) .education-program-list::before {
    content: "학업영어";
  }

  .notice-item a {
    flex-direction: column;
  }

  .notice-content-head {
    align-items: center;
  }

  .notice-status-badge {
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
  }

  .notice-thumb {
    width: 100%;
  }

  .campus-map-info {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .campus-item .campus-left {
    align-items: flex-start;
    gap: 5px;
  }

  .campus-map-info__name {
    padding-right: 0;
    padding-bottom: 10px;
    margin-right: 0;
    color: #111;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #666;
  }

  .campus-map-info__mata {
    text-align: center;
  }

  .shuttle-staff{
    gap: 0px;
  }
  .shuttle-stops {
    grid-template-columns: repeat(1, 1fr);
  }
  .shuttle-stop{
    min-height: 70px;
    min-width: 100%;
  }
  .shuttle-stop::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: -14px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(134deg);
  }
  .local-navigation-bar{
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .section-title p{
    display: block;
    margin-bottom: 3px;
  }

  .pay-detail__month{
    font-size: 24px;
  }
  .pay-detail__period {
    font-size: 14px;
  }
  .modal-body .pay-total span{
    font-size: 14px;
  }
  .modal-body .pay-total strong {
    font-size: 20px;
  }

  .cyj-contribution-item {
    display: block;
    padding: 30px 0;
  }
  .cyj-contribution-item__content{
    margin-top: 20px;
  }
  .cyj-contribution-item__content h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .cyj-contribution-item__content p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -3%;
  }
  .full-cont-box {
    margin: 30px 0 0 0;
    gap: 30px;
  }
  .full-cont-box h3{
    font-size: 28px;
  }
  .full-cont-box p{
    font-size: 16px;
    line-height: 1.4;
  }
  .full-cont-box.value-message {
    background: url(../images/value_message.png) no-repeat 72% 50%;
    min-height: 600px;
  }
  .full-cont-box.value-message p{
    line-height: 1.6;
  }
  .full-cont-box.value-message .point-text {
    font-size: 24px;
  }
  .cyj-value__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px 0px;
  }
  .cyj-value-card{
    display: grid;
    grid-template-columns: 80px 1fr;
    text-align: left;
    padding: 20px 0;
    gap: 10px;
    border-radius: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);

  }
  
  .cyj-value-card:first-child{
    padding-top: 0;
  }
  .cyj-value-card:last-child{
    padding-bottom: 0;
    border: none;
  }
  .cyj-value-card h4 {
    font-size: 18px;
  }
  .cyj-value-card p {
    margin: 0;
    font-size: 14px;
  }
  .cyj-value-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .brand-intro-hero {
    height: 300px;
  }
  .brand-intro-hero__content{
    gap: 12px;
  }
  
  .brand-intro-hero__content p {
    font-size: 24px;
    line-height: 1.2;
    display: inline-block;
  }
  .landing-section-cont {
    font-size: 16px;
    gap: 16px;
    padding: 50px 20px;
  }
  .landing-title {
    font-size: 24px;
  }
  .landing-section-cont .text-box{
    line-height: 1.4;
  }
  .brand-intro-hero.contribution-message {
    height: 400px;
    margin-top: 50px;
  }
  .brand-intro-hero.contribution-message p {
    font-size: 28px;
  }
  .brand-intro-hero.contribution-message span {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.4;
  }

  .brand-intro-hero.contribution-message .btn-area{
    margin-top: 20px;
  }

  .landing-section-head {
    margin-bottom: 2rem;
  }
  .landing-section-head .title-text{
    font-size: 32px;
  }

  .board-list-filter__date .form-control {
    width: 110px;
    padding: 6px 3px 6px 6px;
  }
  .board-list-filter__date .btn-search {
    padding: 0 10px;
  }
  .board-list-filter__date {
    gap: 3px;
  }
  .panel-head {
    margin: 10px 10px 0px 10px;
  }
  .panel-head .board-list-filter{
    flex-direction: column;
    align-items: flex-start;
  }
  .mypage-test-cont {
    padding: 20px 20px 30px 20px;
  }

  .shuttle-area{
    padding: 0 0;
  }
  .shuttle-area .shuttle-item__button{
    padding: 20px 10px;
  }
  .shuttle-area .shuttle-item__meta{
    gap: 3px;
    margin-top: 5px;
  }
  .shuttle-area .shuttle-route__item {
    min-height: 70px;
  }
  .shuttle-area .shuttle-route__item:nth-child(7n)::before, .shuttle-area .shuttle-route__item:nth-child(7n)::after {
    display: none;
  }
  .shuttle-area .shuttle-item__divider{
    display: none;
  }
  .leveltest-container .local-navigation-bar{
    flex-direction: row;
  }
  .cyj-contribution-item__image img{
    height: 100px;
  }
  
  .mypage-card {
    padding: 10px 0px;
    gap: 0px 30px;
  }

}
