@charset "utf-8";

html,
body {
  height: 100%;
}

/* animation */
.ani {
  opacity: 0;
}

.animate .ani {
  animation: animate_opacity 1.2s forwards;
}

.ani-top {
  opacity: 0;
  transform: translateY(120px);
}

.ani-top2 {
  opacity: 0;
  transform: translateY(120px);
}

.ani-bottom {
  opacity: 0;
  transform: translateY(-120px);
}

.ani-left {
  opacity: 0;
  transform: translateX(120px);
}

.ani-right {
  opacity: 0;
  transform: translateX(-120px);
}

.ani-show {
  opacity: 0;
  animation: animate_opacity 0.1s forwards;
}

.ani-zoom {
  opacity: 0;
}

.animate .ani-zoom {
  animation: animate_zoom 1.2s forwards;
}

.animate .ani-top,
.animate .ani-bottom,
.animate .ani-left,
.animate .ani-right {
  animation: animate_TBLR 1.2s forwards;
}

.animate .ani-top2 {
  animation: animate_TBLR 2.4s forwards;
}

.ani-height {
  opacity: 0;
  height: 0;
}

.animate .ani-height {
  animation: animate_height 1.0s forwards;
  animation-delay: 0.8s;
}

@keyframes animate_height {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes animate_opacity {
  0% {}

  100% {
    opacity: 1;
  }
}

@keyframes animate_TBLR {
  0% {}

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes animate_scale {
  0% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animate_zoom {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotate_ico {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-2.5rem);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes bounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-2.5rem);
  }

  100% {
    transform: translateY(0);
  }
}

.animate .delay1 {
  animation-delay: .1s;
}

.animate .delay2 {
  animation-delay: .2s;
}

.animate .delay3 {
  animation-delay: .3s;
}

.animate .delay4 {
  animation-delay: .4s;
}

.animate .delay5 {
  animation-delay: .5s;
}

.animate .delay6 {
  animation-delay: .6s;
}

.animate .delay7 {
  animation-delay: .7s;
}

.animate .delay8 {
  animation-delay: .8s;
}

.animate .delay9 {
  animation-delay: .9s;
}

.animate .delay10 {
  animation-delay: 1s;
}

.animate .delay11 {
  animation-delay: 1.1s;
}

.animate .delay12 {
  animation-delay: 1.2s;
}

.animate .delay13 {
  animation-delay: 1.3s;
}

.animate .delay14 {
  animation-delay: 1.4s;
}

.animate .delay15 {
  animation-delay: 1.5s;
}

.animate .delay16 {
  animation-delay: 1.6s;
}

.animate .delay17 {
  animation-delay: 1.7s;
}

.animate .delay18 {
  animation-delay: 1.8s;
}

.animate .delay19 {
  animation-delay: 1.9s;
}

.animate .delay20 {
  animation-delay: 2s;
}

.animate .delay21 {
  animation-delay: 2.1s;
}

.animate .delay22 {
  animation-delay: 2.2s;
}

#splash_screen {
  position: fixed;
  z-index: 500;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}

#splash_screen video {
  width: 100%;
  max-width: 480px;
  -webkit-appearance: none;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: 0 none !important;
  outline: none !important;
}

#splash_screen,
#splash_screen div,
#splash_screen video {
  background: #e4e4e4;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none
}

/*
#splash_screen{position:fixed;z-index:500;width:100%;height:100%;background:#e4e4e4;}
#splash_screen div{position:absolute;top:50%;left:50%;width:480px;height:270px;margin-left:-240px;margin-top:-135px;overflow:hidden;}
#splash_screen video{position:absolute;width:520;height:292px;top:-11px;left:-20px;-webkit-appearance:none;-webkit-box-shadow:none;box-shadow:none !important;border:0 none !important;background:#e4e4e4;vertical-align:top;text-align:left;}

@media all and (max-width:480px){
	#splash_screen div{width:320px;height:180px;margin-left:-160px;margin-top:-90px;}
	#splash_screen video{width:360px;height:202px;top:-11px;left:-20px;}
}
*/

body {
  width: 100%;
  overflow-x: hidden;
}

body #container ::-webkit-scrollbar {
  width: 10px;
  height: 10px
}

body #container ::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px
}

body #container ::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  border-radius: 10px;
  background-clip: padding-box;
  border: 3px solid transparent
}

/* .fixed{overflow:hidden} */
/* .fixed #wrap{position:fixed;width:100%;overflow:hidden} */
#wrap {
  position: relative;
  width: 480px;
  margin: 0 auto;
  /* overflow:hidden;*/
}

.dim {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  width: 480px;
  height: 100%;
  margin-left: -240px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 498
}

body.main #wrap {
  background: #F4F6F8;
}

body.smain #wrap {
  background: #F4F6F8;
}

body.sub {
  background: #F1F1F1;
  font-family: 'Pretendard';
}

body.sub #wrap {
  background: #101012
}

@media all and (max-width:1200px) {
  /*
	.fixed{overflow:hidden}
	.fixed #wrap{position:fixed;width:100%;overflow:hidden}
*/
}

@media all and (max-width:540px) {
  #wrap {
    width: 100%;
  }

  .dim {
    width: 100%;
    left: 0;
    margin-left: 0;
  }

  .fixed {
    overflow: hidden
  }
}

@media all and (max-width:480px) {
  #wrap {
    padding-top: 70px;
  }

  body.sub #wrap {
    padding-top: 0
  }
}

/* Header */
#header {
  padding-top: 70px;
  /* 추가 */
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  background: #F4F6F8;
  z-index: 100;
}

.header_btn_mobile {
  position: absolute;
  top: 25px;
  left: 20px;
}

.header_btn_mobile button {
  width: 20px;
  height: 20px;
  border: 0 none;
  background: url(../images/icon/header_ico_menu@2x.png) no-repeat 50% 50% / 20px 20px;
  text-indent: -9999px;
  font-size: 0;
}

.header_btn_search {
  position: absolute;
  top: 25px;
  left: 70px;
}

.header_btn_search a {
  width: 20px;
  height: 20px;
  display: block;
  border: 0 none;
  background: url(../images/icon/header_ico_search2@2x.png) no-repeat 50% 50% / 19px 19px;
  text-indent: -9999px;
  font-size: 0;
}

.header_btn_etc {
  position: absolute;
  top: 25px;
  right: 20px;
}

.header_btn_etc button,
.header_btn_etc a {
  height: 20px;
  padding-left: 19px;
  border: 0 none;
  font-size: 11px;
  text-align: left;
  color: #000;
}

.header_btn_etc button+a,
.header_btn_etc button+button,
.header_btn_etc a+a,
.header_btn_etc a+button {
  margin-left: 15px;
}

.header_btn_etc .header_btn_user {
  background: url(../images/icon/header_ico_user@2x.png) no-repeat 0 50% / 14px 14px;
}

.header_btn_etc .header_btn_lang {
  /* background: url(../images/icon/header_ico_lang@2x.png) no-repeat 0 50% / 20px 20px; */
  /* 변경점 */
  width: 20px;
  height: 20px;
  display: block;
  border: 0 none;
  background: url(../images/icon/header_ico_lang@2x.png) no-repeat 0 50% / 20px 20px;
  text-indent: -9999px;
  font-size: 0;
}


/* .header_search {
  position: relative;
  width: 250px;
  margin: 0 auto;
  margin-top: -57px;
  margin-left: 65px;
  padding-right: 40px;
  border: 1px solid #DDDDDD;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
} */

.header_search {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all .2s ease;
  z-index: 499;
}

.header_search.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.header_search input {
  position: relative;
  height: 40px;
  width: 480px;
  margin-left: 765px;
  border: 0 none;
  border-radius: 15px;
}

.header_search button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0 none;
  background: url(../images/icon/header_ico_search@2x.png) no-repeat 50% 50% / 12px 12px;
  text-indent: -9999px;
  font-size: 0;
}

.header_logo {
  /* padding: 25px 10px; */
  text-align: center;
  /* font-size: 0; */
  vertical-align: top;
  /* 추가 */
  font-size: 15px;
  font-weight: 600;
}

.header_logo a {
  display: inline-block;
}

.header_logo img {
  position: relative;
  /* height: 20px; */
  height: 38px;
  margin: 20px;
}

