@charset "utf-8";

/* 공통 css */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

ul,
ol {
  list-style: none;
}
body {
  font-size: 16px;
  line-height: 1;
  color: #333;
}

/* HEADER */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}

header.header .header_wrap {
  width: 100%;
  transition: all 0.3s;
  background: transparent;
  position: relative;
  z-index: 10;
}

header.header .container_fix {
  display: flex;
  width: 1740px;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

header.header .container_fix > div {
}

header.header .container_fix .header_con {
  display: flex;
  align-items: center;
  gap: 0 85px;
}

header.header .container_fix > div.header_logo {
  width: 190px;
  margin-right: 85px;
}

header.header .container_fix > div.header_logo .logo_w {
  display: block;
}

header.header .container_fix > div.header_logo .logo_b {
  display: none;
}

header.header .container_fix div.header_menu {
  text-align: center;
}

header.header .container_fix div.header_menu > ul {
}

header.header .container_fix div.header_menu > ul > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 85px;
}

header.header .container_fix div.header_menu > ul > li > a {
  display: block;
  padding: 0;
  line-height: 100px;
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  transition: all 0.3s;
}

header.header .container_fix div.header_menu > ul > li .sub_div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  padding: 30px 20px;
  box-shadow: 3px 4px 10px 0 rgba(36, 36, 36, 0.05);
  background: #fff;
  z-index: 1;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  top: 80px;
}

header.header .container_fix div.header_menu > ul > li:hover .sub_div {
  opacity: 1;
  visibility: visible;
  top: 80px;
}

header.header .container_fix div.header_menu > ul > li .sub_div > ul {
}

header.header .container_fix div.header_menu > ul > li .sub_div > ul > li {
  margin-bottom: 20px;
}

header.header
  .container_fix
  div.header_menu
  > ul
  > li
  .sub_div
  > ul
  > li:last-child {
  margin-bottom: 0;
}

header.header .container_fix div.header_menu > ul > li .sub_div > ul > li > a {
  display: inline-block;
  font-size: 17px;
  font-weight: 300;
  color: #aaa;
  transition: all 0.3s;
  white-space: nowrap;
}

header.header
  .container_fix
  div.header_menu
  > ul
  > li
  .sub_div
  > ul
  > li
  > a:hover {
  font-weight: 600;
  color: #e99200;
}

