.post_wrap .image > figcaption {
  display: table-caption;
  caption-side: bottom;
  word-break: break-word;
  color: #333;
  background-color: #f7f7f7;
  padding: .6em;
  font-size: .95rem;
  outline-offset: -1px;
  width : 100%;
}
.post_wrap  > figure.image {
  display: table;
  clear: both;
  text-align: center;
  margin: 1em auto;
}



/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000;
  width: 100%;
  height: 6.25rem;
  background-color: #fff;
  border-bottom: 1px solid #DDDDDD;
}
header.scr_hd .hd_inner,
header.scr_hd{
  background-color: transparent;
  border-bottom-color: transparent;
  transition: background-color 0.3s ease-in-out,
border-bottom-color 0.3s ease-in-out;
}
header.scr_hd .hd_search{
  opacity: 0;
  transition: opacity 0.2s 0s ease-in-out, bottom 0.3s ease-in-out;
}
header.scr_hd.search_open .hd_inner,
header.scr_hd:hover .hd_inner,
header.scr_hd:hover{
  background-color: #fff;
  border-bottom-color: #fff;
}
header.scr_hd.search_open .hd_search{
  opacity: 1;
}
header.scr_hd.black .hd_inner,
header.scr_hd.black{
  background-color: #fff;
  border-bottom-color: #fff;
}












header .hd_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  padding: 0 5rem;
  background-color: #fff;
}

header .logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 16.125rem;
  height: 1.875rem;
}

header .logo img {
  position: absolute;
  top: 0;
}
header .logo img + img{
  opacity: 0;
}
header.scr_hd .logo img{
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
header.scr_hd.black .logo img{
  opacity: 1;
}
header.scr_hd.black .logo img + img{
  opacity: 0;
}
header.scr_hd .logo img + img{
  opacity: 1;
}
header.scr_hd:hover .logo img{opacity: 1}
header.scr_hd:hover .logo img + img{
  opacity: 0;
}
header.scr_hd.search_open .logo img{opacity: 1}
header.scr_hd.search_open .logo img + img{
  opacity: 0;
}

header .hd_cont {
  display: flex;
  align-items: center;
  gap: 7.813rem;
  height: 100%;
}

header .gnb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 12;
  height: 100%;
}

header .gnb > ul {
  display: flex;
  height: 100%;
}

header .gnb > ul {
  position: relative;
}

header .gnb > ul > li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.563rem;
  font-weight: 800;
  gap: 4px;
  transition: color 0.3s ease-in-out;
}
header.scr_hd .gnb > ul > li a{
  color: #fff;
}
header.scr_hd:hover .gnb > ul > li a{
  color: #000;
}
header.scr_hd.search_open .gnb > ul > li a,
header.scr_hd.black .gnb > ul > li a{
  color: #000;
}
header .gnb > ul > li a span{
  display : flex;
  align-items: center;
  height: 100%;
  border-bottom: 3px solid rgba(0,0,0,0);
  transition: border-color 0.2s ease-in-out;
}
header .gnb > ul > li:hover > a > span{
  border-color: rgba(0,0,0,1);
}
header .gnb > ul > li:first-child a {
  padding-left: 0;
}

header .gnb > ul > li:last-child a {
  padding-right: 0;
}

header .gnb > ul > li:nth-child(2) {
  position: relative;
}

header .gnb > ul > li:nth-child(2) ul.depth2 {
  left: 0;
  padding-left: 1.563rem;
}

header .gnb > ul > li:nth-child(3) ul.depth2 {
  left: auto;
  right: 0;
}

header .gnb > ul > li:nth-child(4) ul.depth2,
header .gnb > ul > li:nth-child(5) ul.depth2 {
  left: auto;
  right: 0;
}
header.scr_hd .gnb .ico_link{
  background: url("/assets/images/icons/ico_link.svg") no-repeat center / cover;
}
header.scr_hd.black .gnb .ico_link{
  background: url("/assets/images/icons/ico_link_b.svg") no-repeat center / cover;
}
header .gnb .ico_link{
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -4px;
  background: url("/assets/images/icons/ico_link_b.svg") no-repeat center / cover;
  transition: background 0.3s ease-in-out;
}
header:hover .gnb .ico_link{
  background: url("/assets/images/icons/ico_link_b.svg") no-repeat center / cover;
}

header .gnb ul.depth2 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
  width: max-content;
  height: 5.125rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out,
  visibility 0.3s ease-in-out;
}

header .gnb ul li:hover .depth2 {
  opacity: 1;
  visibility: visible;
}


header .depth2_bg {
  content: "";
  position: absolute;
  left: 0;
  z-index: 10;
  bottom: -5.125rem;
  width: 100vw;
  height: 5.125rem;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #000;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out,
  visibility 0.3s ease-in-out;
}

header .depth2_bg.show{
  opacity: 1;
  visibility: visible;
}

