@charset "UTF-8";
body {
  overflow-x: hidden;
}

/* ------------------- 공통 -------------------- */
.sec_tit h2 {
  font-size: clamp(28px, 2.60vw, 50px);
  font-weight: 700;
  color: #222;
}
.sec_tit h2 span {
  font-size: clamp(65px, 5.21vw, 100px);
  color: var(--color-point);
  margin-right: 15px;
}
.sec_tit p {
  font-size: clamp(20px, 1.25vw, 24px);
  color: #444;
}

/*.more_btn {
  width: clamp(180px, 12.34vw, 237px);
  border: 1px solid #222;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  border-radius: 200px;
  padding: clamp(15px, 1.04vw, 20px) 0;
  transition: 0.5s;
}
.more_btn::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../img/lawyer_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 20px;
  transition: 0.5s;
}
.more_btn:hover {
  background: transparent;
  box-shadow: inset 237px 0 0 0 var(--color-point);
  border: 1px solid transparent;
  color: #fff;
}
.more_btn:hover::after {
  filter: invert(1);
}*/

.m_more_btn {
  display: none;
}

/* ------------------- 섹션1 -------------------- */
#sec1 {
  height: 100vh;
  position: relative;
}
#sec1::after {
  content: "";
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

#sec1 .main_visual_swiper {
  height: 100%;
  position: relative;
}
#sec1 .main_visual_swiper .swiper-container {
  height: 100%;
  overflow: hidden;
}
#sec1 .main_visual_swiper .swiper-wrapper {
  height: 100%;
}
#sec1 .main_visual_swiper .swiper-slide {
  position: relative;
}
#sec1 .main_visual_swiper .swiper-slide .slide_img {
  height: 100%;
}
#sec1 .main_visual_swiper .swiper-slide .slide_img img {
  height: 100%;
  object-fit: cover;
}
#sec1 .main_visual_swiper .swiper-slide .slide_img:after {
	content:"";
	display:block; 
	position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#sec1 .main_visual_swiper .swiper-slide img {
  transition: transform 6s ease;
  transform: scale(1);
}

#sec1 .main_visual_swiper .swiper-slide-active img {
  transform: scale(1.08); /* 살짝 확대 */
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt {
  z-index : 1; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt h2, .main_visual_swiper .swiper-slide .slide_txt h3 {
  font-size: clamp(48px, 3.65vw, 70px);
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt h2 span, .main_visual_swiper .swiper-slide .slide_txt h3 span {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1.2s 0.2s, transform 1.2s 0.2s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt h3 span{
	transition: opacity 1.2s 0.4s, transform 1.2s 0.4s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .line span {
	width: 0;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	transition: width 2s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt {
	display: none;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .txt p, #sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt p {
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 300;
	color: #fff;
	line-height: 1.5;
	overflow: hidden;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .txt p span, #sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt p span {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1.2s 1.2s, transform 1.2s 1.2s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .txt p:last-child span {
  transition: opacity 1.2s 1.4s, transform 1.2s 1.4s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt p:nth-child(2) span {
	transition: opacity 1.2s 1.4s, transform 1.2s 1.4s;
}
#sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt p:last-child span {
	transition: opacity 1.2s 1.6s, transform 1.2s 1.6s;
}

#sec1 .main_visual_swiper .swiper-slide-active .slide_txt h2 span, .main_visual_swiper .swiper-slide-active .slide_txt h3 span {
	opacity: 1;
	transform: translateY(0);
}
#sec1 .main_visual_swiper .swiper-slide-active .slide_txt .line span {
	width: 100%;
}
#sec1 .main_visual_swiper .swiper-slide-active .slide_txt .txt p span, #sec1 .main_visual_swiper .swiper-slide-active .slide_txt .m_txt p span {
	opacity: 1;
	transform: translateY(0);
}
#sec1 .main_visual_swiper .swiper-navigation {
	width: clamp(70px, 3.65vw, 70px);
}
#sec1 .main_visual_swiper .swiper-navigation div {
	position: relative;
	width: clamp(14px, 0.73vw, 14px);
	height: clamp(26px, 1.35vw, 26px);
	background-image: url(../img/left_arrow_w.svg);
	background-size: cover;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	right: 0;
}
#sec1 .main_visual_swiper .swiper-navigation div::after {
	display: none;
}
#sec1 .main_visual_swiper .swiper-navigation .swiper-button-next {
	transform: rotate(180deg);
}
#sec1 .main_visual_swiper .swiper-pagination {
	bottom: clamp(70px, 3.65vw, 70px);
}
#sec1 .main_visual_swiper .swiper-pagination .swiper-pagination-bullet {
	border: 1px solid #fff;
	background-color: transparent;
	opacity: 1;
	width: 12px;
	height: 12px;
	margin: 0 8px;
	transition: 0.3s;
}
#sec1 .main_visual_swiper .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #fff;
	width: 24px;
	border-radius: 20px;
}
#sec1 .scroll_down_txt {
	position: absolute;
	bottom: clamp(70px, 3.65vw, 70px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 11;
}
#sec1 .scroll_down_txt::after {
	content: "";
	width: 14px;
	height: 15px;
	background-image: url(../img/banner_down_arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: clamp(20px, 1.04vw, 20px);
	animation: 1600ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite normal none running bounce;
}
#sec1 .scroll_down_txt span {
	font-size: clamp(16px, 0.83vw, 16px);
	font-weight: 500;
	color: #fff;
}
#sec1 .swiper_area {
  position: absolute;
  bottom: clamp(50px, 2.6vw, 50px);
  left: 50%;
  max-width: 1640px;
  width: 96%;
  transform: translateX(-50%);
  z-index: 10;
}
#sec1 .swiper_area .swiper-container {
  max-width: 1600px;
  width: 98%;
  margin: 0 auto;
  overflow: hidden;
}
#sec1 .swiper_area .swiper-slide a {
  background-color: #fff;
  position: relative;
  padding: clamp(15px, 1.04vw, 20px) clamp(20px, 1.56vw, 30px);
  border-radius: 10px;
  min-height:146px; 
  overflow: hidden;
}
#sec1 .swiper_area .swiper-slide a::after {
  content: "";
  width: 55%;
  height: 100%;
  background-color: var(--color-point);
	opacity:0.4;
  display: block;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 0;
  clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0% 100%);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper {
  position: relative;
  z-index: 10;
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt {
  font-size: clamp(13px, 0.78vw, 15px);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dt span {
  font-size: clamp(20px, 1.15vw, 22px);
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dd {
  font-size: clamp(12px, 0.73vw, 14px);
  color: #444;
  line-height: 1.5;
}
#sec1 .swiper_area .swiper-slide a .txt_wrapper dl dd li {
  max-width: 80%; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sec1 .swiper_area .swiper-slide a .img_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
#sec1 .swiper_area .swiper-slide a .img_wrapper img {
  height: 100%;
}
#sec1 .swiper_area .swiper-button-prev {
  width: clamp(40px, 2.08vw, 40px);
  height: clamp(40px, 2.08vw, 40px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#sec1 .swiper_area .swiper-button-prev::after {
  content: "";
  width: 6px;
  height: 12px;
  background-image: url(../img/right_arrow_w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transform: rotate(180deg);
}
#sec1 .swiper_area .swiper-button-next {
  width: clamp(40px, 2.08vw, 40px);
  height: clamp(40px, 2.08vw, 40px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#sec1 .swiper_area .swiper-button-next::after {
  content: "";
  width: 6px;
  height: 12px;
  background-image: url(../img/right_arrow_w.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec1 .swiper_area .active {
  opacity: 1;
  visibility: visible;
}

/* ------------------- 섹션2 -------------------- */
#sec2 {
  background-image: url(../img/sec2_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sec2 .success_swiper {
	position: relative;
}
#sec2 .success_swiper .swiper-slide {
  background-color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  transform: translateY(0);
}
#sec2 .success_swiper .swiper-slide a {
  padding: clamp(25px, 2.60vw, 50px);
}
#sec2 .success_swiper .swiper-slide a dl {
	min-height: clamp(165px, 12.08vw, 232px);
}
#sec2 .success_swiper .swiper-slide a dl > span {
  font-size: clamp(14px, 0.94vw, 18px);
  color: var(--color-point);
  font-weight: 700;
  border: 1px solid var(--color-point);
  width: fit-content;
  padding: clamp(6px, 0.63vw, 12px) clamp(9px, 0.94vw, 18px);
  border-radius: 200px;
}
#sec2 .success_swiper .swiper-slide a dl dt {
  font-size: clamp(22px, 1.51vw, 29px);
  font-weight: 700;
  word-break: break-all;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
#sec2 .success_swiper .swiper-slide a dl dd {
  font-size: clamp(16px, 1.04vw, 20px);
  color: #444;
  word-break: break-all;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  color: #666;
}
#sec2 .success_swiper .swiper-slide a ul li:not(:last-child) {
  margin-right: clamp(10px, 1.04vw, 20px);
}
#sec2 .success_swiper .swiper-slide a ul li > p {
  font-size: clamp(13px, 0.83vw, 16px);
  color: #444;
}
#sec2 .success_swiper .swiper-slide a .img_wrapper {
  width: clamp(55px, 3.65vw, 70px);
  height: clamp(55px, 3.65vw, 70px);
  overflow: hidden;
  background-color: #e4e7ef;
  border-radius: 50%;
}
#sec2 .success_swiper .swiper-slide a .img_wrapper img {
  transform: scale(1.18) translateY(10px);
}
#sec2 .success_swiper .swiper-slide:hover {
  transform: translateY(calc(clamp(30px, 1.56vw, 30px) * -1));
  background-color: var(--color-point);
}
#sec2 .success_swiper .swiper-slide:hover a dl > span {
	color: #fff;
	border-color: #fff;
}
#sec2 .success_swiper .swiper-slide:hover a dl dt, #sec2 .success_swiper .swiper-slide:hover a dl dd, #sec2 .success_swiper .swiper-slide:hover a ul li > p {
	color: #fff;
}
#sec2 .success_swiper .swiper-scrollbar {
	width: 100%;
	left: 0;
	background-color: #e5e5e5;
}
#sec2 .success_swiper .swiper-scrollbar .swiper-scrollbar-drag {
	background-color: var(--color-point);
}