body.sub #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

body.sub .header_btn_mobile button {
  background-image: url(../images/icon/header_ico_menu2@2x.png)
}

body.sub .header_btn_etc button,
body.sub .header_btn_etc a {
  color: #fff;
}

body.sub .header_btn_etc .header_btn_user {
  background-image: url(../images/icon/header_ico_user2@2x.png);
}

body.sub .header_btn_etc .header_btn_lang {
  background-image: url(../images/icon/header_ico_lang2@2x.png);
}

@media all and (max-width:480px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    background: #F4F6F8;
    z-index: 100;
  }

  body.sub #header {
    position: fixed;
  }

  .header_btn_etc .header_btn_lang {
    position: relative;
  }

  .header_btn_etc button+a,
  .header_btn_etc button+button,
  .header_btn_etc a+a,
  .header_btn_etc a+button {
    margin-left: 3px;
  }
}

#mobileMenu {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 50%;
  width: 400px;
  margin-left: -240px;
  background-color: #fff;
  z-index: 1001
}

#mobileMenu>.inner {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: #fff;
  -webkit-overflow-scrolling: touch
}

#mnb {
  margin-top: 30px;
}

#mnb>li>a {}

#mnb>li+li {
  margin-top: 15px;
}

#mnb a {
  position: relative;
  display: block;
  padding: 5px 25px 5px 0;
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
}

#mnb a::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 19px;
  background: url(../images/icon/mobile_ico_arrow_off.png) 50% 50% no-repeat;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

#mnb a:hover,
#mnb a:focus,
#mnb a.active {
  color: #0066CC
}

#mnb a:hover::after,
#mnb a:focus::after,
#mnb a.active::after {
  right: 10px;
  background-image: url(../images/icon/mobile_ico_arrow_on.png)
}

.mobile_head {
  position: relative;
  height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile_close {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 101;
  overflow: hidden;
  text-indent: -9999px;
  top: 25px;
  left: 0;
  border: 0 none;
  background: transparent url(../images/icon/mobile_ico_close.png) 50% 50% no-repeat;
  background-size: 14px 14px;
}

.mobile_home {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 101;
  overflow: hidden;
  text-indent: -9999px;
  top: 25px;
  right: 0;
  border: 0 none;
  background: transparent url(../images/icon/navbar_ico_home@2x.png) 50% 50% no-repeat;
  background-size: 16px 16px;
}

.mobile_logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 117px;
  height: 20px;
  background: url(../images/icon/mobile_ico_logo.png) no-repeat 0 0
}

.mobile_foot {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}

.mobile_foot::after {
  display: block;
  clear: both;
  content: '';
}

.mobile_foot_clause {
  clear: both;
}

.mobile_foot_clause+.mobile_foot_clause {
  margin-top: 20px
}

.mobile_foot_clause::after {
  display: block;
  clear: both;
  content: '';
}

.mobile_foot_clause a {
  position: relative;
  display: block;
  float: left;
  padding-right: 24px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}

.mobile_foot_clause a::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(../images/icon/header_ico_clause@2x.png) no-repeat 50% 50% / 100% 100%;
}

.mobile_foot_logo {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

@media all and (max-width:540px) {
  #mobileMenu {
    left: 0;
    width: 85vw;
    margin-left: 0;
  }

  #mnb>li+li {
    margin-top: 12px;
  }

  #mnb a {
    font-size: 18px;
    line-height: 22px;
  }

  .mobile_foot_clause+.mobile_foot_clause {
    margin-top: 15px
  }

  .mobile_foot_logo {
    margin-top: 15px;
    padding-top: 15px;
  }
}

@media all and (max-width:374px) {
  #mobileMenu {
    width: 90vw;
  }
}

#footer {
  position: relative;
  padding: 40px 20px;
  background-color: #0F0F0F
}

body.sub #footer {
  background-color: #3C3C46
}

.footer_logo {
  width: 117px;
  margin: 0 auto 20px;
}

.footer_logo img {
  width: 100%;
}

.footer_copy {
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.navbar::after {
  display: block;
  clear: both;
  content: '';
}

.navbar>li {
  position: relative;
  width: 90px;
}

.navbar>li a {
  position: relative;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Pretendard';
  font-size: 14px;
  line-height: 17px;
  color: #1D1D1F;
}

.navbar>li a i {
  display: block;
  margin: 0 auto 10px;
  background-size: auto 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.navbar>li a span {
  display: block;
}

.navbar>li.point a {
  background: #0066CC;
  color: #fff;
}

.navbar>li .navbar_home i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/navbar_ico_home@2x.png);
}

.navbar>li .navbar_lang i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/navbar_ico_lang@2x.png);
}

.navbar>li .navbar_user i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/header_ico_user@2x.png);
}

.navbar>li .navbar_search i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/header_ico_search2@2x.png);
}

.navbar>li .navbar_inquire i {
  width: 20px;
  height: 18px;
  background-image: url(../images/icon/navbar_ico_inquire@2x.png);
}

.navbar>li .navbar_top i {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/navbar_ico_top@2x.png);
}

.navbar>li .navbar_chat i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/navbar_ico_chat@2x.png);
}

.navbar>li .navbar_review i {
  width: 18px;
  height: 18px;
}

.navbar>li .navbar_goods i {
  width: 18px;
  height: 20px;
}

.navbar>li .navbar_project i {
  width: 18px;
  height: 20px;
}

/* #stickyBar{position:absolute;top:480px;right:-120px;} */
/* #stickyBar{position:absolute;top:30px;right:-120px;} */
#stickyBar {
  position: fixed;
  top: 30px;
  left: 50%;
  margin-left: 270px;
}

#stickyBar .navbar {
  border-radius: 10px;
  background: #F4F6F8;
  box-shadow: 0px 4px 4px 0px #0000000D;
  overflow: hidden;
}

#stickyBar .navbar>.basic+.basic::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 1px;
  background: #DDDDDD;
}

#tabBar {
  display: none;
  z-index: 10;
}

#tabBar .navbar {
  background: #fff;
}

#tabBar .navbar>li {
  width: 20%;
  float: left;
}

#tabBar .navbar>.basic::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: #DDDDDD;
}

.sub #stickyBar .navbar>li .navbar_inquire i {
  background-image: url(../images/icon/navbar_ico_inquire_w@2x.png);
}

.sub #stickyBar .navbar>li .navbar_review i {
  background-image: url(../images/icon/navbar_ico_review_w@2x.png);
}

.sub #stickyBar .navbar>li .navbar_goods i {
  background-image: url(../images/icon/navbar_ico_goods_w@2x.png);
}

.sub #stickyBar .navbar>li .navbar_project i {
  background-image: url(../images/icon/navbar_ico_project_w@2x.png);
}

.sub #stickyBar .navbar>li .navbar_home i {
  background-image: url(../images/icon/navbar_ico_home_w@2x.png);
}

.sub #tabBar .navbar>li .navbar_inquire i {
  background-image: url(../images/icon/navbar_ico_inquire@2x.png);
}

.sub #tabBar .navbar>li .navbar_review i {
  background-image: url(../images/icon/navbar_ico_review@2x.png);
}

.sub #tabBar .navbar>li .navbar_goods i {
  background-image: url(../images/icon/navbar_ico_goods@2x.png);
}

.sub #tabBar .navbar>li .navbar_project i {
  background-image: url(../images/icon/navbar_ico_project@2x.png);
}

.sub #tabBar .navbar>li .navbar_chat i {
  background-image: url(../images/icon/navbar_ico_chat@2x.png);
}

.sub #stickyBar .navbar {
  background: #101012;
}

.sub #stickyBar .navbar>li a {
  color: #fff;
}

.sub #stickyBar .navbar>.basic+.basic::after {
  background: #DDDDDD;
}

@media screen and (max-width:720px) {
  #stickyBar {
    display: none !important;
    top: 0 !important;
    right: 0 !important;
  }

  #tabBar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 480px;
    margin-left: -240px;
  }

  body.sub #wrap {
    padding-bottom: 90px
  }

  body #wrap {
    padding-bottom: 90px
  }
}

