@charset "UTF-8";
html{
	overflow-x: hidden;
}

/* --------- 탑 배너 ---------- */
.top_banner {
	display:flex;
	top:0;
  padding: 0 2.86vw; /* 55px */
  background-color: #111;
  height: 40px;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: all 0.1s;
}
.top_banner .banner_txt {
  font-size: clamp(14px, 0.83vw, 16px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
}
.top_banner .banner_txt span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.top_banner .banner_txt span a {
  color: #82f1cc;
  font-weight: 600;
}
.top_banner .close_btn {
  color: #fff;
  font-size: clamp(12px, 0.73vw, 14px);
}
.top_banner .close_btn span {
  height: 1px;
  width: clamp(16px, 1.04vw, 20px);
  background-color: #fff;
  transform: rotate(45deg);
  margin-left: 10px;
}
.top_banner .close_btn span::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #fff;
  display: block;
  transform: rotate(90deg);
}
.top_banner.hidden {
	display:none;
}

/* --------- 헤더 ---------- */
header {
  position: fixed;
  /*top: 40px;*/
	top:0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  padding: 0 2.86vw; /* 55px */
  height: 88px;
  transition: all 0.3s;
  border-bottom: 1px solid #dedede;
}
header .header_logo {
  /*width: 160px;*/
	width:191px;
}
header .header_logo .logo_w {
  display: none;
}
header .pc_gnb {
  height: 100%;
}
header .pc_gnb > ul {
  height: 100%;
}
header .pc_gnb > ul > li {
  width: clamp(100px, 7.81vw, 150px);
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
header .pc_gnb > ul > li > a {
  color: #222;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  height: 100%;
  width: 100%;
  transition: all 0.2s;
}
header .pc_gnb > ul > li:hover > a {
  color: var(--color-point);
}
header .gnb_hover > ul > li {
  width: clamp(100px, 8.33vw, 160px);
}
header .gnb_hover > ul > li a {
  color: #000;
}
header .pc_gnb > ul > li.on a {
  color: var(--color-point); 
}
header .header_right .search {
  margin-right: clamp(25px, 2.08vw, 40px);
}
header .header_right .search::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/search_icon.svg);
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header .header_right .ham_btn {
  width: 22px;
  height: 20px;
  position: relative;
}
header .header_right .ham_btn span {
  height: 2px;
  width: 100%;
  background-color: #222;
}
header .header_right .ham_btn span::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  display: block;
  background-color: #222;
  top: 0;
  left: 0;
}
header .header_right .ham_btn span::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  display: block;
  background-color: #222;
  bottom: 0;
  left: 0;
}
header .header_right .sitemap {
  margin-right: clamp(25px, 2.08vw, 40px);
}
header .header_right .sitemap::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/sitemap_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
header .header_right .sitemap_wrapper {
  width: 240px;
  height: 330px;
  background-color: #fff;
  padding: 20px;
  position: absolute;
  top: 90%;
  right: 7.85%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: none;
  transition: display 0.5s ease-in-out;
}
header .header_right .sitemap_wrapper::after {
  content: "";
  height: 0;
  width: 0;
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  display: block;
  position: absolute;
  bottom: 99%;
  right: 30px;
}
header .header_right .sitemap_wrapper ul {
  overflow: auto;
  height: 100%;
}
header .header_right .sitemap_wrapper ul::-webkit-scrollbar {
  width: 2px;
}
header .header_right .sitemap_wrapper ul::-webkit-scrollbar-track {
  background-color: #eeeeee;
}
header .header_right .sitemap_wrapper ul::-webkit-scrollbar-thumb {
  background-color: #222222;
  height: 50px;
}
header .header_right .sitemap_wrapper li {
  padding-right: 20px;
}
header .header_right .sitemap_wrapper li:not(:last-child) {
  margin-bottom: 20px;
}
header .header_right .sitemap_wrapper a {
  background-color: #fff;
  height: 34px;
  position: relative;
  font-size: 16px;
}
header .header_right .sitemap_wrapper a::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../img/sitemap_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .header_right .sitemap_wrapper a:hover {
  font-weight: 600;
}
header .header_bg {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  height: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
header .header_bg .sub_left {
  width: 191px;
}
header .header_bg .sub_menu_area {
  padding: 0 2.86vw;
}
header .header_bg .sub_menu_wrapper {
  min-height:clamp(200px, 13.02vw, 250px);
}
header .header_bg .sub_menu_area .sub_menu {
  width: clamp(100px, 8.33vw, 160px);
  padding-top: clamp(25px, 2.08vw, 40px);
  padding-bottom: 50px;
}
header .header_bg .sub_menu_area .sub_menu li {
  width: 100%;
  text-align: center;
}
header .header_bg .sub_menu_area .sub_menu li a {
  font-size: clamp(14px, 0.83vw, 16px);
  width: 100%;
  color: #444;
}
header .header_bg .sub_menu_area .sub_menu li .on{
	color: var(--color-point);
	font-weight: 500;
}
header .header_bg .sub_menu_area .sub_menu li a:hover {
  color: #000;
  font-weight: 500;
}
header .header_bg .sub_menu_area .sub_menu li .on:hover{
	color: var(--color-point);
}
header .header_bg .sub_menu_area .sub_menu li:not(:last-child) {
  margin-bottom: 25px;
}
header .header_bg .sub_menu_area .sub_menu:not(:last-child) {
  border-right: 1px solid #dedede;
}
header .header_bg .sub_menu_area .active {
  background-color: #f6f7fa;
}
header .header_bg .sub_right {
  width: clamp(116px, 7.6vw, 146px);
}
header .header_bg .brochure_link {
  background-color: #0c2542;
  color: #c8af7f;
  width: clamp(90px, 6.77vw, 130px);
  height: clamp(150px, 10.42vw, 200px);
  position: absolute;
  top: 27%;
  right: 3%;
  transform: translateY(-27%);
}
header .header_bg .brochure_link a {
  flex-direction: column;
}
header .header_bg .brochure_link a p {
  font-size: clamp(15px, 0.78vw, 15px);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(200, 175, 127, 0.3);
}
header .header_bg .brochure_link a span {
  font-size: clamp(12px, 0.63vw, 12px);
}
header .header_bg .brochure_link a span::after {
  content: "";
  width: 6px;
  height: 6px;
  background-image: url(../img/brochure_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 5px;
}
header .header_bg .bg_bottom_txt {
  width: 100%;
  height: 65px;
  border-top: 1px solid #dedede;
}
header .all_menu {
  position: fixed;
	top: 40px;
  left: 0;
  width: 100%;
  /*
  height: calc(100vh - 40px);*/
	height:100vh;
  overflow-y: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
header .all_menu .all_top {
  padding: 0 2.86vw; /* 55px */
  height: clamp(66px, 4.58vw, 88px);
}
header .all_menu .all_top h2 {
  width: clamp(133px, 9.95vw, 191px);
}
header .all_menu .close_btn {
  width: 22px;
  height: 22px;
}
header .all_menu .close_btn span {
  width: 22px;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg);
}
header .all_menu .close_btn span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
  transform: rotate(90deg);
}
header .all_menu .m_k_search {
  display: none;
}
header .all_menu .all_content {
  height: calc(100% - clamp(119px, 7.34vw, 141px));
}
header .all_menu .all_menu_list {
  padding: clamp(30px, 2.08vw, 40px) clamp(60px, 6.25vw, 120px) 0;
  height: fit-content;
  opacity: 0;
}
header .all_menu .all_menu_list > ul {
  max-width: 1200px;
  gap: 60px 0;
}
header .all_menu .all_menu_list > ul > li {
  width: clamp(120px, 12.5vw, 240px);
}
header .all_menu .all_menu_list > ul > li > a {
  font-size: clamp(22px, 1.46vw, 28px);
  font-weight: 600;
  transition: color 0.4s ease;
}
header .all_menu .all_menu_list > ul > li > ul {
  padding-top: clamp(14px, 0.83vw, 16px);
}
header .all_menu .all_menu_list > ul > li > ul li {
  line-height: 3;
}
header .all_menu .all_menu_list > ul > li > ul li a {
  font-size: 16px;
  color: #444;
}
header .all_menu .all_menu_list > ul > li > ul li a:hover {
  color: #000;
  font-weight: 600;
}
header .all_menu .all_menu_list > ul > li:hover > a {
  color: var(--color-point);
}
header .all_menu .all_menu_list > ul .brochure {
  display: none;
}
header .all_menu .all_menu_list > ul .k_search {
  width: clamp(350px, 35.68vw, 685px);
  margin-left: clamp(20px, 1.82vw, 35px);
}
header .all_menu .all_menu_list > ul .k_search #keyword {
  background-color: #f8f8f8;
  width: calc(100% - 52px);
  border: none;
  font-size: 16px;
  padding: 17.5px 20px;
}
header .all_menu .all_menu_list > ul .k_search #keyword::placeholder {
  color: #999;
}
header .all_menu .all_menu_list > ul .k_search .search_btn {
  width: 52px;
  height: 54px;
  background-color: var(--color-point);
}
header .all_menu .all_menu_list > ul .k_search .search_btn::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/search_icon_w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
header .all_menu .all_menu_list > ul .k_search .keyword_area ul {
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dedede;
  margin-top: 10px;
  padding: 10px 30px;
}
header .all_menu .all_menu_list > ul .k_search .keyword_area ul li {
  line-height: 2.5;
}
header .all_menu .all_menu_list > ul .k_search .keyword_area ul li a {
  color: #666;
  font-size: 14px;
}
header .all_menu .all_menu_list .m_sub_menu {
  display: none;
}
header .all_menu .quick_counsel {
  width: 460px;
  opacity: 0;
  background-color: #f5f5f5;
}
header .all_menu .quick_counsel .counsel_wrapper {
  background-image: url(../img/counsel_bg.png);
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header .all_menu .quick_counsel .counsel_wrapper .counsel_top {
  flex-direction: column;
}
header .all_menu .quick_counsel .counsel_wrapper .counsel_top img {
  width: auto;
}
header .all_menu .quick_counsel .counsel_wrapper .counsel_top h2 {
  font-size: clamp(24px, 1.46vw, 28px);
  color: #fff;
  font-weight: 500;
}
header .all_menu .quick_counsel .counsel_wrapper .counsel_top h2 p {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 2.2;
  font-weight: 400;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper {
  flex-direction: column;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper label {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper input[type=text] {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 15px;
  margin-bottom: 10px;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper select {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15) url(../img/down_arrow.svg) right 20px center no-repeat;
  padding: 15px;
  border: none;
  color: #fff;
  appearance: none;
  position: relative;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .input_wrapper select option {
  background-color: #000;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .agree_wrapper {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .agree_wrapper input[type=checkbox] + span {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  background: none;
  margin-right: 10px;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .agree_wrapper input[type=checkbox]:checked + span {
  background-image: url(../img/check_icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .agree_wrapper label {
  color: #fff;
  font-weight: 300;
  margin-right: 10px;
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .agree_wrapper button {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
header .all_menu .quick_counsel .counsel_wrapper #quickCounselForm .quickCounsel_btn {
  width: 100%;
  background-color: #222;
  color: #fff;
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 700;
  padding: 16px 0;
}
header .all_menu .quick_counsel .news {
  background-color: #f5f5f5;
  padding: 25px 40px;
}
header .all_menu .quick_counsel .news > a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-point);
  background: url(../img/new_arrow.svg) right center no-repeat;
  padding-right: 20px;
}
header .all_menu .quick_counsel .news ul li {
  line-height: 2.4;
}
header .all_menu .quick_counsel .news ul li a {
  font-size: 14px;
  color: #444;
  height: fit-content;
}
header .all_menu .quick_counsel .news ul li a .news_tit {
  /*width: 71%;*/
	width:100%;
  word-break: break-all;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
header .all_menu .n_k_search {
  display: none;
}
header .all_menu .all_menu_footer {
  background-color: #f4f4f4;
  padding: 17px 0 17px 5.21vw;
  position: absolute;
  width: 100%;
  bottom: 0;
}
header .all_menu .all_menu_footer > span {
  font-size: 14px;
  font-weight: 700;
}
header .all_menu .all_menu_footer > span:not(:last-child) {
  margin-right: 40px;
}
header .all_menu .all_menu_footer > span span {
  font-weight: 400;
  margin-left: 10px;
}
header .all_menu.open {
	overflow:hidden;
}
header .all_menu.open .all_menu_list {
  animation: itemFadeLeft 0.5s 0.2s;
  animation-fill-mode: both;
}
header .all_menu.open .quick_counsel {
  animation: itemFadeRight 0.5s 0.2s;
  animation-fill-mode: both;
}
@keyframes itemFadeLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes itemFadeRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
header .on {
  display: block !important;
}
header .open {
  opacity: 1;
  visibility: visible;
}

.header_scroll {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  height: 60px;
}
.header_scroll .header_logo {
  transform: scale(0.7);
}
.header_scroll .header_logo .logo_w {
  display: none;
}
.header_scroll .header_logo .logo_c {
  display: inline;
}
.header_scroll .pc_gnb > ul > li a {
  color: #000;
  font-size: 16px;
}
.header_scroll .header_right .search::after {
  background-image: url(../img/search_icon.svg);
}
.header_scroll .header_right .ham_btn span {
  background-color: #000;
}
.header_scroll .header_right .ham_btn span::after, .header_scroll .header_right .ham_btn span::before {
  background-color: #000;
}
.header_scroll .header_right .sitemap::after {
  background-image: url(../img/sitemap_icon.svg);
}

.header_hover {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
}
.header_hover .header_logo .logo_w {
  display: none;
}
.header_hover .header_logo .logo_c {
  display: inline;
}
.header_hover .pc_gnb > ul > li a {
  color: #000;
}
.header_hover .header_right .search::after {
  background-image: url(../img/search_icon.svg);
}
.header_hover .header_right .ham_btn span {
  background-color: #000;
}
.header_hover .header_right .ham_btn span::after, .header_hover .header_right .ham_btn span::before {
  background-color: #000;
}
.header_hover .header_right .sitemap::after {
  background-image: url(../img/sitemap_icon.svg);
}

header.has_top_pop {
	top:40px;
}
header.has_top_pop .all_menu{
	height: calc(100vh - 40px);
}
header.has_top_pop.header_scroll {
	top:0;
}
header.has_top_pop.header_scroll .all_menu {
	top:0;
	height:100vh;
}
header.no_top_pop .all_menu {
	top:0;
}


@media (max-width: 1200px) {
  header .header_right .sitemap_wrapper::after {
    right: 33px;
  }
  header .all_menu .all_menu_list {
    padding: clamp(20px, 2.5vw, 30px) clamp(40px, 5vw, 60px);
  }
}
@media (max-width: 1100px) {
  header .pc_gnb {
    display: none;
  }
  header .header_right .sitemap_wrapper {
    right: 8.5%;
  }
  header .all_menu .all_content {
    padding: 40px clamp(25px, 5.45vw, 60px);
    align-items: center;
  }
  header .all_menu .all_menu_list {
    padding: 0;
  }
  header .all_menu .all_menu_list > ul {
    max-width: 550px;
  }
  header .all_menu .all_menu_list > ul > li {
    width: clamp(110px, 12.27vw, 135px);
  }
  header .all_menu .all_menu_list > ul > li a {
    font-size: clamp(16px, 1.82vw, 20px);
  }
  header .all_menu .all_menu_list > ul > li ul li a {
    font-size: clamp(14px, 1.45vw, 16px);
  }
  header .all_menu .all_menu_list > ul .k_search {
    display: none;
  }
  header .all_menu .quick_counsel {
    display: none;
  }
  header .all_menu .n_k_search {
    display: block;
    width: clamp(210px, 31.82vw, 350px);
  }
  header .all_menu .n_k_search #n_keyword {
    background-color: #f8f8f8;
    width: calc(100% - clamp(38px, 4.73vw, 52px));
    border: none;
    font-size: clamp(12px, 1.45vw, 16px);
    padding: clamp(10px, 1.59vw, 17.5px) 20px;
  }
  header .all_menu .n_k_search #n_keyword::placeholder {
    color: #999;
  }
  header .all_menu .n_k_search .search_btn {
    width: clamp(38px, 4.73vw, 52px);
    height: clamp(40px, 4.91vw, 54px);
    background-color: var(--color-point);
  }
  header .all_menu .n_k_search .search_btn::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/search_icon_w.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
  }
  header .all_menu .n_k_search .keyword_area ul {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #dedede;
    margin-top: 10px;
    padding: 10px 30px;
  }
  header .all_menu .n_k_search .keyword_area ul li {
    line-height: 2.5;
  }
  header .all_menu .n_k_search .keyword_area ul li a {
    color: #666;
    font-size: clamp(12px, 1.27vw, 14px);
  }
  header .all_menu .all_menu_footer {
    padding: 17px 2.86vw 17px;
  }
  header .all_menu .all_menu_footer > span {
    font-size: clamp(12px, 1.27vw, 14px);
  }
  header .all_menu .all_menu_footer > span:not(:last-child) {
    margin-right: clamp(20px, 3.64vw, 40px);
  }
}
@media (max-width: 1050px) {
  header .header_right .sitemap_wrapper {
    right: 9.2%;
  }
}
@media (max-width: 950px) {
  header .header_right .sitemap_wrapper {
    right: 9.8%;
  }
}
@media (max-width: 850px) {
  header .header_right .sitemap_wrapper {
    right: 10.8%;
  }
}
@media (max-width: 750px) {
  .top_banner {
    display: none !important;
  }
  header {
    padding: 0 clamp(20px, 5.33vw, 40px);
    height: clamp(60px, 17.33vw, 130px);
    top: 0 !important;
  }
  header .header_logo {
    width: clamp(120px, 30.67vw, 230px);
  }
  header .header_right .sitemap,
  header .header_right .search {
    margin-right: clamp(20px, 5.33vw, 40px);
  }
  header .header_right .sitemap::after,
  header .header_right .search::after {
    width: clamp(20px, 5.33vw, 40px);
    height: clamp(20px, 5.33vw, 40px);
  }
  header .header_right .ham_btn {
    width: clamp(20px, 5.33vw, 40px);
    height: clamp(20px, 5.33vw, 40px);
  }
  header .header_right .ham_btn span {
    height: clamp(2px, 0.53vw, 4px);
  }
  header .header_right .ham_btn span::before, header .header_right .ham_btn span::after {
    height: clamp(2px, 0.53vw, 4px);
  }
  header .header_right .sitemap_wrapper {
    width: clamp(200px, 56vw, 420px);
    height: clamp(250px, 64vw, 480px);
    padding: clamp(17px, 4.67vw, 35px) clamp(20px, 5.33vw, 40px);
  }
  header .header_right .sitemap_wrapper::after {
    right: 30%;
    border-bottom-width: clamp(12px, 2.67vw, 20px);
    border-right-width: clamp(8px, 2vw, 15px);
    border-left-width: clamp(8px, 2vw, 15px);
  }
  header .header_right .sitemap_wrapper ul {
    padding-right: clamp(20px, 5.33vw, 40px);
  }
  header .header_right .sitemap_wrapper li {
    padding: 0;
  }
  header .header_right .sitemap_wrapper li:not(:last-child) {
    margin-bottom: clamp(20px, 5.33vw, 40px);
  }
  header .header_right .sitemap_wrapper a {
    font-size: clamp(15px, 4vw, 30px);
    height: clamp(26px, 4.53vw, 34px);
  }
  header .header_right .sitemap_wrapper a::after {
    width: clamp(8px, 2vw, 15px);
    height: clamp(8px, 2vw, 15px);
  }
  header .header_right .sitemap_wrapper a img {
    display: none;
  }
	header .all_menu {
		top:0;
		height:100vh;
	}
  header .all_menu .close_btn {
    width: clamp(20px, 5.33vw, 40px);
    height: clamp(20px, 5.33vw, 40px);
  }
  header .all_menu .close_btn span {
    width: clamp(20px, 5.33vw, 40px);
    height: clamp(2px, 0.53vw, 4px);
  }
  header .all_menu .close_btn span::after {
    height: clamp(2px, 0.53vw, 4px);
  }
  header .all_menu .all_top {
    padding: 0 clamp(20px, 5.33vw, 40px);
    height: clamp(60px, 17.33vw, 130px);
    border-bottom: 1px solid #dedede;
  }
  header .all_menu .all_top h2 {
    width: clamp(120px, 30.67vw, 230px);
  }
  header .all_menu .scroll {
    height: clamp(60px, 13.33vw, 100px);
  }
  header .all_menu .m_k_search {
    display: block;
    width: 100%;
    padding: clamp(20px, 5.33vw, 40px) clamp(20px, 5.33vw, 40px);
    border-bottom: 1px solid #dedede;
    position: relative;
    background-color: #fff;
    z-index: 99;
  }
  header .all_menu .m_k_search #m_keyword {
    width: calc(100% - clamp(20px, 5.33vw, 40px));
    border: none;
    font-size: clamp(16px, 3.47vw, 26px);
    background-color: transparent;
    padding: 0;
  }
  header .all_menu .m_k_search #m_keyword::placeholder {
    color: #999;
  }
  header .all_menu .m_k_search .search_btn {
    width: clamp(20px, 5.33vw, 40px);
    height: clamp(20px, 5.33vw, 40px);
    background-color: transparent;
  }
  header .all_menu .m_k_search .search_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/search_icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
  }
  header .all_menu .m_k_search .keyword_area {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: clamp(120px, 34.67vw, 260px);
    padding: clamp(25px, 6.13vw, 46px) clamp(15px, 3.33vw, 25px) 0 clamp(15px, 3.33vw, 25px);
    border-top: 1px solid #dedede;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  header .all_menu .m_k_search .keyword_area::after {
    content: "";
    width: clamp(10px, 2.13vw, 16px);
    height: clamp(6px, 1.2vw, 9px);
    background-image: url(../img/down_arrow_b.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 50%;
    bottom: clamp(10px, 2.67vw, 20px);
    transform: translateX(-50%) rotate(180deg);
  }
  header .all_menu .m_k_search .keyword_area ul {
    background-color: #f8f8f8;
    padding: clamp(20px, 7.33vw, 55px) 0;
  }
  header .all_menu .m_k_search .keyword_area ul li:not(:last-child) {
    margin-right: clamp(15px, 4vw, 30px);
  }
  header .all_menu .m_k_search .keyword_area ul li:nth-child(n+5) {
    display: none;
  }
  header .all_menu .m_k_search .keyword_area ul li a {
    font-size: clamp(14px, 3.47vw, 26px);
    color: #666;
    font-weight: 300;
  }
  header .all_menu .m_k_search .search_bg {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  header .all_menu .m_k_search .show {
    opacity: 1;
    visibility: visible;
  }
  header .all_menu .all_content {
    padding: 0;
    display: block;
  }
  header .all_menu .all_menu_list {
    display: flex;
  }
  header .all_menu .all_menu_list > ul:first-child {
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    background-color: var(--color-point);
    gap: 0;
  }
  header .all_menu .all_menu_list > ul:first-child > li {
    opacity: 1;
    animation: none !important;
    color: rgba(255, 255, 255, 0.5);
    width: auto;
    text-align: left;
    width: clamp(140px, 35.2vw, 264px);
    padding: clamp(20px, 6.4vw, 48px) 0 clamp(20px, 6.4vw, 48px) clamp(15px, 5.33vw, 40px);
    background-color: var(--color-point);
  }
  header .all_menu .all_menu_list > ul:first-child > li > a {
    font-size: clamp(18px, 4vw, 30px);
    text-align: left;
    width: 100%;
    display: block;
    font-weight: 400;
  }
  header .all_menu .all_menu_list > ul:first-child > li > ul {
    padding-top: 0;
    display: none;
  }
  header .all_menu .all_menu_list > ul:first-child > li .k_search {
    display: none;
  }
  header .all_menu .all_menu_list > ul:first-child > li:hover a {
    color: #fff;
    font-weight: 600;
  }
  header .all_menu .all_menu_list > ul:first-child .on > a {
    color: #fff;
    font-weight: 600;
  }
  header .all_menu .all_menu_list > ul:first-child .brochure {
    display: block;
    width: clamp(100px, 24.67vw, 185px);
    margin: 0 auto;
    padding: 0;
    border: 1px solid #c8af7f;
    margin-top: clamp(280px, 40vw, 300px);
  }
  header .all_menu .all_menu_list > ul:first-child .brochure a {
    display: block;
    width: 100%;
    font-size: clamp(14px, 3.2vw, 24px);
    font-weight: 300;
    color: #c8af7f;
    text-align: center;
    padding: clamp(8px, 1.73vw, 13px) 0;
  }
  header .all_menu .all_menu_list > ul:first-child .brochure:hover a {
    font-weight: 300;
    color: #c8af7f;
  }
  header .all_menu .all_menu_list .m_sub_menu {
    display: block;
    max-width: 100%;
    width: calc(100% - clamp(140px, 35.2vw, 264px));
  }
  header .all_menu .all_menu_list .m_sub_menu > li {
    width: 100%;
    opacity: 1;
    display: none;
  }
  header .all_menu .all_menu_list .m_sub_menu > li ul {
    padding-top: 0;
  }
  header .all_menu .all_menu_list .m_sub_menu > li ul li {
    border-bottom: 1px solid #dedede;
    padding: clamp(25px, 7.07vw, 53px) 0 clamp(25px, 7.07vw, 53px) clamp(25px, 6.67vw, 50px);
    line-height: 1;
  }
  header .all_menu .all_menu_list .m_sub_menu > li ul li a {
    font-size: clamp(16px, 3.47vw, 26px);
    color: #444;
    transition: all 0.3s;
    display: block;
  }
  header .all_menu .all_menu_list .m_sub_menu > li ul li a:hover {
    color: var(--color-point);
  }
  header .all_menu .all_menu_list .m_sub_menu .on {
    display: block;
  }
  header .all_menu .n_k_search {
    display: none;
  }
  header .all_menu_footer {
    display: none;
  }
	header .all_menu.open {
		overflow:auto;
	}
  .header_scroll {
    height: clamp(60px, 13.33vw, 100px);
  }
  .header_scroll .header_logo {
    transform: scale(1);
  }
	header.has_top_pop .all_menu {
		height:100vh;
	}
}
@media (max-width: 360px) {
  header .header_right .sitemap_wrapper::after {
    right: 32%;
  }
}
/* --------- 푸터 ---------- */
footer {
  background-color: #1a1a1a;
}

.footer_top > ul > li {
  width: clamp(90px, 9.9vw, 190px);
}
.footer_top > ul > li p {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 700;
  color: #fff;
}
.footer_top > ul > li ul li {
  font-size: clamp(10px, 2vw, 15px);
  color: #999;
  line-height: 2.4;
}
.footer_top > ul > li ul li a {
  transition: color 0.3s ease;
}
.footer_top > ul > li ul li a:hover {
  color: #fff;
}
.footer_top .familySite_wrapper {
  flex-direction: column;
}
.footer_top .familySite_wrapper .brochure_link {
  background-color: #0c2542;
  color: #c8af7f;
  width: clamp(90px, 6.77vw, 130px);
  height: clamp(150px, 10.42vw, 200px);
  margin-top: 30px;
}
.footer_top .familySite_wrapper .brochure_link a {
  flex-direction: column;
}
.footer_top .familySite_wrapper .brochure_link a p {
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(200, 175, 127, 0.3);
}
.footer_top .familySite_wrapper .brochure_link a span {
  font-size: clamp(10px, 0.63vw, 12px);
}
.footer_top .familySite_wrapper .brochure_link a span::after {
  content: "";
  width: 7px;
  height: 8px;
  background-image: url(../img/brochure_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 5px;
}
.footer_top #familySite {
  background: transparent url(../img/down_arrow.svg) right 20px center no-repeat;
  color: #fff;
  font-weight: 700;
  width: 200px;
  padding: 13.5px 20px;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
}
.footer_top #familySite option {
  background-color: #303030;
}
.footer_top #familySite:hover {
  background-color: #303030;
}

.footer_bottom .bottom_t {
  border-bottom: 1px solid #333;
}
.footer_bottom .footer_info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #999;
}
.footer_bottom .footer_info div {
  line-height: 1.7;
}
.footer_bottom .footer_info span {
  font-size: 15px;
  color: #999;
  font-weight: 300;
  margin-right: 20px;
}
.footer_bottom .sns a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #252525;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.footer_bottom .sns .blog {
  background-image: url(../img/blog_icon.svg);
}
.footer_bottom .sns .blog:hover {
  background-image: url(../img/blog_icon_w.svg);
}
.footer_bottom .sns .instagram {
  background-image: url(../img/insta_icon.svg);
  margin: 0 16px;
}
.footer_bottom .sns .instagram:hover {
  background-image: url(../img/insta_icon_w.svg);
}
.footer_bottom .sns .youtube {
  background-image: url(../img/youtube_icon.svg);
}
.footer_bottom .sns .youtube:hover {
  background-image: url(../img/youtube_icon_w.svg);
}
.footer_bottom .link a {
  font-size: 15px;
  color: #999;
  font-weight: 700;
  background-color: transparent;
  border: none;
}
.footer_bottom .link a:not(:last-child) {
  margin-right: 20px;
}
.footer_bottom .copyright {
  font-size: 15px;
  color: #999;
}