header.header .container_fix > div.header_btn {
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.header .container_fix > div.header_btn .right_lnb {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
}

header.header .container_fix > div.header_btn .right_lnb > li {
  display: inline-block;
  vertical-align: middle;
}

header.header .container_fix > div.header_btn .right_lnb > li > a {
  color: #fff;
  transition: all 0.3s;
  margin-right: 12px;
}

header.header .container_fix > div.header_btn .right_lnb > li:last-child > a {
  margin-right: 0;
}

header.header .container_fix > div.header_btn .right_lnb > li > a span.add {
  display: inline-block;
  margin-right: 5px;
}

header.header .container_fix > div.header_btn .right_lnb > li > a span.text {
  font-size: 12px;
  padding: 3.5px 9.5px;
  border: 1px solid #fff;
  text-align: center;
}

header.header .container_fix > div.header_btn .right_lnb > li > a.mypage_icon {
}

header.header
  .container_fix
  > div.header_btn
  .right_lnb
  > li
  > a.mypage_icon
  .mypage_icon_w {
  display: block;
}

header.header
  .container_fix
  > div.header_btn
  .right_lnb
  > li
  > a.mypage_icon
  .mypage_icon_b {
  display: none;
}

header.header .container_fix > div.header_btn .all_menu_btn {
  display: inline-block;
  width: 30px;
}

header.header .container_fix > div.header_btn .all_menu_btn > a {
  width: 100%;
  height: 24px;
  position: relative;
  display: block;
}

header.header .container_fix > div.header_btn .all_menu_btn > a > span {
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

header.header
  .container_fix
  > div.header_btn
  .all_menu_btn
  > a
  > span:nth-child(1) {
  width: 100%;
  top: 0;
}

header.header
  .container_fix
  > div.header_btn
  .all_menu_btn
  > a
  > span:nth-child(2) {
  top: 11px;
}

header.header
  .container_fix
  > div.header_btn
  .all_menu_btn
  > a
  > span:nth-child(3) {
  width: 100%;
  top: 22px;
}

/* header.header .container_fix > div.header_btn .all_menu_btn > a.active > span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 33px;
}

header.header .container_fix > div.header_btn .all_menu_btn > a.active > span:nth-child(2) {
    left: 30px;
    opacity: 0;
}

header.header .container_fix > div.header_btn .all_menu_btn > a.active > span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 33px;
} 

 header.header .header_wrap:hover, header.header.active .header_wrap, header.header.fixed .header_wrap {
    background: #fff;
}

header.header .header_wrap:hover .container_fix > div.header_logo .logo_w, header.header.active .header_wrap .container_fix > div.header_logo .logo_w, header.header.fixed .header_wrap .container_fix > div.header_logo .logo_w {
    display: none;
}

header.header .header_wrap:hover .container_fix > div.header_logo .logo_b, header.header.active .header_wrap .container_fix > div.header_logo .logo_b, header.header.fixed .header_wrap .container_fix > div.header_logo .logo_b {
    display: block;
}

header.header .header_wrap:hover .container_fix div.header_menu > ul > li > a, header.header.active .header_wrap .container_fix div.header_menu > ul > li > a, header.header.fixed .header_wrap .container_fix div.header_menu > ul > li > a {
    color: #222;
}

header.header .header_wrap:hover .container_fix > div.header_btn .right_lnb > li > a, header.header.active .header_wrap .container_fix > div.header_btn .right_lnb > li > a, header.header.fixed .header_wrap .container_fix > div.header_btn .right_lnb > li > a {
    color: #222;
}

header.header .header_wrap:hover .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_w, header.header.active .header_wrap .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_w, header.header.fixed .header_wrap .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_w {
    display: none;
}

header.header .header_wrap:hover .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_b, header.header.active .header_wrap .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_b, header.header.fixed .header_wrap .container_fix > div.header_btn .right_lnb > li > a.mypage_icon .mypage_icon_b {
    display: block;
}

header.header .header_wrap:hover .container_fix > div.header_btn .right_lnb > li > a span.text, header.header.active .header_wrap .container_fix > div.header_btn .right_lnb > li > a span.text, header.header.fixed .header_wrap .container_fix > div.header_btn .right_lnb > li > a span.text {
    border-color: #222;
}

header.header .header_wrap:hover .container_fix > div.header_btn .all_menu_btn > a > span, header.header.active .header_wrap .container_fix > div.header_btn .all_menu_btn > a > span, header.header.fixed .header_wrap .container_fix > div.header_btn .all_menu_btn > a > span {
    background: #222;
}

header.header.active .header_wrap .container_fix div.header_menu > ul > li:hover .sub_div {
    opacity: 0;
    visibility: hidden;
}  */

header.header .all_menu {
  position: fixed;
  top: 0;
  border-top: none;
  background: #fff;
  z-index: 90;
  width: 100%;
  height: 479px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  margin-top: -10%;
}

header.header.active .all_menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

header.header .all_menu .container_fix {
  display: table;
  width: 1740px;
  height: 100%;
  max-width: 100%;
  padding: 0 15px;
  text-align: center;
}

header.header .all_menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 452px;
  height: 170px;
  background: url(../img/all_menu_bg.jpg) no-repeat;
  background-size: cover;
  opacity: 0.03;
}

header.header .all_menu .container_fix > div {
  display: table-cell;
  vertical-align: middle;
}

header.header .all_menu .container_fix > div.fake_logo {
  display: none;
  width: 100px;
  opacity: 0;
  visibility: hidden;
}

header.header .all_menu .container_fix > ul.all_menu_ul {
  width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  gap: 0 120px;
}

header.header .all_menu .container_fix > ul.all_menu_ul > li {
  display: inline-block;
  vertical-align: top;
}

header.header .all_menu .container_fix > ul.all_menu_ul > li:hover a {
  color: #e99200;
}

header.header .all_menu .container_fix > ul.all_menu_ul > li > a {
  display: block;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  color: #222222;
}

header.header .all_menu .container_fix > ul.all_menu_ul > li .all_menu_sub_div {
  margin-top: 45px;
  /* padding: 20px 0 38px; */
}

header.header
  .all_menu
  .container_fix
  > ul.all_menu_ul
  > li
  .all_menu_sub_div
  > ul
  > li {
  margin-bottom: 25px;
}

header.header
  .all_menu
  .container_fix
  > ul.all_menu_ul
  > li
  .all_menu_sub_div
  > ul
  > li:last-child {
  margin-bottom: 0;
}

header.header
  .all_menu
  .container_fix
  > ul.all_menu_ul
  > li
  .all_menu_sub_div
  > ul
  > li
  > a {
  font-size: 16px;
  color: #999999;
  display: inline-block;
  transition: all 0.3s;
}

header.header
  .all_menu
  .container_fix
  > ul.all_menu_ul
  > li
  .all_menu_sub_div
  > ul
  > li
  > a:hover {
  color: #e99200;
  font-weight: 400;
}

header.header .all_menu .container_fix > div.fake_btn {
  display: none;
  width: 1px;
  white-space: nowrap;
}

header.header .all_menu .container_fix > div.fake_btn .right_lnb {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  visibility: hidden;
}

header.header .all_menu .container_fix > div.fake_btn .right_lnb > li {
  display: inline-block;
  vertical-align: middle;
}

header.header .all_menu .container_fix > div.fake_btn .right_lnb > li > a {
  color: #fff;
  transition: all 0.3s;
  margin-right: 12px;
}

header.header
  .all_menu
  .container_fix
  > div.fake_btn
  .right_lnb
  > li:last-child
  > a {
  margin-right: 0;
}

header.header
  .all_menu
  .container_fix
  > div.fake_btn
  .right_lnb
  > li
  > a
  span.add {
  display: inline-block;
  margin-right: 5px;
}

header.header
  .all_menu
  .container_fix
  > div.fake_btn
  .right_lnb
  > li
  > a
  span.text {
  font-size: 12px;
  padding: 3.5px 9.5px;
  border: 1px solid #fff;
  text-align: center;
}

header.header .all_menu .container_fix > div.fake_btn .all_menu_btn {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  margin-left: 27px;
  opacity: 0;
  visibility: hidden;
}

header.header .all_menu .container_fix > div.fake_btn .all_menu_btn > a {
  width: 100%;
  height: 24px;
  position: relative;
  display: block;
}

header.header .all_menu .mobile_lnb {
  display: none;
}

/* 헤더 검색바 */
header.header .header_btn > a {
  display: inline-block;
}
header.header .header_btn .logout_btn,
header.header .header_btn .login_btn {
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 10px;
	margin-right: 27px;
}
header.header .header_btn > a.search_btn {
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 27px;
}
header.header .header_btn > a.search_btn span.circle {
  width: 20px;
  height: 20px;
  border: 2px solid #111;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: all 0.3s;
}
header.header .header_btn > a.search_btn span.line {
  width: 2px;
  height: 8px;
  background: #111;
  position: absolute;
  right: 3px;
  bottom: 0;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

header.header .search_drop {
  width: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  text-align: center;
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #e1e1e1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 3px 4px 10px 0 rgba(36, 36, 36, 0.05);
}
header.header .search_drop.active {
  opacity: 1;
  visibility: visible;
}
header.header .search_drop .header_search {
  width: 600px;
  margin: 0 auto;
  position: relative;
}
header.header .search_drop .header_search input {
  width: 100%;
  height: 60px;
  border: 0;
  border-bottom: 1px solid #999999;
  font-size: 20px;
  color: #111;
  font-weight: 300;
  padding: 0 50px 0 5px;
}
header.header .search_drop .header_search input::placeholder {
  color: #999;
}
header.header .search_drop .header_search button {
  display: block;
  width: 24px;
  height: 23px;
  position: absolute;
  background: none;
  outline: none;
  border: 0;
  top: 20px;
  right: 15px;
}
header.header .search_drop .header_search button span.circle {
  width: 20px;
  height: 20px;
  border: 2px solid #111111;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
header.header .search_drop .header_search button span.line {
  width: 2px;
  height: 8px;
  background: #111111;
  position: absolute;
  right: 3px;
  bottom: 0;
  transform: rotate(-45deg);
}
header.header .search_drop .search_close {
  display: block;
  width: 26px;
  height: 22px;
  position: absolute;
  right: -40px;
  top: 20px;
}
header.header .search_drop .search_close span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
  transform: rotate(-45deg);
  top: 10px;
}
header.header .search_drop .search_close span:nth-child(2) {
  transform: rotate(45deg);
}

@media (max-width: 991px) {
	header.header .header_btn .logout_btn,
	header.header .header_btn .login_btn {
		font-size: 12px;
		font-weight: 500;
		border-radius: 4px;
		padding: 8px;
		margin-right: 15px;
	}
  header.header .search_drop {
    top: 50px;
    padding: 10px 0 20px;
  }
  header.header .search_drop .header_search {
    width: 100%;
    padding: 0 30px;
  }
  header.header .search_drop .header_search input {
    height: 45px;
    font-size: 15px;
  }
  header.header .search_drop .header_search button {
    width: 19px;
    height: 19px;
    top: 12px;
    right: 39px;
  }
  header.header .search_drop .header_search button span.circle {
    width: 16px;
    height: 16px;
  }
}

/* 전체 메뉴 */
header.header .all_menu .container_fix > .all_menu_btn {
  position: absolute;
  top: 40px;
  right: 15px;
  display: inline-block;
  width: 30px;
}

header.header .all_menu .container_fix > .all_menu_btn > a {
  width: 100%;
  height: 24px;
  position: relative;
  display: block;
}

header.header .all_menu .container_fix > .all_menu_btn > a > span {
  width: 100%;
  height: 2px;
  background: #111;
  position: absolute;
  top: 40px;
  left: 0;
  transition: all 0.3s;
}

header.header .all_menu .container_fix > .all_menu_btn > a > span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 33px;
}

header.header .all_menu .container_fix > .all_menu_btn > a > span:nth-child(2) {
  left: 30px;
  opacity: 0;
}

header.header .all_menu .container_fix > .all_menu_btn > a > span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 33px;
}

