/* main */
#main section{
    padding:40px 0;
}
section .sec-header{
    text-align: center;
    margin-bottom: 20px;
    padding:0;
}
section .sec-header .sub-title{
    margin-top: 8px;
    color:var(--text-beige-2);
}
#main .hero{
    position: relative;
    padding:0;
}
#main .hero .swiper-slide{
    position: relative;
}
#main .hero .swiper-slide a{
    display: block;
    overflow: hidden;
}
#main .hero .swiper-slide .text{
    position: absolute;
    left:0;
    bottom:0;
    z-index: 2;
    box-sizing: border-box;
    padding:24px 70px 24px 24px;
    width: 100%;
}
#main .hero .swiper-slide .text strong{
    display: block;
    color:var(--text-beige-1)
}
#main .hero .swiper-slide .text p{
    margin-top: 8px;
    color:var(--text-beige-1);
}
#main .hero .swiper-slide .bg picture,
#main .hero .swiper-slide .bg img{
    display: block;
    width: 100%;
}
#main .hero .slide-controls{
    position: absolute;
    right:24px;
    bottom:24px;
    z-index: 2;
}
#main .hero .slide-controls button{
    display: none;
}
#main .hero .slide-controls .slide-pagination{
    color:var(--text-beige-3);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
}
.dept-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dept-item{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.dept-item a{
    display: block;
    padding:32px;
}
.dept-item .text{
    position: relative;
    z-index: 2;
}
.dept-item .text .tag{
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dept-item .text .tag li{
    background-color: #fff;
    color:var(--text-beige-2);
    font-size: 13px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    padding:2px 10px;
    border-radius: 100px;
}
.dept-item .text .title{
    color:var(--text-brown-1);
    display: block;
}
.dept-item .text p{
    margin-top: 8px;
    color:var(--text-brown-1);
}
.dept-item .bg{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    transition: background-image 0.3s ease-out;
    background-image: url(../images/dept_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.dept-item:hover .bg{
    background-image: url(../images/dept_bg_on.png);
}
#main .blog{
    padding:20px 0;

}
#main .blog-list{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#main .blog-list .blog-item{
    position: relative;
    border-bottom: 1px solid var(--divider-1);
}
#main .blog-list .blog-item:last-child{
    border-bottom: 0;
}
#main .blog-list .blog-item.big{
    margin-bottom: 6px;
    border-bottom: 0;
}
#main .blog-list .blog-item.big a{
    padding-bottom: 0;
    padding-top: 0;
}
#main .blog-list .blog-item.big .img{
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 698 / 425;
}
#main .blog-list .blog-item.big .img::after{
    content:'';
    position: absolute;
    left:50%;
    bottom:0;
    width: 142.5%;
    height: 100%;
    transform: translate(-50%,70%);
    background: rgba(0,0,0,0.9);
    filter: blur(40px);
}
#main .blog-list .blog-item.big .text{
    position: absolute;
    z-index: 2;
    left:0;
    bottom:0;
    width: 100%;
    box-sizing: border-box;
    padding:16px;
    gap: 2px;
}
#main .blog-list .blog-item.big .text .cate{
    font-weight: 700;
    color:var(--text-beige-1);
}
#main .blog-list .blog-item.big .text .subject{
    color:var(--text-beige-1);
}
#main .blog-list .blog-item a{
    display: flex;
    align-items: center;
    padding:21px 0;
    gap: 20px;
}
#main .blog-list .blog-item .img{
    width: 119px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 160 / 99;
}
#main .blog-list .blog-item .text{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 139px);
}
#main .blog-list .blog-item .text .cate{
    color:var(--accent-color-1);
}
#main .blog-list .blog-item .text .subject{
    color:var(--text-brown-1);
    -webkit-line-clamp: 2;
    max-height: 2.6em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#main .blog-list .blog-item .text .desc{
    display: none;
    color:var(--text-brown-1);
}
.hospital-info h4{
    display: block;
    color:var(--text-brown-1);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--divider-1);
    margin-bottom: 16px;
}

.hospital-info h4 a {
    color: var(--text-brown-1);
}