/* --------- 퀵버튼 ---------- */
.quick_btn_wrapper {
  position: fixed;
  bottom: clamp(94px, 12.5vw, 240px);
  right: clamp(15px, 1.56vw, 30px);
  width: clamp(60px, 4.17vw, 80px);
  z-index: 99;
  transition: all 0.2s;
  height: fit-content;
}
.quick_btn_wrapper .quick_btn {
  background-color: #162029;
  flex-direction: column;
  border-radius: 200px;
  padding: clamp(18px, 1.3vw, 25px) 0;
}
.quick_btn_wrapper .quick_btn a {
  flex-direction: column;
  width: fit-content;
}
.quick_btn_wrapper .quick_btn a span {
  width: clamp(35px, 2.19vw, 42px);
  height: clamp(35px, 2.19vw, 42px);
  border-radius: 50%;
  background-color: #e3e6ee;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s;
}
.quick_btn_wrapper .quick_btn a p {
  font-size: clamp(10px, 0.63vw, 12px);
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
}
.quick_btn_wrapper .quick_btn a:not(:last-child) {
  margin-bottom: clamp(15px, 1.3vw, 25px);
}
.quick_btn_wrapper .quick_btn a:hover span {
  background-color: #78819f;
}
.quick_btn_wrapper .quick_btn .call span {
  background-image: url(../img/call_icon.svg);
}
.quick_btn_wrapper .quick_btn .call:hover span {
  background-image: url(../img/call_icon_w.svg);
}
.quick_btn_wrapper .quick_btn .kakaotalk span {
  background-image: url(../img/kakao_icon.svg);
}
.quick_btn_wrapper .quick_btn .kakaotalk:hover span {
  background-image: url(../img/kakao_icon_w.svg);
}
.quick_btn_wrapper .quick_btn .loca span {
  background-image: url(../img/location_icon.svg);
}
.quick_btn_wrapper .quick_btn .loca:hover span {
  background-image: url(../img/location_icon_w.svg);
}
.quick_btn_wrapper .lawyer_btn {
  width: clamp(60px, 4.17vw, 80px);
  height: clamp(60px, 4.17vw, 80px);
  background: linear-gradient(135deg, #1A49DB 0%, #E860E3 100%);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-top: 20px;
  background-size: 180% 180%;
  animation: gradientMove 10s ease infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.quick_btn_wrapper .to_top_btn {
  width: clamp(60px, 4.17vw, 80px);
  height: clamp(60px, 4.17vw, 80px);
  border-radius: 50%;
  background-image: url(../img/to_top_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #6d7692;
  background-size: clamp(22px, 1.56vw, 30px) clamp(24px, 1.67vw, 32px);
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.quick_btn_wrapper .on {
  opacity: 1;
  visibility: visible;
}

.btm {
  bottom: clamp(70px, 7.29vw, 140px);
}

.m_quick_menu {
  display: none;
}

/* --------- 빠른상담 ---------- */
.fix_bottom_consult {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 9998;
  background-color: var(--color-point);
  display: none;
}
.fix_bottom_consult .fix_wrap {
  padding: 13.5px 0;
  width: 95%;
}
.fix_bottom_consult .fix_wrap::after {
  content: "";
  width: clamp(450px, 54.17vw, 1040px);
  height: 100%;
  background-color: #292b2f;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
}
.fix_bottom_consult .fix_wrap .left .consult_link a {
  font-size: clamp(16px, 1.46vw, 28px);
  color: #fff;
  font-weight: 700;
  width: fit-content;
}
.fix_bottom_consult .fix_wrap .left .consult_link .call {
  flex-direction: column;
  position: relative;
  padding-right: clamp(20px, 2.6vw, 50px);
}
.fix_bottom_consult .fix_wrap .left .consult_link .call::after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: #d9d9d9;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.fix_bottom_consult .fix_wrap .left .consult_link .call span {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 300;
}
.fix_bottom_consult .fix_wrap .left .consult_link .call span::before {
  content: "";
  width: clamp(12px, 0.94vw, 18px);
  height: clamp(12px, 0.94vw, 18px);
  background-image: url(../img/call_icon_full.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
}
.fix_bottom_consult .fix_wrap .left .consult_link .kakao {
  margin-left: clamp(20px, 2.6vw, 50px);
}
.fix_bottom_consult .fix_wrap .left .consult_link .kakao::before {
  content: "";
  width: clamp(30px, 2.4vw, 46px);
  height: clamp(27px, 2.19vw, 42px);
  background-image: url(../img/kakao_icon_full.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
}
.fix_bottom_consult .fix_wrap .right #fixConsult input {
  font-size: clamp(14px, 0.89vw, 17px);
  padding: clamp(10px, 0.78vw, 15px);
  border-radius: 6px;
  border: none;
}
.fix_bottom_consult .fix_wrap .right #fixConsult input::placeholder {
  color: #999;
}
.fix_bottom_consult .fix_wrap .right #fixConsult #f_work {
  width: clamp(80px, 7.03vw, 135px);
  margin-right: 10px;
}
.fix_bottom_consult .fix_wrap .right #fixConsult #f_phone {
  width: clamp(120px, 11.46vw, 220px);
  margin-right: clamp(15px, 1.56vw, 30px);
}
.fix_bottom_consult .fix_wrap .right #fixConsult input[type=checkbox] + span {
  width: 24px;
  height: 24px;
  background: none;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 6px; 
}
.fix_bottom_consult .fix_wrap .right #fixConsult input[type=checkbox]:checked + span {
  background-image: url(../img/check_icon_b.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 15px;
}
.fix_bottom_consult .fix_wrap .right #fixConsult label {
  color: #fff;
  font-weight: 300;
  margin-right: 10px;
  font-size: 14px;
}
.fix_bottom_consult .fix_wrap .right #fixConsult .consult_btn {
  font-size: clamp(16px, 1.04vw, 20px);
  color: #fff;
  background-color: var(--color-point);
  width: clamp(80px, 6.25vw, 120px);
  text-align: center;
  padding: 13px 0;
  border-radius: 6px;
  margin-left: clamp(20px, 3.13vw, 60px);
}
.fix_bottom_consult .fix_wrap .center_lawyer {
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translateX(-45%);
  max-width: 350px;
  overflow: hidden;
}
.fix_bottom_consult .fix_wrap .center_lawyer .consult_lawyer_swiper {
  position: relative;
}
.fix_bottom_consult .fix_wrap .center_lawyer .consult_lawyer_swiper .swiper-slide .txt {
  color: #fff;
  text-align: center;
  margin-bottom: 7px;
}
.fix_bottom_consult .fix_wrap .center_lawyer .consult_lawyer_swiper .swiper-slide .txt p {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(20px, 1.56vw, 24px);
  font-weight: 600;
}
.fix_bottom_consult .fix_wrap .center_lawyer .consult_lawyer_swiper .swiper-slide .txt span {
  font-size: clamp(14px, 1.04vw, 20px);
  white-space: nowrap;
}
.fix_bottom_consult .fix_wrap .center_lawyer .consult_lawyer_swiper .swiper-slide .img_wrapper {
  width: clamp(156px, 12.29vw, 236px);
  height: clamp(103px, 7.97vw, 153px);
}