/* sub_menu_box */
.sub_menu_box.sub-menu {
  display: none;
}

.sub_text {
  padding: 0;
  margin: 35px 0 80px;
}
.sub_text .container_fix {
  padding: 0;
}
.sub_text.ca_it_mb {
  /* display: none; */
}
.sub_text h1 {
  font-size: 50px;
  font-weight: 700;
  color: #222222;
  text-align: left;
}
.custom-login .sub_text h1 {
  text-align: center;
}
.sub_text.register_tt h1 {
  text-align: center;
}

.sub_menu_box .cate_ul {
  margin-bottom: 70px;
}
.sub_menu_box .cate_li {
  display: inline-block;
  margin-right: 50px;
}
.sub_menu_box .cate_li:last-child {
  margin-right: 0;
}
.sub_menu_box .cate_li.on {
  position: relative;
  z-index: 2;
}
.sub_menu_box .cate_li a {
    font-family: 'Pretendard',sans-serif;   
  display: inline-block;
  width: 100%;
  border: none;
  font-size: 18px;
  color: #222;
  transition: all 0.3s;
}
.sub_menu_box .cate_li.on a {
  color: #e99200;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 10px;
}

@media (max-width: 991px) {
  .sub_text {
    margin: 20px 0 30px;
  }
  .sub_text h1 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
        .m_sub_menu {
        margin-bottom: 0;
    }
  .top_menu_drop {
    width: 100%;
  }

  .top_menu_drop > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    line-height: 48px;
    position: relative;
    border-bottom: 1px solid #e99200;
    text-align: center;
    font-size: 14px;
    color: #e99200;
    font-weight: 500;
  }
  .top_menu_drop > a span.arrow {
    position: absolute;
    right: 15px;
    top: 15px;
    content: "";
    width: 10px; /* 사이즈 */
    height: 10px; /* 사이즈 */
    border-top: 1px solid #e99200; /* 선 두께 */
    border-right: 1px solid #e99200; /* 선 두께 */
    transform: rotate(135deg); /* 각도 */
    transition: all 0.3s;
  }
  .top_menu_drop .dropdown-menu {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    border-radius: 0;
    border: none;
  }
  .top_menu_drop .dropdown-menu li  {
    margin-bottom: 13px;
  }
  .top_menu_drop .dropdown-menu li:last-child {
    margin-bottom: 0;   
  }
  .top_menu_drop .dropdown-menu li a {
    padding: 0;
    color: #999999;
  }

  .dropdown.top_menu_drop.open > a span.arrow {
    right: 15px;
    top: 22px;
    border-top: 1px solid #e99200; /* 선 두께 */
    border-right: 1px solid #e99200; /* 선 두께 */
    transform: rotate(315deg);
  }
  .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background: transparent;
    color: #e99200;
  }
}

