/* common */
.section{
	/* padding: 110px 0; */
}
.tit{
	font-size: 40px;
	color: #121315;
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
	line-height: 1.5;
}

.tit .sm{
	display: block;
	font-size: 22px;
	line-height: 1;
	margin-bottom: 5px;
}

.tit .hl{
	background: #cdc081;
	display: inline-block;
	color: #fff;
	font-weight: 500;
	padding: 0 10px;
	line-height: 1.3;
}

.tit .sub{
	font-weight: 600;
	display: block;
	font-size: 30px;
}

.tit strong{
	font-weight: 600;
}

.conTxt{
	font-size: 30px;
	text-align: center;
	color: #222;
	line-height: 1.5;
	font-weight: 500;
}

.conTxt strong{
	font-weight: bold;
} 

.imgBox img{
	max-width: 100%;
}

.col{
	color: #cdc081;
}

.section .animated{
	animation-delay: 0.2s !important;
	animation-duration: 2s !important;
}

/* visual */
.visual{
	position: relative;
	height: 100vh;
	padding: 0 !important;
	overflow: hidden;
}

.visual::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 3;
}

.visual video{
	min-width: 100%;
	min-height: 100vh;
	/* width: 100%; */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.visual .txtBox{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	z-index: 5;
	opacity: 0;
}

.visual .txtBox.txt1{
	opacity: 1;
}

.visual .txtBox h2{
	color: #fff;
	font-size: 84px;
	line-height: 1.5;
	text-align: center;
	font-weight: 400;
	width: 100%;
	margin-bottom: 10px;
}

.visual .txtBox h2 strong{
	font-weight: 400;
}

.visual .txtBox p{
	color: #fff;
	font-size: 42px;
	text-align: center;
	line-height: 1.4;
}

.visual .txtBox.txt1{
	transition-delay: 3s !important;
	transition: all 1s;
	opacity: 1;
}

.visual.txton .txtBox.txt1{
	opacity: 0;
}

.visual .txtBox.txt1 h2{
	opacity: 0;
	transition-delay: 0s !important;
	transition: all 3s;
}

.visual.txton .txtBox.txt1 h2{
	opacity: 1;
}

.visual .txtBox.txt1 p{
	opacity: 0;
	transition-delay: 1s !important;
	transition: all 3s;
}

.visual.txton .txtBox.txt1 p{
	opacity: 1;
}

.visual .txtBox.txt2{
	transition-delay: 4s !important;
	transition: all 1s;
}

.visual.txton .txtBox.txt2{
	opacity: 1;
}

.visual.txton .txtBox.txt2 p{
	line-height: 1.6;
	width: 100%;
}

.blink {
  animation: blink 0.5s infinite;
  font-size: 42px;
}

@keyframes blink {
  to {
    opacity: 0;
  }
}

/* scrollBox */
.scrollBox{
	position: fixed;
	left: 50%;
	bottom: 100px;
	transform: translate(-50%,0);
	width: 50px;
	height: 80px;
	border-radius: 100px;
	box-sizing: border-box;
	border: 3px solid #fff;
	z-index: 20;
	display: block;
}

.scrollBox.off{
	display: none;
}

.scrollBox span{
	display: block;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-75%) rotate(135deg);
	animation: scroll 2s infinite;
}

@keyframes scroll{
	0%{top: 50%;}
	30%{top: 60%;}
	80%{top: 50%;}
}

/* section1 */
.section1{
	background: url(/include/img/section1_bg.jpg) no-repeat center / cover;
	position: relative;
}

.section1 .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section1 .inner .leftBox{
	width: 40%;
}

.section1 .inner .leftBox h2{
	font-size: 40px;
	line-height: 1.6;
	color: #fff;
}

.section1 .inner .leftBox h2::before{
	content: 'law firm myungheon';
	/* font-family: "km"; */
	font-size: 14px;
	display: block;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 15px;
}

