@charset "utf-8";

/*서브페이지*/
#hnn-sub_renew {
  width: 100%;
  height: 215px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hnn-sub_renew .hnn-sub_renew-shadow{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#hnn-sub_renew .hnn-sub_renew-inner{
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
#hnn-sub_renew .hnn-sub_renew-inner h2{
  font-size: 40px;
  color: #fff;
  font-weight: 900;
}
#hnn-sub_renew .hnn-sub_renew-inner p{
  font-size: 18px;
  color: #fff;
  font-weight: normal;
}

#hnn-navi_renew{
  width: 1000px;
  margin: 0 auto;
  padding-top: 28px;
}
.hnn-navi_renew{
  display: flex;
  align-items: center;
  gap: 22px;
}
.hnn-navi_renew .hnn-navi_renew-title{
  font-size: 18px;
  font-weight: normal;
  color: #000;
}
.hnn-navi_renew .arrow-right{
  font-size: 10px;
}
.hnn-navi_renew .dropdown-container {
  position: relative;
  cursor: pointer;
  padding: 0 8px;
  margin-left: -8px;
}
.hnn-navi_renew .current-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.hnn-navi_renew .arrow-down {
  font-size: 10px;
  font-weight: bold;
}
.hnn-navi_renew .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 10;
  width: 100%;
  padding-top: 10px;
}
.hnn-navi_renew .dropdown-menu li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  padding: 8px 0;
}
.hnn-navi_renew .dropdown-menu li:hover {
  background: #EBEAD6;
}
.hnn-navi_renew .dropdown-menu a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
}
.hnn-navi_renew .dropdown-container.active .dropdown-menu {
  display: block;
}
.hnn-sub_renew-content{
  margin: 100px 0;
  min-height: 600px;
}
.hnn-sub_renew-content-inner{
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #hnn-sub_renew .hnn-sub_renew-inner {
    width: 100%;
    gap: 8px;
    padding: 0 50px;
    box-sizing: border-box;
  }
  #hnn-sub_renew .hnn-sub_renew-inner h2 {
    font-size: 28px;
  }
  #hnn-sub_renew .hnn-sub_renew-inner p {
    font-size: 16px;
    text-align: center;
  }
  #hnn-navi_renew {
    width: 100%;
    padding: 0 20px;
    padding-top: 20px;
    box-sizing: border-box;
  }
  .hnn-navi_renew {
    gap: 16px;
  }
  .hnn-navi_renew>li{
    display: flex;
    align-items: center;
  }
  .hnn-navi_renew .hnn-navi_renew-title {
    font-size: 16px;
  }
  .hnn-navi_renew .arrow-right {
    font-size: 8px;
  }
  .hnn-navi_renew .current-menu {
    font-size: 16px;
  }
  .hnn-navi_renew .dropdown-menu a {
    font-size: 16px;
  }
  .hnn-sub_renew-content {
    margin: 64px 0;
    min-height: 500px;
    padding: 0 20px;
    box-sizing: border-box;
  }

}