/* header */
.header {
    position: relative;
    z-index: 100;
    width: 1520px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header > .side {
    margin: 39px 0 0 22px;
    line-height: 20px
}
.header > h1 {
    padding: 20px 0;
    margin-right: 32px;
    line-height: 60px;
}
.header > h1 img {
    vertical-align: middle;
    max-height: 57px;
    width: 215px;
}
.header > .logo-item a {
	font-size: 24px;
	color: #888;
}
.header > .logo-item a:hover {
	color: #444;
}
.header > .sub_meun {
    display: flex;
    height: 100%;
}
.header > .sub_meun > div {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header > .sub_meun > div:nth-child(1) {
    width: max-content;
}
.header > .sub_meun > div:nth-child(2) {
    width: 40px;
    cursor : pointer;
}
.header > .sub_meun a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 17.5px;
    margin-right: 40px;
    cursor : pointer;
    display: block;
}
.header > .sub_meun a:hover {
    color: #fff;
    background-color: #81b240;
    border-color: #81b240;
}
.header > .sub_meun > div > div {
    background-color: #000000;
    width: 100%;
    height: 4px;
}
.header > .sub_meun > div > div:nth-child(2) {
    background-color: transparent;
}

/* gnb */
.gnb {
    float: right;
    position: relative;
    z-index: 1;
    max-width: 742px;
    height: 100%;
    font-size: 13px;
    margin-right: 66px;
}
.gnb a {
    text-decoration: none;
    white-space: nowrap;
}
.gnb > ul > li {
    float: left;
    position: relative;
    text-align: center;
}
.gnb > ul:after {
    display: block;
    clear: both;
}
.gnb > ul > li > a {
    display: block;
    position: relative;
    padding: 0 25px;
    line-height: 100px;
    font-size: 18px;
    font-weight: 800;
    color: #333;
}
.gnb > ul > li > a:hover,
.gnb > ul > li > a:focus,
.gnb > ul > li > a:focus,
.gnb > ul > li.on > a {
    color: #333;
    z-index: 200;
}
.gnb > ul .depth2 {
    text-align: center;
    display: none;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    padding: 8px 0;
    border-radius: 5px;
    background-color: #82b242;
}
.gnb > ul .depth2 > li {
    position: relative;
}
.gnb > ul .depth2:after {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
}
.gnb > ul .depth2 a {
    display: block;
    position: relative;
    padding: 0 30px;
    line-height: 40px;
    font-size: 15px;
    color: white;
    transition: all 0.2s ease;
}
.gnb > ul .depth3 {
    display: none;
    position: absolute;
    top: 0px;
    left: 0%;
    z-index: 2;
    padding: 8px 0;
    background-color: #333;
}
/* .gnb > ul .depth2 > li.more > a:after {
    text-align: center; 
    position: absolute;
    right: 20px;
    content: '>';
} */
.gnb > ul .depth2 li a:hover {
    color: #333;
}

/* 서브 메뉴 */
#subMenu {
    position: fixed;
    right: -100%;
    top: 0; 
    width: 100%;
    height: 100%;
    background-color: #515254;
    z-index: 1000;
    transition: right 0.5s;
}
#subMenu header {
    height: 10%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#subMenu header > div {
    color: white;
    display: flex;
    align-items: center;
}
#subMenu header > div > a {
    display: block;
    padding: 5px 30px;
    border: 1px solid #868688;
    border-radius: 25px;
    margin-right: 15px;
    cursor: pointer;
}
#subMenu a,
#subMenu a:hover,
#subMenu a:visited {
    color: white;
}
#subMenu header > div > svg {
    cursor: pointer;
}
#subMenu > div {
    height: 60%;
    width: 80%;
    margin: 5% auto;
}
#subMenu > div > ul {
    border-left: 1px solid #5c5d5f;
    display: grid;
    grid-template-columns: repeat(5, 20%);
}
#subMenu > header > div > a:hover {
    background-color: #fff !important;
    color: #666666 !important;
}
#subMenu > div > ul > li {
    padding: 70px 0 0 20px;
    border-right: 1px solid #5c5d5f;
}
#subMenu > div li > a {
    display: block;
    color: white;
}


#subMenu > div .menu_title {
    font-size: 30px;
    margin-bottom: 70px;
    font-weight: bold;
}
#subMenu > div .menu_title:hover, .menu_list li a:hover {
    color: #81b240 !important;
}
#subMenu .menu_list a {
    font-size: 16px;
    padding: 10px 0;
}
#subMenu > .reservation {
    font-size: 16px;
    width: max-content;
    padding: 10px 50px;
    border: 1px solid white;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}
/* /header */

