/* 디자인 가이드*/
:root {

  /* 컬러 */
  --red:        #c0001a; /* primary */
  --dark-red:   #8b0013;
  --black:      #170306;
  --gray-dark:  #1a1a1a;
  --gray-mid:   #555;
  --gray-light: #f5f5f7;
  --border:     #e0ddd8;
  --bg:         #f5f3f0;
  --white:      #ffffff;
  --yellow:     #edb200;
  --green:      #00a36c;
  --violet:     #9000aa;

  /* ── 폰트 ── */
  --font-stellar: 'stellar', serif;

  /* ── 버튼 ── */
  --btn-radius: 999px;
  --btn-border: 2px;
  --btn-padding: 1.05em 1.65em;
  --btn-font: 16px;

  --overlay-dur: 0.42s;
  --overlay-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* 탭 */
.c-tab01{border-left: unset; background: transparent; margin-bottom:0; font-family: unset; }
.c-tab01 ul {
  display: flex;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  margin-bottom: 70px;
  overflow: hidden;
  flex-wrap: wrap;
}

.c-tab01:has(+.c-tab02) ul{margin-bottom: 12px; }

.c-tab01 ul li {
  flex:1 1 calc(100% / 7); min-width: calc(100% / 6 - 1px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.c-tab01 ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height:66px;
  font-size: 16px;
  font-weight: 600;
  background:var(--white);
  transition: 0.3s; padding-top:0; border:0; 
}

.c-tab01 ul li.over a {
  background: var(--red);
  color: var(--white); padding-top:0; 
}

.c-tab01 ul li:hover.over a {
  background: var(--dark-red);
}

.c-tab01 ul li:not(.over):hover a {
  background: var(--gray-light);
}

.c-tab02{margin-bottom: 50px; }
.c-tab02 ul li{margin:0 15px; }
.c-tab02 ul li:before{left: -15px; }
.c-tab02 ul li a span{padding-top: 8px; padding-bottom:8px; }
.c-tab02 ul li a span:after{display: none; }

@media screen and (max-width: 1200px){
	.c-tab01 ul li{flex: 1 1 calc(100% / 5); }
	.c-tab01 ul li a{height: 54px; font-size: 15px; }
}

@media screen and (max-width: 768px){
	.c-tab01 ul li{flex: 1 1 calc(100% / 3); }
}

/* 타이틀 */
.tit {
  font-family: 'stellar', serif;
  color: var(--black);
  line-height: 1em;
  letter-spacing: 0;
}

.tit-eng {
  font-family: 'stellar', serif;
  color: var(--black);
  line-height: 1em;
  letter-spacing: 0;
}

.tit01 {
  font-size: 80px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.tit02 {
  font-size: 60px;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

.tit03 {
  font-size: 48px;
  line-height: 1.2;font-family: 'stellar', serif;
}

.tit04 {font-size: 28px;font-weight: 600; letter-spacing: -.04em; line-height: 1.2;}

/* 강조 타이틀 — 레드 컬러 적용 */
.tit-red {
  color: var(--red);
}

.txt24 {
  font-size:1.143em;
}

.txt30 {
  font-size:1.425em;
}


/* 버튼 */
/* 공통 기반 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.65em;
  font-size: var(--btn-font);
  font-weight: 600;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  border: var(--btn-border) solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* 분류별 */
.btn-go {
  position: relative;
  width: fit-content;
  padding-right:3.3em;
}

.btn-go:after {
  content: '';
  position: absolute;
  top:calc(50% - 8px);
  right:25px;
  display: block;
  width: 22px;
  height: 16px;
  background-image: url('/stellarkor/_Img/btn_arr_b.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: .3s;
}

.btn-go:hover::after {
  right: 20px;
}

.btn-down {
  position: relative;
  width: fit-content;
  padding-right:3.3em;
}

.btn-down:after {
  content: '';
  position: absolute;
  top:calc(50% - 11px);
  right:25px;
  display: block;
  width: 24px;
  height: 23px;
  background-image: url('/stellarkor/_Img/btn_down_w.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: .3s;
}

.btn-down:hover::after {
  right: 23px;
}


/* 컬러 */
.btn-gray {
  background: var(--gray-light);
  border-color: var(--gray-light);
  color: var(--black);
}

.btn-gray:hover {
  background-color: var(--gray-dark);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-red::after {
  background-image: url('/stellarkor/_Img/btn_arr_w.png');
}

.btn-red:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
}

.btn-green {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-red::after {
  background-image: url('/stellarkor/_Img/btn_down_w.png');
}

.btn-red:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
}


.btn-line {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-line:hover {
  background: var(--black);
  color: var(--color-white);
}

/* 리스트 */
.s-list {
  list-style: none;font-size: 18px; 
  padding: 0;
}

.s-list li {
  color: var(--gray-mid);
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.s-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background-image: url('/stellarkor/_Img/dot_list.png');
  background-position: center;
  background-repeat: no-repeat;
}

.gap30 {
  height:30px;
  clear:both;
  overflow:hidden;
  display:block;
}

.gap50 {
  height:50px;
  clear:both;
  overflow:hidden;
  display:block;
}



.ico-star {
  width:30px;
  height:30px;
  display: block;
  margin-bottom: 24px;
}

.ico-star img {
  width:100%;
  height:auto;
}


/* About_오시는길 */




/* 스텔라파운데이션 */
.foundation-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

.foundation-top .top-img {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.foundation-top .top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.foundation-top .top-txt {
  font-size: 26px; line-height: 1.2; color:#000; 
  font-weight: 700;
  text-align: center;
  padding:60px;
}

.course-wrap .txt24 {
  padding:45px 0; font-size: 20px; 
}

.signature-wrap {
  padding:60px 60px;
  background: var(--gray-light);
  margin-bottom:60px;
}

.signature-wrap .tit {
  margin-bottom: 10px;
}

.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-item {
  position: relative;
  margin-top: 30px;
  padding: 0 0 30px 40px;
  border-bottom: 1px solid rgba(23, 3, 6, .1);
}

.course-item:last-child { border-bottom: none; padding-bottom: 0; }

.course-item::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 22px;
  height: 16px;
  background-image: url('/stellarkor/_Img/ico_arr.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.course-item .name {
  font-weight: 700;font-size: 21px; 
}

.course-item .tag {
  display: inline-block;
  font-size: var(--btn-font);
  font-weight: 500;
  padding: 3px 13px 4px;
  border-radius: var(--btn-radius);
  margin-left: 10px;
  background: var(--white);
  color: var(--dark-red);
}

.course-item .tag.optional {
  background: var(--white);
  color: var(--green);
}

.course-item .desc {
  margin-top: 10px; font-size: 17px; 
}
.signature-wrap +.txt{font-size: 18px;}

/* 전공소개 */
.major-top {
  position: relative;  
  color: #fff;
  padding: 95px 0 70px;
  min-height: 800px;
  display: flex;
}

.major-top::after {  
  content: '';
  position: absolute;
  top:0;
  left:50%;
  margin-left:-860px;
  width: 1720px;
  height: 100%;
  background-image: url(/stellarkor/_Img/bg_major_top.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.major-top.acting::after {  
  background-image: url(/stellarkor/_Img/bg_major_acting.jpg);
}
.major-top.ani::after {  
  background-image: url(/stellarkor/_Img/bg_major_ani.jpg);
}
.major-top.conv01::after {  
  background-image: url(/stellarkor/_Img/bg_major_conv01.jpg);
}
.major-top.conv02::after {  
  background-image: url(/stellarkor/_Img/bg_major_conv02.jpg);
}
.major-top.conv03::after {  
  background-image: url(/stellarkor/_Img/bg_major_conv03.jpg);
}
.major-top.convergence::after {  
  background-image: url(/stellarkor/_Img/bg_major_convergence.jpg);
}
.major-top.digital::after {  
  background-image: url(/stellarkor/_Img/bg_major_digital.jpg);
}
.major-top.environmental::after {  
  background-image: url(/stellarkor/_Img/bg_major_envi.jpg);
}
.major-top.fashion::after {  
  background-image: url(/stellarkor/_Img/bg_major_fashion.jpg);
}
.major-top.film::after {  
  background-image: url(/stellarkor/_Img/bg_major_film.jpg);
}
.major-top.game::after {  
  background-image: url(/stellarkor/_Img/bg_major_game.jpg);
}
.major-top.musical::after {  
  background-image: url(/stellarkor/_Img/bg_major_musical.jpg);
}
.major-top.product::after {  
  background-image: url(/stellarkor/_Img/bg_major_product.jpg);
}
.major-top.visual::after {  
  background-image: url(/stellarkor/_Img/bg_major_visual.jpg);
}
.major-top.webtoon::after {  
  background-image: url(/stellarkor/_Img/bg_major_webtoon.jpg);
}

.major-top.ad::after {  
  background-image: url(/stellarkor/_Img/Contents/bg_major_ad.jpg);
}

.major-top.media::after {  
  background-image: url(/stellarkor/_Img/Contents/bg_major_media.jpg);
}
.major-top.archiengine::after {  
  background-image: url(/stellarkor/_Img/Contents/bg_major_archiengine.jpg);
}
.major-top .top-cont{
  position: relative;  
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 1;
}

.major-top .btit {
  font-size: 5.24em;
  color: var(--white);  
  margin-bottom: 13px;
}

.major-top .tit-eng {
  font-size: 1.52em;
  color: rgba(255,255,255,.5);
}

.major-top .cont-txt {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  /*font-size: 1.43em;  */
  font-weight: 600;
  color: var(--white);
}

.major-top .btn-go {
  position: absolute;
  right: 0;
  bottom: 0;  
}

.major-top .btn-go::after {
  background-image: url(/stellarkor/_Img/btn_arr_w.png); 
}

.major-top .btn-go:hover::after {
  background-image: url(/stellarkor/_Img/btn_arr_b.png); 
}

.major-top .btn-line {
  border-color: var(--white);
  color: var(--white);
}

.major-top .btn-line:hover {
  background-color: var(--white);
  color: var(--black);
}

.major-detail-wrap {
  position: relative;
  margin-bottom: 100px;
}

/* .major-detail-wrap::after {
  content: 'STELLAR Art Instituete';
  color:rgba(245, 245, 247, .9);
  font-family: var(--font-stellar);
  font-size: 400px;
  position: absolute;
  top:-48%;
  left:-14%;
  width: max-content; 
  z-index: -1;
} */

.major-desc { 
  padding: 90px 0; 
  font-weight:500; 
  border-bottom:3px solid var(--black)
}

.contact-wrap {
  padding: 70px 0 40px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  list-style: none;  
}

.contact-list li {
  display: flex;    
  align-items: center;
  gap: 6px; font-size: 20px; 
  flex-grow: 1;
  color: #3e3e3e;
  font-weight: 500;
}

.contact-list li span {
  position: relative;
  padding-left: 40px;
}

.contact-list li span::before {  
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 33px;
  height: 33px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-list .addr span::before {
  background-image: url('/stellarkor/_Img/ico_addr.png');
}

.contact-list .tel span::before {
  background-image: url('/stellarkor/_Img/ico_tel.png');
}

.contact-list .fax span::before {
  background-image: url('/stellarkor/_Img/ico_fax.png');
}

.sec {
  margin-top: 100px;
}

.sec .tit {
  margin-bottom: 50px;
}
.curriculum {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 8px; 
}

.curriculum.row2 {
  grid-template-columns: repeat(2, 1fr);
}

.curriculum.row4 {
  grid-template-columns: repeat(4, 1fr);
}

.curriculum .list {
  position: relative;
  /*border-left: 2px solid rgba(23, 3, 6, .1);*/
  padding-bottom: 50px;
}

.curriculum .list::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: rgba(23, 3, 6, .1);
}

.curriculum .list:first-child::before {
  display: none;
}

.curriculum .list .grade { 
  background: #2b2c2e; 
  color: var(--white); 
  padding: 17px 25px; 
  font-weight: 500; font-size: 24px; 
}

.curriculum .list .txt {
  color: #434343; font-size: 18px; 
  padding: 50px 20px 0 35px; 
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 50px 20px 0 35px; 
}

.tag {
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  background: var(--gray-light);
  font-size: var(--btn-font);
  color: #434343;
}

.curriculum .list ul {
  padding: 50px 20px 0 35px;
}

.professor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prof-list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.prof-img {
  display: block;
  width: 60px;
  height: 60px;
overflow: hidden;
  border-radius: 50%;
  background: var(--gray-light);
  flex-shrink: 0;
  object-fit: cover;
}

.prof-img img {display: block; width: 60px;}

.prof-info {
  display: flex;
  align-items: flex-start;
  gap: 45px;  
  margin-top: 14px;
}

.prof-info .name {
  font-size:1.143em;
  font-weight: 700;
  min-width: 115px;
}

.career-wrap {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap:150px;
  align-items: start;
}

.career-wrap.no-img {
  grid-template-columns: 1fr;
}

.career .txt24 {
  font-weight: 700;
  margin-bottom: 70px;
}

.career-info {
  display: flex;
  align-items: flex-start;
  gap: 45px; 
  margin-bottom: 20px;
}

.career-info .name {
  font-size:1.143em;
  font-weight: 700;
  min-width: 70px;
}

.career-img {
  padding:0;
  margin: 0;
  font-size: 0;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-img-wrap {
  display: flex;
  gap:13px;
  margin-top: 50px;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  padding-top: 45px;
  padding-left: 175px;
  background-image: url(/stellarkor/_Img/bg_timeline.png);
  background-repeat: repeat-y;
  background-position: 23px top;
}

.time-list {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  padding:25px 0 40px;
  min-height: 80px;
}

.time-list::before {
  content: '';
  position: absolute;
  left:-145px;
  top:30px;
  width: 20px;
  height: 20px;
  background-image: url('/stellarkor/_Img/ico_star.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.time-list::after {
  content: '';
  position: absolute;
  left:-175px;
  top:0;
  width: 80px;
  height: 80px;
  background-color: var(--gray-light);
  mix-blend-mode: multiply;
  border-radius: 50%;
  z-index: -1;
}

.time-list .year {
  display: block;
  font-family: var(--font-stellar);
  font-size: 30px;
  color: var(--dark-red);
  min-width: 50px;
}

.c-list {
  list-style: none;
}

.c-list li {
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.award-img {
  display: block;
  font-size: 0;
}


/* 장학금 */
.table-wrap {
  /*border: 1px solid var(--gray-light);*/
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

thead tr {
  background: var(--red);
}

thead th {
  padding: 15px 20px 19px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

thead th:last-child { border-right: none; }

col.c-name  { width: 18%; }
col.c-qual  { width: 30%; }
col.c-target { width: 34%; }
col.c-amt   { width: 16%; }

tbody tr {
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--gray-light); }

tbody tr.hidden { display: none; }

td {
  padding: 30px 20px;
  vertical-align: middle;
  border-right: 1px solid var(--gray-light);
  font-size: 16px;
  line-height: 1.65;color:#333;
}

td:last-child { border-right: none; }

.name-ko {
  font-weight: 700;  
  line-height: 1.4;
  text-align: center;
}

.name-en { margin-top: 3px; font-size: 16px;color: rgba(23, 3, 6, .3); line-height: 1.45; text-align: center;}
.amt { display: block; font-weight: 500; white-space: pre-line; text-align: center;}


/* 연구지원 */
.research-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.research-top .tit {
  margin-bottom: 15px;
}

.research-top .tit-eng {
  font-size: 1.24em;
  color: rgba(23,3,6,.5);
}

.research-detail-wrap .major-desc {
  padding:90px 0 80px;
  border-bottom: 0;
}

.research-detail-wrap .contact-wrap {
  padding:60px 0;
  border-top: 3px solid var(--black);
}

.research-detail .sec {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 100px;
  margin-top: 80px;
}

.research-detail .sec .tit04 {
  margin-bottom:20px;
}

.research-detail .s-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.research-detail .row1 {
  grid-template-columns: 1fr;
}

.research-detail .s-list .role {
  font-weight: 600;
  color: var(--gray-dark);
  margin-right: 10px;
}

.sec .sec-inner {
  margin-bottom:40px;
}

.facil-img {
  display: block;
  font-size: 0;
  margin-top:15px;
}

.facil-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 브랜드 */
.brand-top {
  margin-bottom: 100px;
}

.brand-desc {
  text-align: center;
}

.brand-desc .txt24 {
  padding:60px 40px;
}

/* 비디오 플레이어 */
.video-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url(/stellarkor/_Img/img_brand_thumb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.video-el {
  width: 100%;
  height: clamp(240px, 37.1vw, 665px);
  max-height: 665px;
  object-fit: cover;
  display: block;
}

/* 오버레이 — 정지 상태에서만 보임 */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 4, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: auto;   /* 클릭 수신*/
  cursor: pointer;
}

/* 재생 중이면 오버레이 숨김 */
.video-player.playing .video-overlay {
  opacity: 0;
  pointer-events: auto; /* 재생 중에도 클릭으로 정지 가능 */
}

/* hover 시 일시적으로 오버레이 다시 표시 */
.video-player.playing:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  pointer-events: none; /* 클릭은 overlay가 처리 */
  width: clamp(52px, 6vw, 76px);
  height: clamp(52px, 6vw, 76px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.video-player:hover .play-btn {
  background: #fff;
  transform: scale(1.1);
}

.play-btn svg {
  width: clamp(18px, 2.4vw, 28px);
  height: clamp(18px, 2.4vw, 28px);
  color: var(--red);
}

/* 재생 중 → 일시정지 아이콘으로 전환 */
.play-btn .icon-play  { display: block; margin-left: 3px; }
.play-btn .icon-pause { display: none; }

.video-player.playing .play-btn .icon-play  { display: none; }
.video-player.playing .play-btn .icon-pause { display: block; }

/* 하단 컨트롤 바 */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.video-player:hover .video-controls { opacity: 1; }

.ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ctrl-btn svg {
  width: 18px;
  height: 18px;
}

.progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.ctrl-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ctrl-vol {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vol-slider {
  width: 64px;
  height: 4px;
  accent-color: var(--red);
  cursor: pointer;
}

.brand-detail .sec {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 100px;
  margin-top: 80px;
}

.brand-detail .btn-down:after{width: 14px; height: 14px;  top: 50%; transform:translateY(-50%)}

.concept-panel {
  background: var(--gray-light);
  padding: 80px 150px;
  text-align: center;
}

.headline {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.headline span {
  font-family: var(--font-stellar);
  font-size: 5.72em;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.headline .core {  
  color: var(--dark-red);  
  border-bottom: 1px solid var(--dark-red);
}

.headline .sub {
  color: #4c4948;
  border-bottom: 1px solid #4c4948;
}

.labels {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
}

.labels span {
  font-size: 24px;
  font-weight: 500;
}

.labels .core { color: var(--dark-red); }
.labels .sub { color: #4c4948; }

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.tags .tag {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid var(--gray-light);
  border-radius: var(--btn-radius);
  color: #4c4948;
  background: var(--white);
  white-space: nowrap;
}

.logo-detail {
  display: grid;
  grid-template-columns: 1fr;
}
.logo-panel {
  overflow: hidden;
}

.logo-top {
  background-color: var(--gray-light);
  background-image: url('/stellarkor/_Img/pattern_lattice.gif');
  background-repeat: repeat;
  padding: 90px 80px;
  margin-top: 20px;
}

.logo-top span {
  display: block;
  font-size: 0;
}

.logo-top .logo-ko {
  margin-bottom: 50px;
}

.logo-top span img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}


.symbol-panel {
  background-color: var(--gray-light);
  background-image: url('/stellarkor/_Img/pattern_lattice.gif');
  background-repeat: repeat;
  padding: 90px 80px;
  margin-top: 20px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.symbol-panel span {
  display: block;
  font-size: 0;
}

.symbol-panel span img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.download-wrap {
  text-align: center;
  margin-top: 20px;
}

.goods-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}




/* 반응형 */
@media (max-width: 1400px) {
  .container { padding:0 40px; }

  .concept-panel { padding:80px 70px;}
  .logo-top { padding:80px 70px;}
  .logo-top .logo-en img { width: 100%; height: auto;}
}

@media (max-width: 1200px) {

  .foundation-top { margin-bottom: 60px;}
  .foundation-top .top-txt { padding:40px;}

  .professor { grid-template-columns: 1fr; }
  .career-wrap { grid-template-columns: 1fr 400px; gap: 80px; }

  .research-detail .sec { grid-template-columns: 200px 1fr; gap: 0 50px; margin-top:60px;}

  .brand-detail .sec { grid-template-columns: 220px 1fr; gap: 0 50px; margin-top:60px;}
  .headline span { font-size: 4.77em;}
  .labels span {font-size: 20px;}
  
}

@media (max-width: 999px) {
  /* 공통 */
  body { font-size: 18px; }
  .tit01 { font-size:60px;}
  .tit02 { font-size:48px;}
  .tit03 { font-size: 36px;}
  .tit04 { font-size: 21px;}

  .ico-star { width: 24px; height: 24px; margin-bottom:20px; }

  .foundation-top .top-txt { padding:40px 0; font-size: 22px; line-height: 1.4; }
  .foundation-top {margin-bottom:40px;}
  .course-wrap .txt24 {padding:25px 0;}

  .signature-wrap {padding:40px 40px; margin-bottom: 30px;}

  .major-top { padding:70px 0; min-height: 640px; }  
  .major-top .btit { font-size: 4.89em; margin-bottom:5px; }
  .major-top .tit-eng { font-size: 1.23em; }

  .major-desc { padding:60px 0; }
  .contact-wrap { padding:55px 0 20px; }
  
  .sec { margin-top:50px; }
  .sec .tit { margin-bottom: 30px; }

  .curriculum { display:block; }
  .curriculum .list { padding-bottom:30px; }
  .curriculum .list::before { display: none; }
  .curriculum .list .grade { padding:12px 20px; }
  .curriculum .list .txt, .tag-wrap { padding:30px 20px 0; }

  .career-wrap { grid-template-columns: 1fr 300px; gap: 60px; }
  .career .txt24 { margin-bottom:50px; }

  .timeline  { padding-top: 25px; padding-left: 100px; }
  .time-list { gap:30px; padding:12px 0 20px; }
  .time-list::before {top:20px; left:-70px}
  .time-list::after { left:-90px; width: 60px; height: 60px; }
  .award-img-wrap { margin-top: 30px; }

  .research-top .tit-eng {font-size: 1.06em;}
  .research-detail-wrap .major-desc {padding:50px 0}
  .research-detail-wrap .contact-wrap {padding: 40px 0;}
  .research-detail .sec {margin-top: 40px; grid-template-columns: 1fr;}
  .research-detail .s-list {gap: 5px 30px;}
  .sec .sec-inner {margin-bottom: 25px;}

  .brand-top {margin-bottom: 50px;}
  .brand-desc .txt24 {padding: 20px 0px;}
  .brand-detail .sec { grid-template-columns: 1fr; margin-top: 40px;}
  .logo-top .logo-ko img { width: 100%; height: auto; max-width: 470px;}
  
}

@media (max-width: 768px) {
  /* 공통 */
  body { font-size: 17px; }

  .container { max-width: 100%; padding:0 20px; }

  .tit01 { font-size: 50px; }
  .tit02 { font-size: 42px; }
  .tit03 { font-size: 30px;}
  .tit04 { font-size: 18px;}
  .txt30 { font-size:1.24em; }
  .txt24 { font-size: 1.06em;}
  .s-list li { padding-left: 25px; margin-bottom:5px; }
  .s-list li::before { width: 12px; height: 12px; background-size: contain; }

  .btn-go:after {right: 20px; width: 18px;}
  .btn-down:after {right: 20px; width: 18px;}

  .gap30 { height:15px;}
  .gap50 { height:30px;}

  .ico-star { width: 18px; height: 18px; margin-bottom: 10px; }


  .foundation-top .top-txt { padding: 25px 0 0; font-size: 20px; }
  .course-wrap .txt24 { padding: 15px 0 20px; font-size: 17px; }
  .course-item {margin-top: 20px; padding: 0 0 20px 30px;}
  .course-item::before {top: 6px; width: 18px; height: 14px;}
  .course-item .desc {margin-top: 5px;}
  
  .major-top { min-height: 560px; padding:50px 0; }  
  .major-top .btit { font-size: 4.28em; }
  .major-top .btn-go { position: relative; right: auto; bottom: auto; margin-top: 20px; }

  .major-desc { padding:40px 0; }
  .contact-wrap { padding:30px 10px 20px; }
  .contact-list { flex-direction: column; }
  .contact-list li span::before { width:25px; height: 25px; }

  .sec { margin-top:30px; }
  .sec .tit { margin-bottom: 10px; }

  .curriculum .list .txt { font-size:1em; font-weight: normal; }
  .curriculum .list .txt, .tag-wrap { padding:20px 10px 0; }

  .professor-wrap { padding-bottom:40px; }
  .prof-list { gap: 15px; }
  .prof-info { display: block; }
  .prof-info .name { margin-bottom: 10px; }

  .career-wrap { grid-template-columns: 1fr 220px; }
  .career .txt24 { margin-bottom: 30px; }
  .career-info { gap:20px; margin-bottom:5px; }
  .career-info .name { font-size: 1.06em; }

  .timeline { padding-top: 25px; padding-left: 70px; background-position: 10px top; background-size: 20px; }
  .time-list { gap: 15px; padding: 8px 0 10px; }
  .time-list::before { top: 15px; left: -60px; }
  .time-list::after { left:-75px; width:50px; height:50px; }
  .time-list .year { font-size: 24px; }

  .sec .sec-inner {margin-bottom: 15px;}
  .research-detail .sec .tit04 {margin-bottom: 10px;}

  .concept-panel {padding:50px 40px;}
  .headline  {margin-bottom:10px;}
  .headline span {font-size: 4em;}
  .labels {margin-bottom: 20px;}
  .labels span {font-size: 18px;}
  .tags .tag {padding: 10px 21px;}
  .logo-top {padding:50px 40px;}
  .logo-top .logo-ko {margin-bottom: 30px;}
  .symbol-panel {padding:50px 40px;}

}

@media (max-width: 640px) {
  .career-wrap { display: block;  }
  .career-img { margin-top: 10px; }

  table { min-width: 700px; }
  td {padding: 15px 15px;}

  .research-top {flex-direction: column; align-items: flex-start;}
  .research-detail-wrap .contact-wrap {padding:30px 10px 20px;}
  .research-detail .sec {margin-top:30px;}
  .research-detail .s-list {grid-template-columns: 1fr;}
}

@media (max-width: 480px) {
  /* 공통 */
  body { font-size: 16px; }

  .tit02 { font-size:36px; }
  .txt30 { font-size: 1.13em; }
  .c-list li { margin-bottom:5px; }

  .ico-star { width: 14px; height: 14px; }

  .signature-wrap {padding:30px 30px;}
  .course-item { padding: 0 0 20px 0;}
  .course-item::before {display: none;}

  .major-top { min-height: 480px; padding: 40px 0; }  
  .major-top .btit { font-size: 3.8em; }
  .major-top .tit-eng { font-size: 1.13em; }

  .major-desc { padding: 20px 0; }

  .contact-wrap { padding: 20px 10px 10px; }
  .contact-list { gap: 8px; }
  .contact-list li { align-items: baseline; }
  .contact-list li span { padding-left: 27px; min-width: 70px; }
  .contact-list li span::before { width: 20px; height: 20px; top: 3px; }

  .curriculum .list { padding-bottom: 20px; }

  .professor-wrap { padding-bottom: 10px; }
  .professor { gap: 5px; }
  .prof-img { width: 50px; height: 50px; }
  .prof-img img { width: 100%; height: 100%; }
  .prof-info .name { font-size: 1.065em; margin-bottom:5px; }

  .career .txt24 { font-weight: 500; margin-bottom:15px; }
  .career-info .name { font-size:1em; }

  .timeline { padding-top: 5px; padding-left: 50px; }
  .time-list { min-height: 40px; }
  .time-list::before { top:12px; left: -36px; width: 12px; height: 12px; }
  .time-list::after { left:-48px; width: 36px; height: 36px; }
  .time-list .year { font-size: 21px; min-width: auto; }
  .award-img-wrap { margin-top: 10px; gap: 5px; flex-direction: column; }

  .research-detail-wrap .major-desc {padding:30px 0;}
  .research-detail-wrap .contact-wrap {padding: 20px 10px 10px;}

  .concept-panel {padding: 30px 25px;}
  .headline {gap: 10px;}
  .headline span {font-size: 3.53em;}
  .labels { margin-bottom: 10px;}
  .tags {gap: 5px;}
  .logo-top .logo-ko {margin-bottom: 20px;}

}

@media (max-width: 425px) {
  /* 공통 */
  .tit02 { font-size:30px; }
  .txt24 { font-size: 1em; }
  .txt30 { font-size: 1.063em; }
  .s-list li { padding-left: 16px; }
  .s-list li::before { width: 10px; height: 10px; }

  .major-top { min-height: 400px; padding:20px 0 25px; }
  .major-top .btit { font-size: 3em; }
  .major-top .cont-txt br { display: none; }

  .prof-list { gap: 8px; }
  .prof-img { width: 35px; height: 35px; }
  .prof-info { margin-top: 5px; }

  .time-list { flex-direction: column; min-height: auto; gap:0; }

  .concept-panel {padding: 20px 20px;}
  .headline span {font-size: 2.5em;}
  .tags .tag {padding: 5px 13px;}
  .logo-top {padding: 20px 20px;}
  .symbol-panel {padding: 20px 20px; gap: 20px;}

}
