 @charset "utf-8";

/* =========================== PAGE */
:root {
  --second: #102e48;
  --mainsize: 1260px;
  --enfont: 'Wix Madefor Display';
}
 #location1002 .tit_area {
   margin-bottom: 50px;
   font-size: 20px;
   color: #777;
   text-align: center;
 }
 #location1002 .tit_area span {
   font-size: 15px;
   font-weight: 600;
   color: var(--primary);
   text-transform: uppercase;
   font-family: 'Poppins';
 }
 #location1002 .tit_area p {
   margin: 5px 0 20px;
   font-size: 42px;
   font-weight: 700;
   color: #111;
 }
#location1002 .controls {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
#location1002 .controls a {
  width: 150px;
  height: 50px;
  margin-right: 25px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 50px;

  text-align: center;
  transition: all 0.2s;
  font-family: 'Play';
}
#location1002 .controls-wh {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#location1002 .controls-bl {
  color: #fff;
  background-color: var(--primary);
  border: var(--primary);
}
#location1002 .controls span {
  display: flex;
  align-items: center;
}
#location1002 .controls span svg {
  cursor: pointer;
}
#location1002 .controls span + span:before {
  content: '';
  width: 1px;
  height: 14px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.2);
}
.pagecommon {
  font-size: 18px;
  color: #777;
  line-height: 1.65;
  font-family: 'Pretendard';
}
.pagecommon .br {
  white-space: pre-line;
}

#location1002 {
  overflow: hidden;
}
#location1002 .top_area {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  height: 750px;
  background: #111;
}

#location1002 .top_area .bg {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 100%;
  height: 100%;
  background: url(./location1002_top_bg.jpg) center
    no-repeat;
  background-size: cover;
}
#location1002 .top_area .bg.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 1s;
}
#location1002 .top_area .txt {
  position: absolute;
  z-index: 1;
  left: calc((100% - var(--mainsize)) / 2);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}
#location1002 .top_area .txt p {
  margin-bottom: 35px;
  font-size: 56px;
  font-weight: 100;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