@media screen and (max-width:540px) {
  #tabBar {
    left: 0;
    width: 100%;
    margin-left: 0;
  }

  body.sub #wrap {
    padding-bottom: 60px
  }

  body #wrap {
    padding-bottom: 60px
  }

  #tabBar .navbar>li a {
    height: 60px;
    font-size: 11px;
    line-height: 14px;
  }

  #tabBar .navbar>li a i {
    margin: 0 auto 7px;
  }

  .navbar>li .navbar_home i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/navbar_ico_home@2x.png);
  }


  .navbar>li .navbar_lang i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/navbar_ico_lang@2x.png);
  }

  .navbar>li .navbar_user i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/header_ico_user@2x.png);
  }

  .navbar>li .navbar_search i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/header_ico_search2@2x.png);
  }

  .navbar>li .navbar_inquire i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/navbar_ico_inquire@2x.png);
  }

  .navbar>li .navbar_top i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/navbar_ico_top@2x.png);
  }

  .navbar>li .navbar_chat i {
    width: 16px;
    height: 14px;
    background-image: url(../images/icon/navbar_ico_chat@2x.png);
  }

  .navbar>li .navbar_review i {
    width: 16px;
    height: 14px;
  }

  .navbar>li .navbar_goods i {
    width: 16px;
    height: 14px;
  }

  .navbar>li .navbar_project i {
    width: 16px;
    height: 14px;
  }

}

.swiper-slide img {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

#visual {
  position: relative;
  z-index: 1;
}

#visual_index {
  position: relative;
  z-index: 1;
  /* 추가 */
  padding: 40px 0px 10px;
  margin: 15px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.visual_swiper {
  position: relative;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}

.visual_swiper .swiper-container {
  position: relative;
  overflow: visible;
}

.visual_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.visual_swiper .swiper-slide .thumb {}

.visual_swiper .swiper-slide .title {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.visual_swiper .swiper-button-prev,
.visual_swiper .swiper-button-next {
  margin-top: -47px;
}

.visual_swiper .swiper-button-disabled {
  opacity: 1 !important;
}

.visual_swiper .swiper-pagination {
  bottom: 15px;
}

body.main .visual_swiper .swiper-container,
body.smain .visual_swiper .swiper-container {
  margin-bottom: 70px;
}

body.main .visual_swiper .swiper-pagination,
body.smain .visual_swiper .swiper-pagination {
  bottom: 85px;
}

/* notice_swiper */
.notice_swiper {
  position: relative;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}

.notice_swiper .swiper-container {
  position: relative;
  overflow: visible;
}

.notice_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.notice_swiper .swiper-slide .thumb {}

.notice_swiper .swiper-slide .title {
  font-family: 'Pretendard';
  position: absolute;
  /* bottom: -40px; */
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.notice_swiper .swiper-button-prev,
.notice_swiper .swiper-button-next {
  margin-top: -47px;
}

.notice_swiper .swiper-button-disabled {
  opacity: 1 !important;
}

.notice_swiper .swiper-pagination {
  bottom: 15px;
}

body.main .notice_swiper .swiper-container,
body.smain .notice_swiper .swiper-container {
  margin-bottom: 70px;
}

body.main .notice_swiper .swiper-pagination,
body.smain .notice_swiper .swiper-pagination {
  bottom: 85px;
}

/* /notice_swiper */

/* online_swiper */
.online_swiper {
  position: relative;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 8px;
}

.online_swiper .swiper-container {
  position: relative;
  overflow: visible;
}

.recommend_swiper .swiper-slide {
  width: 400px;
}

.online_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}


.online_swiper .swiper-slide .thumb {
  border-radius: 8px;
}

.online_swiper .swiper-slide .thumb img {
  border-radius: 8px;
}

.online_swiper .swiper-slide .title {
  /* font-family: 'Pretendard';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 8px;
  line-height: 1.4;
  word-wrap: break-word;
}

.online_swiper .swiper-button-prev,
.online_swiper .swiper-button-next {
  margin-top: -47px;
}

.online_swiper .swiper-button-disabled {
  opacity: 1 !important;
}

.online_swiper .swiper-pagination {
  bottom: 15px;
}

body.main .online_swiper .swiper-container,
body.smain .online_swiper .swiper-container {
  margin-bottom: 70px;
}

body.main .online_swiper .swiper-pagination,
body.smain .online_swiper .swiper-pagination {
  bottom: 85px;
}

/* /online_swiper */

.museum_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.artist_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.exhibition_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.trend_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.artgoods_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.recommend_swiper .swiper-slide {
  position: relative;
  width: 100%;
  text-align: center;
  width: 480px;
}

.artist_swiper,
.museum_swiper,
.exhibition_swiper,
.trend_swiper,
.artgoods_swiper,
.recommend_swiper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* 섹션 간 간격 */
}

.swiper-pagination {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 50%;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  background-color: transparent;
  margin: 0 3.5px;
  cursor: pointer;
  user-select: none;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  width: 20px;
  height: 24px;
  margin-top: -12px;
  background-size: 12px auto;
  user-select: none;
}

.swiper-button-prev {
  left: 20px;
  background-image: url(../images/icon/swiper_ico_prev.png);
}

.swiper-button-next {
  right: 20px;
  background-image: url(../images/icon/swiper_ico_next.png);
}

#container {
  padding: 0 20px 40px;
}

#container_index {
  padding: 40px 0px 10px;
  margin: 0px 15px;
}

.main_sect {
  /* padding: 40px 20px 10px; */
  padding: 0px 10px;
  /* border-radius: 20px; */
  /* background: #fff; */
  background: rgba(255, 255, 255, 0);
  /* box-shadow: 0px 4px 4px 0px #0000000D; */
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main_sect+.main_sect {
  /* margin-top: 40px; */
  width: 100%;
  padding-top: 20.7px;
}

.main_sect .sect_header {
  display: flex;
  /* Flexbox로 헤더 정렬 */
  justify-content: space-between;
  /* 제목과 더보기 버튼을 양쪽 끝으로 배치 */
  align-items: center;
  /* 세로 중앙 정렬 */
  margin-bottom: 5px;
  /* 아래에 여백 추가 */
}

.main_sect .sect_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #000;
  position: relative;
}

.main_sect .sect_title::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: #CCCCCC;
  margin-top: 5px;
}

.main_sect .sect_more {
  margin-left: auto;
  /* 오른쪽 끝으로 밀기 */
}

.main_sect .sect_more a {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
}

.news_list {
  position: relative;
  margin: 0 -10px;
  /* padding-bottom: 40px; */
}

.news_list::after {
  display: block;
  clear: both;
  content: '';
}

.news_list>li {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.news_list .thumb {
  margin-bottom: 15px;
}

.news_list .thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
}

.news_list .title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news_list .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.artist_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.artist_list::after {
  display: block;
  clear: both;
  content: '';
}

.artist_list>li {
  /* float: left;
  width: 50%;
  padding: 0 5px; */
  flex: 0 1 calc(33% - 30px);
  list-style: none;
  text-align: center;
  /* 텍스트 정렬 */
}

.artist_list .thumb {
  /* margin-bottom: 15px; */
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}

.artist_list .thumb img {
  /* width: 100%;
  height: 126px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist_list .title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.artist_list .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.artist_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.artist_list>li .box {}

.artist_list>li .box .thumb {
  margin-bottom: 15px;
}

.artist_list>li .box .thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
}

.artist_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.museum_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.museum_list::after {
  display: block;
  clear: both;
  content: '';
}

.museum_list>li {
  /* float: left;
  width: 50%;
  padding: 0 5px; */
  flex: 0 1 calc(50% - 35px);
  list-style: none;
}