.hospital-info .row{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.hospital-info .location{
    width: 100%;
    background-color: var(--bg-beige-2);
    border-radius: 12px;
    padding:20px;
    box-sizing: border-box;
}
.hospital-info .location .map-btn{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}
.hospital-info .location .map-btn li{
    width: calc(50% - 6px);
}
.hospital-info .location .map-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    gap: 6px;
    border-radius: 8px;
}
.hospital-info .location .map-btn a.naver-map{
    background-color: #fff;
}
.hospital-info .location .map-btn a.naver-map img{
    width: 20px;
}
.hospital-info .location .map-btn a.naver-map span{
    font-weight: 700;
    color:var(--text-brown-1);   
}
.hospital-info .location .map-btn a.kakao-map{
    background-color: #F9E000;
}
.hospital-info .location .map-btn a.kakao-map img{
    width: 14px;
}
.hospital-info .location .map-btn a.kakao-map span{
    height: 18px;
}
.hospital-info .location .map-btn a.kakao-map span img{
    width: auto;
    height: 100% !important;
}
.hospital-info .notice{
    width: 100%;
    background-color: var(--bg-beige-2);
    border-radius: 12px;
    padding:20px;
    box-sizing: border-box;
}
.hospital-info .notice-list{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hospital-info .notice-list li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hospital-info .notice-list li a .subject{
    color:var(--text-brown-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(88% - 50px); /* 260305 수정 */
}
.hospital-info .notice-list li a .date{
    color:var(--text-beige-2)
}
.hospital-info #map{
    margin:20px 0;
    height: 186px;
    border-radius: 12px;
    background-color: #ececec;
}
.hospital-info .time{
    background-color: var(--bg-beige-2);
    border-radius: 12px;
    padding:20px;
}
.hospital-info .time .btn-res{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 20px;
    gap: 6px;
    color:var(--accent-color-4);
}
.hospital-info .time .btn-res i{
    width: 23px;
    aspect-ratio: 23 / 24;
    background: url(../images/icon_res_2.svg) no-repeat center center / contain;
}
.hospital-info .time .btn-res span{
    transform: translate(0,1px);
}
.hospital-info .time-list ul{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.hospital-info .time-list ul li{
    display: flex;
    align-items: center;
}
.hospital-info .time-list ul li>span{
    font-weight: 700;
    margin-right: 24px;
}
.hospital-info .time-list ul li p{
    display: flex;
    align-items: center;
    gap: 4px;
}
.hospital-info .time-list ul li i{
    margin-left: 6px;
    font-style: normal;
    color:#fff;
    background-color: var(--primary-color);
    border-radius: 4px;
    padding:0 6px;
    font-size: 15px;
    line-height: 1.6em;
    letter-spacing: -0.03em;
}
.hospital-info .time-note{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hospital-info .time-note p{
    color:var(--text-beige-3);
}
.hospital-info .contact{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.hospital-info .contact li+li{
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--divider-1);
}
.hospital-info .contact li a{
    display: flex;
    align-items: center;
    gap: 20px;
}
.hospital-info .contact li a img{
    width: 60px;
}
.hospital-info .contact li a div{
    width: calc(100% - 80px);
    color:var(--text-brown-1);
}
.hospital-info .contact li a div span{
    display: block;
}
.hospital-info .contact li a div strong{
    display: block;
    margin-top: 2px;
}

@media (min-width: 800px){
    #main section{
        padding:60px 0;
    }
    section .sec-header{
        margin-bottom: 48px;
    }
    .hero{
        margin:40px 60px 0;
    }
    .hero .swiper{
        border-radius: 12px;
        overflow: hidden;
    }
    #main .hero .swiper-slide .text{
        bottom:initial;
        top:0;
        padding:60px;
    }
    #main .hero .swiper-slide .text p{
        margin-top: 12px;
    }
    #main .hero .slide-controls{
        right:initial;
        left:60px;
        bottom:60px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    #main .hero .slide-controls button{
        display: block;
        width: 40px;
        height: 40px;
        border:0;
        cursor: pointer;
        background-color: var(--accent-color-4);
        border-radius: 100%;
        flex-shrink: 0;
    }
    #main .hero .slide-controls .slide-pagination{
        margin-left: 8px;
    }
    .dept-list{
        gap: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .dept-item{
        width: calc(50% - 10px);
        box-sizing: border-box;
    }
    .dept-item a{
        padding:32px;
    }
    #main .blog-list .blog-item a{
        padding:29px 0;
        gap: 20px;
    }
    #main .blog-list .blog-item .img{
        width: 160px;
        border-radius: 12px;
    }
    #main .blog-list .blog-item .text{
        width: calc(100% - 180px);
        gap: 0;
    }
    #main .blog-list .blog-item.big{
        margin-bottom: 0;
    }
    #main .blog-list .blog-item.big .text{
        padding:28px;
    }
    #main .blog-list .blog-item .text .cate{
        margin-bottom: 12px;
    }
    #main .blog-list .blog-item .text .desc{
        display: block;
        margin-top: 2px;
        -webkit-line-clamp: 2;
        height: 2.8em;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #main .hospital-info .row{
        flex-direction: row;
        gap: 20px;
        align-items: stretch;
    }
    #main .hospital-info .row>*{
        width: calc(50% - 10px);
        max-width: unset;
        padding:36px;
    }
    #main .hospital-info h4{
        padding-bottom: 14px;
        margin-bottom: 20px;
    }
    #main .hospital-info .location .map-btn{
        margin-top: 26px;
    }
    #main .hospital-info .location .map-btn a{
        height: 45px;
    }
    #main .hospital-info #map{
        height: 225px;
    }
    #main .hospital-info .time{
        position: relative;
        padding:36px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    #main .hospital-info .time h4{
        width: 100%;
        padding-bottom: 16px;
    }
    #main .hospital-info .time .btn-res{
        position: absolute;
        right:36px;
        top:36px;
        width: 128px;
        height: 40px;
        transform: translate(0,calc((40px - (22px * 1.4)) / 2 * -1));
    }
    #main .hospital-info .time-note{
        gap: 4px;
    }
    #main .hospital-info .contact{
        margin-top: 0;
        gap: 36px;
    }
    .hospital-info .contact li+li{
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
    }
}
@media (min-width: 1280px){
    #main section{
        padding:80px 0;
    }
    #main .hero{
        max-width: 1280px;
        margin:0 auto;
    }
    #main .hero .slide-controls button{
        transition: background-color 0.3s ease-out;
    }
    #main .hero .slide-controls button:hover{
        background-color: var(--accent-color-1);
    }
    #main .hero .slide-controls button.btn-prev img{
        transform: translate(-1.5px,0);
    }
    #main .hero .slide-controls button.btn-next img{
        transform: translate(1.5px,0);
    }
    #main .hero .slide-controls .slide-pagination{
        font-size: 18px;
    }
    .dept-list.col-2 .dept-item{
        width: calc((100% - (20px * 1)) / 2);
    }
    .dept-list.col-3 .dept-item{
        width: calc((100% - (20px * 2)) / 3);
    }
    .dept-item{
        width: calc((100% - (20px * 3)) / 4);
    }
    .dept-item a{
        padding:32px 32px 27px;
    }
    .dept-item:hover .bg{
        background-image: url(../images/dept_bg_on.png);
    }
    #main .blog{
        padding:40px 0;
    }
    #main .blog .sec-header{
        margin-bottom: 8px;
    }
    #main .blog-list{
      flex-direction: row;
      gap: 3.75%;
      align-items: stretch;
      padding:30px 0;
    }
    #main .blog-list .blog-item.big{
        width: 54.53125%;
    }
    #main .blog-list .small-list{
        width: 41.71875%;
    }
    #main .blog-list .small-list .blog-item a{
        padding:29px 0;
    }
    #main .blog-list .small-list .blog-item:first-child a{
        padding-top: 0;
    }
    #main .blog-list .small-list .blog-item:last-child a{
        padding-bottom: 0;
    }
    #main .blog-list .blog-item .text .cate{
        margin-bottom: 9px;
    }
    #main .blog-list .blog-item .text .subject{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        max-height: 1.3em;
    }

    #main .hospital-info{
        margin:0 auto;
        max-width: 1280px;
    }
    #main .hospital-info .sec-content{
        position: relative;
        padding-right: calc(((100% - (20px * 2)) / 3) + 20px);
    }
    #main .hospital-info .row>*{
        padding:40px;
    }
    #main .hospital-info h4{
        margin-bottom: 28px;
        padding-bottom: 17px;
    }
    #main .hospital-info .location .map-btn{
        margin-top: 41px;
    }
    #main .hospital-info .location .map-btn a{
        height: 42px;
    }
    #main .hospital-info #map{
        margin-bottom: 0;
        height: 277px;
    }
    #main .hospital-info .time{
        box-sizing: border-box;
        position: absolute;
        right:0;
        top:0;
        bottom:0;
        width: calc((100% - (20px * 2)) / 3);
    }
    #main .hospital-info .time .btn-res{
        right:40px;
        height: 44px;
        transform: translate(0,calc((((28px * 1.4) - 44px)) / 2));
    }
    #main .hospital-info .contact{
        margin-top: 54px;
        gap: 0;
    }
    #main .hospital-info .contact li+li{
        margin-top: 24px;
        padding-top: 24px;
    }
    #main .hospital-info .contact li+li{
        border-top: 1px solid var(--divider-1);
    }
}

