@charset "utf-8";
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 
 font-family: "Kaushan Script", cursive;
 font-family: "Montserrat", sans-serif;
*/

body {
  font-family: 'Montserrat', 'NanumSquare', sans-serif;
  color: #222;
}

.container {
  width: 1280px;
  margin: 0 auto;
  display: flex;
}


/* header */
header {
  width: 100%;
  height: 80px;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
  border-bottom: 1px solid #dfdfdf;
}

/* 스크롤 시 기본 흰색 */
header.scroll {
  background-color: #fff;
}

header.on {
  background-color: transparent;
}

header.hide {
  transform: translateY(-100%);
}

/* ⭐ 다시 나타날 때 배경 컬러 */
header.show {
  background-color: rgba(255, 255, 255, 0.8);
  /* 원하는 컬러 */
}

header>.container {
  justify-content: space-between;
  height: 100%;
}

header h1 {
  width: 130px;
  height: 100%;
  display: flex;
  align-items: center;
}

header ul.gnb {
  width: 850px;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

header ul.gnb>li {
  flex: 1;
  position: relative;
}

header ul.gnb>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #222;
}

header ul.gnb>li>.depth {
  position: absolute;
  width: 50%;
  display: none;
  color: #222;
}

header ul.gnb>li:hover>.depth {
  display: block;
}


header ul.gnb>li>ul {
  width: 100%;
  position: absolute;
  left: 25%;
  top: 80px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;

}

header ul.gnb>li>ul>li {
  height: 35px;
  line-height: 35px;
  text-align: center;
}

header ul.gnb>li>ul>li:hover>a {
  font-weight: bold;
}


header .h_right {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .h_right a i {
  width: 100%;
  height: 100%;
  color: #fff;
}

header .h_right ul.down {
  position: absolute;
  left: 0;
  top: 75px;
  width: 50px;
  height: 100px;
  text-align: center;
  padding-top: 5px;
  background: #222;
  cursor: pointer;
  display: none;
}

header .h_right:hover ul.down {
  display: block;
}

header .h_right ul.down>li:hover>a {
  font-weight: bold;
}

header .h_right ul.down li {
  height: 30px;
  line-height: 30px;
  color: #fff;
}

.company-wrap {
  flex-direction: column;
  padding-top: 80px;
}


/* TITLE */
.contact-title {
  margin-top: 220px;
  flex-direction: column;
  text-align: center;
}

.contact-title h2 {
  font-size: 54px;
  font-weight: 600;
}

/* MAP */
.map-area img {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-top: 80px;
}

/* INFO */
.contact-info {
  display: flex;
  justify-content: space-around;
  padding: 100px 0 180px 0;
}

.contact-info .left h3 {
  font-size: 30px;
  font-weight: 600;
}

.desc {
  color: #222;
  line-height: 32px;
  margin-bottom: 40px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.info-box {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.info-box:nth-child(2) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-box p {
  font-size: 16px;
  margin-bottom: 12px;
}

.info-box p.adress {
  font-weight: 600;
}


/* footer */
footer {
  width: 100%;
  height: 100%;
  background-color: #222;
}

footer .container {
  color: #fff;
  font-size: 14px;
  display: block;
}

footer .container .f_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  padding-top: 50px;
}

footer .container .f_top .f_left ul {
  display: flex;
  flex-direction: row;
}

footer .container .f_top .f_left ul li {
  display: flex;
}

footer .container .f_top .f_left ul li p {
  padding-right: 50px;
}

footer .container .f_top .f_left ul li p span {
  font-weight: 700;
}

footer .container .f_top .f_right a b {
  font-weight: 800;
}


footer .container .f_bottom {
  padding-top: 15px;
  padding-bottom: 50px;
  border-top: 1px solid #666;
}