.museum_list .thumb {
  /* margin-bottom: 15px; */
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.museum_list .thumb img {
  /* width: 100%;
  height: 126px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: auto;
  object-fit: cover;

}

.museum_list .title {
  margin-bottom: 10px;
  /* text-align: center; */
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

.museum_list .text {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.museum_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.museum_list>li .box {}

.museum_list>li .box .thumb {
  margin-bottom: 15px;
}

.museum_list>li .box .thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
}

.museum_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recommend_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.recommend_list::after {
  display: block;
  clear: both;
  content: '';
}

.recommend_list>li {
  /* float: left;
  width: 50%;
  padding: 0 10px; */
  flex: 0 1 calc(33% - 30px);
}

.recommend_list .thumb {
  /* margin-bottom: 15px; */
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 8px;

}

.recommend_list .thumb img {
  /* width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recommend_list .title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recommend_list .text {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.recommend_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.recommend_list>li .box {
  cursor: pointer;
}

.recommend_list>li .box .thumb {
  margin-bottom: 15px;
}

.recommend_list>li .box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.recommend_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.exhibition_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.exhibition_list::after {
  display: block;
  clear: both;
  content: '';
}

.exhibition_list>li {
  /* float: left;
  width: 50%;
  padding: 0 10px; */
  flex: 0 1 calc(50% - 35px);
  list-style: none;
}

.exhibition_list .thumb {
  /* margin-bottom: 15px; */
  /* 추가 */
  position: relative;
  overflow: hidden;
  height: 150px;
  border-radius: 8px;
}

.exhibition_list .thumb img {
  /* width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: auto;
  object-fit: cover;
  /* object-position: center;
  border-radius: 8px; */
}


.exhibition_list .title {
  /* margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  padding: 40px;
  box-sizing: border-box;
  line-height: 1.4;
  word-wrap: break-word;
  border-radius: 8px;
}

.exhibition_list .text {
  /* text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; */
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin-top: 5px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* 두 줄로 제한 */
  -webkit-box-orient: vertical;
}

.exhibition_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.exhibition_list>li .box {}

.exhibition_list>li .box .thumb {
  margin-bottom: 15px;
}

.exhibition_list>li .box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.exhibition_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.monthly_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.monthly_list::after {
  display: block;
  clear: both;
  content: '';
}

.monthly_list>li {
  /* float: left;
  width: 50%;
  padding: 0 10px; */
  flex: 0 1 calc(50% - 35px);
  list-style: none;
}

.monthly_list .thumb {
  /* margin-bottom: 15px; */
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.monthly_list .thumb img {
  /* width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.monthly_list .title {
  margin-bottom: 10px;
  /* text-align: center; */
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.monthly_list .text {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.monthly_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.monthly_list>li .box {}

.monthly_list>li .box .thumb {
  margin-bottom: 15px;
}

.monthly_list>li .box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.monthly_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.artgoods_list {
  /* position: relative;
  margin: 0 -10px;
  padding-bottom: 40px; */
  display: flex;
  flex-wrap: wrap;
  /* 줄바꿈 허용 */
  gap: 10px;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.artgoods_list::after {
  display: block;
  clear: both;
  content: '';
}

.artgoods_list>li {
  /* float: left;
  width: 50%;
  padding: 0 10px; */
  flex: 0 1 calc(33% - 30px);
}

.artgoods_list .thumb {
  /* margin-bottom: 15px; */
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 8px;
}

.artgoods_list .thumb img {
  /* width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%; */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artgoods_list .title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.artgoods_list .text {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.artgoods_list>li:nth-child(n+4) {
  margin-top: 20px;
}

.artgoods_list>li .box {}

.artgoods_list>li .box .thumb {
  margin-bottom: 15px;
}

.artgoods_list>li .box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.artgoods_list>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width:480px) {
  .main_sect {
    padding: 1px 0px 10px;
  }

  .news_list .thumb img {
    height: 26.25vw;
  }

  .artgoods_list>li {
    flex: 0 1 calc(33% - 50px);
  }

  .recommend_list>li {
    flex: 0 1 calc(33% - 50px);
  }

  .artist_list>li {
    flex: 0 1 calc(33% - 50px);
  }

  .artist_list .thumb {
    width: 105px;
    height: 105px;
  }

  .museum_list>li {
    flex: 0 1 calc(50% - 70px);
  }

  .monthly_list>li {
    flex: 0 1 calc(50% - 70px);
  }

  .exhibition_list>li {
    flex: 0 1 calc(50% - 70px);
  }

  .exhibition_list .title {
    padding: 25px;
  }
}

.arts_photo {
  position: relative;
  overflow: hidden;
}

.arts_photo img {
  width: 100%;
}

.arts_preview {
  position: relative;
  margin-top: 15px;
  padding-bottom: 40px;
  overflow: hidden;
}

.arts_detail {
  position: relative;
  margin-top: 15px;
  padding-bottom: 40px;
  overflow: hidden;
}

.arts_preview_title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  color: #000000;
}

.arts_preview_list {}

.arts_preview_list>li {}

.arts_preview_list>li {
  position: relative;
  padding-left: 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #000000;
}

.arts_preview_list>li:before {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  left: 6px;
  width: 4px;
  height: 4px;
  margin-top: 5px;
  border-radius: 4px;
  background: #121212
}

.arts_preview_text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  color: #000000;
}

.arts_preview_text table {
  font-size: 12px;
}

.arts_preview_text table th {
  border-bottom: 1px solid #E9E9E9;
  text-align: left;
  font-weight: 400;
  position: relative;
  width: 60px;
  height: 30px !important;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.arts_preview_text th span {
  float: right;
  color: #e4e4e4;
}

.arts_preview_text td {
  border-bottom: 1px solid #E9E9E9;
  color: #777777;
  padding-left: 20px;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;

}

.arts_preview_text td input {
  height: 30px;
  padding: 0 5px;
  border: 0 none;
  font-size: 12px;
  border-radius: 15px;
  background-color: transparent;
}

.arts_preview_text p {
  font-weight: 500;
}

.arts_preview_tag {
  margin: 20px 0;
}

.arts_preview_tag::after {
  display: block;
  clear: both;
  content: '';
}

.arts_preview_tag>li {
  float: left;
  height: 24px;
  line-height: 24px;
  margin-right: 15px;
  padding: 0 15px;
  background: #F4F6F8;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}

.arts_preview_list+.arts_preview_title,
.arts_preview_text+.arts_preview_title {
  margin-top: 15px;
}

.arts_preview_text+.arts_preview_text {
  margin-top: 25px;
}

.arts_preview_site {
  position: absolute;
  top: 0;
  right: 0;
}

.arts_preview_site a,
.arts_preview_site span {
  display: block;
  padding-left: 17px;
  background: url(../images/icon/arts_preview_site_ico@2x.png) no-repeat 0 50% / 12px auto;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #0066CC;
}

.arts_preview_site span {
  display: none !important
}

.arts_preview_more {
  position: relative;
}

.arts_preview_more a {
  display: block;
  padding: 30px 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: center;
  color: #0066CC;
}

@media screen and (max-width:480px) {
  .arts_preview_tag>li {
    margin-right: 8px;
    padding: 0 8px;
    font-size: 11px;
  }
}

#artistSect .arts_preview {
  height: 150px;
}

#artistSect .arts_preview::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
}

#artistSect.active .arts_preview {
  height: auto !important;
  padding-bottom: 0 !important;
}

#artistSect.active .arts_preview::after {
  display: none;
}

/* Sub Main Page */
#location {}

.loc_nav {
  margin-bottom: 25px;
  font-size: 0;
  text-align: center;
}

.loc_nav>li {
  display: inline-block;
  position: relative;
}

.loc_nav>li+li {
  margin-left: 15px;
  padding-left: 18px;
}

.loc_nav>li+li::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background: url(../images/icon/loc_nav_arrow@2x.png) no-repeat 0 0 / 100% 100%
}

.loc_nav>li a {
  font-size: 14px;
  line-height: 17px;
}

.loc_nav>li.home a {
  display: inline-block;
  padding-left: 18px;
  background: url(../images/icon/loc_nav_home@2x.png) no-repeat 0 50% / 12px 12px
}

.loc_nav>li a.active {
  color: #0066CC;
}

.loc_title {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  color: #000000;
}

.arts_box {
  padding: 0 20px;
  border-radius: 0 0 20px 20px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #0000000D;
}

.arts_box+.arts_box {
  margin-top: 40px;
}


.arts_box .arts_image {
  position: relative;
  margin: 0 -20px;
}

.arts_box .arts_image img {
  width: 100%;
}



.arts_box .arts_preview {
  height: 300px;
}

.arts_box .arts_preview::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
}

.arts_box .arts_detail {
  height: 300px;
}

.arts_box .arts_detail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
}