header .gnb ul.depth2 li {
  height: 100%;
}
header .gnb ul li:nth-child(7) .depth2{
  left: auto;
  right : 0;
}

header .gnb ul.depth2 li a {
  padding: 0 1.25rem;
  height: 100%;
  font-weight: 500;
  color: #000;
}

header .gnb ul.depth2 li:first-child a {
  padding-left: 0;
}

header .gnb ul.depth2 li:last-child a {
  padding-right: 0;
}

header.scr_hd .search_open_btn{
  background: url("../images/icons/ico_search_w.svg") no-repeat center / cover;
  transition: background-image 0.3s ease-in-out;
}
header.scr_hd:hover .search_open_btn,
#search .search_btn,
header .search_btn,
header .search_open_btn {
  width: 1.75rem;
  height: 1.75rem;
  background: url("../images/icons/ico_search.svg") no-repeat center / cover;
}
header.search_open .search_open_btn,
header.scr_hd.black .search_open_btn{
  background: url("../images/icons/ico_search.svg") no-repeat center / cover;
}

.hd_search {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 7.5rem;
  transition: bottom 0.3s ease-in-out;
}

.hd_search.show {
  bottom: -7.5rem;
}

.hd_search .hd_inner {
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
}

.hd_search_form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42.5rem;
  height: 3.5rem;
}

.hd_search_form .ipt_col,
.hd_search_form input {
  height: 100%;
  width: 100%;
}

.hd_search_form input {
  padding: 0 4.75rem 0 1.5rem;
  border: none;
  border-radius: 0;
  font-size: 1.125rem;
}

.hd_search_form .ipt_col input {
  height: 100% !important;
}

.hd_search_form input::placeholder {
  color: #999;
}

.hd_search_form .search_btn {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.hd_search .search_close_btn {
  width: 2rem;
  height: 2rem;
  background: url("../images/icons/ico_close.svg") no-repeat center / cover;
}

.sec_search .hd_search {
  position: static;
}

.hd_search .hd_inner {
  position: relative;
  height: 100%;
}

header .lang {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
header.scr_hd .lang{
  color: #fff;
  transition: color 0.3s ease-in-out;
}
header.scr_hd:hover .lang{
  color: #000;
}
header.search_open .lang,
header.scr_hd.black .lang{
  color: #000;
}

header .lang::before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  display: inline-block;
  margin-right: 0.625rem;
  background: url("../images/icons/ico_lang.svg") no-repeat center / cover;
}
header.scr_hd .lang::before{
  background: url("../images/icons/ico_lang_w.svg") no-repeat center / cover;
  transition: background-image 0.3s ease-in-out;
}
header.scr_hd:hover .lang::before{
  background: url("../images/icons/ico_lang.svg") no-repeat center / cover;
}
header.search_open .lang::before,
header.scr_hd.black .lang::before{
  background: url("../images/icons/ico_lang.svg") no-repeat center / cover;
}

/* // header END */


/* footer */
footer{
  position: relative;
}
footer .sitemap{
  padding: 5rem 0;
  background-color: #222222;
}
footer .sitemap a{
  display : flex;
  align-items: center;
  gap: 4px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 125%;
}
footer .sitemap a img{
  width : 1.5rem;
  height: 1.5rem;
}
footer .sitemap a:not(:last-child){
  margin-bottom : 1.125rem;
}
footer .sitemap .inner_base > div:nth-child(1){grid-column: 1/3;}
footer .sitemap .inner_base > div:nth-child(2){grid-column: 4/6;}
footer .sitemap .inner_base > div:nth-child(3){grid-column: 7/9;}
footer .sitemap .inner_base > div:nth-child(4){grid-column: 10/12;}

footer .desc {
  background-color: #111111;
}
footer .desc .sub{
  padding: 1rem 0;
  border-bottom:  1px solid #333333;
  color: #888888;
}
footer .desc .sub .link_wrap{
  gap: 2.5rem;
}
footer .desc .sub .social{
  gap: 1.5rem;
}
footer .desc .sub .social img{
  width : 2.25rem;
}
footer .desc .content{
  padding: 3.125rem 0 3.75rem;
}
footer .desc .content .inner_large > div .logo{
  width : 16.125rem;
}
footer .desc .content dt{
  float: left;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  color: #f1f3f5;
  min-width : 4.25rem;
}
footer .desc .content dd{
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  color: #9d9f9e;
  margin-bottom : 0.5rem;
}
footer .desc .content .inner_large > div:nth-child(2){gap: 2rem;}
footer .desc .content .inner_large > div:nth-child(2) > div{
  flex : 1;
}
footer .desc .content .inner_large strong{
  display : block;
  margin-bottom : 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #AAA;
}
footer .desc .content .inner_large p{
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  color: #AAA;
}
footer .desc .copyrights{
  font-size: 0.75rem;
  font-weight: 300;
  color: #888;
}
/* // footer END */


/* hambuger menu */
header .menu_open_btn {
  display: none;
}

.menu_wrap {
  position: fixed;
  top: 3.75rem;
  left: 0;
  width: 100%;
  height: calc(100% - 3.75rem);
  background-color: #fff;
  overflow-y: scroll;
  padding-bottom: 3.125rem;
  opacity: 0;
  visibility: hidden;
  z-index: 10000000000;
  transition: opacity 0.2s ease-in-out,
  visibility 0.2s ease-in-out;
}

.menu_wrap.show {
  opacity: 1;
  visibility: visible;
}

.menu_wrap .wv_accordion {
  border: none;
  padding-left: 1.875rem;
}

.menu_wrap .wv_accordion li {
  border: none;
}

.menu_wrap .wv_accordion .accordion_btn {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.menu_wrap .wv_accordion .accordion_btn::after {
  position: static;
  transform: none;
  width: 0.75rem;
  height: 0.75rem;
}

.menu_wrap .wv_accordion li.active .accordion_btn::after {
  transform: rotate(180deg);
}

.menu_wrap .wv_accordion li .accordion_btn + .accordion_desc {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

.menu_wrap .wv_accordion li.active .accordion_btn + .accordion_desc {
  padding-bottom: 1.375rem;
}

.menu_wrap .wv_accordion li .accordion_btn + .accordion_desc a:not(:last-child) {
  margin-bottom: 0.75rem;
}

.menu_wrap #md_search_form {
  position: relative;
  width: calc(100% - 3.75rem);
  height: 2.125rem;
  margin: 0 auto;
}

.menu_wrap #md_search_form input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding-left: 0;
  padding-right: 2rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
}

.menu_wrap #md_search_form .search_btn {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/icons/ico_search.svg") no-repeat center / cover;
  ppitnrno
}

