@charset "utf-8";
:root {
  /* 제목을 위한 폰트 사이즈 변수 선언 */
  /* --header-font-large: 2.5rem;
  --header-font-medium: 2rem;
  --header-font-small: 1.5rem; */
  
  /* 테마 컬러 등도 변수로 관리하면 편리합니다 */
  --main-color: #3B2823;
  --footer-contents-color: #1f1f1f;
  --table-bg-color: #FEF6F0;
  --sub-section-point-bg-color: #F8F7F6;
  --main-red-color:#D24D39;
  --main-green-color:#2DC41F;
  --main-gray-color:#636363;
  --pink-beige-color:#DFD8D8;
}
html {
    scroll-behavior: smooth;
}
.blind {
    position: absolute;       /* 문서 전체 흐름을 깨지 않고 공중에 띄움 */
    width: 1px;               /* 가로 크기를 최소 단위인 1px로 축소 */
    height: 1px;              /* 세로 크기를 최소 단위인 1px로 축소 */
    padding: 0;               /* 안쪽 여백 완전히 제거 */
    margin: -1px;             /* 테두리와 여백으로 인한 왜곡을 막기 위해 음수 값 부여 */
    overflow: hidden;         /* 1px 바깥으로 삐져나가는 모든 글자를 감춤 */
    clip: rect(0, 0, 0, 0);   /* 구형 브라우저를 위해 요소를 사각형으로 잘라냄 */
    clip-path: inset(50%);    /* 현대 브라우저에서 요소를 가운데로 완전히 잘라내어 숨김 */
    border: 0;                /* 테두리 선 제거 */
    white-space: nowrap;      /* 글자가 줄바꿈되어 아래로 삐져나오는 현상 방지 */
}
.mo_br {
    display: none;
}
/* 헤더 */
header {
    width: 100%;
    background-color: #fff;
}
header .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0 0 0;
    box-sizing: border-box;
}
header .container .logobox {
    /* 피드백 확인용 */
    transform: translateX(-39px);
}
header .container .logo {
    /* width: 130px; */
    height: 50px;
}
header .container .logo a {
    display: block;
    height: 100%;
}
header .container .logo a img {
    height: 100%;
}
header .container .gnb {
    display: flex;
}
header .container .gnb li {
    position: relative;
}
header .container .gnb > li {
    /* 피드백 확인용 */
    /* border: 1px solid #000; */
}
header .container .gnb li::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #000;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: .2s;
}
header .container .gnb li:hover::after {
    opacity: 1;
}
header .container .gnb li a {
    color: var(--main-gray-color);
    transition: .2s;
}
/* 모바일 헤더 */
.m_menu_btn {
    width: 45px;
    height: 45px;
    position: relative;
    background-color: transparent;
    display: none;
}
.m_menu_btn span {
    display: block;
    width: 37px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.m_menu_btn span:first-child {
    top: calc(50% - 9px);
}
.m_menu_btn span:last-child {
    top: calc(50% + 9px);
}
.m_menu_btn.active span:first-child {
    top: calc(50% - 9px);
}
.m_menu_btn.active span:last-child {
    top: calc(50% + 9px);
}
/* active */
header .container .gnb li.active::after {
    opacity: 1;
}
/* gnb active */
header .container .gnb > li.active > a {
    color: #000;
}
header .container .gnb > li:hover > a {
    color: #000;
}
/* lnb active */
header .container .gnb .lnb > li.active > a {
    color: #000;
}
header .container .gnb li a {
    display: block;
    padding: 10px 40px;
    word-break: keep-all;
}
/* lnb */
header .container .gnb >li:hover .lnb {
    opacity: 1;
    visibility: visible;
}
header .container .gnb .lnb {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(5px);
    background-color: #fff;
    transition: .2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 3;
}
header .container .gnb .lnb li {
    width: 100%;
    text-align: center;
}
header .container .gnb .lnb li a {
    padding: 14px 40px;
    color: var(--main-gray-color);
}
header .container .gnb .lnb li:hover a {
    color: #000;
}
/* 모바일 header 토글 버튼 */
header .btn_toggle {
    display: none;
}
/* index.html의 header */
.enter_page {
    width: 100%;
    height: 100%;
    position: relative;
}
.enter_page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    z-index: 2;
}
.enter_page .header_include {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.enter_page header .container {
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}
.enter_page header .container .logobox {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: start;
    transform: translateX(0);
}
/* 끝 */
.enter_page header .container .gnb li a {
    color: var(--main-gray-color);
    transition: .2s;
}
.enter_page header .container .gnb > li:hover > a {
    color: #000;
}
.enter_page main {
    position: relative;
    width: 100%;
    /* enter_page에서는 전체 100vh 중 헤더높이 80px 빼주기 */
    height: calc(100vh - 80px);
}
/*  */
/* footer */
footer {
    background-color: #d9d9d9;
}
.footer_inner {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}
.footer_logo {
    width: 150px;
    margin-bottom: 40px;
}
.footer_logo img {
    width: 100%;
}
.footer_inner .biz_info .info_row {
    
}
.footer_inner .biz_info .info_row>ul {
    display: flex;
    padding-bottom: 9px;
}
.footer_inner .biz_info .info_row>ul>li:first-of-type {
    padding-right: 10px;
    position: relative;
    flex-shrink: 0;
}
.footer_inner .biz_info .info_row>ul>li:first-of-type::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 9px;
    background: var(--main-color);
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}
.footer_inner .biz_info .info_row>ul>li:last-of-type {
    padding-left: 10px;
    font-weight: 500;
    font-size: 15px;
}
/* 카피라이트 문장 */
.footer_inner .copyright {
    display: block;
    padding-top: 40px;
    color: var(--footer-contents-color);
}
/* footer sns박스 */
.footer_inner .sns_box {
    display: flex;
    gap: 23px;
}
.footer_inner .sns_box li > a {
    display: block;
    width: 40px;
}
.footer_inner .sns_box li.naver_blog_icon a {
    width: 35px;
}
.footer_inner .sns_box li > a img {
    width: 100%;
}
/* footer 끝 */
.centerbox {
    max-width: 1460px;
    margin: 0 auto;
}
.floating_group {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.floating_group .btn_go_top {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #dedede;
    cursor: pointer;
    transition: .2s;
}
.floating_group .btn_go_top .arrow {
    display: block;
    transition: .2s;
    position: relative;
    transform: translateY(0);
}
.floating_group .btn_go_top:hover {
    background-color: var(--footer-contents-color);
    color: #fff;
}
.floating_group .btn_go_top:hover .arrow {
    transform: translateY(-1px);
}
.floating_group .chatbox {
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-image: url(../images/icons/kakaoch.svg);
    background-size: contain;
}
/* 서브페이지 공통으로 들어가는 이미지 규격 */
.sub_page .main-figure  {
    width: 1095px;
    height: 460px;
    background: #D9D9D9;
}
.sub_page main {
    width: 100%;
    padding: 50px 0 100px;
}
.sub_page main h2 {
    width: 100%;
    font-size: 36px;
    font-weight: 600;
    position: relative;
    padding-top: 100px;
    padding-bottom: 15px;
}
.sub_page main h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #333;
    bottom: 0;
    left: 0;
}
.sub_page main p {
    font-size: 20px;
    color: #191919;
    line-height: 1.7em;
    word-break: keep-all;
}
.sub_page main p b {
    font-weight: 600;
} 
.sub_page section {
    padding: 100px 0;
} 
.sub_page h3 {
    font-size: 27px;
    font-weight: 500;
}
.sub_page h4 {
    font-weight: 500;
}
/* table 공통 탬플릿 */
.sub_page .table_wrap {
    border: 1px solid var(--main-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 1336px;
    box-sizing: border-box;
}
.sub_page table {
    border-collapse: collapse;
    width: 100%;
}
.sub_page table caption {
    font-weight: 300;
    font-size: 15px;
    color: #000;
    position: absolute;
    left: 0;
    top: -10px;
    transform: translateY(-100%);
}
.sub_page table tr {
    height: 63px;
    border-bottom: 1px solid var(--main-color);
}
.sub_page table tr:last-of-type {
    border-bottom: 0;
}
.sub_page table th {
    font-weight: 500;
    font-size: 23px;
    color: #333;
    background: var(--table-bg-color);
}
.sub_page table td {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    border-left: 1px solid var(--main-color);
}
.sub_page table .price_cell {
    font-weight: 600;
}
/* 이엘아트 소개 */
.about_page .section1 article {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.about_page .section1 article strong {
    font-weight: 500;
}
.sub_page .sub_beige_row {
    width: 100%;
    background-color: var(--sub-section-point-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.sub_page .sub_beige_row .textbox {
    border-top: 2px solid #595959;
    border-bottom: 2px solid #595959;
    width: 100%;
    max-width: 1460px;
    box-sizing: border-box;
}
.sub_page .sub_beige_row .textbox > li {
    border-bottom: 1px solid #999;
}
.sub_page .sub_beige_row .feature-item {
    display: flex;
    gap: 68px;
    align-items: center;
    padding: 30px 0 30px 37px;
}
.sub_page .sub_beige_row .num {
    font-size: 48px;
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: italic;
}
.sub_page .sub_beige_row .feature-item h4 {
    font-size: 40px;
    flex-grow: 1;
}
.sub_page .sub_beige_row .feature-item p,
.sub_page .sub_beige_row .feature-item .item_dot {
    color: #333;
    font-size: 20px;
    line-height: 28.8px;
    width: 50%;
} 
.sub_page .sub_beige_row .feature-item .item_dot>li {
    padding-left: 16px;
    box-sizing: border-box;
    position: relative;
} 
.sub_page .sub_beige_row .feature-item .item_dot>li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.about_page .section3 {
    padding-top: 200px;
    padding-bottom: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}
.about_page .section3 .about_slide {
    max-width: 1460px;
    height: 630px;
}
/* 이엘아트 강사진 소개 페이지 */
.sub_page.teachers_page main h2::after {
    display: none;
}
.sub_page.teachers_page main h2 strong {
    font-weight: 600;
}
.sub_page.teachers_page main h2 {
    font-weight: 500;
}
.sub_page.teachers_page main .sectionboxes article p {
    font-weight: 300;
}
.sub_page.teachers_page main p strong {
    font-weight: 600;
}
.sub_page.teachers_page main .sectionboxes article {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sub_page.teachers_page main .sectionboxes .section1 aside {
    font-family: "Crimson Text", serif;
    padding-top: 40px;
    font-size: 18px;
}
.sub_page.teachers_page main .sectionboxes .section1 aside > a {
    font-style: italic;
}
/* 강사진 소개 - 연락처, 학력, 전시 */
.teachers_page .section2 {
    display: grid;
    /* 열 생성 */
    grid-template-columns: 1fr 1fr;
    /* 행 생성 */
    grid-template-rows: auto auto;
}
.teachers_page .section2 .section-contact {
    grid-column: 1;
    grid-row: 1;
}
.teachers_page .section2 > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.teachers_page .section2 > div:last-child {
    grid-column: 2;
    grid-row: 1/3;
}
.teachers_page .section2 h3 {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 30px;
}
.teachers_page .contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.teachers_page .contact-box .contact-list {
    font-family: "Crimson Text", serif;
    font-size: 18px;
    padding-left: 34px;
    position: relative;
}
.teachers_page .contact-box .contact-list::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
}
.teachers_page .contact-box .contact-list.email-contact::before {
    width: 22px;
    height: 22px;
    background-image: url(../images/icons/mail.svg);
    left: 0;
}
.teachers_page .contact-box .contact-list.tel-contact::before {
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/call.svg);
    left: 0;
}
.teachers_page .contact-box .contact-list.instagram-contact::before {
    width: 18px;
    height: 18px;
    background-image: url(../images/icons/instagram-black.png);
    left: 3px;
}
.teachers_page .contact-box .contact-list.blog-contact::before {
    width: 18px;
    height: 19px;
    background-image: url(../images/icons/blog-black.png);
    left: 3px;
}
.teachers_page .section-time dl > div {
    display: flex;
    padding-bottom: 21px;
}
.teachers_page .section-time dl dt,
.teachers_page .section-time dl dd {
    font-size: 18px;
    line-height: 1.5em;
} 
.teachers_page .section-time dl dt {
    width: 54px;
    position: relative;
    flex-shrink: 0;
}
.teachers_page .section-time dl dt::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 9px;
    transform: translateX(-50%);
    background-color: #000;
    width: 1px;
    height: 10px;
}
.teachers_page .section-time dl dd {
    padding-left: 11px;
}
/* 강사진 소개 - 연락처, 학력, 전시(끝) */
/* 강사진 소개 - 작품 이력 */
.teachers_page .section3 {
}
.teachers_page .section3 .artwork_list {
    display: grid;
    /* 똑같은 너비로 3개씩 나열 */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.teachers_page .section3 .artwork_list .artwork_item {
    background: #d9d9d9;
    min-height: 400px;
}
/* 강사진 소개 - 작품 이력(끝) */

/* 정규 클래스, 원데이 클래스 */
.regular_page main p, .oneday_page main p {
    text-align: center;
}
.regular_page section, .oneday_page section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}
.oneday_page section h3 {
    text-align: center;
}
.sub_page .memoPad, .sub_page section .listWrap {
    background-color: var(--sub-section-point-bg-color);
}
.sub_page .memoPad .textbox {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.sub_page .memoPad .textbox > li {
    background-color: #fff;
    box-shadow: -7px 0 18px -12px rgba(0, 0, 0, 0.25);
    width: 471px;
    padding: 30px;
    box-sizing: border-box;
    flex-grow: 0;
    flex-shrink: 0;
}
.sub_page .memoPad .textbox > li .num {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 43px;
}
.sub_page .memoPad h4 {
    font-size: 25px;
}
.sub_page .memoPad .textbox > li .feature-item h4 {
    padding: 20px 0 34px 0;
}
.sub_page .memoPad .textbox > li .feature-item p {
    text-align: left;
}
/* section3, 추천드리는 대상 */
.sub_page .listWrap {
    padding: 30px;
    border-radius: 33px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 7px;
    box-sizing: border-box;
    max-width: 1336px;
}
.sub_page .listWrap > li {
    position: relative;
    background-color: #fff;
    padding: 10px 20px 10px 35px;
    border-radius: 500px;
    /* font */
    font-weight: 400;
    font-size: 20px;
}
.sub_page .listWrap > li b {
    font-weight: 600;
}
.sub_page .listWrap > li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #000;
    top: 19px;
    left: 19px;
}
.regular_page .section4 table th {
    width: 249px;
}
.regular_page .section4 table thead {
    border-bottom: 1px solid var(--main-color);
}
.regular_page .section4 table thead th {
    border-right: 1px solid var(--main-color);
}
.regular_page .section4 table thead th:last-of-type {
    border-right: 0;
}
.regular_page .section4 table thead .slash_bg {
    background: linear-gradient(
        to top right, 
        var(--table-bg-color) calc(50% - 0.7px), 
        var(--main-color), 
        var(--table-bg-color) calc(50% + 0.7px)
    );
} 
.regular_page .section4 table .slash_bg {
    background: linear-gradient(
        to top right, 
        transparent calc(50% - 0.7px), 
        var(--main-color), 
        transparent calc(50% + 0.7px)
    );
}
.oneday_page .section3 {
    background-color: var(--sub-section-point-bg-color);
}
.sub_page .progressWrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    min-width: 1024px;
}
.sub_page .progressWrap > li {
    background-color: #fff;
    box-shadow: -2px 2px 4px -2px rgba(150, 150, 150, .25);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}
.sub_page .progressWrap > li::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../images/icons/arrow_down.svg) no-repeat;
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
}
.sub_page .progressWrap > li:last-of-type::after {
    display: none;
}
.sub_page .progressWrap > li .progress_title {
    background-color: #FEF6F0;
    box-shadow: inset 2px 2px 4.4px -2px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 22px;
    box-sizing: border-box;
    border-radius: 100px;
    min-width: 250px;
}
.sub_page .progressWrap .consult_title {
    font-size: 21px;
    font-weight: 600;
}
.sub_page .progressWrap .consult_time {
    font-size: 18px;
    color: #333;
}
.sub_page .progressWrap .consult_desc {
    font-size: 23px;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
}
.sub_page .progressWrap .consult_desc > small {
    font-size: 20px;
    color: #333;
    display: block;
}
/* 원데이 클래스 시즌, 난이도 카테고리 */
.tagBox .onedayItem_category {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}
.tagBox .season_tag {
    background-color: var(--main-red-color);
}
.tagBox .ongoing_tag {
    background-color: var(--main-green-color);
}
.tagBox .onedayItem_level {
    background-color: #21201F;
}
.tagBox .level_value {
    padding-left: 5px;
}
.onedayItem .onedayItem_title {
    font-size: 18px;
}
.onedayItem .onedayItem_desc {
    display: block;
    font-size: 15px;
    color: var(--main-gray-color);
}
.onedayItem .oneday_price {
    font-weight: 600;
    font-size: 15px;
    /* 세로 맞추기용 */
    flex-grow: 1;
}
.oneday_page .tagBox {
    padding-bottom: 12px;
}
.oneday_page .onedayWrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 50px;
    justify-content: center;
}
#pastExhTarget {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 50px * 2) / 3));
    gap: 50px;
    justify-content: center;
}
.oneday_page .onedayItem {
    display: flex;
    flex-direction: column;
}
.oneday_page .onedayItem .onedayItem_title {
    padding-bottom: 6px;
}
.oneday_page .onedayItem .onedayItem_desc {
    padding-top: 6px;
}
.oneday_page .onedayItemFig {
    background-color: #333;
    width: 350px;
    height: 350px;
    margin-top: 20px;
    aspect-ratio: auto;
}
.oneday_page .onedayItemFig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 페이지네이션 */
.pagination_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination_container .page_info {
    display: flex;
    gap: 9px;
}
.pagination_container .page_info > span {
    font-weight: 500;
}
/* 기본 활성화 btn */
.pagination_container .nav_btn {
    background-color: #1f1f1f;
    font-weight: 800;
    width: 24px;
    height: 24px;
    mask-size: contain;
    cursor: pointer;
}
.pagination_container .prev_btn {
    mask-image: url(../images/icons/chevron_left.svg);
}
.pagination_container .next_btn {
    mask-image: url(../images/icons/chevron_right.svg);
}
.pagination_container .nav_btn:disabled {
    background-color: #CFD1D2;       /* 기획 반영: 비활성화 상태일 때 색상 */
    cursor: not-allowed;  /* 클릭 금지 아이콘 표시 */
}
.pagination_container .current_num {
    color: var(--main-green-color);
    font-weight: 500;
}
/* 배너 */
.oneday_banner_wrap {
    margin-bottom: 100px;
}
.banner_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner_txt_box {
    padding: 40px 50px;
    flex: 1;
}
.banner_sub {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #ff7675; /* 포인트 코랄 컬러 */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.banner_title {
    font-size: 28px;
    line-height: 1.4;
    color: #1F1F1F;
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.banner_desc {
    font-size: 15px;
    color: #666;
    margin: 0 0 25px 0;
}
.sub_page main .banner_desc {
    text-align: left;
}
.banner_btn {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background-color: #1F1F1F; /* 활성화 컬러 매칭 */
    padding: 10px 22px;
    border-radius: 6px;
    transition: background-color 0.2s;
}
/* 현재 진행하는 전시 페이지 */

.exhibition_page .sectionboxes h3 {
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}
.exhibition_page .sectionboxes h3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #333;
    bottom: 0;
    left: 0;
}
.exhibition_page .paged_list {
    padding: 60px 0 100px 0;
}
/* 태그박스 */
.exhibition_page .paged_list .tagBox {
    margin-bottom: 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.exhibition_page .paged_list .tagBox .status_tag {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}
/* 진행중일때 태그박스 */
.exhibition_page .paged_list .tagBox .status_tag.ing {
    background-color: var(--main-green-color);
    color: #fff;
    margin-right: 10px;
}
.exhibition_page .paged_list .tagBox .exh_number {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-gray-color);
}
.exhibition_page .paged_list .exh_title {
    font-size: 25px;
    margin-bottom: 10px;
}
.exhibition_page .section2 .paged_list .tagBox {
    margin-bottom: 11px;
}
.exhibition_page .paged_list .artist_name {
    font-size: 19px;
    display: inline-block;
    padding-right: 8px;
}
.exhibition_page .paged_list .exh_date {
    font-size: 17px;
    color: var(--main-gray-color);
}
.exhibition_page .paged_list .exhIngItemFig {
    width: 100%;
    /* 높이 고정 */
    height: 630px;
    /* aspect-ratio: 1460 / 630; */
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.exhibition_page .paged_list .exhIngItemFig img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.exhibition_page .filter_group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    flex-wrap: wrap;
}
.exhibition_page .filter_group > button {
    padding: 10px 20px;
    position: relative;
    /* 초기에는 활성화 안된 컬러 */
    color: var(--main-gray-color);
}
.exhibition_page .filter_group > button.active {
    /* 활성화 된 버튼만 컬러 */
    color: #000;
    font-weight: 500;
}
.exhibition_page .filter_group > button::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #333;
}
.exhibition_page .filter_group > button:last-of-type::after {
    display: none;
}
.exhibition_page .paged_list .ItemFig {
    background: #d9d9d9;
    width: 100%;
    /* aspect-ratio: 450 / 630; */
    margin-top: 35px;
} 
.exhibition_page .paged_list .ItemFig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.exhibition_page .section2 .paged_list .exhItem {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.exhibition_page .paged_list .exh_info {
    flex-grow: 1;
}
/* 작가 공모 */
.sub_page.application_page main h2 {
    margin-bottom: 50px;
}
.application_page .poster_container {
    background-color: var(--pink-beige-color);
    padding: 100px 70px;
    box-sizing: border-box;
}
.application_page main header {
    background-color: transparent;
}
.application_page main .poster_header {
    display: flex;
    justify-content: space-between;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 900;
    align-items: stretch;
} 
.application_page main .poster_title {
    font-size: 87px;
    letter-spacing: -7%;
    line-height: 113%;
}
.application_page main .header_right {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.application_page main .header_right .timebox {
    font-size: 35px;
    line-height: 113%;
    letter-spacing: 1%;
}
.application_page main .header_right .sub_badge {
    font-size: 29px;
    line-height: 120%;
    letter-spacing: 3%;
    display: inline-block;
    text-align-last: right;
}
.application_page main .poster_content {
    font-family: "Noto Sans KR", sans-serif;
}
.application_page main .poster_content .info_list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.application_page main .poster_content .info_title {
    font-size: 27px;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: -4%;
    padding-bottom: 20px;
}
.application_page main .poster_content .info_desc {
    font-size: 21px;
    line-height: 150%;
    letter-spacing: -2%;
}
.btn_copy,
.go_tel {
    font-size: 18px;
    font-weight: 600;
    font-family: "pretendard";
    border-radius: 5px;
    border: 1px solid #000;
    padding: 5px 12px;
    margin-left: 10px;
}
/* 공유작업실 */
.sub_page.share_page .memoPad {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sub_page.share_page .memoPad .textbox {
    flex-wrap: wrap;
    /* 자식을 2행 2열로 만들기 위해서 */
    width: calc(471px * 2 + 20px);
}
.sub_page.share_page .memoPad h3 {
    padding-bottom: 80px;
}
.sub_page.share_page .memoPad .title_desc {
    padding-bottom: 60px;
    text-align: center;
}
.share_page main h2 {
    margin-bottom: 80px;
}
.share_page .shareFig {
    width: 100%;
    aspect-ratio: 1460/460;
    background: #d9d9d9;
}
.share_page .sectionboxes .p_flexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 0;
}
.share_page .sectionboxes .p_flexbox p {
    text-align: center;
}
.share_page table tbody th {
    background: transparent;
}
.share_page table thead tr:last-of-type {
    border-bottom: 1px solid var(--main-color);
}
.sub_page table .td_flexbox {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    gap: 10px;
}
.sub_page table .light_weight {
    font-weight: 300;
}
.sub_page table .td_ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.sub_page table .td_ul > .td_dot {
    padding-left: 13px;
    position: relative;
    font-weight: 600;
}
.sub_page table .td_ul > .td_dot::before {
    content: "";
    position: absolute;
    background: #1f1f1f;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sub_page .table_btn_box {
    width: 1336px;
    padding-top: 45px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* 상담.문의하기 */
.contact_page .contact_h2 {
    display: flex;
    align-items: center;
}
.contact_page .icon_box {
    display: flex;
    gap: 25px;
    padding-left: 18%;
}
.contact_page .icon_box > a {
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact_page .icon_box .tel_icon {
    background-image: url(../images/icons/call.svg);
}
.contact_page .icon_box .sms_icon {
    background-image: url(../images/icons/mail.svg);
}
.contact_page .icon_box .kakao_icon {
    background-image: url(../images/icons/kakaotalk_yb.png);
}
.contact_page .icon_box .map_icon {
    background-image: url(../images/icons/naver_map.svg);
}
.contact_page .icon_box .insta_icon {
    background-image: url(../images/icons/Instagram_icon.png);
}
.contact_page .contact_container {
    padding: 30px 0 150px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contact_page .contact_container .contact-figure {
    width: 700px;
    aspect-ratio: 7/4;
    background: #d9d9d9;
    margin-left: 30px;
}
/*  */
.exhItemLink {
    display: block;
    height: 100%;
    color: inherit;
}

/* 반응형 */
@media screen and (max-width: 1560px) {
    .regular_page .section2 .textbox > li {
        width: 30%;
    }
}
@media screen and (max-width: 1530px) {
    .sub_page main figure {
        box-sizing: border-box;
        width: calc(100% - 28vw);
    }
    .sub_page main h2,
    .sub_page .centerbox,
    .sub_page .sub_beige_row .textbox,
    .about_page .section3 .about_slide,
    .footer_inner,
    .sub_page section .listWrap {        
        width: calc(100% - 4.2vw);
    }
}
@media screen and (max-width: 1355px) {
    .sub_page .table_wrap {    
        width: calc(100% - 4.2vw);
    }    
}
@media screen and (max-width:1356px) { 
    .sub_page .sub_beige_row .feature-item h4 {
        font-size: 35px;
    }
    .sub_page .sub_beige_row .num {
        font-size: 42px;
    }
}
@media screen and (max-width: 1252px) {
    header .container .gnb li a,  
    header .container .gnb .lnb li a {
        padding: 10px 2.8vw;
    }
    header .container .logobox {
        transform: translateX(-2.73vw);
    }
}
@media screen and (max-width: 1229px) {
    .sub_page .sub_beige_row .feature-item {
        gap: 4vw;
        padding: 20px 0 20px 27px;
    }
    .oneday_page .onedayWrap {
        grid-template-columns: repeat(3, calc((100% - 80px) / 3));
        width: calc(100% - 4.2vw);
        gap: 40px;
    }
    .oneday_page .onedayItemFig {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #pastExhTarget {
        grid-template-columns: repeat(3, calc((100% - 80px) / 3));
        gap: 40px;
    }
}
@media screen and (max-width: 1163px) {
    header .container .gnb li a,
    header .container .gnb .lnb li a {
        padding: 10px 1.8vw;
    }

    header .container .logobox {
        transform: translateX(-1.755vw);
    }
    
    .sub_page .sub_beige_row .feature-item {
        flex-wrap: wrap;
        gap: 20px;
    }   
    .sub_page .sub_beige_row .feature-item h4 {
        flex-shrink: 0;
        width: 70%;
    }
    .sub_page .sub_beige_row .feature-item p,
    .sub_page .sub_beige_row .feature-item .item_dot {
        width: 100%;
    }
    .sub_page .sub_beige_row .num {
        width: 60px;
    }
    .sub_page .progressWrap {
        min-width: auto;
        width: calc(100% - 4.2vw);
    }
    .contact_page .contact_h2 {
        justify-content: space-between;
    }
    .contact_page .icon_box {
        padding-left: 0;
    }
}
@media screen and (max-width: 1095px) {
    .sub_page .main-figure  {
        width: 75%;
    }
}
@media screen and (max-width: 1024px) {
    .sub_page .progressWrap > li {
        flex-direction: column;
        border-radius: 10px;
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
    }
    .sub_page .progressWrap > li .progress_title {
        flex-direction: row;
        justify-content: start;
        border-radius: 10px;
        width: 100%;
    }
    .sub_page .progressWrap .consult_desc {
        padding-left: 0;
    }
    .sub_page.share_page .memoPad .textbox {
        width: auto;
    }
    .sub_page.share_page .memoPad .title_desc { 
        width: calc(100% - 4.2vw);
    }
}
/* 모바일 */
@media screen and (max-width: 985px) {
    .sub_page main {
        padding: 50px 0 200px;
    }
    .enter_page {
        display: flex;
        flex-direction: column;
        height: 100dvh;
    }
    .enter_page header {
        height: 100%;
    }
    .enter_page .header_include {
        flex-shrink: 0;
    }
    .enter_page main {
        flex-grow: 1;
        overflow-y: hidden;
    }
    .enter_page header .container {
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }
    .enter_page main {
        height: auto;
    }
    .enter_page header .container .logobox {
        gap: 35px;
    }
    header .container {
        flex-direction: column-reverse;
    }    
    header .container .logobox {
        transform: translateX(0);
    }
    header .container .gnb {
        flex-direction: column;
        gap: 15px;
        display: none;
    }
    .enter_page header .container .gnb {
        display: flex;
        flex-direction: row;
    }
    header .container .gnb.on {
        display: flex;
    }
    

    
    header .container .gnb li a,
    header .container .gnb .lnb li a {
        padding: 10px 1.2vw;
        text-align: center;
        font-size: 15px;
    }
    /* 모바일 헤더 버튼 */
    .m_menu_btn {
        display: block;
    }
    
    /* lnb 오픈용 토글 버튼 */
    header .btn_toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        font-size: 12px;
        color: var(--main-color);
        cursor: pointer;
    }
    /* lnb의 a와 button을 정렬하기 위해서 */
    header .container .gnb > li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    header .container .gnb > li > a {
        flex-grow: 1;
    }
    /* ❌ 모바일에서는 마우스 hover 스타일이 작동하지 않도록 강제 차단 */
    header .container .gnb >li:hover .lnb {
        opacity: 0;
        visibility: hidden;
    }

    /* ⭕ 대신 자바스크립트가 부모 li에 .on을 붙여주면 그때 서브메뉴(LNB)를 띄우기 (absolute 상태 유지!) */
    header .container .gnb >li.on .lnb {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    /* 끝 */
    /* 메인페이지에서는 메뉴 그냥 보이게 */
    .enter_page .m_menu_btn {
        display: none;
    }
    /* active */
    header .container .gnb > li::after {
        width: 100%;
        border-radius: 0;
        height: 1px;
    }
    /* sub 페이지 공통 */
    .sub_page .main-figure {
        width: calc(100% - 8vw);
    }

    /* .sub_page main h2, .sub_page .section1, .sub_page .sub_beige_row .textbox, .about_page .section3 .about_slide {
        width: calc(100% - 8vw);
    } */
    .sub_page main h2, .sub_page .centerbox, .sub_page .sub_beige_row .textbox, .about_page .section3 .about_slide,
    .sub_page section .listWrap,
    .sub_page .table_wrap,
    .sub_page .progressWrap,
    .sub_page.share_page .memoPad .title_desc {
        width: calc(100% - 8vw);
    }
    .teachers_page .section3 .artwork_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .about_page .section1 article p span {
        display: block;
        margin-top: 28px;
    }
    /* 정규클래스 페이지 */
    .regular_page .section2 .textbox > li {
        padding: 25px;
    }
    .sub_page .memoPad .textbox {
        flex-direction: column;
        gap: 60px;
    }
    .sub_page .memoPad .textbox > li {
        width: 100%;
    }
    .sub_page .memoPad h4 {
        font-size: 23px;
    }
    .oneday_page .onedayWrap {
        grid-template-columns: repeat(2, calc((100% - 80px) / 2));
        width: calc(100% - 8vw);
        gap: 40px;
    }
    #pastExhTarget {
        grid-template-columns: repeat(2, calc((100% - 80px) / 2));
        gap: 40px;
    }
    .banner_link {
        flex-direction: column-reverse; /* 모바일에서는 이미지가 위, 글이 아래로 배치 */
    }
    
    .banner_img_box {
        width: 100%;
        height: 240px; /* 모바일 전용 높이 고정 */
    }
    
    .banner_txt_box {
        padding: 30px;
        text-align: center; /* 모바일에서는 가운데 정렬이 정갈합니다 */
    }
    .banner_title {
        font-size: 22px;
    }
    .exhibition_page .paged_list .exhIngItemFig {
        /* aspect-ratio: 450/630; */
    }
    .share_page .shareFig {
        aspect-ratio: 335/210;
    }
    .share_page main h2 {
        margin-bottom: 50px;
    }
    .share_page .sectionboxes .p_flexbox {
        padding: 60px 0;
    }
    .share_page table tbody th {
        word-break: keep-all;
    }
    .contact_page .contact_container {
        flex-direction: column;
        gap: 70px;
    }
    .contact_page .contact_container .contact-figure {
        margin-left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 890px) {
    .teachers_page .section2 {
        grid-template-columns: 1fr;
        gap: 100px;
    }
    .teachers_page .section2 > div:last-child {
        grid-row: 3;
        grid-column: 1;
    }
}
@media screen and (max-width: 885px) {
    .sub_page .listWrap {
        justify-content: start;
    }
}
@media screen and (max-width: 773px) {
    .enter_page header .container .gnb {
        flex-direction: column;
    }
    .application_page main .poster_header {
        flex-direction: column;
        gap: 40px;
    }
    .application_page main .header_right {
        flex-direction: row;
        align-items: flex-start;
    }
}
@media screen and (max-width: 640px) {
    .mo_br {
        display: block;
    }
    .sub_page .main-figure {
        height: 56vw;
    }
    .sub_page main h2 {
        font-size: 32px;
        padding-top: 60px;
    }
    .sub_page section {
        padding: 60px 0 150px;
    }
    .sub_page main p {
        font-size: 18px;
    }
    .about_page .section1 article {
        gap: 28.8px;
    }
    .sub_page h3 {
        font-size: 25px;
    }
    .oneday_page h3 {
        text-align: center;
    }
    .sub_page main .banner_desc {
        text-align: center;
    }
    /* .about_page h3 {
        padding-left: 20px;
    } */
    .sub_page .sub_beige_row {
        align-items: flex-start;
        padding: 80px 4vw;
        box-sizing: border-box;
    }
    .sub_page .sub_beige_row .textbox {
        width: 100%;
    }
    .sub_page .sub_beige_row .feature-item {
        gap: 10px;
        padding: 20px 0;
    }
    .sub_page .sub_beige_row .num {
        font-size: 32px;
        width: 30px;
    }
    .sub_page .sub_beige_row .feature-item h4 {
        font-size: 21px;
    }
    .sub_page .sub_beige_row .feature-item p,
    .sub_page .sub_beige_row .feature-item .item_dot {
        font-size: 18px;
    }
    .teachers_page .section3 .artwork_list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sub_page .memoPad .textbox > li .num {
        font-size: 46px;
    }
    .sub_page .memoPad {
        padding: 80px 0;
    }
    .regular_page .section4 table th {
        width: 80px;
    }
    .sub_page .listWrap > li {
        font-size: 18px;
        line-height: 1.5em;
        border-radius: 10px;
    }
    .sub_page.regular_page .listWrap > li {
        line-height: 30.6px;
    }
    .sub_page table th, .sub_page table td {
        font-size: 16px;
    }
    .sub_page .listWrap > li::before {
        top: 22px;
    }
    .oneday_page .onedayWrap {
        gap: 20px;
        grid-template-columns:repeat(2, calc((100% - 40px) / 2));
    }
    .sub_page .progressWrap > li .progress_title {
        min-width: auto;
        padding: 20px;
        flex-wrap: wrap;
    }
    #pastExhTarget {
        grid-template-columns: repeat(2, calc((100% - 40px) / 2));
        gap: 60px 20px;
    }
    .sub_page .progressWrap {
        gap: 68px;
    }
    .sub_page .progressWrap > li {
        align-items: center;
    }
    .sub_page .progressWrap > li::after {
        top: calc(100% + 25px);
    }
    .sub_page .progressWrap .consult_title {
        font-size: 19px;
        flex-shrink: 0;
    }
    .sub_page .progressWrap .consult_time {
        font-size: 16px;
    }
    .sub_page .progressWrap .consult_desc {
        font-size: 21px;
        text-align: center;
    }
    .sub_page .progressWrap .consult_desc > small {
        font-size: 16px;
        line-height: 1.7em;
        margin-top: 10px;
    }
    .exhibition_page .paged_list .tagBox .exh_number {
        font-size: 16px;
    }
    .exhibition_page .paged_list .exh_title {
        font-size: 23px;
        margin-bottom: 6px;
    }
    .exhibition_page .paged_list .artist_name {
        font-size: 17px;
    }
    .exhibition_page .paged_list .exh_date {
        font-size: 15px;
    }
    .exhibition_page .section2 .paged_list .tagBox {
        margin-bottom: 10px;
    }
    .exhibition_page .section2 .paged_list .exh_info {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .application_page .poster_container {
        padding: 70px 5vw;
    }
    .application_page main .poster_title {
        font-size: 41px;
    }
    .application_page main .header_right .timebox {
        font-size: 25px;
    }
    .application_page main .header_right .sub_badge {
        font-size: 20px;
    }
    .application_page main .poster_content {
        padding: 140px 0;
    }
    .application_page main .poster_content .info_list {
        gap: 80px;
    }
    .application_page main .poster_content .info_title {
        font-size: 25px;
    }
    .application_page main .poster_content .info_desc {
        font-size: 18px;
    }
    .btn_copy,
    .go_tel {
        font-size: 14px;
    }
}
@media screen and (max-width: 514px) {
    .sub_page table .td_ul > .td_dot::before {
        top: 9px;
        transform: translateY(0);
    }
    .sub_page table .td_ul > .td_dot {
        line-height: 24px;
    }
    .share_page table tbody th {
        padding: 0 10px;
        box-sizing: border-box;
    }
    .sub_page table .td_flexbox {
        padding: 15px;
    }
    .contact_page .contact_h2 {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }
}
@media screen and (max-width:478px) {
    /* 푸터 */
    .footer_inner {
        width: 100%;
        padding: 50px 0;
        box-sizing: border-box;
        flex-direction: column;
        gap: 30px;
    }
    .footer_inner .biz_info .info_row>ul>li:first-of-type::after {
        top: 5px;
        transform: translate(-50%, 0);
    }
    .footer_inner .biz_info .info_row>ul>li:last-of-type {
        word-break: keep-all;
    }
    .footer_inner li, .footer_inner a {
        color: var(--footer-contents-color);
    }
    /*  */
    .sub_page main h2, .sub_page .centerbox, .about_page .section3 .about_slide,
    .sub_page .memoPad .textbox,
    .sub_page section .listWrap,
    .sub_page .table_wrap,
    .sub_page .progressWrap,
    .sub_page.share_page .memoPad .textbox,
    .sub_page.share_page .memoPad .title_desc  {
        width: calc(100% - 40px);
    }
    .sub_page .sub_beige_row {
        padding: 80px 20px;
    }
    .teachers_page .section3 .artwork_list .artwork_item {
        min-height: 310px;
    }
    .sub_page section .listWrap {
        border-radius: 10px;
        padding: 20px;
        gap: 13px;
    }
    /*  */
    .floating_group {
        bottom: 20px;
        right: 20px;
    }
    .sub_page.share_page .memoPad h3 {
        padding-bottom: 50px;
    }
}
@media screen and (max-width:374px) {
    .btn_copy,
    .go_tel {
        margin-left: 5px;
    }
    .sub_page .sub_beige_row .feature-item .item_dot {
        line-height: 25.6px;
    }
    .sub_page .sub_beige_row .feature-item .item_dot>li::before {
        top: 10px;
        transform: translateY(0);
    }
    .exhibition_page .filter_group > button {
        font-size: 14px;
        padding: 8px 10px;
    }
    .share_page .section4 h3 {
        text-align: center;
    } 
}