.arts_box.active .arts_preview {
  height: auto !important;
  padding-bottom: 0 !important;
}

.arts_box.active .arts_detail {
  height: auto !important;
  padding-bottom: 0 !important;
}

.arts_box.active .arts_preview::after {
  display: none;
}

.arts_box.active .arts_detail::after {
  display: none;
}

.detail_box {
  padding: 0 20px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #0000000D;
}

.detail_box .arts_image {
  position: relative;
  margin: 0 -20px;
}

.detail_box .arts_image img {
  width: 100%;
}

.arts_preview_goods {
  position: relative;
  margin: 0 -10px;
}

.arts_preview_goods::after {
  display: block;
  clear: both;
  content: '';
}

.arts_preview_goods>li {
  float: left;
  width: 33.33%;
  padding: 0 10px;
}

.arts_preview_goods>li:nth-child(n+4) {
  margin-top: 20px;
}

.arts_preview_goods>li .box {}

.arts_preview_goods>li .box .thumb {
  margin-bottom: 15px;
  box-shadow: 0px 4px 4px 0px #0000000D;
}

.arts_preview_goods>li .box .thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
}

.arts_preview_goods>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.arts_preview_artist {
  position: relative;
  margin: 0 -10px;
}

.arts_preview_artist::after {
  display: block;
  clear: both;
  content: '';
}

.arts_preview_artist>li {
  float: left;
  width: 33.33%;
  padding: 0 10px;
}

.arts_preview_artist>li:nth-child(n+4) {
  margin-top: 20px;
}

.arts_preview_artist>li .box {}

.arts_preview_artist>li .box .thumb {
  box-shadow: 0px 4px 4px 0px #0000000D;
}

.arts_preview_artist>li .box .thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
}

.arts_preview_artist>li .box .thumb1 {
  box-shadow: 0px 4px 4px 0px #0000000D;
  border-radius: 7px;
}

.arts_preview_artist>li .box .thumb1 img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 7px;
}

.arts_preview_artist>li .box .name {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1D1D1F;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width:480px) {
  .arts_preview_goods>li .box .thumb img {
    height: 26.25vw;
  }

  .arts_preview_artist>li .box .thumb img {
    height: 26.25vw;
  }

  #location {
    padding: 14px;
  }
}



/* Sub Page */
body.sub #container {
  padding: 30px 30px 40px;
}

.sub_article {}

.sub_article+.sub_article {
  padding-top: 40px;
  border-top: 1px solid #5A5A5A;
}

.article_cate {
  margin-bottom: 20px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #3181F7;
}

.article_cate+.article_image {
  margin-top: 30px;
}

.article_image {
  margin-bottom: 30px;
}

.article_subject {
  margin-bottom: 30px;
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: #FFFFFF;
}

.article_info {
  margin-bottom: 30px;
}

.article_title {
  margin-bottom: 30px;
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #FFFFFF;
}

.article_text {}

.article_text p {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #AAAAAA;
}

.article_text p+p {
  margin-top: 22px;
}

.article_text+.article_list,
.article_list+.article_text {
  margin-top: 40px;
}

.article_list {}

.article_list>li {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #AAAAAA;
}

.article_gallery {
  position: relative;
  margin: 0 -10px;
}

.article_gallery::after {
  display: block;
  clear: both;
  content: '';
}

.article_gallery>li {
  float: left;
  padding: 0 10px;
}

.article_gallery>li .box {
  display: block;
}

.article_gallery>li .box .thumb {
  margin-bottom: 15px;
  box-shadow: 0px 4px 4px 0px #0000000D;
}

.article_gallery>li .box .thumb img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.article_gallery>li .box .name {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  display: -webkit-box;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article_gallery.nth_2n>li .box .thumb img {
  height: 200px;
}

.article_gallery.nth_3n>li .box .thumb img {
  height: 126px;
}

.article_gallery.nth_2n>li {
  width: 50%;
}

.article_gallery.nth_2n>li:nth-child(n+3) {
  margin-top: 30px;
}

.article_gallery.nth_2n>li:nth-child(2n+1) {
  clear: both;
}

.article_gallery.nth_2n>li .box .name {
  font-size: 18px;
  line-height: 22px;
}

.article_gallery.nth_3n>li {
  width: 33.33%;
}

.article_gallery.nth_3n>li:nth-child(n+4) {
  margin-top: 20px;
}

.article_gallery.nth_3n>li:nth-child(3n+1) {
  clear: both;
}


@media screen and (max-width:480px) {
  .article_gallery.nth_2n>li .box .thumb img {
    height: 41.66vw;
  }

  .article_gallery.nth_3n>li .box .thumb img {
    height: 26.25vw;
  }
}

.museum_review.hasmore {
  max-height: 625px;
}

.museum_goods.hasmore,
.museum_artwork.hasmore,
.museum_artist.hasmore {
  max-height: 548px;
}

.museum_masterpiece.hasmore {
  max-height: 711px;
}

.sub_article {
  position: relative;
  overflow: hidden;
}

.sub_article.hasmore {
  padding-bottom: 72px;
}

.sub_article_more {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hasmore .sub_article_more {
  display: block;
}

.hasmore .sub_article_more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 72px;
  width: 100%;
  height: 110px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(16, 16, 18, 1)), to(rgba(35, 35, 35, 0)));
  background: linear-gradient(0deg, rgba(16, 16, 18, 1) 0%, rgba(35, 35, 35, 0) 100%);
}

.hasmore .sub_article_more a {
  display: block;
  height: 72px;
  padding: 30px 0 25px;
  background: #101012;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #0066CC;
}

.sub_article_enter {
  margin-top: 25px;
}

.sub_article_enter a {
  display: block;
  padding: 20px 0;
  border-top: 1px solid #5A5A5A;
  background: #101012;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #3181F7;
}

.active.sub_article {
  max-height: none !important;
  padding-bottom: 0 !important;
}

.active.sub_article .sub_article_more {
  position: relative;
  bottom: auto;
  left: auto;
}

.active.sub_article .sub_article_more::after {
  display: none !important;
}

.article_head {
  position: relative;
  margin-bottom: 30px;
  font-size: 0;
}

.article_head .article_title {
  margin-bottom: 10px;
}

.article_head .article_text {
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
  color: #AAAAAA;
}

.article_head .article_write {
  position: absolute;
  top: 5px;
  right: 0;
}

.article_head .article_write a {
  display: block;
  padding-left: 20px;
  background: url(../images/icon/article_ico_write.png) no-repeat 0 50%;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  text-align: right;
  color: #fff;
}

.article_head .article_sort {}

.article_head .article_sort::after {
  display: block;
  clear: both;
  content: '';
}

.article_head .article_sort a {
  display: block;
  float: left;
  font-size: 11px;
  line-height: 13px;
  color: #fff;
}

.article_head .article_sort a+a {
  margin-left: 20px
}

.article_head .article_sort a.active {
  color: #0066CC;
}

.article_head .article_sort .rating {
  padding-left: 17px;
  background: url(../images/icon/article_ico_rating_off.png) no-repeat 0 50%;
}

.article_head .article_sort .time {
  padding-left: 27px;
  background: url(../images/icon/article_ico_time_off.png) no-repeat 0 50%;
}

.article_head .article_sort .price {
  padding-left: 17px;
  background: url(../images/icon/article_ico_price_off.png) no-repeat 0 50%;
}

.article_head .article_sort .name {
  padding-left: 26px;
  background: url(../images/icon/article_ico_name_off.png) no-repeat 0 50%;
}

.article_head .article_sort .date {
  padding-left: 26px;
  background: url(../images/icon/article_ico_date_off.png) no-repeat 0 50%;
}

.article_head .article_sort .rating.active {
  background-image: url(../images/icon/article_ico_rating_on.png);
}

.article_head .article_sort .time.active {
  background-image: url(../images/icon/article_ico_time_on.png);
}

.article_head .article_sort .price.active {
  background-image: url(../images/icon/article_ico_price_on.png);
}

.article_head .article_sort .name.active {
  background-image: url(../images/icon/article_ico_name_on.png);
}

.article_head .article_sort .date.active {
  background-image: url(../images/icon/article_ico_date_on.png);
}

.article_head .article_order {
  position: absolute;
  top: 5px;
  right: 0;
}