.section1 .inner .rightBox{
	width: 50%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.section1 .inner .rightBox ul{
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	max-width: 700px;
	margin: auto;
	position: relative;
}

.section1 .inner .rightBox ul::after{
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #052131;
}

.section1 .inner .rightBox ul li{
	width: calc(100%/2);
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-right: 1px solid rgba(255,255,255,0.1);
	box-sizing: border-box;
	padding: 90px 40px;
}

.section1 .inner .rightBox ul li:nth-child(-n+2){
	border-top: 0;
}

.section1 .inner .rightBox ul li:nth-child(2n){
	border-right: 0;	
}

.section1 .inner .rightBox ul li:last-child{
	 border-right: 0;
}

.section1 .inner .rightBox ul li h5{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.section1 .inner .rightBox ul li h5 img{
	margin-right: 10px;
}

.section1 .inner .rightBox ul li h5 span{
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.section1 .inner .rightBox ul li p{
	font-size: 50px;
	color: #535f65;
	font-size: 25px;
}

.section1 .inner .rightBox ul li p span{
	font-family: "km";
	color: #fff;
	font-size: 70px;
}

/* section2 */
.section2{
	background: #58676e;
}

.section2 .slideUl li{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 100vh;
}

.section2 .slideUl li .imgBox img{
	width: auto;
	height: 80vh;
	max-width: none;
}

.section2 .slideUl li .txtBox{
	text-align: right;
}

.section2 .slideUl li .txtBox img{
	display: inline-block;
	margin-bottom: 40px;
	height: 50vh;
}

.section2 .slideUl li .txtBox p.ko{
	font-size: 20px;
	color: #fff;
	text-align: right;
}

.section2 .slideUl li .txtBox p.ko strong{
	font-family: "sc4";
	font-weight: normal;
	font-size: 40px;
}

.section2 .slideUl li .txtBox p.en{
	font-family: "km";
	color: #fff;
	font-size: 100px;
	line-height: 1;
	text-align: right;
	margin-bottom: 100px;
}
/* ===== section2 좌우 슬라이드 핵심 (추가) ===== */
.section2 .inner{
	overflow: hidden;
	position: relative;
}

.section2 .slideUl{
	display: flex;
	width: 100%;
	transition: transform 0.7s ease;
}

.section2 .slideUl li{
	min-width: 100%;
	flex-shrink: 0;
}


/* section3 */
.section3{
	background: url(/include/img/section3_bg.jpg) no-repeat center / cover;
	background-attachment: fixed;
}

.section3 .inner{
	
}

.section3 .inner .leftBox{
	width: 100%;
}

.section3 .inner .leftBox p{
	color: #fff;
	font-size: 20px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 50px;
}

.section3 .inner .leftBox h2{
	font-size: 40px;
	line-height: 1.4;
	font-weight: 400;
	text-align: center;
	color: #fff;
}

.section3 .inner .leftBox h2 strong{

}

.section3 .inner .leftBox h2::after{
	content: '';
	display: block;
	width: 100px;
	height: 6px;
	margin: 30px auto;
	background: #fff;
}

.section3 .inner .rightBox{
	width: 100%;
}

.section3 .inner .rightBox ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section3 .inner .rightBox ul li{
	width: calc(100%/3 - 40px/3);
	margin-right: 20px;
	margin-top: 20px;
}

.section3 .inner .rightBox ul li:nth-child(3n){
	margin-right: 0;
}

.section3 .inner .rightBox ul li:nth-child(-n+3){
	margin-top: 0px;
}

.section3 .inner .rightBox ul li a{
	display: block;
	position: relative;
	background: #021520;
	transition: all 0.4s;
}

.section3 .inner .rightBox ul li a:hover{
	box-shadow: rgba(0,0,0,0.2) 0 0 30px;
}

.section3 .inner .rightBox ul li a .imgBox{
	opacity: 0;
	transition: all 0.4s;
}

.section3 .inner .rightBox ul li a .imgBox img{
	width: 100%;
}

.section3 .inner .rightBox ul li a:hover .imgBox{
	opacity: 1;
}

.section3 .inner .rightBox ul li a .txtBox{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 85%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section3 .inner .rightBox ul li a .txtBox h5{
	color: #fff;
	font-size: 23px;
	line-height: 1.4;
}

.section3 .inner .rightBox ul li a .txtBox span{
	color: #fff;
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #fff;
	font-size: 16px;
	border-radius: 0px;
	opacity: 0;
	transition: all 0.4s;
}

.section3 .inner .rightBox ul li a:hover .txtBox span{
	opacity: 1;
}

.section3 .inner .rightBox ul li a::after{
	content: '';
	display: block;
	width: 90%;
	height: 21px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%,0);
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(/include/img/section3_txt_1.png);
}

.section3 .inner .rightBox ul li:nth-child(2) a::after{
	background-image: url(/include/img/section3_txt_2.png);
}

.section3 .inner .rightBox ul li:nth-child(3) a::after{
	background-image: url(/include/img/section3_txt_3.png);
}

.section3 .inner .rightBox ul li:nth-child(4) a::after{
	background-image: url(/include/img/section3_txt_4.png);
}

.section3 .inner .rightBox ul li:nth-child(5) a::after{
	background-image: url(/include/img/section3_txt_5.png);
}

.section3 .inner .rightBox ul li:nth-child(6) a::after{
	background-image: url(/include/img/section3_txt_6.png);
}

/* section4 */


/* section5 */


/* section10 */
.section10 .tit{
	margin-bottom: 0;
	line-height: 1;
}

.section10 .tit::after{
	content: '';
	display: block;
	width: 100px;
	height: 6px;
	background: #000;
	margin: 30px auto 50px;
}

.section10 article{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section10 article > div{
	box-sizing: border-box;
	padding: 30px;
}

.section10 article > div h3{
	font-size: 30px;
	font-weight: 600;
}

.section10 article > div h3::after{
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #333;
	margin: 15px 0;
}

.section10 article > div .conTxt{
	font-size: 18px;
	text-align: left;
	font-weight: 500;
	line-height: 1.5;
}

.section10 article .formDiv{
	width: calc(100%/2 - 35px/2);
	background: #f3f6f8;
}

.section10 article .formDiv h3 strong{
	
}

.section10 article .formDiv ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section10 article .formDiv ul li{
	margin-top: 15px;
	width: 100%;
}

.section10 article .formDiv ul li.half{
	width: calc(100%/2 - 24px/2);
}

.section10 article .formDiv ul li input,
.section10 article .formDiv ul li select,
.section10 article .formDiv ul li textarea{
	width: 100%;
	display: block;
	background: #fff;
	box-sizing: border-box;
	padding-left: 15px;
	height: 50px;
	line-height: 50px;
	border: 0;
	font-size: 16px;
	border-radius: 10px;
	color: #333;
	font-family: "sc4";
}

.section10 article .formDiv ul li textarea{
	height: 140px;
	line-height: 1.5;
	padding: 15px;
}

.section10 article .formDiv .perBox{
	display: flex;
	align-items: center;
	margin: 15px 0 20px;
}

.section10 article .formDiv .perBox label{
	font-size: 16px;
	margin-left: 10px;
}

.section10 article .formDiv .sendBtn{
	display: block;
	background: var(--mainCol);
	color: #fff;
	margin: auto;
	width: 200px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
}

.section10 article .rightBox{
	width: calc(100%/2 - 35px/2);
	background: #f3f6f8;
	position: relative;
}

.section10 article .rightBox .btnUl{
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.section10 article .rightBox .btnUl li{
	font-size: 15px;
	background: #fff;
	color: var(--mainCol);
	border: 1px solid #ccc;
	padding: 7px 15px;
	line-height: 1;
	cursor: pointer;
}

.section10 article .rightBox .btnUl li.on{
	background: var(--mainCol);
	color: #fff;
}

.section10 article .rightBox .btnUl li + li{
	margin-left: 5px;
}

.section10 article .rightBox .mapUl li{
	display: none;
}

.section10 article .rightBox .mapUl li.on{
	display: block;
}

.section10 article .rightBox h3{
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.section10 article .rightBox p{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

.section10 article > div.rightBox h3::after{
	display: none;
}

.section10 article .rightBox .mapBox iframe{
	height: 400px;
	width: 100%;
}

/* mainlnb */
.mainlnb{
	position: fixed;
	top: 50%;
	left: 50px;
	z-index: 1;
	transform: translateY(-50%);
}

.mainlnb ul li{
	position: relative;
}

.mainlnb ul li + li{
	margin-top: 10px;
}

.mainlnb ul li.on::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translateY(-50%);
}

.mainlnb.light ul li.on::before{
	background: var(--mainCol);
}

.mainlnb ul li a{
	color: #aaa;
	font-size: 15px;
}

.mainlnb ul li.on a{
	color: #fff;
	font-family: "sc7";
}

.mainlnb.light ul li.on a{
	color: var(--mainCol);
}

/* footer */
#footer,
#footer .fp-tableCell{
	height: auto !important;
}





/* ---------------------------------------------------------- 1500 */
@media screen and (max-width: 1500px){

/* section3 */
.section3 .inner .rightBox{
	width: 70%;
	margin: auto;
}

/* section10 */
.section10 .tit::after{
	margin: 30px auto 50px;
}

.section10 article > div{
	padding: 20px;
}

.section10 article > div h3{
	font-size: 24px;
}

.section10 article > div h3::after{
	margin: 10px 0;
}

.section10 article > div .conTxt{
	font-size: 16px;
}

.section10 article .formDiv ul li{
	margin-top: 10px;
}

.section10 article .formDiv ul li input,
.section10 article .formDiv ul li select,
.section10 article .formDiv ul li textarea{
	padding-left: 10px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
}

.section10 article .formDiv ul li textarea{
	height: 100px;
	padding: 10px;
}

.section10 article .formDiv .perBox{
	margin: 15px 0 20px;
}

.section10 article .formDiv .perBox label{
	font-size: 14px;
}

.section10 article .formDiv .sendBtn{
	height: 45px;
	line-height: 45px;
	font-size: 16px;
}

.section10 article .rightBox h3{
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.section10 article .rightBox p{
	margin-bottom: 15px;
}

.section10 article .rightBox .mapBox iframe{
	height: 300px;
	width: 100%;
}




}




/* ---------------------------------------------------------- 720 */
@media screen and (max-width: 720px){

/* common */
.tit{
	font-size: 5.5vw;
	margin-bottom: 3vw;
}

.tit .sm{
	font-size: 4vw;
	margin-bottom: 1vw;
}

.tit .hl{
	padding: 0 2vw;
}

.tit .sub{
	font-size: 4vw;
}

.subTit{
	font-size: 3vw;
}

.conTxt{
	font-size: 4.3vw;
}

/* section */
.section,
.section .fp-tableCell{
	height: auto !important;
}

.section{
	padding: 15vw 0;
}

/* visual */
.visual{
	height: 100vh !important;
}

.visual video{
	width: auto;
	height: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.visual .txtBox img{
	display: block;
	max-width: 153px;
	width: 25vw;
	margin-bottom: 20px;
}

.visual .txtBox h2{
	font-size: 12vw;
	margin-bottom: 1vw;
}

.visual .txtBox p{
	font-size: 5vw;
}

.blink {
  animation: blink 0.5s infinite;
  font-size: 5vw;
}

/* scrollBox */
.scrollBox{
	bottom: 30px;
	width: 9vw;
	height: 13vw;
	border: 2px solid #fff;
}

.scrollBox span{
	width: 3vw;
	height: 3vw;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/* section1 */
.section1{
	padding: 0 !important;
	background: #fff;
}

.section1 .inner{
	flex-wrap: wrap;
	width: 100%;
}

.section1 .inner .leftBox{
	background: url(/include/img/section1_bg_m.jpg) no-repeat top center / cover;
	width: 100%;
	text-align: center;
	padding: 12vw 5%;
}

.section1 .inner .leftBox h2{
	font-size: 5.5vw;
	text-align: left;
	opacity: 0;
}

.section1 .inner .leftBox h2::before {
    font-size: 2vw;
    margin-bottom: 2vw;
}

.section1 .inner .leftBox p{
	font-size: 3.5vw;
}

.section1 .inner .rightBox{
	width: 100%;
	position: static;
	left: auto;
	top: auto;
	background: var(--mainCol);
}

.section1 .inner .rightBox ul{
	width: 90%;
}

.section1 .inner .rightBox ul::after {
    width: 13vw;
    height: 13vw;
}

.section1 .inner .rightBox ul li{
	width: calc(100%/2);
	padding: 10vw 5vw;
}

.section1 .inner .rightBox ul li h5{
	margin-bottom: 5vw;
}

.section1 .inner .rightBox ul li h5 img{
	margin-right: 2vw;
	width: 4vw;
}

.section1 .inner .rightBox ul li h5 span{
	font-size: 2.5vw;
}

.section1 .inner .rightBox ul li p{
	font-size: 4vw;
	font-weight: 900;
}

.section1 .inner .rightBox ul li p span{
	font-size: 10vw;
	margin-right: 1vw;
}

/* section2 */
.section2{
	padding: 15vw 0 !important;
}

.section2 .slideUl li{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	position: relative;
}

.section2 .slideUl li .imgBox{
	width: 65%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
}

.section2 .slideUl li .imgBox img{
	width: 100%;
	height: auto;
}

.section2 .slideUl li .txtBox{
	text-align: right;
	width: 100%;
	opacity: 0;
}

.section2 .slideUl li .txtBox img{
	margin-bottom: 40vw;
	height: auto;
	width: 20%;
}

.section2 .slideUl li .txtBox p.ko{
	font-size: 2.5vw;
	margin-bottom: 2vw;
}

.section2 .slideUl li .txtBox p.ko strong{
	font-size: 4.5vw;
}

.section2 .slideUl li .txtBox p.en{
	font-size: 10vw;
	margin-bottom: 0px;
}

/* section3 */
.section3{
	background: url(/include/img/section3_bg.jpg) no-repeat center / cover;
}

.section3 .inner .leftBox{
	opacity: 0;
}

.section3 .inner .leftBox p{
	font-size: 3vw;
	margin-bottom: 7vw;
}

.section3 .inner .leftBox h2{
	font-size: 5.5vw;
}

.section3 .inner .leftBox h2::after{
	width: 20%;
	height: 3px;
	margin: 5vw auto;
}

.section3 .inner .rightBox{
	opacity: 0;
	width: 100%;
}

.section3 .inner .rightBox ul li{
	width: calc(100%/2 - 3vw/2);
	margin-right: 3vw !important;
	margin-top: 3vw !important;
}

.section3 .inner .rightBox ul li:nth-child(2n){
	margin-right: 0 !important;
}

.section3 .inner .rightBox ul li:nth-child(-n+2){
	margin-top: 0px !important;
}

.section3 .inner .rightBox ul li a:hover{
	box-shadow: rgba(0,0,0,0.2) 0 0 5vw;
}

.section3 .inner .rightBox ul li a .imgBox{
	opacity: 1;
}

.section3 .inner .rightBox ul li a .txtBox{
	width: 90%;
}

.section3 .inner .rightBox ul li a .txtBox h5{
	font-size: 4vw;
}

.section3 .inner .rightBox ul li a .txtBox span{
	padding: 1vw 2vw;
	font-size: 2.5vw;
	opacity: 0;
}

.section3 .inner .rightBox ul li a::after{
	height: 3vw;
	position: absolute;
	bottom: 5vw;
	background-size: contain;
}




/* section10 */
.section10 .tit{
	opacity: 0;
}

.section10 .tit::after{
	width: 20%;
	height: 3px;
	margin: 5vw auto 7vw;
}

.section10 article > div{
	padding: 5vw;
}

.section10 article > div h3{
	font-size: 4.5vw;
}

.section10 article > div h3::after{
	margin: 3vw 0;
}

.section10 article > div .conTxt{
	font-size: 3vw;
}

.section10 article .formDiv{
	width: calc(100%);
	background: #f3f6f8;
	opacity: 0;
	margin-top: 5vw;
}

.section10 article .formDiv ul li{
	margin-top: 2vw;
}

.section10 article .formDiv ul li.half{
	width: calc(100%/2 - 3vw/2);
}

.section10 article .formDiv ul li input,
.section10 article .formDiv ul li select,
.section10 article .formDiv ul li textarea{
	padding-left: 10px;
	height: 40px;
	line-height: 40px;
	font-size: 13px;
	border-radius: 6px;
}

.section10 article .formDiv ul li textarea{
	height: 120px;
	padding: 10px;
}

.section10 article .formDiv .perBox{
	margin: 15px 0 20px;
}

.section10 article .formDiv .perBox input{
	width: 13px;
}

.section10 article .formDiv .perBox label{
	font-size: 12px;
	margin-left: 5px;
}

.section10 article .formDiv .sendBtn{
	width: 150px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
}

.section10 article .rightBox{
	width: calc(100%);
	opacity: 0;
}

.section10 article .rightBox .btnUl{
	margin-left: 2vw;
}

.section10 article .rightBox .btnUl li{
	font-size: 3.5vw;
	padding: 2vw 4vw;
	line-height: 1;
	cursor: pointer;
}

.section10 article .rightBox h3{
	margin-bottom: 3vw;
}

.section10 article .rightBox p{
	font-size: 3vw;
	margin-bottom: 3vw;
}

.section10 article .rightBox .mapBox iframe{
	height: 60vw;
}






}