.menu_btn {

}

/* // hambuger menu END */


/* scroll top button */
.scr_btn[data-scr="up"] {
  position: absolute;
  right: 5rem;
  top: -10rem;
  transform: rotate(-90deg);
}

.scr_btn[data-scr="up"] {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: url("../images/icons/ico_scr_top_arrow.svg") no-repeat center / 1.75rem 1.75rem;
  transition: border 0.2s ease-in-out;
}

.scr_btn[data-scr="down"]:hover,
.scr_btn[data-scr="up"]:hover {
  border: 1px solid rgba(0, 0, 0, 0.4);
}

/* // scroll top button END */


/* scroll down button */
.scr_btn[data-scr="down"] {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transform: rotate(90deg);
  background: url("../images/icons/ico_arrow_r_b.svg") no-repeat center / 1.75rem 1.75rem;
  transition: border 0.2s ease-in-out;
}

/* // scroll down button END */


/* DECO */
.cir_arrow {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: url("../images/icons/ico_arrow_r_b.svg") no-repeat center / 28px 28px;
}

.cir_arrow.w {
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
  background: url("../images/icons/ico_arrow_r_w.svg") no-repeat center / 28px 28px;
  transition: border 0.2s ease-in-out;
}

a:hover .cir_arrow.w {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* // DECO END */


/* Button */
.big_btn_black,
.sm_btn_black {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  width: max-content;
  height: 3.5rem;
  padding: 0 1.875rem;
  background-color: #000;
  border: 1.5px solid rgba(0, 0, 0, 0);
  transition: color 0.2s ease-in-out,
  border 0.2s ease-in-out,
  background-color 0.2s ease-in-out;
}

.big_btn_black.op8,
.sm_btn_black.op8 {
  background-color: rgba(0, 0, 0, 0.8);
}

.sm_btn_black.round {
  border-radius: 3.5rem;
}

.big_btn_black:hover,
.sm_btn_black:hover,
.sm_btn_black.op8:hover {
  background-color: rgba(34, 34, 34, 0.8);
}

.sm_btn_white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  width: max-content;
  height: 3.5rem;
  padding: 0 1.688rem;
  background-color: #fff;
  transition: color 0.2s ease-in-out,
  background-color 0.2s ease-in-out;
}

.sm_btn_white.op8 {
  background-color: rgba(255, 255, 255, 0.8);
}

.sm_btn_white.round {
  border-radius: 3.5rem;
}

.sm_btn_white:hover,
.sm_btn_white.op8:hover {
  background-color: #EEEEEE;
}

.big_btn_black {
  padding: 0 2.5rem;
  height: 5rem;
  font-size: 28px;
}

.big_btn_black.round {
  border-radius: 5rem;
}

.btn.circle_type.w_195{width : 12.188rem; --w:12.188rem;}
.btn.circle_type.w_148{width : 9.25rem; --w:9.25rem;}
.btn.circle_type.h_52{height : 3.25rem; --h:3.25rem;}
.btn.circle_type{
  border-radius: var(--h);
  border: 1px solid #000;
  color: #000 !important;
}
.btn.circle_type.active{
  background-color: #000;
  color: #fff !important;
}
.wv_tab .tab_btn_wrap .wv_tab_btn.btn.circle_type::after{
  display : none;
}
/* Button END */