.article_head .article_order a {
  display: block;
  width: 18px;
  height: 15px;
  background: url(../images/icon/article_ico_order_off.png) no-repeat 50% 50%;
  text-indent: -9999px;
  font-size: 0;
}

.article_head .article_order .asc {
  display: block;
}

.article_head .article_order .desc {
  display: none;
}

.article_head .article_order.active .asc {
  display: none;
}

.article_head .article_order.active .desc {
  display: block;
}

.article_review_user {
  margin-bottom: 10px;
}

.article_review_thumb {
  display: inline-block;
  margin-right: 10px;
}

.article_review_rating,
.article_review_total,
.article_review_name {
  display: inline-block;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.article_review_rating {
  color: #FEDE69;
}

.article_review_total {
  margin-left: 10px;
  color: #888888;
}

.article_review_name {
  margin-right: 10px;
  color: #fff;
}

.article_review_text {
  padding: 20px;
  background: #3C3C46;
  border-radius: 15px;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #fff;
  word-wrap: break-word;
}

.article_review_list {}

.article_review_list>li {
  font-size: 0;
}

.article_review_list>li+li {
  margin-top: 30px;
}

.article_goods_list {}

.article_goods_list>li {
  font-size: 0;
}

.article_goods_list>li+li {
  margin-top: 40px;
}

.article_goods_image {
  margin-bottom: 20px;
}

.article_goods_image img {
  width: 100%;
}

.article_goods_info {
  font-family: 'Pretendard';
  line-height: 1.2;
}

.article_goods_info .title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.article_goods_info .text {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 300;
  color: #AAAAAA;
}

.article_goods_info .price {
  font-size: 22px;
  font-weight: 600;
  color: #0066CC;
}

.article_artwork_info .price {
  font-size: 22px;
  font-weight: 600;
  color: #0066CC;
}

.article_artwork_list {}

.article_artwork_list>li {
  font-size: 0;
}

.article_artwork_list>li+li {
  margin-top: 25px;
  padding-top: 40px;
  border-top: 1px solid #5A5A5A;
}

.article_artwork_image {
  margin-bottom: 25px;
}

.article_artwork_image img {
  width: 100%;
}

.article_artwork_info {
  font-family: 'Pretendard';
  line-height: 1.2;
}

.article_artwork_info .title {
  position: relative;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.article_artwork_info .title em {
  display: inline-block;
  margin-top: 5px;
  margin-right: 15px;
}

.article_artwork_info .text {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
}

.article_artwork_info .list {
  margin-top: 20px;
}

.article_artwork_info .list li {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.artwork_audio {
  display: block;
  width: 100%;
  height: 25px;
  margin-top: 5px;
}

/* 주제탭 */
.project_tabs {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #5A5A5A;
}

.project_tabs ul::after {
  display: block;
  clear: both;
  content: '';
}

.project_tabs li {
  float: left;
  font-size: 0;
}

/* .project_tabs li + li{margin-left:25px;} */
.project_tabs li.swiper-slide {
  width: auto;
}

.project_tabs li a {
  display: block;
  position: relative;
}

.project_tabs li a.active {}

.project_tabs li a.active::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #0066CC;
  z-index: 1;
  box-sizing: border-box;
}

.project_info {
  margin-bottom: 40px;
  border-bottom: 1px solid #5A5A5A;
}

.project_info>.item {
  display: none;
}

.project_info>.item.active {
  display: block;
}

.gallery-wrap {
  margin-bottom: 4rem;
}

.gallery-wrap::after {
  display: block;
  clear: both;
  content: '';
}

.gallery-main {
  float: left;
  width: calc(100% - 14.7rem);
  height: 20rem
}

.gallery-main .swiper-slide {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

/* .gallery-main .swiper-slide img{width:100%;height:100%;object-fit:cover;} */
.gallery-thumbs {
  float: right;
  width: 13rem;
  height: 20rem;
}

.gallery-thumbs .swiper-wrapper {
  position: static;
}

.gallery-thumbs .swiper-slide {
  display: flex;
  height: 9.6rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.gallery-wrap .swiper-button-prev {
  display: none;
}

.gallery-wrap .swiper-button-next:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4.4rem;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  background: url(../images/sub/gallery_thumbs_arrow@2x.png) no-repeat 50% 50% / 1.5rem auto;
  opacity: 1;
}

.gallery-wrap .swiper-button-next {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  width: 13rem;
  height: 10rem;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.gallery-wrap {
  margin-bottom: 35px;
}

.gallery-main,
.donation_view .gallery-main {
  float: none;
  width: 100%;
  height: 20rem;
}

.gallery-main .swiper-slide {
  border-radius: 0;
}

.gallery-thumbs,
.donation_view .gallery-thumbs {
  float: none;
  width: 100%;
  height: auto;
  padding: 12px 16px 0;
}

.gallery-thumbs .swiper-slide,
.donation_view .gallery-thumbs .swiper-slide {
  width: 96px;
  height: 72px;
}

.gallery-wrap .swiper-button-next {
  display: none;
}

.article_stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 22px 0;
  background: #18171D;
}

.article_stats dl {
  position: relative;
  width: 50%;
}

.article_stats dl+dl::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: #5A5A5A;
}

.article_stats dt,
.article_stats dd {
  font-family: 'Pretendard';
  text-align: center;
  line-height: 1.21;
}

.article_stats dt {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.article_stats dd {
  font-size: 20px;
  font-weight: 800;
  color: #FEDE69;
}

.article_search {
  position: relative;
  width: 300px;
  margin: 0 auto 25px;
  padding-right: 38px;
  border-radius: 15px;
  border: 1px solid #DDDDDD;
  background: #272727;
}

.article_search input {
  height: 38px;
  padding: 0 20px;
  border: 0 none;
  font-size: 12px;
  border-radius: 15px;
  background-color: transparent;
}

.article_search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  border: 0 none;
  background: transparent url(../images/icon/article_ico_search@2x.png) no-repeat 50% 50% / 12px 12px;
}

.article_rating {}

.article_rating_title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  color: #FFFFFF;
}

.article_rating_star {
  margin: 40px 0 20px;
  text-align: center;
  font-size: 0;
}

.article_rating_star ul {
  padding: 4px 0;
}

.article_rating_star li {
  display: inline-block;
}

.article_rating_star button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 4px;
  padding: 0;
  background: url(../images/icon/article_ico_star_off.png) no-repeat 50% 50% / 100% 100%;
  border: 0 none;
  font-size: 0;
}

.article_rating_star.i1 {}

.article_rating_star.i1 .i1,
.article_rating_star.i2 .i1,
.article_rating_star.i2 .i2,
.article_rating_star.i3 .i1,
.article_rating_star.i3 .i2,
.article_rating_star.i3 .i3,
.article_rating_star.i4 .i1,
.article_rating_star.i4 .i2,
.article_rating_star.i4 .i3,
.article_rating_star.i4 .i4,
.article_rating_star.i5 .i1,
.article_rating_star.i5 .i2,
.article_rating_star.i5 .i3,
.article_rating_star.i5 .i4,
.article_rating_star.i5 .i5 {
  background-image: url(../images/icon/article_ico_star_on.png)
}

.article_rating_text {
  margin-bottom: 25px;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  text-align: center;
  color: #AAAAAA;
}

.article_rating_comment {
  margin: 25px 0;
}

.article_rating_comment textarea {
  height: 132px;
  padding: 20px;
  border: 0 none;
  border-radius: 15px;
  background: #3C3C46;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  resize: none
}

.article_rating_comment textarea::placeholder {
  color: #999999;
}

.form_file {
  position: relative;
  width: 100%;
  padding-right: 37px;
}

.form_file.full {
  padding-right: 0
}

.form_file label {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 0 none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px inset #d8d8d8;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  color: #acacac;
}

.form_file .file_input {
  display: none;
}

.form_file .file_name {
  display: block;
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  border: 0 none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px inset #d8d8d8;
  font-size: 13px;
  color: #383838;
  letter-spacing: -0.075em;
  background-color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.form_file .file_delete {
  display: none;
}

.form_file .active+.file_delete {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 0 none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px inset #d8d8d8;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  color: #acacac;
}

.form_file .file_name.placeholder {
  color: #acacac;
}

.add_files_btn {
  position: relative;
  width: 100%;
}

.add_files_btn label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: 1px solid #DDDDDD;
  border-radius: 15px;
  background: #272727;
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: center;
  color: #CCCCCC;
  cursor: pointer;
  z-index: 1;
}

