@charset "utf-8";

/********************************************
  크게보기 버튼
********************************************/
.button_group {
  text-align: center; 
  /* padding: clamp(20px, calc(40/640 * 100vw), 40px) 0; */
}
.button_group .round_btn {
  background: #004F50;
  border-radius: clamp(20px, calc(30/640 * 100vw), 30px); 
  padding: clamp(10px, calc(15/640 * 100vw), 15px) clamp(20px, calc(40/640 * 100vw), 40px); 
  color: #fff; 
  display: inline-block; 
  font-size: clamp(14px, calc(18/640 * 100vw), 18px);
  transition: all .3s;
}
.button_group .round_btn i {margin-right: 10px;}
/* .button_group .round_btn:hover {
    background:var(--point_color);
    box-shadow: rgb(0 0 0 / 19%) 0px 0.3rem 1rem, rgb(0 0 0 / 23%) 0px 0.2rem 0.2rem;
} */
.button_group .round_btn span {margin-left: 10px;}
.button_group .round_btn.gradient {background: linear-gradient(to right, rgba(0,44,139,1) 0%, rgba(0,146,117,1) 100%);}

/******************************************
  오리발
******************************************/
.foot_summary {max-width: 1200px; width: 100%; margin: 80px auto 170px; padding: 30px 150px; background: #F0F0F0;}
.foot_summary ul{display: flex; flex-direction: column; gap: 10px;}
.foot_summary li {font-size: 14px; color: #666666; font-family: 'Noto sans KR'; font-weight: 400; position: relative; padding-left: 10px;}
.foot_summary li::after{content: ""; position: absolute; left: 0; top:8px; margin: auto; width: 4px; height: 4px; border-radius: 4px; background: #666666;}
@media screen and (max-width: 1200px) {
  /* .foot_summary{width: 90%;} */
}
@media screen and (max-width: 1024px) {
  #vue_summary{padding: 0 20px;}
  .foot_summary{margin: 50px auto; padding: 30px;}
}






/*********************************************
    브레드크럼 (Breadcrumbs) 네비게이션
    사용자의 현재위치 / 사이트 이동경로
*********************************************/
.page_location_nav {
    height:4rem;
    text-align:center;
    position:absolute;
    z-index:40;
    width:100%;
    left:0;
    right:0;
    margin-top:-4rem;
    background:#035E60;
}
.page_location_nav.topfix {position:fixed;top:0;left:0;right:0;z-index:90;}
.page_location_nav nav {font-size:1rem;text-align:left;white-space:nowrap;position:relative;display:flex;max-width:1100px;margin:0 auto;}
.page_location_nav button {border:0;background:transparent;outline:0;font-size:0;}
.page_location_nav .home {display:inline-block;width:4rem;height:4rem;overflow:hidden;position:relative;border-right:1px solid rgba(255, 255, 255, 0.3);}
.page_location_nav .home a {display:flex;color:#fff;align-items:center;justify-content:center;height:100%;font-size:1.1rem;opacity:.5;}
.page_location_nav .path-item {position:relative;min-width:250px;}
.page_location_nav .path-item dt {
    color:#fff;
    border-bottom:0;
    border-top:0;
    height:4rem;
    line-height:4rem;
    font-size:1rem;
    border-right:1px solid rgba(255,255,255,.3);
}
.page_location_nav nav span.open {margin-left:auto;align-items:center;display:flex;}

.page_location_nav .path-item.path_depth_1 dt {border-left:0;}
.page_location_nav .path-item dt,
.page_location_nav .path-item li {padding:0 3.1rem 0 1.1rem;}
.page_location_nav .path-item ul {position:absolute;left:0;right:0;margin-left:-1px;}
.page_location_nav .path-item ul li {line-height:1.6;padding:0;text-align:left;}
.page_location_nav .path-item dd {display:none;width:100%;}
.page_location_nav .path-item li a {
    color:rgba(255,255,255,.7);
    display:block;
    position:relative;
    padding:1rem 1.2rem;
    border-bottom:1px solid rgba(255,255,255,.2);
    border-left:1px solid rgba(255,255,255,.2);
    font-size:0.92rem;
    background:var(--location_nav_menubg);
    transition:all .3s;
}
.page_location_nav .path-item li a:hover {
    background:var(--location_nav_menuhover);
    border-bottom:1px solid rgba(255,255,255,0);
}
.page_location_nav .path-item.path_depth_1 ul {margin-left:0;}
.page_location_nav .path-item.path_depth_1 li a {border-left:0;}
.page_location_nav .path-item li.on a {color:rgba(255,255,255,1);}
.page_location_nav .path-item .btn-open,
.page_location_nav .path-item .btn-close {
    position:absolute;
    right:0;
    top:0;
    left:0;
    width:100%;
    height:100%;
    white-space:nowrap;
    overflow:hidden;
    cursor:pointer;
}
.page_location_nav .path-item .btn-open:after,
.page_location_nav .path-item .btn-close:after {
    content:"\e878";
    position:absolute;
    top:1.4rem;
    right:1rem;
    white-space:nowrap;
    overflow:hidden;
    font-size:1rem;
    color:#fff;
    font-family:'Linearicons-Free';
    transition:all .3s cubic-bezier(.25, .46, .45, 1);
}

.page_location_nav .path-item .btn-close {display:none;}
.page_location_nav .path-item .btn-close:after {transform:rotate(180deg);}
.page_location_nav .path-item.active {z-index:22;}
.page_location_nav .path-item.active .btn-open {display:none;}
.page_location_nav .path-item.active .btn-close {display:block;}

@media screen and (max-width:1024px) {
    .page_location_nav {margin-top:-3.2rem;height:3.2rem;}
    .page_location_nav .path-item dt {height:3.2rem;line-height:3.2rem;}
    .page_location_nav .home {height:3.2rem;width:3.2rem;}
    .page_location_nav .path-item .btn-open:after, .page_location_nav .path-item .btn-close:after {top:1rem;}
    .page_location_nav .path-item li a {padding:0.7rem 1rem;}
    .page_location_nav .path-item dt, .page_location_nav .path-item li {font-size:0.87rem;}
}
@media screen and (max-width:768px) {
    .page_location_nav .path-item {min-width:auto;flex:1;}
    .page_location_nav .path-item:last-child dt {border-right:0;}
}



/*********************************************
    서브비주얼
*********************************************/
.sub_top_visual {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 564px;
    /* padding-bottom: 64px; */
    transition: all .3s;
}
.sub_top_visual .sub_top_bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 17%, rgba(0,0,0,0.1) 90%, rgba(0,0,0,0) 100%);
    height: 300px;
    z-index: 12;
}
.sub_top_visual .sub_top_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 10;
    background: url(../img/sub/sub_top_visual.jpg) no-repeat center center;
    background-size: cover !important;
    animation: sub_top_visual 3s both ease-in-out;
}
@keyframes sub_top_visual{
  0%{transform: scale(1.5);}
  100%{opacity: 1;}
}
.sub_top_visual .sub_top_txtbox{
  animation: sub_top_txtbox 1s 0.5s both ease-in-out;
  opacity: 0;
  position: relative;
  z-index: 11;
}
@keyframes sub_top_txtbox{
  0%{opacity: 0;}
  100%{opacity: 1;}
}
.sub_top_visual p{
  text-align: center;
  font-size: 20px;
  font-family: "Cinzel";
  font-weight: 300;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 15px;
}
.sub_top_visual h2:nth-of-type(1){
  text-align: center;
  font-size: 60px;
  font-family: "Cinzel";
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  animation: sub_top_txt 1s 1s both ease-in-out;
}
@keyframes sub_top_txt{
  0%{letter-spacing: 0; padding-left: 0px;}
  100%{letter-spacing:10px; padding-left: 20px;}
}
.sub_top_visual h2:nth-of-type(2) {
  text-align: center;
  font-size: 30px;
  font-family: "Noto Sans KR";
  font-weight: 300;
  color: #fff;
}
.sub_top_visual .sub_visual_title {color: #fff; position: relative; z-index: 20; text-align: center;}
.sub_top_visual .sub_visual_title strong {
    font-weight: 500;
}
@media screen and (max-width: 1024px) {
    .sub_wrap .header_container{height: 80px;}
    .sub_top_visual {height: 400px; /* padding-top: 300px; */}
    .sub_top_visual h2 {padding: 0; font-size: 2rem;}
}
@media screen and (max-width: 600px){
  .sub_top_visual{/* padding-top: 250px; */ height: 300px;}
  .sub_top_visual p{font-size: 16px;}
  .sub_top_visual h2:nth-of-type(1){font-size: 30px;}
  .sub_top_visual h2:nth-of-type(2){font-size: 20px;}
}
@media screen and (max-width: 480px) {
    /* .sub_top_visual {height: 200px;} */
}








/******************************************
  컨텐츠 영역
******************************************/
.page_content {
    padding: 140px 0 200px;
}
.page_content .page_container  {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.page_content .page_container img {max-width: 100%;}
@media screen and (max-width: 1700px) {
  .page_content .page_container  {
    max-width: 100%;
  }
}
.page_content .page_container .sub_title{margin-bottom: 180px; text-align: center;}
.page_content .page_container .sub_title dd{margin-bottom: 10px; font-size: 26px; font-weight: 300; color: #7A6E66; letter-spacing: 2px;}
.page_content .page_container .sub_title dt{font-size:56px; font-weight: 800; color: #004F50; letter-spacing: 0.3px;}
@media screen and (max-width:1200px) {
  .page_content .page_container{padding: 0 20px;}
  .page_content .page_container .sub_title dt{font-size: 40px;}
  .page_content .page_container .sub_title dd {margin-bottom: 5px; font-size: 20px;}
}
@media screen and (max-width:1024px){
  .page_content{padding: 100px 0;}
  .page_content .page_container .sub_title{margin-bottom: 100px;}
  .page_content .page_container .sub_title dt{font-size: 30px; word-break: keep-all;}
  .page_content .page_container .sub_title dd {margin-bottom: 10px; font-size: 15px; word-break: keep-all;}
}
@media screen and (max-width:600px){
  .page_content .page_container .sub_title dt{font-size: 6.5vw;}
}

/******************************************
  사업개요
******************************************/
.temp_overview_skin1 .page_container img{display: block;}

.temp_overview_skin1 .view_inner{position: relative; max-width: 1400px; width: 100%; margin: auto;}
.temp_overview_skin1 .view_inner .view_imgbox{height: 700px; overflow: hidden; position: relative;}
.temp_overview_skin1 .view_inner .view_imgbox::after{content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: 0.2;}
.temp_overview_skin1 .view_inner .view_imgbox img{animation: overview_img 60s infinite alternate linear;}
@keyframes overview_img {
  0%{transform: translateY(-60%);}
  100%{transform: translateY(0%);}
}
.temp_overview_skin1 .view_inner .view_txtbox{position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;}
.temp_overview_skin1 .view_inner .view_txtbox p{font-size: 40px; font-weight: 200; font-family: 'Noto Sans KR'; color: #fff; position: relative; top: 110px; animation: overview_txt1-1 1s 1s both ease-in-out,overview_txt1-2 1s 2s both ease-in-out;}
@keyframes overview_txt1-1{
  0%{letter-spacing: 0px;}
  100%{letter-spacing: 20px;}
}
@keyframes overview_txt1-2{
  0%{top: 110px;}
  100%{top: 0;}
}
.temp_overview_skin1 .view_inner .view_txtbox p strong{font-weight: 500;}
.temp_overview_skin1 .view_inner .view_txtbox p span{color: #B0A695;}
.temp_overview_skin1 .view_inner .view_txtbox h3{font-size: 60px; font-weight: bold; font-family: 'Noto sans KR'; color: #fff; display: flex; gap: 35px; align-items: center; margin: 40px 0 90px; position: relative; opacity: 0; animation: overview_txt2-1 1s 2s both ease-in-out;}
@keyframes overview_txt2-1{
  0%{opacity: 0;}
  100%{opacity: 1;}
}
.temp_overview_skin1 .view_inner .view_txtbox h3 span{display: inline-block; width: 0; height: 1px; background: #fff; animation: overview_txt2-2 1s 2.2s both ease-in-out;}
@keyframes overview_txt2-2{
  0%{width: 0;}
  100%{width: 230px;}
}
.temp_overview_skin1 .view_inner .view_txtbox img{opacity: 0; position: relative; animation: overview_txt2-1 1s 2.2s both ease-in-out;}
.temp_overview_skin1 .view_inner .btm_logo{position: absolute; bottom: -15px; left: 0; right: 0; display: flex; justify-content: center; position: absolute; opacity: 0; animation: overview_txt2-1 1s 2.4s both ease-in-out;}

.temp_overview_skin1 .con_inner{display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; justify-content: center; max-width: 1200px; width: 100%; margin: 100px auto 0;}
.temp_overview_skin1 .con_inner ul{border-top: 1px solid #00144D;}
.temp_overview_skin1 .con_inner ul li{display: flex; align-items: center; border-bottom: 1px solid #DEDEDE;}
.temp_overview_skin1 .con_inner ul li .tit{width: 70px; padding: 13px 22px; box-sizing: content-box;}
.temp_overview_skin1 .con_inner ul li .tit p{font-size: 18px; font-family: "Noto Sans KR"; color: #000; font-weight: 500;}
.temp_overview_skin1 .con_inner ul li .txt{padding: 13px 22px 13px 72px; box-sizing: content-box;}
.temp_overview_skin1 .con_inner ul li .txt p{font-size: 18px; font-family: "Noto Sans KR"; color: #666; font-weight: 300;}

@media screen and (max-width:1024px) {
  .temp_overview_skin1 .con_inner {grid-template-columns: repeat(1, 1fr); gap: 0; margin: 136px auto 0; padding: 0 50px;}
  @keyframes overview_img {
    0%{transform: translateY(0%);}
    100%{transform: translateY(-30%);}
  }
  .temp_overview_skin1 .con_inner ul:last-child {border-top: 0;}
}
@media screen and (max-width:780px) {
  .temp_overview_skin1 .view_inner .view_imgbox{height: 488px;}
  @keyframes overview_txt2-2{
    0%{width: 0;}
    100%{width: 0px;}
  }
  .temp_overview_skin1 .view_inner .view_txtbox h3{gap: 10px; margin: 20px 0 100px;}
  .temp_overview_skin1 .view_inner .btm_logo{width: 100%; padding: 0 50px;}
  .temp_overview_skin1 .con_inner{padding: 0;}
}
@media screen and (max-width:600px){
  .temp_overview_skin1 .view_inner .view_txtbox img{width: 70%;}
  .temp_overview_skin1 .con_inner ul li .tit{padding: 16px 20px; box-sizing: border-box; width: 100px;}
  .temp_overview_skin1 .con_inner ul li .tit p{font-size: 14px; white-space: nowrap;}
  .temp_overview_skin1 .con_inner ul li .txt{padding: 13px 20px;}
  .temp_overview_skin1 .con_inner ul li .txt p{font-size: 14px;}
  .temp_overview_skin1 .view_inner .view_txtbox p{font-size: 20px;}
  .temp_overview_skin1 .view_inner .view_txtbox h3{font-size: 40px;}
  .temp_overview_skin1 .view_inner .view_imgbox{height: 350px;}

}
@media screen and (max-width:400px){
  .temp_overview_skin1 .view_inner .view_txtbox p {font-size: 16px;}
  .temp_overview_skin1 .view_inner .view_txtbox h3{font-size: 30px;}
  @keyframes overview_txt1-1{
    0%{letter-spacing: 0px;}
    100%{letter-spacing: 10px;}
  }
  .temp_overview_skin1 .con_inner ul li{display: grid; grid-template-columns: 100px 1fr;}
}


/******************************************
  프리미엄 : SKIN1
******************************************/
.temp_premium_skin1 .premium_content{position: relative;}
.temp_premium_skin1 .premium_content ul{display: flex; flex-direction: column; gap: 100px; align-items: center;}

@media screen and (max-width: 1024px) {
  .temp_premium_skin1 .premium_content ul{align-items: center;}
  .temp_premium_skin1 .premium_content ul li img{display: block; width: 100%;}
  .temp_premium_skin1 .premium_content ul li:nth-child(1) img{content: url('/resources/img/sub/m_premium1.jpg'); max-width: 603px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(2) img{content: url('/resources/img/sub/m_premium2.jpg'); max-width: 621px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(3) img{content: url('/resources/img/sub/m_premium3.jpg'); max-width: 669px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(4) img{content: url('/resources/img/sub/m_premium4.jpg'); max-width: 640px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(5) img{content: url('/resources/img/sub/m_premium5.jpg'); max-width: 666px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(6) img{content: url('/resources/img/sub/m_premium6.jpg'); max-width: 619px;}
  .temp_premium_skin1 .premium_content ul li:nth-child(7) img{content: url('/resources/img/sub/m_premium7.jpg'); max-width: 675px;}
}


/******************************************
  오시는길
******************************************/
.temp_contact_skin1 {}
.temp_contact_skin1 .contact_wrap {background:rgb(122, 110, 102, 0.24); max-width:1200px; margin: 0 auto;; height:609px; display: flex; align-items: center; justify-content: center;}
.temp_contact_skin1 .contact_wrap .mapBox {font-size:0;;}
.temp_contact_skin1 .contact_wrap .contentBox {margin-left: 64px; width:480px;}
.temp_contact_skin1 .contact_wrap .contentBox .item {color:#222; text-align:center;}
.temp_contact_skin1 .contact_wrap .contentBox .item ~ .item {border-top:1px solid #7A6E66; padding-top: 35px; margin-top: 35px;}
.temp_contact_skin1 .contact_wrap .contentBox .title {font-size:20px; font-weight: 600;;}
.temp_contact_skin1 .contact_wrap .contentBox .content {font-size:20px; margin-top: 16px;}
.temp_contact_skin1 .contact_wrap .contentBox .map_in {margin-top: 30px;; display: flex; justify-content: center; align-items: center;}
.temp_contact_skin1 .contact_wrap .contentBox .map_in .btn {line-height:36px; padding-left: 50px; position:relative;; font-size:16px;}
.temp_contact_skin1 .contact_wrap .contentBox .map_in .btn ~ .btn {margin-left: 40px;}
.temp_contact_skin1 .contact_wrap .contentBox .map_in .btn::before {content:''; position:absolute; left: 0; top: 50%; width:36px; height:36px; background:0 0 no-repeat; background-size:100% 100%; margin-top: -18px;;}
.temp_contact_skin1 .contact_wrap .contentBox .map_in .btn.naver::before {background-image:url('/resources/img/sub/btn_contact01.svg');}
.temp_contact_skin1 .contact_wrap .contentBox .map_in .btn.kakao::before {background-image:url('/resources/img/sub/btn_contact02.svg');}
@media screen and (max-width: 1024px) {
  .temp_contact_skin1 .contact_wrap {height:auto; padding:30px 35px 48px; display:block;}
  .temp_contact_skin1 .contact_wrap .mapBox {text-align:center;}
  .temp_contact_skin1 .contact_wrap .contentBox {margin:28px 0 0; width:auto;}
  .temp_contact_skin1 .contact_wrap .contentBox .item {}
  .temp_contact_skin1 .contact_wrap .contentBox .item ~ .item {padding-top:21px; margin-top: 21px;}
  /* .temp_contact_skin1 .contact_wrap .contentBox .title {font-size:13px;} */
  /* .temp_contact_skin1 .contact_wrap .contentBox .content {font-size:13px; margin-top:10px;} */
  .temp_contact_skin1 .contact_wrap .contentBox .map_in {margin-top: 20px;}
  .temp_contact_skin1 .contact_wrap .contentBox .map_in .btn {line-height:24px; padding-left: 32px; font-size:16px;}
  .temp_contact_skin1 .contact_wrap .contentBox .map_in .btn ~ .btn {margin-left:26px;}
  .temp_contact_skin1 .contact_wrap .contentBox .map_in .btn::before {width:24px; height:24px; margin-top: -12px;}
  .temp_contact_skin1 .contact_wrap .contentBox .map_in .btn.naver::before {}
  .temp_contact_skin1 .contact_wrap .contentBox .map_in .btn.kakao::before {}
}



/******************************************
  오시는길 SKIN1 : 약도가 1개일때
******************************************/
.temp_location_skin1 .page_container { padding-bottom: 4rem;}
.temp_location_skin1 .page_container:last-child {padding-bottom: 0;}
.temp_location_skin1 .location_list {
    /* display: flex;
    justify-content: space-between; */
    max-width: 1100px;
    margin: 0 auto;
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 3rem;
    padding-bottom: 4rem;
}
.temp_location_skin1 .right_info { width: 440px; text-align: left; justify-content: space-between; padding: 0.5rem 0 0; }
.temp_location_skin1 .right_info dl dt {font-size: 2rem; font-weight: 500; color: #000; padding-bottom: 0.5rem;}
.temp_location_skin1 .right_info dl dd {font-size: 1.2rem;}
.temp_location_skin1 .right_info .button_group { width: 100%; display: flex; justify-content: space-between;}
.temp_location_skin1 .right_info .btn_map {
    padding: 1.0rem 1.2rem;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1rem;
    width: 49%;
    transition: all .3s;
    border-radius: 0.4rem;
}
.temp_location_skin1 .right_info .btn_map i {color: #fff; font-size: 1.3rem;}
.temp_location_skin1 .right_info .btn_map.map_naver {background: #21c030; color: #fff;}
.temp_location_skin1 .right_info .btn_map.map_kacao {background: #fae61f; color: #1a1a1c;}
.temp_location_skin1 .right_info .btn_map.map_kacao i {color: #000;}
.temp_location_skin1 .right_info .btn_map:hover {box-shadow: rgb(0 0 0 / 19%) 0px 0.3rem 1rem, rgb(0 0 0 / 23%) 0px 0.2rem 0.2rem;}
.temp_location_skin1 .button_group { text-align: center; padding: 1.5rem 0; }

@media screen and (max-width: 1100px) {
  .temp_location_skin1 .location_list { display: block; max-width: 800px; margin: 0 auto; }
  .temp_location_skin1 .left_map { width: 100%; }
  .temp_location_skin1 .left_map img { width: 100%;}
  .temp_location_skin1 .right_info { padding: 2.5rem 0 0; }
}
@media screen and (max-width: 768px) {  
  .temp_location_skin1 .right_info .btn_map {padding: 1.2rem 2rem;}
}
@media screen and (max-width: 640px) {
    .temp_location_skin1 .page_container {grid-template-columns: 1fr;}
    .temp_location_skin1 .left_map {padding: 0;}  
    .temp_location_skin1 .right_info {display: block; margin: 0 auto; width: 100%;}
    .temp_location_skin1 .right_info > div { width: 100%; }
    .temp_location_skin1 .right_info dl dt {font-size: 1.6rem;}
    .temp_location_skin1 .right_info dl dd {font-size: 1.2rem;}
    .temp_location_skin1 .right_info .button_group { width: 100%; flex-direction: row; justify-content: space-between; text-align: left;}
    .temp_location_skin1 .right_info .btn_map { width: 49%; }
}
@media screen and (max-width: 480px) {
  .temp_location_skin1 .right_info .button_group { width: 100%; display: block; }
  .temp_location_skin1 .right_info .btn_map { width: 100%; max-width: 240px; }
}

/******************************************
  오시는길 SKIN2 : 약도가 2개일때
******************************************/
.temp_location_skin2 .map_con {display: grid; grid-template-columns: 1.5fr 1fr; padding-bottom: 4rem;}
.temp_location_skin2 .map_con:last-child {padding-bottom: 0;}
.temp_location_skin2 .right_info {display: flex; text-align: left; justify-content: center; flex-direction: column; padding-left: 4rem;}
.temp_location_skin2 .right_info dl dt {font-size: 2rem; font-weight: 500; color: #000; padding-bottom: 0.5rem;}
.temp_location_skin2 .right_info dl dd {font-size: 1.2rem;}
.temp_location_skin2 .right_info .button_group {display: flex; flex-direction: column;}
.temp_location_skin2 .right_info .btn_map {
    padding: 1.2rem 2rem;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 300px;
    transition: all .3s;
    border-radius: 0.4rem;
}
.temp_location_skin2 .right_info .btn_map i {color: #fff; font-size: 1.3rem;}
.temp_location_skin2 .right_info .btn_map.map_naver {background: #21c030; color: #fff;}
.temp_location_skin2 .right_info .btn_map.map_kacao {background: #fae61f; color: #1a1a1c;}
.temp_location_skin2 .right_info .btn_map.map_kacao i {color: #000;}
.temp_location_skin2 .right_info .btn_map:hover {box-shadow: rgb(0 0 0 / 19%) 0px 0.3rem 1rem, rgb(0 0 0 / 23%) 0px 0.2rem 0.2rem;}

@media screen and (max-width: 768px) {
  .temp_location_skin2 .right_info {padding-left: 2rem;}
  .temp_location_skin2 .right_info .btn_map {padding: 1.2rem 2rem;}
}
@media screen and (max-width: 640px) {
  .temp_location_skin2 .map_con {grid-template-columns: 1fr;}
  .temp_location_skin2 .left_map {padding-bottom: 2rem;}
  .temp_location_skin2 .right_info {padding-left: 0.5rem;}
  .temp_location_skin2 .right_info dl dt {font-size: 1.6rem;}
  .temp_location_skin2 .right_info dl dd {font-size: 1.2rem;}
}
/***************************************
  브랜드
****************************************/
.brand { max-width: 1100px; margin: 0 auto; }
.brand h3 { font-size: 34px; text-align: center; position: relative; font-weight: 600; padding: 0 0 2rem; margin: 0 0 2rem; }
.brand h3::after { content: ""; display: block; position: absolute; left: 50%; bottom: 0; width: 130px; height: 2px; transform: translateX(-50%); background: #eee; }
.brand .en_tit { text-align: center; font-size: 22px; color: #9ab3cd; font-weight: 400; }
.brand .en_tit strong { font-weight: 600; }
.brand .summary p { font-size: 17px; text-align: center; font-weight: 400; }
.brand .summary p strong { display: block; margin: 1rem 0; font-size: 26px; color: #001041; font-weight: 600; }
.brand .brand_con { margin: 8rem 0;}
.brand_logo { display: flex; margin: 0 0 4rem; }
.brand_logo .logo_img { 
  width: 380px;
  text-align: center;
  position: relative;
  border: 1px solid #e9e9e9;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand_logo .logo_img img { width: 50%; }
.brand_logo .logo_img span {
  box-sizing: border-box;
  text-align: center;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 90px;
  height: 50px;
  font-size: 14px;
  line-height: 1.1;
  background: #001141;  
  color: #fff;
  padding: 8px 0 0;
}
.brand_logo .logo_txt { box-sizing: border-box; width: calc(100% - 380px); background: #001141; padding: 3rem 4rem; text-align: left; }
.brand_logo .logo_txt dt { padding: 0 0 1rem; font-size: 26px; color: #fff; font-weight: 600;}
.brand_logo .logo_txt dd p { font-size: 17px; color: #fff; font-weight: 500;}
.brand_award { padding: 2rem 0 0;}
.brand_award h4 { position: relative; text-align: center; margin: 0 0 2rem; }
.brand_award h4::before { content: ""; display: block; position: absolute; top: 50%; left: 0px; width: 100%; height: 1px; background: #000; z-index: -1; }
.brand_award ul { display: flex; justify-content: space-between;}
.brand_award ul li { width: 20%; padding: 0 0 2rem;}
.brand_award ul li img { width: 100%;}
.brand .mov_responsive { position: relative; padding: 56.25% 0 0; margin: 4rem 0; }
.brand .mov_responsive iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }

@media screen and (max-width: 1080px) {
  .brand .brand_con { margin: 4rem 0;}
  .brand_logo { margin: 0 0 2rem; }  
  .brand_logo .logo_img { width: 240px; }
  .brand_logo .logo_txt { width: calc(100% - 240px); padding: 2rem 3rem;}
  .brand_logo .logo_txt dt { font-size: 20px; }
  .brand_logo .logo_txt dd p { font-size: 14px; }
  .brand_logo .logo_txt dd p br { display: none; }
}
@media screen and (max-width: 720px) {
  .brand h3 { font-size: 22px; }
  .brand div.en_tit { font-size: 14px; }
  .brand .summary p strong { font-size: 18px; }
  .brand .summary p br { display: none;}    
  .brand_logo { display: block; margin: 0 0 1rem; }
  .brand_logo .logo_img { width: 100%; padding: 2rem 0; border-right: 1px solid #e9e9e9;}
  .brand_logo .logo_img img { width: 20%;}
  .brand_logo .logo_txt { width: 100%; }
}
@media screen and (max-width: 640px) {
  .brand_award ul { display: flex; justify-content: space-between; flex-wrap: wrap;}
  .brand_award ul li { width: 46%;}  
  .brand .mov_responsive { margin: 1rem 0; }
}

/******************************************
  커뮤니티
******************************************/
.temp_community_skin .community .floor_list {position: relative;}
.temp_community_skin .community .community_tab {position: absolute; right: 1rem; top: 1rem; display: flex;}
.temp_community_skin .community .community_tab li a {
    font-size: 1.4rem;
    display: flex;
    width: 5rem;
    height: 5rem;
    color: #fff;
    font-weight: 600;
    background: #888;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}
.temp_community_skin .community .community_tab li a.on {background:var(--community_tab_on);}
.temp_community_skin .community .community_tab.en_txt li a {font-family: "Roboto", sans-serif;}

.temp_community_skin .community .community_con {border: 1px solid #efefef; padding: 4rem 0;}
.temp_community_skin .community .community_con li {padding:0 2rem;}
.temp_community_skin .community .community_info {margin-top: 4rem;}
.temp_community_skin .community .community_info ul {display: grid; grid-template-columns: 1fr 1fr; text-align: left; gap: 1rem;}
.temp_community_skin .community .community_info ul li {display: flex; flex-direction: row; margin-bottom: 2rem;}
.temp_community_skin .community .community_info ul li .icon {display: flex; align-items: center; justify-content: center; padding-right: 1.5rem;}
.temp_community_skin .community .community_info ul li .icon i {font-size: 3.2rem; color:var(--community_icon_color);}
.temp_community_skin .community .community_info ul li dl {flex: 1; padding-right: 1rem;}
.temp_community_skin .community .community_info ul li dl dt {font-weight: 600; font-size: 1.3rem; color:var(--community_title_color);}
.temp_community_skin .community .community_info ul li dl dd { padding-top: 0.5rem; word-break: keep-all; font-size: 1rem;}
.community .button_group {display: none;} 

@media screen and (max-width: 480px) {
  .temp_community_skin .community .community_tab li a {font-size: 1.1rem; width: 4rem; height: 4rem;}
  .temp_community_skin .community .community_info ul {grid-template-columns: 1fr;}
  .temp_community_skin .community .community_info ul li {margin-bottom: 1rem;}
  .temp_community_skin .community .community_info ul li .icon i {font-size: 2.3rem;}
  .community .button_group {display: block;}
}

/******************************************
  모집공고
******************************************/
.temp_gonggo_skin1 .gonggo_wrap {background:url('/resources/img/sub/gonggo.jpg') center center no-repeat; background-size:100% 100%; padding-top: 940px; width:1200px; margin: 0 auto; height: 0; overflow: hidden; position:relative;}
.temp_gonggo_skin1 .gonggo_wrap .btnBox {}
.temp_gonggo_skin1 .gonggo_wrap .btnBox a {position:absolute; bottom:76px; width:288px; padding-top: 57px; height: 0; overflow: hidden;}
.temp_gonggo_skin1 .gonggo_wrap .btnBox a:nth-child(1) {left: 299px;}
.temp_gonggo_skin1 .gonggo_wrap .btnBox a:nth-child(2) {left: 614px;}

@media screen and (max-width: 1024px) {
  .temp_gonggo_skin1 .gonggo_wrap {background-image:url('/resources/img/sub/gonggo_m.jpg'); padding-top: 127.419%; width:100%;}
  .temp_gonggo_skin1 .gonggo_wrap .btnBox {}
  .temp_gonggo_skin1 .gonggo_wrap .btnBox a {transform: translateX(-50%); width:56.451%; padding-top: 11.29%;}
  .temp_gonggo_skin1 .gonggo_wrap .btnBox a:nth-child(1) {left: 50%; bottom: 21.518%;;}
  .temp_gonggo_skin1 .gonggo_wrap .btnBox a:nth-child(2) {left: 50%; bottom:9.24%;}
}


/******************************************
  입지환경
******************************************/
.temp_envir_skin1 .page_container{display: block; width: 100%; max-width: 1200px; margin: auto;}
.temp_envir_skin1 .map_box {position:relative;overflow:hidden; margin-bottom: 100px;}
.temp_envir_skin1 .map_box .map-zoom{width:100%;position: absolute;top:0;left:0;cursor:none;}
.temp_envir_skin1 .map_box .magnifier{width: 450px;height: 450px;position: absolute;border-radius: 100%; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 0 3px 3px rgba(0, 0, 0, 0.25); display: none; background-repeat:no-repeat}
.temp_envir_skin1 .map_box .map_area{width: 100%;position: absolute;top: 0;left: 0;padding: 0 20px;}

@media screen and (max-width:1024px) {
  .temp_envir_skin1 .map_box{margin-bottom: 40px;}
  /* .temp_envir_skin1 .map_box .map-zoom{display: none !important;} */
  .temp_envir_skin1 .map_box > img{content: url('/resources/img/sub/m_environment.jpg'); width: 100%; max-width: 720px; margin: auto; display: block;}
  .temp_envir_skin1 > .page_container > img{content: url('/resources/img/sub/m_environment2.jpg'); width: 100%; max-width: 720px; margin: 100px auto 0; display: block;}

}

/******************************************
  보도자료
******************************************/
.news_tbl_th {
   display: grid;
   grid-template-columns: 80px 150px auto 100px;
   border-top: 2px solid var(--board_table_border);
}
.news_tbl_th li {
  padding: 1.12rem 0;
  font-size: 1rem;
  background: #fff;
  color:var(--board_th_color);   
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #b5b6b6;
  font-weight: 500;
}
.news_tbl_body li a {
  display: grid;
  grid-template-columns: 80px 150px auto 100px;
  padding: 1rem 0;
  font-size: 1rem;
  word-break: break-all;
  text-align: center;
  border-bottom: 1px solid #d6d6d6;
  color: #000; 
  line-height: 1.6;
  text-align: center; 
}
.news_tbl_body li .sbj {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news_tbl_body a:hover .sbj { text-decoration: underline;}    
.news_tbl_body .nodata {padding: 6rem 0;}
.news_tbl_body .media {padding: 0 1rem;}
.news_tbl_body .media span {
    display: block;
    background-color: var(--board_label_bg);
    color: #fff;
    padding: 0.3rem 0;
    font-size: 0.87rem;
}
.news_tbl_body .sbj {text-align: left; font-weight: 500; padding-left: 1rem;}
.news_tbl_body .num {font-family:"Montserrat", tahoma, sans-serif; font-weight: 600;}
.news_tbl_body .date {font-family:"Montserrat", tahoma, sans-serif; font-weight: 600; color: #000; white-space: nowrap;}


@media screen and (max-width: 640px) {
  .news_tbl_th {grid-template-columns: 120px auto 80px;}
  .news_tbl_body li a {grid-template-columns: 120px auto 100px;}
  .news_tbl_body .media {padding: 0 0.3rem;}
  .news_tbl_th li:first-child {display: none;}
  .news_tbl_body .num {display: none;}
}
@media screen and (max-width: 480px) {
  .news_tbl_th {display: none;}
  .news_tbl_body {border-top: 1px solid var(--board_table_border);}
  .news_tbl_body li a {grid-template-rows: repeat(2, 1fr);}
  .news_tbl_body .media {padding-left: 0;}
  .news_tbl_body .sbj {grid-row-start: 2; grid-column-start: 1; grid-column-end: 4; padding-left: 0; padding-top: 0.5rem;}
  .news_tbl_body .date {grid-column-start: 3;}
}

.top_search_box {display: flex; padding: 2rem 0; justify-content: space-between;}
.top_search_box .news_tab {display: inline-flex;}
.top_search_box .news_tab li {margin-right: 1rem;}
.top_search_box .news_tab li a {
    display: block;
    position: relative;
    padding: 0.3rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-weight: 400;
    overflow: hidden;
}
.top_search_box .news_tab li a strong {display: inline-block; position: relative; padding:0.5rem 0.3rem;}
.top_search_box .news_tab li a strong::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;        
    background: transparent;
    bottom: 0;
    left: 0;
    right: 0;
}
.top_search_box .news_tab li a.on strong::before {background: #000;}
.top_search_box .news_tab li a.on {color: #000;}
.top_search_box .search_in {  
  margin-left: auto; 
  padding-left: 1rem;
  display: flex;
}
.top_search_box .search_in .inner_con {
  position: relative; 
  padding-right: 50px;
  background: #fff; 
  border: 1px solid #333; 
  margin-right: 1rem;
  display: flex;
}
.top_search_box .search_in .placeholder {display: inline-block; padding: 0 1rem;}
.top_search_box .search_in .placeholder label {font-size: 0.92rem; top: 0.7rem; left: 1rem; color: #999;}
.top_search_box .search_in .placeholder input { 
  height: 45px; 
  line-height: 45px; 
  border:0; 
  border: none;     
  padding-left: 0;
  font-size: 1rem;
}
.top_search_box .search_in .btn {
  display: inline-block; 
  height: 45px;
  color: transparent;
  background: none;  
  line-height: 45px;  
  font-size: 0;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}
.top_search_box .search_in .btn::before {
    content: "\e86f";
    font-family: Linearicons-Free;    
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    padding: 0 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    text-indent:0;
    margin-top: 3px;    
    display: inline-block;
}
.top_search_box h4 {width: 100%;}

.list_toggle {display: flex;}
.list_toggle li {flex: 1;}
.list_toggle a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #909090;
    width: 3.2rem;
    margin-left: -1px;
    height: 100%;
}
.list_toggle a.thumb_btn .inner {  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(auto, auto));
  gap: 0.1rem;
}
.list_toggle a.thumb_btn em { width: 0.4rem; height: 0.4rem; background: #909090;}
.list_toggle li.active a {border-color:#000; position: relative; z-index: 10;}
.list_toggle li.active a em {background: #000;}

.list_toggle i {font-size: 2rem;}

.notice_table {margin-top: 1.5rem; margin-bottom: 1rem;}
/* .notice_thumb {margin-top: 1.5rem; margin-bottom: 1rem;}
.notice_thumb ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(150px, auto));
  gap: 1.3rem;
}
.notice_thumb ul.less {grid-template-rows: repeat(1, minmax(150px, auto));}
.notice_thumb ul li {margin-bottom: 2.5rem;}
.notice_thumb ul li .thumbimg {
    /* background: linear-gradient(45deg, rgba(126,204,43,1) 0%, rgba(40,61,155,1) 87%, rgba(40,61,155,1) 100%); */
    /* position: relative;    
    padding-bottom: 70%;
    background: url("/resources/img/sub/no_thumb.jpg") no-repeat 0 0;
    background-size: 100% 100%; */
/* } */
.notice_thumb ul li .thumbimg span {
    display: block;    
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center center;   
    background-repeat: no-repeat;    
    background-size: cover;
}
.notice_thumb ul li .thumbimg span.noimg { background-size: 50%;}
.notice_thumb ul li dl {color: #000;}
.notice_thumb ul li dt {
    font-weight: 500;
    font-size: 1.1rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    letter-spacing: 1.3;
    margin: 1rem 0;
    height: 3.2rem;
    word-break: break-all;
}
.notice_thumb.galley_thumb ul li dd {padding-top: 1rem;}
.notice_thumb.galley_thumb ul li dt {margin-bottom: 0;}

.notice_thumb ul li dd {font-family:"Montserrat", tahoma, sans-serif; font-weight: 600;}
.notice_thumb ul li dd .cate {
  display: inline-block;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color:#283d9b;
  padding-right: 1rem;
} */
.news_tbl_list tbody td.empty_data {padding: 5rem 0; text-align: center;}

/******************************************
  페이지네이션 (Pagination)
******************************************/
.pagination { 
  clear:both;      
  font-family:"Montserrat", tahoma, sans-serif,arial;
  text-align:center;      
  font-weight:400;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a {  
  width:1.7rem; 
  height:2rem;
  line-height:2rem;
  color:#333;
  font-size:1rem;
  text-align:center; 
  padding:0 !important;       
  margin: 0 3px;  
  display: inline-block; 
}
.pagination strong { 
  font-size:1rem;
  font-weight: 500;
  width:1.7rem; 
  height:2rem;
  line-height:2rem; 
  padding:0;
  border-bottom: 1px solid #333;       
  position: relative;
  text-align: center;
  color: #000;  
}
.pagination a.pagbtn {background-color: #fff; font-size: 0; color: transparent;}
.pagination a.prev, 
.pagination a.first,
.pagination a.next,
.pagination a.last {
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: 0;
  color: transparent;
}
.pagination a.prev:before{font-family: 'FontAwesome'; content: "\f104"; font-size:1.3rem; color: #333; margin-left: -3px; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.pagination a.first:before{font-family: 'FontAwesome'; content: "\f100"; font-size:1.3rem; color: #333; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.pagination a.next:before{font-family: 'FontAwesome'; content: "\f105"; font-size:1.3rem; color: #333; margin-left:3px;position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.pagination a.last:before{font-family: 'FontAwesome'; content: "\f101"; font-size:1.3rem; color: #333;position: absolute; left: 0; top: 0; width: 100%; height: 100%; }

.pagination button:disabled {opacity: 0.3; cursor:default;}
.pagination button.pagbtn {
  margin: 0 1rem;
  color: #333;
  cursor: pointer;
  border-radius: 1.5rem;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/******************************************
  보도자료
******************************************/
.page_content .page_container.news_container{max-width: 1100px;}
.news_list_type ul {display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;}
.news_list_type ul li {height: 200px; margin-bottom:2.5rem; background:#fff; text-align: left; border: 1px solid #bbb; transition: box-shadow .4s;}
.news_list_type ul li:hover {box-shadow: 8px 13px 15px 0px rgba(0, 0, 0, 0.1);  transition: box-shadow .4s;}
.news_list_type ul li.empty_data {grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; font-family: 'Noto Sans KR'; font-size:1rem; color:#000;}
.news_list_type ul li.empty_data:hover{box-shadow: none;}
.news_list_type ul li a {display:block; width:100%; height:100%; padding:2rem; font-size:1rem; color:#000;}
.news_list_type ul li a .news_con {width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;}
.news_list_type ul li a .news_con span { word-break:break-all; white-space: normal; display:block; font-family: 'Noto Sans KR'; color:#586670; font-size:17px; margin-bottom:0.5rem; font-weight: bold;}
.news_list_type ul li a .news_con dl {height: 60px; margin-top: 0; word-break:break-all; white-space: normal;}
.news_list_type ul li a .news_con dl dt { word-break:break-all; white-space: normal;line-height: 25px; font-size:18px; font-family: 'Noto Sans KR'; font-weight:bold;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.news_list_type ul li a .news_con dl dd { word-break:break-all; white-space: normal; margin:1rem 0; font-family: 'Noto Sans KR';overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.news_list_type ul li a .news_con .news_content {width: 100%; height: 80px; overflow: hidden; margin-top: -30px;}
.news_list_type ul li a .news_con .news_content h4 {font-size: 15px; line-height: 28px; color: #000; font-weight: 500; word-break:break-all; white-space: normal;}
.news_list_type ul li a .news_con .news_b {width: 100%; display: flex; justify-content: space-between; align-items: center;}
.news_list_type ul li a .news_con .news_b .date {color: #000; font-family: 'Noto Sans KR'; margin:0; font-size: 14px; font-weight: bold;}
.news_list_type ul li a .news_con .news_b h3 {font-size: 14px; font-family: 'Noto Sans KR'; color: #000; font-weight: bold;}

/* .news_list_type ul li a span {display:block; color:#204eb0; font-size:1rem; margin-bottom:1rem; font-weight: 400;}
.news_list_type ul li a span.date {margin-bottom:0; font-family: "Montserrat"; margin-top:1.5rem;}
.news_list_type ul li a dl dt {font-size:1.3rem; font-weight:400;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.news_list_type ul li a dl dd {margin:1rem 0;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;} */
.paging_wrap {display:flex; width:100%; justify-content: center; margin:3.5rem 0;}
.paging_wrap a {display:inline-flex; margin:0 0.5rem; font-size:0.9rem; font-family: "Montserrat"; width:1.8rem; height:1.8rem; border-radius: 100%; justify-content: center; align-items: center; font-weight:500;}
.paging_wrap a.current {background:#000; color:#fff;}


@media screen and (max-width: 1024px) {
  .news_list_type ul {flex-direction: column;}
	.news_list_type ul li {width: 100%;}
	.news_list_type ul li a { padding: 3rem; width: 100%; }
	.news_list_type ul li a span {font-size: 13px;}
	.news_list_type ul li a dl dt { line-height: 1.8rem;}
	.news_list_type ul li .new {left:85.5%;}
  .news_list_type ul li {margin-left: 0; margin-right: 0;}
} 

@media screen and (max-width: 960px) {
  .news_list_type ul {grid-template-columns: repeat(2, 1fr);}
	.news_list_type ul li {width: 100%;}
	.news_list_type ul li a { padding: 3rem; width: 100%; }
	.news_list_type ul li a span {font-size: 13px;}
	.news_list_type ul li a dl dt { line-height: 1.8rem;}
	.news_list_type ul li .new {left:85.5%;}
  .news_list_type ul li {margin-left: 0; margin-right: 0;}
} 

@media screen and (max-width: 480px) {
  .news_list_type ul {grid-template-columns: repeat(1, 1fr); gap:0;}
  .news_list_type ul li a dl dt { font-size:1.1rem; }
  .news_list_type ul li a span { margin-bottom: 0.5rem;}
  .news_list_type ul li a span.date { margin-top: 1rem;}
}

/******************************************
  특별공급
******************************************/
.temp_docspecial_skin .docs_tab {display: flex; width: 100%; margin-bottom: 5rem;}
.temp_docspecial_skin .docs_tab li {flex: 1; margin-left: -1px;}
.temp_docspecial_skin .docs_tab li a {
  border: 1px solid #e5e5e5; 
  background: var(--docs_tab_bg); 
  color:var(--docs_tab_txt);
  display: block; 
  padding: 1.3rem 0; 
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}
.temp_docspecial_skin .docs_tab li a.on{
  color: #fff;  
  background:var(--docs_tab_active);
  position: relative;
}
.temp_docspecial_skin .docs_tab li:first-child a {border-top-left-radius: 0.5rem; border-bottom-left-radius:0.5rem;}
.temp_docspecial_skin .docs_tab li:last-child a {border-top-right-radius: 0.5rem; border-bottom-right-radius:0.5rem;}
.temp_docspecial_skin .docs_con h3 {font-size: 2.3rem; padding-bottom: 1rem; letter-spacing: -2px; font-weight: 500; color: #333;}
.temp_docspecial_skin .docs_con h3 strong {font-size: 1.8rem; color:var(--docs_tab_active);}

@media screen and (max-width: 1100px) {
  .temp_docspecial_skin .docs_tab {margin-bottom: 2rem;}
  .temp_docspecial_skin .docs_con h3 { font-size: 1.8rem;}
}
@media screen and (max-width: 600px) {
  .temp_docspecial_skin .docs_tab {display: grid; grid-template-columns: repeat(3, 1fr);}
  .temp_docspecial_skin .docs_tab li {margin-left: 0; margin-top: -1px;}
  .temp_docspecial_skin .docs_tab li:first-child a {border-radius: 0;}
  .temp_docspecial_skin .docs_tab li:last-child a {border-radius: 0;}
  .temp_docspecial_skin .docs_tab li a {padding: 0.8rem 0; font-size: 0.87rem;}
  .temp_docspecial_skin .docs_con h3 { font-size: 1.4rem;}
}

/******************************************
  홍보영상
******************************************/
.temp_video_skin .movie_tab {display: flex; width: 100%; margin-bottom: 4rem;}
.temp_video_skin .movie_tab li {flex: 1; margin-left: -1px;}
.temp_video_skin .movie_tab li a {
  border: 1px solid #e5e5e5; 
  background: var(--docs_tab_bg); 
  color:var(--docs_tab_txt);
  display: block; 
  padding: 1.3rem 0; 
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}
.temp_video_skin .movie_tab li a.on{
  color: #fff;  
  background:var(--docs_tab_active);
  position: relative;
}
.temp_video_skin .movie_tab li:first-child a {border-top-left-radius: 0.5rem; border-bottom-left-radius:0.5rem;}
.temp_video_skin .movie_tab li:last-child a {border-top-right-radius: 0.5rem; border-bottom-right-radius:0.5rem;}

@media screen and (max-width: 640px) {
  .temp_video_skin .movie_tab {margin-bottom: 2rem;}
}

/************************************ 
  시스템 - AIQ 
*************************************/
.aiq { max-width: 1100px; margin: 0 auto;}
.aiq .aiq_top { margin: 0 0 40px; }
.aiq .aiq_tit { font-size: 40px; text-align: center; font-weight: 400; word-break: keep-all; margin: 20px 0;}
.aiq .aiq_tit strong { font-weight: 600; }
.aiq .aiq_tit[data-tit="1"] strong { color: #f0a440; }
.aiq .aiq_tit[data-tit="2"] strong { color: #813f99; }
.aiq .aiq_tit[data-tit="3"] strong { color: #0c9142; }
.aiq .aiq_img { margin: 50px 0 0; }
.aiq #tv_load {
  position: relative;
  padding: 56.2% 0 0;
}
.aiq #tv_load iframe { 
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .aiq .aiq_tit { font-size: 30px; }
  .aiq .aiq_img { margin: 30px 0 0; }
}
@media screen and (max-width: 600px) { 
  .aiq .aiq_tit { font-size: 24px; }
  .aiq .aiq_img { margin: 20px 0 0; }  
}
@media screen and (max-width: 480px) {
  .aiq .aiq_tit { font-size: 18px; }
}


/***************************************
  분양일정
****************************************/
@media screen and (max-width: 1024px){
  .temp_schedule_skin .schedule.m-only{display: block; max-width: 353px; margin: auto;}
  .temp_schedule_skin .schedule.m-only ul{border-top: 1px solid #111; padding-top: 13px;}
  .temp_schedule_skin .schedule.m-only ul li{display: flex; align-items: center; gap: 20px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #E9E9E9;}
  .temp_schedule_skin .schedule.m-only ul li span{width: 174px; padding: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #222; font-weight: 600; border-radius: 10px 0 10px 0;}
  .temp_schedule_skin .schedule.m-only ul li.li01 span{background: #f9cac2;}
  .temp_schedule_skin .schedule.m-only ul li.li02 span{background: #eb545b;}
  .temp_schedule_skin .schedule.m-only ul li.li03 span{background: #d9cedf;}
  .temp_schedule_skin .schedule.m-only ul li.li04 span{background: #bcdad0;}
  .temp_schedule_skin .schedule.m-only ul li.li05 span{background: #b8ccd5;}
  .temp_schedule_skin .schedule.m-only ul li.li06 span{background: #feebcd;}
  .temp_schedule_skin .schedule.m-only ul li.li07 span{background: #e2ddd9;}
  .temp_schedule_skin .schedule.m-only ul li.li08 span{background: #d3d3d5;}
  .temp_schedule_skin .schedule.m-only ul li p{font-size: 16px; color: #111111; font-weight: 300;}
  .temp_schedule_skin .schedule.m-only ul li.li02 p{font-weight: 800;}
}


/***************************************
  이벤트 당첨자
****************************************/
.event_winner {
  width:1200px; background:#004F50 url('../img/sub/bg_winner01.jpg') 0 0 no-repeat; background-size:100% auto; color:#fff; margin:0 auto; text-align:center; padding-bottom:97px;
}
.event_winner .header_wrap {
  padding-top:212px;
}
.event_winner .header_wrap .title {
  font-size:90px; font-weight:700;
}
.event_winner .header_wrap .stit {
  font-size:60px; font-weight: 700; margin-top:2px;
}
.event_winner .header_wrap .stit span {
  position:relative;
}
.event_winner .header_wrap .stit span::after {
  content:''; position:absolute; right:-82px; top:-20px; width:79px; height:76px; background:url('../img/sub/ico_winner.png') 0 0 no-repeat; background-size:100% 100%;
}
.event_winner .greeting {
  margin:50px auto 0; font-size:30px; font-weight: 500; width:871px; height:75px; background:url('../img/sub/bg_winner02.png') 0 0 no-repeat; background-size:100% 100%; padding-top:8px; box-sizing: border-box; position:relative; z-index:100;
}
.event_winner .resultBox {
  background:#fff; padding:76px 58px 63px; width:990px; margin:-29px auto 0; border-radius: 20px; display: flex;
}
.event_winner .resultBox .inner {
  flex:1;
}
.event_winner .resultBox .inner ~ .inner {
  margin-left: 10px;
}
.event_winner .resultBox .tit {
  background:#004F50; font-size:18px; font-weight: 500; display: flex; height:56px; align-items: center;
}
.event_winner .resultBox .tit .in {
  flex:1;
}
.event_winner .resultBox .tit .in.name {
}
.event_winner .resultBox .tit .in.tel {
}
.event_winner .resultBox .data {
}
.event_winner .resultBox .data li {
  color: #353535; display: flex; height:60px; border-bottom: 1px solid #ccdcdc; align-items: center; font-size:24px; font-weight: 500;
}
.event_winner .resultBox .data .name {
  flex:1;
}
.event_winner .resultBox .data .tel {
  flex:1;
}

@media screen and (max-width: 1200px) {
  .page_content .temp_event_winner_skin1 .page_container {
    padding:0;
  }
}
@media screen and (max-width: 1024px) {
  .event_winner {
    width:332px; background-image:url('../img/sub/bg_winner01_m.jpg'); padding-bottom:33px;
  }
  .event_winner .header_wrap {
    padding-top:105px;
  }
  .event_winner .header_wrap .title {
    font-size:30px;
  }
  .event_winner .header_wrap .stit {
    font-size:17px; margin-top:8px;
  }
  .event_winner .header_wrap .stit span {
    position:relative;
  }
  .event_winner .header_wrap .stit span::after {
    right:-44px; top:-16px; width:44px; height:43px; background-image:url('../img/sub/ico_winner_m.png');
  }
  .event_winner .greeting {
    margin-top:21px; font-size:13px; width:276px; height:42px; background-image:url('../img/sub/bg_winner02_m.png'); padding-top:5px;
  }
  .event_winner .resultBox {
    padding:33px 27px 30px; width:274px; margin-top:-17px; display: block; border-radius: 10px;
  }
  .event_winner .resultBox .inner {
  }
  .event_winner .resultBox .inner ~ .inner {
    margin:0;
  }
  .event_winner .resultBox .inner ~ .inner .tit {
    display: none;
  }
  .event_winner .resultBox .tit {
    font-size:9px; height:28px;
  }
  .event_winner .resultBox .tit .in {
  }
  .event_winner .resultBox .tit .in.name {
  }
  .event_winner .resultBox .tit .in.tel {
  }
  .event_winner .resultBox .data {
  }
  .event_winner .resultBox .data li {
    height:30px; font-size:12px;;
  }
  .event_winner .resultBox .data .name {
  }
  .event_winner .resultBox .data .tel {
  }
}


/******************************************
  평면안내
******************************************/
#loadUint .ui_tabcontents .tab{display: grid; grid-template-columns: repeat(6, 1fr);}
/* #loadUint .ui_tabcontents .tab li:nth-child(-n+6) a{border-bottom: 0;} */
@media screen and (max-width: 1700px) {
    .page_content #loadUint .page_container {max-width: 1400px;}
}
@media screen and (max-width: 1024px) {
  #loadUint .ui_tabcontents .tab{grid-template-columns: repeat(4, 1fr);}
  #loadUint .ui_tabcontents .tab.line2 > li {width: 100%; flex: auto; margin-top: 0;}
}


/******************************************
  마감재 리스트
******************************************/
#loadUint .ui_tabcontents .magam_tab {grid-template-columns: repeat(3, 1fr);}
.ui_tabcontents .tab_conlist2 > li{display: none;}
.ui_tabcontents .tab_conlist2 > li.open{display: block;}