@charset "utf-8";

/* 오시는 길 */
.location_section{
  position:relative;
  padding:140px 0;
  background:#fff;
}

.location_inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 80px;
  box-sizing:border-box;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.location_info{
  width:100%;
}

.location_eyebrow{
  margin:0 0 18px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.22em;
  color:#9aa4b2;
}

.location_title{
  margin:0;
  font-size:54px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:-.04em;
  color:#111827;
  word-break:keep-all;
}

.location_address{
  margin:30px 0 0;
  font-size:18px;
  line-height:1.8;
  color:#4b5563;
}

.location_btn_wrap{
  margin-top:40px;
  display:flex;
  gap:14px;
}

.location_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:56px;
  padding:0 28px;
  border:1px solid #d8dfeb;
  border-radius:999px;
  background:#fff;
  font-size:15px;
  font-weight:600;
  color:#111827;
  text-decoration:none;
  transition:all .25s ease;
}

.location_btn:hover{
  border-color:#b6ab90;
  color:#a98c48;
}

.location_btn.primary{
  background:#111827;
  border-color:#111827;
  color:#fff;
}

.location_btn.primary:hover{
  background:#a98c48;
  border-color:#a98c48;
  color:#fff;
}

.location_map_wrap{
  width:100%;
}

.location_map{
  width:100%;
  height:420px;
  border-radius:24px;
  overflow:hidden;
}

/* 오시는 길 버튼 */
.location_map_btn_wrap{
  margin-top:18px;
  display:flex;
  gap:12px;
}

.location_map_btn{
  flex:1;
  display:block;
  border-radius:999px;
  text-decoration:none;
  overflow:hidden;
  opacity:.85;
}

.location_map_btn:hover{
  opacity:1;
}

.location_map_btn_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:60px;
  padding:0 20px;
  box-sizing:border-box;
}

.location_map_text{
  flex:1;
  margin-left:12px;
  font-size:17px;
  font-weight:600;
  line-height:1.1;
  text-align:center;
}

.location_map_btn.kakao{
  background:#fee500;
}

.location_map_btn.kakao .location_map_text{
  color:#111;
}

.location_map_icon.kakao{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:8px;
  background:#3c1e1e;
  color:#fee500;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  line-height:1.1;
}

.location_map_btn.naver{
  background:#03c75a;
}

.location_map_btn.naver .location_map_text{
  color:#fff;
}

.location_map_icon.naver{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:8px;
  background:#fff;
  color:#03c75a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  line-height:1.1;
}

.location_map_arrow{
  position:relative;
  display:block;
  width:18px;
  height:10px;
}

.location_map_arrow::before,
.location_map_arrow::after{
  content:'';
  position:absolute;
  top:50%;
  right:0;
}

.location_map_arrow::before{
  width:16px;
  height:2px;
  transform:translateY(-50%);
}

.location_map_arrow_kakao::before{
  background:#3c1e1e;
}

.location_map_arrow_naver::before{
  background:#fff;
}

.location_map_arrow::after{
  width:7px;
  height:7px;
  transform:translateY(-50%) rotate(45deg);
}

.location_map_arrow_kakao::after{
  border-top:2px solid #3c1e1e;
  border-right:2px solid #3c1e1e;
}

.location_map_arrow_naver::after{
  border-top:2px solid #fff;
  border-right:2px solid #fff;
}

.location_section .root_daum_roughmap{
  width:100%;
}

.root_daum_roughmap .cont,
.root_daum_roughmap .wrap_controllers{
  display:none !important;
}

/* tablet */
@media screen and (max-width:1199px){
  .location_section{
    padding:110px 0;
  }

  .location_inner{
    padding:0 56px;
    grid-template-columns:1fr;
    gap:40px;
  }

  .location_title{
    font-size:42px;
  }

  .location_address{
    font-size:17px;
  }

  .location_map{
    height:360px;
  }
}

/* mobile */
@media screen and (max-width:767px){
  .location_section{
    padding:80px 0;
  }

  .location_inner{
    padding:0 22px;
  }

  .location_eyebrow{
    margin-bottom:14px;
    font-size:12px;
  }

  .location_title{
    font-size:30px;
    line-height:1.4;
  }

  .location_address{
    margin-top:20px;
    font-size:15px;
    line-height:1.7;
  }

  .location_btn_wrap{
    margin-top:28px;
    flex-direction:column;
    gap:10px;
  }

  .location_btn{
    width:100%;
    height:50px;
    font-size:14px;
  }

  .location_map{
    margin-top:26px;
    height:300px;
    border-radius:20px;
  }

  .location_map_btn_wrap{
    flex-direction:column;
  }

  .location_map_btn{
    opacity:1;
  }

  .location_map_btn_inner{
    height:56px;
    padding:0 18px;
  }

  .location_map_text{
    font-size:14px;
  }
}