/* COMMON - 버튼 */
.btns {
  display: flex;
  color: #fff;
}
.btns-center {
  display: flex;
  justify-content: center;
}
.button-default {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
.bg-w-blue {
  background: #0097dc;
}

/* COMMON - 탭 메뉴 */
.tab-btn {
  margin-bottom: 5rem;
}
.tab-btn ul.tab {
  display: table;
  table-layout: fixed;
  width: 100%;
  /* border-collapse: collapse; */
}
.tab-btn ul.tab li {
  display: table-cell;
}

.tab-btn ul.tab li.on a {
  color: #232323;
  font-weight: 700;
  border: 1px solid #232323;
  border-bottom: none;
  background: #fff;
}
.tab-btn ul.tab li:last-child.on a {
  border-right: 1px solid #232323;
}
.tab-btn ul.tab li a {
  display: block;
  position: relative;
  color: #757575;
  font-size: 2rem;
  background: #eeeff2;
  border: 1px solid #dedede;
  border-right: none;
  border-collapse: collapse;
  padding: 1.5rem 0;
  line-height: 2.8rem;
  text-align: center;
}
.tab-btn ul.tab li:last-child a {
  border-right: 1px solid #dedede;
}
.tab-btn ul.tab li.on a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.2rem;
  background: #232323;
}
/* .tab-cont {
  display: none;
} */
/* .tab-cont.on {
  display: block;
} */

@media (max-width: 768px) {
  .tab-btn {
    overflow-x: auto;
  }
  .tab-btn ul.tab {
    table-layout: auto;
  }
  .tab-btn ul.tab li a {
    padding: 1.5rem 4rem;
    white-space: nowrap;
  }
}

/* COMMON - 아코디언 메뉴 */
.accordion-menu {
  font-family: 'Pretendard', sans-serif;
}
.menu-list .menu-item {
  margin-bottom: 1rem;
}
.menu-item .menu-title {
  position: relative;
  display: block;
  background: #232323;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 3rem;
  border-radius: 0.5rem;
  padding: 2.2rem 10rem 2.2rem 4rem;
  cursor: pointer;
  transition: 0.34s;
}
.menu-item .menu-title::after {
  content: '\ea4e';
  position: absolute;
  top: calc(50% - 1.5rem);
  right: 4rem;
  width: 4rem;
  height: 4rem;
  color: #fff;
  font-family: 'remixicon';
  font-size: 4rem;
}
.menu-item .menu-title.on {
  background: #04287e;
}
.menu-item .menu-title.on::after {
  content: '\ea78';
}
.menu-cont {
  display: none;
  margin: 5rem 0 7rem 0;
}
.menu-cont.on {
  display: block;
}

@media (max-width: 1024px) {
  .menu-item .menu-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .menu-item .menu-title {
    padding: 2.2rem 3rem 2.2rem 3rem;
  }
  .menu-item .menu-title::after {
    right: 2.4rem;
  }
}
@media (max-width: 420px) {
  .menu-item .menu-title {
    padding: 2.2rem 8rem 2.2rem 2rem;
    /* padding: 2.2rem 2rem; */
  }
  .menu-item .menu-title::after {
    right: 2rem;
  }
}

/* COMMON - circle item 배경색 */
.item01 {
  background: #0097dc !important;
}
.item02 {
  background: #1b63b5 !important;
}
.item03 {
  background: #04287e !important;
}
.item04 {
  background: #80cbed !important;
}

/* COMMON - border color */
.item01-border {
  color: #0097dc;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  border: 2px solid #0097dc;
  border-radius: 4.2rem;
}
.item02-border {
  color: #1b63b5;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  border: 2px solid #1b63b5;
  border-radius: 4.2rem;
}
.item03-border {
  color: #04287e;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  border: 2px solid #04287e;
  border-radius: 4.2rem;
}

/* COMMON - img box */
.img-box {
  display: flex;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
}
.img-box > img {
  display: inline-block;
  margin: auto;
}

@media (max-width: 768px) {
  .img-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-clip-box: content-box;
  }
  .img-box > img {
    min-width: 76.8rem;
    /* max-height: 40rem; */
  }
}

/* COMMON - box item */
.box-item-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.box-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.5rem;
  border: 1px solid #dedede;
}
.box-item:not(:last-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 2rem);
  transform: translate(-50%, -50%);
  width: 1.028rem;
  height: 1.799rem;
  background: url('/_html/images/contents/arrow01.svg') no-repeat center center / contain;
}
.box-item .title {
  display: flex;
  flex-direction: column;
  /* height: 고정 */
  background: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0 2.1rem 0 3rem;
}
.box-item .title .icon {
  display: inline-block;
  margin-bottom: 2.4rem;
}
.box-item .title strong {
  display: block;
  color: #232323;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.box-item .title.type02 strong {
  display: block;
  color: #04287e;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.box-item .title .direction {
  display: flex;
  color: #fff;
  font-size: 1.8rem;
  margin-top: 2.4rem;
}
.box-item .title .direction i {
  margin-top: 0.5rem;
}
.box-item .title .direction span {
  font-weight: 500;
  margin-left: 1rem;
}
.box-item > p {
  flex: 1;
  width: 100%;
  height: 100%;
  line-height: 2.8rem;
  letter-spacing: -0.025em;
  color: #232323;
  background: #f6f6f6;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 2.3rem 2.1rem 2.8rem 2.9rem;
}
.box-item > ul {
  flex: 1;
  padding: 3rem 3.7rem 3.2rem 4rem;
}
.box-item > ul.type02 {
  flex: 1;
  padding: 3rem;
}
.box-item > ul.type02 li {
  display: flex;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}
.box-item > ul.type02 li span:first-child {
  margin-right: 0.5rem;
}
.box-item > ul.type03 {
  flex: 1;
  background: #04287e;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 2.3rem 3rem 3rem 3rem;
}
.box-item > ul.type03 li {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  line-height: 2.8rem;
}
.box-item > ul.type03 > p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
}
.box-item > ul.type03 em {
  display: block;
  color: #80cbed;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  line-height: 2.4rem;
  padding-left: 1.9rem;
}
.box-item > ul.type03 em.white {
  color: #dedede;
}
.box-item > ul.type03 li span {
  display: inline-block;
  width: 9.1rem;
  background: #fff;
  text-align: center;
  border-radius: 1.5rem;
  margin-left: 0.4rem;
}
.box-item > ul.type03 li span a {
  color: #232323;
  font-size: 1.6rem;
  font-weight: 500;
}
.box-item > ul.type03 li span i {
  color: #0097dc;
  font-size: 2rem;
}
.box-item > ul.type03 .another {
  padding: 1.9rem 1.7rem;
  background: #fff;
  border-radius: 0.5rem;
  margin: 1.9rem 0 1.5rem;
}
.box-item > ul.type03 .another.type02 {
  display: flex;
}
.box-item > ul.type03 .another.type02 strong {
  margin-right: 4rem;
  margin-bottom: 0;
}
.box-item > ul.type03 .another strong {
  display: inline-block;
  color: #0097dc;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.box-item > ul.type03 .another .txt-bul {
  display: flex;
  flex-wrap: wrap;
}
.box-item > ul.type03 .another .txt-bul li {
  width: 100%;
  color: #232323;
  font-size: 1.6rem;
}
.box-item > ul.type03 .another .txt-bul.column li {
  width: 100%;
}
.box-item > ul.type03 .txt-bul > li + li {
  margin-top: 0;
}

@media (max-width: 1138px) {
  .box-item .title .direction {
    font-size: 1.6rem;
  }
}
@media (max-width: 955px) {
  .box-item > ul.type03 em {
    padding-left: 0;
  }
}
@media (max-width: 920px) {
  .box-item .title .direction {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
  .box-item ul.type02 {
    padding: 2rem;
  }
  .box-item > ul.type03 .another.type02 strong {
    margin-right: 2rem;
  }
}
@media (max-width: 847px) {
  .box-item > ul.type03 .another.type02 {
    display: flex;
    flex-wrap: wrap;
  }
}

/* COMMON - box item02 */
.box-item02 {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.5rem;
  border: 1px solid #dedede;
}
.box-item02 .title {
  display: flex;
  flex-direction: column;
  /* min-height: 고정 */
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0 2.9rem;
}
.box-item02 .title strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.025em;
}
.box-item02 p {
  flex: 1;
  width: 100%;
  height: 100%;
  line-height: 2.8rem;
  letter-spacing: -0.03em;
  color: #232323;
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 3.4rem 3rem 3.5rem 3.1rem;
}
.box-item02 ul {
  flex: 1;
  padding: 3.4rem 3rem 3.8rem 3rem;
}

/* COMMON - box item03 */
.box-item03 {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #dedede;
}
.box-item03 .title {
  flex-shrink: 0;
  width: 28.6rem;
  height: 100%;
  border-radius: 0.5rem;
}
.box-item03 .title strong {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.025em;
  background: #04287e;
  border-radius: 0.5rem;
  padding: 2.8rem 0 2.88rem;
}
.box-item03:not(:last-child) .title strong::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% + 1.8rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 2.75rem;
  height: 3.7rem;
  background: url('/_html/images/contents/arrow05-sm.svg') no-repeat center center / contain;
}
.box-item03 ul {
  flex: 1;
  padding: 2.8rem 4.03rem 2.88rem;
}

@media (max-width: 768px) {
  .box-item03 .title {
    width: 23rem;
  }
}
@media (max-width: 620px) {
  .box-item03 {
    display: flex;
    flex-direction: column;
  }
  .box-item03:not(:last-child)::before {
    content: '';
    display: block;
    position: absolute;
    top: calc(100% + 2rem);
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 2.75rem;
    height: 3.7rem;
    background: url('/_html/images/contents/arrow05-sm.svg') no-repeat center center / contain;
  }
  .box-item03 .title {
    width: 100%;
  }
  .box-item03 .title strong {
    height: auto;
  }
  .box-item03:not(:last-child) .title strong::before {
    display: none;
  }
}

/* COMMON - bul */
ul.bul {
}
ul.bul li {
  position: relative;
  color: #232323;
  letter-spacing: -0.025em;
  padding-left: 1.3rem;
}
ul.bul li::before {
  content: '';
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: #cccccc;
  border-radius: 50%;
}

/* COMMON - bul-sm */
ul.bul-sm li {
  position: relative;
  color: #232323;
  letter-spacing: -0.025em;
}

/* COMMON - h4 타이틀 */
.title-type01 {
  position: relative;
  color: #04287e;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding-top: 0.95rem;
  margin-bottom: 2.55rem;
}
.title-type01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3.9rem;
  height: 1px;
  background: #04287e;
}

/* COMMON - h5 타이틀 */
.imp {
  color: #1b63b5;
  font-size: 2rem;
  font-weight: 700;
}