/* ------------------- 섹션3 -------------------- */
#sec3 {
	overflow: hidden;
	padding-right: 15px;
}
#sec3 .lawyer_swiper .swiper-container {
	position: relative;
	padding-bottom: clamp(60px, 3.85vw, 74px);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
  background-color: #f0f0f0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: clamp(220px, 18.75vw, 360px);
  position: relative;
  transition: background-color 0.3s;
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper > img {
	width: clamp(200px, 18.23vw, 350px);
    position: absolute;
	bottom: 0;
	right: calc(clamp(20px, 1.82vw, 35px) * -1);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .s_mark {
	display: inline-block;
	position: absolute;
	bottom: clamp(15px, 1.04vw, 20px);
	left: clamp(15px, 1.04vw, 20px);
	width: clamp(52px, 4.43vw, 85px);
	height: clamp(52px, 4.43vw, 85px);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .s_mark img {
	height: 100%;
	object-fit: cover;
	filter: invert(85%) sepia(80%) saturate(180%) hue-rotate(182deg) brightness(61%) contrast(148%);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .s_mark .w_icon {
	display: none;
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .pro {
	width: clamp(50px, 4.32vw, 83px);
	height: clamp(45px, 4.06vw, 78px);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .sol {
	width: clamp(69px, 5.31vw, 102px);
	height: clamp(53px, 4.27vw, 82px);
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper {
  padding: clamp(25px, 2.34vw, 45px) clamp(20px, 2.08vw, 40px);
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
	min-height:clamp(192px, 14.11vw, 271px);
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl h3 {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl h3 span {
  font-size: clamp(24px, 1.56vw, 30px);
  margin-right: 10px;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.5;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt p,
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt li {
	width:100%;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dd {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #666;
  word-break: break-all;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#sec3 .lawyer_swiper .swiper-slide:hover a .img_wrapper {
	background-color: var(--color-point);
}
#sec3 .lawyer_swiper .swiper-slide:hover a .img_wrapper .s_mark .b_icon {
	display: none;
}
#sec3 .lawyer_swiper .swiper-slide:hover a .img_wrapper .s_mark .w_icon {
	display: inline;
}
#sec3 .lawyer_swiper .swiper-slide:hover a .img_wrapper .s_mark img {
	filter: brightness(0) saturate(100%)   
        invert(71%) sepia(53%)            
        brightness(136%) contrast(23%);  
}
#sec3 .lawyer_swiper .swiper-pagination {
	bottom: 0;
}
#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet {
	width: clamp(10px, 0.73vw, 14px);
	height: clamp(10px, 0.73vw, 14px);
	background-color: #ccc;
	opacity: 1;
	transition: 0.3s;
}
#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet-active {
	width: clamp(22px, 1.88vw, 36px);
	background-color: var(--color-point);
	border-radius: 10px;
}

/* ------------------- 섹션4 -------------------- */
#sec4 {
	background-color: #f7f7f7;
  overflow: hidden;
}
#sec4 .sec4_cont ul {
	height: clamp(365px, 24.22vw, 465px);
}
#sec4 .sec4_cont li {
	height: 100%;
	width: 14%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
	transition: width 0.4s;
}
#sec4 .sec4_cont li:not(:last-child) {
	margin-right: clamp(14px, 1.25vw, 24px);
}
#sec4 .sec4_cont li::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background-color: rgba(0, 0, 0, 0.7);
	transition: background-color 0.4s;
}
#sec4 .sec4_cont li .info {
	position: relative;
	z-index: 10;
	color: #fff;
	width: fit-content;
	padding: 0 clamp(10px, 1.04vw, 20px);
}
#sec4 .sec4_cont li .tit {
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 700;
	color: #fff;
	transition: all 0.4s ease-out;
}
#sec4 .sec4_cont li .txt {
	font-size: clamp(16px, 1.04vw, 20px);
	line-height: 1.5;
	font-weight: 300;
	display: none;
}
#sec4 .sec4_cont li .more_btn {
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 500;
	display: none;
}
#sec4 .sec4_cont li .more_btn::after {
	content: "";
	width: 16px;
	height: 12px;
	background-image: url(../img/right_arrow2_w.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	margin-left: 12px;
	animation: link_arrow 1s infinite;
}
#sec4 .sec4_cont .item1 {
	background-image: url(../img/sec4_img1.jpg);
}
#sec4 .sec4_cont .item2 {
	background-image: url(../img/sec4_img2.jpg);
}
#sec4 .sec4_cont .item3 {
	background-image: url(../img/sec4_img3.jpg);
}
#sec4 .sec4_cont .item4 {
	background-image: url(../img/sec4_img4.jpg);
}
#sec4 .sec4_cont .item5 {
	background-image: url(../img/sec4_img5.jpg);
}
#sec4 .sec4_cont .hover {
	width: calc(100% - (56% + clamp(56px, 5.00vw, 96px)));
}
#sec4 .sec4_cont .hover::after {
	background-color: rgba(26, 54, 104, 0.92);
}
#sec4 .sec4_cont .hover .tit {
	font-size: clamp(28px, 2.08vw, 40px);
}
#sec4 .sec4_cont .hover .txt{
	display: block;
}
#sec4 .sec4_cont .hover .more_btn {
	display: flex;
}

