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

html {
  font-size: 10px;
}

body {
  color: #333;
  font-size: 1.4rem;
  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/gubun1-banner.png') center center / cover no-repeat;
}

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

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

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


.notice-write {
  padding: 25rem 0;
}
.notice-write h3 {
  margin-bottom: 6rem;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  color: #5C5C5C;
  font-weight: 600;
}
.notice-write .top {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 15px;
}

.notice-write .top h2 {
  font-size: clamp(3.5rem, 2vw, 4rem);
  font-weight: bold;
  margin-bottom: 8px;
}

.notice-write .top p {
  
  color: #666;
}

.notice-write .content-text {
  line-height: 1.8;
  text-align: left;
  margin: 40px 0;
  white-space: pre-line;
}

.notice-write .image-wrap {
  text-align: center;
  margin: 30px 0;
}

.notice-write .image-wrap img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 6px;
}

.notice-write .btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.notice-write .btn-wrap a {
  display: inline-block;
  padding: 10px 20px;
  background: #2e4c6d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.notice-write .btn-wrap a:hover {
  background: #1f3750;
}



.mobile-br {
  display: none;
}


/* 태블릿 반응형 */
@media only screen and (max-width: 1280px) {
  [class $= "inner"] {
    padding: 0 3rem;
  }
  #main {
    padding: 0;
  }
  .slide-banner {
    background: url('../img/gubun1-banner_m.png') center center / cover no-repeat;
    height: 100vh;
  }
  .hero-text {
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    top: 80%;
    width: 100%;
  }
  .hero-text h2 {
    font-size: clamp(2rem, 1.5vw, 3rem);
    margin-bottom: 2rem;
  }
  .hero-text p {
    font-size: clamp(1.6rem, 2vw, 2.6rem);
    line-height: 1.2;
  }
  
  .notice-write {
    padding: 8rem 0 3.5rem;
  }
  .notice-write h3 {
    margin-bottom: 3rem;
  }
  .notice-write .top {
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 15px;
  }

  .notice-write .top h2 {
    font-size: clamp(2rem, 1.5vw, 3rem);
  }
  .notice-write .top p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
  }

  .notice-write .content-text {
    line-height: 1.5;
    margin: 10px 0;
    white-space: normal;
  }


  .notice-write .btn-wrap {
    margin-top: 20px;
  }

  .notice-write .btn-wrap a {
    padding: 4px 14px;
  }












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

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

  [class $= "inner"] {
    padding: 0 2rem;
  }
  .notice-write {
    padding: 8rem 0 3.5rem;
  }

 
}

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

  [class $= "inner"] {
    padding: 0 1.5rem;
  }
  .notice-write {
    padding: 8rem 0 3.5rem;
  }


}