/* COMMON - p 타이틀 */
.content-title {
  color: #232323;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* COMMON - 준비중 */
.coming {
  background-color: #f7f7f7;
  text-align: center;
  padding: 13rem 2rem 17rem;
}
.coming img {
  width: 100%;
  max-width: 41.4rem;
}

/* ITVC - 소개 > 인사말 */
.greeting {
  display: flex;
  position: relative;
  color: #232323;
  font-family: 'Pretendard', sans-serif;
}
.greeting-captain {
  flex-shrink: 0;
  width: 39.7rem;
  margin-right: 12.2rem;
}
.greeting-text {
  position: relative;
  font-weight: 400;
  padding-top: 3.7rem;
}
.greeting-text::before {
  content: '';
  position: absolute;
  right: 0;
  top: 5.4rem;
  width: 35rem;
  height: 34.964rem;
  background: url('/_html/images/contents/earth.png') no-repeat center / contain;
  z-index: -1;
}
.greeting-text .title {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 5.5rem;
}
.greeting-text .title::before,
.greeting-text .title::after {
  content: '';
  position: absolute;
  width: 5.8rem;
  height: 4rem;
}
.greeting-text .title::before {
  top: -0.5rem;
  left: -7.1rem;
  background: url('/_html/images/contents/quote_mark01.png') no-repeat center / contain;
}
.greeting-text .title::after {
  bottom: 0.9rem;
  right: -7rem;
  background: url('/_html/images/contents/quote_mark02.png') no-repeat center / contain;
}
.greeting-text .title span {
  box-shadow: inset 0 -2.2rem 0 #c0e2f7;
}
.greeting-text p {
  color: #232323;
  font-size: 1.8rem;
  text-align: justify;
  line-height: 2.8rem;
}
.greeting-text p.imp {
  font-size: 3rem;
  font-weight: 600;
  line-height: 4rem;
  text-align: left;
  margin-top: 10rem;
}
.greeting-text > p + p {
  margin-top: 3.4rem;
}
.greeting-captain-sign {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 7.2rem;
}
.greeting-captain-sign p {
  position: relative;
}
.greeting-captain-sign p::before {
  content: '';
  position: absolute;
  top: -2.1rem;
  left: 0;
  width: 20.1rem;
  height: 1px;
  background-color: #dedede;
}
.greeting-captain-sign span {
  font-size: 2.4rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .greeting-captain {
    position: absolute;
    top: 0;
    right: 0;
    width: 26rem;
    margin-right: 0;
  }
  .greeting-text {
    padding-top: 6.5rem;
  }
  .greeting-text .title::before {
    top: -6rem;
    left: 0;
  }
  .greeting-text .title::after {
    bottom: -6rem;
    left: 0;
  }
  .greeting-text p.imp {
    margin-top: 24rem;
  }
  .greeting-text::before {
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transform: translateY(-20%);
  }
}
@media (max-width: 620px) {
  .greeting-captain {
    display: none;
  }
  .greeting-text p.imp {
    margin-top: 13rem;
  }
  .greeting-text::before {
    display: none;
  }
}
@media (max-width: 422px) {
  .greeting-text p {
    text-align: left;
  }
  .greeting-text p.imp {
    line-height: 3.5rem;
  }
}
/* ITVC - 소개 > 역대 원장·단장 */
.current-director {
  display: flex;
  gap: 12rem;
}
.current-director .current-director-image img {
  display: block;
  width: 39.7rem;
}
.current-director .current-director-detail {
  flex: 1;
}
.current-director-detail .executive-card {
  width: 100%;
  border: none;
}
.current-director-detail .executive-information {
  border: 1px solid #dedede;
  border-radius: 1rem;
}
.current-director-detail .executive-profile,
.current-director-detail .executive-info {
  padding: 0;
  margin: 0 !important;
}
.current-director-detail .executive-information > strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  width: 100%;
  background: #eeeff2;
  padding: 4.5rem 4rem;
  border-radius: 1rem 1rem 0 0;
}
.current-director-detail .executive-info .link {
  flex-direction: row;
  gap: 1rem 2rem;
  margin-top: 0;
  padding: 3rem 4rem;
}
.current-director-detail .executive-info .major {
  border-top: none;
  padding-top: 5rem;
}
.current-director-detail .executive-info .major > li {
  gap: 0;
}
.current-director-detail .executive-info ul.major li + li {
  margin-top: 3rem;
}
.current-director-detail .executive-info .major > li > span {
  width: 7.5rem;
  text-align: left;
  background: #fff;
  padding: 0;
}

@media (max-width: 1024px) {
  .current-director {
    gap: 8rem;
  }
  .current-director .current-director-image img {
    width: 35rem;
  }
}
@media (max-width: 768px) {
  .current-director {
    gap: 5rem;
  }
  .current-director .current-director-image img {
    width: 32rem;
  }
}
@media (max-width: 620px) {
  .current-director {
    flex-direction: column;
    align-items: center;
  }
}

/* ITVC - 소개 > 역대 원장·단장 */
.all-director {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
}
.all-director::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #ababab;
  z-index: -2;
}
.all-director .director-card {
  position: relative;
  margin-bottom: -5.9rem;
}
.director-card .director-photo img {
  display: block;
  width: 27rem;
  margin: auto;
}
.director-card .director-info {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 64rem;
  background: #eeeff2;
  border-radius: 0.5rem;
  padding: 8.8rem 4rem 4rem;
  transform: translateY(-5.9rem);
  z-index: -1;
}
.director-card .director-info .name {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 3rem;
}
.director-card .director-info .name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 1px;
  background: #ababab;
}
.director-info .name > strong {
  color: #232323;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.director-info .name > span {
  color: #232323;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.director-info .detail {
  padding-top: 3rem;
}
.director-info .detail > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.director-info .detail > ul > li {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.director-info .position {
  color: #0097dc;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.director-info .date {
  color: #757575;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

@media (max-width: 580px) {
  .director-card {
    width: 100%;
  }
  .director-card .director-info {
    width: 100%;
  }
}

/* ITVC - 소개 > 개요 > 비젼·미션 */
.menu-cont .container {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding: 0 0 7rem 4.1rem;
}
.menu-cont .container:last-of-type {
  padding-bottom: 0;
}
.menu-cont .mission-box {
  border-bottom: none;
}
.menu-cont .container > .title {
  flex-shrink: 0;
  width: 30rem;
}
.menu-item .container .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 8.3rem;
}
.menu-cont .container .title-box > img {
  width: 5.94rem;
  height: 6rem;
}
.menu-cont .container .title h4 {
  color: #04287e;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
}
.menu-cont .container .desc {
  flex-grow: 1;
}
.menu-cont .container .desc .desc-box {
  background: #eeeff2;
  color: #232323;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 1rem;
  text-align: center;
  line-height: 3.2rem;
  padding: 3.2rem 2rem;
}
.menu-cont .container .desc-box span {
  color: #0097dc;
}
.menu-cont .vision-box,
.menu-cont .mission-box {
  padding-top: 7rem;
}
.menu-cont .desc-cell {
  position: relative;
  margin-top: 6.9rem;
  padding: 5.1rem 0;
  text-align: center;
}
.menu-cont .desc-cell .title {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -1.2rem;
  transform: translateX(-50%);
  color: #0097dc;
  font-family: 'SUIT', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  background: #fff;
  line-height: 2.6rem;
  letter-spacing: -0.01em;
  padding: 0 2.1rem;
  z-index: 1;
}
.menu-cont .cell-circle-box {
  display: flex;
  position: relative;
  margin: 0 -3rem;
}
.menu-cont .cell-circle-box::before {
  content: '';
  display: block;
  position: absolute;
  top: -5rem;
  left: 50%;
  width: calc(100% - 22.2rem);
  height: calc(100% + 10rem);
  border: 1px solid #80cbed;
  border-radius: 6.5rem;
  transform: translatex(-50%);
}
.menu-cont .cell-circle-box .circle {
  position: relative;
  width: calc(100% / 4);
  padding: 0 3rem;
  z-index: 1;
}
.menu-cont .cell-circle-box .circle:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: url('/_html/images/contents/plus.png') no-repeat 50% 50% / contain;
}
.menu-cont .cell-circle-box .circle-img {
  display: block;
  position: relative;
  text-align: center;
}
.menu-cont .cell-circle-box .circle-img::before {
  content: '';
  display: block;
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}
.menu-cont .cell-circle-box .circle-img > * {
  position: relative;
  width: 100%;
}
.menu-cont .cell-circle-box .circle-img > img {
  /* max-width: 22.2rem; */
}
.menu-cont .cell-circle-box .circle-img span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #232323;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.menu-cont .desc-img {
  display: flex;
  justify-content: center;
}
.menu-cont .desc-img > img {
  width: 73rem;
}