/* ------------------- 섹션5 -------------------- */
#sec5 {
	background-image: url(../img/sec5_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
#sec5 .sec_tit h2{
	color: #fff;
}
#sec5 .sec_tit p{
	color: #fff;
}
#sec5 .category li:not(:last-child) {
	margin-right: clamp(8px, 0.83vw, 16px);
}
#sec5 .category li a {
	font-size: clamp(15px, 0.99vw, 19px);
	color: #ddd;
	font-weight: 300;
	border: 1px solid #444;
	border-radius: 200px;
	padding: clamp(6px, 0.63vw, 12px) clamp(12px, 1.25vw, 24px);
	transition: 0.4s;
}
#sec5 .category .on a {
	background-color: var(--color-point);
	border-color: var(--color-point);
	font-weight: 700;
	color: #fff;
}
#sec5 .category li:hover a {
	background-color: var(--color-point);
	border-color: var(--color-point);
	font-weight: 700;
	color: #fff;
}
#sec5 .sec5_cont .swiper-container {
}
#sec5 .sec5_cont .swiper-wrapper {
	align-items: center;
	height: clamp(415px, 28.39vw, 545px);
}
#sec5 .sec5_cont .swiper-slide {
	width: clamp(350px, 20.83vw, 400px);
	transition: width 0.3s ease;
	/*margin:0 clamp(20px, 1.04vw, 20px);*/
}
#sec5 .sec5_cont .swiper-slide .youtube_wrapper .youtube_area {
	height: clamp(225px, 11.72vw, 225px);
	margin-top: clamp(50px, 5.21vw, 100px);
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	transition: 0.4s;
}
#sec5 .sec5_cont .swiper-slide .youtube_wrapper .youtube_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 10px;
}
#sec5 .sec5_cont .swiper-slide .txt_wrapper {
	display: none;
}
#sec5 .sec5_cont .swiper-slide .txt_wrapper h3 {
	font-size: clamp(22px, 1.35vw, 26px);
	font-weight: 700;
	color: #fff;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
#sec5 .sec5_cont .swiper-slide .txt_wrapper p {
	font-size: clamp(16px, 1.04vw, 20px);
	color: #fff;
}
#sec5 .sec5_cont .swiper-slide .txt_wrapper p span {
	font-weight: 700;
	color: #B7A078;
	margin-right: 10px;
}
#sec5 .sec5_cont .swiper-slide-active {
	width: clamp(610px, 41.67vw, 800px);
}
#sec5 .sec5_cont .swiper-slide-active .youtube_wrapper .youtube_area {
	height: clamp(340px, 22.40vw, 430px);
	margin-top: 0;
}
#sec5 .sec5_cont .swiper-slide-active .txt_wrapper {
	display: block;
}
#sec5 .sec5_cont .swiper-control {
	width: clamp(610px, 41.67vw, 800px);
	margin: 0 auto;
}
#sec5 .sec5_cont .swiper-control div {
	position: static;
}
#sec5 .sec5_cont .swiper-control .swiper-scrollbar {
	display: none;
}
#sec5 .sec5_cont .swiper-control .swiper-button-prev, #sec5 .sec5_cont .swiper-control .swiper-button-next {
	width: 16px;
	height: 12px;
	background-image: url(../img/right_arrow2_w.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 0;
}
#sec5 .sec5_cont .swiper-control .swiper-button-prev {
	transform: rotate(180deg);
}
#sec5 .sec5_cont .swiper-control .swiper-button-prev::after, #sec5 .sec5_cont .swiper-control .swiper-button-next::after {
	display: none;
}
#sec5 .sec5_cont .swiper-control .swiper-fraction {
	width: fit-content;
	color: #888;
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: 600;
	margin: 0 clamp(15px, 1.04vw, 20px);
}
#sec5 .sec5_cont .swiper-control .swiper-fraction .current {
	font-size: clamp(24px, 1.46vw, 28px);
	color: #fff;
}

/* ------------------- 섹션6 -------------------- */
#sec6 .sec6_cont .left {
  width: clamp(450px, 39.06vw, 750px);
}
#sec6 .sec6_cont .left .left_img {
	height: clamp(325px, 28.65vw, 550px);
}
#sec6 .sec6_cont .left .left_img img {
	height: 100%;
	object-fit: cover;
}
#sec6 .sec6_cont .left .left_txt p {
	font-size: clamp(16px, 1.04vw, 20px);
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec6 .sec6_cont .left .left_txt p span {
	color: var(--color-point);
	font-weight: 700;
	margin-right: 10px;
}
#sec6 .sec6_cont .left .left_txt h3 {
	font-size: clamp(20px, 1.56vw, 30px);
	font-weight: 700;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec6 .sec6_cont .right {
	width: calc(100% - clamp(480px, 42.19vw, 810px));
}
#sec6 .sec6_cont .right ul li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}
#sec6 .sec6_cont .right .right_img {
	width: clamp(130px, 12.50vw, 240px);
}
#sec6 .sec6_cont .right .right_txt {
	width: calc(100% - clamp(145px, 14.06vw, 270px));
}
#sec6 .sec6_cont .right .right_txt dl > p {
	font-size: clamp(14px, 0.94vw, 18px);
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec6 .sec6_cont .right .right_txt dl > p span {
	font-weight: 700;
	color: var(--color-point);
	margin-right: 10px;
}
#sec6 .sec6_cont .right .right_txt dl dt {
	font-size: clamp(16px, 1.15vw, 22px);
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec6 .sec6_cont .right .right_txt dl dd {
	font-size: clamp(14px, 0.94vw, 18px);
	word-break: break-all;
	-webkit-line-clamp: 2;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.5;
}

/* ------------------- 섹션7 -------------------- */
#sec7 {
  background-image: url(../img/sec7_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sec7 .container {
  overflow: hidden;
}
#sec7 .sec7_cont .news_swiper .swiper-slide {
	position: relative;
}
#sec7 .sec7_cont .news_swiper .img_wrapper {
	height: clamp(260px, 16.67vw, 320px);
	overflow: hidden;
}
#sec7 .sec7_cont .news_swiper .img_wrapper img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
#sec7 .sec7_cont .news_swiper .txt_wrapper {
	position: absolute;
	width: calc(100% - clamp(40px, 4.17vw, 80px));
	background-color: #fff;
	padding: clamp(25px, 2.08vw, 40px);
	left: 0;
	top: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	border: 3px solid #fff;
	transition: border 0.3s;
}
#sec7 .sec7_cont .news_swiper .txt_wrapper dl > span{
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 700;
	color: var(--color-point);
}
#sec7 .sec7_cont .news_swiper .txt_wrapper dl dt {
	font-size: clamp(18px, 1.25vw, 24px);
	font-weight: 700;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec7 .sec7_cont .news_swiper .txt_wrapper dl dd {
	font-size: clamp(16px, 1.04vw, 20px);
	word-break: break-all;
	-webkit-line-clamp: 3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.5;
}
#sec7 .sec7_cont .news_swiper .swiper-slide:hover .img_wrapper img{
	transform: scale(1.1);
}
#sec7 .sec7_cont .news_swiper .swiper-slide:hover .txt_wrapper {
	border-color: var(--color-point);
}
#sec7 .sec7_cont .news_swiper .swiper-slide:hover .txt_wrapper dt {
	text-decoration: underline;
}
#sec7 .sec7_cont .more_btn {
	margin: clamp(100px, 8.33vw, 160px) auto 0;
	width: clamp(100px, 9.38vw, 180px);
	border: 1px solid var(--color-point);
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 500;
	color: var(--color-point);
	padding: clamp(10px, 0.99vw, 19px) 0;
	position: relative;
}
#sec7 .sec7_cont .more_btn span {
	transition: transform 1s, opacity 1s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
#sec7 .sec7_cont .more_btn::after {
	content: "VIEW MORE";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	color: #fff;
	padding: clamp(10px, 0.99vw, 19px) 0;
	transform: translate3d(0, 25%, 0);
	transition: transform 1s, opacity 1s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
