@charset "UTF-8";

/*******************************************************************************************************************************
 *** 헤더
*******************************************************************************************************************************/
header.header {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  height: 130px;
  background: #fff;
  transition: 0.9s;
  position: relative;
}

header.header .minibar {
  background: #0072bc;
  height: 30px;
}

.minibar .minibar_box {
  width: 100%;
  max-width: 1240px;
  padding-right: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 20px;
  height: 100%;
  margin: auto;
}

header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100px;
}

header.fix {
  /* height: 90px; */
  /* position: fixed; */
}

header .tel {
  display: none;
}

header.header .logo img {}

.logo {
  width: 280px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


nav {}

nav .logo {
  display: none;
}

nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 30px;
}
nav ul li a {
  display: flex;
  align-items: center;
  padding: 0 10px;
  grid-gap: 10px;
  font-weight: 500;
  padding-top: 3px;
  transition: 0.2s;
  font-size: 19px;
  height: 100px;
  border-bottom: 3px solid #ffffff;}

nav ul li a:hover {
  font-weight: bold;
  color: #fc6870;
  border-bottom: 3px solid #fc6870;}

nav ul li a.on {}


/* 드롭다운 */
nav .drop {
  position: relative;
}

.toggle {
  width: 120%;
  background: #e0f7d6e1;
  padding: 1rem 0;
  position: absolute;
  left: 50%;
  border-radius: 10px;
  display: none;
  transform: translateX(-50%);
}

.toggle a {
  font-size: 14.5px;
  font-weight: normal;
  padding: 2px 18px;
}

.toggle a:hover {
  opacity: 0.6;
}

nav ul li:last-child .toggle {
  width: 140%;
}


/* 드롭다운 모바일 */
.toggle_m {
  width: 100%;
  background: #cacacad0;
  padding: 1rem 0;
  position: relative;
  border-radius: 10px;
  display: none;
}

.toggle_m a {
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px;
}

.toggle_m a:hover {
  opacity: 0.6;
}


/* hamburger Button */
input[id=hamburger] {
  display: none;
}

label[for=hamburger] {
  /*border: 1px solid red;*/
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}

label[for=hamburger] div {
  display: none;
  position: absolute;
  height: 2px;
  background-color: #4b4b4b;
  width: 100%;
  left: 0;
  transition: 0.3s;
}

label[for=hamburger] div:nth-child(1) {
  top: 0;
}

label[for=hamburger] div:nth-child(2) {
  top: 50%;
  width: 80%;
}

label[for=hamburger] div:nth-child(3) {
  top: 100%;
}

input[id=hamburger]:checked+label[for=hamburger] div:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
  background-color: #4b4b4b;
}

input[id=hamburger]:checked+label[for=hamburger] div:nth-child(2) {
  opacity: 0;
}

input[id=hamburger]:checked+label[for=hamburger] div:nth-child(3) {
  top: 50%;
  background-color: #4b4b4b;
  transform: rotate(-45deg);
}

/*quick 시작*/
.quick {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.quick a.call:hover {
opacity: 0.8;
}

.quick button {
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  margin-top: 6px;
  color: #fff;
}

/*quick 끝//*/

/**PC 모바일 이미지 사이즈 조정 시작**/
.d-block {
  display: block;
}

.m-block {
  display: none;
}

/**PC 모바일 이미지 사이즈 조정 끝**/


/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
@media (max-width: 1000px) {
  header.header {
    width: 100%;
  }


  label[for=hamburger] div {
    display: block;
  }


  nav {
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 9999;
    width: 270px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.911);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0 2rem;
    transition: 0.2s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.15);

  }

  nav .logo {
    display: block;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 1rem;
  }

  nav .logo img {}

  nav ul {
    display: block;
    padding: 0px;
    padding-top: 30px;
  }

  nav ul li.drop {
    background: url(../img/m_arrow_X.png) no-repeat;
    background-size: 16px;
    background-position-y: 18px;
    background-position-x: right;
    cursor: pointer;
  }

  .arrow_x {
    background-image: url(../img/m_arrow.png) !important;
  }

  nav ul li.drop>a {
    pointer-events: none;
  }

  nav ul li a {
    padding: 7px 0px;
  }

  div.toggle {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  div.toggle_m {
    display: block;
  }


  .hamburger {
    display: block;
  }


  input[id=hamburger]:checked~nav {
    left: 0
  }



}

/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/



/*******************************************************************************************************************************
 *** 푸터
*******************************************************************************************************************************/
footer {
  width: 100%;
  padding: 90px 0 60px;
  background-color: #0d2747;
  color: #fff;
}

.foot_con {
  font-size: 14px;
  line-height: 1.9;
  display: flex;
  justify-content: space-between;
}

.foot_con .t17 {
  padding-top: 50px;
  padding-bottom: 36px;
  opacity: 0.8;
}

footer .copy {
  padding: 3rem 0 0rem;
  text-align: right;
}

footer span {
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #686868;
}

footer .copy a {
  padding: 10px 32px;
  font-size: 13px;
  border: 1px solid;
  opacity: 0.5;
}

footer .copy a:hover {
  opacity: 0.8;
}

/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width:768px) {
  header.header {
    height: 100px;
  }

  header.header .container {
    height: 70px;
    padding: 0 15px;
  }

  .logo {
    width: 220px;
  }

  footer {
    padding: 40px 20px 76px;

  }
  .foot_con {
    flex-direction: column;
  }
  footer .copy {
    text-align: center;
    flex-direction: column;
    grid-gap: 10px;
  }

  .foot_con {
    font-size: 13px;
  }

  .quick a.call {
    display: inline-block;
width: 140px;
  }

  /**PC 모바일 이미지 사이즈 조정 시작**/
  .d-block {
    display: none;
  }

  .m-block {
    display: block;
  }

  /**PC 모바일 이미지 사이즈 조정 끝**/
}