@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/gubun3-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: #333;
  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;
}


.notice .btn-wrap {}
.intro .btn-wrap a,
.notice .btn-wrap a {
  margin-right: 2rem;
}
.intro :any-link,
.notice :any-link {
  display: inline-block;
  background: none;
  color: #424242;
  padding: 1.2rem 3rem;
  border: 1px solid #424242;
  border-radius: 3rem;
  font-size: clamp(1.5rem, 0.78vw, 2.5rem);
  cursor: pointer;
  transition: all 0.3s ease;
}
.intro a:hover,
.notice a:hover {
  background: #424242;
  color: #fff;
}

/* intro */

.intro1 {
  padding: 30rem 0;
  text-align: center;
}

.intro1 .img-box ul {
  margin-bottom: 15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.intro1 .img-box li {
  margin-bottom: 0.5rem;
}
.intro1 .img-box li img {
  color: #ECB71A;
}
.intro1 .img-box li:nth-child(1):hover img {
  content: url('../img/gubun3-intro1-1_on.png');
}
.intro1 .img-box li:nth-child(2):hover img {
  content: url('../img/gubun3-intro1-2_on.png');
}
.intro1 .img-box li:nth-child(3):hover img {
  content: url('../img/gubun3-intro1-3_on.png');
}

.notice,
.mobile-br {
  display: none;
}


/* 태블릿 반응형 */
@media only screen and (max-width: 1280px) {
  [class $= "inner"] {
    padding: 0 3rem;
  }
  #main {
    padding: 0;
  }
  .slide-banner {
    background: url('../img/gubun3-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 .btn-wrap,
  .notice .btn-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .intro .btn-wrap a,
  .notice .btn-wrap a {
    width: 45%;
    text-align: center;
    padding: 0.6rem 1.5rem;
    margin: 0;
    color: #424242;
    border: 1px solid #424242;
  }
  .intro a:hover,
  .notice a:hover {
    background: #424242;
    color: #fff;
  }
  .intro .text-box h3,
  .notice h3 {
    line-height: 1.2;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    font-weight: 600;
    color:#333;
  }
  .intro .text-box  p,
  .notice p {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
  }
  .intro .text-box h4,
  .notice h4 {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
  }

  .notice {
    text-align: center;
    padding-top: 8rem;
  }
  .notice h3 {
    color: #092251;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  

  .intro1 {
    padding: 8rem 0 14rem;
    text-align: center;
  }

  .intro1 .img-box ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .intro1 .img-box li {}
  .intro1 .img-box li img {
    color: #ECB71A;
  }
  .intro1 .img-box li:nth-child(1) img,
  .intro1 .img-box li:nth-child(1):hover img {
    content: url('../img/gubun3-intro1-1_m.svg');
  }
  .intro1 .img-box li:nth-child(2) img,
  .intro1 .img-box li:nth-child(2):hover img {
    content: url('../img/gubun3-intro1-2_m.svg');
  }
  .intro1 .img-box li:nth-child(3) img,
  .intro1 .img-box li:nth-child(3):hover img {
    content: url('../img/gubun3-intro1-3_m.svg');
  }


  






  
  .notice,
  .mobile-br {
    display: block;
  }
  .intro .btn-wrap,
  .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;
  }



}