@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 {
  color: #603D29;
  margin-right: clamp(7px, 0.78vw, 15px);
}
.sec_tit p {
  font-size: clamp(20px, 1.25vw, 24px);`
  color: #222;
}
.view_more_btn, .m_view_more_btn {
	width: clamp(40px, 3.13vw, 60px);
	height: clamp(40px, 3.13vw, 60px);
	border: 1px solid #222;
	position: relative;
}
.view_more_btn::before, .view_more_btn::after, .m_view_more_btn::before, .m_view_more_btn::after {
	content:"";
	width: clamp(15px, 1.04vw, 20px);
	height: clamp(10px, 0.73vw, 14px);
	background-image: url(../img/new_left_arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(180deg);
	transition: all 0.6s;
	
}
.view_more_btn::before, .m_view_more_btn::before {
	opacity: 0;
	left: -25px;
}
.view_more_btn:hover::before, .m_view_more_btn:hover::before {
	opacity: 1;
	left: 50%;
}
.view_more_btn:hover::after, .m_view_more_btn:hover::after {
	opacity: 0;
	left: 100%;
}
.m_view_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.65);
  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 {
  width: 100%;
  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, 60px);
  line-height:1.5; 
  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 .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 {
  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 .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-pagination {
	top: 50%;
	left: clamp(50px, 5.21vw, 100px);
	transform: translateY(-50%);
	height: fit-content;
	width: fit-content;
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet {
	position: relative;
	cursor: pointer;
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet:not(:last-child) {
	margin-bottom: clamp(7px, 0.63vw, 12px);
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet span {
	position: absolute;
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet .progress-ring {
	width: clamp(40px, 2.08vw, 40px);
	height: clamp(40px, 2.08vw, 40px);
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet .progress-ring-bg {
  stroke-dasharray: 113.1;
  stroke-dashoffset: 0;
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet .progress-ring-progress {
	stroke-dasharray: 113.1;
	stroke-dashoffset: 113.1; 
	transition: stroke-dashoffset 0ms linear;
	transform-origin: center;
	transform: rotate(-90deg);
}
#sec1 .main_visual_swiper .swiper-pagination .custom-bullet.active span {
	color: #fff;
}
#sec1 .scroll {
	position: absolute;
	left: 50%;
	bottom: 60px;
	transform: translateX(-50%);
	z-index: 10;
}
#sec1 .scroll .icon {
	position: relative;
	width: 22px;
	height: 33px;
	border-radius: 15px;
	border: 2px solid #fff;
}
#sec1 .scroll .icon span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #fff;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 0;
	left: 50%;
	animation: scroll 1s infinite ease-in-out alternate-reverse;
}
#sec1 .scroll .arrow {
	flex-direction: column;
	margin-top: 8px;
}
#sec1 .scroll .arrow i {
	animation: opacity 1s infinite linear alternate;
}
#sec1 .scroll .arrow i:nth-child(2) {
	animation-delay: 0.2s;
}
#sec1 .scroll .arrow i:nth-child(3) {
	animation-delay: 0.4s;
}
#sec1 .scroll .arrow i:not(:last-child) {
	margin-bottom: 3px;
}
#sec1 .scroll .arrow i::before {
	content: "";
	width: 12px;
	height: 6px;
	background-image: url(../img/down_arrow_w.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
}
#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 .sec2_cont ul li {
	width: calc((100% - clamp(48px, 5.00vw, 96px)) / 4);
	height: clamp(260px, 16.67vw, 320px);
	position: relative;
}
#sec2 .sec2_cont .txt {
	background-color: #fff;
	position: relative;
	z-index: 4;
	width: 100%;
	height: 100%;
	padding: clamp(30px, 2.60vw, 50px);
	border-radius: 25px;
    transition: all 0.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#sec2 .sec2_cont .txt h3 {
	font-size: clamp(22px, 1.56vw, 30px);
	font-weight: 700;
	color: #603D29;
}
#sec2 .sec2_cont .txt p {
	font-size: clamp(18px, 1.25vw, 24px);
	font-weight: 500;
	color: #444;
	line-height: 1.5;
}
#sec2 .sec2_cont .hover_img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -5px;
	z-index: 0;
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.3s;
}
#sec2 .sec2_cont .hover_img img {
	height: 100%;
	object-fit: cover;
}
#sec2 .sec2_cont .hover_img .mo_img {
	display: none;
}
#sec2 .sec2_cont .num {
	position: absolute;
	font-family: "adobe-arabic", sans-serif;
	font-size: clamp(60px, 5.21vw, 100px);
	line-height: 1;
	color: rgba(153, 153, 153, 0.3);
	right: 0;
	bottom: calc(clamp(12px, 1.04vw, 20px) * -1);
	z-index: 10;
}
#sec2 .sec2_cont ul li:hover .txt {
	background-color: transparent;
}
#sec2 .sec2_cont ul li:hover .txt h3 {
	color: #fff;
}
#sec2 .sec2_cont ul li:hover .txt p {
	color: #fff;
}
#sec2 .sec2_cont ul li:hover .hover_img {
	left: 0;
}
#sec2 .sec2_cont ul .item2 {
	transition-delay: 0.1s;
}
#sec2 .sec2_cont ul .item3 {
	transition-delay: 0.2s;
}
#sec2 .sec2_cont ul .item4 {
	transition-delay: 0.3s;
}
/* ------------------- 섹션3 -------------------- */
#sec3 {
	overflow: hidden;
}
#sec3 .sec_tit {
	position: relative;
}
#sec3 .sec_tit .view_more_btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: background-color 0.4s;
}
#sec3 .sec_tit .view_more_btn:hover {
	background-color: var(--color-point);
}
#sec3 .sec_tit .view_more_btn:hover::before, #sec3 .sec_tit .view_more_btn:hover::after {
	background-image: url(../img/new_left_arrow_w.svg);
}
#sec3 .lawyer_swiper .swiper-container {
	position: relative;
	padding-bottom: clamp(60px, 3.85vw, 74px);
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
  height: clamp(220px, 18.75vw, 360px);
  position: relative;
  background-image: url(../img/sec3_list_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#sec3 .lawyer_swiper .swiper-slide a .img_wrapper > img {
	transform: scale(0.87);
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper {
  padding: clamp(15px, 1.56vw, 30px) clamp(20px, 2.08vw, 40px);
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  min-height: clamp(190px, 13.13vw, 252px);
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl > span {
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 700;
	color: #D65D23;
	height:21px;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt {
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 600;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt span {
	font-size: clamp(24px, 1.56vw, 30px);
	font-weight: 700;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dd {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #666;
}
#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dd p {
	line-height: 1.5;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

#sec3 .lawyer_swiper .swiper-slide a .s_mark {
	display: flex;
	position: absolute;
	width: clamp(70px, 5.21vw, 100px);
	height: clamp(70px, 5.21vw, 100px);
	background-color: #2D1209;
	top: clamp(180px, 16.15vw, 310px);
	left: 0;
}
#sec3 .lawyer_swiper .swiper-slide a .s_mark img {
	width: clamp(50px, 3.54vw, 68px);
	height: clamp(50px, 3.54vw, 68px);
	object-fit: cover;
}
#sec3 .lawyer_swiper .swiper-slide a .sol img {
	width: clamp(61px, 4.11vw, 79px);
}
#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-image: url(../img/sec4_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#sec4 .sec_tit h2, #sec4 .sec_tit p {
	color: #fff;
}
#sec4 .left {
	width: clamp(500px, 34.38vw, 660px);
	margin-right: clamp(140px, 14.58vw, 280px);
}
#sec4 .left li {
	width: calc((100% - clamp(10px, 1.04vw, 20px)) / 2);
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	padding: clamp(23px, 1.82vw, 35px);
	border-left: 2px solid #DBAD97;
}
#sec4 .left li:first-child, #sec4 .left li:nth-of-type(2) {
	margin-bottom: clamp(10px, 1.04vw, 20px);
}
#sec4 .left .item2 {
	transition-delay: 0.1s;
}
#sec4 .left .item3 {
	transition-delay: 0.2s;
}
#sec4 .left .item4 {
	transition-delay: 0.3s;
}
#sec4 .left li p {
	font-size: clamp(18px, 1.25vw, 24px);
	font-weight: 600;
	color: #fff;
	line-height: 1.6;
}
#sec4 .left li p span {
	color: #DBAD97;
}
#sec4 .right {
	width: clamp(380px, 25.00vw, 480px);
	height: clamp(550px, 38.28vw, 735px);
	background-color: #fff;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	padding: clamp(20px, 2.08vw, 40px) 0 clamp(30px, 3.13vw, 60px);
	position: relative;
}
#sec4 .right .progress {
	height: clamp(5px, 0.52vw, 10px);
	background-color: #ddd;
	border-radius: 5px;
	position:relative;
	overflow: hidden;
	margin: 0 clamp(35px, 3.65vw, 70px);
}
#sec4 .right .progress span {
	width: 0%;
	background-color: #175eec;
	border-radius: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: width 0.4s;
}
#sec4 .right #revMainForm {
	height: 100%;
	position: relative;
}
#sec4 .right .step {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateY(30px);
	visibility: hidden;
	transition: all 0.5s ease;
}

#sec4 .right .active {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	z-index: 1;
}
#sec4 .right .step_tit span {
	font-size: clamp(24px, 1.67vw, 32px);
	font-weight: 700;
}
#sec4 .right .step_tit h3 {
	font-size: clamp(20px, 1.46vw, 28px);
	font-weight: 700;
}
#sec4 .right .step_tit p {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #444;
	line-height: 1.5;
}
#sec4 .right .input_area {
	flex-direction: column;
	padding: 0 clamp(50px, 3.65vw, 70px);
}
#sec4 .right .input_inner {
	width: 100%;
}
#sec4 .right .input_wrapper {
	background-color: #F7F7F7;
	padding: clamp(10px, 0.78vw, 15px) clamp(15px, 1.56vw, 30px);
	border-radius: 10px;
	margin-bottom: clamp(10px, 0.52vw, 10px);
	width: 100%;
}
#sec4 .right .input_wrapper label, #sec4 .right .input_wrapper p {
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 500;
	color: #444;
}
#sec4 .right .input_wrapper input {
	font-size: clamp(14px, 0.94vw, 18px);
	padding: clamp(8.5px, 0.70vw, 13.5px);
	border: 1px solid #ddd;
	border-radius: 4px;
}
#sec4 .right .input_wrapper input::placeholder {
	color: #aaa;
}
#sec4 .right .input_wrapper input[type="radio"] + span {
	width: clamp(12px, 0.94vw, 18px);
	height: clamp(12px, 0.94vw, 18px);
	border: 1px solid #ddd;
	border-radius: 50%;
	position: relative;
	margin-right: clamp(5px, 0.52vw, 10px);
	background-color: #fff;
}
#sec4 .right .input_wrapper input[type="radio"]:checked + span {
	border-color: #D65D23;
}
#sec4 .right .input_wrapper input[type="radio"]:checked + span::after {
	content: "";
	width: clamp(6px, 0.52vw, 10px);
	height: clamp(6px, 0.52vw, 10px);
	border-radius: 50%;
	background-color: #D65D23;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}
#sec4 .right .input_wrapper input[type="checkbox"] + span {
	width: clamp(12px, 0.94vw, 18px);
	height: clamp(12px, 0.94vw, 18px);
	border: 1px solid #ddd;
	border-radius: 50%;
	position: relative;
	margin-right: clamp(5px, 0.52vw, 10px);
	background-color: #fff;
}
#sec4 .right .input_wrapper input[type="checkbox"]:checked + span {
	background-image: url(../img/check_icon_o.svg);
	background-size: clamp(8px, 0.63vw, 12px);
	background-repeat: no-repeat;
	background-position: center;
}
#sec4 .right .button_wrapper {
	position: absolute;
	bottom: clamp(30px, 3.13vw, 60px);
}
#sec4 .right .button_wrapper .first_next_btn {
	width: clamp(30px, 2.08vw, 40px);
	height: clamp(30px, 2.08vw, 40px);
	padding: 0;
	border-radius: 200px;
	background-color: #222;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden;
	transition: 0.3s;
}
#sec4 .right .button_wrapper button {
	position: relative;
	padding: clamp(15px, 1.04vw, 20px);
}
#sec4 .right .button_wrapper .prev_btn {
	margin-right: clamp(10px, 0.52vw, 10px);
}
#sec4 .right .button_wrapper button .inner {
	width: clamp(30px, 2.08vw, 40px);
	height: clamp(30px, 2.08vw, 40px);
	border-radius: 200px;
	background-color: #222;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	transition: 0.3s;
}
#sec4 .right .button_wrapper button .inner::after {
	content: "";
	width: clamp(30px, 2.08vw, 40px);
	height: clamp(30px, 2.08vw, 40px);
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 0;
	border-radius: 50%;
	transform: translateY(-50%) rotate(180deg);
	border: 1px solid #222;
	background-image: url(../img/new_left_arrow.svg);
	background-size: clamp(10px, 0.73vw, 14px) clamp(12px, 0.83vw, 16px);
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	transition: 0.3s
}
#sec4 .right .button_wrapper button .txt {
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 500;
	color: #fff;
}
#sec4 .right .button_wrapper .prev_btn .inner {
	left: auto;
	right: 0;
	padding-right: 0;
}
#sec4 .right .button_wrapper .prev_btn .inner::after {
	transform: translateY(-50%);
	right: auto;
	left: 0;
}
#sec4 .right .button_wrapper .first_next_btn:hover {
	width: clamp(75px, 5.73vw, 110px);
	padding-left: clamp(10px, 1.04vw, 20px);
}
#sec4 .right .button_wrapper button:hover .inner {
	width: clamp(75px, 5.73vw, 110px);
	padding-left: clamp(10px, 1.04vw, 20px);
}
#sec4 .right .button_wrapper button:hover .inner::after {
	width: clamp(20px, 1.56vw, 30px);
	height: clamp(20px, 1.56vw, 30px);
	right: 5px;
}
#sec4 .right .button_wrapper .prev_btn:hover .inner {
	padding-left: 0;
	padding-right: clamp(10px, 1.04vw, 20px);
}
#sec4 .right .button_wrapper .prev_btn:hover .inner::after {
	width: clamp(20px, 1.56vw, 30px);
	height: clamp(20px, 1.56vw, 30px);
	right: auto;
	left: 5px;
}
#sec4 .right .button_wrapper .submit_btn:hover .inner {
	width: clamp(105px, 6.51vw, 125px);
}
#sec4 .right .input_wrapper .w140 {
	
	width: clamp(120px, 7.29vw, 140px);
	margin-right: clamp(7px, 0.78vw, 15px);
}
#sec4 .right .input_wrapper .w210 {
	width: clamp(190px, 10.94vw, 210px);
	margin-right: clamp(7px, 0.78vw, 15px);
}
#sec4 .right .input_wrapper .w235 {
	width: clamp(215px, 12.24vw, 235px);
	margin-right: clamp(7px, 0.78vw, 15px);
}
#sec4 .right .step1 .input_wrapper label {
	width: clamp(75px, 4.90vw, 94px);
}
#sec4 .right .step3 .input_wrapper label {
	width: clamp(30px, 2.34vw, 45px);
}
#sec4 .right .result {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: calc(100% - clamp(50px, 5.21vw, 100px));
  top: clamp(5px, 0.52vw, 10px);
  left: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  padding: 0 clamp(35px, 3.65vw, 70px) clamp(30px, 3.13vw, 60px);
}
#sec4 .right .result .result_val span {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #D65D23;
}
#sec4 .right .result .result_val h3 {
	font-size: clamp(22px, 1.46vw, 28px);
	font-weight: 700;
	position: relative;
}
#sec4 .right .result .result_val h3::before {
	content: "[";
	font-size: clamp(22px, 1.46vw, 28px);
	font-weight: 700;
	color: #D65D23;
	display: block;
	position: absolute;
	left: 0;
	bottom: 3px;
}
#sec4 .right .result .result_val h3::after {
	content: "]";
	font-size: clamp(22px, 1.46vw, 28px);
	font-weight: 700;
	color: #D65D23;
	display:block;
	position: absolute;
	right: 0;
	bottom: 3px;
}
#sec4 .right .result .result_txt span {
	font-size: clamp(14px, 0.83vw, 16px);
	color: #D65D23;
	word-break: break-all;
	line-height: 1.5;
}
#sec4 .right .result .result_txt p {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #444;
	line-height: 1.5;
}
#sec4 .right .result .btn_wrapper a {
	width: calc(100% - clamp(70px, 7.29vw, 140px));
	background-color: #D65D23;
	color: #fff;
	font-size: clamp(16px, 0.94vw, 18px);
	font-weight: 700;
	line-height: clamp(40px, 3.23vw, 62px);
	border-radius: 8px;
	position: absolute;
	bottom: 0;
}
#sec4 .right .result.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ------------------- 섹션5 -------------------- */
#sec5 {
	background-image: url(../img/sec5_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}
#sec5 .sec5_cont ul {
	height: clamp(380px, 26.56vw, 510px);
}
#sec5 .sec5_cont li {
	width: calc(100% / 3);
	height: 100%;
	position: relative;
	overflow: hidden;
}
#sec5 .sec5_cont li a {
	height: 100%;
	position: relative;
	z-index: 10;
}
#sec5 .sec5_cont li::before {
	content: "";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.5s ease;
}
#sec5 .sec5_cont li::after {
	content: "";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.5s ease;
	opacity: 0;
}
#sec5 .sec5_cont li:hover::after {
	opacity: 1;
}
#sec5 .sec5_cont .txt {
	flex-direction: column;
	
}
#sec5 .sec5_cont .txt h3 {
	font-size: clamp(26px, 2.08vw, 40px);
	font-weight: 700;
	color: #fff;
}
#sec5 .sec5_cont .txt p {
	font-size: clamp(16px, 1.04vw, 20px);
	color: #fff;
	line-height: 1.5;
	margin-bottom: 0;
	transition: all 0.5s;
}
#sec5 .sec5_cont .txt::after {
	content: "";
	width: clamp(40px, 3.13vw, 60px);
	height: clamp(40px, 3.13vw, 60px);
	border: 1px solid #fff;
	background-image: url(../img/new_left_arrow_w.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: clamp(13px, 2.40vw, 18px) clamp(15px, 2.67vw, 20px);
	display: block;
	transform: rotate(180deg) translateY(20px);
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	top: 63%;
}
#sec5 .sec5_cont li:hover .txt::after {
	opacity: 1;
	visibility: visible;
	position: relative;
	transform: rotate(180deg) translateY(0);
}
#sec5 .sec5_cont li:hover .txt p {
	padding-bottom: clamp(30px, 2.60vw, 50px);
}
#sec5 .sec5_cont .item1 {
	border-top-left-radius: 50px;
}
#sec5 .sec5_cont .item2 {
	transition-delay: 0.1s;
}
#sec5 .sec5_cont .item3 {
	border-bottom-right-radius: 50px;
	transition-delay: 0.2s;
}
#sec5 .sec5_cont .item1::before {
	background-image: url(../img/sec5_img1.png);
}
#sec5 .sec5_cont .item1::after {
	background-image: url(../img/sec5_img4.png);
}
#sec5 .sec5_cont .item2::before {
	background-image: url(../img/sec5_img2.png);
}
#sec5 .sec5_cont .item2::after {
	background-image: url(../img/sec5_img5.png);
}
#sec5 .sec5_cont .item3::before {
	background-image: url(../img/sec5_img3.png);
}
#sec5 .sec5_cont .item3::after {
	background-image: url(../img/sec5_img6.png);
}
/* ------------------- 섹션6 -------------------- */
#sec6 {
	background-image: url(../img/sec6_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#sec6 .sec_tit {
	position: relative;
}
#sec6 .sec_tit h2, #sec6 .sec_tit p {
	color: #fff;
}
#sec6 .sec_tit .view_more_btn, #sec6 .m_view_more_btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: background-color 0.4s;
	border: 1px solid #fff;
}

#sec6 .sec_tit .view_more_btn::before, #sec6 .sec_tit .view_more_btn::after, #sec6 .m_view_more_btn::before, #sec6 .m_view_more_btn::after {
	background-image: url(../img/new_left_arrow_w.svg);
}
#sec6 .sec6_cont li {
	width: calc((100% - clamp(40px, 4.17vw, 80px)) / 2);
}
#sec6 .sec6_cont li .youtube_wrapper {
	width: 100%;
	height: clamp(270px, 22.40vw, 430px);
	position: relative;
}
#sec6 .sec6_cont li .youtube_wrapper .youtube_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#sec6 .sec6_cont li .youtube_wrapper .img_wrapper {
	border-radius:20px;
	overflow:hidden;
}
#sec6 .sec6_cont li:first-child .youtube_wrapper::after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #444;
	display: block;
	position: absolute;
	right: calc(clamp(20px, 2.08vw, 40px) * -1);
	top: 0;
}
#sec6 .sec6_cont li .youtube_wrapper iframe {
	border-radius: 10px;
}
#sec6 .sec6_cont li p {
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 700;
	color: #fff;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec6 .sec6_cont .item2 {
	transition-delay: 0.1s;
}

/* ------------------- 섹션7 -------------------- */
#sec7 {
  background-image: url(../img/sec7_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sec7 .container {
	max-width: 100%;
	width: 100%;
	margin-left: max((100vw - 1600px) / 2, 5%);
}
#sec7 .sec_tit h2, #sec7 .sec_tit p {
	color: #fff;
}
#sec7 .sec_tit p {
	line-height: 1.5;
}
#sec7 .sec_tit .view_more_btn, #sec7 .sec7_cont .m_view_more_btn {
	border: 1px solid #fff;
}
#sec7 .sec_tit .view_more_btn::before, #sec7 .sec_tit .view_more_btn::after, #sec7 .sec7_cont .m_view_more_btn::before, #sec7 .sec7_cont .m_view_more_btn::after {
	background-image: url(../img/new_left_arrow_w.svg);
}
#sec7 .sec7_cont .left {
	width: clamp(250px, 22.40vw, 430px);
	position: relative;
	z-index: 15;
}
#sec7 .sec7_cont .right {
	width: calc(100% - clamp(250px, 22.40vw, 430px));
}
#sec7 .sec7_cont .news_swiper {
	height: clamp(270px, 19.27vw, 370px);
	overflow: hidden;
}
#sec7 .sec7_cont .news_swiper .swiper-container{
	height: 100%;
}
#sec7 .sec7_cont .news_swiper .swiper-slide a{
	flex-direction: column;
	height: 100%;
	background-color: #ffff;
	border: 1px solid #ddd;
	padding: clamp(30px, 2.60vw, 50px);
	transition: 0.5s;
}
#sec7 .sec7_cont .news_swiper .swiper-slide .txt h3 {
	font-size: clamp(22px, 1.67vw, 32px);
	line-height: 1.5;
	font-weight: 600;
	word-break: break-all;
	-webkit-line-clamp: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	
}
#sec7 .sec7_cont .news_swiper .swiper-slide .txt p {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #444;
	line-height: 1.6;
	word-break: break-all;
	-webkit-line-clamp: 3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#sec7 .sec7_cont .news_swiper .swiper-slide .media {
	font-size: clamp(14px, 0.83vw, 16px);
	color: #999;
	font-weight: 300;
}
#sec7 .sec7_cont .news_swiper .swiper-slide a:hover {
	background-color: var(--color-point);
	border-color: var(--color-point);
}
#sec7 .sec7_cont .news_swiper .swiper-slide a:hover .txt h3, #sec7 .sec7_cont .news_swiper .swiper-slide a:hover p{
	color: #fff;
}
#sec7 .sec7_cont .m_view_more_btn {
	display: none;
}
/* ------------------- 섹션8 -------------------- */
#sec8 .sec_tit p{
	line-height: 1.6;
}
#sec8 .sec8_cont {
	position: relative;
	align-self: flex-start;
}
#sec8 .sec8_cont .left {
	width: clamp(290px, 21.88vw, 420px);
	height: fit-content;
	position: sticky;
	top: 100px;
}
#sec8 .sec8_cont .left .lawyer_link {
	background-image: url(../img/sec8_img1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: clamp(30px, 2.60vw, 50px);
	border-radius: 10px;
	transition: 0.3s;
}
#sec8 .sec8_cont .left .lawyer_link .txt::after {
	content: "";
	width: clamp(12px, 1.04vw, 20px);
	height: clamp(12px, 1.04vw, 20px);
	background-image: url(../img/sitemap_arrow_w.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	margin-top: clamp(30px, 2.60vw, 50px);
}
#sec8 .sec8_cont .left .lawyer_link .txt h3 {
	font-size: clamp(24px, 1.67vw, 32px);
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
}
#sec8 .sec8_cont .left .lawyer_link .txt p {
	font-size: clamp(16px, 0.94vw, 18px);
	color: #fff;
	line-height: 1.6;
}
#sec8 .sec8_cont .left .lawyer_link:hover {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
#sec8 .sec8_cont .right {
	width: calc(100% - clamp(350px, 32.81vw, 630px));
}
#sec8 .sec8_cont .right ul {
	border-bottom: 1px solid #ddd;
}
#sec8 .sec8_cont .right li {
	border-top: 1px solid #ddd;
	padding: clamp(25px, 2.08vw, 40px);
	transition: 0.4s;
}
#sec8 .sec8_cont .right li .question {
	font-size: clamp(22px, 1.56vw, 30px);
	font-weight: 700;
	cursor: pointer;
	transition: 0.4s;
}
#sec8 .sec8_cont .right li .question .icon {
	width: clamp(12px, 1.04vw, 20px);
	height: 2px;
	background-color: #222;
	position: relative;
	transition: 0.4s;
	margin-top: clamp(12px, 0.89vw, 17px);
}
#sec8 .sec8_cont .right li .question .icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: inherit;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
}
#sec8 .sec8_cont .right li .answer {
	font-size: clamp(18px, 1.04vw, 20px);
	color: #666;
	line-height:1.5;
	display: none;
}
#sec8 .sec8_cont .right .on {
	border-top-color: #D65D23;
}
#sec8 .sec8_cont .right .on .question {
	color: #D65D23;
}
#sec8 .sec8_cont .right .on .question .icon {
	transform: rotate(45deg);
	background-color: #D65D23;
}
#sec8 .sec8_cont .m_lawyer_link {
	display: none;
}
/* ------------------- 섹션 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(214, 93, 35, 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(214, 93, 35, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px  rgba(214, 93, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0  rgba(214, 93, 35, 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 .sec_tit h2 span {
	font-size: clamp(65px, 5.21vw, 100px);
}
#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%;
  /*cursor: default;
  pointer-events: none;*/
}
#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: 1200px) {
	#sec4 .container {
		margin-left: 0;
		margin: 0 auto;
	}
	#sec4 .sec4_cont {
		flex-direction: column;
		align-items: center;
	}
	#sec4 .left {
		margin-right: 0;
		width: 100%;
		padding-bottom: 0;
		margin-bottom: 100px;
	}
	#sec4 .left li {
		padding: 30px;
	}
	#sec4 .left li p {
		font-size: 22px;
	}
	#sec4 .right {
		width: 55%;
		height: clamp(600px, 58.33vw, 700px);
	}
	#sec4 .right .step_tit span {
		font-size: clamp(24px, 2.33vw, 28px);
	}
	#sec4 .right .step_tit h3 {
		font-size: clamp(20px, 2.00vw, 24px);
	}
	#sec4 .right .input_area {
		padding: 0 clamp(20px, 3.33vw, 40px);
	}
	#sec4 .right .input_wrapper {
		padding: clamp(10px, 1.67vw, 20px);
	}
	#sec4 .right .input_wrapper input {
		font-size: 18px;
		padding: 15px;
	}
	#sec4 .right .input_wrapper input[type="radio"] + span {
		width: 18px;
		height: 18px;
	}
	#sec4 .right .input_wrapper input[type="radio"]:checked + span::after {
		width: 10px;
		height: 10px;
	}
	#sec4 .right .input_wrapper input[type="checkbox"] + span {
		width: 18px;
		height: 18px;
	}
	#sec4 .right .input_wrapper input[type="checkbox"]:checked + span {
		background-size: 14px;
	}
	#sec4 .right .input_wrapper .w140 {
		width: calc(100% - clamp(112px, 10.17vw, 122px));
	}
	#sec4 .right .input_wrapper .w210 {
		width: calc(100% - clamp(45px, 3.75vw, 45px));
	}
	#sec4 .right .input_wrapper .w235 {
		width: calc(100% - clamp(40px, 3.33vw, 40px));
	}
	#sec4 .right .step1 .input_wrapper label {
		width: clamp(75px, 7.08vw, 85px);
	}
	#sec4 .right .button_wrapper .first_next_btn {
		width: 40px;
		height: 40px;
	}
	
	#sec4 .right .button_wrapper button {
		padding: 20px;
	}
	#sec4 .right .button_wrapper .first_next_btn:hover {
		width: 110px;
	}
	#sec4 .right .button_wrapper button .inner {
		width: 40px;
		height: 40px;
	}
	#sec4 .right .button_wrapper button:hover .inner {
		width: 110px;
	}
	#sec4 .right .button_wrapper button .txt {
		font-size: 16px;
	}
	#sec4 .right .button_wrapper button .inner::after {
		width: 40px;
		height: 40px;
	}
	#sec4 .right .button_wrapper button:hover .inner::after {
		width: 30px;
		height: 30px;
		background-size: 16px 12px;
	}
	#sec4 .right .result .result_val span {
		font-size: 16px;
	}
	#sec4 .right .result .result_val h3 {
		font-size: 26px;
	}
	#sec4 .right .result .result_val h3::before, #sec4 .right .result .result_val h3::after {
		font-size: 26px;
	}
	#sec4 .right .result .result_txt span {
		font-size: 15px;
	}
	#sec4 .right .result .result_txt p {
		font-size: 18px;
	}
	#sec4 .right .result .btn_wrapper a {
		font-size: 18px;
		line-height: 62px;
	}
}

@media (max-width: 1150px) {
  #sec_location .right .seoul {
    left: 27%;
    top: 23.5%;
  }
  #sec_location .right .icbc {
    left: 19%;
  }
}

@media (max-width: 1100px) {
	#sec2 .sec2_cont ul {
		flex-direction: column;
	}
	#sec2 .sec2_cont ul li {
		width: 100%;
		height: auto;
	}
	#sec2 .sec2_cont ul li:not(:last-child) {
		margin-bottom: 20px;
	}
	#sec2 .sec2_cont .txt {
		padding: 50px;
	}
	#sec2 .sec2_cont .txt h3 {
		font-size: 30px;
	}
	#sec2 .sec2_cont .txt p {
		font-size: 22px;
	}
	#sec2 .sec2_cont ul li .hover_img .pc_img {
		display: none;
	}
	#sec2 .sec2_cont ul li .hover_img .mo_img {
		display: block;
	}
	#sec2 .sec2_cont .num {
		font-size: 80px;
	}
	
	#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%;
		/*cursor: default;
		pointer-events: none;*/
	}
	#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) {
	#sec1 .main_visual_swiper .swiper-pagination {
		left: 50%;
		top: auto;
		bottom: 24%;
		transform: translateX(-50%);
	}
	#sec1 .main_visual_swiper .swiper-pagination .custom-pagination {
		display: flex;
	}
	#sec1 .main_visual_swiper .swiper-pagination .custom-bullet:not(:last-child) {
		margin-bottom: 0;
		margin-right: 10px;
	}
	
	#sec5 .sec5_cont ul {
		flex-direction: column;
		height: auto;
	}
	#sec5 .sec5_cont ul li {
		height: clamp(300px, 35.00vw, 350px);
		width: 100%;
	}
	#sec5 .sec5_cont .txt h3 {
		font-size: 32px;
	}
	#sec5 .sec5_cont .txt p {
		font-size: 20px;
	}
	#sec5 .sec5_cont .txt::after {
		width: 50px;
		height: 50px;
	}
	
	#sec6 .sec_tit {
		position: unset;
	}
	#sec6 .sec6_cont {
		position: relative;
		padding-bottom: 100px;
	}
	#sec6 .sec6_cont ul {
		flex-direction: column;
	}
	#sec6 .sec6_cont li {
		width: 100%;
	}
	#sec6 .sec6_cont li:not(:last-child) {
		margin-bottom: 80px;
	}
	#sec6 .sec6_cont li:first-child .youtube_wrapper::after {
		display: none;
	}
	#sec6 .sec6_cont li .youtube_wrapper {
		height: clamp(350px, 50.00vw, 500px);
	}
	#sec6 .sec6_cont li p {
		font-size: 22px;
	}
	#sec6 .sec6_cont .m_view_more_btn {
		width: 50px;
		height: 50px;
		display: block;
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 900px) {
	#sec8 .sec_tit {
		text-align: center;
	}
	#sec8 .sec_tit h2 br, #sec8 .sec_tit p br {
		display: none;
	}
	#sec8 .sec8_cont {
		flex-direction: column;
	}
	#sec8 .sec8_cont .left {
		width: 100%;
		position: static;
		top: 0;
	}
	#sec8 .sec8_cont .left .lawyer_link {
		display: none;
	}
	#sec8 .sec8_cont .right {
		width: 100%;
	}
}

@media (max-width: 850px) {
	#sec3 .sec_tit .view_more_btn {
		display: none;
	}
}

@media (max-width: 750px) {
	html, body {
		overflow-x: hidden;
	}
	.sec_tit h2 {
		font-size: clamp(25px, 7.07vw, 53px);
		line-height: 1.4;
	}
	.sec_tit h2 span {
		margin-right: 5px;
	}
	.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(24px, 7.20vw, 60px);
		line-height: 1.5;
	}
	#sec1 .main_visual_swiper .swiper-slide .slide_txt .txt p {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec1 .main_visual_swiper .swiper-pagination {
		/*bottom: clamp(180px, 24.00vw, 180px);*/
		bottom: 18%;
		width: fit-content;
	}
	#sec1 .main_visual_swiper .swiper-pagination .custom-bullet:not(:last-child) {
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec1 .main_visual_swiper .swiper-pagination .custom-bullet span {
		font-size: clamp(12px, 2.93vw, 22px);
		font-weight: 500;
	}
	#sec1 .main_visual_swiper .swiper-pagination .custom-bullet .progress-ring {
		width: clamp(31px, 8.27vw, 62px);
		height: clamp(31px, 8.27vw, 62px);
	}
	#sec1 .scroll {
		bottom: clamp(50px, 6.67vw, 50px);
	}
	#sec1 .scroll .icon {
		width: clamp(16px, 4.27vw, 32px);
		height: clamp(24px, 6.40vw, 48px);
	}
	#sec1 .scroll .icon span {
		width: clamp(5px, 1.33vw, 10px);
		height: clamp(5px, 1.33vw, 10px);
		animation: scroll_m 1s infinite ease-in-out alternate-reverse;
	}
	#sec1 .scroll .arrow i::before {
		width: clamp(7px, 1.87vw, 14px);
		height: clamp(4px, 1.07vw, 8px);
	}
	
	#sec2 .sec2_cont ul li:not(:last-child) {
		margin-bottom: clamp(10px, 2.67vw, 20px);
	}
	#sec2 .sec2_cont .txt {
		padding: clamp(30px, 10.67vw, 80px) clamp(25px, 6.67vw, 50px);
		border-radius: clamp(15px, 3.33vw, 25px);
	}
	#sec2 .sec2_cont .txt h3 {
		font-size: clamp(22px, 5.07vw, 38px);
	}
	#sec2 .sec2_cont .txt p {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec2 .sec2_cont .hover_img {
		border-radius: clamp(15px, 3.33vw, 25px);
	}
	#sec2 .sec2_cont .num {
		font-size: clamp(65px, 17.33vw, 130px);
		bottom: calc(clamp(23px, 6.00vw, 45px) * -1);
	}
	
	#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);
		overflow: hidden;
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper {
		height: clamp(230px, 64.00vw, 480px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .img_wrapper > img {
		transform: scale(0.75) translateY(calc(clamp(30px, 9.33vw, 70px) * -1));
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper {
		padding: clamp(15px, 4.00vw, 30px) clamp(25px, 6.67vw, 50px);
		height:clamp(160px, 41.33vw, 310px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl > span {
		font-size: clamp(14px, 3.47vw, 26px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt {
		font-size: clamp(16px, 3.73vw, 28px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dt > span {
		font-size: clamp(24px, 5.87vw, 44px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .txt_wrapper dl dd {
		font-size: clamp(14px, 3.73vw, 28px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .s_mark {
		width: clamp(70px, 16.00vw, 120px);
		height: clamp(70px, 16.00vw, 120px);
		top: clamp(200px, 56.00vw, 420px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .s_mark img {
		width: clamp(50px, 12.00vw, 90px);
		height: clamp(50px, 12.00vw, 90px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .pro img {
		height: clamp(42px, 11.20vw, 84px);
	}
	#sec3 .lawyer_swiper .swiper-slide a .sol img {
		width: clamp(50px, 13.20vw, 99px)
	}
	#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet {
		width: clamp(10px, 1.87vw, 14px);
		height: clamp(10px, 1.87vw, 14px);
	}
	#sec3 .lawyer_swiper .swiper-pagination .swiper-pagination-bullet-active {
		width: clamp(25px, 4.80vw, 36px);
	}
	
	#sec4 .sec_tit {
		text-align: center;
	}
	#sec4 .left {
		margin-bottom: clamp(45px, 12.00vw, 90px);
	}
	#sec4 .left li {
		padding: clamp(20px, 5.33vw, 40px);
		width: calc((100% - clamp(15px, 4.00vw, 30px)) / 2);
	}
	#sec4 .left li:first-child, #sec4 .left li:nth-of-type(2) {
		margin-bottom: clamp(10px, 2.67vw, 20px);
	}
	#sec4 .left li p {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec4 .right {
		width: 100%;
		height: clamp(580px, 150.00vw, 1125px);
		padding: clamp(18px, 4.67vw, 35px) 0 0;
	}
	#sec4 .right .progress {
		height: clamp(5px, 1.33vw, 10px);
		margin: 0 clamp(43px, 11.33vw, 85px);
	}
	#sec4 .right .step {
		height: calc(100% - clamp(30px, 8.00vw, 60px));
	}
	#sec4 .right .step_tit span {
		font-size: clamp(18px, 4.53vw, 34px);
	}
	#sec4 .right .step_tit h3 {
		font-size: clamp(22px, 5.07vw, 38px);
	}
	#sec4 .right .step_tit p {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec4 .right .input_area {
		padding: 0 clamp(25px, 6.67vw, 50px);
	}
	#sec4 .right .input_wrapper {
		padding: clamp(10px, 2.67vw, 20px) clamp(20px, 5.33vw, 40px);
	}
	#sec4 .right .input_wrapper input {
		font-size: clamp(14px, 4.00vw, 30px);
		padding: clamp(16px, 4.13vw, 31px);
	}
	#sec4 .right .input_wrapper label, #sec4 .right .input_wrapper p {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec4 .right .input_wrapper input[type="radio"] + span {
		width: clamp(20px, 5.33vw, 40px);
		height: clamp(20px, 5.33vw, 40px);
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec4 .right .input_wrapper input[type="radio"]:checked + span::after {
		width: clamp(12px, 3.20vw, 24px);
		height: clamp(12px, 3.20vw, 24px);
	}
	#sec4 .right .input_wrapper input[type="checkbox"] + span {
		width: clamp(20px, 5.33vw, 40px);
		height: clamp(20px, 5.33vw, 40px);
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec4 .right .input_wrapper input[type="checkbox"]:checked + span {
		background-size: clamp(12px, 3.20vw, 24px);
	}
	#sec4 .right .input_wrapper .w140 {
		margin-right: clamp(10px, 2.67vw, 20px);
		width: calc(100% - clamp(105px, 30.67vw, 230px));
	}
	#sec4 .right .input_wrapper .w210 {
		margin-right: clamp(10px, 2.67vw, 20px);
		width: calc(100% - clamp(60px, 18.00vw, 135px));
	}
	#sec4 .right .input_wrapper .w235 {
		margin-right: clamp(10px, 2.67vw, 20px);
		width: 100%;
	}
	#sec4 .right .step1 .input_wrapper label {
		width: clamp(70px, 21.33vw, 160px);
	}
	#sec4 .right .step2 .input_wrapper, #sec4 .right .step6 .input_wrapper {
		padding: clamp(18px, 4.67vw, 35px) clamp(20px, 5.33vw, 40px);
	}
	#sec4 .right .step3 .input_wrapper label {
		width: clamp(38px, 11.33vw, 85px);
	}
	#sec4 .right .button_wrapper {
		bottom: clamp(25px, 6.67vw, 50px);
	}
	#sec4 .right .button_wrapper button {
		padding: clamp(25px, 6.67vw, 50px);
	}
	#sec4 .right .button_wrapper .first_next_btn {
		width: clamp(50px, 13.33vw, 100px);
		height: clamp(50px, 13.33vw, 100px);
	}
	#sec4 .right .button_wrapper .prev_btn {
		margin-right: clamp(10px, 2.67vw, 20px);
	}
	#sec4 .right .button_wrapper .first_next_btn:hover {
		width: clamp(125px, 33.33vw, 250px);
	}
	#sec4 .right .button_wrapper button .inner {
		width: clamp(50px, 13.33vw, 100px);
		height: clamp(50px, 13.33vw, 100px);
	}
	#sec4 .right .button_wrapper button .txt {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec4 .right .button_wrapper button:hover .inner {
		width: clamp(125px, 33.33vw, 250px);
		padding-left: clamp(15px, 4.00vw, 30px);
	}
	#sec4 .right .button_wrapper .prev_btn:hover .inner {
		width: clamp(125px, 33.33vw, 250px);
		padding-left: 0;
		padding-right: clamp(15px, 4.00vw, 30px);
	}
	#sec4 .right .button_wrapper .submit_btn:hover .inner {
		width: clamp(125px, 33.33vw, 250px);
	}
	#sec4 .right .button_wrapper button .inner::after {
		width: clamp(50px, 13.33vw, 100px);
		height: clamp(50px, 13.33vw, 100px);
		background-size: clamp(14px, 3.73vw, 28px) clamp(19px, 5.07vw, 38px);
	}
	#sec4 .right .button_wrapper button:hover .inner::after {
		width: clamp(40px, 10.67vw, 80px);
		height: clamp(40px, 10.67vw, 80px);
		background-size: clamp(14px, 3.73vw, 28px) clamp(19px, 5.07vw, 38px);
	}
	#sec4 .right .button_wrapper .prev_btn:hover .inner::after {
		width: clamp(40px, 10.67vw, 80px);
		height: clamp(40px, 10.67vw, 80px);
		background-size: clamp(14px, 3.73vw, 28px) clamp(19px, 5.07vw, 38px);
	}
	#sec4 .right .result {
		padding: 0 clamp(43px, 11.33vw, 85px) 0;
		top: 0;
		height: calc(100% - clamp(25px, 6.67vw, 50px));
	}
	#sec4 .right .result .result_val span {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec4 .right .result .result_val h3 {
		font-size: clamp(22px, 5.07vw, 38px);
	}
	#sec4 .right .result .result_val h3::before, #sec4 .right .result .result_val h3::after {
		font-size: clamp(22px, 5.07vw, 38px);
	}
	#sec4 .right .result .result_txt span {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec4 .right .result .result_txt p {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec4 .right .result .btn_wrapper a {
		width: calc(100% - clamp(85px, 22.67vw, 170px));
		font-size: clamp(18px, 4.53vw, 34px);
		line-height: clamp(60px, 16.00vw, 120px);
	}
	
	#sec5 .sec5_cont ul li {
		height: clamp(200px, 53.33vw, 400px);
	}
	#sec5 .sec5_cont .txt h3 {
		font-size: clamp(24px, 5.33vw, 40px);
	}
	#sec5 .sec5_cont .txt p {
		font-size: clamp(14px, 4.00vw, 30px);
	}
	#sec5 .sec5_cont .txt::after {
		display: none;
	}
	#sec5 .sec5_cont li:hover .txt p {
		padding-bottom: 0;
	}
	
	#sec6 .sec6_cont {
		padding-bottom: clamp(80px, 21.33vw, 160px)
	}
	#sec6 .sec6_cont li:not(:last-child) {
		margin-bottom: clamp(50px, 13.33vw, 100px);
	}
	#sec6 .sec6_cont li .youtube_wrapper {
		height: clamp(181px, 50.67vw, 380px);
	}
	#sec6 .sec6_cont li p {
		font-size: clamp(16px, 4.00vw, 30px);
	}
	#sec6 .sec6_cont .m_view_more_btn {
		width: clamp(50px, 13.33vw, 100px);
		height: clamp(50px, 13.33vw, 100px);
	}
	#sec6 .sec6_cont .m_view_more_btn::after, #sec6 .sec6_cont .m_view_more_btn::before {
		width:clamp(19px, 5.07vw, 38px);
		height: clamp(14px, 3.73vw, 28px);
	}
	
	#sec7 .container {
		width: 100%;
	}
	#sec7 .sec_tit {
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	#sec7 .sec_tit p {
		padding-bottom: 0;
	}
	#sec7 .sec_tit .view_more_btn {
		display: none;
	}
	#sec7 .sec7_cont {
		flex-direction: column;
		position: relative;
		padding-bottom: clamp(80px, 21.33vw, 160px);
	}
	#sec7 .sec7_cont .left {
		width: 100%;
		padding-top: 0;
	}
	#sec7 .sec7_cont .right {
		width: 95%;
		margin-left: 5%;
	}
	#sec7 .sec7_cont .news_swiper {
		height: clamp(238px, 63.33vw, 475px);
	}
	#sec7 .sec7_cont .news_swiper .swiper-slide a {
		padding: clamp(25px, 8.00vw, 60px);
	}
	#sec7 .sec7_cont .news_swiper .swiper-slide .txt h3 {
		font-size: clamp(20px, 5.07vw, 38px);
		-webkit-line-clamp: 2;
	}
	#sec7 .sec7_cont .news_swiper .swiper-slide .txt p {
		font-size: clamp(14px, 4.00vw, 30px); 
	}
	#sec7 .sec7_cont .news_swiper .swiper-slide .media {
		font-size: clamp(12px, 3.47vw, 26px);
	}
	#sec7 .sec7_cont .m_view_more_btn {
		position: absolute;
		display: block;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: clamp(50px, 13.33vw, 100px);
		height: clamp(50px, 13.33vw, 100px);
	}
	#sec7 .sec7_cont .m_view_more_btn::before, #sec7 .sec7_cont .m_view_more_btn::after {
		width:clamp(19px, 5.07vw, 38px);
		height: clamp(14px, 3.73vw, 28px);
	}
	
	#sec8 .sec_tit h2 br, #sec8 .sec_tit p br {
		display: block;
	}
	#sec8 .sec8_cont .right li {
		padding: clamp(30px, 8.00vw, 60px) clamp(20px, 5.33vw, 40px);
	}
	#sec8 .sec8_cont .right li .question {
		font-size: clamp(20px, 5.07vw, 38px);
		line-height: 1.5;
	}
	#sec8 .sec8_cont .right li .question .txt {
		width: calc(100% - clamp(30px, 8.00vw, 60px));
	}
	#sec8 .sec8_cont .right li .question .icon {
		width: clamp(18px, 4.80vw, 36px);
		margin-top: clamp(14px, 3.73vw, 28px);
	}
	#sec8 .sec8_cont .right li .answer {
		font-size: clamp(14px, 4.00vw, 30px);
		line-height: 1.5;
	}
	#sec8 .sec8_cont .m_lawyer_link {
		display: block;
		width: 100%;
		background-image: url(../img/sec8_img1.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		padding: clamp(30px, 8.00vw, 60px);
		border-radius: 10px;
	}
	#sec8 .sec8_cont .m_lawyer_link .txt::after {
		content: "";
		width: clamp(12px, 3.20vw, 24px);
		height: clamp(12px, 3.20vw, 24px);
		background-image: url(../img/sitemap_arrow_w.svg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: block;
		margin-top: clamp(40px, 10.67vw, 80px)
	}
	#sec8 .sec8_cont .m_lawyer_link .txt h3 {
		font-size: clamp(22px, 5.33vw, 40px);
		font-weight:700;
		color: #fff;
	}
	#sec8 .sec8_cont .m_lawyer_link .txt p {
		font-size: clamp(14px, 3.73vw, 28px);
		color: #fff;
		line-height: 1.5;
	}
	
	
	#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) {
	#sec1 .main_visual_swiper .swiper-pagination {
		bottom: 25%;
	}
	#sec1 .scroll {
		bottom: 10%;
	}
	 #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) {
	#sec1 .main_visual_swiper .swiper-pagination {
		bottom: 31%;
	}
	#sec1 .scroll {
		bottom: 17%;
	}
	#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 scroll {
	0% {
		top: 10px;
	}
	100% {
		top: 20px;
	}
}
@keyframes scroll_m {
	0% {
		top: clamp(5px, 1.33vw, 10px);
	}
	100% {
		top: clamp(12px, 4.00vw, 30px);
	}
}
@keyframes opacity {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

@keyframes link_arrow {
	50% {
		transform: translateX(3px);
	}
}