@import url("../../css/reset.css");
@import url("https://hangeul.pstatic.net/hangeul_static/css/nanum-square-neo.css");

/*
font-family: 'NanumSquareNeoLight';
font-family: 'NanumSquareNeo';
font-family: 'NanumSquareNeoBold';
font-family: 'NanumSquareNeoExtraBold';
font-family: 'NanumSquareNeoHeavy';
*/

@font-face {
  font-family: "Pretendard";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

body,
html {
  overflow-x: hidden;
  font-family: "Pretendard", sans-serif;
  margin: 0;
  padding: 0;
  /* scroll-behavior: smooth;  */  /* 부드러운 스크롤 */
}

.only-pc {
  display: block !important;
}
.only-mo {
  display: none !important;
}

/* blind */
.blind {
  overflow: hidden !important;
  border: 0 !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main {
  position: relative; /* 부모 요소를 relative로 설정 */
  text-align: center; /* 버튼 가운데 정렬 */
}
.main img {
  width: 100%; /* 이미지 반응형 설정 */
  display: block;
}

/* button */
.btn-group {
  position: absolute;
  top: 88%;
  left: 36%;
  display: flex;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 212px;
  height: 57px;
  font-size: 18px;
  letter-spacing: -0.54px;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
}
.btn.arrow {
  position: relative;
}
.btn.arrow:after {
  content:'';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.btn-grad {
  display: flex;
  align-items: center;
  width: 450px;
  height: 55px;
  border-radius: 30px;
  background-image: linear-gradient(104deg, #bb46f9 0%, #8c2fff 50%, #0081ff 100%);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.72px;
  color: #fff;
  text-align: center;
}
.btn-grad:hover {
  background-image: linear-gradient(104deg, #bb46f9 10%, #8d63ff 50%, #0081ff 100%);
}

.btn-grad span {
  display: block; /* block 또는 inline-block 사용 가능 */
  text-align: center; /* 가로 중앙 정렬 */
  width: 100%; /* 부모 너비를 따라가도록 설정 */
}

.btn-navy {
  display: flex;
  align-items: center;
  width: 272px;
  height: 68px;
  border-radius: 10px;
  background-color: #536898;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.72px;
  color: #fff;
}
.btn-navy:hover {
  background-color: #7d91bf;
}



.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,.3);
  border-radius: 37px;
  z-index: 999;
  transition: all 2s;
  font-size: 17px;
  width: 926px;
  height:60px;
  border: 2px solid transparent;
  background-image: linear-gradient(rgb(131, 131, 131), rgb(131, 131, 131)),
  linear-gradient(to right, #bb46f9 0%,  #0081ff 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.tab.active {
  display: flex;
  top: 2%;
  bottom: 10px;
}

.tab li{
  background-color: #323232;
  border-radius: 29px;
  margin-right: 15px;
}
.tab li:last-child{
  margin-right: 0;
}

.tab li:hover,
.tab li.active {
  border-radius: 29px;
  background-image: linear-gradient(106deg, #bb46f9 10%, #8c2fff 40%, #1875f9 90%);
  background-color: transparent;
}

.tab li a {
  display: inline-block;
  width: 167px;
  height: 39px;
  font-weight: 400;
  color: #fff;
  border-radius: 37px;
  text-align: center;
  line-height: 39px;
}

/* wrap */
.wrap {
  position: relative;
}

/* inner */
.inner {
  width: 1100px;
  margin: 0 auto;
}

/* scrollTop */
#scrollTop {
  display: inline-block;
  position: fixed;
  right: 40px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  background-image: url("../images/top.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 999;
}

/* toggle-bar */
.toggle-wrap {
  margin-top: 60px;
}
@keyframes slide {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.toggle-bar {
  overflow: hidden;
  position: relative;
  padding: 40px 20px 35px 20px;
  border-bottom: 1px solid #e3e3e3;
  cursor: pointer;
}
.toggle-bar:nth-of-type(1) {
  border-top: 1px solid #e3e3e3;
}
.toggle-bar.open {
  border-top: 1px solid #505050;
}
.toggle-bar h4 {
  font-size: 20px;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.toggle-bar h4:before {
  content: "Q.";
  margin-right: 18px;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: #000;
}
.toggle-bar h4:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #939393;
  border-right: 2px solid #939393;
  transform: rotate(45deg);
  transition: all 1s;
}
.toggle-bar.open h4:after {
  transform: rotate(225deg);
}
.toggle-bar .detail {
  position: absolute;
  margin-top: 40px;
  padding: 30px;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.3s, transform 0.3s;
  background-color: #f9fbfd;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid #eee;
}
.toggle-bar.open .detail {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  animation: slide 1s forwards;
  animation: slide 1s;
}
.toggle-bar .detail p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  font-size: 18px;
  letter-spacing: -0.54px;
  align-items: baseline;
  color: #666;
}
.toggle-bar .detail p:before {
  content: "A.";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.72px;
  color: #666;
}
.toggle-bar .detail p span {
  line-height: 1.43;
  letter-spacing: -0.21px;
}

.toggle-bar .detail p span a {
  font-weight: bold;
}

.toggle-bar .detail p span strong {
  color: #ff0000;
}


/* notice */
.section.notice {
  padding: 60px 0;
  background-image: url(../images/bg-notice.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section.notice dt {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: -0.54px;
}
.section.notice dt::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("../images/icon-notice.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section.notice dd {
  position: relative;
  padding-left: 13px;
  color: #fff;
}
.section.notice dd:not(:last-of-type) {
  margin-bottom: 10px;
}
.section.notice dd::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}

/* sub-title */
.sub-title p {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-weight: bold;
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 24px;
  letter-spacing: -0.72px;
  color: #9360fe;
}
.sub-title p:after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  margin: 15px 0;
  background-color: #9360fe;
}
.sub-title.icube p {
  color: #536998;
}
.sub-title.icube p:after {
  background-color: #536998;
}
.sub-title h4 {
  text-align: center;
  font-weight: bold;
  font-size: 44px;
  letter-spacing: -1.32px;
  color: #131314;
}
.sub-title span {
  display: block;
  margin-top: 20px;
  text-align: center;
  letter-spacing: -0.75px;
}

/* program */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bg-program {
  position: relative;
  background-image: url(../images/bg-program.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-program::before {
  content:'';
  display: inline-block;
  position: absolute;
  top: -12px;
  left: -165px;
  width: 480px;
  height: 480px;
  background-image: url(../images/img-program-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-program::after {
  content:'';
  display: inline-block;
  position: absolute;
  right: 38px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  background-image: url(../images/img-program-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-program.icube {
  background-image: url(../images/bg-program-icube.png);
}
.bg-program.icube:before {
  top: -88px;
  left: auto;
  right: -250px;
  width: 550px;
  height: 550px;
  background-image: url(../images/img-program-3.png);
}
.bg-program.icube:after {
  top: 340px;
  right: auto;
  bottom: auto;
  left: -137px;
  width: 400px;
  height: 400px;
  background-image: url(../images/img-program-4.png);
}
.program-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 85px;
}
.program-list {
  padding: 40px 22px;
  height: 308px;
  box-sizing: border-box;
  border-radius: 15px;
}
.program-list:nth-child(1) {
  background-color: #EDF0FF;
}
.program-list:nth-child(2) {
  background-color: #EAF4FF;
}
.program-list:nth-child(1) p {
  color: #9360fe;
}
.program-list:nth-child(2) p {
  color: #4da6ff;
}
.program-list.icube:nth-child(1),
.program-list.icube:nth-child(2) {
  background-color: #fff;
}
.program-list.icube p {
  color: #536898;
}
.program-list p {
  display: flex;
  justify-content: space-between;
  padding-right: 13px;
  margin-bottom: 7px;
  text-align: right;
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 18px;
  letter-spacing: -0.36px;
}
.program-list p:before {
  content:'';
  display: inline-block;
  width: 75px;
  height: 75px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.program-list:nth-child(1) p:before {
  background-image: url(../images/icon-program-ai.png);
}
.program-list:nth-child(2) p:before {
  background-image: url(../images/icon-program-a10.png);
}
.program-list:nth-child(1).icube p:before {
  background-image: url(../images/icon-program-ai-icube.png);
}
.program-list:nth-child(2).icube p:before {
  background-image: url(../images/icon-program-icube.png);
}
.program-list dl {
  padding: 0 13px;
}
.program-list dt {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: -0.48px;
  color: #000;
}
.program-list dd {
  position: relative;
  padding-left: 13px;
  font-size: 18px;
  letter-spacing: -0.63px;
  line-height: 1.56;
  color:rgba(0, 0, 0, 0.6);
}
.program-list dd::before {
  content:'';
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.6);
}
.program-dl {
  margin-top: 80px;
  margin-bottom: 30px;
}
.program-dl dt {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: -0.45px;
  color: #111;
}
.program-dl dd {
  position: relative;
  padding-left: 13px;
  font-size: 18px;
  letter-spacing: -0.45px;
  color: #6e6e6e;
}
.program-dl dd:before {
  content:'';
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #6e6e6e;
}

/* table */
.table-wrap {
  overflow: hidden;
  margin-top: 80px;
  border-radius: 15px;
}
.table-wrap .thead {
  padding: 20px 0;
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: #fff;
}
.table-row {
  display: grid;
  align-items: center;
  justify-items: center;
}
.table-wrap .tbody .table-row:not(:last-child){
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.table-wrap .tbody .th {
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 20px;
  letter-spacing: -0.4px;
}
.thead .table-row {
  grid-template-columns: 276px 240px 150px auto;
}
.tbody .table-row {
  grid-template-columns: 276px auto;
}
.tbody .table-row .td-wrap {
  display: grid;
  grid-template-columns: 240px 150px auto;
  width: 100%;
}
.table-row .td {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 35px 0;
  box-sizing: border-box;
}
.table-row .td ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.table-row.rowspan.two .th {
  grid-row-start: 1;
  grid-row-end: 3;
}
.table-row.rowspan.two .td-wrap:nth-of-type(2) .td:nth-child(1),
.table-row.rowspan.two .td-wrap:nth-of-type(2) .td:nth-child(2),
.table-row.rowspan.two .td-wrap:nth-of-type(2) .td:nth-child(3) {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

/* table icube */
.table-wrap.icube {
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.1);
}
.table-wrap.icube::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
}
.table-wrap.icube .thead {
  background-color: #566B9A;
}
.table-wrap.icube .tbody .th {
  color: #536898;
}
.table-wrap.icube .tbody .table-row {
  position: relative;
}
.table-wrap.icube .tbody .table-row:before {
  content:'세미나 종료';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 15px);
  color: #fff;
  font-weight: bold;
  background-color: rgba(0,0,0,.6);
  transform: translate(-50%, -50%);
  border-radius: 15px;
}

/* table a10 */
.table-wrap.a10 {
  margin-bottom: 30px;
  box-shadow: -1px 1px 8px 5px rgba(0, 0, 0, 0.1);
}
.table-wrap.a10 .thead {
  background-image: linear-gradient(93deg, #923af8 0%, #537afc 80%, #1db0ff 126%);
}
.table-wrap.a10 .location {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.table-wrap.a10 .location ul {
  display: flex;
  min-width: 212px;
}
.table-wrap.a10 .location ul li {
  font-size: 20px;
  letter-spacing: 35px;
  letter-spacing: -0.4px;
  color: #000;
}
.table-wrap.a10 .location strong {
  margin-left: 10px;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: -0.36px;
  color: #9360fe;
  padding: 2px 10px;
  border-radius: 4px;
  background-color: #F4EFFF;
}
.table-wrap.a10 .tbody .th {
  color: #9360fe;
}

/* bg-icube */
.bg-icube {
  background-color: #f7f8fc;
}
.bg-icube .btn-group {
  margin-top: 80px;
}

@media screen and (max-width: 1100px) {
  .inner {
    width: 100%;
    box-sizing: border-box;
  }

  /* footer */
  footer .inner {
    width: 100%;
    padding: 0;
  }
  .footer-top {
    height: auto;
    padding: 30px 20px 50px 20px;
  }
  .footer-family {
    position: relative;
    top: inherit;
    transform: inherit;
  }
  .footer-family dt {
    width: 100%;
  }
  .footer-family dt.family_btn {
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
  }
  .footer-menu li {
    margin-bottom: 16px;
  }
  .footer-menu li a {
    font-size: 13px;
    letter-spacing: -0.33px;
  }
  .footer-menu li:not(:last-of-type) {
    margin-right: 21px;
  }
  .footer-family dd {
    width: 100%;
  }
  .footer-family dd ul {
    width: calc(100% - 1px);
  }
  footer .company {
    padding-top: 26px;
  }
  footer .company h4 {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.33px;
  }
  footer .company h4:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background-image: url("../images/arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s;
  }
  footer .company h4 a {
    color: #8e8e8e;
  }
  footer .company h4.active:after {
    transform: rotate(-180deg);
  }
  footer .item {
    display: none;
    margin-top: 10px;
  }
  footer .item dl {
    display: grid;
    grid-template-columns: 94px 1fr;
  }
  footer dl dt {
    font-size: 12px;
    letter-spacing: -0.3px;
    color: #7b7b7b;
  }
  footer dl dd {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: -0.3px;
    color: #7b7b7b;
  }
  footer .copy {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: -0.3px;
    color: #939393;
  }
}

@media screen and (max-width: 798px) {
  .only-pc {
    display: none !important;
  }
  .only-mo {
    display: block !important;
    margin: 0 auto;
    text-align: center; /* 부모 요소에 적용 */
  }
  .inner {
    padding: 0 20px;
  }
  #popupLayer {
    width: 90%;
  }
  /* header */
  .header-inner {
    height: 56px;
    padding: 0 10px;
  }
  .logo-douzone a {
    width: 188px;
    height: 37px;
  }
  .logo-ai a {
    width: 79px;
    height: 25px;
  }

  /* tab */
  .tab {
    top: 2%;
    box-sizing: border-box;
    width: 330px;
    height: 45px;

  }
  .tab li {
    display: inline-flex;
    justify-content: center;
    background-color: #323232;
    width: 55px;
    height: 30px;
    align-items: center;
    margin-right: 9px;
  }


  .tab li a {
    display: inline-block;
     line-height: 13px;
    font-size: 10px;
    height: 22.5px;
    white-space: nowrap;
  }


  /* floating 
  .floating {
    right: 4px;
    bottom: 70px;
    width: 70px;
    border-radius: 20px;
  }
  #scrollTop {
    right: 20px;
    bottom: 20px;
  }
  */

  /* btn */
  .btn {
    width: 100%;
    height: 53px;
    font-size: 18px;
    letter-spacing: -0.54px;
  }
  .btn.arrow:after {
    border-width: 1px;
  }

  .toggle-wrap {
    margin-top: 30px;
  }
  .toggle-bar {
    padding: 20px 16px;
  }
  .toggle-bar h4 {
    display: flex;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: -0.21px;
    align-items: baseline;
  }
  .toggle-bar h4:before {
    margin-right: 10px;
    font-size: 18px;
  }
  .toggle-bar h4:after {
    top: 22px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #939393;
    border-right: 1px solid #939393;
  }
  .toggle-bar.open h4:after {
    top: 27px;
  }
  .toggle-bar .detail {
    padding: 20px 15px;
    margin-top: 15px;
    border-radius: 5px;
  }
  .toggle-bar .detail p {
    position: relative;
    padding-left: 27px;
    font-size: 14px;
    letter-spacing: -0.21px;
    line-height: 20px;
  }
  .toggle-bar .detail p:before {
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 0;
    font-size: 18px;
  }
  .toggle-bar .detail p span {
    line-height: 1.5;
  }
  .section.notice {
    padding: 30px 0;
  }
  .section.notice dt {
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  .section.notice dd {
    font-size: 14px;
    letter-spacing: -0.42px;
    line-height: 22px;
  }
  .section.notice dd strong {
    color: #fff;
  }

  .top-area {
    background: #26235D url('../images/top-area-mo.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 70px;
  }
  .main-title h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 42px;
  }
  .main-title .m-title {
    width: 202px;
    height: 32px;
    order: 1;
  }
  .main-title > h1 {
    order: 2;
  }
  .main-title .sub-text {
    order: 3;
    padding: 0 22px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.24px;
  }
  .main-title .sub-text span {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.24px;
  }
  .main-title .sub-text span:nth-child(1) {
    margin-bottom: 15px;
  }
  .main-title .sub-text > span strong.line-text {
    display: inline-block;
    position: relative;
  }
  .main-title .sub-text > span strong.line-text::before,
  .main-title .sub-text > span strong.line-text::after {
    content:'';
    display: inline-block;
    position: absolute;
    left: 50%;
    height: 11px;
    background-image: linear-gradient(91deg, #28afff, #8c2fff 50%, #f632ff 72%);
    opacity: .5;
    z-index: -1;
    transform: translateX(-50%);
  }
  .main-title .sub-text > span strong.line-text::before {
    top: 14px;
    width: 130px;
  }
  .main-title .sub-text > span strong.line-text::after {
    top: 41px;
    width: 104%;
  }
  .header-box {
    order: 5;
    width: calc(100% - 40px);
    padding: 20px;
    margin: 215px auto 0 auto;
    box-sizing: border-box;
  }
  .header-box .attr dl {
    align-items: flex-start;
  }
  .header-box .attr dl dt {
    margin-right: 10px;
    padding-left: 7px;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.23px;
  }
  .header-box .attr dl dt:before {
    top: 7px;
    width: 2px;
    height: 2px;
  }
  .header-box .attr dl dd {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.3px;
    text-align: left;
  }
  .header-box .attr dl dd strong {
    display: block;
  }
  .grad-list strong {
    font-weight: normal;
    font-size: 15px;
    letter-spacing: -0.45px;
    line-height: 25px;
  }
  .grad-list p {
    text-align: left;
    font-size: 12px;
    letter-spacing: -0.36px;
    line-height: 20px;
  }
  .bg-program {
    background-image: url(../images/bg-program-mo.png);
  }
  .bg-program::before,
  .bg-program.icube:before,
  .bg-program.icube:after {
    display: none;
  }
  .bg-program::after {
    right: -61px;
    bottom: -65px;
    width: 186px;
    height: 186px;
  }

  .bg-program.icube {
    background-image: url(../images/bg-program-icube-mo.png)
  }
  .bg-icube .btn-group {
    margin-top: 30px;
  }

  .program-box {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    z-index: 1;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .sub-title p {
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: 24px;
  }
  .sub-title p:after {
    width: 20px;
    height: 2px;
    margin: 20px 0;
  }
  .sub-title h4 {
    font-size: 24px;
    letter-spacing: -0.36px;
  }
  .program-list {
    height: auto;
    padding: 20px 22px;
    z-index: 1;
  }
  .program-list p {
    font-size: 15px;
  }
  .program-list dt {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }
  .program-list dd {
    font-size: 16px;
    letter-spacing: -0.4px;
    line-height: 26px;
  }
  #a10 {
    background-color: #f7f8fc;
  }
  .program-dl {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .program-dl dt {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.3px;
  }
  .program-dl dd {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.3px;
  }

  /* table */
  .table-wrap {
    margin-top: 40px;
    border-radius: 0;
  }
  .table-wrap .thead {
    display: none;
  }
  .table-wrap .tbody .table-row:not(:last-child) {
    border-bottom: 0;
  }
  .table-wrap.a10 .location {
    display: inline-flex;
    gap: 10px;
    width: 100%;
  }
  .table-wrap.a10 .location strong {
    margin-left: 2px;
    font-size: 12px;
  }
  .tbody .table-row .td-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
  }
  .tbody .table-row .td-wrap .td {
    display: flex;
    align-items: center;
  }
  .tbody .table-row .td-wrap .td:before {
    font-weight: bold;
    margin-right: 15px;
  }
  .tbody .table-row .td-wrap .td:nth-child(1):before {
    content: '시간';
  }
  .tbody .table-row .td-wrap .td:nth-child(2):before {
    content: '지역';
  }
  .tbody .table-row .td-wrap .td:nth-child(3):before {
    content: '장소';
  }
  .table-wrap .tbody .th {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;    
    min-height: 38px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
  }
  .table-row .td {
    display: inline-flex;
    justify-content: flex-start;
    padding: 0;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .table-row .td ul{
    display: flex;
    align-items: center;
  }
  .table-row .td ul li {
    display: flex;
    align-items: center;
  }
  .table-row .td ul li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .table-row .td ul li:not(:last-of-type):after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    margin: 0 10px;
    background-color: #ddd;
  }
  .table-row {
    display: flex;
    flex-direction: column;
  }
  .table-row.rowspan.two .td {
    border-bottom: 0 !important;
  }
  .tbody .table-row.rowspan.two .td-wrap:nth-child(2) {
    margin-bottom: 10px;
  }
  .table-wrap.a10 {
    box-shadow: none;
  }
  .table-wrap.a10 .tbody .th,
  .table-wrap.icube .tbody .th {
    color: #fff;
  }
  .table-wrap.a10 .tbody .table-row:nth-of-type(1) .th {
    background-image: linear-gradient(99deg, #2ebfff -372%, #4aa5fe -241%, #9460fd 100%);
  }
  .table-wrap.a10 .tbody .table-row:nth-of-type(2) .th {
    background-image: linear-gradient(93deg, #2ebfff -191%, #4aa5fe -16%, #9460fd 439%);
  }
  .table-wrap.a10 .tbody .table-row:nth-of-type(3) .th {
    background-image: linear-gradient(93deg, #2ebfff -191%, #4aa5fe -16%, #9460fd 439%);
  }
  .table-wrap.a10 .tbody .table-row:nth-of-type(4) .th {
    background-image: linear-gradient(91deg, #2ebfff -110%, #4aa5fe 63%, #9460fd 515%);
  }
  .table-wrap.a10 .tbody .table-row:nth-of-type(5) .th {
    background-image: linear-gradient(91deg, #2ebfff 5%, #4aa5fe 146%, #9460fd 515%);
  }

  .table-wrap.a10 .location ul {
    min-width: none;
  }
  .table-wrap.a10 .location ul li {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .table-wrap.icube {
    background-color: transparent;
    border: 0;
  }
  .table-wrap.icube::before {
    display: none;
  }
  .table-wrap.icube .tbody .table-row:before {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    font-size: 16px;
    font-weight: normal;
    border-radius: 6px;
    transform: inherit;
    background-color: rgba(0,0,0,.6);
  }
  .table-wrap.icube .tbody .table-row:nth-of-type(1) .th{
    background-image: linear-gradient(96deg, #7d8bae 0%, #707fa5);
  }
  .table-wrap.icube .tbody .table-row:nth-of-type(2) .th{
    background-image: linear-gradient(95deg, #707fa5 4%, #576794 100%);
  }
  .table-wrap.icube .tbody .table-row:nth-of-type(3) .th{
    background-image: linear-gradient(96deg, #576794 1%, #4c5a82 100%);
  }
  .table-wrap.icube .tbody .table-row:nth-of-type(4) .th{
    background-image: linear-gradient(96deg, #4c5a82 1%, #3e4c72 100%);
  }
  .table-wrap.icube .tbody .table-row:nth-of-type(5) .th{
    background-image: linear-gradient(96deg, #3e4c72 1%, #38456a 99%);
  }
}