@media (max-width: 1500px) {
  header.header .container_fix div.header_menu > ul > li > a {
    padding: 0 25px;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul > li > a {
    padding: 0 25px;
  }
}

@media (max-width: 1300px) {
  header.header .container_fix div.header_menu > ul > li > a {
    padding: 0 20px;
    font-size: 14px;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul > li > a {
    padding: 0 20px;
    font-size: 14px;
  }

  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    .all_menu_sub_div
    > ul
    > li
    > a {
    font-size: 13px;
  }

  header.header
    .container_fix
    div.header_menu
    > ul
    > li
    .sub_div
    > ul
    > li
    > a {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  header.header .container_fix {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  header.header .container_fix div.header_menu {
    display: none;
  }

  header.header .container_fix > div.header_btn .right_lnb {
    display: none;
  }

  header.header .container_fix > div.header_btn {
    width: auto;
    text-align: right;
  }

  header.header .container_fix .header_con .header_logo img {
    width: 127px;
    height: 50px;
  }

  header.header .header_btn > a.mob_search {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    position: relative;
  }

  header.header .header_btn > a.mob_search span.circle {
    width: 17px;
    height: 17px;
    border: 2px solid #111;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
  }
  header.header .header_btn > a.mob_search span.line {
    width: 2px;
    height: 8px;
    background: #111;
    position: absolute;
    right: 3px;
    bottom: 0;
    transform: rotate(-45deg);
  }

  header.header .header_btn > a.mob_search.on span.circle {
    width: 22px;
    height: 2px;
    background: #111;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 0px;
    border: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  header.header .header_btn > a.mob_search.on span.line {
    width: 22px;
    height: 2px;
    background: #111;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  header.header .container_fix > div.header_btn .all_menu_btn {
    width: 20px;
    margin-left: -2px;
  }
  header.header .container_fix > div.header_btn .all_menu_btn > a {
    height: 20px;
  }
  header.header .container_fix > div.header_btn .all_menu_btn > a > span {
    height: 2px;
  }
  header.header
    .container_fix
    > div.header_btn
    .all_menu_btn
    > a
    > span:nth-child(2) {
    top: 9px;
  }

  header.header
    .container_fix
    > div.header_btn
    .all_menu_btn
    > a
    > span:nth-child(3) {
    top: unset;
    bottom: 0;
  }

  header.header .all_menu {
    top: 0;
    height: auto;
    padding-top: 0;
    padding-bottom: 150px;
    overflow-y: auto;
    margin-top: 0;
  }

  header.header .all_menu .container_fix {
    width: 100%;
  }

  header.header .all_menu .container_fix > div.fake_logo {
    display: none;
  }

  header.header .all_menu .container_fix > div.fake_btn {
    display: none;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul {
    width: 100%;
    padding-top: 48px;
    gap: 28px 0;
    flex-direction: column;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul > li {
    position: relative;
    display: block;
    text-align: left;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul > li > a::after {
    position: absolute;
    right: 16px;
    top: 0;
    content: "";
    width: 9px; /* 사이즈 */
    height: 9px; /* 사이즈 */
    border-top: 1px solid #222222; /* 선 두께 */
    border-right: 1px solid #222222; /* 선 두께 */
    transform: rotate(135deg); /* 각도 */
    transition: all 0.3s;
  }

  header.header .all_menu .container_fix > ul.all_menu_ul > li > a {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    opacity: 1;
    visibility: inherit;
    margin-bottom: 0;
    border-bottom: none;
    padding: 0 15px;
    transition: all 0.3s;
  }

  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    .all_menu_sub_div {
    width: 90%;
    padding: 0 15px;
    margin-top: 25px;
    display: none;
  }
  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    > a.active::after {
    transform: rotate(315deg);
    border-top: 1px solid #e99200;
    border-right: 1px solid #e99200;
  }
  header.header .all_menu .container_fix > ul.all_menu_ul > li > a.active span {
    color: #e99200;
  }

  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    > a.active
    + .all_menu_sub_div {
    display: block;
  }

  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    > a.active
    + .all_menu_sub_div
    .all_menu_sub_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 80px;
  }
  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    .all_menu_sub_div
    > ul
    > li {
    margin-bottom: 0;
    width: 125px;
  }

  header.header
    .all_menu
    .container_fix
    > ul.all_menu_ul
    > li
    .all_menu_sub_div
    > ul
    > li
    > a {
    font-size: 14px;
    color: #999999;
  }

  header.header .all_menu .container_fix > .all_menu_btn {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
  }
  header.header .all_menu .container_fix > .all_menu_btn > .all_menu_open {
    position: absolute;
    top: 50%;
    left: unset;
    right: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
  }

  header.header
    .all_menu
    .container_fix
    > .all_menu_btn
    > a
    > span:nth-child(1) {
    width: 22px;
  }
  header.header
    .all_menu
    .container_fix
    > .all_menu_btn
    > a
    > span:nth-child(2) {
    width: 0;
  }
  header.header
    .all_menu
    .container_fix
    > .all_menu_btn
    > a
    > span:nth-child(3) {
    width: 22px;
  }

  header.header .all_menu::after {
    width: 269px;
    height: 105px;
    background: url(../img/m_all_menu_bg.jpg);
  }

  header.header .all_menu .mobile_lnb {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 30px;
  }

  header.header .all_menu .mobile_lnb > li {
    display: table-cell;
    text-align: center;
    position: relative;
  }

  header.header .all_menu .mobile_lnb > li::after {
    content: "";
    width: 1px;
    height: 15px;
    background: #e1e1e1;
    position: absolute;
    right: 0;
    top: 15px;
  }

  header.header .all_menu .mobile_lnb > li:last-child::after {
    display: none;
  }

  header.header .all_menu .mobile_lnb > li > a {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    padding: 15px 5px;
    display: block;
  }
}

@media (max-width:480px) {
    header.header .all_menu .container_fix > ul.all_menu_ul > li .all_menu_sub_div {width: 100%;}
    header.header .all_menu .container_fix > ul.all_menu_ul > li .all_menu_sub_div > ul > li {width: 105px;}
}

/* @media (max-width: 768px) {
    header.header .container_fix {
        padding:25px 15px;
    }

    header.header .container_fix > div.header_logo img {
        width: 80px;
    }

    header.header .all_menu {
        top: 74px;
        height: calc(100vh - 74px);
    }
} */

/* @media (max-width: 480px) {
    header.header .container_fix {
        padding:0 15px; 
    }

    header.header .container_fix > div.header_logo img {
        
    }

    header.header .container_fix > div.header_btn {
        width: 22px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn {
        width: 22px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a {
        height: 16px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a > span {
        height: 1px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a > span:nth-child(1) {
        width: 80%;
        top: 0;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a > span:nth-child(2) {
        width: 100%;
        top: 8px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a > span:nth-child(3) {
        width: 80%;
        top: 16px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a.active > span:nth-child(1) {
        width: 25px;
    }

    header.header .container_fix > div.header_btn .all_menu_btn > a.active > span:nth-child(3) {
        width: 25px;
    }

    header.header .all_menu {
        top: 59px;
        height: calc(100vh - 59px);
    }

    header.header .all_menu .container_fix > ul.all_menu_ul > li {
        margin-bottom: 20px;
    }

    header.header .all_menu .container_fix > ul.all_menu_ul > li > a {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #e1e1e1;
        padding: 0 10px 15px;
    }

    header.header .all_menu .container_fix > ul.all_menu_ul > li .all_menu_sub_div {
        padding: 0 20px;
    }

    header.header .all_menu .mobile_lnb > li::after {
        height: 10px;
        top: 15px;
    }

    header.header .all_menu .mobile_lnb > li > a {
        font-size: 13px;
        padding: 15px 5px;
    }
} */

.container_fix.nav_container {
  padding-top: 80px;
  width: 1430px;
}
.container_fix.nav_container .menu_nav {
  display: flex;
  align-items: center;
}
.container_fix.nav_container .menu_nav .page_navs1 {
  font-size: 14px;
  color: #999999;
}
.container_fix.nav_container .menu_nav .page_navs1 .menu_angle {
  font-size: 14px;
  padding: 0 12px;
}

@media (max-width: 991px) {
  .container_fix.nav_container {
    padding-top: 30px;
    width: 100%;
  }
  .container_fix.nav_container .menu_nav .page_navs1 {
    font-size: 12px;
    margin-top: 2px;
  }
  .container_fix.nav_container .menu_nav .page_navs1 .menu_angle {
    font-size: 12px;
    padding: 0 7px;
  }
}

/* category 메뉴 */

.category_modify {
  width: 100%;
  margin-bottom: 60px;
}
.category_modify > ul.category_modify_ul {
  list-style: none;
  width: 100%;
  background: #f9f9f9;
  border-radius: 10px;
  display: flex;
}
.category_modify > ul.category_modify_ul > li {
  display: inline-block;
  flex: 1;
  text-align: center;
}
.category_modify > ul.category_modify_ul > li > a {
  display: block;
  position: relative;
  font-size: 18px;
  color: #999999;
  line-height: 62px;
}
.category_modify > ul.category_modify_ul > li.active > a {
  color: #222222;
  font-weight: 700;
}
.category_modify > ul.category_modify_ul > li:last-child > a {
  margin: 0 0 0 0;
}
.category_modify > ul.category_modify_ul > li:first-child > a {
  margin: 0 0 0 0;
}
.category_modify > ul.category_modify_ul > li > a::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #ccc;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.category_modify > ul.category_modify_ul > li:last-child > a::after {
  display: none;
}

/* .category_modify.m03_category > ul.category_modify_ul {justify-content: space-between;}
.category_modify.m03_category > ul.category_modify_ul > li  {width: 230px;} */

.category_modify.m03_category > ul.category_modify_ul > li > a::after {
  right: -3px;
}

@media (max-width: 991px) {
  .category_modify {
    margin-bottom: 10px;
  }
  .category_modify > ul.category_modify_ul > li > a {
    margin: 0 10px;
    font-size: 14px;
    padding: 10px 0;
  }
  .category_modify > ul.category_modify_ul > li:last-child > a {
    margin: 0 0 0 10px;
  }
  .category_modify > ul.category_modify_ul > li:first-child > a {
    margin: 0 10px 0 0;
  }
  .category_modify > ul.category_modify_ul > li > a::after {
    right: -12px;
  }

  .at-html #captcha {
    width: 100%;
    text-align: left;
  }
  .at-html #captcha #captcha_img {
    border: 1px solid #dcdcdc;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 62px;
  }
  .at-html #captcha #captcha_mp3,
  #captcha #captcha_reload {
    left: 160px;
  }
  .at-html #captcha #captcha_key {
    border: 1px solid #dcdcdc;
    width: calc(100% - 192px);
    margin-left: 28px;
    height: 62px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-left: 27px;
    font-size: 14px;
  }
  .at-html #captcha #captcha_info {
    font-size: 14px;
    color: #555;
    display: block;
    margin-top: 10px;
  }
  .at-html #captcha #captcha_info {
    font-size: 12px;
    margin-top: 5px;
  }
  .at-html #captcha.m_captcha audio {
  }
  .at-html #captcha.m_captcha #captcha_reload {
    left: auto;
    right: auto;
    top: auto;
    background: url("../../../img/captcha.png") no-repeat 0 -25px #e3e3e3;
    position: relative;
    height: 40px;
  }
  .at-html #captcha.m_captcha #captcha_img {
    margin: 0;
    width: 120px;
    height: 40px;
    float: left;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .at-html #captcha.m_captcha #captcha_key {
    width: calc(100% - 145px);
    margin-top: 0;
    margin-left: 0;
    height: 56.5px;
    border-left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