/* about */
#about .about-header{
    height: 373px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/mobile_about_bg.png);
}
#about .about-header .inner{
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#about .about-header .text span{
    color:var(--accent-color-1);
}
#about .about-header .text h3{
    margin-top: 40px;
    color:var(--text-beige-1);
}
#about .about-header .text div{
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color:var(--text-beige-1)
}
#about .about-content .inner{
    padding:12px;
}
#about .about-content .doctor{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#about .about-content .doctor .img img{
    display: block;
    width: 100%;
}
#about .about-content .doctor .text{
    padding: 24px 7px 24px 24px;
    background: var(--bg-green);
    border-radius: 12px;
}
#about .about-content .doctor .text ul{
    overflow: auto;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 318px;
}
#about .about-content .doctor .text ul li{
    position: relative;
    padding-left: 12px;
}
#about .about-content .doctor .text ul li::before{
    content:'•';
    position: absolute;
    left:0;
    top:0;
}
#about .about-content .intro{
    padding:24px;
    border-radius: 12px;
    background-color: var(--bg-beige-2);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}
#about .about-content .intro div.desc{
    display: flex;
    flex-direction: column;
    gap: 1.6em;
    word-break: keep-all;
}
#about .about-content .intro div.sign{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
#about .about-content .intro div.sign img{
    width: 132px;
}
#about .hospital-picture{
    padding:60px 0;
}
#about .hospital-picture .slide-tab{
    padding:20px 20px 32px;
    background-color: var(--bg-beige-2);
    border-radius:12px 12px 0 0;
}
#about .hospital-picture .slide-tab ul{
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
}
#about .hospital-picture .slide-tab ul li{
    width: 50%;
}
#about .hospital-picture .slide-tab ul li button{
    border:0;
    cursor: pointer;
    background-color: transparent;
    color:var(--text-beige-2);
    transition: color 0.3s ease-out;
}
#about .hospital-picture .slide-tab ul li button.cur{
    color:var(--accent-color-2);
}
#about .hospital-picture .slide-group{
    overflow: hidden;
    border-radius: 12px;
    margin-top: -12px;
}
#about .hospital-picture .slide-item{
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
#about .hospital-picture .slide-item.active{
    display: block;
}
#about .hospital-picture .slide-item .swiper-slide picture,
#about .hospital-picture .slide-item .swiper-slide img{
    display: block;
    width: 100%;
}
#about .hospital-picture .slide-item .slide-controls{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    right:10px;
    bottom:6px;
}
#about .hospital-picture .slide-item .slide-controls .slide-pagination{
    color:var(--text-beige-3);
    font-size: 15px;
    letter-spacing: -0.04em;
    line-height: 1.4em;
    font-weight: 700;
}
#about .hospital-picture .slide-item .slide-controls button{
    display: none;
}