@media (max-width: 1640px) {
  .menu-cont .container > .title {
    flex-shrink: 0;
    width: 20rem;
  }
}
@media (max-width: 1460px) {
  .menu-cont .cell-circle-box {
    margin: 0 -2rem;
  }
  .menu-cont .cell-circle-box .circle {
    padding: 0 2rem;
  }
}
@media (max-width: 1140px) {
  .menu-cont .container {
    flex-direction: column;
    padding-left: 0;
  }
  .menu-cont .container > .title {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media (max-width: 800px) {
  .menu-cont .container > .title {
    padding: 0;
  }
  .menu-cont .desc-cell .title {
    top: -2rem;
    line-height: 1.3;
  }
  .menu-cont .cell-circle-box {
    padding-top: 1.5rem;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 647px) {
  .menu-cont .cell-circle-box {
    flex-direction: column;
  }
  .menu-cont .cell-circle-box .circle {
    width: 100%;
    padding: 3rem 0;
  }
  .menu-cont .cell-circle-box .circle-img > img {
    max-width: 22.2rem;
  }
  .menu-cont .cell-circle-box .circle-img::before {
    display: none;
  }
  .menu-cont .cell-circle-box .circle:not(:first-child)::before {
    top: -1rem;
    left: 50%;
  }
}
@media (max-width: 624px) {
  .menu-cont .cell-circle-box .circle:first-child {
    padding-top: 5rem;
  }
}
@media (max-width: 482px) {
  .menu-cont .desc-cell {
    margin-top: 12rem;
  }
  .menu-cont .desc-cell .title {
    top: -5rem;
    line-height: 1.3;
  }
}
@media (max-width: 423px) {
  .menu-cont .cell-circle-box {
    padding-top: 5rem;
  }
  .menu-cont .cell-circle-box::before {
    width: 80%;
  }
}

/* ITVC - 소개 > 개요 > 연혁 */
.history {
  position: relative;
  /* padding: 0 6.3rem 0 13.9rem; */
}
.history::before {
  content: '';
  position: absolute;
  top: 2.7rem;
  left: 50%;
  width: 1px;
  height: calc(100% - 2.7rem);
  background: #dedede;
}
.history .history-item {
  display: flex;
  position: relative;
  margin-bottom: 6.4rem;
}
.history .history-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 2.2rem;
  left: 0;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: #0097dc;
  border: 0.2rem solid #f3f4f6;
  border-radius: 50%;
  margin: auto;
}
.history .history-item::after {
  content: '';
  display: block;
  position: absolute;
  top: 2.7rem;
  left: 2.8rem;
  right: 0;
  width: 4rem;
  height: 1px;
  background: #0097dc;
  margin: auto;
  z-index: -1;
}
.history .type02::after {
  left: -2.8rem;
}
.history .history-item:last-child {
  margin-bottom: 0;
}
.history .history-img {
  display: block;
  width: 50%;
}
.history .history-item:first-of-type .history-img {
  padding-top: 6.9rem;
}
.history .history-item:first-of-type .history-img > img {
  margin-bottom: 3rem;
}
.history-list {
  width: 50%;
}
.history-list::before {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: calc(50% - 2.7rem);
  width: 5.4rem;
  height: 5.4rem;
  background: rgb(63, 105, 145, 0.1);
  border-radius: 50%;
  z-index: -1;
  animation: navi 1.8s infinite;
}

@keyframes navi {
  0% {
    opacity: 1;
    width: 5.4rem;
    height: 5.4rem;
  }

  100% {
    opacity: 0;
  }
}
.history-list.active::before {
  display: block;
}
.history-list h4 {
  color: #04287e;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 2.2rem 0;
}
.history-list ul li {
  display: flex;
  margin-bottom: 2rem;
}
.history-list ul li:last-child {
  margin-bottom: 0;
}
.history-list-year {
  flex-shrink: 0;
  width: 7.5rem;
  color: #0097dc;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  padding-right: 0.5rem;
}
.history-list-desc {
  position: relative;
  color: #232323;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  padding-left: 1.2rem;
}
.history-list-desc::before {
  content: '';
  display: block;
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: #e5ded4;
  border-radius: 50%;
}
.history .type01 .history-img {
  text-align: right;
  padding-right: 6.05rem;
}
.history .type01 .history-list {
  padding-left: 6.05rem;
}
.history .type02 {
  display: flex;
  flex-direction: row-reverse;
}
.history .type02 .history-img {
  text-align: left;
  padding-left: 6.05rem;
}
.history .type02 .history-list {
  text-align: right;
  padding-right: 6.05rem;
}
.history .type02 .history-list ul li {
  flex-direction: row-reverse;
}
.history .type02 .history-list-desc::before {
  left: calc(100% - 0.5rem);
}
.history .type02 .history-list-year {
  padding-left: 0.5rem;
  padding-right: 0;
}
.history .type02 .history-list-desc {
  padding-left: 0;
  padding-right: 1.2rem;
}

@media (max-width: 1065px) {
  .history-list ul li {
    flex-direction: column;
    align-items: flex-start;
  }
  .history .type02 .history-list ul li {
    flex-direction: column;
    align-items: end;
  }
  .history .type02 .history-list-desc::before {
    left: -1.2rem;
    transform: translateX(-50%);
  }
  .history .type02 .history-list-desc {
    padding-right: 0;
  }
}
@media (max-width: 791px) {
  .history .history-item .history-img > img {
    max-width: 100%;
  }
}
@media (max-width: 630px) {
  .history {
    padding-left: 3rem;
  }
  .history::before {
    top: 2.7rem;
    left: 3rem;
  }
  .history .history-item {
    flex-direction: column-reverse;
  }
  .history .history-item::before {
    top: 2.3rem;
    left: -3px;
    margin: 0;
  }
  .history .history-item::after {
    top: 2.8rem;
    left: -1px;
    margin: 0;
    z-index: -1;
  }
  .history .history-img {
    width: 100%;
    padding-left: 6.05rem;
    margin-top: 6rem;
  }
  .history .history-item:first-of-type .history-img {
    padding-top: 0;
  }
  .history .history-item:first-of-type .history-img > img:first-child {
    margin-bottom: 3rem;
  }
  .history .type01 .history-img {
    text-align: left;
  }
  .history-list {
    width: 100%;
  }
  .history-list::before {
    top: 0;
    left: 1px;
    transform: translateX(-50%);
  }
  .history .type02 .history-list {
    text-align: left;
    padding-left: 6.05rem;
  }
  .history .type02 .history-list ul li {
    align-items: flex-start;
  }
  .history .type02 .history-list-year {
    padding-left: 0;
  }
  .history .type02 .history-list-desc {
    padding-left: 1.2rem;
  }
  .history .type02 .history-list-desc::before {
    left: 0;
    transform: translateX(0);
  }
}

/* ITVC - 소개 > 개요 > 실적 통계 */
.statistical-chart01 > div {
  margin-bottom: 7rem;
}
.statistical-chart01 > div,
.statistical-chart02 > div,
.statistical-chart03 > div,
.statistical-chart04 > div {
  border: none;
}
.statistical-chart01 > div:last-child {
  margin-bottom: 0;
}
.statistical-chart01 .graph03 {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1641px) {
  .statistical-chart01 .graph03 > img {
    width: 48%;
    margin-right: 2%;
  }
  .statistical-chart01 .graph03 > img:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 580px) {
  .statistical-chart01 .graph03 {
    overflow-x: auto;
  }
  .statistical-chart01 .graph03 > img {
    max-height: 40rem;
    width: auto;
  }
}

/* CI */
.ci-info .logo-img {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 0.5rem;
}
.ko-logo .ko-logo-img {
  padding: 8.3rem 2rem;
}
.ko-logo .ko-logo-img > img {
  display: block;
  margin: auto;
  width: 86.478rem;
}
.ci-info .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.ci-info .btn-box .btn-download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.8rem;
  border: 1px solid #ababab;
  border-radius: 0.5rem;
  padding: 1.7rem 0;
  margin-right: 0.6rem;
  transition: 0.5s;
}
.ci-info .btn-box .btn-download:hover {
  background: #0097dc;
  border: 1px solid #0097dc;
}
.ci-info .btn-box .btn-download:hover span,
.ci-info .btn-box .btn-download:hover i {
  color: #fff;
}
.btn-box .btn-download:last-child {
  margin-right: 0;
}
.btn-box .btn-download span {
  color: #222222;
  font-size: 1.8rem;
  font-weight: 500;
  margin-right: 1rem;
}
.btn-box .btn-download i {
  color: #222222;
  font-size: 1.6rem;
}
.ci-info .en-logo {
  margin-top: 7rem;
}
.en-logo .logo-desc > p {
  color: #2b2b2b;
  font-family: 'SUIT', sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}
.en-logo .en-logo-img {
  display: flex;
  justify-content: center;
  padding: 9.1rem 2rem 7.5rem 2rem;
  margin-top: 3rem;
}
.en-logo .en-logo-img > img {
  margin-right: 4.7rem;
}
.en-logo .en-logo-img > img:last-child {
  margin-right: 0;
}
.ci-color-system {
  margin-top: 7rem;
}
.ci-color-system .ci-color-wrap {
  display: flex;
  gap: 5rem 9.8rem;
}
.ci-color-wrap .ci-color {
  width: 43%;
}
.ci-color-wrap .ci-color > img {
  width: 60.2rem;
}
.ci-color-wrap .ci-color > img:nth-child(2) {
  display: none;
}

@media (max-width: 1100px) {
  .en-logo .en-logo-img {
    flex-direction: column;
    align-items: center;
  }
  .en-logo .en-logo-img > img {
    margin-right: 0;
  }
  .en-logo .en-logo-img > img:first-child {
    width: 54.7rem;
  }
  .en-logo .en-logo-img > img:nth-child(2) {
    width: 36.2rem;
    margin-top: 7rem;
  }
}
@media (max-width: 1024px) {
  .ci-color-system .ci-color-wrap {
    flex-direction: column;
  }
  .ci-color-wrap .ci-color {
    width: 100%;
  }
  .ci-color-wrap .ci-color:first-child {
    margin-right: 0;
  }
  .ci-color-wrap .ci-color:nth-child(2) {
    /* margin-top: 7rem; */
  }
}
@media (max-width: 480px) {
  .ci-color-wrap .ci-color > img {
    width: 35rem;
  }
  .ci-color-wrap .ci-color > img:first-child {
    display: none;
  }
  .ci-color-wrap .ci-color > img:nth-child(2) {
    display: block;
  }
}
@media (max-width: 324px) {
  .ci-info .logo-img {
    padding: 7rem 3rem;
  }
  .ci-info .btn-box {
    flex-direction: column;
  }
  .ci-info .btn-box .btn-download {
    width: 100%;
    margin-right: 0;
  }
  .ci-info .btn-box .btn-download:last-child {
    margin-top: 1rem;
  }
}

/* ITVC - 소개 > 구성원 > 조직도 */
.organization {
  width: 100%;
  max-width: 100%;
  background: #eeeff2;
  color: #fff;
  padding: 7rem 0;
}
.organization-info {
  position: relative;
  width: 114.5rem;
  margin: 0 auto;
}
.organization-info::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #cccccc;
}
.organization-info > div:not(:last-child) {
  margin-top: 4rem;
}
.organization-caption,
.organization-item {
  display: block;
  position: relative;
  width: 35.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0.5rem;
  padding: 2.3rem 0;
  margin: 0 auto;
}
.organization-caption {
  background: #04287e;
}
.organization02 .organization-item {
  background: #1b63b5;
}
.organization03 .organization-item {
  background: #0097dc;
}
.organization04 .organization-item {
  background: #77839e;
}
.organization-caption::before,
.organization02 .organization-item::before,
.organization03 .organization-item::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.8rem;
  width: 2.5rem;
  height: 1.2rem;
  transform: translateX(-50%);
}
.organization-caption::before {
  background: url('/_html/images/contents/triangle01.svg') no-repeat center bottom / contain;
}
.organization02 .organization-item::before {
  background: url('/_html/images/contents/triangle02.svg') no-repeat center bottom / contain;
}
.organization03 .organization-item::before {
  background: url('/_html/images/contents/triangle03.svg') no-repeat center bottom / contain;
}
.organization04 {
  display: flex;
  justify-content: space-between;
  margin-top: 13rem;
}
.organization04 .organization-item {
  position: relative;
  margin: 0;
}
.organization04 .organization-item:not(:nth-child(2))::before {
  content: '';
  display: block;
  width: 1px;
  height: 5.8rem;
  background: #cccccc;
  position: absolute;
  left: 0;
  right: 0;
  top: -5.8rem;
  margin: 0 auto;
}
.organization04 .organization-item:last-child::before {
  height: 8.8rem;
  top: -8.8rem;
}
.organization04 .organization-item:not(:nth-child(2))::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% + 4rem);
  height: 1px;
  background: #cccccc;
}
.organization04 .organization-item:first-child::after {
  top: -5.8rem;
  left: 50%;
}
.organization04 .organization-item:last-child::after {
  top: -8.8rem;
  right: 50%;
}

@media (max-width: 1100px) {
  .organization-info {
    max-width: 100%;
  }
  .organization-caption,
  .organization-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3333%;
  }
  .organization04 .organization-item {
    margin: 0 1rem;
  }
  .organization04 .organization-item:not(:nth-child(2))::after {
    width: calc(100% + 2.1rem);
  }
}
@media (max-width: 360px) {
  .organization-info > div {
    margin-top: 4rem;
  }
  .organization-caption,
  .organization-item {
    width: 60%;
    padding: 2.3rem 2rem;
  }
  .organization04 {
    flex-direction: column;
    align-items: center;
  }
  .organization04 > div:not(:first-child) {
    margin-top: 4rem;
  }
  .organization04 .organization-item:not(:nth-child(2))::before {
    display: none;
  }
  .organization04 .organization-item:not(:nth-child(2))::after {
    display: none;
  }
}

/* ITVC - 소개 > 구성원 > 직원소개 */
.all-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.executive-card {
  width: calc(50% - 2rem);
  color: #232323;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  border: 1px solid #ddd;
  /* border-radius: 0.5rem; */
}
.executive-profile {
  display: flex;
  padding: 3rem;
}
.executive-profile .executive-photo {
  position: relative;
  width: 17rem;
  flex-shrink: 0;
}
.executive-profile .executive-photo span {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 118%;
}
.executive-profile .executive-photo span img {
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  -o-object-fit: cover;
  object-fit: cover;
  /* border-radius: 0.5rem; */
}
.executive-profile .executive-info {
  margin: 0 0 0 3rem;
  flex: 1;
}
.executive-info > strong {
  color: #000;
  font-size: 2.4rem;
  font-weight: 500;
}
.executive-info strong span {
  font-size: 1.8rem;
}
.executive-info .link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem; /* row gap, column gap*/
  margin-top: 3rem;
}
.executive-info .link a {
  display: flex;
  align-items: center;
  color: #616161;
  cursor: pointer;
}
.executive-info .link a.link-page {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  color: #0097dc;
  font-weight: 500;
  background: #eeeff2;
  border-radius: 2.1rem;
  padding: 1rem 1.7rem;
}
.executive-info .link a.link-page i {
  margin-left: 0.7rem;
}
.executive-info .link a.link-page i::before {
  font-size: 1.6rem;
}
.executive-info .link a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: #f3f5f8;
  border-radius: 50%;
  margin-right: 2rem;
}
.executive-info .link a i::before {
  color: #0556ba;
  font-size: 2.4rem;
}
.executive-info ul.task {
  margin: 4rem 0 1.95rem;
  /* padding-bottom: 1.95rem; */
}
.executive-info ul.task li.department {
  color: #0097dc;
  font-weight: 600;
  margin-bottom: 1rem;
}
.executive-info ul.major {
  padding-top: 2.15rem;
  border-top: 1px solid #dedede;
}
.executive-info ul.major strong {
  font-size: 1.8rem;
  font-weight: 700;
}
.executive-info ul.major li {
  display: flex;
  gap: 0.8rem;
}
.executive-info ul.major li + li {
  margin-top: 0.8rem;
}
.executive-info ul.major li span {
  flex-shrink: 0;
  /* width: 6.2rem; */
  height: 3.2rem;
  color: #0097dc;
  font-weight: 600;
  line-height: 3.2rem;
  padding: 0 1.5rem;
  text-align: center;
  background: #eeeff2;
  border-radius: 1.6rem;
}
.executive-info ul.major li div {
  margin-top: 0.3rem;
}
.executive-info .bul > li {
  color: #616161;
}
.executive-info .bul > li + li {
  margin-top: 1rem;
}

@media (max-width: 1180px) {
  .executive-profile .executive-info {
    margin: 0.5rem 0 0 3rem;
  }
  .executive-info .link {
    flex-direction: column;
  }
  .executive-info .link a.link-page {
    width: 11.9rem;
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 1024px) {
  .executive .tab-btn {
    overflow-x: auto;
  }
  .executive .tab-btn ul.tab {
    table-layout: auto;
  }
  .executive .tab-btn ul.tab li a {
    padding: 1.5rem 4rem;
    white-space: nowrap;
  }
  .all-departments {
    flex-direction: column;
    gap: 3rem;
  }
  .executive-card {
    width: 100%;
  }
  .executive-profile {
    padding: 2rem;
  }
  .executive-profile .executive-photo {
    width: 17rem;
  }

  .executive-info .link {
    flex-direction: row;
  }
  .executive-info .link a.link-page {
    width: auto;
    margin-top: 0;
  }
}
@media (max-width: 493px) {
  .executive-profile {
    flex-direction: column;
    padding: 3rem;
  }
  .executive-profile .executive-photo {
    width: 100%;
  }
  .executive-profile .executive-photo span {
    display: flex;
    justify-content: center;
    max-width: 100%;
    height: auto;
    padding-bottom: 0;
  }
  .executive-profile .executive-photo span img {
    position: relative;
    width: 17rem;
  }
  .executive-profile .executive-info {
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 3rem 0 0 0;
  }
}

/* ITVC - 소개 > 오시는 길 */
.direction {
}
.direction-map {
}
.direction-map .root_daum_roughmap {
  width: 100% !important;
}
.direction-map .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 60rem !important;
  border: 1px solid #dfdfdf;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.roughmap_maker_label .roughmap_lebel_text {
  width: 16.3rem !important;
  height: 4rem !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 1.6rem !important;
  text-align: center !important;
  line-height: 3rem !important;
  background-color: #04287e !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.26) !important;
  padding: 5px 8px 7px !important;
  border-radius: 2.5rem !important ;
  z-index: 10;
}
.roughmap_maker_label {
  border: none !important;
}
.roughmap_maker_label:after {
  content: '';
  background: url('/_html/images/contents/triangle04.svg') no-repeat center bottom / contain !important;
  bottom: -2.3rem !important;
  width: 4.4rem !important;
  height: 3.8rem !important;
}
.root_daum_roughmap_landing {
  overflow: visible !important;
}
.root_daum_roughmap .wrap_controllers {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(100% - 0.1rem);
  width: 100%;
  border-top: none;
}
.root_daum_roughmap .wrap_controllers.hide {
  display: block !important;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  overflow: visible;
  position: absolute;
  font-size: inherit;
  line-height: 1;
}
.root_daum_roughmap .wrap_controllers .tit_controllers img {
  margin-top: 1px;
}
.root_daum_roughmap .wrap_controllers .wrap_btn_roadview {
  top: 0 !important;
}
.direction-map .root_daum_roughmap .border1,
.direction-map .root_daum_roughmap .border2,
.direction-map .root_daum_roughmap .border3,
.direction-map .root_daum_roughmap .border4 {
  width: 0;
}
.direction-info {
  width: 100%;
  background: #eeeff2;
  border-radius: 0.5rem;
  padding: 3.2rem 0;
  margin-top: 6.2rem;
}
.direction-detail ul {
  display: flex;
}
.direction-detail ul li {
  display: flex;
  align-items: center;
  position: relative;
  width: 50%;
  color: #232323;
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 0 4.6rem;
}
.direction-detail ul li:first-child {
  border-right: 1px solid #d6d6d6;
}
.direction-detail ul li i {
  color: #0097dc;
  vertical-align: text-bottom;
  margin-right: 0.8rem;
}
.direction-detail ul li i::before {
  font-size: 2.4rem;
}
.transport-info {
  color: #232323;
  font-size: 1.8rem;
  margin-top: 2rem;
}
.transport-info-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  padding: 5rem 14rem;
}
.transport-info-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 8.3rem;
  margin-right: 20.9rem;
}
.transport-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #0097dc;
}
.transport-info-icon h5 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
.transport-info-text {
  flex-grow: 1;
}
.transport-info-text > div:not(:first-child) {
  margin-top: 2.7rem;
}
.transport-info-text > div .transport-info-text-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.campus-map {
  margin-top: 7.95rem;
}
.campus-map-info {
  padding: 2.7rem 0 5.1rem;
}
.campus-map-detail {
  position: relative;
  width: 95.6rem;
  margin: 0 auto;
}
.campus-map-detail > img:nth-child(2) {
  display: none;
}
.campus-map-detail .diagram-zoom {
  display: none;
}

