@charset "utf-8";

/* header */
header{
  width: 100%; height: 75px;
  position: fixed;
  top: 0px; left: 0px;
  /* background: rgba(255, 255, 255, .5); */
  background: #fff;
  z-index: 9999;
}
.h_inner{
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.h_inner > h1{
  width: 140px;
  position: absolute;
  top: 50%; left: 3.5%;
  transform: translateY(-50%);
}
.h_inner > h1 > a > img{width: 100%;}

.h_inner > .mnu{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.h_inner > .mnu > a{
  padding: 7px 13px;
  margin: 0 11px;
  transition: .3s;
  /* font-weight: 400; */
  font-size: 17px;
}


.h_inner > .brochure{
  width: fit-content;
  font-size: 15px;
  position: absolute; 
  top: 50%; right: 3.5%;
  transform: translateY(-50%);
  transition: .5s;
  
  > .feather{
  	margin-right: 7px;
  	width: 18px; height: 18px;
  }
}

.tm_mnu{display: none;}

.mnu_scroll{overflow-y: hidden;}





/* main */
main{
  margin-top: 130px;
}

.m_title{text-align: center;}
.m_title > p{
  font-size: 20px;
  color: var(--point-color);
  margin-bottom: 15px;
  font-weight: 500;
}
.m_title > h2{
  font-size: 50px;
  line-height: 70px;
}

.banner{
  width: 98%; max-width: 1800px;
  height: 350px;
  background: var(--point-color);
  margin: 0 auto;
  border-radius: 60px;
  padding: 100px;
  box-sizing: border-box;
}
.banner > div{
  width: 80%;
  margin: 0 auto;
}
.banner > div > div{
  width: 50%;
  display: flex;
  align-items: center;
}

article{
  width: 98%;
  max-width: 1200px;
  margin: 200px auto;
}
article > h2{
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 80px;
}





/* button 공통서식 */
.btn{
	height: 48px;
	border-radius: 100px;
	padding: 11px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	font-size: 16px;
	cursor: pointer;
	box-sizing: border-box;
}
.btn.point{
	background: var(--point-color);
	color: #fff;
	transition: .5s;
}
.btn.border{
	background: #fff;
	color: var(--point-color);
	border: 1px solid #2181F0;
}

.t-btn{
	height: 48px;
	border-radius: 11px;
	padding: 7px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: var(--base-border);
	box-sizing: border-box;
	
	&:placeholder{color: var(--lighter-font);}
}

.full-btn{width: 100%;}
.half-btn{width: 49%;}






/* flex 공통서식 */
.flex{
	display: flex;
	align-items: center;
}
.flex.srt{justify-content: flex-start;}
.flex.bet{justify-content: space-between;}
.flex.cen{justify-content: center;}
.flex.end{justify-content: flex-end;}







/* footer */
footer{
  width: 98%; height: 400px;
  max-width: 1200px;
  position: relative;
  bottom: 0; left: 0px;
  margin: 0px auto;
}
.f_inner{
  width: 100%; height: 85%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 100px 0px;
  display: flex;
  justify-content: space-between;
}
.f_inner > div{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
} 

.c_info > h2{
  font-size: 20px;
  font-weight: 500;
}
.address > p{
  color: #777;
  line-height: 20px;
}
.c_info  > p{color: #777; font-size: 12px;}

.m_info{text-align: right;}
.m_info > .f_mnu > a{color: #777; margin-left: 30px;}
.m_info > .f_mnu > a > span{display: none;}
.m_info > .f_contact > p:first-child{margin: 15px 0;}













@media (hover:hover) {
  .m_info > .f_mnu > a:hover{color: #333;}
  .btn.point:hover{background: #1E74D8;}
  .h_inner > .mnu > a:hover{color: rgba(27, 27, 27, .3);}
}













/* tablet 해상도 */
@media screen and (min-width:767px) and (max-width:1536px) {

  header{
    height: 60px;
    background: #fff;
    border: var(--light-border);
  }

  .h_inner > h1{
    width: 120px;
    left: 1.5%;
  }
  
  .h_inner > .mnu{
    width: 70%;
    text-align: center;
  }
  .h_inner > .mnu > a{
    padding: 0;
    margin: 0 7px;
    transition: .3s;
    font-weight: 300;
  }
  
  .h_inner > .brochure{
    font-size: 14px;
    font-weight: 300;
    right: 1.5%;
  }
  
  .tm_mnu{display: none;}





/* main */
  main{
    margin-top: 100px;
  }

  .banner{padding: 40px;}
  .banner > div{
    /* display: inline-block; */
    width: 100%;
    justify-content: center;
  }
  .banner > div > div{
  	width: 100%;
  	display: flex;
  	justify-content: center;
  }
  
  article{
  	width: calc(100% - 40px);
    max-width: 1200px;
    margin: 100px auto;
  }
  article > h2{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 80px;
  }







/* footer */
  footer{height: 500px;}
  .f_inner{
    width: 93%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .f_inner > div{
    display: block;
    width: 100%;
  } 
  .f_inner > div > div{text-align: center;}
  .address > p{margin: 30px;}

  .f_mnu{margin-bottom: 60px;}
  .m_info > .f_mnu > a{font-size: 16px;}
  .m_info > .f_mnu > a > span{display: none;}
  .f_contact{margin-bottom: 60px;}
  .m_info > .f_contact > p:first-child{margin: 30px 0;}

  .c_info{order: 2; width: 100%;}
  .m_info{order: 1; width: 100%;}
}



.contact-pop > ul > li > input{min-width: 450px;}












/* mobile 해상도 */
@media screen and (max-width:767px) {
  header{
    height: 50px;
    background: #fff;
    border: var(--light-border);
  }
  .h_inner{width: 100%;}

  .h_inner > h1{width: 120px;}

  .h_inner > .mnu{
    position: fixed;
    width: 100%; height: calc(100dvh - 60px);
    top: 50px; left: 0;
    transform: translateY(0);
    z-index: 9000;
    background: #fff;
    padding: 20px 0;
    display: none;
  }
  .h_inner > .mnu > a{
    display: block;
    padding: 25px 10px;
    margin: 0 40px;
    font-size: 16px;
    
    &:not(:last-child){border-bottom: 1px solid #f3f3f3;}
  }

  .tm_mnu{
    display: block;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    padding: 10px;
  }
  .tm_mnu > .feather{
    width: 21px; height: 28px;
    color: #777;
    transition: .5s;
  }

  .h_inner > .brochure{
    font-size: 13px;
    /* font-weight: 300; */
    padding: 9px 11px;
    border-radius: 100px;
    height: auto;
    position: absolute;
    top: 50%; right: 13%;
    transform: translateY(-50%);
    
    > .feather{display: none;}
  }
  
  
  
  
  
  
  
  /* 공통 서식 */
  .btn{height: 42px;}







  /* main */
  main{
    margin-top: 70px;
    /* padding: 15px 15px 0 15px; */
  }

  .m_title > p{
    font-size: 16px;
    color: var(--point-color);
    margin-bottom: 0;
    font-weight: 500;
  }
  .m_title > h2{
    font-size: 26px;
    line-height: 50px;
  }

  .banner{
    height: fit-content;
    border-radius: 20px;
    padding: 20px;
  }
  .banner > div{
    display: inline-block;
    width: 100%;
  }
  .banner > div > div{width: 100%;}
  
  article{
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: 100px 15px;
    box-sizing: border-box;
  }
  article > h2{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
  }







/* footer */
  footer{height: 600px;}
  .f_inner{
    width: 93%; height: 100%;
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 15px;
    box-sizing: border-box;
  }
  .f_inner > div{
    display: block;
    width: 100%;
  } 
  .address{margin: 0;}
  .address > p{margin: 17px 0;}

  .c_info > h2{
    font-size: 15px;
  }
  .c_info > p{margin: 0;}

  .f_mnu{
    display: block;
    width: 100%;
  }
  .m_info > .f_mnu > a{
    font-size: 15px;
    display: block;
    padding: 10px 0;
    margin: 0;
    color: #333;
  }
  .m_info > .f_mnu > a > span{
    margin-top: 5px;
    color: #777;
    display: block;
  }
  .f_contact{margin: 40px 0;}
  .f_contact > p{color: #777;}

  .c_info{
    order: 2; 
    width: 100%; 
    text-align: left;
  }
  .m_info{
    order: 1; 
    width: 100%;
    text-align: left;
  }

}