#sec7 .sec7_cont .more_btn:hover {
	background-color: var(--color-point);
}
#sec7 .sec7_cont .more_btn:hover span {
	opacity: 0;
	transform: translate3d(0, -25%, 0);
}
#sec7 .sec7_cont .more_btn:hover::after {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
/* ------------------- 섹션8 -------------------- */
#sec8 {
	background-image: url(../img/sec8_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#sec8 .container {
	overflow: hidden;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a {
	padding: clamp(30px, 2.60vw, 50px);
	background-color: #fff;
	position: relative;
	transition: all 0.4s;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: clamp(27px, 2.03vw, 39px) solid #fff;
	border-left: clamp(21px, 1.72vw, 33px) solid transparent;
	display: block;
	position: absolute;
	right: clamp(125px, 7.03vw, 135px);
	bottom: calc(clamp(25px, 1.67vw, 32px) * -1);
	transition: 0.4s;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a dl span {
	font-size: clamp(14px, 1.04vw, 20px);
	color: #444;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a dl dt {
	font-size: clamp(18px, 1.35vw, 26px);
	word-break: break-all;
	-webkit-line-clamp: 2;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a dl dd {
	font-size: clamp(14px, 1.04vw, 20px);
	color: #444;
	word-break: break-all;
	-webkit-line-clamp: 4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.5;
}
#sec8 .sec8_cont .review_swiper .swiper-slide a .best_icon {
	width: clamp(50px, 3.65vw, 70px);
	background-color: var(--color-point);
	border-radius: 50%;
	position: absolute;
	right: clamp(30px, 1.56vw, 30px);
	bottom: calc(clamp(30px, 1.56vw, 30px) * -1);
	line-height: clamp(50px, 3.65vw, 70px);
	font-size: clamp(12px, 0.94vw, 18px);
	font-weight: 700;
	color: #fff;
	transition: background-color 0.4s;
}
#sec8 .sec8_cont .review_swiper .swiper-slide:hover a {
	background-color: var(--color-point);
}
#sec8 .sec8_cont .review_swiper .swiper-slide:hover a::after {
	border-top-color: var(--color-point);
}
#sec8 .sec8_cont .review_swiper .swiper-slide:hover a dl > span, #sec8 .sec8_cont .review_swiper .swiper-slide:hover a dl dt, #sec8 .sec8_cont .review_swiper .swiper-slide:hover a dl dd {
	color: #fff;
}
#sec8 .sec8_cont .review_swiper .swiper-slide:hover a .best_icon {
	background-color: #B7A078;
}
/* ------------------- 섹션 request -------------------- */
#sec_request {
  background-image: url(../img/sec9_bg.jpg);
  background-size: cover;
  padding: 130px 140px;
  transition: all 0.8s ease;
}
#sec_request .left .sec_tit h2 {
  color: #fff;
}
#sec_request .left .sec_tit p {
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
}
#sec_request .left .step > div {
  flex-direction: column;
  position: relative;
}
#sec_request .left .step > div:not(:last-child) {
  margin-right: clamp(90px, 8.33vw, 160px);
}
#sec_request .left .step > div > span {
  width: clamp(80px, 5.21vw, 100px);
  height: clamp(80px, 5.21vw, 100px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 rgba(54, 106, 181, 0.2);
}
#sec_request .left .step > div > span::before {
  content: "";
  width: clamp(60px, 4.17vw, 80px);
  height: 1px;
  background-color: rgba(217, 217, 217, 0.2);
  position: absolute;
  top: 50%;
  right: calc(clamp(163px, 11.46vw, 220px) / 2 * -1);
  transform: translateY(-50%);
  display: block;
}
#sec_request .left .step > div p {
  font-size: clamp(16px, 0.94vw, 18px);
  color: rgba(255, 255, 255, 0.5);
}
#sec_request .left .step .step_txt {
  font-weight: 600;
  color: #fff;
  font-size: clamp(14px, 0.73vw, 14px);
  background-color: var(--color-point);
  padding: clamp(8px, 0.68vw, 13px) clamp(17px, 1.3vw, 25px);
  border-radius: 10px;
  line-height: 1.5;
  width: clamp(280px, 14.58vw, 280px);
  position: absolute;
  top: -70%;
  left: 20%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
#sec_request .left .step .step_txt span {
  position: relative;
  display: block;
}
#sec_request .left .step .step_txt span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--color-point);
  position: absolute;
  bottom: -28px;
  left: 0;
}
#sec_request .left .step .step1 > span::after {
  content: "";
  width: 27px;
  height: 26px;
  background-image: url(../img/step_icon1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step2 > span::after {
  content: "";
  width: 23px;
  height: 30px;
  background-image: url(../img/step_icon2.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step3 > span::after {
  content: "";
  width: 30px;
  height: 25px;
  background-image: url(../img/step_icon3.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
#sec_request .left .step .step3 > span::before {
  display: none;
}
#sec_request .left .step .active > span {
  background-color: rgba(26, 54, 104, 0.5);
  animation: pulse 2s infinite;
}
#sec_request .left .step .active p {
  color: #fff;
}
#sec_request .left .step .active .step_txt {
  opacity: 1;
  visibility: visible;
}
#sec_request .left .step .step1.active > span::after {
  background-image: url(../img/step_icon1_w.svg);
}
#sec_request .left .step .step2.active > span::after {
  background-image: url(../img/step_icon2_w.svg);
}
#sec_request .left .step .step3.active > span::after {
  background-image: url(../img/step_icon3_w.svg);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0  rgba(26, 54, 104, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px  rgba(26, 54, 104, 0);
  }
  100% {
    box-shadow: 0 0 0 0  rgba(26, 54, 104, 0);
  }
}
#sec_request .right {
  width: 37.3%;
}
#sec_request .right #index_form {
  width: 100%;
}
#sec_request .right #index_form .input_wrapper {
  position: relative;
  margin-bottom: 20px;
}
#sec_request .right #index_form .input_wrapper:nth-child(3)::before {
  width: clamp(12px, 0.83vw, 16px);
  height: clamp(12px, 0.83vw, 16px);
  background-image: url(../img/form_icon1.svg);
}
#sec_request .right #index_form .input_wrapper:nth-child(4)::before {
  width: clamp(14px, 0.94vw, 18px);
  height: clamp(14px, 0.94vw, 18px);
  background-image: url(../img/form_icon2.svg);
}
#sec_request .right #index_form .input_wrapper::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: clamp(15px, 1.56vw, 30px);
  top: 50%;
  transform: translateY(-50%);
}
#sec_request .right #index_form .input_wrapper input {
  width: 100%;
  font-size: clamp(16px, 1.04vw, 20px);
  padding: clamp(16px, 1.25vw, 24px) 0 clamp(16px, 1.25vw, 24px) clamp(40px, 3.13vw, 60px);
  border: none;
}
#sec_request .right #index_form .input_wrapper input::placeholder {
  color: #999;
}
#sec_request .right #index_form .select_wrapper {
  width: 100%;
}
#sec_request .right #index_form .select_wrapper select {
  width: 100%;
  font-size: clamp(16px, 1.04vw, 20px);
  background: #fff url(../img/form_arrow.svg) right 20px center no-repeat;
  padding: clamp(16px, 1.25vw, 24px) clamp(20px, 1.56vw, 30px);
  border: none;
  color: #000;
  appearance: none;
  position: relative;
}
#sec_request .right #index_form .agree_wrapper {
  margin-top: 30px;
  margin-bottom: 40px;
}
#sec_request .right #index_form .agree_wrapper input[type=checkbox] + span {
  width: 24px;
  height: 24px;
  background: none;
  margin-right: 10px;
  background-color: #fff;
}
#sec_request .right #index_form .agree_wrapper 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;
}
#sec_request .right #index_form .agree_wrapper label {
  color: #fff;
  font-weight: 300;
  margin-right: 10px;
  font-size: clamp(18px, 0.94vw, 18px);
}
#sec_request .right #index_form .agree_wrapper button {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(16px, 0.83vw, 16px);
  background-color: transparent;
  border: none;
}
#sec_request .right #index_form .quickCounsel_btn {
  width: 100%;
  background-color: var(--color-point);
  color: #fff;
  font-size: clamp(20px, 1.04vw, 20px);
  font-weight: 700;
  padding: 23px 0;
}
/* ------------------- 섹션 location -------------------- */
#sec_location .left {
  width: 40.6%;
  height: 1100px;
}
#sec_location .left .m_location_map {
  display: none;
}
#sec_location .left .location_list li {
  width: calc((100% - 110px) / 6);
  font-size: clamp(12px, 0.94vw, 18px);
  color: #666;
  padding-bottom: 11px;
  border-bottom: 1px solid #cccccc;
  margin-right: 22px;
  margin-top: 15px;
  cursor: pointer;
}
#sec_location .left .location_list li:nth-child(6n), #sec_location .left .location_list li:last-child {
  margin-right: 0;
}
#sec_location .left .location_list .on {
  color: var(--color-point);
  border-color: var(--color-point);
  font-weight: 700;
}
#sec_location .left .location_detail {
  border-top: 1px solid #222;
}
#sec_location .left .location_detail li {
  border-bottom: 1px solid #ccc;
  display: none;
}
#sec_location .left .location_detail li a {
  padding: 30px 20px;
}
#sec_location .left .location_detail li a > span {
  font-size: clamp(12px, 0.73vw, 14px);
  color: #fff;
  font-weight: 600;
  background-color: #222;
  height: fit-content;
  padding: 5px 20px;
  border-radius: 200px;
}
#sec_location .left .location_detail li a .location_info {
  margin-left: 20px;
}
#sec_location .left .location_detail li a .tit {
  font-size: clamp(18px, 1.04vw, 20px);
  font-weight: 700;
  margin-bottom: 7px;
}
#sec_location .left .location_detail li a .txt {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #444;
  margin-bottom: 15px;
}
#sec_location .left .location_detail li a .num {
  font-size: clamp(15px, 0.89vw, 17px);
}
#sec_location .left .location_detail li a .num span {
  padding-right: 10px;
}
#sec_location .left .location_detail li a .num span:first-child {
  position: relative;
}
#sec_location .left .location_detail li a .num span:first-child::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
}
#sec_location .left .location_detail li a .num span:last-child {
  padding-right: 0;
  padding-left: 10px;
}
#sec_location .left .location_detail li.on {
  display: block;
}
#sec_location .right {
  position: relative;
  width: clamp(650px, 41.98vw, 806px);
  height: clamp(1000px, 72.08vw, 1384px);
}
#sec_location .right #map .mover {
  cursor: pointer;
  transition: fill 0.3s;
}
#sec_location .right #map .mover.on {
  fill: var(--color-point);
}
#sec_location .right #map .mover.hover {
  fill: var(--color-point);
}
#sec_location .right .svg_txt {
  position: absolute;
  font-size: clamp(16px, 0.94vw, 18px);
  color: #999;
  cursor: pointer;
}
#sec_location .right .svg_txt span {
  position: relative;
  top: -15px;
  left: -50%;
  cursor: pointer;
  color: #999;
  transition: all 0.2s;
}
#sec_location .right .gg_north {
  left: 29%;
  top: 16%;
}
#sec_location .right .icbc {
  left: 16.7%;
  top: 22%;
}
#sec_location .right .seoul {
  left: 26%;
  top: 23%;
}
#sec_location .right .gg_south {
  left: 33%;
  top: 29%;
}
#sec_location .right .gw {
  left: 62%;
  top: 18%;
  cursor: default;
  pointer-events: none;
}
#sec_location .right .cb {
  left: 48%;
  top: 37%;
}
#sec_location .right .djcn {
  left: 23%;
  top: 45%;
}
#sec_location .right .dggb {
  left: 74%;
  top: 48%;
}
#sec_location .right .jb {
  left: 31%;
  top: 60%;
}
#sec_location .right .bu {
  left: 68%;
  top: 68%;
}
#sec_location .right .gjjn {
  left: 24%;
  top: 75%;
}
#sec_location .right .jj {
  left: 12%;
  top: 96.5%;
}
#sec_location .right .svg_txt.on span {
  color: #fff;
  font-weight: 600;
}
#sec_location .right .svg_txt.hover span {
  color: #fff;
  font-weight: 600;
}
#sec_location .more_btn {
  width: clamp(180px, 12.34vw, 237px);
  border: 1px solid #222;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  border-radius: 200px;
  padding: clamp(15px, 1.04vw, 20px) 0;
  transition: 0.5s;
}
#sec_location .more_btn::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../img/lawyer_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 20px;
  transition: 0.5s;
}
#sec_location .more_btn:hover {
  background: transparent;
  box-shadow: inset 237px 0 0 0 var(--color-point);
  border: 1px solid transparent;
  color: #fff;
}
#sec_location .more_btn:hover::after {
  filter: invert(1);
}
@media (max-width: 1500px) {
  #sec_request .left .step .step_txt {
    display: none;
  }
}