@media (max-width: 1024px) {
  .transport-info-item {
    padding: 5rem 10rem;
  }
  .transport-info-icon {
    margin-right: 12rem;
  }
  .campus-map-info {
    padding: 2.7rem 2rem 5.1rem;
  }
  .campus-map-detail {
    max-width: 100%;
  }
}
@media (max-width: 935px) {
  .direction-detail ul li {
    padding: 0 3rem;
  }
}
@media (max-width: 870px) {
  .direction-detail ul li i {
    margin-right: 1.2rem;
  }
}
@media (max-width: 768px) {
  .transport-info-item {
    padding: 5rem 7rem;
  }
  .transport-info-icon {
    margin-right: 10rem;
  }
  .campus-map-info {
    padding: 2.7rem 3rem 5.1rem;
  }
  .campus-map-detail > img:first-child {
    display: none;
  }
  .campus-map-detail > img:nth-child(2) {
    display: block;
  }
}
@media (max-width: 635px) {
  .direction-detail ul {
    flex-direction: column;
    padding: 0 3rem;
  }
  .direction-detail ul li {
    width: 100%;
    padding: 0;
  }
  .direction-detail ul li:first-child {
    border-right: none;
  }
  .direction-detail ul li:not(:first-child) {
    margin-top: 1rem;
  }
}
@media (max-width: 530px) {
  .transport-info-item {
    flex-direction: column;
    padding: 5rem 3rem;
  }
  .transport-info-icon {
    margin-right: 0;
  }
  .transport-info-text {
    margin-top: 7rem;
  }
  .campus-map-detail .diagram-zoom {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }
}

/* ITVC - 지식재산 > 지식재산권 관리 > KAIST 평가제도 */
.invention {
  color: #232323;
  font-size: 1.8rem;
}
.invention-info {
  border: 1px solid #dedede;
  border-radius: 0.5rem;
  margin-top: 3rem;
}
.invention-info .invention-detail {
  padding: 4rem 6rem;
}
.invention-detail .invention-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.invention-detail .invention-item-list .invention-item {
  position: relative;
  width: calc(20% - 3.1999rem);
  max-width: 100%;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
  text-align: center;
}
.invention-item-list .invention-item:first-child {
  border: none;
}
.invention-item-list .invention-item:nth-child(6) {
  order: 10;
}
.invention-item-list .invention-item:nth-child(7) {
  order: 9;
}
.invention-item-list .invention-item:nth-child(8) {
  order: 8;
}
.invention-item-list .invention-item:nth-child(9) {
  order: 7;
}
.invention-item-list .invention-item:nth-child(10) {
  order: 6;
}
.invention-item-list .invention-item:not(:first-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 1.6rem);
  transform: translateY(-50%);
  width: 1.028rem;
  height: 1.799rem;
  background: url('/_html/images/contents/arrow01.svg') no-repeat center center / contain;
}
.invention-item-list .invention-item:nth-child(5)::after {
  top: calc(100% + 1.3rem);
  left: calc(50% - 1px);
  transform: rotate(90deg);
}
.invention-item-list .invention-item:nth-child(6)::after {
  display: none;
}
.invention-item-list .invention-item:nth-child(7)::after,
.invention-item-list .invention-item:nth-child(8)::after,
.invention-item-list .invention-item:nth-child(9)::after,
.invention-item-list .invention-item:nth-child(10)::after {
  transform: translateY(-50%) rotate(180deg);
}
.invention-item-list .invention-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.invention-item-list .invention-item span > img {
  width: 9.134rem;
}
.invention-item-list .invention-item .title {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  background: #1b63b5;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 2.3rem 1.5rem;
}
.invention-item-list .invention-item p {
  letter-spacing: -0.025em;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 2.3rem 1.5rem;
  background: #fff;
}
.research {
  color: #232323;
  margin-top: 7.95rem;
}
.research .txt-list {
  margin-top: 1.95rem;
}
.research-info {
  background: #eeeff2;
  border-radius: 0.5rem;
  margin-top: 3rem;
}
.research-detail {
  width: 86.1rem;
  margin: 0 auto;
  padding: 4rem 0;
}
.research-detail .mobile {
  display: none;
}
.research-detail .mobile .diagram-zoom {
  margin-top: 5rem;
}
.research-departments {
  display: flex;
  justify-content: space-between;
}
.research-departments > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}
.research-departments > div::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #ababab;
  z-index: -1;
}
.department-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
}
.department-name > img {
  width: 5.5rem;
}
.department-name p {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.025em;
  margin-top: 1.22rem;
}
.research-desc {
}
.research-desc .desc-item {
  width: 18.6rem;
  letter-spacing: -0.025em;
  text-align: center;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
  padding: 1.8rem 0;
}
.desc-item + div {
  margin-top: 1rem;
}
.departments1 .research-desc {
  margin-top: 5rem;
}
.departments2 > div:nth-child(2) {
  margin-top: 19rem;
}
.departments2 > div:nth-child(3) {
  margin-top: 6.5rem;
}
.departments3 .research-desc {
  margin-top: 25.5rem;
}
.departments1 .research-desc .desc-item:nth-child(2),
.departments2 > div:nth-child(2) .desc-item:nth-child(1),
.departments2 > div:nth-child(3) .desc-item:nth-child(2),
.departments3 .research-desc .desc-item {
  position: relative;
}
.departments1 .research-desc .desc-item:nth-child(2)::after,
.departments2 > div:nth-child(2) .desc-item:nth-child(1)::after,
.departments2 > div:nth-child(3) .desc-item:nth-child(2)::after,
.departments3 .research-desc .desc-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: calc(100% + 5rem);
  height: 2rem;
  background: url('/_html/images/contents/arrow02.svg') no-repeat center / contain;
}
.departments2 > div:nth-child(3) .desc-item:nth-child(2)::after,
.departments3 .research-desc .desc-item::after {
  left: calc(-100% - 5rem);
  transform: translateY(calc(-50%)) rotate(180deg);
}
.invention-deliberate {
  margin-top: 7.95rem;
}
.deliberate-info {
  display: flex;
  justify-content: center;
  gap: 0 10rem;
  width: 100%;
  padding: 4rem 2rem;
  margin-top: 2.85rem;
}
.deliberate-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 20.2rem;
  height: 20.2rem;
  border-radius: 50%;
}
.deliberate-item p {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.025em;
}
.deliberate-item span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.deliberate-info .deliberate-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 5rem);
  transform: translate(-50%, -50%);
  width: 1.028rem;
  height: 1.799rem;
  background: url('/_html/images/contents/arrow01.svg') no-repeat center center / contain;
}
.invention-deliberate .tbl {
  margin-top: 4rem;
}
.invention-deliberate .txt-list {
  margin-top: 3.86rem;
}

.cost-info {
  display: flex;
  justify-content: center;
  gap: 0 10rem;
  width: 100%;
  padding: 4rem 2rem;
  margin-top: 2.85rem;
}
.cost-info .deliberate-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 20.2rem;
  height: 20.2rem;
  border-radius: 50%;
}
.cost-info .deliberate-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 5rem);
  transform: translate(-50%, -50%);
  width: 1.028rem;
  height: 1.799rem;
  background: url('/_html/images/contents/arrow01.svg') no-repeat center center / contain;
}

.overseas-patent-info {
  width: 100%;
  margin-top: 4rem;
  background: #eeeff2;
  border-radius: 0.5rem;
}
.overseas-patent-detail {
  border: none;
  padding: 5.7rem 4rem 7.3rem;
}
.overseas-patent-detail > img {
  display: inline-block;
  margin: auto;
}
.overseas-invention-degree {
  margin-top: 7.95rem;
}