/* 슬라이더 */
.swiper_layout_box {
    margin-bottom: 50px;
}
.swiper-container { /* 메인슬라이드 높이 */
    height: 900px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 80px;
}
.swiper-container > div > div {
    display: table;
    height: 600px;
    color: #fff;
    background-size: cover;
}
.swiper-container > div > div > div {
    display: table-cell;
    vertical-align: middle;
}
.swiper-container > div > div > div > div {
    width: 1320px;
    margin: 0 auto;
}
.swiper-container h1 {
    font-weight: 700;
    margin: 0 0 19px 0;
    font-size: 60px;
    line-height: 70px;
    text-decoration: none;
}
.swiper-container p {
    font-size: 18px;
    line-height: 32px;
}
.swiper-button {
    position: absolute;
    top: 50%;
    display: none;
    margin:-25px 0 0 0;
}
.swiper-container:hover .swiper-button {
    display: block;
}
.swiper-button.left {
    left: 20px;
}
.swiper-button.right {
    right: 20px;
}
.swiper-button i {
    width: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 24px;
    color: #a3a29e;
}
.swiper-button button {
    background-color: #00000000;
    border: 1px solid #a3a29e;
    border-radius: 50px;
    cursor: pointer;
}
.swiper-button:hover  button {
    border-color: #fff !important;
    background-color: #fff !important;
    color: #000 !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
    content: none !important;
}
.swiper-button-next, .swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
}
.swiper-pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 5px;
    width: 100%;
}
.swiper-pagination-switch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #ccc;
    opacity: 0.6;
    margin: 0 3px;
    cursor: pointer;
}
.swiper-active-switch {
    background: #2d4e9f;
    opacity: 2;
    width: 15px;
}
.main_slide {
    font-family: 'Noto Sans KR', sans-serif !important;
    color: #333;
}
.main_slide h4 {
    font-size: 18px;
    color: #81b240;
    font-weight: 800;
    margin-bottom: 38px;
}
.slide_02 h4 {
    color: #a58ed9;
}
.main_slide h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -3px;
    font-family: 'Noto Sans KR', sans-serif !important;
    margin-bottom: 47px;
}
.slide_04 h1 {
    margin-bottom: 0;
}
.main_slide ul {
    margin-bottom: 30px;
}
.main_slide h1 strong {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Noto Sans KR', sans-serif !important;
}
.main_slide>div>p {
    font-size: 24px;
    margin-bottom: 20px;
}
/* .slide_01>div>ul, .slide_02>div>ul {
    width: 423px;
    height: 185px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #81b240;
    margin-bottom: 54px;
} */
.slide_01>div ul li {
    width: 450px;
    height: 100px;
    background-color: #fff;
    border-radius: 25px;
    border: 3px dotted #106663;
}
.slide_01>div ul li:last-child {
    border-color: #3a4573;
}
.slide_02>div>ul {
    border: 1px solid #a58ed9;
}
.main_slide>div>ul li {
    display: flex;
    align-items: center;
}
.main_slide>div>ul li p {
    margin-left: 17px ;
}
.main_slide>div>ul li strong {
    color: #106663;
}
.slide_01>div>ul li:first-child {
    margin-bottom: 15px;
}
.slide_02>div>ul li strong {
    color: #a58ed9;
}
.main_slide>div>ul span {
    display: inline-block;
    width: 20%;
    height: 100%;
    background-color: #579594;
    border-top-left-radius: 19px;
    border-bottom-left-radius: 19px;
    text-align: center;
    line-height: 89px;
    font-size: 20px;
    color: #fff;
    font-weight: 900;
}
.slide_01>div>ul li:last-child span {
    background-color: #515f8c;
}
.slide_01>div>ul li:last-child p {
    color: #515f8c;
    font-weight: 700;
}
.slide_02>div>ul span {
    background-color: #a58ed9;
}
.main_slide> a {
    color: red;
}
.main_slide>span a {
    font-size: 16px;
    font-weight: 700;
    margin-left: 17px;
}
.main_slide i {
    display: inline-block;
    color: #d9d9d9;
    font-size: 20px;
    margin-left: 10px;
    transition: all 0.2s ease;
}
.main_slide>div a:hover, .main_slide>div a:hover i {
    color: #81b240;
}
.main_slide>div a {
    display: flex;
    align-items: center;
    font-weight: 700;
}
.main_slide>div a span {
    font-size: 26px;
    margin-right: 5px;
}
.slide_03 h1 span, .slide_04 h1 span {
    font-size: 60px;
}
.slide_03>div>p, .slide_04>div>p {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 30px;
    color: #666666;
    font-weight: 500;
}
.slide_03>div>p>span:nth-child(2) {
    color: #fff;
    background-color: #333;
    padding: 1px;
}
.slide_03>div>p>strong {
    border-bottom: 1px solid #333;
}
.slide_03 ul, .slide_04 ul {
    display: flex;
    position: relative;
}
.slide_03 ul li {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #95ce8190;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.slide_03 ul li:nth-child(2) {
    background-color: #82c69e90;
    position: absolute;
    top: 0;
    left: 132px;
}
.slide_03 ul li:nth-child(3) {
    background-color: #afaf7190;
    position: absolute;
    top: 0;
    left: 263px;
}
.slide_04 ul li {
    width: 140px;
    height: 78px;
    border-radius: 39px;
    background-color: #afaf7190;
    margin-right: 10px;
    font-size: 22px;
    transition: all 0.1s ease-in;
}
.slide_04 ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 78px;
}
.slide_04 ul li a:hover {
    color: #fff !important;
}
.slide_04 ul  li:nth-child(2) {
    background-color: #95ce8190;
}
.slide_04 ul  li:nth-child(3) {
    background-color: #82c69e90;
}
.slide_04 ul  li:nth-child(4) {
    background-color: #8ec9c790;
}
.slide_04 ul  li:nth-child(1):hover {
    background-color: #afaf71;
}
.slide_04 ul  li:nth-child(2):hover {
    background-color: #95ce81;
}
.slide_04 ul  li:nth-child(3):hover {
    background-color: #82c69e;
}
.slide_04 ul  li:nth-child(4):hover {
    background-color: #8ec9c7;
}
.slide_04>div>p {
    margin: 40px 0;
}
/* /슬라이더 */