@media (max-width: 1400px) {
  #sec_location .right .seoul {
    left: 28%;
  }
  #sec_location .right .icbc {
    left: 20%;
  }
}

@media (max-width: 1350px) {
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
		height: clamp(190px, 20.74vw, 280px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper > img {
		width: clamp(180px, 19.26vw, 260px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .pro {
		width: clamp(50px, 6.15vw, 83px);
		height: clamp(45px, 5.78vw, 78px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .co {
		width: clamp(52px, 6.30vw, 85px);
		height: clamp(52px, 6.30vw, 85px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .sol {
		width: clamp(69px, 7.56vw, 102px);
		height: clamp(53px, 6.07vw, 82px);
	}
}

@media (max-width: 1150px) {
  #sec_location .right .seoul {
    left: 27%;
    top: 23.5%;
  }
  #sec_location .right .icbc {
    left: 19%;
  }
}

@media (max-width: 1100px) {
	#sec1 .main_visual_swiper .swiper-navigation {
		display: none;
	}
	
	#sec8 .sec8_cont .review_swiper .swiper-slide a {
		padding: clamp(25px, 4.55vw, 50px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a::after {
		border-top-width: clamp(30px, 3.55vw, 39px);
		border-left-width: clamp(25px, 3.00vw, 33px);
		right: clamp(120px, 13.18vw, 145px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl span {
		font-size: clamp(16px, 1.82vw, 20px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl dt {
		font-size: clamp(20px, 2.18vw, 24px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl dd {
		font-size: clamp(14px, 1.64vw, 18px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a .best_icon {
		width: clamp(50px, 6.36vw, 70px);
		line-height: clamp(50px, 6.36vw, 70px);
		font-size: clamp(14px, 1.64vw, 18px);
		bottom: calc(clamp(25px, 3.18vw, 35px) * -1);
	}
	
	#sec_request {
		flex-direction: column;
		align-items: center;
	}
	#sec_request .left .sec_tit {
		padding-bottom: 0;
		text-align: center;
	}
	#sec_request .left .step {
		margin-top: clamp(70px, 9.09vw, 100px);
	}
	#sec_request .left .step > div > span {
		width: clamp(100px, 10.91vw, 120px);
		height: clamp(100px, 10.91vw, 120px);
	}
	#sec_request .left .step > div > span::before {
		right: -75px;
	}
	#sec_request .right {
		width: 90%;
		margin-top: clamp(60px, 7.27vw, 80px);
	}
	#sec_location .left {
		width: 100%;
		height: auto;
	}
	#sec_location .left .sec_tit {
		margin-bottom: clamp(60px, 5.45vw, 60px);
	}
	#sec_location .left .m_location_map {
		display: flex;
		width: clamp(560px, 63.64vw, 700px);
		height: auto;
		margin: 0 auto;
		position: relative;
	}
	#sec_location .left .m_location_map #m_map .m_mover {
		cursor: pointer;
		transition: fill 0.3s;
	}
	#sec_location .left .m_location_map #m_map .m_mover.on {
		fill: var(--color-point);
	}
	#sec_location .left .m_location_map #m_map .m_mover.hover {
		fill: var(--color-point);
	}
	#sec_location .left .m_location_map .m_svg_txt {
		position: absolute;
		font-size: clamp(16px, 1.82vw, 20px);
		color: #999;
		cursor: pointer;
	}
	#sec_location .left .m_location_map .m_svg_txt span {
		position: relative;
		top: -15px;
		left: -50%;
		color: #999;
		transition: all 0.2s;
	}
	#sec_location .left .m_location_map .gg_north {
		left: 29%;
		top: 16%;
	}
	#sec_location .left .m_location_map .icbc {
		left: 17%;
		top: 22%;
	}
	#sec_location .left .m_location_map .seoul {
		left: 25.5%;
		top: 23%;
	}
	#sec_location .left .m_location_map .gg_south {
		left: 33%;
		top: 29%;
	}
	#sec_location .left .m_location_map .gw {
		left: 62%;
		top: 18%;
		cursor: default;
		pointer-events: none;
	}
	#sec_location .left .m_location_map .cb {
		left: 48%;
		top: 37%;
	}
	#sec_location .left .m_location_map .djcn {
		left: 23%;
		top: 45%;
	}
	#sec_location .left .m_location_map .dggb {
		left: 74%;
		top: 48%;
	}
	#sec_location .left .m_location_map .jb {
		left: 31%;
		top: 60%;
	}
	#sec_location .left .m_location_map .bu {
		left: 68%;
		top: 68%;
	}
	#sec_location .left .m_location_map .gjjn {
		left: 24%;
		top: 75%;
	}
	#sec_location .left .m_location_map .jj {
		left: 12%;
		top: 96%;
	}
	#sec_location .left .m_location_map .m_svg_txt.on span {
		color: #fff;
		font-weight: 600;
	}
	#sec_location .left .m_location_map .m_svg_txt.hover span {
		color: #fff;
		font-weight: 600;
	}
	#sec_location .left .location_list li {
		margin-right: clamp(15px, 2.27vw, 25px);
		width: calc((100% - clamp(60px, 9.09vw, 100px)) / 5);
		font-size: clamp(20px, 2vw, 22px);
	}
	#sec_location .left .location_list li:nth-child(6n) {
		margin-right: clamp(15px, 2.27vw, 25px);
	}
	#sec_location .left .location_list li:nth-child(5n) {
		margin-right: 0;
	}
	#sec_location .left .location_detail li a {
		padding: clamp(25px, 3.64vw, 40px) clamp(20px, 2.73vw, 30px);
	}
	#sec_location .left .location_detail li a > span {
		font-size: clamp(18px, 1.82vw, 20px);
		padding: clamp(7px, 0.91vw, 10px) clamp(15px, 2.27vw, 25px);
	}
	#sec_location .left .location_detail li a .tit {
		font-size: clamp(24px, 2.36vw, 26px);
		margin-bottom: 15px;
	}
	#sec_location .left .location_detail li a .txt {
		font-size: clamp(18px, 1.82vw, 20px);
		margin-bottom: 15px;
	}
	#sec_location .left .location_detail li a .num {
		font-size: clamp(16px, 1.64vw, 18px);
	}
	#sec_location .left .more_btn {
		margin: 0 auto;
	}
	#sec_location .right {
		display: none;
	}
}