@media (min-width:800px){
    #about .about-header{
        height: 450px;
        background-image: url(../images/tablet_about_bg.png);
    }
    #about .about-content .inner{
        padding:60px 0 20px;
        max-width: 680px;
        margin:0 auto;
    }
    #about .about-content .doctor{
        flex-direction: row;
        align-items: stretch;
        gap: 16px
    }
    #about .about-content .doctor .img{
        width: calc(50% - 8px);
        border-radius: 20px;
        overflow: hidden;
    }
    #about .about-content .doctor .text{
        width: calc(50% - 8px);
        padding: 28px 7px 28px 28px;
        box-sizing: border-box;
        aspect-ratio: 332 / 421;
        border-radius: 20px;
    }
    #about .about-content .doctor .text ul{
        margin-top: 12px;
        max-height: calc(100% - ((22px * 1.4) + 12px));
    }
    #about .about-content .intro{
        margin-top: 20px;
        padding:28px;
        border-radius: 20px;
        gap: 40px;
    }
    #about .about-content .intro br.m{
        display: none;
    }
    #about .about-content .intro div.sign img{
        width: 127px;
    }
    #about .hospital-picture{
        padding:60px 0;
    }
    #about .hospital-picture .inner{
        max-width: 680px;
        margin:0 auto;
    }
    .pic-slide-wrap{
        position: relative;
        display: flex;
        align-items: stretch;
        border-radius: 20px;
        overflow: hidden;
    }
    #about .hospital-picture .slide-tab{
        border-radius: 0;
        width: 232px;
        padding:24px;
        box-sizing: border-box;
        margin-right: -20px;
    }
    #about .hospital-picture .slide-tab ul{
        flex-direction: column;
        gap: 12px;
    }
    #about .hospital-picture .slide-tab ul li{
        width: 100%;
    }
    #about .hospital-picture .slide-group{
        margin-top: 0;
        position: static;
        z-index: 2;
        width: 468px;
        flex-shrink: 0;
    }
    #about .hospital-picture .slide-item{
        position: static;
    }
    #about .hospital-picture .slide-item .slide-controls{
        right:initial;
        left:20px;
        bottom:20px;
        gap:12px;
    }
    #about .hospital-picture .slide-item .slide-controls button{
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border:0;
        cursor: pointer;
        background-color: var(--accent-color-4);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #about .hospital-picture .slide-item .slide-controls button img{
       width: 10px;
    }
}
@media (min-width:1280px){
    #about .about-header{
        height: 606px;
        background-image: url(../images/desktop_about_bg.png);
        background-size: auto 100%;
    }
    #about .about-content .inner{
        padding:60px 0;
        max-width: 1280px;
        margin:0 auto;
        display: flex;
        align-items: stretch;
        gap: 20px;
    }
    #about .about-content .doctor{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: calc(50% - 10px);
        min-height: 100%;
        position: relative;
    }
    #about .about-content .doctor .img{
        width: 100%;
    }
    #about .about-content .doctor .text{
        width: 100%;
        padding:40px;
        box-sizing: border-box;
        aspect-ratio: unset;
        position: absolute;
        left: 0;
        bottom: 0;
        height: calc(100% - 801px);
    }
    #about .about-content .doctor .text ul{
        margin-top: 16px;
        columns: 2;
        overflow: hidden;
        display: block;
        column-gap: 40px;
        row-gap: 20px;
        column-fill: auto;
    }
    #about .about-content .doctor .text ul li{
        box-sizing: border-box;
        word-break: keep-all;
        margin-top: 8px;
    }
    #about .about-content .intro{
        margin-top: 0;
        padding:40px 40px 21px;
        border-radius: 20px;
        gap: 16px;
        width: calc(50% - 10px);
        min-height: 100%;
    }
    #about .about-content .intro div.sign{
        margin-top: 4px;
    }
    #about .about-content .intro div.sign img{
        width: 172px;
    }
    #about .hospital-picture{
        padding:100px 0;
    }
    #about .hospital-picture .inner{
        max-width: 1280px;
        margin:0 auto;
    }
    #about .hospital-picture .slide-tab{
        width: 340px;
        padding:48px;
    }
    #about .hospital-picture .slide-tab ul{
        gap: 20px;
    }
    #about .hospital-picture .slide-group{
        width: 960px;
    }
    #about .hospital-picture .slide-tab ul li button:hover{
        color:var(--text-brown-1);
    }
    #about .hospital-picture .slide-item .slide-controls{
        left:48px;
        bottom:48px;
        gap:20px;
    }
    #about .hospital-picture .slide-item .slide-controls button{
        transition: background-color 0.3s ease;
    }
    #about .hospital-picture .slide-item .slide-controls button:hover{
        background-color: var(--accent-color-1);
    }
}

@media (min-width:1920px){
    #about .about-header{
        background-size: cover;
    }
}