/* 후기 & 상담 위젯 */
.home > div:nth-child(1) {
    padding-bottom: 80px;
}
.home .widget_box {
    background-color: white;
    border-radius: 30px;
}
.home .widget_box > div, 
.home .intro_box > .common_layout_box_1400 {
    width: 1320px;
    padding: 80px 0;
    margin: 0 208px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.margin_contbox {
    margin: 0 auto !important;
}
.otalab {
    padding-top: 100px !important;
}
.academic {
    margin-top: 150px !important;
    margin-bottom: 168px !important;
}
.academic .contnet_box .text_box ul {
    margin-bottom: 44px;
}
.home .intro_box .main_card > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home .widget_box > div:nth-child(1) {
    border-bottom: 1px solid #efefef;
}
.home .widget_box > div > div:nth-child(1) {
    width: 25%;
}
.home .widget_box > div > div:nth-child(2) {
    width: 70%;
}
.home .widget_box h3,
.home .intro_box h3 {
    color: #757575;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 28px;
}
.home .widget_box h1 {
    color: #000000;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -4px;
}
.home .widget_box p,
.home .intro_box p {
    color: #a3a3a3;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 30px;
}
.home .widget_box button {
    color: #a3a3a3;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    background-color: white;
    padding: 16px 60px;
    border: 1px solid #dadada;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.home .widget_box button:hover {
    color: #ffffff;
    background-color: #a3a3a3;
}

/* 치료정보 */
.home .card_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.home .main_card {
    background-color: #d2d2d2;
    border-radius: 8px;
    aspect-ratio: 20 / 13;
    display: flex;
    justify-content: center;
    align-items: center
}
.home .main_card:hover {
    background : linear-gradient( to left bottom, #81b240 45%, #2e4da0 90%);
    box-shadow: 5px 7px 10px #cfced2;
}
.home .main_card > div {
    background-color: #ffffff;
    border-radius: 7px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    cursor: pointer;
}
.home .main_card > div:hover {
    background-color: #ffffff;
    border-radius: 6px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
}
.home .widget_box .main_card > div > div {
    margin: 25px 20px 15px 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: relative;
}
.home .widget_box .main_card  h3 {
    width: 100%;
    color: #2b2b2b;
    font-size: 19px;
    font-weight: 800;          
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 15px;
}
.home .widget_box .main_card p {
    color: #b8b8b8;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.main_card_tag {
    color: #fff;
    font-size: 14px;
    background-color: rgb(217, 217, 217);
    border-radius: 20px;
    padding: 4px 9px;
    width: max-content;
}
/* 온러인상담 */
.home .list_box {
    height: 100%;
}
.home .list_box table {
    width: 100%;
    max-height: 100%;
    border-collapse: collapse;
}
.home .list_box table > tbody > tr {
    cursor: pointer;
}
.home .widget_box .list_box thead tr th {
    color: #666666;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    background-color: #f5f5f5;
    font-size: 17px;
    font-weight: 400;
}
.home .widget_box .list_box tbody tr th,
.home .widget_box .list_box tbody tr td {
    color: #999999;
    font-size: 19px;
    font-weight: 600;
    border-bottom: 1px solid #dedede;
    background-color: #ffffff;
}
.home .widget_box .list_box #list_content tr .date_fontsize {
    font-size: 17px !important;
}
.home .widget_box .list_box tbody tr th {
    text-align: center;
}
.home .widget_box .list_box tbody tr:hover td:nth-child(2)::after {
    content: '•';
    color: #92c949;
    font-weight: bold;
    display: inline-block; 
    font-size: 20px;
    position: absolute;
    left: 10px; 
    top: 5px; 
}
.home .widget_box .list_box tbody tr:hover td:hover {
    color: #000000;
    font-weight: 800;
}
.home .widget_box .list_box tbody tr td {
    color: #666666;
    font-weight: 600;
    font-size: 18px !important;
    padding: 15px 0;
    width: 280px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    font-size: 19px;
    text-align: center;
}
.home .widget_box .list_box tbody tr td:nth-child(2) {
    text-align: left;
    padding-left: 20px;
}
.home .widget_box .list_box tbody tr th:first-child {
    font-size: 17px;
}
.home .widget_box .list_box tbody tr td a {
    display: block;
    width: 100%;
    height: 100%;
}
.top_img img {
    margin-left: -94px;
}
.top_img p {
    margin: -5px 0 50px 0 !important;
    font-size: 32px !important;
    color: #2d4e9f !important;
}
.top_img p strong {
    border-bottom: 1px solid #2d4e9f;
    font-weight: 800;
}

.home .widget_box .list_box thead .number,
.home .widget_box .list_box tbody .number {
    width: 60px;
}

.home .widget_box .list_box thead .time,
.home .widget_box .list_box tbody .time {
    width: 100px;
}
.home .widget_box .list_box thead th:last-child,
.home .widget_box .list_box tbody td:last-child {
    width: 90px;
}
/* /후기 & 상담 위젯 */

/* 소개 */
/* 연구소 */
.home .intro_box {
    position: relative;
    width: 100%;
}
.home .intro_box > .common_layout_box_1400 {
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.home .intro_box h1 {
    color: #000000;
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -4px;
}

.home .intro_box h1 strong {
    font-weight: 700;
}
.home .intro_box > div > div:nth-child(1) {
    width: 35%;
}
.home .intro_box > div > div:nth-child(2) {
    width: 60%;
}
.home .intro_box .main_card {
    aspect-ratio: 8 / 11;
    border-radius: 20px;
}
.home .intro_box .main_card > div {
    border-radius: 20px;
}
.home .intro_box .main_card > div:hover {
    border-radius: 18px;
}
.home .intro_box .main_card .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home .intro_box .main_card .content h5 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    width: max-content;
}
.home .intro_box .main_card .content > div:nth-child(2) {
    color: white;
    font-size: 15px;
    font-weight: 900;
    background-color: #bbbbbb;
    width: 38px;
    border-radius: 50%;
    margin: 17px 0 70px 0;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.m_circle {
    display: none;
}
.home .intro_box .main_card .content > div:nth-child(3) {
    display: flex;
    align-items: center;
}
.home .intro_box .main_card .content > div:nth-child(3) > div {
    margin: 0 10px;
    height: 10px;
    width: 10px;
    position: relative;
}
.home .intro_box .main_card .content > div:nth-child(3) > div > div {
    width: 10px;
    height: 2px; 
    background-color: #797979;
    position: absolute;
}
.home .intro_box .main_card .content > div:nth-child(3) > div > div:nth-child(1) {
    transform: rotate(45deg); 
    top: -3.5px;
}
.home .intro_box .main_card .content > div:nth-child(3) > div > div:nth-child(2) {
    transform: rotate(135deg);
    top: 3.5px;
}
.home .intro_box .main_card img {
    width: 63px;
    height: 80px;
    border: 1px solid #9fa69c;
}
.home .intro_box > .bottom_bg_color {
    background-color: #f5f5f5;
    height: 330px;
    width: 95%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    bottom: -37px;
    z-index: 0;
}
.home .intro_box .text_box .btn_box {
    margin-top: 100px;
}
.home .intro_box .text_box .btn_box > div, .m_show_btn > div {
    background-color: white;
    width: 340px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    cursor : pointer;
}
.m_show_btn > div a {
    display: flex;
}
.home .intro_box .text_box .btn_box > div:nth-child(1), .m_show_btn > div:nth-child(1) {
    margin-bottom: 15px;
}
.home .intro_box .text_box .btn_box > div:hover, .m_show_btn > div:hover  {
    box-shadow: 5px 5px 7px #cfced2;
}
.home .intro_box .text_box .btn_box img, .m_show_btn img {
    width: 52px;
    height: 52px;
    margin-right: 20px;
}
.home .intro_box .text_box .btn_box h6, .m_show_btn h6 {
    color: #666666;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 2px;
}
.m_show_btn {
    display: none;
}
.m_show_btn > div {
    border: 1px solid #d2d2d2; 
    width: 100%;
    height: 100px;
}
.m_show_btn h6 {
    font-size: 16px;
}
.home .intro_box .text_box .btn_box h6 strong, .m_show_btn h6 strong {
    font-weight: 800;
}
.home .intro_box .text_box .btn_box p {
    font-size: 16px;
    margin-bottom: 0;
}
.m_showbox {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.m_show_btn h6 p {
    font-size: 14px;
}
.m_showbox ul {
    margin-bottom: 50px;
}
.m_showbox ul li {
    font-size: 15px !important;
}
.m_showbox ul li::before {
    font-size: 25px !important;
    left: 1px !important;
    bottom: -6px !important;
}

/* 원장 */
.home .intro_box:nth-child(2) > div > div:nth-child(1) {
    width: 40%;
}
.home .intro_box:nth-child(2) > div > div:nth-child(2) {
    width: 55%;
}
.home .intro_box:nth-child(2) li {
    font-weight: 600;
    font-size: 18px;
    padding-left: 18px;
    margin-bottom: 2px;
    position: relative;
}
.home .intro_box:nth-child(2) li::before {
    font-size: 28px;
    color: #666666;
    content: '•';
    position: absolute;
    left: 0;
    bottom: -6px;
}
.home .intro_box:nth-child(2) > .bottom_bg_color {
    margin-left: 5%;
    transform: rotate(180deg);
    bottom: -14px !important;
}
.home .intro_box .link_box {
    margin-top: 70px;
    display: flex;
}
.home .intro_box .link_box > .main_card{
    width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-right: 30px;
}
.home .intro_box .link_box .main_card > div,
.home .intro_box .link_box .main_card > div:hover {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home .intro_box .link_box .main_card img {
    border: 0;
    height: 51px;
    margin-bottom: 15px;
}
.home .intro_box .link_box .main_card h4 {
    font-size: 21px;
    font-weight: 400;
    border: 0;
    height: 40px;
}
.home .intro_box p br:last-child {
    display: none;
}
.home .intro_box .academic .contnet_box p br {
    display: block !important;
}
.home .intro_box .ledger_img {
    position: relative;
}
.home .intro_box .ledger_img img {
    position: absolute;
}
.home .intro_box .pattern {
    height: 344px;
    top: -326px;
    right: -282px;
}
.home .intro_box .poster {
    width: 318px;
    top: -221px;
    left: 2px;
}
.home .intro_box .ledger {
    width: 463px;
    bottom: -347px;
    left: 200px;
}
/* /소개 */

/* 지도 */
.home_map {
    padding: 80px 0;
    margin-top: 80px;
}
.home_map > .common_layout_box_1400 {
    background-color: white;
    padding: 80px;
    border-radius: 30px;
    display: flex;
    /* justify-content: space-between; */
}
.home_map .daum_box {
    width: 806px;
    height: 496px;
    aspect-ratio: 12 / 8;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
}
.home_map .daum_box > .root_daum_roughmap {
    width: 100%;
    height: 100%;
}
.home_map .daum_box .wrap_map {
    height: 100%;
}
.root_daum_roughmap .wrap_controllers {
    display: none;
}
.home_map .content_box {
    margin-left: 86px;
}
.home_map .content_box > h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
}
.home_map .content_box ul {
    margin-bottom: 60px;
}
.home_map .content_box li {
    color: #979797;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}
.home_map .content_box li span {
    display: inline-block;
    width: 100px;
}
.home_map .content_box strong > span  {
    display: inline;
}
.home_map .content_box > ul:nth-child(2) > li:nth-child(3) {
    margin-top: 17px;
}
.home_map .content_box strong {
    color: #444;
    font-size: 24px;
}
.home_map .content_box strong > span {
    font-size: 18px;
    font-weight: 500;
}
.home_map .content_box > div {
    width: 388px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.home_map .content_box a {
    color: white;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    padding: 12px 0;
    border-radius: 24px;
    display: block;
    cursor : pointer;
    transition: all 0.15s ease;
    display: block;
}
.home_map .content_box a:hover {
    color: white;
    box-shadow: 3px 3px 6px #b8b8b8;
}
.home_map .content_box a:nth-child(1) {
    background-color: #c5b9ad;
}
.home_map .content_box a:nth-child(2) {
    color: #000000;
    background-color: #f1f1f1;
}
.home_map .content_box a:nth-child(3) {
    background-color: #82b242;
}
.home_map .content_box a:nth-child(4) {
    background-color: #2d4e9f;
}
.home_map .content_box a svg {
    color: white;
    height: 22px;
    margin-bottom: 5px;
}
/* /지도 */

/* footer */
.footer {
    background-color: #515254;
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.footer p, .footer a, .footer span, .footer div {
    color: #b3b4b6;
    font-weight: 600;
    font-size: 13px;
}
/* .footer p, .footer div {
    margin-bottom: 5px;
} */
.footer > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer > div:first-child {
    margin-bottom: 25px;
}

.footer .line {
    background-color: #b3b4b6;
    height: 8px;
    width: 1px;
    margin: 0 5px;
}
.footer > a {
    width: 108px;
    display: block;
    position: absolute;
    top: 30px;
    right: 10%;
}
.footer .footer_text1 a {
    margin : 0 10px
}
/* /footer */

/* quickMenu */
.q_menu {
    color: #666666;
    width: 90px;
    height: 540px;
    border-radius: 45px;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 8px 8px rgb(0 0 0 / 10%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 99999;
    transition: height 0.5s ease, padding-top 0.5s ease, padding-bottom 0.5s ease;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
}
.q_menu.no-padding,.q_menu_m.no-padding  {
    padding: 0;
}
.q_menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
}
.q_menu li span {
    margin-top: 5px;
}
.q_menu li img {
    height: 30px;
    width: fit-content;
}
.q_menu li #closeSubMenu {
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.q_menu_m {
    color: #666666;
    width: 342px;
    height: 80px;
    border-radius: 45px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 8px 8px rgb(0 0 0 / 10%);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 9px;
    z-index: 99999;
    transition: opacity 0.5s ease, right 0.5s ease;
    transform: translateX(0);
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
}
.q_menu_m.hidden {
    opacity: 0;
    right: -342px;
}
.q_menu_m span {
    font-size: 12px;
}
.q_menu_m li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.q_menu_m li img {
    height: 25px;
    width: fit-content;
    margin-bottom: 3px;
}

/* ----------- 미디어쿼리 시작 -----------*/
/* 1720 */
@media all and (max-width: 1720px) {
    .header {
        width: 85%;
    }
    .swiper-container {
        height: 50vw;
    }
    .swiper-container > div > div > div > div {
        width: 85%;
    }
    .margin_contbox {
        margin: 0 auto !important;
    }
    .main_slide h1 {
        font-size: 2rem;
        line-height: 3.5rem;
        margin-bottom: 30px;
    }
    .main_slide h1 strong {
        font-size: 3rem;
    }
    .main_slide h4 {
        margin-bottom: 2vw;
    }
    .home .intro_box > .common_layout_box_1400 {
        justify-content: space-around;
    }
    .home .widget_box h1, .home .intro_box h1 {
        font-size: 3rem;
    }
    .home .widget_box > div {
        width: 85%;
        margin: 0 auto !important;
        padding: 3.65vw 0;
    }
    .top_img p {
        font-size: 1.75rem !important;
    }
    .academic {
        margin-top: 50px !important;
    }
    .home .intro_box .ledger {
        width: 23.9vw;
    }
    .home .intro_box .poster {
        left: -4vw;
    }
    .home .intro_box .pattern {
        right: -5.6vw;
    }
    .home_map > .common_layout_box_1400 {
        padding: 3.6vw;
    }
    .home_map .content_box {
        margin-left: 3vw;
    }
    .home_map .content_box > h2 {
        margin-bottom: 19px;
    }
    .home_map .content_box ul {
        margin-bottom: 35px;
    }
}

/* 1500 */
@media all and (max-width: 1500px) {
    .header > h1 img {
        width: 12vw;
    }
    .gnb {
        margin-right: 4.4vw;
    }
    .header > .sub_meun a {
        margin-right: 1.6vw;
    }
    .header > .sub_meun > div:nth-child(2) {
        width: 30px;
    }
    .home .widget_box h3, .home .intro_box h3 {
        font-size: 1.7rem;
        margin-bottom: 14px;
    }
    .top_img p {
        font-size: 1.5rem !important;
    }
    .main_slide h4 {
        margin: 50px 0 0 0 ;
    }
    .main_slide h1 {
        line-height: 3rem;
        margin-bottom: 15px;
    }
    .slide_03 h1 span, .slide_04 h1 span {
        font-size: 2rem;
    }
    .main_slide>div>ul span {
        width: 15%;
    }
    .slide_03>div>p, .slide_04>div>p {
        line-height: 25px;
    }
    .slide_03 ul li {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }
    .slide_03 ul li:nth-child(2) {
        left: 100px;
    }
    .slide_03 ul li:nth-child(3) {
        left: 200px;
    }
    .slide_04 ul li {
        width: 120px;
        height: 56px;
        font-size: 1rem;
    }
    .slide_04 ul li a {
        line-height: 56px;
    }
    .home .widget_box p, .home .intro_box p, .main_slide>div>p, .main_slide>div>ul li p {
        font-size: 1rem;
    }
    .home .widget_box .list_box thead tr th, .home .widget_box .list_box tbody tr td {
        font-size: 16px !important;
        padding: 0.6vw 0;
    }
    .home_map .content_box li {
        font-size: 1rem;
    }
    .home_map .content_box li span {
        width: 60px;
    }
    .home_map .content_box strong, .home_map .content_box > h2 {
        font-size: 1.2rem;
    }
    .home_map .daum_box {
        height: 455px;
    }
}

/* 1320 */
@media all and (max-width: 1320px) {
    .home .intro_box .ledger {
        bottom: -319px;
    }
}

/* 1024 */
@media all and (max-width: 1024px) {
    .gnb > ul > li > a {
        font-size: 1rem;
        padding: 0 16px;
    }
    .swiper-container {
        height: 66vw;
    }
    .home .widget_box > div {
        width: 90%;
    }
    .home .widget_box > div > div:nth-child(2) {
        width: 72%;
    }
    .home .widget_box h3, .home .intro_box h3 {
        font-size: 1.2rem;
    }
    .home .widget_box h1, .home .intro_box h1 {
        font-size: 2.1rem;
    }
    .home .widget_box p {
        line-height: 21px;
    }
    .home .widget_box h3, .home .intro_box h3 {
        margin-bottom: 5px;
    }
    .top_img img {
        width: 300px;
        margin-left: -55px;
    }
    .widget_box  .list_box .top_img p {
        margin-bottom: 30px !important;
    }
    .home .widget_box .list_box thead .time, .home .widget_box .list_box tbody .time {
        width: 120px;
    }
    .home .widget_box button {
        padding: 10px 40px;
    }
    .lab .otalab .contnet_box .text_box p br {
        display: none;
    }
    .home .intro_box .main_card .content > div:nth-child(2) {
        margin: 17px 0 30px 0;
    }
    .home .intro_box .text_box .btn_box {
        margin-top: 78px;
    }
    .home .intro_box > .bottom_bg_color {
        height: 24.7vw;
        bottom: -3px;
    }
    .lab .bottom_bg_color {
        height: 27.7vw !important;
    }
    .home .intro_box:nth-child(2) > div > div:nth-child(1) {
        width: 35%;
    }
    .home .intro_box .pattern {
        height: 276px;
        top: -24.9vw;
        right: -8.5vw;
    }
    .home .intro_box .ledger {
        width: 30.9vw;
        bottom: -26.8vw;
        left: 9.7vw;
    }
    .home .intro_box .poster {
        width: 240px;
        top: -204px;
    }
    .home .intro_box .link_box .main_card img {
        width: 50px;
        height: 42px;
    }
    .home .intro_box .link_box .main_card h4 {
        font-size: 1rem;
    }
    .home .intro_box:nth-child(2) > .bottom_bg_color {
        bottom: -7px !important;
    }
}

/* 768 */
@media all and (max-width: 768px) {
    .swiper-container {
        height: 86vw;
    }
    .header > h1 img {
        width: 15vw;
    }
    .home_map > .common_layout_box_1400 {
        padding: 5.6vw;
    }
    .home .intro_box .ledger {
        display: none;
    }
    .home .intro_box .poster {
        width: 370px;
    }
    .home .intro_box .pattern {
        right: -11.5vw;
    }
}


/* 600 */
@media all and (max-width: 600px) {
    .dropdown-menu {
        padding: 0 0 0 3.3vw;
        top: 26px;
        --bs-dropdown-min-width : auto ;
    }
    /* main-slide */
    .swiper-container {
        height: 180vw;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        font-family: Raleway, NanumBarunGothic, Dotum, AppleGothic, Helvetica, sans-serif;
        margin-bottom: 0;
    }
    .swiper-wrapper .main_slide {
        width: 100vw;
        padding-top: 11vw;
    }
    .swiper-slide {
        background-size: cover ;
        background-position: bottom;
    }
    .swiper-button.left, .swiper-button.right {
        display: none !important;
    }
    .slider_01 {
        background-image: url(../img/main/m_main_slider01.jpg) !important;
    }
    .slider_02 {
        background-image: url(../img/main/m_main_slider02.jpg) !important;
    }
    .slider_03 {
        background-image: url(../img/main/m_main_slider03.jpg) !important;
    }
    .swiper-container > div > div > div > div {
        padding: 0 8.3vw;
        width: auto;
        margin: 0;
    }
    .main_slide>div a {
        font-size: 14px;
        line-height: 41px;
    }
    .main_slide h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .main_slide h1 {
        font-size: 5vw;
        line-height: 7.3vw;
        margin-bottom: 3vw;
    }
    .main_slide h1 strong {
        font-size: 30px;
    }
    .main_slide>div>p {
        font-size: 0.875rem;
        margin-bottom: 5px;
    }
    .main_slide > div > ul > li > p {
        font-size: 0.875rem;
    }
    .main_slide>div>ul li p {
        line-height: 4vw;
        margin-left: 3.5vw;
    }
    .slide_01>div ul li {
        width: 83vw;
        height: 16vw;
        border-radius: 3.2vw;
    }
    .main_slide>div>ul span {
        width: 12%;
        font-size: 16px;
        line-height: 15.4vw;
    }
    .main_slide>div>ul span {
        border-top-left-radius: 2.2vw;
        border-bottom-left-radius: 2.2vw;
    }
    .slide_01>div>ul li:first-child {
        margin-bottom: 10px;
    }
    .swiper-slide > div {
        display: flex !important;
    }
    .slide_01 ul {
        margin-bottom: 10px;
    }
    .slide_03 h1 span {
        font-size: 24px;
    }
    .slide_03 ul {
        margin-top: 20px;
    }
    .slide_03 ul li {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }
    .slide_03 ul li:nth-child(2) {
        left: 100px;
    }
    .slide_03 ul li:nth-child(3) {
        left: 200px;
    }
    .slide_03>div>p {
        line-height: 5.4vw;
        letter-spacing: -0.7px;
    }
    .slide_04>div>p {
        line-height: 5.4vw;
        margin: 4.17vw 0 6.2vw 0;
    }
    .slide_04 ul li {
        height: 45px;
        border-radius: 35px;
    }
    .slide_04 ul li a {
        font-size: 16px;
        line-height: 45px;
    }
    /* common */
    .m_show {
        display: flex !important;
    }
    .pc_show {
        display: none !important;
    }
    .q_menu {
        display: none;
    }
    .q_menu_m {
        width: 95%;
        display: flex ;
    }
    .q_menu_m li img {
        width: 5.2vw;
        height: 5.2vw;
    }
    /* include subMenu */
    #subMenu header {
        height: fit-content;
        background-color: #000;
        padding: 0 20px !important;
        justify-content: flex-end;
    }
    #subMenu header img {
        display: none;
    }
    #subMenu > div {
        width: 77%;
        margin: 0 auto;
    }
    #closeSubMenu_m {
        width: 25px !important;
        height: 25px !important;
    }
    #subMenu header > div {
        width: 100%;
        align-items: flex-end;
        flex-direction: column;
        padding-top: 20px;
    }
    #subMenu header > div > div {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin: 20px 0 24px 0;
    }
    #subMenu header > div > div a {
        font-size: 12px;
        padding: 4px 23px;
        border: 1px solid #fff;
        border-radius: 33px;
    }
    #subMenu > div > ul {
        display: flex;
        flex-direction: column;
        margin-top: 34px;
        border: 0;
    }
    #subMenu > div > ul > li {
        padding: 0;
        margin-bottom: 10px;
        padding: 17px 0;
        border-bottom: 2px solid #ffffff2d;
        border-right: 0;
    }
    #subMenu > div > ul > li:first-child {
        padding-top: 0;
    }
    #subMenu > div > ul > li:last-child {
        border: 0;
    }
    #subMenu > div > ul > li:first-child ul li:last-child a, #subMenu > div > ul > li:nth-child(2) ul li:last-child a,
    #subMenu > div > ul > li:nth-child(3) ul li:last-child a, #subMenu > div > ul > li:nth-child(4) ul li:last-child a, 
    #subMenu > div > ul > li:nth-child(5) ul li:last-child a {
        border-right: 0;
    }
    #subMenu > div > ul > li .menu_title {
        margin-bottom: 18px;
        font-size: 20px;
        line-height: 24px;
    }
    #subMenu > div > ul > li .menu_list {
        display: flex;
        flex-wrap: wrap;
    }
    #subMenu .menu_list a {
        font-size: 14px;
        line-height: 9px;
        border-right: 1px solid #767677;
        padding: 2px 12px 0 0 ;
        margin: 0 10px 15px 0;
    }
    .home .widget_box > div {
        width: 100%;
        padding: 10vw 0;
        margin: 0;
        flex-direction: column;
    }
    .home .widget_box > div > div:nth-child(1) {
        width: 95%;
        text-align: center;
    }
    .top_img {
        display: none;
    }
    .home .widget_box h3, .home .intro_box h3 {
        font-size: 20px;
        margin-bottom: 2.4vw;
    }
    .home .widget_box h1 {
        font-size: 34px;
    }
    .home .widget_box p, .home .intro_box p {
        font-size: 16px;
        line-height: 4.5vw;
    }
    .m_show_btn > div {
        align-items: center;
    }
    .home .widget_box button {
        padding: 8px 25px;
        margin-bottom: 16vw;
    }
    .home .widget_box > div > div:nth-child(2) {
        width: 90%;
    }
    .home .widget_box .list_box thead tr th:nth-child(1) {
        display: none;
    }
    .home .widget_box .list_box thead tr th:nth-child(4) {
        display: none;
    }
    .home .widget_box .list_box thead tr th:nth-child(5) {
        display: none;
    }
    .home .widget_box .list_box tbody .number {
        display: none;
    }
    .home .widget_box .list_box tbody td:last-child {
        display: none;
    }
    .home .widget_box .list_box tbody tr th:first-child {
        display: none;
    }
    .home .widget_box .list_box tbody tr th:nth-child(3) {
        display: none;
    }
    .home .widget_box .list_box tbody tr th:nth-child(5) {
        display: none;
    }
    .home .widget_box .list_box thead tr th {
        font-size: 16px;
    }
    .home .widget_box .list_box thead tr th, .home .widget_box .list_box tbody tr td {
        padding: 3vw 0 !important;
    }
    /* .home .widget_box .list_box thead tr th:nth-last-child(2) {
        text-align: right;
        padding-right: 7.2vw;
    } */
    .home .widget_box .list_box .hour {
        display: none;
    }
    .home .widget_box .list_box tbody tr td {
        font-size: 14px !important;
    }
    .home .widget_box .list_box tbody tr td {
        width: fit-content;
        font-size: 16px;
        padding: 3px 0;

    }
    .home .widget_box .list_box tbody .time {
        font-size: 12px !important;
    }
    .home .widget_box .list_box tbody tr th {
        font-size: 14px;
        text-align: right;
    }
    .home .widget_box > div:nth-child(1) {
        border: 0;
    }
    .home .widget_box .main_card > div > div {
        margin: 10px ;
    }
    .home .widget_box .main_card p {
        left: 0;
        bottom: -4.9vw;
    }
    .home .card_box {
        display: flex;
        flex-direction: column;
    }
    .home .main_card {
        aspect-ratio: 41 / 13 ;
    }
    .home .main_card:nth-child(5) {
        display: none;
    }
    .home .main_card:nth-child(6) {
        display: none;
    }
    .home .widget_box {
        margin-bottom: 20vw;
    }
    .home .widget_box > div, .home .intro_box > .common_layout_box_1400 {
        width: 100%;
    }
    .margin_contbox {
        margin: 0 !important;
    }
    .home .intro_box .main_card > div a {
        flex-direction: row;
    }
    .otalab {
        padding-top: 0 !important;
    }
    .intro_box > .common_layout_box_1400 {
        flex-direction: column;
    }
    .home .intro_box > div > div:nth-child(1) {
        width: 90%;
        text-align: center;
    }
    .home .intro_box h1 {
        font-size: 34px;
    }
    .btn_box {
        display: none;
    }
    .home .intro_box > div > div:nth-child(2) {
        width: 90% !important;
    }
    .home .intro_box .main_card {
        aspect-ratio: 41 / 11;
    }
    .home .widget_box .main_card h3 {
        margin-top: 6px;
    }
    .home .intro_box .main_card .content {
        flex-direction: row;
    }
    .lab .main_card > div {
        background-color: #f6f6f6;
    }
    .lab .main_card {
        background-color: #cecece;
    }
    .home .intro_box > .bottom_bg_color {
        display: none;
    }
    .m_circle {
        display: block;
        color: white ;
        font-size: 15px;
        font-weight: 900;
        background-color: #bbbbbb;
        width: 30px;
        margin-left: 6vw;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pc_circle {
        display: none !important;
    }
    .home .intro_box .main_card .content h5 {
        width: /* 130px */ 27.5vw;
        margin-right: 10vw;
        font-size: 5vw;
    }
    .home .intro_box .main_card img {
        width: 40px;
        height: 60px;
    }
    .home .intro_box:nth-child(2) > div > div:nth-child(1) {
        width: 90%;
    }
    .home .intro_box .ledger_img img {
        position: inherit;
        width: 83vw;
    }
    .home .intro_box .pattern, .home .intro_box .ledger, .academic .contnet_box .text_box ul, .academic .text_box p {
        display: none;
    }
    .home .intro_box .poster {
        top: 0;
        left: 5%;
    }
    .academic .m_show_btn div div p {
        margin-bottom: 0;
    }
    .academic .text_box span {
        display: block !important;
    }
    .home .intro_box .link_box {
        flex-direction: column;
        align-items: center;
    }
    .home .intro_box .link_box > .main_card {
        width: 90%;
        aspect-ratio: 4 / 1;
        border-radius: 80px;
        margin-right: 0;
    }
    .home .intro_box .link_box .main_card > div {
        flex-direction: row;
    }
    .home .intro_box .link_box .main_card > div, .home .intro_box .link_box .main_card > div:hover {
        border-radius: 80px;
    }
    .home .intro_box .link_box .main_card img {
        width: fit-content;
        height: 7.9vw;
        margin: 0 10px 2vw 0;
    }
    .home .intro_box .link_box .main_card br {
        display: none;
    }
    .home .intro_box .link_box .main_card h4 {
        line-height: 39px;
        font-size: 18px;
        color: #666666;
    }
    .home .intro_box .link_box > .main_card:first-child {
        margin-bottom: 15px;
    }
    .home .intro_box .link_box > .main_card:last-child {
        margin-bottom: 30px;
    }
    .home .intro_box .link_box {
        margin-top: 40px;
    }
    .home .intro_box .link_box .main_card > div, .home .intro_box .link_box .main_card > div:hover {
        flex-direction: row;
    }
    .m_show_btn {
        display: block;
    }
    .home_map > .common_layout_box_1400 {
        flex-direction: column-reverse;
        padding: 0;
    }
    .home_map {
        padding: 0;
        margin: 0;
    }
    .home_map .daum_box {
        width: 90%;
        height: 125vw;
        margin: 0 auto 20vw auto;
    }
    .home_map .content_box {
        width: 90%;
        margin: 16vw auto 20vw auto;
    }
    .home_map .content_box > h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .home_map .content_box li {
        font-size: 14px;
        margin-bottom: 0;
        font-weight: 500;
    }
    .home_map .number  {
        margin-top: 20px;
    }
    .home_map .number_2 {
        margin-top: 0;
    }
    .home_map .content_box > div {
        margin: 0 auto;
        width: 100%;
    }
    .home_map .content_box a {
        font-size: 1rem;
        border-radius: 14px;
    }
    .home_map .content_box strong {
        font-size: 5vw;
        font-weight: 900;
    }
    .home_map .content_box strong > span {
        font-size: 16px;
        font-weight: 500;
    }
    .home_map .content_box ul {
        margin-bottom: 10vw;
    }
    .gnb {
        margin-right: 0;
    }
    /* footer */
    .footer > div:first-child {
        margin-bottom: 12px;
    }
}
/* 600 end */