#location1002 .top_area .txt p b {
  font-weight: 700;
}
#location1002 .top_area .txt span {
  display: block;
}
#location1002 .top_area .scroll {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 1;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  font-family: var(--enfont);
}
#location1002 .top_area .scroll svg {
  width: 20px;
  height: 20px;
  animation: scroll 1s infinite linear;
}
@keyframes scroll {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
#location1002 .cont {
  max-width: var(--mainsize);
  margin: 0 auto;
  padding: 200px 30px;
}
#location1002 .cont .grid {
  display: grid;
  grid-template-columns: 65% 1fr;
  grid-template-rows: repeat(2, 1fr);
  height: 660px;
}
#location1002 .cont .map {
  grid-row: span 2;
  position: relative;
  background: url(./naver_map.png) center no-repeat;
}
#location1002 .cont .map .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  padding: 15px 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: var(--primary);
}
#location1002 .cont .map .pin:after {
  display: block;
  content: '';
  position: absolute;
  left: calc(50% - 7px);
  bottom: -5px;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  background: var(--primary);
}
#location1002 .cont .info {
  display: flex;
  flex-flow: column;
  padding: 60px 0 60px 15%;
  color: #fff;
  background: var(--second);
}
#location1002 .cont .info dl + dl {
  margin-top: auto;
}
#location1002 .cont .info dl dt {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--enfont);
}
#location1002 .cont .info dl dd {
  word-break: keep-all;
}
#location1002 .cont .info dl dd span {
  display: inline-block;
  margin-right: 15px;
}
#location1002 .cont .contact {
  display: flex;
  flex-flow: column;
  padding: 60px 0 60px 15%;
}
#location1002 .cont .contact p {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  font-family: var(--enfont);
}
#location1002 .cont .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 58px;
  margin-top: auto;
  padding-right: 5px;
  border: 1px solid var(--primary);
  font-size: 17px;
  font-weight: 600;
  color: Var(--primary);
  transition: all 0.3s;
}
#location1002 .cont .contact a svg {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
@media (hover: hover) {
  #location1002 .cont .contact a:hover {
    color: #fff;
    background: var(--primary);
  }
  #location1002 .controls a:hover {
    /*border-color: var(--main-blue);*/
    /*background: var(--main-blue);*/
    /*border-color: #fff;*/
    /*background: #fff;*/
    /*color: var(--main-blue);*/
  }
  #location1002 .controls-wh:hover {
    border-color: #fff;
    background: #fff;
    color: var(--main-blue);
  }
  #location1002 .controls-bl:hover {
    border-color: #fff;
    background: #fff;
    color: var(--main-blue);
  }
}
@media (max-width: 1460px) {
  #location1002 .top_area .txt {
    left: 50px;
  }
}
@media (max-width: 1320px) {
  #location1002 .cont ul li {
    width: calc((100% - 460px) / 2);
  }
  #location1002 .cont ul li .br {
    white-space: normal;
    word-break: keep-all;
  }
}
@media (max-width: 1024px) {
  #location1002 .tit_area {
    font-size: 18px;
  }
  #location1002 .tit_area p {
    font-size: 36px;
  }
  .pagecommon {
    font-size: 17px;
  }
  #location1002 .top_area {
    height: 620px;
  }
  #location1002 .top_area .txt {
    left: 30px;
    font-size: 18px;
  }
  #location1002 .top_area .txt p {
    font-size: 46px;
  }
  #location1002 .cont {
    padding: 120px 20px;
  }
  #location1002 .cont .grid {
    height: 550px;
    grid-template-columns: 60% 1fr;
  }
  #location1002 .cont .info,
  #location1002 .cont .contact {
    padding: 40px 0 40px 30px;
  }
  #location1002 .cont .contact p {
    font-size: 24px;
  }
  #location1002 .cont .contact a {
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
  #location1002 .controls {
    margin-top: 20px;
  }
  #location1002 .controls a {
    width: 120px;
    height: 45px;
    font-size: 13px;
    line-height: 45px;
  }
  #location1002 .controls span svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  #location1002 .tit_area {
    margin-bottom: 30px;
    font-size: 16px;
  }
  #location1002 .tit_area span {
    font-size: 13px;
  }
  #location1002 .tit_area p {
    font-size: 32px;
  }
  #location1002 .controls a {
    width: 130px;
    height: 38px;
    line-height: 38px;
  }
  .pagecommon {
    font-size: 15px;
  }
  #location1002 .top_area {
    height: 420px;
  }
  #location1002 .top_area .txt {
    left: 20px;
    right: 20px;
    font-size: 16px;
    word-break: keep-all;
  }
  #location1002 .top_area .txt p {
    margin-bottom: 20px;
    font-size: 32px;
    word-break: keep-all;
  }
  #location1002 .top_area .scroll {
    bottom: 30px;
  }
  #location1002 .cont {
    padding: 80px 20px;
  }
  #location1002 .cont .map .pin {
    width: 120px;
    padding: 10px 0;
  }
}
@media (max-width: 680px) {
  #location1002 .cont .grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60% 1fr;
    height: 700px;
  }
  #location1002 .cont .grid .map {
    grid-column: span 2;
    grid-row: unset;
  }
  #location1002 .cont .info,
  #location1002 .cont .contact {
    padding: 30px 0 30px 20px;
  }
  #location1002 .cont .contact p {
    font-size: 20px;
  }
  #location1002 .cont .contact .br {
    white-space: normal;
    word-break: keep-all;
  }
}
@media (max-width: 480px) {
  #location1002 .tit_area p {
    margin: 0 0 10px;
    font-size: 30px;
  }
  #location1002 .cont .grid {
    display: block;
  }
  #location1002 .cont .grid .map {
    height: 320px;
  }
  #location1002 .cont .info dl + dl {
    margin-top: 30px;
  }
  #location1002 .cont .contact {
    padding: 40px 0;
    text-align: center;
  }
  #location1002 .cont .contact a {
    margin: 20px auto 0;
  }
}