/* footer */

.fix_footer {
  margin-top: 0px;
  border-top: none;
}
.fix_footer .container_fix {
  width: 1740px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 45px 0 40px;
}
.fix_footer .container_fix .ft_left .ft_service {
  margin-left: 0;
  float: none;
}
.fix_footer .container_fix .ft_left .ft_service > .tit {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 28px;
}
.fix_footer .container_fix .ft_left .ft_service > .tel {
  font-size: 30px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}
.fix_footer .container_fix .ft_left .ft_service .time_box > p {
  font-size: 15px;
}
.fix_footer .container_fix .ft_left .ft_service .time_box > p + p:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #c0c0c0;
  margin-left: 7px;
  margin-right: 6px;
  margin-bottom: -1px;
}
.fix_footer .container_fix .ft_left .ft_service .time_box > p .time {
  font-weight: 400;
  color: #666;
  margin-left: 3px;
  margin-right: 0;
}
.fix_footer .container_fix .ft_left .ft_service .time_box > p.closed {
  margin-top: 11px;
}
.fix_footer
  .container_fix
  .ft_left
  .ft_service
  .time_box
  > p
  + p.closed:before {
  display: none;
}

.fix_footer .container_fix .ft_right .fot_top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.fix_footer .container_fix .ft_right .fix_links_box {
  margin-bottom: 0;
  border: none;
  margin-left: 25px;
}
.fix_footer .container_fix .ft_right .fix_links_box .fix_links {
  padding: 0;
}
.fix_footer .container_fix .ft_right .fix_links_box .fix_links > li + li {
  margin-left: 25px;
  padding-left: 0;
}
.fix_footer .container_fix .ft_right .fix_links_box .fix_links > li + li:after {
  display: block;
  left: -15px;
  background: #bfbfbf;
}
.fix_footer .container_fix .ft_right .fix_links_box .fix_links > li a {
  font-size: 14px;
  color: #333;
}
.fix_footer .container_fix .ft_right .fix_infos_box {
  padding: 0;
}
.fix_footer .container_fix .ft_right .fix_infos_box .ft_info {
  float: none;
}
.fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul {
  margin-bottom: 12px;
}
.fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul > li {
  font-size: 13px;
  color: #999999;
}
.fix_footer
  .container_fix
  .ft_right
  .fix_infos_box
  .ft_info
  .info_ul
  > li
  + li:after {
  height: 11px;
  margin-top: -5.5px;
  background: #bfbfbf;
}
.fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul > li a {
  font-size: 13px;
}
.fix_footer .container_fix .ft_right .fix_infos_box h4 {
  font-size: 13px;
  color: #999999;
  margin-top: 0;
}