/* location */
.location-wrap .sec-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.location-wrap .sec-content>*{
    width: 100%;
}
.location-wrap .sec-content #map{
    height: 186px;
    border-radius: 12px;
    background-color: #ececec;
    overflow: hidden;
}
.location-wrap .loc-item{
    background: var(--bg-beige-2);
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
}
.location-wrap .loc-item .btn-res{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 20px;
    gap: 6px;
    color:var(--accent-color-4);
}
.location-wrap .loc-item .btn-res i{
    width: 23px;
    aspect-ratio: 23 / 24;
    background: url(../images/icon_res_2.svg) no-repeat center center / contain;
}
.location-wrap .loc-item .btn-res span{
    transform: translate(0,1px);
}
.location-wrap .loc-item h4{
    display: block;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--divider-1);
}
.location-wrap .location{
    width: 100%;
    background-color: var(--bg-beige-2);
    border-radius: 12px;
    padding:20px;
    box-sizing: border-box;
}
.location-wrap .location>p{}
.location-wrap .location>span{
    display: block;
    margin-top: 4px;
}
.location-wrap .location .map-btn{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.location-wrap .location .map-btn li{
    width: calc(50% - 6px);
}
.location-wrap .location .map-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    gap: 6px;
    border-radius: 8px;
}
.location-wrap .location .map-btn a.naver-map{
    background-color: #fff;
}
.location-wrap .location .map-btn a.naver-map img{
    width: 20px;
}
.location-wrap .location .map-btn a.naver-map span{
    font-weight: 700;
    color:var(--text-brown-1);   
}
.location-wrap .location .map-btn a.kakao-map{
    background-color: #F9E000;
}
.location-wrap .location .map-btn a.kakao-map img{
    width: 14px;
}
.location-wrap .location .map-btn a.kakao-map span{
    height: 18px;
}
.location-wrap .location .map-btn a.kakao-map span img{
    width: auto;
    height: 100% !important;
}
.location-wrap .time-list ul{
    display: flex;
    flex-direction: column;
    gap:4px
}
.location-wrap .time-list ul li{
    display: flex;
    align-items: center;
}
.location-wrap .time-list ul li>span{
    font-weight: 700;
    margin-right: 24px;
}
.location-wrap .time-list ul li p{
    display: flex;
    align-items: center;
    gap: 4px;
}
.location-wrap .time-list ul li i{
    margin-left: 6px;
    font-style: normal;
    color:#fff;
    background-color: var(--primary-color);
    border-radius: 4px;
    padding:0 6px;
    font-size: 15px;
    line-height: 1.6em;
    letter-spacing: -0.03em;
}
.location-wrap .time-note{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.location-wrap .time-note p{
    color:var(--text-beige-3);
}
.location-wrap .contact ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-wrap .contact li a{
    display: flex;
    align-items: center;
    gap: 20px;
}
.location-wrap .contact li a img{
    width: 60px;
}
.location-wrap .contact li a div{
    width: calc(100% - 80px);
    color:var(--text-brown-1);
}
.location-wrap .contact li a div span{
    display: block;
}
.location-wrap .contact li a div strong{
    display: block;
    margin-top: 2px;
}

@media (min-width:800px){
    .location-wrap .inner{
        max-width: 680px;
        margin:0 auto;
    }
    .location-wrap .sec-content{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .location-wrap .sec-content #map{
        width: 100%;
        height: 280px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .location-wrap .loc-item{
        width: calc(50% - 10px);
        padding:36px;
        position: relative;
    }
    .location-wrap .loc-item .btn-res{
        position: absolute;
        right:36px;
        top:36px;
        width: 128px;
        height: 40px;
        transform: translate(0,calc((40px - (22px * 1.4)) / 2 * -1));
    }
    .location-wrap .loc-item.time{
        width: 100%;
    }
    .location-wrap .loc-item h4{
        padding-bottom: 16px;
        margin-bottom: 20px;
    }
    .location-wrap .contact ul{
        gap: 24px;
    }
    .location-wrap .time-info{
        display: flex;
        align-items: flex-start;
        gap: 42px;
    }
    .location-wrap .time-note{
        margin-top: 0;
    }
}
@media (min-width:1280px){
    .location-wrap .inner{
        max-width: 1280px;
        margin:0 auto;
    }
    .location-wrap .sec-content{
        flex-direction: row;
        align-items: stretch;
    }
    .location-wrap .sec-content #map{
        height: 420px;
        border-radius: 12px;
        margin-bottom: 40px;
    }
    .location-wrap .loc-item{
        width: calc((100% - (20px * 2)) / 3) !important;
        padding:40px;
    }
    .location-wrap .loc-item .btn-res{
        right:40px;
        height: 44px;
        transform: translate(0,calc((((28px * 1.4) - 44px)) / 2));
    }
    .location-wrap .loc-item h4{
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
    .location-wrap .location .map-btn{
        margin-top: 43.5px;
    }
    .location-wrap .time-info{
        flex-direction: column;
        gap: 12px;
    }
}


/* board */
#board .empty{
    font-size: 22px;
    text-align: center;
    line-height: 1.9em;
    letter-spacing: -0.04em;
    font-weight: 700;
    padding:40px 0;
    color:var(--text-brown-1);
}
#board .sec-header{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}
#board .sec-header .sub-title{
    color: var(--text-beige-2);
}
#board .board-tab{
    margin:0 auto 40px;
    max-width: 728px;
    overflow-x:auto;
    overflow-y: hidden;
    padding:0 24px;
    box-sizing: border-box;
    -ms-overflow-style: none;  
    scrollbar-width: none;     
    scroll-behavior: smooth;
}
#board .board-tab::-webkit-scrollbar{
    display: none;
}
#board .board-tab ul{
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}
#board .board-tab ul a{
    display: block;
    box-sizing: border-box;
    line-height: 50px;
    text-align: center;
    color:var(--primary-color);
    min-width: 128px;
    padding:14px;
    border:1px solid var(--primary-color);
    border-radius: 52px;
    font-size: 17px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    font-weight: 500;
}
#board .board-tab ul a.cur{
    background-color: var(--primary-color);
    color:#fff;
}
#board .tab-contents .tab-content{
    display: none;
}
#board .tab-contents .tab-content.cur{
    display: block;
}

/* board - 게시판 */
#board .gallery-list{
    display: flex;
    flex-direction: column;
    margin:0 auto;
    max-width: 680px;
}
#board .gallery-list .gallery-item{
    border-bottom: 1px solid #2C2C2C;
    padding:40px 0;
}
#board .gallery-list .gallery-item .thumb{
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 6px;
}
#board .gallery-list .gallery-item .thumb a{
    display: block;
}
#board .gallery-list .gallery-item .thumb img{
    display: block;
    width: 100%;
}
#board .gallery-list .gallery-item .text a{
    display: block;
}
#board .gallery-list .gallery-item .text .title{
    display: block;
}
#board .gallery-list .gallery-item .text .desc{
    color:#6B6B6B;
    margin-top: 8px;
    font-weight: 400;
    word-break: keep-all;
}

/* board - notice */
#board .board-list{
    display: flex;
    flex-direction: column;
    margin:0 auto;
    max-width: 680px;
    border-top: 1px solid var(--divider-1);
}
#board .board-list .board-item{
    border-bottom: 1px solid var(--divider-1);
}
#board .board-list .board-item a{
    color:var(--text-brown-1);
    padding:12px 0 ;
    display: block;
}
#board .board-list .board-item .text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#board .board-list .board-item.fixed .text img{
    position: absolute;
    left:0;
    top:50%;
    transform: translate(0,-50%);
    width: 18px;
    flex-shrink: 0;
    margin-right: 7px;
}
#board .board-list .board-item.fixed .text .title{
    position: relative;
    padding-left: 25px;
}
#board .board-list .board-item .text .title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 26px;
    width: calc(100% - 80px);
    box-sizing: border-box;
}

    #board .board-list .board-item:not(.fixed) .title {
        /* 260305 추가 */
        font-weight: 500;
    }

    #board .board-list .board-item.fixed .title {
        /* 260305 추가 */
        font-weight: 700;
    }

#board .board-list .board-item.fixed .text .title{
    color:var(--accent-color-1);
}

#board .board-list .board-item .text .date{
    color:var(--text-beige-2);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: -0.04em;
    display: block;
}


