@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 {
  min-height: calc(100vh - 2rem);
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url('../img/gubun1-banner.png') center center / cover no-repeat;
}

.slides {}

.hero-text {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  white-space: nowrap;
  width: 100%;
}

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

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

/* intro1 */
.intro1 {
  height: calc(100vh - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro1 img {
  content: url('../img/gubun1-con1.png');
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/* notice */
.notice {
  background: #F6F6F6;
  text-align: left;
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; */
  padding: 20rem 0;
  line-height: 1.2;
}
.notice h3 {
  font-size: clamp(1.8rem, 1.2vw, 2.5rem);
  margin-bottom: 3rem;
  font-weight: 600;
}
.notice p {
  font-size: clamp(1.4rem, 1vw, 1.8rem);
  margin-bottom: 4rem;
}
.notice .btn-plus {
  cursor: cell;
  position: relative;
  transition: all 0.5s ease-out;
  margin-bottom: 4rem;
  display: inline-block;
}
.notice .btn-plus button {
  background: none;
}

.btn-plus .plus {
  display: none;
  margin-top: 2rem;
  background: #F6F6F6;
  box-shadow: 1px 1px 3px 1px #999;
  padding: 3rem 0.5rem;
  border-radius: 1rem;
  box-sizing: border-box;
  width: 130rem;
}

.btn-plus.active .plus {
  display: block;
}


.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.6rem, 3vw, 2rem);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 2rem;
}

.notice a:hover {
  background: #424242;
  color: #fff;
}


.mobile-br {
  display: none;
}


/* 태블릿 반응형 */
@media only screen and (max-width: 1280px) {
  [class $= "inner"] {
    padding: 0 0.5rem;
  }
  #main {
    padding: 0;
  }
  .slide-banner {
    background: url('../img/gubun1-banner_m.png') center center / cover no-repeat;
    margin-bottom: 10rem;
  }
  
  .hero-text p {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 2rem;
  }
  .hero-text h2 {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 400;
  }
  .intro1 {
    background: #fff;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .intro1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    content: url('../img/gubun1-con1_t.png');
  }
  .notice {
    line-height: 1;
    text-align: center;
  }
  .notice h3 {
    font-size: clamp(1.8rem, 1.2vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 600;
  }
  .notice p {
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    margin-bottom: 8rem;
    line-height: 1.4;
  }
  .notice .text-box:first-child p:last-child {
    margin-bottom: 2rem;
  }
  .notice .btn-plus {
    margin-bottom: 8rem;
  }
  .notice .plus {
    padding: 3rem 0.5rem;
  }
  .notice .plus img {
    height: 1.8rem;
  }
  .notice .plus p {
    line-height: 2;
  }
  .notice :any-link {
    display: inline-block;
    background: none;
    color: #424242;
    padding: 0.5rem 3rem;
    border: 1px solid #424242;
    border-radius: 3rem;
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 2rem;
  }


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

/* 모바일 반응형 */
@media only screen and (max-width: 768px) {
  
  /* notice 섹션 */
  .notice {
    padding: 8rem 1rem;
  }

  .notice .btn-plus {
    width: 100%;
  }

  .notice .plus {
    position: relative;
    width: 100%;

    padding: 2rem 0;
  }


  .notice .btn-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .notice .btn-wrap a {
    width: 40%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    margin: 0;
  }

  .mobile-br {
    display: block;
  }
}


/* 작은 모바일 반응형 */
@media only screen and (max-width: 480px) {
  
  .intro1 img {
    content: url('../img/gubun1-con1_m.svg');
  }
  [class $= "inner"] {
    padding: 0 1.5rem;
  }



}