/* SNB-Anchor */
.snb.anchor_type {
  position: fixed;
  left: 2.5rem;
  top: 53%;
  transform: translateY(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out,
  visibility 0.3s ease-in-out;
  mix-blend-mode: difference;
  color: #fff;
}

.snb.anchor_type * {
}

.snb.anchor_type.show {
  opacity: 1;
  visibility: visible;
}

.snb.anchor_type .wv_anchor .anchor_btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #999999;
  transition: color 0.3s ease-in-out;
}

.snb.anchor_type .wv_anchor span {
  font-size: 0.875rem;
  font-weight: 400;
  transition: opacity 0.3s ease-in-out;
}

.snb.anchor_type .wv_anchor p {
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.snb.anchor_type .wv_anchor p em {
  display: flex;
  align-items: center;
  position: relative;
  left: -0.5rem;
  transition: left 0.3s ease-in-out;
  font-weight: 500;
}

.snb.anchor_type .wv_anchor p em::before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 0.5rem;
}

.snb.anchor_type .wv_anchor .anchor_btn:hover {
  color: #fff;
}

.snb.anchor_type .wv_anchor:hover .anchor_btn span,
.snb.anchor_type .wv_anchor:hover .anchor_btn p {
  opacity: 1;
}

.snb.anchor_type .wv_anchor:hover .anchor_btn p em {
  left: 0;
}

.snb.anchor_type .wv_anchor li.active .anchor_btn {
  color: #fff;
}

.snb.anchor_type .wv_anchor li.active .anchor_btn span,
.snb.anchor_type .wv_anchor li.active .anchor_btn p {
  opacity: 1;
}

.snb.anchor_type .wv_anchor li.active .anchor_btn p em {
  left: 0;
}

/* SNB-Anchor END */


/* pagination */
.pagination {
  gap: 2.5rem;
}

.pagination.bd {
  border-bottom: 1px solid rgba(221, 221, 221, 1);
}

.pagination > div {
  gap: 2.5rem;
}

.pagination .prev,
.pagination .next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url("../images/icons/ico_pagination_arrow.svg") no-repeat center / 16px 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pagination .prev {
  transform: rotate(180deg);
}

.pagination a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #999999;
}

.pagination a.active {
  color: #000;
}

/* pagination END */


/* tab */
.wv_tab .tab_btn_wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.wv_tab .tab_btn_wrap .tab_btn_slide {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.wv_tab .tab_btn_wrap .wv_tab_btn {
  position: relative;
  color: #999;
  transition: color 0.3s ease-in-out;
}

.wv_tab .tab_btn_wrap .wv_tab_btn.active {
  color: #000;
}

.wv_tab .tab_btn_wrap .wv_tab_btn::after {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -0.625rem;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: 0.25rem;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.wv_tab .tab_btn_wrap .wv_tab_btn.active::after {
  opacity: 1;
}

.wv_tab .tab_content:not(.except) {
  display: none;
}

.wv_tab .tab_content.active {
  display: block;
}
/* tab END */


/* searchForm */
[id*="boardSearchForm"] {
  position: relative;
  width: max-content;
}

[id*="boardSearchForm"] input {
  width: 30rem;
  height: 3.5rem;
  background-color: #F7F7F7;
  padding: 0 4.75rem 0 1.875rem;
  font-size: 1.125rem;
  font-weight: 400;
  border-radius: 0;
  border: none;
}

[id*="boardSearchForm"] input::placeholder {
  color: #999999;
}

[id*="boardSearchForm"] button {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url("../images/icons/ico_search.svg") no-repeat center / cover;
}

/* searchForm END */


/* accordion */
.wv_accordion {
  border-top: 1px solid #000;
}

.wv_accordion li {
  border-bottom: 1px solid #000;
}

.wv_accordion .accordion_btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.625rem 0;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.wv_accordion .accordion_btn::after {
  position: absolute;
  right: 2.875rem;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background: url("../images/icons/ico_accordion_arrow.svg") no-repeat center / cover;
  transition: transform 0.3s ease-in-out;
}

.wv_accordion li.active .accordion_btn::after {
  transform: translateY(-50%) rotate(180deg);
}

.wv_accordion .accordion_btn .tag_wrap {
  min-width: 11.688rem;
  padding-left: 1.563rem;
}

.wv_accordion .accordion_btn .tag {
  border-radius: 2.25rem;
  border: 1px solid #000;
  padding: 0.5rem 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  width: max-content;
  width : 6.188rem;
}

.wv_accordion .accordion_btn + .accordion_desc {
  font-size: 1.125rem;
  font-weight: 400;
  padding-left: 11.688rem;
  padding-right: 8.125rem;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out,
  padding-bottom 0.3s ease-in-out;
}

.wv_accordion li.active .accordion_btn + .accordion_desc {
  max-height: 177.25rem;
  padding-bottom: 2.625rem;
}

/* accordion END */


/* form */
form .dp_f > div {
  position: relative;
}

.ipt_col {
  display: flex;
}

.hint_txt {
  position: absolute;
  bottom: -1.813rem;
  left: 8.125rem;
  font-size: 1rem;
  color: #ef4123;
  display: none;
}

.hint_txt.show {
  display: block;
}

.ipt_col .label {
  min-width: 8.125rem;
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 1.25rem;
}

.ipt_col .label.required::after {
  content: "*";
  font-size: 1.5rem;
  font-weight: 600;
  color: #EF4123;
}

.ipt_col input[type="text"],
.ipt_col input[type="password"],
.ipt_col input[type="email"] {
  width: 100%;
  height: 4.5rem;
  border: 1px solid #000;
  padding: 0 3.5rem 0 1.875rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.ipt_col input[type="text"]::placeholder,
.ipt_col input[type="password"]::placeholder,
.ipt_col input[type="email"]::placeholder {
  color: #999999;
}

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

.wv_select .wv_select_btn {
  position: relative;
  width: 100%;
  height: 4.5rem;
  padding: 0 3.5rem 0 1.875rem;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: left;
  color: #999999;
  border: 1px solid #000;
}

.wv_select .wv_select_btn .selected_value.val {
  color: #000;
}

.wv_select .wv_select_btn::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url("../images/icons/ico_accordion_arrow.svg") no-repeat center / cover;
  transition: transform 0.3s ease-in-out;
}

.wv_select.show .wv_select_btn::after {
  transform: translateY(-50%) rotate(180deg);
}

.wv_select .wv_option_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding: 0.75rem 0;
  color: #000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-in-out;
}

.wv_select.show .wv_option_list {
  transform: scaleY(1);
}

.wv_select .wv_option_list li {
  transition: background-color 0.2s ease-in-out,
  color 0.2s ease-in-out;
  font-size: 1rem;
}

.wv_select .wv_option_list li:hover {
  background-color: #f0f0f0;
}

.wv_select .wv_option_list label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1.875rem;
  border-radius: 0.5rem;
}