.fix_footer .container_fix.sub-fot {
  border-top: 1px solid #eee;
}

.fix_footer .container_fix.sub-fot.fot_subs {
  border-top: none;
}

@media (max-width: 991px) {
  .fix_footer {
    margin-top: 0;
    background: #fff;
    border-top: none;
  }
  .fix_footer .container_fix {
    width: 100%;
    padding: 0 15px;
  }

  .fix_footer .container_fix.sub-fot {
    border: none;
  }

  .fix_footer .container_fix .ft_right {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 44px 0 30px;
  }
  .fix_footer .container_fix .ft_right.m_fot_subs {
    border-top: none;
  }
  .fix_footer .container_fix .ft_right .fot_top {
    flex-direction: column;
    align-items: flex-start;
  }
  .fix_footer .container_fix .ft_right .fot_top .fot-logo {
    margin-bottom: 20px;
  }
  .fix_footer .container_fix .ft_right .fot_top .fot-logo img {
    width: 131px;
  }

  .fix_footer .container_fix .ft_right .fix_links_box {
    margin-left: 0;
  }
  .fix_footer .container_fix .ft_right .fix_links_box .fix_links {
    text-align: left;
  }

  .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li a {
    font-size: 12px;
  }

  .fix_footer .fix_links_box .fix_links > li {
    margin-right: 20px;
  }
  .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li + li {
    margin-left: 0;
  }
  .fix_footer .fix_links_box .fix_links > li:last-child {
    margin-right: 0;
  }

  .fix_footer
    .container_fix
    .ft_right
    .fix_links_box
    .fix_links
    > li
    + li:after {
    left: -13px;
    height: 13px;
    margin-top: -6px;
  }

  .fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul {
    display: flex;
    gap: 0 15px;
  }
  .fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul li {
    position: relative;
  }
  .fix_footer
    .container_fix
    .ft_right
    .fix_infos_box
    .ft_info
    .info_ul
    li::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 1px;
    margin-top: -6px;
    height: 13px;
    background: #bfbfbf;
  }
  .fix_footer
    .container_fix
    .ft_right
    .fix_infos_box
    .ft_info
    .info_ul
    li:first-child:after {
    display: none;
  }

  .fix_footer .fix_infos_box .info_ul > li + li {
    margin-top: 0;
  }
  

  /* .fix_footer.login_footer{margin-top: 0;}
    .fix_footer .container_fix .ft_right {width: 100%;}
    .fix_footer .container_fix .ft_right .fix_links_box {margin-bottom: 12.5px;}
    .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li + li {margin-left: 10px; padding-left: 13px;}
    .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li:nth-of-type(3) {margin-left: 0; padding-left: 0;}
    .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li:nth-of-type(4):before {content: ""; display: inline-block; width: 1px; height: 10px; background: #c9cccf; position: absolute; left: 0; top: 2px;}
    .fix_footer .container_fix .ft_right .fix_links_box .fix_links > li a {font-size: 11px; color: #8a8c8f;}
    .fix_footer .container_fix .ft_right .mob_inquiry_menu {margin-bottom: 15px;}
    .fix_footer .container_fix .ft_right .mob_inquiry_menu .inquiry_menu_list {display: flex; align-items: center; justify-content: center;}
    .fix_footer .container_fix .ft_right .mob_inquiry_menu .inquiry_menu_list .inquiry_li + .inquiry_li {margin-left: 4.5px;}
    .fix_footer .container_fix .ft_right .mob_inquiry_menu .inquiry_menu_list .inquiry_li .inquiry_a {display: inline-block; padding: 0 4px; height: 20px; border: 1px solid #8a8c8f; border-radius: 10px; font-size: 10px; color: #8a8c8f; line-height: 18px;}
    .fix_footer .container_fix .ft_right .mob_inquiry_menu .inquiry_menu_list .inquiry_li .inquiry_a .arrow {font-family: 'SUIT', sans-serif; margin-left: 2px;}
    .fix_footer .container_fix .ft_right .fix_infos_box {display: none;}
    .fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul {margin-bottom: 8px;}
    .fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul > li {font-size: 11px;}
    .fix_footer .container_fix .ft_right .fix_infos_box .ft_info .info_ul > li a {font-size: 11px;}
    .fix_footer .container_fix .ft_right .fix_infos_box h4 {font-size: 11px; margin-top: 16.5px;}

    .mob_foot_menu {position: fixed; left: 0; bottom: 0; z-index: 10; background: #fff; width: 100%; padding: 7px 30px; box-shadow: 0 0 10px rgba(0,0,0,0.1);}
    .mob_foot_menu .foot_menu_list {display: flex; align-items: center; justify-content: space-between;}
    .mob_foot_menu .foot_menu_list .foot_li {width: 15%;}
    .mob_foot_menu .foot_menu_list .foot_li .foot_a {text-align: center;}
    .mob_foot_menu .foot_menu_list .foot_li .foot_a .icon_box img {height: 21px;}
    .mob_foot_menu .foot_menu_list .foot_li .foot_a .text_box {font-size: 10px; color: #666; margin-top: 5px; transition: all .3s; white-space : nowrap;}
    @media (hover: hover) {.mob_foot_menu .foot_menu_list .foot_li:hover .foot_a .text_box {color: #e99200;}} */
}

