@charset "UTF-8";
@import url(../css/reset.css);

html {
  font-size: 10px;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  background-color: #fff;
}

/* 공통 wrapper */
.all-wrap {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

[class $= "inner"] {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

button {
  cursor: pointer;
}
#main {
  padding-top: 10rem;
}
/* 메인 배너 */
.slide-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  /* overflow: hidden; */
  background: url('../img/gubun4-banner.png') center center / cover no-repeat;
}

.slide-banner .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-text {
  position: absolute;
  left: 0%;
  top: 75%;
  /* transform: translate(-50,-50%); */
  /* margin-top: 60%; */
  text-align: left;
  color: #1D223B;
  width: 100%;
}

.hero-text p {
  font-size: clamp(1.8rem, 1.5vw, 2rem);
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: clamp(3.5rem, 2vw, 4rem);
  font-weight: 600;
}

/* intro */
.intro {
  padding: 20rem 0;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 200;
}

.intro .out {
  margin-bottom: 20rem;
  color:#16356D;
}
.intro .txt-box h3 {
  font-size: clamp(2.1rem, 2vw, 2.6rem);
  background: #9E9E9E;
  color: #fff;
  padding: 2rem 0;
}
.intro strong {
  font-weight: 600;
}

.intro .txt-box .det p {
  display: block;
  width: 50%;
  border: 1px solid #D4D4D4;
  border-top: 0px;
  box-sizing: border-box;
  padding: 1.5rem 0;
}
.intro .txt-box .det p:first-of-type {
  border-right: 0;
  text-align: center;
  padding-left: 20%;
  box-sizing: border-box;
}
.intro .txt-box .det p:last-of-type {
  border-left: 0;
  text-align: left;
  
}
.intro .txt-box .det.full p {
  display: block;
  width: 100%;
  border: 1px solid #D4D4D4;
  text-align: center;
  padding-left: 0;
}
.intro .txt-box .det {
  display: flex;
}
.intro .txt-box:nth-child(1) {
  margin-bottom: 4rem;
}
.intro .txt-box:nth-of-type(2) {
  margin-bottom: 20rem;
}
.map-placeholder {
  width: 100%;
  height: 47vh;
  display: block;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

/* .intro a {
  display: inline-block;
  background: none;
  color: #424242;
  padding: 1.2rem 3rem;
  border: 1px solid #424242;
  border-radius: 3rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

.intro a:hover {
  background: #424242;
  color: #fff;
} */


.mobile-br {
  display: none;
}


/* 태블릿 반응형 */
@media only screen and (max-width: 1280px) {
  [class $= "inner"] {
    padding: 0 3rem;
  }

  #main {
    padding: 0;
  }
  .slide-banner {
    background: url('../img/gubun4-banner_m.png') center center / cover no-repeat;
    height: 85vh;
  }
  .hero-text {
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    top: 83%;
  }
  .hero-text h2 {
    font-size: clamp(2rem, 1.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .hero-text p {
    font-size: clamp(1.6rem, 2vw, 2.6rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .intro {
    padding: 8rem 0;
  }

  .intro .out {
    margin-bottom: 10rem;
  }
  .intro .txt-box h3 {
    font-size: clamp(1.4rem, 2vw, 2.4rem);
    padding: 1rem 0;
  }

  .intro .txt-box .det p {
    padding: 0.8rem 0;
  }
  .intro .txt-box .det p:first-of-type {
    padding-left: 0;
  }
 
  .intro .txt-box:first-child {
    margin-bottom: 2rem;
  }
  .intro .txt-box:nth-of-type(2) {
    margin-bottom: 10rem;
  }
  .map-placeholder {
    margin-top: 2rem;
    height: 55vh;

  }

  



  
  .mobile-br {
    display: block;
  }
  .pc-txt {
    display: none;
  }
}

/* 모바일 반응형 */
@media only screen and (max-width: 768px) {
  html {
    font-size: 9px;
  }

  [class $= "inner"] {
    padding: 0 2rem;
  }

  
  

}

/* 작은 모바일 반응형 */
@media only screen and (max-width: 480px) {
  html {
    font-size: 7px;
  }

  [class $= "inner"] {
    padding: 0 1.5rem;
  }



}