@media (max-width: 1100px) {
  .invention-info .invention-detail {
    padding: 4rem 2rem;
  }
  .cost-info {
    gap: 6rem;
  }
  .cost-info .deliberate-item:not(:last-child)::after {
    left: calc(100% + 3rem);
  }
}
@media (max-width: 970px) {
  .cost-info .deliberate-item {
    width: 17rem;
    height: 17rem;
    padding: 1rem;
  }
  .cost-info {
    gap: 4rem;
  }
  .cost-info .deliberate-item:not(:last-child)::after {
    left: calc(100% + 2rem);
  }
}
@media (max-width: 837px) {
  .research-detail {
    max-width: 100%;
  }
  .deliberate-info {
    gap: 6rem;
  }
  .deliberate-info .deliberate-item:not(:last-child)::after {
    left: calc(100% + 3rem);
  }
  .invention-item-list .invention-item .title {
    font-size: 1.8rem;
    padding: 2.3rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .invention-detail .invention-item-list {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .invention-detail .invention-item-list::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: #dedede;
  }
  .invention-detail .invention-item-list .invention-item {
    width: 70%;
  }
  .invention-item-list .invention-item:first-child {
    display: none;
  }
  .invention-item-list .invention-item:not(:first-child)::after {
    display: none;
  }
  .invention-item-list .invention-item .title {
    padding: 1rem 0;
  }
  .invention-item-list .invention-item p {
    padding: 1rem 0;
  }
  .invention-item-list .invention-item:nth-child(6) {
    order: 6;
  }
  .invention-item-list .invention-item:nth-child(7) {
    order: 7;
  }
  .invention-item-list .invention-item:nth-child(8) {
    order: 8;
  }
  .invention-item-list .invention-item:nth-child(9) {
    order: 9;
  }
  .invention-item-list .invention-item:nth-child(10) {
    order: 10;
  }
  .research-detail {
    padding: 4rem 2rem;
  }
  .research-detail .mobile {
    display: block;
  }
  .research-departments {
    display: none;
  }
}
@media (max-width: 700px) {
  .cost-info {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
  .cost-info .deliberate-item {
    width: 22.2rem;
    height: 22.2rem;
    padding: 0;
  }
  .cost-info .deliberate-item:not(:last-child)::after {
    top: calc(100% + 3rem);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 670px) {
  .deliberate-info {
    flex-direction: column;
    align-items: center;
  }
  .deliberate-info .deliberate-item:not(:last-child)::after {
    top: calc(100% + 3rem);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* ITVC - 지식재산 > 지식재산권 관리 > 전담특허사무소 */
.patent-office {
  overflow-x: auto;
  overflow-y: hidden;
}
.patent-office .tbl {
  top: 0.7rem;
  height: auto;
  width: 253.8rem;
}
.patent-office,
.patent-office .tbl {
  transform: rotateX(180deg);
}
.patent-office .tbl th,
.patent-office .tbl td {
  padding: 1.5rem 1.2rem 1.3rem;
}
::-webkit-scrollbar-track {
  background: #eeeff2 !important;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  /* Handle */
  background: #80cbed !important;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  /* Handle on hover */
  background: #555;
}

/* ITVC - 지식재산 > 지식재산권 관리 > 기타 참고 자료 */
.roadmap-image {
  padding: 5rem;
  /* margin-top: 7.96rem; */
}
.paystub {
  margin-top: 7.96rem;
}
.paystub-image {
  margin-top: 8rem;
}
.paystub-image.img-box {
  border: none;
}
.pct {
  color: #232323;
}
.paystub h5.imp,
.pct h5.imp {
  margin-bottom: 1.95rem;
}
.paystub h5.imp:not(:first-of-type),
.pct h5.imp:not(:first-of-type) {
  margin-top: 4rem;
}
.pct-introduce strong.mid-title {
  all: inherit;
  font-weight: 700;
  margin: 1.95rem 0 1.5rem;
}
.ko-pct-list {
  background: #eeeff2;
  border-radius: 0.5rem;
  padding: 2.8rem 3.1rem;
  margin-top: 2rem;
}
.ko-pct li {
  color: #757575;
}
.ko-pct strong {
  color: #232323;
  font-weight: 700;
  margin-right: 1.5rem;
}
.pct-pros-cons,
.pct-procedure,
.pct-comparison,
.pct-strategy {
  margin-top: 7.96rem;
}
.pct-cons {
  margin-top: 5rem;
}
.pct-procedure-image,
.pct-comparison-image,
.pct-strategy-image {
  display: flex;
  padding: 5.02rem 5rem;
}
.pct-strategy-image {
  flex-direction: column;
}
.pct-procedure-image > img,
.pct-comparison-image > img,
.pct-strategy-image > img {
  display: inline-block;
  margin: auto;
}

.pct-strategy-image {
  border: none;
}
.pct-strategy-image {
  background: #eeeff2;
  border-radius: 0.5rem;
}
.pct-strategy-detail {
  background: #fff;
  border-radius: 0.5rem;
  margin-top: 5rem;
  padding: 3rem 5.3rem 3rem 5.6rem;
}
.pct-strategy-detail strong {
  font-weight: 700;
}
.pct-strategy-list {
  margin-top: 1.6rem;
}
.pct-strategy-list li {
  position: relative;
  color: #757575;
  font-size: 1.6rem;
  padding-left: 1.3rem;
}
.pct-strategy-list li::before {
  content: '';
  flex-shrink: 0;
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: #757575;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .pct-strategy-image {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-clip-box: content-box;
  }
  .pct-strategy-image > img,
  .pct-strategy-detail {
    display: inline-block;
    min-width: 100rem;
  }
}

/* ITVC - 지식재산 > 기술이전 > 기술이전 개요 */
.technical-transfer {
  margin-top: 0.96rem;
}
.college-law {
  margin-top: 7.96rem;
}
.college-law .txt-list,
.professor-benefit .txt-list {
  margin-top: 1.95rem;
}
.college-law .imp:nth-of-type(2) {
  margin-top: 3.8rem;
}
.professor-benefit {
  margin-top: 7.54rem;
}
.how-transfer {
  margin-top: 8.96rem;
}
.what-transfer {
  margin-top: 8.146rem;
}

@media (max-width: 383px) {
  .how-write .title img {
    margin-top: -4.5rem;
  }
}

/* ITVC - 지식재산 > 기술이전 > 기술이전 절차 */
/* ITVC - 지식재산 > 기술이전 > 발명자 보상 */
.transfer-procedure {
}
.transfer-procedure > .title,
.how-write > .title,
.allotment-fees > .title {
  display: flex;
}
.transfer-procedure > .title img,
.how-write > .title img,
.allotment-fees > .title img {
  margin-right: 0.98rem;
}
.transfer-procedure > .title strong,
.how-write > .title strong,
.allotment-fees > .title strong {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
.transfer-procedure .order-item {
  background: #eeeff2;
  border-radius: 0.5rem;
  margin-top: 3.4rem;
  padding: 4rem 8rem;
}
.transfer-procedure .box-item-container {
  row-gap: 4rem;
  margin: 0 -2.2rem;
}
.transfer-procedure .box-item-container .box-item {
  position: relative;
  width: calc(100% / 3 - 4.4rem);
  margin: 0 2.2rem;
}
.transfer-procedure .box-item:nth-child(4) {
  order: 6;
}
.transfer-procedure .box-item:nth-child(5) {
  order: 5;
}
.transfer-procedure .box-item:nth-child(6) {
  order: 4;
}
.transfer-procedure .box-item:not(:last-child)::before {
  left: calc(100% + 2.4rem);
  transform: translate(-50%, -50%);
}
.transfer-procedure .box-item:nth-child(3)::before {
  left: calc(50%);
  top: calc(100% + 2.2rem);
  transform: translate(-50%, -50%) rotate(90deg);
}
.transfer-procedure .box-item:nth-child(4)::before,
.transfer-procedure .box-item:nth-child(5)::before {
  left: -2.4rem;
  transform: translate(-50%, -50%) rotate(-180deg);
}
.transfer-procedure .box-item .title {
  justify-content: space-between;
  gap: 2.4rem;
  height: 13.4rem;
  padding: 2.65rem 3rem 2.3rem 3rem;
}
.transfer-procedure .box-item .icon {
  margin-bottom: 0;
}
.transfer-procedure .box-item .icon.icon01 img {
  width: 3.5rem;
}
.transfer-procedure .box-item .icon.icon02 img {
  width: 3.684rem;
}
.transfer-procedure .box-item .icon.icon03 img {
  width: 3.771rem;
}
.transfer-procedure .box-item .icon.icon04 img {
  width: 3.758rem;
}
.transfer-procedure .box-item .icon.icon05 img {
  width: 3.563rem;
}
.transfer-procedure .box-item .icon.icon06 img {
  width: 3.5rem;
}
.transfer-procedure .box-item::after {
  display: block;
  position: absolute;
  top: 1.8rem;
  right: 3rem;
  color: #0097dc;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.transfer-procedure .box-item:first-child::after {
  content: '01';
}
.transfer-procedure .box-item:nth-child(2)::after {
  content: '02';
}
.transfer-procedure .box-item:nth-child(3)::after {
  content: '03';
}
.transfer-procedure .box-item:nth-child(4)::after {
  content: '04';
}
.transfer-procedure .box-item:nth-child(5)::after {
  content: '05';
}
.transfer-procedure .box-item:nth-child(6)::after {
  content: '06';
}
.letter-of-request,
.conclusion-contract,
.technical-fees,
.distribution-fees,
.maintenance,
.incentive-tax {
  margin-top: 7.96rem;
}
.transfer-procedure {
  margin-top: 7rem;
  /* border-bottom: 2px solid #232323;
  padding-bottom: 7.05rem; */
}
.how-write {
  padding: 7.05rem 0;
  border-bottom: 2px solid #232323;
}
.how-write .title-type01 {
  margin-top: 5.96rem;
}
.allotment-fees {
  /* padding-top: 7.05rem; */
}
.allotment-fees .box-item-container {
  row-gap: 3.7rem;
  margin-top: 0;
}
.distribute-time {
  margin-top: 7.99rem;
}

@media (max-width: 1439px) {
  .transfer-procedure .order-item {
    padding: 4rem 4rem;
  }
}
@media (max-width: 1100px) {
  .transfer-procedure .order-item {
    padding: 4rem 2rem;
  }
  .transfer-procedure .box-item-container {
    row-gap: 3rem;
    margin: 0 -1.5rem;
  }
  .transfer-procedure .box-item-container .box-item {
    width: calc(100% / 3 - 3rem);
    margin: 0 1.5rem;
  }
  .transfer-procedure .box-item:not(:last-child)::before {
    left: calc(100% + 1.7rem);
  }
  .transfer-procedure .box-item:nth-child(3)::before {
    top: calc(100% + 1.5rem);
    left: calc(50%);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .transfer-procedure .box-item:nth-child(4)::before,
  .transfer-procedure .box-item:nth-child(5)::before {
    left: -1.7rem;
  }
}
@media (max-width: 768px) {
  .transfer-procedure .order-item {
    padding: 8rem 4rem;
  }
  .transfer-procedure .box-item-container {
    row-gap: 5rem;
    margin: 0;
  }
  .transfer-procedure .box-item-container .box-item {
    width: 100%;
    margin: 0;
  }
  .transfer-procedure .box-item:nth-child(4) {
    order: 4;
  }
  .transfer-procedure .box-item:nth-child(5) {
    order: 5;
  }
  .transfer-procedure .box-item:nth-child(6) {
    order: 6;
  }
  .transfer-procedure .box-item:not(:last-child)::before {
    left: 50%;
    top: calc(100% + 2.5rem);
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 620px) {
  .allotment-fees .box-item-container {
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .transfer-procedure .order-item {
    padding: 4rem 2rem;
  }
}

/* ITVC - 지식재산 > 기술이전 > NDA, MTA 및 해외기술이전 */
.nda {
  margin-top: 0.96rem;
}
.mta,
.technical-transfer-abroad {
  margin-top: 7.96rem;
}
.mta .imp,
.technical-transfer-abroad .imp {
  margin-bottom: 1.95rem;
}
.mta .txt-list:first-of-type,
.technical-transfer-abroad .txt-list {
  margin-bottom: 3.85rem;
}
.mta .tbl-scroll {
  margin: 3rem 0 2.95rem;
}

/* ITVC - 지식재산 > 기술이전 > 교원 창업 */
.foundation {
  margin-top: 0.96rem;
}
.foundation .box-item-container {
  justify-content: flex-end;
  row-gap: 5.3rem;
  margin: 0 -2.65rem;
}
.foundation .box-item {
  position: relative;
  width: calc(100% / 4 - 5.3rem);
  margin: 0 2.65rem;
}
.foundation .box-item:not(:last-child)::before {
  left: calc(100% + 2.8rem);
}
.foundation .box-item .title {
  /* min-height: 15.9rem; */
  height: 70%;
  padding: 1.8rem 2rem 2.4rem 3rem;
}
.foundation .box-item .number {
  display: block;
  top: 1.8rem;
  right: 2.4rem;
  color: #0097dc;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.foundation .box-item strong {
  color: #04287e;
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
}
.foundation .box-item .desc {
  color: #232323;
  letter-spacing: -0.025em;
}
.foundation .box-item > p {
  flex-grow: 1;
  color: #fff;
  font-size: 1.8rem;
  background: #04287e;
  padding: 2.2rem 3rem;
}
.foundation .box-item:nth-child(5) {
  order: 7;
}
.foundation .box-item:nth-child(6) {
  order: 6;
}
.foundation .box-item:nth-child(7) {
  order: 5;
}
.foundation .box-item:nth-child(4)::before {
  left: 50%;
  top: calc(100% + 2.8rem);
  transform: translate(-50%, -50%) rotate(90deg);
}
.foundation .box-item:nth-child(5)::before,
.foundation .box-item:nth-child(6)::before {
  left: -2.8rem;
  transform: translateX(-50%) rotate(180deg);
}
.foundation-guideline {
  margin-top: 7.96rem;
}
.foundation-guideline h5.imp {
  margin-bottom: 1.95rem;
}
.foundation-guideline h5.imp:not(:first-of-type) {
  margin-top: 3.85rem;
}

@media (max-width: 1080px) {
  .foundation .box-item-container {
    margin: 0 -1.5rem;
  }
  .foundation .box-item {
    position: relative;
    width: calc(100% / 4 - 3rem);
    margin: 0 1.5rem;
  }
  .foundation .box-item:not(:last-child)::before {
    left: calc(100% + 1.7rem);
  }
  .foundation .box-item:nth-child(4)::before {
    left: 50%;
    top: calc(100% + 2.8rem);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .foundation .box-item:nth-child(5)::before,
  .foundation .box-item:nth-child(6)::before {
    left: -1.7rem;
    transform: translateX(-50%) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .foundation .box-item-container {
    flex-direction: column;
    margin: 0;
  }
  .foundation .box-item {
    width: 100%;
    margin: 0;
  }
  .foundation .box-item:not(:last-child)::before {
    left: 50%;
    top: calc(100% + 2.8rem);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .foundation .box-item:nth-child(5) {
    order: 5;
  }
  .foundation .box-item:nth-child(6) {
    order: 6;
  }
  .foundation .box-item:nth-child(7) {
    order: 7;
  }
}

/* ITVC - 기술사업화 > 기술사업화 */
.tech-biz {
}
.tech-biz-image {
  border-radius: 0.5rem;
}
.tech-biz-image > img {
  width: 100%;
  height: 36rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.tech-biz-info {
  margin-top: 7.96rem;
}
.tech-biz-info h4:not(:first-of-type) {
  margin-top: 7.96rem;
}
.tech-biz-info .tbl {
  margin-top: 3.05rem;
}
.tech-biz-info .txt-bul {
  padding-left: 1.75rem;
}
.tech-biz-info .box-item-container {
  margin-top: 3.07rem;
}
.tech-biz-info .box-item {
  width: calc(100% / 5 - 2.96rem);
}
.tech-biz-info .box-item .title {
  min-height: 16.8rem;
  padding: 2.5rem 0.5rem 1rem 3rem;
}
.tech-biz-info .box-item:not(:last-child) {
  margin-right: 3.7rem;
}
.promotion-biz-info {
  margin-top: 7.96rem;
}
.promotion-biz h4:not(:first-of-type) {
  margin-top: 7.96rem;
}
.promotion-biz h5:not(:first-of-type) {
  margin-top: 3.8rem;
}
.promotion-biz-info h5.imp {
  margin-bottom: 1.95rem;
}
.promotion-biz .txt-list li strong {
  font-weight: 700;
  margin-right: 1rem;
}
.promotion-biz-info .txt-list li span {
  color: #0097dc;
}
.promotion-biz-info .tbl {
  margin-top: 3.05rem;
}
.promotion-biz-info .txt-bul {
  padding-left: 1.75rem;
}
.promotion-biz-image {
  display: flex;
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
  padding: 6.5rem 2rem 7.8rem;
  margin-top: 7rem;
}
.promotion-biz-image > img {
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .tech-biz-image > img {
    height: 30rem;
  }
  .tech-biz-info .txt-bul {
    padding-left: 0;
  }
  .promotion-biz-image {
    overflow-x: auto;
  }
  .promotion-biz-image > img {
    max-width: none;
    max-height: 49.3rem;
  }
  .promotion-biz-info .txt-bul {
    padding-left: 0;
  }
  .tech-biz-info .box-item {
    width: calc(100% / 3 - 3.7rem);
  }
  .tech-biz-info .box-item:nth-of-type(4),
  .tech-biz-info .box-item:nth-of-type(5) {
    margin-top: 3.7rem;
  }
}
@media (max-width: 535px) {
  .tech-biz-image > img {
    height: 25rem;
  }
  .tech-biz .tech-biz-image > img {
    object-position: center right;
  }
  .promotion-biz .tech-biz-image > img {
    object-position: center left;
  }
  .tech-biz-info .box-item {
    width: calc(100% / 2 - 3.7rem);
  }
  .tech-biz-info .box-item:not(:first-child, :nth-child(2)) {
    margin-top: 3.7rem;
  }
}
@media (max-width: 400px) {
  .tech-biz-info .box-item-container {
    flex-direction: column;
  }
  .tech-biz-info .box-item {
    width: 100%;
  }
  .tech-biz-info .box-item:not(:first-child) {
    margin-top: 6rem;
  }
  .tech-biz-info .box-item:not(:last-child)::before {
    top: calc(100% + 2.5rem);
    left: calc(50%);
    transform: translate(-50%) rotate(90deg);
  }
}

/* ITVC - 기술사업화 > 기술마케팅 */
.kaist-tech-fair {
}
.kaist-tech-fair-image {
  width: 100%;
  height: 36.1rem;
  background: url('/_html/images/contents/tech-fair01.png') center center / cover;
  border-radius: 0.5rem;
  padding: 0 2rem;
}
.kaist-tech-fair-abroad .kaist-tech-fair-image {
  background: url('/_html/images/contents/tech-fair02.png') center center / cover;
}
.kaist-tech-fair-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 117.1rem;
  height: 100%;
  color: #fff;
  font-weight: 700;
  line-height: 3.6rem;
  margin: 0 auto;
}
.kaist-tech-fair-info.column {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.kaist-tech-fair-info .title {
  font-size: 2.4rem;
}
.kaist-tech-fair-info .title strong {
  font-size: 4.5rem;
  margin-bottom: 1.6rem;
}
.kaist-tech-fair-info .title strong em {
  color: #0097dc;
}
.kaist-tech-fair-info .detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2rem;
}
.kaist-tech-fair-info.column .detail {
  margin-top: 3rem;
}
.kaist-tech-fair-info .detail li {
  display: flex;
  align-items: baseline;
}
.kaist-tech-fair-info .detail li + li {
  margin-top: 3rem;
}
.kaist-tech-fair-info .detail span {
  display: inline-block;
}
.kaist-tech-fair-info .detail span:first-child {
  display: inline-block;
  flex-shrink: 0;
  width: 8.1rem;
  height: 4rem;
  text-align: center;
  background: #0097dc;
  border-radius: 2.3rem;
  margin-right: 2rem;
}
.kaist-tech-fair-info .detail span:nth-child(2) {
  font-size: 2.4rem;
}
.kaist-tech-fair-info .detail span:nth-child(2) em {
  font-size: 1.8rem;
  font-weight: 500;
}
.kaist-tech-fair-info.column .detail span:nth-child(2) em {
  font-size: 2.4rem;
  font-weight: 700;
}
.kaist-tech-fair-outline {
  margin-top: 5.96rem;
}
.kaist-tech-fair-outline ul.txt-list li {
  display: flex;
}
.kaist-tech-fair-outline ul.txt-list li span:first-child {
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.kaist-tech-fair-content,
.kaist-tech-fair-qna,
.kaist-tech-fair-date {
  margin-top: 7.96rem;
}
.kaist-tech-fair .box-item-container {
  margin: 0 -2rem;
}
.kaist-tech-fair .box-item {
  width: calc(100% / 3 - 4rem);
  margin: 0 2rem;
}
.kaist-tech-fair-date .box-item {
  width: calc(100% / 2 - 4rem);
  margin: 0 2rem;
}
.kaist-tech-fair .box-item:not(:last-child)::before {
  display: none;
}

.kaist-tech-fair .box-item .title {
  justify-content: center;
  height: 14.1rem;
  padding: 3rem;
}
.kaist-tech-fair .box-item .title-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kaist-tech-fair .box-item .title-top strong {
  display: block;
  color: #fff;
  font-size: 3rem;
}
.kaist-tech-fair .box-item .title-top span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: -0.025em;
}
.kaist-tech-fair-qna .txt-list {
  margin-top: 1.55rem;
}
.kaist-tech-fair .btns {
  margin-top: 7rem;
}
.kaist-tech-fair .btns .button-default {
  width: 32.5rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 1.7rem 2rem;
}
.kaist-tech-fair .btns .button-default span {
  margin-right: 1rem;
}
.event-image {
  width: 100%;
  height: 40rem;
  background: url('/_html/images/contents/ces-bg01.png') center center / cover;
}
.event-info {
  display: flex;
  align-items: center;
  width: 82.2rem;
  height: 100%;
  margin: 0 auto;
  padding: 12rem 2rem 12rem;
}
.event-info .logo {
  width: 17.7rem;
  flex-shrink: 0;
  margin-right: 9.5rem;
}
.event-info .event-detail {
  flex: 1;
  position: relative;
  color: #fff;
}
.event-info .event-detail::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}
.event-info .event-detail strong {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
}
.event-info .event-detail p {
  font-size: 1.8rem;
}
.itvc-role,
.kaist-result,
.kaist-image,
.kaist-booth-position {
  margin-top: 7.96rem;
}
.itvc-role .itvc-image {
  margin-top: 3.05rem;
}
.ces2023-outline .tbl,
.kaist-result .tbl,
.ces2022-outline .tbl,
.ces2020-outline .tbl {
  margin-top: 3rem;
}
.kaist-result .txt-list {
  margin-top: 3rem;
}
.kaist-image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 6.1rem 1.6rem;
  position: relative;
}
.kaist-image-gallery::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #dddddd;
}
.kaist-image-gallery > img {
  width: calc(100% / 4 - 1.2rem);
}
.ces2023-info .kaist-image-gallery::before {
  top: 32%;
}
.ces2023-info .kaist-image-gallery::after {
  content: '';
  position: absolute;
  top: 68%;
  width: 100%;
  height: 1px;
  background: #dddddd;
}
/* ces2024 추가 */

.ces2024-info .tbl-scroll {
  margin-top: 3.05rem;
}
.ces2024-info .tbl-scroll + p {
  color: #757575;
  font-size: 1.8rem;
  letter-spacing: -0.025rem;
  margin-top: 2.4rem;
}

.ces2024-info .txt-list > li > ul > li:before {
  content: '';
}
.ces2024-info .btns {
  margin-top: 5rem;
}
.ces2024-info .btns .button-default {
  width: 27rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 1.7rem 2rem;
}
.ces2024-info .btns .button-default span {
  margin-right: 1rem;
}
.ces2024-info .kaist-booth-position {
  margin-bottom: 7.05rem;
}
.ces2024-info .btn-download {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ababab;
  border-radius: 0.5rem;
  padding: 1.1rem 1.4rem 0.8rem;
}
.ces2024-info .btn-download i {
  color: #222;
  font-size: 16px;
  padding-left: 0.8rem;
}
.ces2024-info .border-box {
  padding: 6rem 4rem;
}
.ces2024-info .border-box img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1290px) {
  .ces2024-info .tbl-scroll {
    overflow-x: auto;
  }
  .ces2024-info .tbl-scroll .tbl {
    min-width: 130rem;
  }
  .ces2024-info .tbl-scroll colgroup col:first-child {
    width: 8%;
  }
  .ces2024-info .tbl-scroll colgroup col:last-child {
    width: 15%;
  }
  .ces2024-info .btn-download,
  .ces2024-info .btn-download i {
    font-size: 15px;
  }
}

@media (max-width: 1270px) {
  .ces2023-outline .tbl col:first-child {
    width: 10%;
  }
  .ces2022-outline .tbl col:first-child {
    width: 10%;
  }
  .ces2020-outline .tbl col:first-child {
    width: 10%;
  }
}
@media (max-width: 1138px) {
  .kaist-tech-fair-info {
    max-width: 100%;
  }
  .kaist-tech-fair-info .title strong {
    font-size: 4rem;
  }
}
@media (max-width: 1100px) {
  .kaist-tech-fair .box-item-container {
    margin: 0 -1rem;
  }
  .kaist-tech-fair .box-item {
    width: calc(100% / 3 - 2rem);
    margin: 0 1rem;
  }
  .kaist-tech-fair-date .box-item {
    width: calc(100% / 2 - 2rem);
  }
  .kaist-tech-fair .box-item .title-top strong {
    font-size: 2.5rem;
  }
  .kaist-tech-fair .box-item .title-top span {
    font-size: 2.5rem;
  }
}
@media (max-width: 920px) {
  .kaist-tech-fair .box-item .title {
    padding: 2rem;
  }
  .kaist-tech-fair .box-item .title-top strong {
    font-size: 2.2rem;
  }
  .kaist-tech-fair .box-item .title-top span {
    font-size: 2.2rem;
  }
}
@media (max-width: 800px) {
  .kaist-tech-fair-info.column .detail li + li {
    margin-top: 1.5rem;
  }
  .kaist-tech-fair-info .detail {
    font-size: 1.8rem;
  }
  .kaist-tech-fair-info .detail span:first-child {
    width: 6.1rem;
    height: 3.5rem;
  }
  .kaist-tech-fair-info.column .detail span:nth-child(2) {
    font-size: 2rem;
  }
  .kaist-tech-fair-info.column .detail span:nth-child(2) em {
    font-size: 2rem;
  }
  .kaist-tech-fair .box-item-container {
    margin: 0 -0.5rem;
  }
  .kaist-tech-fair .box-item {
    width: calc(100% / 3 - 1rem);
    margin: 0 0.5rem;
  }
  .kaist-tech-fair-date .box-item {
    width: calc(100% / 2 - 2rem);
    margin: 0 1rem;
  }
  .event-info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .kaist-tech-fair-info {
    flex-direction: column;
    justify-content: center;
  }
  .kaist-tech-fair-info .detail {
    margin-top: 3rem;
  }
  .kaist-tech-fair-info .detail li + li {
    margin-top: 1rem;
  }
  .kaist-tech-fair-info .title {
    font-size: 2rem;
  }
  .kaist-tech-fair-info .title strong {
    font-size: 3.5rem;
  }
  .kaist-tech-fair-info .detail {
    font-size: 1.8rem;
  }
  .kaist-tech-fair-info .detail span:nth-child(2) {
    font-size: 2rem;
  }
  .kaist-tech-fair-info .detail span:nth-child(2) em {
    font-size: 1.6rem;
  }
  .ces .tab-btn {
    overflow-x: auto;
  }
  .ces .tab-btn ul.tab {
    table-layout: auto;
  }
  .ces .tab-btn ul.tab li a {
    width: 100%;
  }
  .kaist-image-gallery {
    gap: 2rem;
  }
  .kaist-image-gallery > img {
    width: calc(50% - 1rem);
  }
  .kaist-image-gallery::before,
  .kaist-image-gallery::after {
    display: none;
  }
}
@media (max-width: 700px) {
  .kaist-tech-fair .box-item-container {
    row-gap: 5rem;
    margin: 0;
  }
  .kaist-tech-fair .box-item {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 575px) {
}
@media (max-width: 535px) {
  .event-info {
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 4rem;
  }
  .event-info .logo {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .event-info .event-detail::before {
    display: none;
  }
  .event-info .event-detail {
    flex: none;
  }
}
@media (max-width: 507px) {
  .kaist-tech-fair-abroad .kaist-tech-fair-image {
    height: 48rem;
  }
  .kaist-tech-fair-info.column .detail {
    margin-top: 2rem;
  }
}
@media (max-width: 420px) {
  .event-image {
    height: 50rem;
  }
}
@media (max-width: 388px) {
}

/* ITVC - 기술사업화 > 창업지원 */
.campus-biz-info h4 {
  margin-top: 7.96rem;
}
.campus-biz-info .box-item-container {
  margin-top: 7rem;
}
.campus-biz-info .box-item {
  position: relative;
  width: calc(100% / 4 - 3.99rem);
}
.campus-biz-info .box-item:not(:last-child) {
  margin-right: 5.3rem;
}
.campus-biz-info .box-item:not(:last-child)::before {
  left: calc(100% + 2.8rem);
}
.campus-biz-info .box-item::after {
  display: block;
  position: absolute;
  top: 1.8rem;
  right: 2.4rem;
  color: #0097dc;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.campus-biz-info .box-item:first-child::after {
  content: '01';
}
.campus-biz-info .box-item:nth-child(2)::after {
  content: '02';
}
.campus-biz-info .box-item:nth-child(3)::after {
  content: '03';
}
.campus-biz-info .box-item:last-child::after {
  content: '04';
}
.campus-biz-info .box-item .title {
  min-height: 13.5rem;
  padding: 2.53rem 0.5rem 1rem 3rem;
}
.campus-biz-info .box-item .title strong {
  color: #04287e;
  font-size: 2rem;
}
.campus-biz-info .box-item p {
  min-height: 9.7rem;
  color: #fff;
  background: #04287e;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 2.3rem 1.6rem 2.2rem 3rem;
}
@media (max-width: 768px) {
  .campus-biz-info .box-item {
    width: calc(100% / 2 - 5.3rem);
  }
  .campus-biz-info .box-item:not(:first-child, :nth-child(2)) {
    margin-top: 3rem;
  }
}
@media (max-width: 406px) {
  .campus-biz-info .box-item-container {
    flex-direction: column;
  }
  .campus-biz-info .box-item {
    width: 100%;
  }
  .campus-biz-info .box-item:not(:first-child) {
    margin-top: 6rem;
  }
  .campus-biz-info .box-item:not(:last-child)::before {
    top: calc(100% + 2.5rem);
    left: calc(50%);
    transform: translate(-50%) rotate(90deg);
  }
}

/* ITVC - 산학협력 > 장기자문프로그램 */
.long-term-program {
}
.program-procedure {
  position: relative;
  padding: 0 4rem;
}
.program-procedure strong {
  display: block;
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  border-radius: 4.1rem;
  text-align: center;
  padding: 2.3rem 2rem;
  margin: 0 auto;
}
.program-procedure strong::before {
  content: '';
  position: absolute;
  width: 17.6rem;
  height: 5.4rem;
  background: url('/_html/images/contents/arrow03.svg') no-repeat center / cover;
}
.program-procedure .item03 {
  width: 40.2rem;
  margin-top: -1.9rem;
}
.program-procedure .item03::before {
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
}
.program-procedure .item01 {
  width: 112.3rem;
  margin: 9.4rem auto -4.1rem;
}
.program-procedure .item01::before {
  top: -2rem;
  left: 50%;
  transform: translate(-50%, -100%);
}
.program-procedure-image {
  margin-top: 7.9rem;
}
.program-procedure-image > img {
  display: block;
  margin: 0 auto;
}
.program-procedure .diagram-zoom {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.program-order {
  margin-top: 22.1rem;
}
.program-order .box-item-container {
  position: relative;
}
.program-order .box-item-container::before,
.program-order .box-item-container::after {
  content: '';
  position: absolute;
  width: 29.5rem;
  height: 8rem;
}
.program-order .box-item-container::before {
  bottom: 100%;
  left: 11.9rem;
  background: url('/_html/images/contents/cooperation02.svg') no-repeat center / contain;
}
.program-order .box-item-container::after {
  bottom: -7.85rem;
  left: 11.9rem;
  background: url('/_html/images/contents/cooperation03.svg') no-repeat center / contain;
}
.program-order .box-item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 5 - 3.04rem);
}
.program-order .box-item:not(:last-child) {
  margin-right: 3.8rem;
}
.program-order .box-item .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 8.4rem;
}
.program-order .box-item .title .icon {
  margin-bottom: 0;
  margin-right: 1.8rem;
}
.program-step-image {
  padding: 6rem 4rem;
  margin-top: 18.1rem;
}
.program-step-image > img {
  display: block;
  margin: auto;
}
.program-step-image .diagram-zoom {
  display: none;
}
@media (max-width: 1284px) {
  .program-order .box-item {
    width: calc(100% / 3 - 3.8rem);
  }
  .program-order .box-item:nth-child(4),
  .program-order .box-item:nth-child(5) {
    margin-top: 10rem;
  }
  .program-order .box-item-container::before {
    bottom: 100%;
    left: 20%;
  }
  .program-order .box-item-container::after {
    bottom: calc(50% - 2rem);
    left: 20%;
  }
}
@media (max-width: 1071px) {
  .program-procedure strong {
    font-size: 2.5rem;
    padding: 1.5rem 2rem;
  }
  .program-procedure-image {
    max-width: 100%;
  }
  .program-procedure .item01 {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .program-procedure:hover::before {
    content: '';
    position: absolute;
    top: -1.9rem;
    left: -0.1rem;
    width: calc(100% + 0.2rem);
    height: calc(100% + 6rem);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    cursor: pointer;
    z-index: 1;
  }
  .program-procedure strong {
    font-size: 2rem;
  }
  .program-procedure:hover .diagram-zoom {
    display: block;
  }
  .program-order {
    margin-top: 17rem;
  }
  .program-order .box-item-container {
    flex-direction: column;
    align-items: center;
  }
  .program-order .box-item {
    width: 50%;
  }
  .program-order .box-item:not(:last-child) {
    margin-right: 0;
  }
  .program-order .box-item:not(:last-child)::before {
    top: calc(100% + 1.6rem);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .program-order .box-item-container::before,
  .program-order .box-item-container::after {
    top: 4%;
    width: 8rem;
    height: 29.5rem;
  }
  .program-order .box-item-container::before {
    left: 15%;
    transform: translateX(-50%);
    background: url('/_html/images/contents/cooperation02-2.svg') no-repeat center / contain;
  }
  .program-order .box-item-container::after {
    left: 85%;
    transform: translateX(-50%);
    background: url('/_html/images/contents/cooperation03-2.svg') no-repeat center / contain;
  }

  .program-order .box-item:not(:first-child) {
    margin-top: 4.5rem;
  }
  .program-step-image {
    margin-top: 13rem;
  }
  .program-step-image .diagram-zoom {
    display: block;
    text-align: center;
    margin-top: 5rem;
  }
}
@media (max-width: 535px) {
  .program-procedure strong {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
  .program-procedure .item03 {
    width: 60%;
  }
}

/* ITVC - 산학협력 > KAIST 창업기업 투자 */
.dcm-title {
  display: flex;
}
.dcm-title img {
  display: block;
  margin-right: 0.98rem;
}
.dcm-title strong {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
.dcm-image {
  border-radius: 0.5rem;
  margin-top: 4.4rem;
}
.dcm-image > img {
  width: 100%;
  height: 36rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.dcm-meeting-program {
  margin-top: 7.96rem;
}
.dcm .box-item-container {
  margin-top: 7rem;
}
.dcm .box-item {
  width: calc(100% / 3 - 3rem);
}
.dcm .box-item:not(:last-child)::before {
  left: calc(100% + 2.4rem);
}
.dcm .box-item:not(:last-child) {
  margin-right: 4.5rem;
}
.dcm .box-item .title {
  justify-content: center;
  min-height: 8.2rem;
  background: #04287e;
  padding: 2rem 2.1rem 2rem 4rem;
}
.dcm .box-item .title strong {
  color: #fff;
  font-size: 2rem;
}
.dcm .box-item .title strong span {
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .dcm-image > img {
    height: 30rem;
  }
  .dcm .box-item-container {
    flex-direction: column;
  }
  .dcm .box-item {
    width: 100%;
  }
  .dcm .box-item:not(:first-child) {
    margin-top: 4.5rem;
  }
  .dcm .box-item:not(:last-child) {
    margin-right: 0;
  }
  .dcm .box-item:not(:last-child)::before {
    top: calc(100% + 1.6rem);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 538px) {
  .dcm-title img {
    margin-top: -4.5rem;
  }
}
@media (max-width: 535px) {
  .dcm-image > img {
    height: 25rem;
    object-position: center center;
  }
}
@media (max-width: 326px) {
  .dcm-title img {
    margin-top: -9.5rem;
  }
}

/* ITVC - 산학협력 > 교육·인력양성 */
.g-core h5.imp {
  margin-bottom: 1.95rem;
}
.g-core-image {
  margin-top: 7rem;
  padding: 6.5rem 2rem;
}
.g-core-image img {
  display: block;
  margin: auto;
}
.g-core-image strong {
  display: block;
  color: #232323;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.g-core-image .diagram-zoom {
  display: none;
  margin-top: 5rem;
}
.g-core-introduce,
.g-core-content {
  margin-top: 7.96rem;
}
.g-core-content h5.imp:nth-of-type(2) {
  margin-top: 3.85rem;
}
.g-core .box-item-container {
}
.g-core .box-item02:not(:last-child) {
  margin-right: 0;
}
.g-core .box-item02 .title {
  justify-content: center;
  height: 8.2rem;
}
.g-core .box-item-container:nth-of-type(1) {
  margin: 7rem -2.65rem;
}
.g-core .box-item-container:nth-of-type(1) .box-item02 {
  margin: 0 2.65rem;
  width: calc(100% / 4 - 5.3rem);
}
.g-core .box-item-container:nth-of-type(2) {
  width: 100%;
  padding: 7rem 8rem;
}
.g-core .box-item-container:nth-of-type(2) .box {
  display: flex;
  flex-direction: column;
}
.g-core .box-item-container:nth-of-type(2) .box {
  width: calc(100% / 3 - 3.08rem);
}
.g-core .box-item-container:nth-of-type(2) .box:not(:last-child) {
  margin-right: 4.6rem;
}
.g-core .box-item-container:nth-of-type(2) .box-item02 {
  flex-grow: 1;
  width: 100%;
}
.g-core .box-item-container:nth-of-type(2) .box-item02 .title {
  min-height: 7rem;
}
.g-core .box .box-bottom {
  text-align: center;
  /* margin-top: 1.9rem; */
}
.g-core .box .box-bottom .arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10.2rem;
}
.g-core .box:nth-of-type(1) .box-bottom .arrow img {
  display: block;
  margin: 0 auto;
}
.g-core .box:nth-of-type(1) .box-bottom .arrow img,
.g-core .box:nth-of-type(3) .box-bottom .arrow img {
  width: 3.7rem;
  height: 2.75rem;
}
.g-core .box:nth-of-type(2) .box-bottom .arrow img {
  width: 17.6rem;
  height: 4.3rem;
}
.g-core .box .box-bottom p {
  color: #232323;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 1.55rem;
}

.g-core .box .box-bottom strong {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8.4rem;
  padding: 0 2rem;
}
.g-core .box:nth-of-type(2) .box-bottom {
  margin-top: 0;
}
.g-core .box:nth-of-type(2) .box-bottom p {
  margin-top: 0;
}
.g-core-system-image {
  margin-top: 7rem;
  padding: 7rem 2rem 8.3rem;
}
.finance-education {
  color: #232323;
}
.finance-edu-introduce > .title,
.finance-edu-content > .title,
.finance-edu-process > .title {
  display: flex;
}
.finance-edu-introduce > .title img,
.finance-edu-content > .title img,
.finance-edu-process > .title img {
  display: block;
  margin-right: 0.98rem;
}
.finance-edu-introduce > .title strong,
.finance-edu-content > .title strong,
.finance-edu-process > .title strong {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
.finance-edu-image {
  border-radius: 0.5rem;
  margin-top: 5rem;
}
.finance-edu-image > img {
  width: 100%;
  height: 36rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.finance-edu-detail {
  margin-top: 3.5rem;
}
.finance-edu-detail strong {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.9rem;
}
.finance-edu-content {
  margin-top: 10rem;
}
.finance-edu-content .finance-edu-vision {
  margin-top: 5.96rem;
}
.vision-container {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  margin-top: 4.05rem;
}
.finance-edu-vision .contents-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10.8rem;
}
.contents-container > div {
  width: calc(50% - 5.4rem);
}
.contents-container .image-box > img {
  width: 64.6rem;
}
.contents-container .content-box strong {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4.5rem;
  margin-bottom: 2.3rem;
}
.contents-container .content-box h5.imp {
  margin-bottom: 1.9rem;
}
.finance-edu-content .key-words {
  margin-top: 7rem;
}
.finance-edu-content .box-item-container {
  margin: 4.05rem -2.25rem 0;
}
.finance-edu-content .box-item-container .box-item02 {
  width: calc(100% / 3 - 4.5rem);
  margin: 0 2.25rem;
}
.finance-edu-content .box-item-container .box-item02 .title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 8.2rem;
  padding: 2rem 0;
}
.finance-edu-content .box-item-container .box-item02 p {
  padding: 3rem 4rem;
}
.finance-edu-process {
  margin-top: 7rem;
}
.finance-edu-process > div:nth-child(2) {
  margin-top: 4.46rem;
}
.finance-edu-process > div:not(:first-child, :nth-child(2)) {
  margin-top: 8.01rem;
}
.education-date .tbl {
  margin-top: 3.05rem;
}
.education-tel .txt-list li {
  display: flex;
  gap: 3rem;
}
.education-tel .txt-list li i {
  color: #0097dc;
  font-size: 2rem;
}

@media (max-width: 1453px) {
  .finance-edu-content .box-item-container {
    margin: 4.05rem -1.5rem 0;
  }
  .finance-edu-content .box-item-container .box-item02 {
    width: calc(100% / 3 - 3rem);
    margin: 0 1.5rem;
  }
}
@media (max-width: 1240px) {
  .finance-edu-vision .contents-container {
    gap: 5rem;
  }
  .contents-container > div {
    width: calc(50% - 2.5rem);
  }
}
@media (max-width: 1024px) {
  .g-core .box-item-container:nth-of-type(1) {
    margin: 7rem -1rem;
  }
  .g-core .box-item-container:nth-of-type(1) .box-item02 {
    margin: 0 1rem;
    width: calc(100% / 4 - 2rem);
  }
  .g-core .box-item-container:nth-of-type(2) {
    padding: 7rem 4rem;
  }
  .finance-edu-vision .contents-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .contents-container > div {
    width: 100%;
  }
  .contents-container:nth-child(2) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .g-core-image .diagram-zoom {
    display: block;
    text-align: center;
  }
  .g-core .box-item-container:nth-of-type(1) {
    margin: 7rem -1rem;
    row-gap: 2rem;
  }
  .g-core .box-item-container:nth-of-type(1) .box-item02 {
    margin: 0 1rem;
    width: calc(50% - 2rem);
  }
  .g-core .box-item02:not(:first-child, :nth-child(2)) {
    margin-top: 4.6rem;
  }
  .g-core .box-item02:not(:last-child) {
    margin-right: 0;
  }
  .finance-edu-image > img {
    height: 30rem;
  }
  .finance-edu-content .box-item-container {
    flex-direction: column;
    row-gap: 4.5rem;
    margin: 4.05rem 0 0;
  }
  .finance-edu-content .box-item-container .box-item02 {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 673px) {
  .g-core .box-item-container:nth-of-type(2) {
    padding: 7rem 4rem;
  }
  .g-core .box-item-container:nth-of-type(2) .box {
    width: 100%;
  }
  .g-core .box-item-container:nth-of-type(2) .box:not(:first-child) {
    margin-top: 5rem;
  }
  .g-core .box-item-container:nth-of-type(2) .box:not(:last-child) {
    margin-right: 0;
    padding-bottom: 5rem;
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 644px) {
  .education-tel .txt-list li {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (max-width: 535px) {
  .finance-edu-image > img {
    height: 25rem;
  }
}

/* ITVC - 산학협력 > 출자기업 */
.investment-company {
  color: #232323;
}
.investment-company > .title {
  display: flex;
}
.investment-company > .title img {
  margin-right: 0.98rem;
}
.investment-company > .title strong {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
.investnment-company-image {
  margin-top: 4.4rem;
  border-radius: 0.5rem;
}
.investnment-company-image > img {
  height: 36rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.investment-info {
  margin-top: 7rem;
}
.investment-company-content,
.affiliated-content,
.lab-company {
  margin-top: 7.96rem;
}
.investment-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 5.1rem 5rem;
}
.investment-item {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  position: relative;
  width: calc(100% / 4 - 3.75rem);
  min-height: 21rem;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
  padding: 1.8rem 1.3rem 1.8rem 3rem;
}
.investment-item::before,
.investment-item:nth-of-type(4)::after,
.investment-item:nth-of-type(8)::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.028rem;
  height: 1.799rem;
  background: url('/_html/images/contents/arrow01.svg') no-repeat center center / contain;
}
.investment-item::before {
  top: 50%;
  left: calc(100% + 2.2rem);
  transform: translateY(-50%);
}
.investment-item:last-child:before {
  display: none;
}
.investment-item:nth-of-type(4)::after,
.investment-item:nth-of-type(8)::after {
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.investment-item span {
  color: #0097dc;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: -0.025em;
}
.investment-item strong {
  color: #04287e;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.investment-item p {
  line-height: 2.8rem;
  letter-spacing: -0.025em;
}
.investment-item:nth-of-type(5) {
  order: 8;
}
.investment-item:nth-of-type(6) {
  order: 7;
}
.investment-item:nth-of-type(7) {
  order: 6;
}
.investment-item:nth-of-type(8) {
  order: 5;
}
.investment-item:nth-of-type(9) {
  order: 9;
}
.investment-item:nth-of-type(10) {
  order: 10;
}
.investment-item:nth-of-type(11) {
  order: 11;
}
.investment-item:nth-of-type(12) {
  order: 12;
}
.investment-item:nth-of-type(6)::before,
.investment-item:nth-of-type(7)::before,
.investment-item:nth-of-type(8)::before {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
  .investnment-company-image > img {
    height: 30rem;
  }
  .investment-detail {
    flex-direction: column;
  }
  .investment-item {
    width: 100%;
  }
  .investment-item:nth-of-type(4)::after,
  .investment-item:nth-of-type(8)::after {
    display: none;
  }
  .investment-item::before {
    top: calc(100% + 2rem);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .investment-item:nth-of-type(6)::before,
  .investment-item:nth-of-type(7)::before,
  .investment-item:nth-of-type(8)::before {
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 614px) {
  .investment-company > .title img {
    margin-top: -4.5rem;
  }
}
@media (max-width: 535px) {
  .investnment-company-image > img {
    height: 25rem;
  }
}
@media (max-width: 380px) {
  .investment-company > .title img {
    margin-top: -9.5rem;
  }
}

/* 이메일무단수집거부 */
.email-wrap {
  padding: 7rem 4rem;
  border: 1px solid #ddd;
  text-align: center;
}
.email-icon {
  display: flex;
  justify-content: center;

  align-items: center;
  width: 14.6rem;
  height: 14.6rem;
  margin: 0 auto 4rem;
  border-radius: 50%;
  border-radius: 50%;
  background-color: #004497;
}
.email-title {
  margin-bottom: 2.4rem;
  font-size: 3.8rem;
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.2;
}
.email-text {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

/* 20240701 ITVC 슬림화 작업으로 인한 css 추가 */
.p {
  color: #232323;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 140%;
}
.strong {
  display: block;
  color: #232323;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt100 {
  margin-top: 10rem !important;
}
.txt-title {
  position: relative;
  padding-left: 2.78rem;
  margin-bottom: 4rem;
}
.txt-title::before {
  content: '';
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 1.8rem;
  height: 2.3rem;
  background: url(/_html/images/contents/arrow04.svg) no-repeat center / cover;
}
.txt-title > strong {
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
.bg-container {
  background: #eeeff2;
  padding: 2.7rem 3.1rem;
}
.bg-container .list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.bg-container .list > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.bg-container .list > li strong {
  color: #232323;
  font-size: 1.8rem;
  font-weight: 600;
}
.bg-container .list > li p {
  color: #757575;
  font-size: 1.8rem;
  font-weight: 400;
}
.border-container {
  padding: 5.3rem 7rem;
  border: 1px solid #dedede;
  border-radius: 5px;
}
span.note {
  display: block;
  color: #0097dc;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: right;
}
.patent {
  overflow-x: auto;
  overflow-y: clip;
  transform: rotateX(180deg);
  border-top: 1px solid #333;
}
.patent-office.new {
  width: 253.8rem;
  transform: rotateX(180deg);
  overflow-x: visible;
  overflow-y: clip;
}
.patent-office.new .tbl {
  width: 100%;
  transform: rotateX(0deg);
}
.patent-office.new .tbl td a {
  cursor: pointer;
}
.ptms-ip .box-item-container {
  width: 100%;
  gap: 4rem;
}
.ptms-ip .box-item02 {
  width: calc(100% / 2 - 4rem * 1 / 2);
}
.ptms-ip .box-item02 .title {
  justify-content: center;
  height: 6.4rem;
}
.ptms-ip .box-item02 .title strong {
  text-align: left;
}
.tlo-agenda .investment-detail {
  gap: 4rem;
}
.tlo-agenda .investment-item {
  row-gap: 1.5rem;
  width: calc(100% / 3 - 4rem * 2 / 3);
  padding: 1.6rem 3rem;
}
.tlo-agenda .investment-item:nth-of-type(5) {
  order: 5;
}
.tlo-agenda .investment-item:nth-of-type(6) {
  order: 6;
}
.tlo-agenda .investment-item::before,
.tlo-agenda .investment-item::after {
  display: none;
}
.tlo-agenda .investment-item > span {
  color: #dedede;
}
.tlo-agenda .investment-item .txt-list > li > ul {
  padding-left: 2px;
  margin-top: 0.8rem;
}
.tlo-agenda .investment-item .txt-list > li > ul > li:before {
  content: '- ';
}
.tlo-agenda .investment-item .txt-list > li > ul > li + li {
  margin-top: 0.4rem;
}
.tlo-agenda .investment-item .txt-list > li > span {
  color: #232323;
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
}
.tlo-agenda .img-box.patent2 {
  padding: 5rem;
}
.tlo-agenda .box-item-container {
  gap: 2.4rem;
}
.tlo-agenda .box-item02 {
  width: calc(100% / 5 - 2.4rem * 4 / 5);
}
.tlo-agenda .box-item02 .title {
  height: 6.8rem;
  justify-content: center;
  font-size: 2rem;
}
.tlo-agenda .box-item02 > p {
  padding: 2.4rem;
  text-align: center;
}
.tlo-agenda .border-container {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
.tlo-agenda .border-container .info-title {
  color: #232323;
  font-size: 3rem;
  font-weight: 700;
}
.tlo-agenda .border-container .img img {
  display: block;
  width: 62.4rem;
}
.tlo-agenda .border-container .info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tlo-agenda .border-container .info-list > li {
  border-radius: 5px;
  background: #eeeff2;
  padding: 1.5rem 2rem;
}
.tlo-agenda .border-container .info-list > li em {
  display: block;
  color: #232323;
  font-size: 1.8rem;
  font-weight: 700;
}
.tlo-agenda .border-container .info-list > li em.blue {
  color: #0097dc;
}
.tlo-agenda .border-container .info-list > li > ul {
  margin-top: 1rem;
}
.ilp-agenda .imp {
  margin-bottom: 1.5rem;
}
.ilp-agenda .box-item .title {
  min-height: 6.4rem;
}
.ilp-agenda .dcm .box-item {
  width: calc(100% / 2 - 4.5rem * 1 / 2);
}
.ilp-agenda .dcm .box-item:not(:last-child)::before {
  left: calc(100% + 2.6rem);
}
.ilp-agenda .dcm .box-item .bul li + li {
  margin-top: 0.8rem;
}
.ilp-agenda .program-order {
  margin-top: 16.8rem;
  padding-bottom: 3.2rem;
}

@media (max-width: 1024px) {
  .tlo-agenda .investment-item {
    width: calc(100% / 2 - 4rem * 1 / 2);
  }
  .tlo-agenda .box-item02 {
    width: calc(100% / 3 - 2.4rem * 2 / 3);
  }
  .tlo-agenda .border-container {
    flex-direction: column;
    align-items: center;
  }
  .tlo-agenda .border-container .info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .tlo-agenda .investment-item {
    width: calc(100%);
  }
  .tlo-agenda .border-container {
    padding: 5rem;
  }
  .ilp-agenda .dcm .box-item {
    width: 100%;
  }
  .ilp-agenda .dcm .box-item:not(:last-child)::before {
    left: 50%;
  }
}
@media (max-width: 580px) {
  .ptms-ip .box-item-container {
    flex-direction: column;
  }
  .ptms-ip .box-item02 {
    width: calc(100%);
  }
  .tlo-agenda .box-item02 {
    width: calc(100% / 2 - 2.4rem * 1 / 2);
  }
  .tlo-agenda .border-container {
    padding: 5rem 3rem;
  }
}
@media (max-width: 380px) {
  .tlo-agenda .box-item02 {
    width: calc(100%);
  }
}