.topbtn {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 160px;
    right: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}
.topbtn img {
    width: 12.5px;
    height: 16.5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.at-go .go-btn {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  right: 52px;
  bottom: 44px;
  z-index: 30;
}
.at-go .go-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.quick_go .at-quick a {
    position: fixed;
    width: 42.5px;
    height: 42.5px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    right: 20px;
    z-index: 30;
    margin-bottom: 15px;
}
.quick_go .at-quick a.m_wing1 {
    background: #e99200 ;
    bottom: 130px;
}
.quick_go .at-quick a.m_wing1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 19.5px;
    height: 19.5px;
}
.quick_go .at-quick a.m_wing1 .quick_ask {
    position: absolute;
    font-family: "Pretendard",sans-serif;
    font-size: 12px;
    font-weight: 500;
    top: 32px;
    left: 2%;
}
.quick_go .at-quick a.m_wing2 {
    background: #31b24a ;
    bottom: 60px;
}
.quick_go .at-quick a.m_wing1:hover span {
    color: #111;
}

.quick_go .at-quick a.m_wing2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 21.5px;
    height: 18.5px;
}
.quick_go .at-quick a.m_wing2 span {
    font-family: "Pretendard",sans-serif;
    font-weight: 500;
    position: absolute;
    font-size: 12px;
    top: 32px;
    left: 12%;
}
.quick_go .at-quick a.m_wing2:hover span {
    color: #111;
}
.quick_go .at-quick a.m_wing1 .tel_number {
    position: absolute;
    top: 0;
    left: -135px;
    width: 120px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.quick_go .at-quick a.m_wing1 .tel_number span {
    position: absolute;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    font-family: "Pretendard",sans-serif;
}

.quick_go .at-quick a.m_wing1 .tel_number .tel1 {
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
}
.quick_go .at-quick a.m_wing1 .tel_number .tel1.tell2 {
    top: 13px;
    left: 18px;
    transform: translateX(0%);
}
.quick_go .at-quick a.m_wing1 .tel_number .tel2 {
    top: 33px;
    left: 21px;
}

.quick_go .at-quick a.m_wing1 .tel_number::after {
    position: absolute;
    right: -13px; 
    top: 0; 
    content: '▶';
    -webkit-text-stroke: 1px #eee;
    color: #fff;
    z-index: -1;


}


/* 회원가입 */
.sub_text.register_tt {
  margin-top: 50px;
  margin-bottom: 70px;
}
.sub_text.register_tt h1 {
  color: #1b1b1b;
}
.register-wrap .register_sheet .reg_tab {
  padding: 0 83.5px;
}
.register-wrap .register_sheet .reg_form .red {
  display: none;
}
.register-wrap .register_sheet .reg_form_com .input-box input:focus {
  border: 1px solid #e99200;
}
.register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
  transition: 0.3s;
  background-color: #f6f6f6;
  border: 1px solid #f6f6f6;
  color: #999999 !important;
}
.register-wrap
  .register_sheet
  .reg_form_com
  .reg_form_name
  button.win_btn:hover {
  background-color: #e99200;
  color: #fff !important;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box
  .check-input
  + label {
  color: #999999;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box
  .check-input:checked
  + label {
  color: #333333;
}
@media (max-width: 991px) {
  .sub_text.register_tt {
    margin-bottom: 30px;
  }
  .sub_text.register_tt h1 {
    font-size: 21px;
    margin-bottom: 35px;
  }
  .register-wrap .register_sheet .reg_tab {
    padding: 0;
    padding-bottom: 39px;
    gap: 9.5px;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
    padding: 9.25px 10px;
  }
  .register-wrap
    .register_sheet
    .reg_form_per
    .input-box-msg.email
    > div.email_msg {
    width: 100%;
  }
}

/* 회원가입 이용약관 동의 */
.register-wrap .register_sheet .reg_form .reg_terms .check-box .detail-content {
  overflow: hidden;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box.active
  .detail-content {
  padding: 20px 6px 20px 20px;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box
  .detail-content
  .cf_box {
  overflow-y: auto;
  height: 105px;
  padding-right: 5px;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box.active
  .detail-content
  .cf_box::-webkit-scrollbar {
  width: 4px;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box.active
  .detail-content
  .cf_box::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  width: 4px;
}
.register-wrap
  .register_sheet
  .reg_form
  .reg_terms
  .check-box.active
  .detail-content
  .cf_box::-webkit-scrollbar-button {
  background-color: #f8f8f8;
}

@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms h1 {
    font-size: 15px;
    font-weight: 700;
  }
  .register-wrap
    .register_sheet
    .reg_form
    .reg_terms
    .check-box.active
    .detail-content {
    padding: 15px 5px 15px 15px;
    font-size: 11.5px;
    line-height: 21.5px;
  }
}

/* 회원가입 자동등록방지 */
#captcha #captcha_img {
  width: 232px;
  height: 90px;
}
.register-form #captcha {
  text-align: center;
}
.register-form #captcha #captcha_key {
  width: calc(100% - 320px) !important;
  height: 90px;
  margin-left: 50px;
}
#captcha #captcha_mp3 {
  width: 45px;
  height: 45px;
  left: 231px;
}
#captcha #captcha_mp3 span {
  width: 45px;
  height: 45px;
  background-size: cover;
  background-position: left top;
}
#captcha #captcha_reload {
  width: 45px;
  height: 45px;
  background-size: cover;
  background-position: left bottom;
  left: 231px;
  top: 44px !important;
}
.register-wrap .register_sheet .reg_form .reg_terms #captcha #captcha_info {
  font-size: 13px;
  color: #999999;
  margin-top: 13px;
}
.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit {
  border-radius: 30px;
}
.register-wrap .register_sheet .reg_form .captcha_html {
  padding-top: 39px;
}
.register_result_btn a {
  padding: 0 55.55px;
}