.wv_select .wv_option_list input {
  width: 0;
  height: 0;
  position: absolute;
}

.wv_textarea {
  width: calc(100% - 8.125rem);
  min-width: calc(100% - 8.125rem);
  max-width: calc(100% - 8.125rem);
  height: 17.5rem;
  min-height: 17.5rem;
  max-height: 17.5rem;
  border: 1px solid #000;
  padding: 1.5rem 1.875rem;
  font-size: 1.5rem;
}

.wv_textarea::placeholder {
  color: #999999;
}

.checkbox_wrap {
  padding-left: 8.125rem;
}

.checkbox_wrap .ipt_col {
  position: relative;
  width: max-content;
}

.checkbox_wrap .ipt_col .hint_txt {
  left: auto;
  bottom: auto;
  left: calc(100% + 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
}

.checkbox_wrap .ipt_col .label {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  padding-top: 0;
}

.checkbox_wrap .ipt_col .label::before {
  display: inline-block;
  margin-right: 0.625rem;
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: url("../images/icons/ico_check.svg") no-repeat center / cover;
}

.checkbox_wrap .ipt_col input[type="checkbox"]:checked + .label::before {
  background: url("../images/icons/ico_checked.svg") no-repeat center / cover;
}

.checkbox_wrap .ipt_col .label button {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
}

form#inquiryForm button[type="submit"] {
  width: 11.563rem;
  height: 5rem;
  border-radius: 5rem;
  background-color: #000;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
}