.add_files_btn label i {
  display: inline-block;
  width: 12px;
  height: 13px;
  margin-right: 10px;
  background: url(../images/icon/forms_ico_file.png) no-repeat 50% 50%;
}

.add_files_btn label span {
  display: inline-block;
}

.add_files_btn .hidden {
  display: none;
}

.add_files_list {
  overflow: auto;
}

.add_files_list .filebox {
  position: relative;
  margin-top: 15px;
  padding-left: 10px;
  vertical-align: top;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #999999;
}

.add_files_list .filebox:before {
  content: '-';
  position: absolute;
  top: 0;
  left: 0
}

.add_files_list .filebox+.filebox {
  margin-top: 10px;
}

.add_files_list .filebox .name {
  display: inline-block;
  font-family: 'Pretendard';
}

.add_files_list .filebox .delete {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background: url(../images/icon/forms_ico_delete.png) no-repeat 50% 50%;
}

.article_submit {
  margin-top: 25px;
  border-top: 1px solid #5A5A5A;
  font-size: 0;
}

.article_submit button {
  width: auto;
  height: auto;
  padding: 20px;
  border: 0 none;
  background-color: transparent;
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  color: #DDDDDD;
}

.article_submit button.submit {
  color: #3181F7
}

.article_submit a {
  display: block;
  padding: 20px 0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #3181F7;
}


.article_submit.nth_2n {}

.article_submit.nth_2n button {
  width: 50%;
}

.article_submit.nth_1n button {
  width: 100%;
  color: #3181F7
}

.article_submit.nth_1n a {
  width: 100%;
  color: #3181F7
}

.modal_wrap ::-webkit-scrollbar {
  width: 16px;
  height: 16px
}

.modal_wrap ::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px
}

.modal_wrap ::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  border-radius: 10px;
  background-clip: padding-box;
  border: 6px solid transparent;
}

/*
.modal_wrap ::-webkit-scrollbar{width:13px}
.modal_wrap ::-webkit-scrollbar-thumb{border:3px solid transparent;background-clip:padding-box;border-radius:7px;min-height:48px;background-color:rgba(100, 100, 100, 0.5)}
.modal_wrap ::-webkit-scrollbar-thumb:hover{background-color:rgba(100, 100, 100, 0.6)}
.modal_wrap ::-webkit-scrollbar-track{background-color:rgba(100, 100, 100, 0)}
.modal_wrap ::-webkit-scrollbar-track:hover{background-color:rgba(100, 100, 100, 0.1)}
*/
/* 레이어팝업 */
.modal_wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all .2s ease;
  z-index: 499;
}

.modal_area {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  overflow-x: visible;
  transform: translate(-50%, -50%);
  /* transform:translate(calc(-50% + 0.5px),calc(-50% + 0.5px));*/
  z-index: 500;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 1px #0000000D;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}


.modal_wrap.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

body.show-modal {
  overflow: hidden;
}


.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 31px;
  height: 31px;
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 31px;
  height: 31px;
  border: 0 none;
  background: transparent url(../images/icon/mobile_ico_close.png) 50% 50% no-repeat;
  background-size: 14px 14px;
  text-indent: -9999px;
  font-size: 0;
}

.modal_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 40px);
  max-height: 640px;
  min-height: 540px;
  padding: 0 20px;
}

.search_modal_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 40px);
  max-height: 340px;
  min-height: 240px;
  padding: 0 20px;
}

.modal_flex.mini {
  max-height: 250px;
  min-height: 200px;
}

.modal_flex+.modal_flex,
.modal_flex.off {
  display: none;
}

.modal_flex.on {
  display: flex;
}

.modal_title {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  color: #000;
}

.modal_flex.mini .modal_title {
  margin-top: 15px;
  margin-bottom: 0;
}

.modal_flex.mini .modal_enter {
  max-width: 90%;
  margin: 30px auto 0;
}

.modal_title em {
  color: #0066CC
}

.modal_finish {
  padding-top: 90px;
  background: url(../images/icon/modal_ico_finish.png) no-repeat 50% 0;
}

.modal_form {
  width: 100%;
  position: relative;
}

.modal_form+.modal_form {}

.modal_form+.modal_form {
  margin-top: 20px;
  padding-top: 21px;
}

.modal_form+.modal_form::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
}

.modal_form .form_input {
  position: relative;
}

.modal_form .form_input+.form_input {
  margin-top: 20px;
}

.modal_form .form_input input {
  display: flex;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 25px;
  border: 1px solid #DDDDDD;
  background: #F1F1F1;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #000;
}

.modal_form .form_input .req {
  position: absolute;
  top: 50%;
  left: 20px;
  line-height: 18px;
  margin-top: -8px;
  z-index: 1;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  color: #FF0000;
}

.modal_form .form_input .req+input {
  padding-left: 30px;
}

.modal_enter {
  width: 100%;
  margin-top: 40px;
}

.modal_enter button,
.modal_enter a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 0 none;
  background: #0066CC;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #ccc;
}

.modal_title+.modal_enter {
  margin-top: 20px;
}