/* board - blog */
#board .category-list{
    position: relative;
    margin:0 auto 20px;
    max-width: 560px;
    border:1px solid var(--divider-1);
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}
#board .category-list .btn-cate{
    border:0;
    height: 50px;
    box-sizing: border-box;
    padding:0 20px;
    font-size: 15px;
    letter-spacing: -0.04em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    background-color: var(--bg-beige-1);
    color:var(--text-brown-1);
    position: relative;
    cursor: pointer;
}
#board .category-list .btn-cate::after{
    content:'';
    width: 13px;
    height: 7px;
    right:20px;
    top:50%;
    position: absolute;
    transform: translate(0,-50%);
    transition: transform 0.3s ease-out;
    background: transparent url(../images/icon_arr_down.svg) no-repeat center center / cover;
}
#board .category-list .btn-cate.active{
    border-radius: 8px 8px 0 0;
}
#board .category-list .btn-cate.active::after{
    transform: translate(0,-50%) rotate(180deg);
}
#board .category-list .cate-list{
    display: none;
    z-index: 2;
    border-top: 1px solid var(--divider-1);
}
#board .category-list .cate-list>ul{
    padding: 15px 24px;
    overflow: visible;
    /* max-height: 146px; */
}
#board .category-list .cate-list ul{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#board .category-list .cate-list ul li{
    width: 100%;
}
#board .category-list .cate-list ul li a{
    display: block;
    color:var(--text-beige-3);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9em;
    letter-spacing: -0.04em;
}
#board .category-list .cate-list ul li a.cur{
    color:var(--text-brown-1);
    font-weight: 700;
}
#board .category-list .cate-list .depth{
    padding:2px 12px;
}
#board .blog-list{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 28px;
    max-width: 560px;
    margin:0 auto;
}
#board .blog-list .blog-item{
    width: 100%;
    overflow: hidden;
}
#board .blog-item a{
    display: block;
}
#board .blog-item .thumb{
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;;
    aspect-ratio: 312 / 187;
}
#board .blog-item .text{
    margin-top: 12px;
}
#board .blog-item .text p{
    font-size: 18px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    font-weight: 700;
    text-overflow: ellipsis;
    margin-top: 8px;
    color:var(--text-brown-1);
}
#board .blog-item .text .cate{
    display: block;
    color:var(--accent-color-2);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}
#board .blog-item .text .date{
    display: block;
    color:var(--text-brown-1);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: -0.04em;
    margin-top: 7px;
}

/* board - view */
.board-view{
    padding:20px 24px 0;
    margin:0 auto 60px;
    max-width:768px;
    box-sizing: border-box;
}
.board-view .view-header{
    margin-bottom: 28px;
}
.board-view .view-header .cate{
    display: block;
    color:var(--accent-color-1);
    font-size: 15px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
    font-weight: 700;
}
.board-view .view-header .title{
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}
.board-view .view-header .date{
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}
.board-view .article-index{
    position: relative;
    margin-bottom: 28px;
}
.board-view .article-index .index-inner{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--divider-1);
    border-radius: 8px;
}
.board-view .article-index .btn-index{
    width: 100%;
    box-sizing: border-box;
    background-color: var(--bg-beige-1);
    text-align: left;
    border:0;
    padding:0 20px;
    height: 52px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.04em;
    color:#6B6B6B;
    cursor: pointer;
    position: relative;
}
.board-view .article-index .btn-index::after{
    content:'';
    width: 13px;
    height: 7px;
    right:20px;
    top:50%;
    position: absolute;
    transform: translate(0,-50%);
    transition: transform 0.3s ease-out;
    background: transparent url(../images/icon_arr_down.svg) no-repeat center center / cover;
}
.board-view .article-index .index-list{
    display: none;
    border-top: 1px solid var(--divider-1);
}
.board-view .article-index .index-list ul{
    padding:15px 24px;
    overflow: auto;
    max-height: 100%; /* 260305 수정 */
}
.board-view .article-index .index-list a{
    display: block;
    color:var(--text-beige-3);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.9em;
    letter-spacing: -0.04em;
    transition: color 0.3s ease-out;
}
.board-view .article-index .index-list a:hover,
.board-view .article-index .index-list a.cur{
    color:var(--accent-color-2);
}
.board-view .article-index .btn-index.active{
    border-radius: 8px 8px 0 0;
}
.board-view .article-index .btn-index.active::after{
    transform: rotate(180deg) translate(0,50%);
}
.board-view .view-content .content-box{
    margin:28px 0;
}
.board-view .view-content h2{
    display: block;
    margin:8px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.9em;
    letter-spacing: -0.04em;
}
.board-view .view-content h3{
    display: block;
    margin:8px 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.9em;
    letter-spacing: -0.04em;
}
.board-view .view-content .content-box p{
    font-size: 17px;
    line-height: 1.9em;
    letter-spacing: -0.04em;
    font-weight: 500;
    margin: 0 0 1em;
}
.board-view .view-content .content-box p:last-child{
    margin-bottom: 0;
}
.board-view .view-content pre,
.board-view .view-content code,
.board-view .view-content kbd,
.board-view .view-content samp{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.board-view .view-content .content-box strong{ /* 250318 추가 */
    font-weight: 700; 
}

.board-view .view-content pre{
    margin: 12px 0;
    padding: 14px 16px;
    border: 1px solid var(--divider-1);
    border-radius: 12px;
    background-color: var(--bg-beige-2);
    overflow: auto;
    white-space: pre;
    font-size: 14px;
    line-height: 1.6em;
    box-sizing: border-box;
}
.board-view .view-content pre code{
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    white-space: pre;
}
.board-view .view-content :not(pre) > code{
    padding: 0.15em 0.4em;
    border: 1px solid var(--divider-1);
    border-radius: 6px;
    background-color: var(--bg-beige-2);
    font-size: 0.95em;
    line-height: 1.5em;
}
.board-view .view-content img,
.board-view .view-content video,
.board-view .view-content iframe{
    width: 100% !important;
    height: auto !important;
}

.board-view .view-content figcaption{ /* 260318 추가 */
    text-align: center;
    font-size: 15px;
}

.board-view .view-content iframe{
    aspect-ratio: 16 / 9 ;
}
.board-view .view-content video,
.board-view .view-content iframe{
    display: block;
    margin:8px auto;
}

.board-view .view-content .wp-block-list{ /* 260305 추가 */
    padding-left: 1em;
    margin-bottom: 1rem;
    color: var(--text-brown-1);
    list-style-type: decimal;
}

.board-view .view-content .wp-block-list ul,
.board-view .view-content .wp-block-list ol{ /* 260305 추가 */
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.3rem;
    list-style-type: disc;
    line-height: 1.2;
}

.board-view .view-content .wp-block-list ul,
.board-view .view-content .wp-block-list ol{ /* 260305 추가 */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.board-view .view-content .wp-block-list ul li,
.board-view .view-content .wp-block-list ol li{ /* 260305 추가 */
    margin-bottom: 0.5rem;
}

.board-view .view-content .wp-block-list>li { /* 260305 추가 */
    margin-bottom: 1.2rem;
}

.board-view .view-content .wp-block-quote { /* 260305 추가 */
    box-sizing: border-box;
    overflow-wrap: break-word;
    border-left: 4px solid var(--text-brown-1);
    padding: 0.3em 0.8em;
    margin: 1.5em 0;
    background-color: var(--accent-color-3);
}

.board-view .category-article{
    position: relative;
    margin:28px 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--divider-1);
}
.board-view .category-article .btn-article{
    width: 100%;
    box-sizing: border-box;
    background-color: var(--bg-beige-1);
    text-align: left;
    border:0;
    padding:0 20px;
    height: 52px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.04em;
    color: var(--accent-color-2);
    cursor: pointer;
    position: relative;
}
.board-view .category-article .btn-article::after{
    content:'';
    width: 13px;
    height: 7px;
    right:20px;
    top:50%;
    position: absolute;
    transform: translate(0,-50%);
    transition: transform 0.3s ease-out;
    background: transparent url(../images/icon_arr_down.svg) no-repeat center center / cover;
}
.board-view .category-article .article-list{
    border-top: 1px solid var(--divider-1);
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
    display: none;
}
.board-view .category-article .article-list ul{
    padding:16px 0;
}
.board-view .category-article .article-list a{
    display: block;
    color: var(--text-brown-1);
    font-size: 15px;
    line-height: 1.6em;
    padding:7px 20px;
    letter-spacing: -0.04em;
    transition: background-color 0.3s ease-out;
}
.board-view .category-article .article-list a:hover{
    background-color: var(--accent-color-3);
}
.board-view .category-article .article-list a.cur{
    font-weight: 700;
}
.board-view .category-article .btn-article.active{
    border-radius: 8px 8px 0 0;
}
.board-view .category-article .btn-article.active::after{
    transform: rotate(180deg) translate(0,50%);
}

.board-view .writer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.board-view .writer .thumb{
    margin-bottom: 8px;
}
.board-view .writer .thumb img{
    display: block;
    max-width: 64px;
    margin:0 auto;
}
.board-view .writer .name{
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: -0.03em;
    color:#212123;
}
.board-view .writer .summary{
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    color:#B9B9B9;
}

#board .posts{
    padding:20px 0 40px;
    overflow: hidden;
}
#board .posts .sec-header{
    margin-bottom: 30px;
}
#board .posts .sec-content{
    position: relative;
}
#board .posts .sec-content .btn-prev,
#board .posts .sec-content .btn-next{
    display: none;
}
#board .posts .swiper{
    overflow: visible;
}
#board .posts-slide .swiper-slide{
    width: 280px;
}
#board .posts-slide .swiper-slide a{
    display: block;
}
#board .posts-slide .swiper-slide .thumb{
    margin-bottom: 12px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 312 / 187;
}
#board .posts-slide .swiper-slide .thumb img{
    display: block;
    width: 100%;
}
#board .posts-slide .swiper-slide .text p{
    font-size: 17px;
    line-height: 1.3em;
    letter-spacing: -0.04em;
    font-weight: 700;
    color:var(--text-brown-1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 2.6em;
}
#board .posts-slide .swiper-slide .text .cate{
    display: block;
    margin-top: 12px;
    color:var(--accent-color-2);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}