@media (max-width: 1000px) {
	#sec4 .sec4_cont ul {
		flex-direction: column;
		height: auto;
	}
	#sec4 .sec4_cont ul li {
		width: 100%;
		height: 160px;
		margin-right: 0;
	}
	#sec4 .sec4_cont ul li:not(:last-child) {
		margin-bottom: 30px;
	}
	#sec4 .sec4_cont .hover {
		width: 100%;
		height: 350px;
	}
	
	#sec6 .sec6_cont {
		flex-direction: column;
	}
	#sec6 .sec6_cont .left {
		width: 100%;
	}
	#sec6 .sec6_cont .left .left_txt p {
		font-size: 20px;
	}
	#sec6 .sec6_cont .left .left_txt h3 {
		font-size: 25px;
	}
	#sec6 .sec6_cont .right {
		width: 100%;
		margin-top: 60px;
	}
	#sec6 .sec6_cont .right .right_img {
		width: 200px;
	}
	#sec6 .sec6_cont .right .right_txt {
		width: calc(100% - 215px);
	}
	#sec6 .sec6_cont .right .right_txt dl > p {
		font-size: 18px;
	}
	#sec6 .sec6_cont .right .right_txt dl dt {
		font-size: 22px;
	}
	#sec6 .sec6_cont .right .right_txt dl dd {
		font-size: 18px;
	}
}