.form_title {
  width: 100%;
  margin-bottom: 10px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.clause_wrap {
  padding: 25px 10px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.clause_title {
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}

.clause_box {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.clause_info {
  overflow-y: scroll;
  height: 370px;
  padding: 20px;
  padding-right: 12px;
  border-radius: 15px;
  border: 1px solid #ddd;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  background: #F5F5F5;
}

.clause_agree {
  width: 100%;
}

.clause_agree .checkbox {}

@media all and (max-width:720px) {
  .clause_info {
    font-size: 12px;
  }
}





.modal_link {
  margin-top: 20px;
  text-align: center;
  font-size: 0;
}

.modal_link>a {
  display: block;
  margin-top: 20px;
}

.modal_link a {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #666;
}

.modal_link li {
  position: relative;
  display: inline-block;
}

.modal_link li+li {
  margin-left: 25px;
  padding-left: 26px;
}

.modal_link li+li::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 20px;
  background-color: #DDDDDD;
}

.modal_etc {
  width: 100%;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #DDDDDDDD;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  text-align: center;
}

.modal_etc a {
  display: inline-block;
  margin-left: 5px;
  color: #0066CC;
}


.modal_body {
  position: relative;
  max-height: calc(100vh - 40px - 56px);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0
}

.modal_body::after {
  display: block;
  clear: both;
  content: '';
}

.modal_content {
  padding: 16px 30px;
}

.modal_content::after {
  display: block;
  clear: both;
  content: '';
}

.modal_body.on {}

/*.modal_body.on .modal_content{padding-right:20px;}*/

.modal_wrap .form-submit .btns {
  text-align: right;
}

.modal_wrap .search_bar {
  margin: 4px 0 20px;
}

.modal_wrap .search_bar .input {
  width: 100%;
}

.modal_780 .modal_area {
  width: 780px !important;
}

.modal_table {
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
}

.modal_table th,
.modal_table td {
  padding: 4px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #404040;
  text-align: left;
  vertical-align: top;
}

.modal_table th em {
  position: relative;
  display: inline-block;
  padding-left: 11px;
  line-height: 32px;
}

.modal_table th em::after {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  background-color: #ea3023;
}


.form_box {
  position: relative;
}

.form_box::after {
  display: block;
  clear: both;
  content: '';
}

.form_box+.form_box {
  margin-top: 4px;
}


.form_box .right {
  text-align: right;
}

.form_box .tip {
  display: block;
  position: absolute;
  top: 0;
  padding-left: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #838383;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  ;
}

.form_box.large .tip {
  left: 420px;
}

.form_box .datepicker-here {
  width: 100%;
}

.form_box .datepicker-inline .datepicker {
  width: 100%;
}

.form_box .text {
  float: left;
  padding-right: 4px;
}

.form_box input,
.form_box select,
.form_box textarea {}

.form_box textarea {
  min-height: 100px;
}

.form_date_time {}

.form_date_time::after {
  display: block;
  clear: both;
  content: '';
}

.form_date_time>div {
  float: left;
}

.form_date_time>div {
  width: 56%;
}

.form_date_time>div+div {
  width: 44%;
  padding-left: 5px;
}

.form_box>div {
  line-height: 32px;
}

.form_box.inline {
  margin: 0 -2px;
}

.form_box.inline>div {
  float: left;
  padding: 2px 2px;
}

.form_box.inline>div:last-child {
  margin-right: 0;
}

.form_time {}

.form_time>div {
  float: left;
}

.form_time>div {
  width: calc(50% - 12px);
}

.form_time>.dash {
  width: 24px
}

[class^="form_elmt_"],
[class*=" form_elmt_"] {
  position: relative;
  margin: 0 -4px;
}

[class^="form_elmt_"]::after,
[class*=" form_elmt_"]::after {
  display: block;
  clear: both;
  content: '';
}

[class^="form_elmt_"]>div,
[class*=" form_elmt_"]>div {
  float: left;
  padding: 0 4px;
}

.form_elmt_1n>div {
  width: 100%
}

.form_elmt_2n>div {
  width: 50%
}

.form_elmt_3n>div {
  width: 33.33%
}

.form_elmt_4n>div {
  width: 25%
}

.form_elmt_5n>div {
  width: 20%
}

.form_elmt_6n>div {
  width: 16.66%
}

@media screen and (max-width:480px) {
  .form_time>div {
    width: calc(50% - 10px);
  }

  .form_time>.dash {
    width: 20px;
    padding: 0;
  }
}

.form_select_n4 {}

@media screen and (max-width:1680px) {
  .form_box.form_select_n4>div {
    width: 50%;
    margin-right: 0;
  }

  .form_box.form_select_n4>div:nth-child(2n+1) {
    padding-right: 4px;
  }
}

.form_check_in {
  position: relative;
  margin: 0 -2px;
}

.form_box.form_check_in>div {
  position: relative;
  margin-right: 0;
  padding: 2px;
  line-height: 22px;
}

.form_box.form_check_in>div .elmt_check {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -10px;
  line-height: 22px;
}

.form_box.form_check_in>div .elmt_check+div input {
  padding-left: 32px;
}

.form_checkoff {
  position: relative;
  margin: 0 -2px;
}

.form_box.form_checkoff>div {
  position: relative;
  margin-right: 0;
  padding: 2px;
  line-height: 22px;
}

.form_box.form_checkoff>div .elmt_check {}

.form_box.form_checkoff>div .elmt_check+div input {}

.form_checkoff input[type=checkbox]+label {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -11px;
  line-height: 22px;
}

.form_checkoff input[type=checkbox]+label+input {
  background: #f7f7f7;
  padding-left: 32px;
  color: #acacac;
}

.form_checkoff input[type=checkbox]:checked+label+input {
  background: #fff;
  color: #383838;
}

.form_dtdd {}

.form_box.form_dtdd>.dt {
  margin-right: 6px;
}

.form_box.form_dtdd>div+.dt {
  margin-left: 12px;
}

@media screen and (max-width:1200px) {
  .form_box.form_dtdd>.dt {
    clear: both;
  }

  .form_box.form_dtdd>div+.dt {
    margin-left: 0;
  }
}

.form_half {}

.form_half>div {
  float: left;
  width: calc(50% - 4px);
}

.form_half>div+div {
  float: right;
}

.form_20to80 {}

.form_20to80>div {
  float: left;
  width: calc(20% - 4px);
}

.form_20to80>div+div {
  float: right;
  width: calc(80% - 4px);
}

.form_25to75 {}

.form_25to75>div {
  float: left;
  width: calc(25% - 4px);
}

.form_25to75>div+div {
  float: right;
  width: calc(75% - 4px);
}

.form_30to70 {}

.form_30to70>div {
  float: left;
  width: calc(30% - 4px);
}

.form_30to70>div+div {
  float: right;
  width: calc(70% - 4px);
}

.form_35to65 {}

.form_35to65>div {
  float: left;
  width: calc(35% - 4px);
}

.form_35to65>div+div {
  float: right;
  width: calc(65% - 4px);
}

.form_40to60 {}

.form_40to60>div {
  float: left;
  width: calc(40% - 4px);
}

.form_40to60>div+div {
  float: right;
  width: calc(60% - 4px);
}

.form_45to55 {}

.form_45to55>div {
  float: left;
  width: calc(45% - 4px);
}

.form_45to55>div+div {
  float: right;
  width: calc(55% - 4px);
}

.form_50to50 {}

.form_50to50>div {
  float: left;
  width: calc(50% - 4px);
}

.form_50to50>div+div {
  float: right;
  width: calc(50% - 4px);
}

.form_55to45 {}

.form_55to45>div {
  float: left;
  width: calc(55% - 4px);
}

.form_55to45>div+div {
  float: right;
  width: calc(45% - 4px);
}

.form_60to40 {}

.form_60to40>div {
  float: left;
  width: calc(60% - 4px);
}

.form_60to40>div+div {
  float: right;
  width: calc(40% - 4px);
}

.form_65to35 {}

.form_65to35>div {
  float: left;
  width: calc(65% - 4px);
}

.form_65to35>div+div {
  float: right;
  width: calc(35% - 4px);
}

.form_70to30 {}

.form_70to30>div {
  float: left;
  width: calc(70% - 4px);
}

.form_70to30>div+div {
  float: right;
  width: calc(30% - 4px);
}

.form_75to25 {}

.form_75to25>div {
  float: left;
  width: calc(75% - 4px);
}

.form_75to25>div+div {
  float: right;
  width: calc(25% - 4px);
}

.form_80to20 {}

.form_80to20>div {
  float: left;
  width: calc(80% - 4px);
}

.form_80to20>div+div {
  float: right;
  width: calc(20% - 4px);
}

.form_educlass {
  position: relative;
  margin: 0 -4px;
}

.form_educlass>div {
  float: left;
  width: 20%;
  padding: 0 4px;
}

.form_educlass>div.long {
  width: 30%;
}


@media screen and (max-width:480px) {
  .modal_area {
    width: calc(100% - 40px);
  }

  /*
	.modal_head{padding:0 20px;}
	.modal_head .modal_title{font-size:16px;}
	.modal_head .modal_close{right:20px;}

	.modal_content{padding:16px 20px;}
	.modal_body.on .modal_content{padding-right:10px;}
	.modal_table{margin-bottom:16px;}
	.modal_table th,.modal_table td{display:block;width:100%;}
	.modal_table th{padding:0;}
	.modal_table td{padding:0 0 8px;}
	.modal_table colgroup{display:none;}
*/
}

#search_art_display {
  color: white;
}

/* paging */
.pagination-container {
  margin-top: 25px;
  border-top: 1px solid #5A5A5A;
  display: flex;
  justify-content: center;
  color: #0066CC;
}

.pagination {
  list-style: none;
  margin-top: 15px;
  padding: 0;
  display: flex;
}

.pagination-page {
  margin: 0 5px;
}

.pagination-page a.page-link {
  background: #101012;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.pagination-page.disabled a.page-link {
  color: #999999;
  cursor: not-allowed;
}

.pagination-page.active a.page-link {
  font-weight: bold;
  text-decoration: underline;
}

.pagination-page a.page-link-notice {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.pagination-page.disabled a.page-link-notice {
  color: #999999;
  cursor: not-allowed;
}

.pagination-page.active a.page-link-notice {
  font-weight: bold;
  text-decoration: underline;
}

.btn-check {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
}

.btn-outline-primary {
  color: #007bff;
  border: 1px solid #007bff;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-check:checked+.btn-outline-primary {
  background-color: #007bff;
  color: #fff;
  border-color: #0056b3;
}

.btn-outline-secondary {
  color: #6c757d;
  border: 1px solid #6c757d;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.btn-check:checked+.btn-outline-secondary {
  background-color: #6c757d;
  color: #fff;
  border-color: #565e64;
}

@media all and (max-width:480px) {
  .btn-outline-primary {
    color: #007bff;
    border: 1px solid #007bff;
    background-color: transparent;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .btn-outline-secondary {
    color: #6c757d;
    border: 1px solid #6c757d;
    background-color: transparent;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

}