@media (min-width:800px){
    #board .board-tab ul{
        justify-content: center;
        gap: 8px;
    }

    #board .gallery-list .gallery-item{
        position: relative;
        display: flex;
        align-items: center;
        gap: 60px;
        cursor: pointer;
    }
    #board .gallery-list .gallery-item .thumb{
        margin-bottom: 0;
        width: 120px;
    }
    #board .gallery-list .gallery-item .text{
        width: calc(100% - 180px);
    }
    #board .gallery-list .gallery-item .text .title{
        position: relative;
    }
    #board .gallery-list .gallery-item .text .title::before{
        content: '';
        position: absolute;
        right:0;
        top:50%;
        transform: translate(0,-50%);
        width: 14px;
        height: 2px;
        background-color: #191919;
        border-radius: 2px;
    }
    #board .gallery-list .gallery-item .text .title::after{
        content: '';
        position: absolute;
        right: 7px;
        top:50%;
        transform: translate(50%,-50%);
        width: 2px;
        height: 14px;
        background-color: #191919;
        border-radius: 2px;
        transition: opacity 0.3s ease-out;
    }
    #board .gallery-list .gallery-item.active .text .title::after{
        opacity: 0;
    }
    #board .gallery-list .gallery-item .text .desc{
        margin-top: 8px;
        display: none;
    }

    #board .board-list .board-item a{
        padding:20px 0;
    }

    

    #board .blog-list{
        gap: 40px;
    }
    #board .blog-list .blog-item a{
        display: flex;
        align-items: flex-start;
        gap: 28px;
    }
    
    #board .blog-item .thumb{
        width: 300px;
    }
    #board .blog-list .blog-item .text{
        width: calc(100% - 328px);
        margin-top: 8px;
    }
    #board .board-list .board-item .text .title{
        width: calc(100% - 90px);
    }

    #board .board-list .board-item:not(.fixed) .title { /* 260305 추가 */
        font-weight: 500;
    }

    #board .board-list .board-item.fixed .title { /* 260305 추가 */
        font-weight: 700;
    }

    #board .board-list .board-item .text .date{
        font-size: 17px;
    }
    #board .blog-item .text .date{
        margin-top: 3px;
    }

    .board-view .view-header .date{
        margin-top: 20px;
    }
    .board-view .view-header,
    .board-view .article-index{
        margin-bottom: 40px;
    }
    .board-view .view-content .content-box,
    .board-view .category-article{
        margin:40px 0;
    }
    .board-view .article-index .index-list ul{
        max-height: 100%; /* 260305 추가 */
    }
    #board .posts{
        padding:30px 0 60px;
    }

    #board .category-list{
        margin-bottom: 40px;
    }
}