@media (max-width: 750px) {
	.sec_tit h2 {
		font-size: clamp(25px, 7.07vw, 53px);
		line-height: 1.4;
	}
	.sec_tit p {
		font-size: clamp(15px, 3.73vw, 28px);
		line-height: 1.6;
	}
	
	#sec1 .main_visual_swiper .swiper-slide .slide_txt h2, .main_visual_swiper .swiper-slide .slide_txt h3 {
		font-size: clamp(28px, 8.00vw, 60px);
	}
	#sec1 .main_visual_swiper .swiper-slide .slide_txt .txt {
		display: none;
	}
	#sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt {
		display: block;
	}
	#sec1 .main_visual_swiper .swiper-slide .slide_txt .m_txt p {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec1 .main_visual_swiper .swiper-pagination {
		bottom: clamp(220px, 29.33vw, 220px);
		left: 6.13vw;
		width: fit-content;
	}
	#sec1 .main_visual_swiper .swiper-pagination .swiper-pagination-bullet {
		width: clamp(10px, 1.87vw, 14px);
		height: clamp(10px, 1.87vw, 14px);
		margin: 0 clamp(5px, 0.93vw, 7px);
	}
	#sec1 .main_visual_swiper .swiper-pagination .swiper-pagination-bullet-active {
		width: clamp(25px, 4.00vw, 30px);
	}
	#sec1 .scroll_down_txt {
		bottom: clamp(150px, 20.00vw, 150px);
	}
	#sec1 .scroll_down_txt::after {
		width: clamp(15px, 2.67vw, 20px);
		height: clamp(15px, 2.67vw, 20px);
	}
	#sec1 .scroll_down_txt span {
		font-size: clamp(16px, 3.47vw, 26px);
	}
	
	#sec2 .success_swiper {
		padding-bottom: 0;
	}
	#sec2 .success_swiper .swiper-slide a {
		padding: clamp(35px, 9.33vw, 70px) clamp(25px, 6.67vw, 50px);
	}
	#sec2 .success_swiper .swiper-slide a dl > span {
		font-size: clamp(14px, 3.73vw, 28px);
		padding: 0 clamp(13px, 3.47vw, 26px);
		word-break: break-all;
		-webkit-line-clamp: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		line-height: clamp(30px, 8.00vw, 60px);
	}
	#sec2 .success_swiper .swiper-slide a dl dt {
		font-size: clamp(20px, 5.07vw, 38px);
	}
	#sec2 .success_swiper .swiper-slide a dl dd {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec2 .success_swiper .swiper-slide a .img_wrapper {
		width: clamp(60px, 16.00vw, 120px);
		height: clamp(60px, 16.00vw, 120px);
	}
	#sec2 .success_swiper .swiper-slide a ul li > p {
		font-size: clamp(14px, 3.73vw, 28px);
	}
	#sec2 .success_swiper .swiper-slide a ul li:not(:last-child) {
		margin-right: clamp(15px, 4.00vw, 30px);
	}
	#sec2 .success_swiper .swiper-slide:hover {
		transform: none;
		background-color: var(--color-point);
	}
	#sec2 .success_swiper .swiper-scrollbar {
		display: none;
	}
	
	#sec3 {
		padding-right: 0;
		width: 100%;
	}
	#sec3 .sec_tit {
		width: 90%;
		margin: 0 auto;
	}
	#sec3 .sec3_cont {
		margin-left: 5%;
	}
	#sec3 .lawyer_swiper .swiper-container {
		padding-bottom: clamp(37px, 9.87vw, 74px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
		height: clamp(245px, 65.33vw, 490px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper > img {
		width: clamp(238px, 63.33vw, 475px);
		right: calc(clamp(23px, 6.00vw, 45px) * -1);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .s_mark {
		left: clamp(15px, 4.00vw, 30px);
		bottom: clamp(15px, 4.00vw, 30px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .pro {
		width: clamp(58px, 15.33vw, 115px);
		height: clamp(54px, 14.40vw, 108px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .co {
		width: clamp(58px, 15.33vw, 115px);
		height: clamp(58px, 15.33vw, 115px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper .sol {
		width: clamp(66px, 17.60vw, 132px);
		height: clamp(56px, 14.93vw, 112px)
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper {
		padding: clamp(28px, 7.33vw, 55px) clamp(25px, 6.67vw, 50px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl h3 {
		font-size: clamp(14px, 3.73vw, 28px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl h3 span {
		font-size: clamp(26px, 5.87vw, 44px);
		margin-right: clamp(5px, 1.33vw, 10px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt {
		font-size: clamp(14px, 3.73vw, 28px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dd {
		font-size: clamp(12px, 3.20vw, 24px);
	}
	#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet {
		width: clamp(7px, 1.87vw, 14px);
		height: clamp(7px, 1.87vw, 14px);
		margin: 0 3px;
	}
	#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet-active {
		width: clamp(18px, 4.80vw, 36px);
	}
	
	#sec4 .sec4_cont ul li {
		height: clamp(80px, 21.33vw, 160px);
	}
	#sec4 .sec4_cont ul li:not(:last-child) {
		margin-bottom: clamp(10px, 2.67vw, 20px)
	}
	#sec4 .sec4_cont li .tit {
		font-size: clamp(18px, 4.27vw, 32px);
	}
	#sec4 .sec4_cont li .txt {
		font-size: clamp(12px, 3.47vw, 26px);
		line-height: 1.7;
	}
	#sec4 .sec4_cont li .more_btn {
		font-size: clamp(14px, 3.47vw, 26px);
	}
	#sec4 .sec4_cont li .more_btn::after {
		width: clamp(11px, 2.93vw, 22px);
		height: clamp(10px, 2.67vw, 20px);
		margin-left: clamp(10px, 2.67vw, 20px);
	}
	#sec4 .sec4_cont .hover {
		height: clamp(300px, 80.00vw, 600px);
	}
	#sec4 .sec4_cont .hover .tit {
		font-size: clamp(24px, 5.33vw, 40px);
	}
	
	
	#sec5 .category ul {
		overflow-x: auto;
		white-space: nowrap;
		justify-content: flex-start;
		padding-left: clamp(20px, 5.33vw, 40px);
		padding-right: clamp(20px, 5.33vw, 40px);
	}
	#sec5 .category ul::-webkit-scrollbar {
		display: none;
	}
	#sec5 .category li:not(:last-child) {
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec5 .category li a {
		font-size: clamp(14px, 3.73vw, 28px);
		padding: clamp(9px, 2.40vw, 18px) clamp(15px, 4.00vw, 30px);
	}
	#sec5 .sec5_cont .swiper-wrapper {
		height: clamp(230px, 60.67vw, 455px);
	}
	#sec5 .sec5_cont .swiper-slide {
		width: clamp(220px, 57.33vw, 430px);
	}
	#sec5 .sec5_cont .swiper-slide .youtube_wrapper .youtube_area {
		height: clamp(120px, 30.67vw, 230px);
		margin-top: clamp(25px, 6.67vw, 50px);
	}
	#sec5 .sec5_cont .swiper-slide .txt_wrapper h3 {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec5 .sec5_cont .swiper-slide .txt_wrapper p {
		font-size: clamp(12px, 3.47vw, 26px);
	}
	#sec5 .sec5_cont .swiper-slide-active {
		width: clamp(280px, 81.33vw, 610px);
	}
	#sec5 .sec5_cont .swiper-slide-active .youtube_wrapper .youtube_area {
		height: clamp(165px, 43.33vw, 325px);
		margin-top: 0;
	}
	#sec5 .sec5_cont .swiper-control {
		width: clamp(300px, 89.33vw, 670px);
		justify-content: space-between;
	}
	#sec5 .sec5_cont .swiper-control .swiper-scrollbar {
		display: block;
		position: relative;
		width: clamp(245px, 70.67vw, 530px);
		background: #444;
		height: 3px;
		border-radius: 0;
	}
	.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
		background: #fff;
	}
	#sec5 .sec5_cont .swiper-control .swiper-button-prev, #sec5 .sec5_cont .swiper-control .swiper-button-next {
		display: none;
	}
	#sec5 .sec5_cont .swiper-control .swiper-fraction {
		width: calc(100% - clamp(255px, 76.00vw, 570px));
		font-size: clamp(12px, 3.73vw, 28px);
		margin: 0;
	}
	#sec5 .sec5_cont .swiper-control .swiper-fraction .current {
		font-size: clamp(14px, 4.53vw, 34px);
	}
	
	
	#sec6 .sec6_cont .left .left_img {
		height: clamp(230px, 61.33vw, 460px);
	}
	#sec6 .sec6_cont .left .left_txt p {
		font-size: clamp(14px, 3.47vw, 26px);
	}
	#sec6 .sec6_cont .left .left_txt p span {
		margin-right: clamp(5px, 1.33vw, 10px);
	}
	#sec6 .sec6_cont .left .left_txt h3 {
		font-size: clamp(20px, 4.53vw, 34px);
	}
	#sec6 .sec6_cont .right {
		margin-top: 0;
	}
	#sec6 .sec6_cont .right .right_img {
		width: clamp(90px, 24.00vw, 180px);
	}
	#sec6 .sec6_cont .right .right_txt {
		width: calc(100% - clamp(110px, 29.33vw, 220px));
	}
	#sec6 .sec6_cont .right .right_txt dl dd {
		display: none;
	}
	#sec6 .sec6_cont .right .right_txt dl > p {
		font-size: clamp(14px, 3.47vw, 26px);
	}
	#sec6 .sec6_cont .right .right_txt dl dt {
		font-size: clamp(18px, 4.00vw, 30px);
	}
	
	#sec7 .container {
		width: 100%;
	}
	#sec7 .container .sec_tit {
		width: 90%;
		margin: 0 auto;
	}
	#sec7 .sec7_cont .news_swiper {
		margin-left: 5%;
	}
	#sec7 .sec7_cont .news_swiper .img_wrapper {
		height: clamp(195px, 51.33vw, 385px);
	}
	#sec7 .sec7_cont .news_swiper .txt_wrapper {
		padding: clamp(25px, 9.33vw, 70px) clamp(20px, 6.67vw, 50px);
		top: clamp(70px, 18.67vw, 140px);
	}
	#sec7 .sec7_cont .news_swiper .txt_wrapper dl > span {
		font-size: clamp(12px, 3.47vw, 26px);
	}
	#sec7 .sec7_cont .news_swiper .txt_wrapper dl dt {
		font-size: clamp(20px, 5.07vw, 38px);
	}
	#sec7 .sec7_cont .news_swiper .txt_wrapper dl dd {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec7 .sec7_cont .more_btn {
		margin-top: clamp(110px, 29.33vw, 220px);
		width: clamp(130px, 34.67vw, 260px);
		font-size: clamp(14px, 3.73vw, 28px);
		padding: clamp(11px, 2.93vw, 22px) 0;
	}
	#sec7 .sec7_cont .more_btn::after {
		padding: clamp(11px, 2.93vw, 22px) 0;
	}
	
	#sec8 .container {
		width: 100%;
	}
	#sec8 .sec_tit {
		width: 90%;
		margin: 0 auto;
	}
	#sec8 .sec8_cont {
		margin-left: 5%;
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a {
		padding: clamp(35px, 9.33vw, 70px) clamp(25px, 6.67vw, 50px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a::after {
		border-top-width: clamp(25px, 6.53vw, 49px);
		border-left-width: clamp(21px, 5.60vw, 42px);
		bottom: calc(clamp(21px, 5.60vw, 42px) * -1);
		right: clamp(90px, 24.00vw, 180px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl > span {
		font-size: clamp(14px, 3.73vw, 28px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl dt {
		font-size: clamp(22px, 5.07vw, 38px);
		line-height: 1.5;
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a dl dd {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec8 .sec8_cont .review_swiper .swiper-slide a .best_icon {
		width: clamp(50px, 13.33vw, 100px);
		line-height: clamp(50px, 13.33vw, 100px);
		font-size: clamp(12px, 3.47vw, 26px);
		bottom: calc(clamp(25px, 6.67vw, 50px) * -1);
		right: clamp(20px, 5.33vw, 40px);
	}
	
	
	#sec_request {
		width: 100%;
		padding: clamp(100px, 18.67vw, 140px) clamp(17px, 5.33vw, 40px);
		align-items: flex-start;
		background-position: center;
	}
	#sec_request .left {
		width: 100%;
	}
	#sec_request .left .sec_tit {
		text-align: left;
	}
	#sec_request .left .step {
		width: 100%;
		margin-top: 0;
		justify-content: space-between;
	}
	#sec_request .left .step > div:not(:last-child) {
		margin-right: 0;
	}
	#sec_request .left .step > div > span {
		width: clamp(75px, 21.33vw, 160px);
		height: clamp(75px, 21.33vw, 160px);
	}
	#sec_request .left .step > div > span::before {
		width: clamp(25px, 5.33vw, 40px);
		right: -43%;
	}
	#sec_request .left .step > div p {
		font-size: clamp(12px, 3.2vw, 24px);
	}
	#sec_request .left .step .step1 > span::after {
		width: clamp(23px, 5.73vw, 43px);
		height: clamp(23px, 5.73vw, 43px);
	}
	#sec_request .left .step .step2 > span::after {
		width: clamp(20px, 4.93vw, 37px);
		height: clamp(28px, 6.4vw, 48px);
	}
	#sec_request .left .step .step3 > span::after {
		width: clamp(28px, 6.4vw, 48px);
		height: clamp(22px, 5.33vw, 40px);
		margin-left: 10px;
	}
	#sec_request .right {
		width: 100%;
		margin-top: 0;
	}
	#sec_request .right #index_form .input_wrapper {
		margin-bottom: clamp(15px, 4vw, 30px);
	}
	#sec_request .right #index_form .input_wrapper:nth-child(3)::before {
		width: clamp(18px, 3.6vw, 27px);
		height: clamp(18px, 3.6vw, 27px);
		left: clamp(20px, 8vw, 60px);
	}
	#sec_request .right #index_form .input_wrapper:nth-child(4)::before {
		width: clamp(18px, 3.6vw, 27px);
		height: clamp(18px, 3.6vw, 27px);
		left: clamp(20px, 8vw, 60px);
	}
	#sec_request .right #index_form .input_wrapper input {
		font-size: clamp(18px, 4vw, 30px);
		padding: clamp(20px, 5.6vw, 42px) 0 clamp(20px, 5.6vw, 42px) clamp(60px, 14.67vw, 110px);
	}
	#sec_request .right #index_form .select_wrapper select {
		font-size: clamp(18px, 4vw, 30px);
		padding: clamp(20px, 5.6vw, 42px) 0 clamp(20px, 5.6vw, 42px) clamp(20px, 8vw, 60px);
		background: #fff url(../img/form_arrow.svg) right clamp(20px, 8vw, 60px) center no-repeat;
		background-size: clamp(18px, 3.2vw, 24px) clamp(10px, 1.87vw, 14px);
	}
	#sec_request .right #index_form .agree_wrapper {
		margin: 0;
	}
	#sec_request .right #index_form .agree_wrapper input[type=checkbox] + span {
		width: clamp(22px, 4vw, 30px);
		height: clamp(22px, 4vw, 30px);
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec_request .right #index_form .agree_wrapper input[type=checkbox]:checked + span {
		background-size: clamp(18px, 3.2vw, 24px) clamp(15px, 2.8vw, 21px);
	}
	#sec_request .right #index_form .agree_wrapper label {
		font-size: clamp(16px, 3.73vw, 28px);
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec_request .right #index_form .agree_wrapper button {
		font-size: clamp(14px, 3.33vw, 25px);
	}
	#sec_request .right #index_form .quickCounsel_btn {
		font-size: clamp(20px, 4.53vw, 34px);
		padding: clamp(20px, 5.33vw, 40px) 0;
	}
	
	#sec_location .left .sec_tit {
		margin-bottom: 0;
	}
	#sec_location .left .m_location_map {
		width: 100%;
	}
	#sec_location .left .m_location_map .m_svg_txt {
		font-size: clamp(12px, 3.2vw, 24px);
	}
	#sec_location .left .m_location_map .icbc {
		left: 16.5%;
		top: 21%;
	}
	#sec_location .left .m_location_map .jj {
		top: 97.5%;
	}
	#sec_location .left .location_list li {
		width: calc((100% - clamp(60px, 20vw, 150px)) / 4);
		margin-right: clamp(20px, 6.53vw, 49px) !important;
		margin-top: clamp(20px, 5.33vw, 40px);
		font-size: clamp(15px, 4vw, 30px);
	}
	#sec_location .left .location_list li:nth-child(4n) {
		margin-right: 0 !important;
	}
	#sec_location .left .location_list li:nth-child(-n+4) {
		margin-top: 0;
	}
	#sec_location .left .location_detail li a {
		flex-direction: column;
		padding: clamp(25px, 6.67vw, 50px) 0;
	}
	#sec_location .left .location_detail li a > span {
		font-size: clamp(16px, 3.2vw, 24px);
		padding: clamp(7px, 1.87vw, 14px) clamp(15px, 4vw, 30px);
	}
	#sec_location .left .location_detail li a .location_info {
		margin-left: 0;
	}
	#sec_location .left .location_detail li a .tit {
		font-size: clamp(20px, 4.27vw, 32px);
		margin-bottom: clamp(10px, 2.67vw, 20px);
	}
	#sec_location .left .location_detail li a .txt {
		font-size: clamp(16px, 4vw, 30px);
		margin-bottom: clamp(10px, 2.67vw, 20px);
	}
	#sec_location .left .location_detail li a .num {
		font-size: clamp(16px, 4vw, 30px);
	}
	#sec_location .left .location_detail li a .num span {
		padding-right: clamp(10px, 2.67vw, 20px);
	}
	#sec_location .left .location_detail li a .num span:first-child::after {
		height: clamp(16px, 3.2vw, 24px);
	}
	#sec_location .left .location_detail li a .num span:last-child {
		padding-right: 0;
		padding-left: clamp(10px, 2.67vw, 20px);
	}
	#sec_location .left .more_btn {
		display: flex;
		width: clamp(210px, 42.67vw, 320px);
		border: 2px solid #222;
		font-size: clamp(18px, 4vw, 30px);
		font-weight: 500;
		border-radius: 200px;
		transition: 0.5s;
		padding: clamp(17px, 3.33vw, 25px) 0;
	}
	#sec_location .left .more_btn::after {
		content: "";
		width: clamp(12px, 2.4vw, 18px);
		height: clamp(12px, 2.4vw, 18px);
		background-image: url(../img/lawyer_arrow.svg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		display: block;
		margin-left: clamp(10px, 2.67vw, 20px);
		transition: 0.5s;
	}
	#sec_location .left .more_btn:hover {
		background: transparent;
		box-shadow: inset 320px 0 0 0 var(--color-point);
		border: 2px solid transparent;
		color: #fff;
	}
	#sec_location .left .more_btn:hover::after {
		filter: invert(1);
	}
}

@media (max-width: 500px) {
	 #sec_request .left .step > div > span::before {
		width: 25px;
		right: calc(clamp(27px, 9vw, 45px) * -1);
	}
	#sec_location .left .m_location_map .seoul {
		top: 24%;
	}
}

@media (max-width: 350px) {
	#sec_location .left .m_location_map .seoul {
		top: 24.5%;
	}
	#sec_location .left .m_location_map .gg_north {
		top: 17%;
	}
	#sec_location .left .m_location_map .gg_south {
		top: 30%;
	}
	#sec_location .left .m_location_map .cb {
		top: 38%;
	}
	#sec_location .left .m_location_map .bu {
		top: 69%;
	}
	#sec_location .left .m_location_map .gjjn {
		top: 76%;
	}
	#sec_location .left .m_location_map .jj {
		top: 97.5%;
	}
}
/* ------------------- 애니메이션 -------------------- */
@keyframes bounce {
	50% {
		transform: translateY(3px);
	}
}

@keyframes link_arrow {
	50% {
		transform: translateX(3px);
	}
}