@media all and (max-width: 360px) {
    .dropdown-menu {
        top: 27px;
    }
    /* main-slide */
    .swiper-container {
        height: 740px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        font-family: Raleway, NanumBarunGothic, Dotum, AppleGothic, Helvetica, sans-serif;
        margin-bottom: 50px;
    }
    .swiper-wrapper .main_slide {
        width: 360px;
        padding-top: 65px;
    }
    .swiper-slide {
        background-size: cover ;
        background-position: bottom;
    }
    .slider_01 {
        background-image: url(../img/main/m_main_slider01.jpg) !important;
    }
    .slider_02 {
        background-image: url(../img/main/m_main_slider02.jpg) !important;
    }
    .slider_03 {
        background-image: url(../img/main/m_main_slider03.jpg) !important;
    }
    .swiper-container > div > div > div > div {
        padding: 0 15px;
        width: auto;
        margin: 0;
    }
    .main_slide > div a{
        font-size: 14px;
    } 
    .main_slide > div a span {
        font-size: 20px;
    }
    .main_slide h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .main_slide h1 {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .main_slide h1 strong {
        font-size: 28px;
    }
    .main_slide>div>p, .main_slide>div>ul li p {
        font-size: 14px;
        line-height: 18px;
    }
    .slide_01>div ul li {
        width: 100%;
        height: 60px;
        border-radius: 15px;
    }
    .main_slide>div>ul li:first-child {
        margin-bottom: 10px;
    }
    .main_slide>div>ul span {
        font-size: 14px;
        line-height: 56px;
        border-top-left-radius : 10px ;
        border-bottom-left-radius : 10px ;
    }
    .swiper-slide > div {
        display: flex !important;
    }
    .slide_03 h1 span {
        font-size: 24px;
    }
    .slide_03 ul, .slide_04 ul {
        margin: 10px 0 0 0;
    }
    .slide_03 ul li {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }
    .slide_03 ul li:nth-child(2) {
        left: 100px;
    }
    .slide_03 ul li:nth-child(3) {
        left: 200px;
    }
    .slide_03 > div > p {
        line-height: 22px;
    }
    .slide_04 > div > p {
        line-height: 22px;
        margin: 10px 0 20px 0;
    }
    .slide_04 ul li {
        height: 45px;
        border-radius: 35px;
    }
    .slide_04 ul li a {
        font-size: 16px;
        line-height: 45px;
    }
    /* GNB */
    .gnb {
        margin-right: 0;
    }
    /* include subMenu */
    #subMenu header img {
        width: 100px;
    }
    #subMenu header > div > a {
        margin-right: 10px;
        padding: 5px;
        border-radius: 10px;
    }
    #closeSubMenu {
        width: 25px;
        height: 25px;
    }
    #subMenu > div {
        width: 90%;
    }
    #subMenu > div > ul > li {
        padding: 0;
        margin-bottom: 10px;
        padding: 5px 0;
    }
    #subMenu > div > ul > li:first-child ul li:nth-child(4) a, #subMenu > div > ul > li:first-child ul li:last-child a,
    #subMenu > div > ul > li:nth-child(2) ul li:nth-child(2) a , #subMenu > div > ul > li:nth-child(2) ul li:nth-child(4) a,
    #subMenu > div > ul > li:nth-child(2) ul li:nth-child(6) a, #subMenu > div > ul > li:nth-child(2) ul li:last-child a,
    #subMenu > div > ul > li:nth-child(3) ul li:last-child a, #subMenu > div > ul > li:nth-child(4) ul li:last-child a, 
    #subMenu > div > ul > li:nth-child(5) ul li:last-child a {
        border-right: 0;
    }    
    #subMenu > div > ul > li:nth-child(2) ul li:nth-child(6) a {
        margin: 0 55px 15px 0;
    }
    #subMenu > div > ul > li .menu_title {
        margin-bottom: 18px;
        font-size: 18px;
    }
    #subMenu > div > ul > li .menu_list {
        display: flex;
        flex-wrap: wrap;
    }
    #subMenu .menu_list a {
        font-weight: 300;
        font-size: 14px;
    }
    .home .widget_box > div:nth-child(1) {
        padding-top: 0;
    }
    .home .widget_box h3, .home .intro_box h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .home .widget_box p, .home .intro_box p {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 20px;
    }
    .home .widget_box button {
        font-size: 13px;
        margin-bottom: 50px;
        padding: 4px 22px;
        border-radius: 5px;
    }
    .home .widget_box .list_box thead tr th {
        font-size: 14px;
        width: 70%;
    }
    .home .widget_box .list_box tbody tr th {
        font-size: 12px;
        text-align: center;
    }
    .home .widget_box .main_card h3 {
        font-size: 16px;
    }
    .home .widget_box .main_card p {
        font-size: 12px;
    }
    .main_card_tag {
        font-size: 12px;
        padding: 3px 5px;
    }
    .home .widget_box {
        margin-bottom: 40px;
    }
    .home .intro_box p {
        width: 250px;
        margin: 0 auto 40px auto;
    }
    .home .intro_box p br {
        display: none;
    }
    .home .intro_box p br:last-child {
        display: block;
    }
    .home .intro_box .main_card img {
        width: 30px;
        height: 40px;
    }
    .home .intro_box .main_card .content > div:nth-child(3) > div {
        height: 2px;
    }
    .m_circle {
        width: 19px;
        height: 19px;
        font-size: 12px;
    }
    .academic .text_box span {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.43px;
    }
    .home .intro_box .link_box .main_card > div a {
        display: flex;
        flex-direction: row;
    }
    .home .intro_box .link_box .main_card img {
        height: 30px;
        margin: 0 10px 0 0;
    }
    .home .widget_box .list_box tbody tr:hover td:nth-child(2)::after {
        left: 92px;
        top: 6px;
    }
    .m_show_btn > div {
        width: 90%;
        margin: 0 auto;
        height: 74px;
    }
    .m_show_btn> div p {
        margin: 0 !important;
    }
    .m_show_btn h6 {
        font-size: 14px;
        margin-bottom: 0;
    }
    .m_show_btn img {
        width: 32px;
        height: 32px;
    }
    .home .intro_box > .common_layout_box_1400 {
        padding-bottom: 20px !important;
    }
    .home_map .content_box > h2 {
        font-weight: 800;
    }
    .home_map .content_box li:nth-child(3), .home_map .content_box li:last-child {
        font-size: 14px;
        letter-spacing: -0.43px;
    }
    .home_map .content_box a {
        font-size: 15px;
    }
    .home_map .content_box a {
        padding: 9px 0;
        border-radius: 12px;
    }
    .home_map .daum_box {
        height: 400px;
    }
    .home_map .content_box li {
        font-size: 16px;
        color: #666666;
    }
    .m_showbox ul {
        margin-left: 25px;
    }
    .home_map .content_box strong {
        font-size: 20px;
        color: #666666;
    }
    /* 퀵메뉴 */
    .q_menu_m li img {
        height: 20px;
    }
    .q_menu_m span {
        font-size: 11px;
    }
    .q_menu_m #closeSubMenu_m {
        width: 20px;
        height: 20px;
    }
}