/* 대동 모빌리티 */
.dd_form{
  row-gap: 3.75rem;
}
.dd_form .hint_txt{
  left: 0;
}
.dd_form .ipt_col{
  display: flex;
  gap: 2.125rem;
  grid-column: var(--colSt) / var(--colEd);
}
.dd_form .ipt_col .ipt_label{
  font-size: 1.5rem;
  font-weight: 700;
  max-width : 5.625rem;
  width : 100%;
}
.dd_form .ipt_col .ipt_label b{
  color: #EF4123;
}
.dd_form .ipt_col > div{
  width : 100%;
}
.dd_form .ipt_col textarea{
  width : 100%;
  padding: 1.5rem 1.875rem;
  border: 1px solid #000;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
}
.dd_form .ipt_col textarea::placeholder{
  color: #999;
}
.dd_form .iptFile_wrap .fileIpt{
  position : absolute;
  width : 1px;
  height: 1px;
  font-size: 0;
  opacity: 0;
}
.dd_form .iptFile_wrap .file_label{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.dd_form .iptFile_wrap .file_label span{
  display: flex;
  justify-content: center;
  align-items: center;
  width : 13.75rem;
  height: 4.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #000;
}
.dd_form .iptFile_wrap .file_label p{
  font-size: 1.25rem;
  color: #999;
}
.dd_form .chk_wrap.privacy b{
  margin-left: -0.625rem;
  color: #EF4123;
}
.dd_form .chk_wrap .checkbox{
  display: inline-flex;
  align-items: center;
  gap : 0.625rem;
}
.dd_form .chk_wrap .checkbox.ml_20{
  margin-left: 1.25rem;
}
.dd_form .chk_wrap .checkbox input{
  position : absolute;
  width : 0;
  height: 0;
  opacity: 0;
}
.dd_form .chk_wrap .checkbox span{
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.dd_form .chk_wrap .checkbox span::before{
  display : inline-block;
  content: "";
  width : 1.75rem;
  height: 1.75rem;
  background: url("/assets/images/icons/ico_check.svg") no-repeat center / cover;
}
.dd_form .chk_wrap .checkbox input:checked ~ span::before{
  background-image: url("/assets/images/icons/ico_checked.svg");
}

/* 대동 모빌리티 END */
/* form END */




/* table */
table {
  border-top: 2px solid #000;
  border-collapse: collapse;
}

table td,
table th {
  padding: 1rem 0;
  border-bottom: 1px solid #DDD;
}

table td:not(:last-child),
table th:not(:last-child) {
  border-right: 1px solid #DDD;
}

table th.bd_r {
  border-right: 1px solid #DDD;
}
/* table END */






/* dropdown menu */
.wv_dropdown{
  position : relative;
  width: 30rem;
  height: 4.5rem;
}
.wv_dropdown .dropdown_toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width : 100%;
  height: 100%;
  padding: 0 1.875rem;
  border: 1px solid #000;
  font-size: 1.25rem;
  font-weight: 400;
}
.wv_dropdown .dropdown_toggle::after{
  display : inline-block;
  content: "";
  width : 1.75rem;
  height: 1.75rem;
  background: url("/assets/images/icons/ico_select_arrow.svg") no-repeat center / cover;
  transition: transform 0.3s ease-in-out;
}
.wv_dropdown.on .dropdown_toggle::after{
  transform: rotate(180deg);
}
.wv_dropdown .dropdown_menu{
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index : 5;
  width : 100%;
  max-height: 0;
  overflow-y: scroll;
  background-color: #fff;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  transition: max-height 0.3s ease-in-out;
}
.wv_dropdown.on .dropdown_menu{
  max-height: 17.5rem;
}
.wv_dropdown .dropdown_menu a{
  display : block;
  width : 100%;
  padding: .75em 1em;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color 0.2s ease-in-out;
}
.wv_dropdown .dropdown_menu a:hover{
  background-color: #F5F5F5;
}
.wv_dropdown .dropdown_menu li:first-child{
  border-top: 1px solid #000;
}
.wv_dropdown .dropdown_menu li:last-child{
  border-bottom: 1px solid #000;
}
/* dropdown menu END */




/* 섹션 서브 타이틀 */
.sec_sub_hd.half h3{
  grid-column: 1/7;
}
.sec_sub_hd.full h3{
  grid-column: 1/-1;
}
.sec_sub_hd.half p{
  grid-column: 7/-1;
  line-height: 28px;
}
.sec_sub_hd.full p{
  grid-column: 1/-1;
  line-height: 28px;
}
/* 섹션 서브 타이틀 END */


.img_wrap img{
  width : 100%;
}



.post_wrap figure.table{
  margin: 0 auto;
}

@media all and (max-width: 1600px){
  header .hd_cont{
    gap: 4.625rem;
  }
  header .gnb > ul > li a{
    padding: 0 1.25rem;
  }
}
@media all and (max-width: 1280px){
  header .hd_inner{
    padding: 0 20px;
  }  header .gnb > ul > li a{
       padding: 0 1rem;
     }
}

@media all and (max-width: 1024px) {
  header .hd_cont {
    gap: 4.813vw;
  }

  header .gnb > ul > li a {
    padding: 0 1rem;
  }
}


@media all and (max-width: 768px) {

  header {
    height: 60px;
    border-bottom: none;
  }
  header.menu_open{
    background-color: #fff;
  }

  header .gnb {
    display: none;
  }

  header .hd_inner {
    padding: 0 20px;
  }

  header .logo {
    width: 150px;
    height: 20px;
  }

  header .search_open_btn {
    display: none;
  }

  header .menu_open_btn {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icons/ico_menu.svg") no-repeat center / cover;
  }
  header.scr_hd .menu_open_btn{
    background: url("../images/icons/ico_menu_w.svg") no-repeat center / cover;
    transition: background-image 0.3s ease-in-out;
  }
  header.scr_hd.black .menu_open_btn,
  header.scr_hd:hover .menu_open_btn{
    background: url("../images/icons/ico_menu.svg") no-repeat center / cover;
  }

  header.menu_open.scr_hd.black .menu_open_btn,
  header.menu_open.scr_hd:hover .menu_open_btn,
  header.menu_open .menu_open_btn {
    background: url("../images/icons/ico_menu_close.svg") no-repeat center / cover;
  }
  header.menu_open.scr_hd .lang{
    color:#000;
  }
  header.menu_open.scr_hd .lang::before{
    background: url("../images/icons/ico_lang.svg") no-repeat center / cover;
  }
  .menu_wrap #md_search_form .search_btn{
    right : 0;
  }
  header.scr_hd .hd_search{
    transition: none;
  }

  header .logo {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
  }

  header.menu_open .logo {
    opacity: 0;
    visibility: hidden;
  }

  header .lang {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
  }

  header .lang::before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    font-size: 14px;
  }

  header.menu_open .lang {
    opacity: 1;
    visibility: visible;
  }

  .scr_btn[data-scr="down"] {
    display: none;
  }

  .sm_btn_black {
    height: 32px;
    border-radius: 32px;
    font-size: 12px;
    padding: 0 12px;
  }

  .big_btn_black {
    height: 48px;
    font-size: 14px;
    padding: 0 27px;
  }

  footer {
    padding-top: 188px;
  }

  footer .inner {
    width: 100%;
    padding: 0 20px;
  }

  footer .ft_cont > h2 {
    gap: 8px;
  }

  footer h2 a {
    margin-left: 0;
  }

  footer h2 .cir_arrow {
    width: 28px;
    height: 28px;
    background-size: 6px 10px;
  }

  footer .wv_md_row {
    gap: 4px;
  }

  footer .ft_link .fnb ul {
    padding-top: 30px;
    gap: 20px;
    justify-content: flex-start;
  }

  footer .social {
    justify-content: flex-start;
  }

  footer .copyright {
    margin-top: 30px;
    position: static;
  }

  footer .desc p span {
    min-width: 62px;
  }

  footer .desc{
    position : relative;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 104px;
  }
  footer .desc .link_wrap{
    flex-wrap: wrap;
    font-size: 14px;
    gap: 12px 16px !important;
  }
  footer .desc .sub{
    padding-top: 0;
    border: none;
  }
  footer .desc .content{
    padding: 50px 0 30px;
  }
  footer .desc .content .grid_lay{
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
  }
  footer .desc .content .inner_large > div .logo{
    width : 162px;
  }
  footer .desc .content .inner_large > div{
    grid-column: 1/-1 !important;
  }
  footer .desc .content .inner_large > div:nth-child(2){
    gap: 12px;
  }
  footer .desc .content dt{
    font-size: 12px;
    min-width : 62px;
  }
  footer .desc .content .inner_large strong{
    font-size: 12px;
  }
  footer .desc .content .inner_large strong{margin-bottom: 4px;}
  footer .desc .content .inner_large p{
    font-size: 12px;
  }
  footer .desc .content .inner_large p.copyrights{
    position: absolute;
    bottom: 60px;

    font-size: 12px;
    margin-top: 20px;
    font-weight: 400;
    color: #888888;
  }
  footer .sitemap{
    padding: 40px 0;
  }
  footer .sitemap .inner_base{
    display: block;
  }
  footer .sitemap .wv_target_btn{
    display : flex;
    align-items: center;
    gap: 10px;
    width : max-content;
    cursor: pointer;
  }
  footer .sitemap .wv_target_btn::after{
    display : block;
    content: "";
    width : 12px;
    height: 12px;
    background: url("/assets/images/icons/ico_select_w.svg") no-repeat center / cover;
    transition: transform 0.2s ease-in-out;
  }
  footer .sitemap .wv_target_btn.on::after{
    transform: rotate(180deg);
  }
  footer .sitemap .dropdown_menu{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  footer .sitemap .dropdown_menu.on{
    max-height: 500px;
  }
  footer .sitemap a{
    font-size: 14px;
  }
  footer .sitemap a:not(:last-child){
    margin-bottom: 16px;
  }
  footer .sitemap a:last-child{
    padding-bottom: 30px;
  }
  footer .sitemap a img{
    width : 14px;
    height: 14px;
  }

  .scr_btn[data-scr="up"] {
    width: 48px;
    height: 48px;
    background-size: 20px 20px;
    top: 100px;
    right: 20px;
  }

  .pagination {
    gap: 30px;
  }

  .pagination > div {
    gap: 30px;
  }

  .pagination a {
    font-size: 16px;
  }

  .pagination .prev,
  .pagination .next {
    width: 30px;
    height: 30px;
    background-size: 7px 12px;
  }


  .wv_tab .tab_btn_wrap {
    gap: 24px;
    height: 32px;
  }

  .wv_tab .tab_btn_wrap.slide {
    width: 100%;
    overflow-x: scroll;
    touch-action: pan-x;
    padding-bottom: 20px;
    height: 52px;
  }

  .wv_tab .tab_btn_wrap .tab_btn_slide {
    width: max-content;
    gap: 24px;
  }

  .wv_tab .tab_btn_wrap .wv_tab_btn {
    width: max-content;
  }

  .wv_tab .tab_btn_wrap .wv_tab_btn::after {
    height: 2px;
    bottom: -4px;
  }

  [id*="boardSearchForm"] {
    width: 100%;
  }

  [id*="boardSearchForm"] input {
    width: 100%;
    height: 46px;
    padding: 0 60px 0 16px;
    font-size: 14px;
  }

  [id*="boardSearchForm"] button {
    width: 20px;
    height: 20px;
  }

  .wv_accordion .accordion_btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 10px;
  }

  .wv_accordion .accordion_btn .tag_wrap {
    padding-left: 0;
  }

  .wv_accordion .accordion_btn .tag {
    padding: 5px 10px;
    width: 74px;
  }

  .wv_accordion .accordion_btn::after {
    right: 10px;
    top: 28px;
    width: 16px;
    height: 16px;
  }

  .wv_accordion li .accordion_btn + .accordion_desc {
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .wv_accordion li.active .accordion_btn + .accordion_desc {
    padding-bottom: 24px;
  }

  #inquiryForm .ipt_col {
    flex-direction: column;
  }

  .ipt_col .label,
  .ipt_col .label.required::after {
    font-size: 16px;
  }

  .ipt_col .label {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .ipt_col input[type="text"],
  .ipt_col input[type="password"],
  .ipt_col input[type="email"] {
    width: 100%;
    height: 46px;
    padding: 0 10px;
    font-size: 14px;
  }

  .hint_txt {
    font-size: 12px;
    bottom: -24px;
    left: 0;
  }

  .wv_select .wv_select_btn {
    height: 46px;
    font-size: 14px;
    padding: 0 48px 0 16px;
  }

  .wv_select .wv_select_btn::after {
    width: 16px;
    height: 16px;
  }

  .wv_select .wv_option_list {
    padding: 4px 0;
  }

  .wv_select .wv_option_list li {
    font-size: 14px;
  }

  .wv_select .wv_option_list label {
    padding: 4px 20px;
  }

  .wv_textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    padding: 15px;
    font-size: 14px;
  }

  .checkbox_wrap {
    padding-left: 0;
  }

  .checkbox_wrap .ipt_col {
    display: flex;
    flex-direction: column;
  }

  .checkbox_wrap .ipt_col .label button,
  .checkbox_wrap .ipt_col .label {
    font-size: 14px;
    margin-bottom: 0;
  }

  .checkbox_wrap .ipt_col .label::before {
    width: 24px;
    height: 24px;
  }

  .checkbox_wrap .ipt_col .hint_txt {
    position: relative;
    left: 32px;
    top: 6px;
    margin-top: 6px;
  }

  form#inquiryForm button[type="submit"] {
    width: 94px;
    height: 48px;
    font-size: 14px;
  }


  .cir_arrow {
    width: 48px;
    height: 48px;
    background-size: 20px 20px;
  }

  .cir_arrow.w {
    background-size: 20px 20px;
  }

  .pagination.bd {
    border-bottom: 1px solid #DDD;
  }

  .sec_search .hd_search {
    width: calc(100% - 40px);
    height: 46px;
    margin: 0 auto;
  }

  .sec_search .hd_search .hd_inner {
    background-color: transparent;
  }

  .hd_search_form {
    width: 100%;
    height: 100%;
  }

  #search .search_btn {
    width: 20px;
    height: 20px;
    right: 10px;
  }

  .hd_search_form input {
    padding: 0 40px 0 16px !important;
    border: none !important;
    background-color: #F7F7F7;
  }

  .wv_dropdown{
    width : 100%;
    height: 48px;
  }
  .wv_dropdown .dropdown_toggle{
    padding: 0 16px;
    font-size: 14px;
  }
  .wv_dropdown .dropdown_toggle::after{
    width : 16px;
    height: 16px;
  }


  .sec_sub_hd.half p{
    line-height: 20px;
  }

  .dd_form{row-gap: 40px;}
  .dd_form .ipt_col{
    flex-direction: column;
    gap: 10px;
  }
  .dd_form .ipt_col .ipt_label{
    font-size: 16px;
    max-width : max-content;
    width : max-content;
  }
  .dd_form .ipt_col textarea{
    padding: 14px 16px;
    font-size: 14px;
    height: 200px;
  }
  .dd_form .iptFile_wrap .file_label{
    gap: 10px;
  }
  .dd_form .iptFile_wrap .file_label span{
    width : 110px;
    height: 46px;
    font-size: 14px;
  }
  .dd_form .iptFile_wrap .file_label p{
    font-size: 14px;
  }
  .dd_form .chk_wrap .checkbox span{
    font-size: 14px;
  }


  .post_wrap figure.table{
    width: 100% !important;
    max-width: 100%;
    overflow-x: scroll;
  }
  .post_wrap figure.table table{
    width: max-content;
  }
}