/* --------- 모달 ---------- */
#inputModal .btn-close,
#footerModal .btn-close {
  width: 50px;
  height: 50px;
}
#inputModal .modal-body,
#footerModal .modal-body {
  padding: clamp(20px, 1.56vw, 30px);
  overflow-y: auto;
  max-height: 600px;
}
#inputModal .modal-title,
#footerModal .modal-title {
  /*
	font-size: clamp(16px, 1.04vw, 20px);
	padding-bottom: 20px;
	*/
  font-size: clamp(18px, 1.25vw, 24px);
	padding-bottom: 40px;
  text-align: center;
	font-weight:500;
  
}
#inputModal p,
#footerModal p {
  /*font-size: clamp(14px, 0.94vw, 18px);*/
  font-size: clamp(14px, 0.78vw, 15px);
  line-height: 1.5;
  overflow-wrap: break-word;
}

@media (max-width: 1020px) {
  .fix_bottom_consult .fix_wrap .center_lawyer {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer_top {
    justify-content: center;
  }
  .footer_top > ul {
    display: none;
  }
  .footer_top .familySite_wrapper {
    width: 100%;
  }
  .footer_top .familySite_wrapper .brochure_link {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #c8af7f;
  }
  .footer_top .familySite_wrapper .brochure_link a {
    flex-direction: row;
    padding: 30px;
    width: 100%;
    justify-content: space-between;
  }
  .footer_top .familySite_wrapper .brochure_link a::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/up_arrow_y.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
  }
  .footer_top .familySite_wrapper .brochure_link a .img_wrapper {
    display: none;
  }
  .footer_top .familySite_wrapper .brochure_link a p {
    border-bottom: none;
    font-size: 26px;
    padding: 0;
    font-weight: 500;
  }
  .footer_top .familySite_wrapper .brochure_link a p br {
    display: none;
  }
  .footer_top .familySite_wrapper .brochure_link a span {
    display: none;
  }
  .footer_top #familySite {
    width: 100%;
    font-size: 26px;
    background: transparent url(../img/down_arrow_w.svg) right 30px center no-repeat;
    background-size: 18px 12px;
    border-color: #555;
    padding: 30px;
    border-radius: 4px;
  }
  .footer_bottom {
    margin: 40px auto 0;
  }
  .footer_bottom .bottom_t {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_bottom .bottom_t .footer_info {
    order: 2;
    margin-bottom: 20px;
  }
  .footer_bottom .bottom_t .footer_info h3 {
    font-size: 20px;
  }
  .footer_bottom .bottom_t .footer_info div {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
  .footer_bottom .bottom_t .footer_info div br {
    display: none;
  }
  .footer_bottom .bottom_t .footer_info span {
    font-size: 18px;
  }
  .footer_bottom .bottom_t .sns {
    order: 1;
    margin-bottom: 50px;
  }
  .footer_bottom .bottom_t .sns a {
    width: 70px;
    height: 70px;
  }
  .footer_bottom .bottom_b {
    flex-direction: column;
    margin-top: 20px;
  }
  .footer_bottom .bottom_b .link {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .footer_bottom .copyright {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .footer_top #familySite {
    font-size: clamp(15px, 4vw, 30px);
    background: transparent url(../img/down_arrow_w.svg) right clamp(20px, 6.67vw, 50px) center no-repeat;
    background-size: clamp(16px, 3.2vw, 24px) clamp(10px, 1.87vw, 14px);
    padding: clamp(20px, 5.47vw, 41px) clamp(20px, 6.67vw, 50px);
  }
  .footer_top .familySite_wrapper .brochure_link {
    margin-top: clamp(25px, 6.67vw, 50px);
  }
  .footer_top .familySite_wrapper .brochure_link a {
    padding: clamp(20px, 5.47vw, 41px) clamp(20px, 6.67vw, 50px);
  }
  .footer_top .familySite_wrapper .brochure_link a::after {
    width: clamp(14px, 2.93vw, 22px);
    height: clamp(14px, 2.93vw, 22px);
  }
  .footer_top .familySite_wrapper .brochure_link a p {
    font-size: clamp(15px, 4vw, 30px);
    line-height: 1.25;
  }
  .footer_bottom {
    margin-top: 0;
  }
  .footer_bottom .bottom_t .sns {
    margin-bottom: 0;
  }
  .footer_bottom .bottom_t .sns a {
    width: clamp(50px, 13.33vw, 100px);
    height: clamp(50px, 13.33vw, 100px);
  }
  .footer_bottom .bottom_t .sns .blog {
    background-size: clamp(14px, 3.6vw, 27px) clamp(24px, 4.8vw, 36px);
  }
  .footer_bottom .bottom_t .sns .instagram {
    background-size: clamp(22px, 5.33vw, 40px);
    margin: 0 clamp(10px, 2.67vw, 20px);
  }
  .footer_bottom .bottom_t .sns .youtube {
    background-size: clamp(22px, 5.73vw, 43px) clamp(22px, 4vw, 30px);
  }
  .footer_bottom .bottom_t .footer_info {
    margin-bottom: 0;
  }
  .footer_bottom .bottom_t .footer_info h3 {
    font-size: clamp(18px, 4vw, 30px);
  }
  .footer_bottom .bottom_t .footer_info div {
    margin-top: 0;
  }
  .footer_bottom .bottom_t .footer_info div span {
    font-size: clamp(12px, 3.47vw, 26px);
    margin-right: clamp(10px, 2.67vw, 20px);
  }
  .footer_bottom .bottom_b {
    margin-top: 0;
  }
  .footer_bottom .bottom_b .link {
    font-size: clamp(14px, 3.47vw, 26px);
    margin-bottom: 0;
  }
  footer_bottom .bottom_b .link a{
	font-size: clamp(12px, 3.2vw, 24px);
  }
  .footer_bottom .bottom_b .link a:not(:last-child) {
    margin-right: clamp(10px, 2.67vw, 20px);
  }
  .footer_bottom .copyright {
    font-size: clamp(12px, 3.2vw, 24px);
  }
  .quick_btn_wrapper {
    width: clamp(60px, 16vw, 120px);
    bottom: clamp(65px, 18.67vw, 140px);
    right: clamp(10px, 4vw, 30px);
  }
  .quick_btn_wrapper .quick_btn {
    display: none;
  }
  .quick_btn_wrapper .lawyer_btn,
  .quick_btn_wrapper .to_top_btn {
    width: clamp(60px, 16vw, 120px);
    height: clamp(60px, 16vw, 120px);
  }
  .quick_btn_wrapper .lawyer_btn {
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.2;
    font-weight: 500;
  }
  .quick_btn_wrapper .to_top_btn {
    background-size: clamp(28px, 5.6vw, 42px) clamp(31px, 6vw, 45px);
    margin-top: clamp(10px, 2.67vw, 20px);
    background-size: clamp(21px, 5.6vw, 42px) clamp(23px, 6vw, 45px);
  }
  .m_btm {
    bottom: 0;
  }
  .m_quick_menu {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
  }
  .m_quick_menu ul li {
    width: 25%;
    position: relative;
  }
  .m_quick_menu ul li a {
    font-size: clamp(14px, 3.47vw, 26px);
    background-color: var(--color-point);
    color: #fff;
    padding: clamp(16px, 5.07vw, 38px) 0;
  }
  .m_quick_menu ul li:not(:last-child)::after {
    content: "";
    width: 2px;
    height: clamp(13px, 3.47vw, 26px);
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .fix_bottom_consult {
    display: none !important;
  }
}
@media (max-width: 576px) {
  #inputModal,
  #footerModal {
    overflow: hidden;
  }
  #inputModal .modal-dialog,
  #footerModal .modal-dialog {
    width: 90%;
    margin: 1.75rem auto;
  }
}