@charset "utf-8";
html{
  scroll-behavior: smooth;
}
.sub_top_banner_wrap.on .sub_top_banner{
  z-index: 99999;
  top: 2.5rem;
  position: fixed;
}
.class_contents{
    color: #4b4b4b;
    margin: 0 auto;
    width: var(--default-width);
}

.class_contents > h4{
    text-align: center;
    font-size: 28px;
    padding:80px 0 5px;
}
.class_contents > p{
    text-align: center;
    font-size: 16px;
    padding-bottom: 10px;
}
.class_contents > ul::after{
    content: '';
    display: block;
    float: none;
    clear: both;
}
.class_contents > ul > li{
    float: left;
    width: 330px;
    height: 290px;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    margin-right: 30px;
    margin: 25px 30px 20px 0;
}
.class_contents > ul > li:nth-child(4n){
    margin-right: 0;
}
.class_contents > ul > li > a{
    color: #4b4b4b;
}
.class_contents > ul > li > a > .img{
    position: relative;
    overflow: hidden;
}
.class_contents > ul > li > a > .img img{
    transform: scale(1);
    transition: transform .3s;
}
.class_contents > ul > li:hover > a > .img img{
    transform: scale(1.05);
}
.class_contents > ul > li > a > .img.day::after{
    content: '1day';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: var(--point-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #f8f8f8;
    font-size: 12px;
    font-weight: 600;
    top: 10px;
    left: 10px;
}
.class_contents > ul > li > a > .keyword > ul{
    padding: 9px 16px 9px;
}
.class_contents > ul > li > a > .keyword > ul > li{
    display: inline-block;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    color: #4b4b4b;
    background-color: #ededed;
    border-radius: 3px;
    margin-right: 5px;
}
.class_contents > ul > li > a > h5{
    padding: 0 16px;
    font-size: 21px;
}

.class_faq_banner_wrap{
    text-align: center;
    font-weight: 100;
    font-size: 50px;
    padding-top: 120px;
}
.class_faq_banner_wrap > a{
    position: relative;
}
.class_faq_banner_wrap > a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px; /* 텍스트 아래 약간 떨어진 위치 */
      width: 0%;
      height: 22px;
      background-color: var(--main-color);
      transition: width 0.3s ease;
      z-index: -1;
    }

.class_faq_banner_wrap > a:hover::after {
      width: 100%;
    }