@media (min-width:1280px){
    #board .empty{
        padding:60px 0;
    }
    #board .board-tab{
        margin-bottom: 48px;
        max-width: 800px;
        padding:0;
        overflow: hidden;
    }
    #board .board-tab ul{
        flex-wrap: wrap;
    }
    #board .board-tab ul a{
        transition: background-color 0.3s ease-out, color 0.3s ease-out;
    }
    #board .board-tab ul a:hover{
        background-color: var(--primary-color);
        color:#fff;
    }
    #board .gallery-list{
        max-width: 100%;
    }
    #board .gallery-list .gallery-item{
        transition: gap 0.3s ease-out;
    }
    #board .gallery-list .gallery-item:hover{
        gap: 20px;
    }
    #board .gallery-list .gallery-item .thumb{
        transition: width 0.3s ease-out;
    }
    #board .gallery-list .gallery-item:hover .thumb{
        width: 160px;
    }
    #board .gallery-list .gallery-item .text{
        transition: width 0.3s ease-out;
    }
    #board .blog-list{
        max-width: 600px;
    }

    .board-view .view-header .cate{
        font-size: 18px;
    }
    .board-view .view-header .title{
        font-size: 32px;
    }
    .board-view .view-header .date{
        font-size: 18px;
    }
    .board-view .category-article .article-list a{
        font-size: 16px;
    }
    .board-view .article-index{
        margin-bottom: 0;
        position: sticky;
        top:100px
    }
    .board-view .article-index .btn-index::after{
        transition: unset;
    }
    .init .board-view .article-index .btn-index::after{
        transition:transform 0.3s ease-out
    }
    .board-view .article-index .index-inner{
        position: absolute;
        right:0;
        width: 242px;
        transform: translate(calc(100% + 24px),0);
    }
    #board .posts{
        padding:60px 0;
    }
    #board .posts .inner-sm{
        max-width: 990px;
    }
    #board .posts .slide-wrap{
        position: relative;
        padding:0 55px;
    }
    #board .posts .sec-content .btn-prev,
    #board .posts .sec-content .btn-next{
        display: block;
        width: 40px;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        border-radius: 100%;
        background-color: var(--accent-color-4);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 10px auto;
        border: 0;
        padding: 0;
        position: absolute;
        top: 50%;
        z-index: 2;
        opacity: 0;
        pointer-events: none;
        transform: translate(0, -50%);
        transition: opacity 0.3s ease-out, background 0.3s ease-out;
    }
    #board .posts .sec-content .btn-next:hover,
    #board .posts .sec-content .btn-prev:hover{
        background-color: var(--accent-color-1);
    }
    #board .posts .slide-wrap:hover .btn-prev,
    #board .posts .sec-content:hover .btn-next{
        opacity: 1;
        pointer-events: auto;
    }
    #board .posts .sec-content .btn-prev{
        left: 0;
        background-image: url(../images/icon_slide_prev.svg);
    }
    #board .posts .sec-content .btn-next{
        right: 0;
        background-image: url(../images/icon_slide_next.svg);
    }
    #board .posts .swiper{
        overflow: hidden;
    }
    #board .posts-slide .swiper-slide{
        width: auto;
    }
    #board .category-list-wrap{
        position: sticky;
        top:100px;
    }
    #board .category-list{
        position: absolute;
        margin-bottom: 0;
        right:0;
        top:0;
        z-index: 1;
        max-width: unset;
        width: 242px;
        transform: translate(calc(100% + 40px),0);
    }
    #board .category-list .cate-list>ul{
        max-height: none;
    }
    #board .category-list .cate-list ul li a{
        transition: color 0.3s ease-out;
    }
    #board .category-list .cate-list ul li a:hover{
        color:var(--accent-color-2)
    }
}


/* pagination */
#pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin:40px 0;
    gap: 6.5px;
}
#pagination .num{
    font-size: 16px;
    width: 26px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color:var(--text-beige-2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pagination .cur{
    background-color: var(--accent-color-2);
    color:#fff;
}
#pagination .arr.disabled{
    opacity: 0.4;
}
#pagination .arr img{
    display: block;
}
#pagination .prev{
    margin-right: 19px;
}
#pagination .next{
    margin-left: 19px;
}
@media (min-width:800px){
    #pagination{
        margin: 38px auto;
    }
}
@media (min-width:1280px){
    #pagination{
        margin:60px auto
    }
    #pagination .num{
        font-size: 18px;
    }
}

/* search */
#search-box{
    position: relative;
    margin:20px auto 0;
    padding:0 24px;
    max-width: 400px;
}
#search-box form{
    display: block;
    width: 100%;
    position: relative;
}
#search-box input{
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 100px;
    border:2px solid var(--divider-2);
    padding-left: 51px;
    box-sizing: border-box;
    padding-right: 10px;
    color:#191919;
    font-size: 18px;
    letter-spacing: -0.03em;
    background-color: var(--bg-beige-1);
}
#search-box input::placeholder{
    color:var(--text-beige-2);
}
#search-box img{
    position: absolute;
    width: 16px;
    top:50%;
    transform: translate(0,-50%);
    left: 19px;
}

@media (min-width:800px){
    #search-box{
        margin-top: 40px;
    }
}
@media (min-width:1280px){
    #search-box{
        margin-top: 60px;
    }

    .index-inner.is-hidden { /* 250318 추가 */
        display: none !important;
    }
}