@media (max-width: 991px) {
  .at-html #captcha.m_captcha #captcha_img {
    width: 145px;
    height: 56.5px;
    border-radius: 0 !important;
  }
  #captcha.m_captcha #captcha_mp3 {
    width: 28px;
    height: 28px;
    left: auto;
    transform: translateX(-1px);
    bottom: 0;
  }
  .at-html #captcha.m_captcha #captcha_reload {
    position: absolute;
    width: 28px;
    height: 28px;
    background-position: left bottom -2px;
    transform: translateX(-1px);
    left: 147px;
    top: 28px !important;
  }
  .register-form #captcha #captcha_key {
    width: calc(100% - 177px) !important;
    background-color: #fff !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    height: 56.5px !important;
    border: 1px solid #d6d6d6 !important;
  }
  .register-form #captcha #captcha_reload {left: -1px !important;}
  .register-wrap .register_sheet .reg_form .captcha_html {
    padding-top: 30px;
  }
  .register-wrap .register_sheet .reg_form .regis_interest {
    font-size: 15px;
    font-weight: 700;
  }
  .register-wrap .register_sheet .reg_form .reg_terms #captcha #captcha_info {
    font-size: 10px;
  }
  .register_result_btn a {
    padding: 0 34.68px;
    width: 110px;
  }
}

/* 회원가입 완료 */
@media (max-width: 991px) {
  .register_result_sheet .alert-box {
    font-size: 11.5px;
    line-height: 20px;
  }
  .lost-modal form .bot .captcha_sheet .captcha #modal_captcha_key.required {
    background: #fff !important;
  }
}

/* 로그인 */
@media (max-width: 480px) {
  .lost-modal form {
    padding: 32.5px 25px;
  }
}
/************************************************************
관리자 계정 > 각 페이지
************************************************************/
.at-content > .text-center.admin_group {
  padding-top: 20px;
}
.text-center.list-admin {
  padding-top: 15px;
}
.pull-right.list-admin {
  padding-top: 15px;
}
