@charset "utf-8";

:root {
    /* main color */
    --color-main:#EB895B;
    --color-sub:#A94F2D;
    --color-main-rgb:235, 137, 91;
    --color-main-hover:#D96F42;

    /* base color */
    --color-white:#FFF;

    /* background */
    --bg-main-1:#F8F0E5;
    --bg-main-2:#F1DDC8;

    /* border */
    --color-border-1:#DCC8B5;
    --color-border-2:#9B4729;

    /* grayscale */
    --grayscale11: #0A0A0A;
    --grayscale10: #171717;
    --grayscale9: #262626;
    --grayscale8: #404040;
    --grayscale7: #525252;
    --grayscale6: #737373;
    --grayscale5: #A3A3A3;
    --grayscale4: #D4D4D4;
    --grayscale3: #E5E5E5;
    --grayscale2: #F5F5F5;
    --grayscale1: #FAFAFA;
    --grayscale1-rgb:250,250,250;

    /* font size */
    --fs-96:clamp(56px,6.67vw,96px);
    --fs-72:clamp(42px,5vw,72px);
    --fs-64:clamp(40px,4.44vw,64px);
    --fs-56:clamp(34px,3.89vw,56px);
    --fs-48:clamp(32px,3.33vw,48px);
    --fs-42:clamp(30px,2.92vw,42px);
    --fs-40:clamp(28px,2.78vw,40px);
    --fs-36:clamp(28px,2.5vw,36px);
    --fs-32:clamp(24px,2.22vw,32px);
    --fs-30:clamp(22px,2.08vw,30px);
    --fs-28:clamp(22px,1.94vw,28px);
    --fs-24:clamp(20px,1.67vw,24px);
    --fs-22:clamp(18px,1.53vw,22px);
    --fs-20:clamp(18px,1.39vw,20px);
    --fs-18:clamp(16px,1.25vw,18px);
    --fs-16:clamp(15px,1.11vw,16px);
    --fs-15:clamp(13px,1.04vw,15px);
    --fs-14:clamp(12px,0.97vw,14px);
    --fs-13:clamp(11px,0.9vw,13px);
    --fs-12:clamp(10px,0.83vw,12px);

    /* space */
    --space-140:clamp(100px,9.72vw,140px);
    --space-120:clamp(80px,8.33vw,120px);
    --space-100:clamp(70px,6.94vw,100px);
    --space-80:clamp(60px,5.56vw,80px);
    --space-70:clamp(52px,4.86vw,70px);
    --space-60:clamp(45px,4.17vw,60px);
    --space-40:clamp(30px,2.78vw,40px);
    --space-30:clamp(24px,2.08vw,30px);

    /* shadow */
    --shadow:0 4px 10px 0 rgba(0,0,0,.25);
    --text-shadow:0 4px 10px rgba(0,0,0,.25);
    
}

/*==========================================================
    TEXT COLOR
==========================================================*/
.color-main{color:var(--color-main)!important;}
.color-sub{color:var(--color-sub)!important;}
.color-white{color:var(--color-white)!important;}
.gray-11{color:var(--grayscale11)!important;}
.gray-10{color:var(--grayscale10)!important;}
.gray-9{color:var(--grayscale9)!important;}
.gray-8{color:var(--grayscale8)!important;}
.gray-7{color:var(--grayscale7)!important;}
.gray-6{color:var(--grayscale6)!important;}
.gray-5{color:var(--grayscale5)!important;}
.gray-4{color:var(--grayscale4)!important;}
.gray-3{color:var(--grayscale3)!important;}
.gray-2{color:var(--grayscale2)!important;}
.gray-1{color:var(--grayscale1)!important;}

/*==========================================================
    BACKGROUND
==========================================================*/
.bg-main-1{background:var(--bg-main-1)!important;}
.bg-main-2{background:var(--bg-main-2)!important;}
.bg-main{background:var(--color-main)!important;}
.bg-sub{background:var(--color-sub)!important;}
.bg-white{background:var(--color-white)!important;}
.bg-gray-11{background:var(--grayscale11)!important;}
.bg-gray-10{background:var(--grayscale10)!important;}
.bg-gray-9{background:var(--grayscale9)!important;}
.bg-gray-8{background:var(--grayscale8)!important;}
.bg-gray-7{background:var(--grayscale7)!important;}
.bg-gray-6{background:var(--grayscale6)!important;}
.bg-gray-5{background:var(--grayscale5)!important;}
.bg-gray-4{background:var(--grayscale4)!important;}
.bg-gray-3{background:var(--grayscale3)!important;}
.bg-gray-2{background:var(--grayscale2)!important;}
.bg-gray-1{background:var(--grayscale1)!important;}

/*==========================================================
    SHADOW
==========================================================*/
.shadow{box-shadow:var(--shadow)!important;}

.pd-120 {padding: var(--space-120) 0;}
.pd-100 {padding: var(--space-100) 0;}
.pd-80 {padding: var(--space-80) 0;}
.pd-70 {padding: var(--space-70) 0;}
.pd-60 {padding: var(--space-60) 0;}

.fw-500 {font-weight: 500 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-700 {font-weight: 700 !important;}
.fw-800 {font-weight: 800 !important;}
.fw-900 {font-weight: 900 !important;}

/*==========================================================
    TYPOGRAPHY
==========================================================*/
.eyebrow{word-break:keep-all; font-size:var(--fs-16); font-weight:700; line-height:1.5; color:var(--color-sub);}
.section-tit{word-break:keep-all; font-size:var(--fs-32); font-weight:700; line-height:1.4;}
.section-txt{word-break:keep-all; font-size:var(--fs-18); font-weight:500; line-height:2.0;}
.section-txt2{word-break:keep-all; font-size:var(--fs-18); font-weight:500; line-height:1.8;}
.card-tit{word-break:keep-all; font-size:var(--fs-24); font-weight:500; line-height:1.5;}
.article-head{word-break:keep-all; font-size:var(--fs-32); font-weight:600; line-height:1.5;}
.article-tit{word-break:keep-all; font-size:var(--fs-24); font-weight:600; line-height:1.5;}
.article-subtit{word-break:keep-all; font-size:var(--fs-20); font-weight:500; line-height:1.8;}
.article-txt{word-break:keep-all; font-size:var(--fs-18); font-weight:400; line-height:1.8;}
.point-txt{word-break:keep-all; font-size:var(--fs-20); font-weight:600; line-height:1.8; color:var(--color-main);}

/*==========================================================
    BTTOUN
==========================================================*/
.btn {width: fit-content; display:inline-flex; align-items:center; justify-content:center; gap:var(--fs-12); height:clamp(44px,3.33vw,48px); padding:0 clamp(24px,2.22vw,32px); border-radius:999px; font-size:var(--fs-16); font-weight:600; line-height:1.4; color: var(--color-white); background-color: var(--color-main); text-decoration:none; white-space:nowrap; transition:all .3s ease; cursor:pointer;}
.btn svg{flex-shrink:0; transition:transform .3s ease;}
.btn:hover svg {transform:translateX(4px);}
.btn:hover {background-color: var(--color-main-hover);}

/* 공통부분 */
.inner {width: calc(100% - 32px); max-width: 1320px; margin: 0 auto;}
.inner-s {width: calc(100% - 32px); max-width: 920px; margin: 0 auto;}
.center {text-align: center;}

.common-flex {display: flex; column-gap: 30px; row-gap: 60px;  flex-wrap: wrap;}
.common-flex-3 > a {width: calc(100% / 3 - 20px);}

.common-card {display: flex !important; flex-direction: column; row-gap: var(--fs-24);}
.common-card .text {display: flex; flex-direction: column; row-gap: 4px;}
.common-card .card-tit {font-size: var(--fs-22); display:-webkit-box; -webkit-line-clamp :1; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis; word-break:break-word;}

/* 그리드 레이아웃 */
.common-grid2 {display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--fs-20);}
.common-grid3 {display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--fs-20);}
.common-grid4 {display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--fs-20);}

.btn-area {display: flex; justify-content: space-between; align-items: center; column-gap: 20px; margin-top: var(--space-60);}
.btn-area.center {justify-content: center;}

.img-wrap {overflow: hidden;}
.img-wrap img {width: 100%; height: 100%; object-fit: cover; transition:.4s;}

.br-12 {border-radius: 12px;}
.br-10 {border-radius: 10px;}

.main-tit {width: 100%; display: flex; flex-direction: column; row-gap: 8px;}
.main-tit.center {align-items: center; justify-content: center; text-align: center;}
.main-tit .line {display: block; max-width: 122px; width: 100%; height: 1px; background-color: var(--color-border-1); margin-top: var(--fs-32); margin-bottom: var(--fs-40);}

/* layout */
header {width: 100%; position: fixed; top: 0; height: 80px; z-index: 999999; background-color: rgba(0,0,0,0.3);}
header .inner {height: 100%; display: flex; align-items: center; justify-content: space-between;}
header .logo img {height: 50px;}
.sub header,
header.scroll {background-color: var(--color-white); transition: all 0.3s; box-shadow: 0 1px 1px 0 rgba(0,0,0,.05);}
header .mo-btn{position:relative; font-size:0; width:24px; height:15px; cursor: pointer;}
header .mo-btn:after{top:auto; left:auto; right:0; bottom:0;}
header .mo-btn span {position:absolute; top:-1px; right:0; width:100%; height:2px; border-radius:5px; background: var(--color-white); transition:all 0.4s;}
header .mo-btn span:nth-child(2){top:50%; margin-top:-1px;}
header .mo-btn span:nth-child(3){top:100%; margin-top:-2px; right:auto; left:0; width:100%;}
.menu-open.sub header,
.menu-open header.scroll {background-color: transparent; transition: all 0.3s; box-shadow: none;}
.menu-open .mo-btn:before,
.sub header .mo-btn:before,
header.scroll .mo-btn:before {background: var(--grayscale10);}
.menu-open .mo-btn span,
.sub header .mo-btn span,
header.scroll .mo-btn span {background: var(--grayscale10);}
.menu-open #gnb_all {opacity: 1; visibility: visible;}
.menu-open header .logo {visibility: hidden;}
.menu-open header {background-color: transparent;}
.menu-open .mo-btn:hover span:nth-child(1){width:calc(100% - 8px);}
.menu-open .mo-btn span:nth-child(1) {background:transparent;}
.menu-open .mo-btn span:nth-child(2) {top: 8px; transform:rotate(-45deg);}
.menu-open .mo-btn span:nth-child(3) {top: 9px; transform:rotate(45deg);}
.menu-open .mo-btn:before {display: none;}
#gnb_all{position:fixed; inset:0; overflow-y:auto; z-index:99999; background:var(--color-white); visibility:hidden; opacity:0; transition:.3s ease-out; -ms-overflow-style:none; scrollbar-width:none;}
#gnb_all::-webkit-scrollbar{display:none;}
#gnb_all .mo-nav-bg {position: absolute; width: 100%; height: 100%; object-fit: cover; left: 0; top: 0; opacity: 0.04; z-index: 1;}
#gnb_all>.inner{position: relative; z-index: 2; display:flex; flex-direction:column; justify-content:center; min-height:100vh; padding:60px 0;}
#gnb_all > ul > li {display: flex; flex-direction: column;}
#gnb_all > ul > li:not(:last-of-type) {border-bottom: 1px solid var(--color-border-1);}
#gnb_all>ul>li>a{display:flex; align-items:flex-start; column-gap: var(--fs-20); transition:.3s ease-out; padding:clamp(20px,2vw,28px) 0; font-weight: 500; color:var(--grayscale7); font-size: var(--fs-28);}
#gnb_all>ul>li:first-of-type>a{padding:0 0 clamp(20px,2vw,28px) 0;}
#gnb_all>ul>li:last-of-type>a{padding:clamp(20px,2vw,28px) 0 0 0;}
#gnb_all > ul > li > a .arrow {width:clamp(26px,2.08vw,30px); height:clamp(26px,2.08vw,30px); flex-shrink: 0; margin-top: 6px; background-color: var(--bg-main-2); transition:.3s ease-out; border-radius: 50%; display: flex; align-items: center; justify-content: center;}
#gnb_all > ul > li .mo-mode {display: none;}
#gnb_all > ul > li:hover > a {color: var(--color-sub); font-weight: 600;}
#gnb_all > ul > li:hover > a .arrow {background-color: var(--color-main);}
#gnb_all > ul > li.links {flex-direction: row; column-gap: var(--fs-40);}
#gnb_all .sub-menu {display:flex; flex-direction:column; row-gap: var(--fs-20); margin-top: var(--fs-32);}
#gnb_all .sub-menu li a {font-size: var(--fs-20); font-weight: 500; color: var(--grayscale7); transition:.3s ease-out;}
#gnb_all .sub-menu li a:hover {color: var(--color-sub);}

.footer-top {width: 100%; height: 68px; display: flex; align-items: center; justify-content: center; background: var(--color-main);}
.footer-top p {color: var(--color-white); text-align: center;}
footer {padding: 70px 0; background-color: var(--grayscale11);}
footer .logo {display: flex; padding-bottom: 40px;}
footer .logo img {height: 50px;}
footer ul { display: flex; flex-wrap: wrap; column-gap: 28px; row-gap: 8px; padding-bottom: 24px;}
footer ul li {position: relative; color: var(--color-white); opacity: 0.6;}
footer ul li::after {position: absolute; width: 1px; height: 14px; background-color: #707070; top: 50%; right: -14px; transform: translate(0, -50%); display: block; content: '';}
footer ul li:nth-of-type(3):after {display: none;}
footer .design-by{ opacity:0; transition: all 0.15s; font-size:13px; color: var(--grayscale10); pointer-events:none;}
footer .design-by.show{ opacity:1; pointer-events:auto;}
#top_btn {position:fixed;bottom:50px;right:8%;width:64px;height:64px;z-index: 999;display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-main); border: 0; cursor: pointer; box-shadow: var(--shadow); transition:.3s ease-out;}
#top_btn:hover {background-color: var(--color-main-hover);}

/* 메인 배너 */
.main-visual-swiper {position:relative; overflow:hidden; height:clamp(480px,70vw,800px);}
.main-visual-swiper .swiper-slide {position: relative; overflow:hidden;}
.main-visual-swiper .swiper-slide::after {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.2); display: block; content: '';}
.main-visual-swiper .swiper-slide img {display:block; width:100%; height:100%; object-fit:cover; transform:scale(1.08); transition:transform 7s ease;}
.main-visual-swiper .swiper-slide-active img {transform:scale(1);}
.main-visual-swiper .main-visual-tit {position:absolute; left:50%; top: 50%; transform:translate(-50%, -50%); z-index:99; display:flex; flex-direction:column; row-gap:var(--fs-20);}
.main-visual-swiper .main-visual-tit .hero-tit {font-size: var(--fs-64); font-weight: 800; line-height: 1.2; text-shadow: var(--text-shadow);}
.main-visual-swiper .main-visual-tit .bullet {display: flex; align-items: center; font-weight:600; font-size: var(--fs-24); column-gap: var(--fs-12); text-shadow: var(--text-shadow);}
.main-visual-swiper .main-visual-tit .bullet span {display: block; width: var(--fs-20); height: 2px; background-color: var(--color-white); box-shadow: var(--shadow);} 

/* 인사말 */
.section-greeting {position: relative;}
.section-greeting::after {position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: url("/2026/autumn/img/mo-nav-bg.webp") no-repeat center center / cover; display: block; content: ''; z-index: -1; opacity: 0.1;}
.section-greeting .section-txt {color: var(--grayscale8);}

/* 일상 이야기 */
.section-story {position:relative; overflow:hidden; background:#fff;}
.section-story::before {position: absolute; z-index: 0; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--bg-main-1); display: block; content: '';}
.section-story::after {position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: url("/2026/autumn/img/section-story-bg.webp") no-repeat center center / cover; display: block; content: ''; z-index: 3; opacity: 0.13;}
.section-story-wave {position:absolute; bottom:0; left:0; z-index:2; width:100%; height: auto;}
.section-story-wave svg{display:block; width:100%; height:100%; z-index: 2;}
.section-story .inner {position:relative; z-index:4;}
.section-story .main-tit {margin-bottom: var(--space-100);}
.section-story .card-wrap {display: flex; justify-content: center; column-gap: var(--fs-24); row-gap: var(--space-80); flex-wrap: wrap;}
.section-story .card-wrap .common-card{position:relative; width:100%; max-width:424px; background-color:var(--color-white); box-shadow:var(--shadow); border-radius:var(--fs-20); padding:var(--fs-20) var(--fs-20) var(--fs-30);}
.section-story .card-wrap .common-card .img-wrap{height:280px; overflow:hidden;}
.section-story .card-wrap .common-card .card-tit{-webkit-line-clamp:2;}
.section-story .card-wrap .common-card > img{position:absolute; top:-6%; left:50%; transform:translateX(-50%); z-index: 10;}
.section-story .card-wrap .common-card .img-wrap img{display:block; width:100%; transition:transform .4s ease;}
.section-story .card-wrap .common-card:hover .img-wrap img{transform:scale(1.05);}

/* 축제 */
.section-festival .inner {position: relative; display: flex; column-gap: var(--fs-24); align-items: flex-start; justify-content: space-between; padding: var(--space-140) 0 var(--space-100) 0;}
.section-festival .festival-person {position: absolute; left: 0; bottom:calc(var(--space-120) * -1); z-index: 100;}
.section-festival .festival-tree {position: absolute; right: calc(var(--space-120) * -1); bottom:calc(var(--space-100) * -1); z-index: 100;}
.section-festival .section-txt2 {color: var(--grayscale8);}
.section-festival .btn-area {margin-top: var(--space-80);}
.section-festival .main-tit {width: auto; flex-shrink: 0;}
.section-festival .festival-img {display: flex; column-gap: var(--fs-24); align-items: flex-start;}
.section-festival .festival-img .img-wrap {max-width: 312px; max-height: 312px; width: 100%; height: 100%; border-radius: 50%; box-shadow: var(--shadow);}
.section-festival .festival-img li {max-width: 312px;}
.section-festival .festival-img li:nth-of-type(2) {margin-top: var(--space-120);}
.section-festival .festival-img .festival-info {padding: 0 var(--fs-48); margin-top: -48px;}
.section-festival .festival-img .num{font-size:var(--fs-40); font-weight:600; line-height:1.2; text-shadow:-2px -2px 0 var(--color-white), 2px -2px 0 var(--color-white), -2px 2px 0 var(--color-white), 2px 2px 0 var(--color-white);}
.section-festival .festival-img .section-txt2 {padding-top: 8px;}

/* 지난호 웹진 */
.section-article{position:relative; overflow:hidden; background:#fff;}
.section-article::after {position: absolute; z-index: 0; bottom: 0; left: 0; width: 100%; height: 60vh; background-color: var(--bg-main-2); display: block; content: '';}
.section-article-wave {position:absolute; top:0; left:0; z-index:0; width:100%; height: auto;}
.section-article-wave svg{display:block; width:100%; height:100%; z-index: 1;}
.section-article .inner{position:relative; z-index:2;}
.section-article .swiper-btn-wrap{display:flex; flex-direction:column; align-items:flex-end; row-gap:var(--fs-20); margin-bottom:var(--fs-32);}
.section-article .swiper-btn svg{width:var(--fs-48); height:var(--fs-48);}
.section-article .swiper-button-disabled{opacity:.4;}
.section-article .article-swiper .img-wrap{height:414px;}
.section-article .article-swiper .img-wrap img{display:block; width:100%; transition:.4s;}
.section-article .article-swiper .swiper-slide:hover img{transform:scale(1.05);}

/* sub */
.sub-cont {padding: var(--space-100) 0 var(--space-120) 0;}

.sub-visual {position: relative; height:clamp(160px,20.83vw,300px); background-color: var(--bg-main-1); margin-top: 80px;}
.sub-visual .sub-visual-content {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; row-gap: 4px;}
.sub-visual .sub-visual-bg {position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0.13;}

.article-wrap .inner-s {display: flex; flex-direction: column; row-gap: var(--space-80);} 
.article-wrap .article-box {display: flex; flex-direction: column; row-gap: var(--fs-40);} 
.article-wrap .article-text {display: flex; flex-direction: column; row-gap: var(--fs-12);}
.article-wrap .article-text-20 {row-gap: var(--fs-20);}
.article-wrap .article-txt {color: var(--grayscale8);}

.article-wrap .bullet {display: flex; align-items: flex-start; column-gap: var(--fs-12); font-weight: 600; color: var(--color-main); font-size: var(--fs-20); line-height: 1.8;}
.article-wrap .bullet span {width: 3px; height: var(--fs-24); margin-top: 6px; display: block; background-color: var(--color-main);}

.article-wrap .img-wrap {border-radius: 60px; height:clamp(200px,33.33vw,480px); border-radius: var(--fs-12);}
.article-wrap .img-wrap.line {border: 1px solid var(--color-border-1);}
.article-wrap .img-wrap.large {height:clamp(320px,42.5vw,612px);}
.article-wrap .img-wrap.small {height:clamp(200px,27.78vw,400px);}
.article-wrap .img-wrap:hover img {transform:scale(1.05);}
.article-wrap .common-grid2 .img-wrap {height:clamp(200px,16.25vw,234px);}

.article-wrap .bg {background-color: var(--bg-main-1); border-radius: var(--fs-12); padding: var(--fs-24);}
.article-wrap .label {width: fit-content; font-size: var(--fs-18); font-weight: 600; color: var(--color-white); line-height: 1.5; border-radius: 999px; background-color: var(--color-main); padding: 4px 16px;}
.article-wrap .num strong {font-size: var(--fs-24); font-weight: 600;}
.article-wrap .num.red {color: #E50000;}
.article-wrap .num.blue {color: #0035E5;}

.article-btn-area {position: relative; height: 250px; display: flex; align-items: center; justify-content: center;}
.article-btn-area::after {position: absolute; z-index: 0; bottom: 0; left: 0; width: 100%; height: 10vh; background-color: var(--bg-main-2); display: block; content: '';}
.article-btn-area .sub-article-wave {position:absolute; top:0; left:0; z-index:1; width:100%; height: auto;}
.article-btn-area .sub-article-wave svg{display:block; width:100%; height:100%; z-index: 2;}
.article-btn-area .inner-s {position: relative; z-index: 3; display: flex; align-items: flex-start; column-gap: var(--fs-20);}
.article-btn-area .inner-s > a {width: 50%; display: flex; flex-direction: column; row-gap: var(--fs-16);}
.article-btn-area .inner-s > a .btn-top {display: flex; align-items: center; column-gap: 4px;}
.article-btn-area .inner-s > a .btn-top span {line-height: 1.5; font-weight: 600; font-size: var(--fs-16); color: var(--color-sub);}
.article-btn-area .inner-s > a.next-btn {align-items: flex-end;}
.article-btn-area .article-subtit {display:-webkit-box; -webkit-line-clamp :1; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis; word-break:break-word;}
.article-btn-area .sub-person {position: absolute; z-index: 5; width: 128px; left: -200px; top: -200px;}
.article-btn-area .sub-tree {position: absolute; z-index: 5; height: 88px; right: -200px; top: -100px;}

.greeting-wrap .sign {width: 100%; display: flex; align-items: flex-end; justify-content: flex-end; column-gap: 6px; text-align: right;}
.greeting-wrap .sign .name {font-size: var(--fs-32); font-family: 'NanumMyeongjoBold';}

.article-news-swiper {position:relative;width:100%;overflow:hidden;}
.article-news-swiper .swiper-button-prev,
.article-news-swiper .swiper-button-next{display: flex; align-items: center; justify-content: center; width:var(--fs-36);height:var(--fs-36);margin:0 !important;top: calc(50% - 44px);transform:translateY(-50%); background:rgba(0,0,0,.4); color: transparent !important;}
.article-news-swiper .swiper-button-prev svg,
.article-news-swiper .swiper-button-next svg {width: var(--fs-12) !important; height: auto !important;}
.article-news-swiper .swiper-button-prev{left:0 !important;}
.article-news-swiper .swiper-button-next{right:0 !important;}
.article-news-pagination{display:flex;align-items:center;justify-content:center;gap:4px;width:max-content;margin:12px auto 0; height: 32px; padding:0 var(--fs-20); font-weight: 500; border-radius:999px;background:#F8F1E9;font-size:var(--fs-16);line-height:1;color:var(--grayscale8);}
.article-news-pagination .current{color:var(--color-sub);}

.safe-wrap .check-box {display: flex; flex-direction: column; row-gap: 10px;}
.safe-wrap .check-box .article-txt {display: flex; align-items: center; column-gap: var(--fs-12);}

.table-wrap table{border-collapse:separate;border-spacing:0;}
.table-wrap th {background-color: var(--color-main); padding: var(--fs-16) var(--fs-12); color: var(--color-white) !important; font-weight: 600;}
.table-wrap th:first-of-type {border-right: 1px solid var(--color-border-1); border-radius: var(--fs-12) 0 0 0;}
.table-wrap th:last-of-type {border-radius: 0 var(--fs-12) 0 0;}
.table-wrap td {padding: var(--fs-16) var(--fs-12); text-align: center; border-right: 1px solid var(--color-border-1); border-bottom: 1px solid var(--color-border-1);}
.table-wrap td:first-of-type {border-left: 1px solid var(--color-border-1);}
.table-wrap tr:last-of-type td:first-of-type {border-radius: 0 0 0 var(--fs-12);}
.table-wrap tr:last-of-type td:last-of-type {border-radius: 0 0 var(--fs-12) 0;}

.data-wrap .article-list {display: flex; flex-direction: column; row-gap: var(--fs-48);}
.data-wrap .article-list .article-item {display: flex; align-items: flex-start; column-gap: var(--space-60);}
.data-wrap .article-list .article-item:nth-of-type(3),
.data-wrap .article-list .article-item:nth-of-type(7) {flex-direction: row-reverse;}
.data-wrap .article-list .article-item .info {display: flex; align-items: flex-start; column-gap: var(--fs-32); flex-shrink: 0;}
.data-wrap .article-list .article-item .info ul {display: flex; flex-direction: column; row-gap: 4px;}
.data-wrap .article-list .article-item .img-wrap {height:clamp(200px,16.25vw,245px);}
.data-wrap .line {display: block; width: 100%; height: 1px; background-color: var(--color-border-1);}

.festival-visual {height:calc(clamp(160px,20.83vw,300px) + clamp(48px,4.44vw,64px));}
.festival-visual .sub-visual-content {padding-bottom: clamp(48px,4.44vw,64px);}
.festival-tab-wrap {position:absolute;left:50%;bottom:0;transform:translateX(-50%);}
.festival-tab {display:flex;column-gap: var(--fs-20);}
.festival-tab button {position:relative;width: calc(100% / 3);height:clamp(48px,4.44vw,64px);padding:0;border:0;background:transparent; border-radius:var(--fs-20) var(--fs-20) 0 0;font-size:clamp(18px,1.67vw,24px);font-weight:500;color:var(--color-border-2);cursor:pointer; transition:all .3s ease;;}
.festival-tab button:hover,
.festival-tab button.active {background:var(--color-white);}
.festival-wrap .tab-content{display:none;}
.festival-wrap .tab-content.active{display:block;}

.festival-wrap .article-list {display: flex; flex-direction: column; row-gap: var(--fs-16);}
.festival-wrap .article-list .article-txt {display: flex; align-items: flex-start; column-gap: var(--fs-20);}
.festival-wrap .article-list .article-txt img {margin-top: 4px;}
.festival-wrap .article-list a.article-txt {text-decoration: underline;}
.festival-wrap .article-list .price-multi {display: flex; align-items: flex-start; column-gap: var(--fs-20);}
.festival-wrap .article-list .price-multi .line {display: block; width: 1px; height: stretch; background-color: var(--color-border-1);}
.festival-link-wrap {row-gap: var(--fs-48); margin-top: var(--space-120); text-align: center;}
.festival-link {display: flex; border: 1px solid var(--color-border-1); border-radius: 8px; overflow: hidden;}
.festival-link > a {width: calc(100% / 3); padding: var(--fs-24); display: flex; flex-direction: column; align-items: center; justify-content: center; transition:all .3s ease;}
.festival-link > a:not(:last-of-type) {border-right: 1px solid var(--color-border-1);}
.festival-link > a .more-btn {display: flex; align-items: center; column-gap: 8px; transition:all .3s ease; margin-top: 8px;}
.festival-link > a:hover {background-color: rgba(var(--color-main-rgb),.1);}

/* 반응형 */
@media screen and (max-width: 1800px) {
    
}
@media screen and (max-width: 1520px) {
    .article-btn-area::after {height: 16vh;}
    .article-btn-area .sub-person {width: 9vw; left: -12vw; top: -12vw;}
    .article-btn-area .sub-tree {height: 5.5vw; right: -12vw; top: -8vw;}
}
@media screen and (max-width: 1440px) {
    .section-story .card-wrap .common-card {width: calc(100% / 3 - 16px);}
}
@media screen and (max-width: 1280px) {
    
    .section-article .article-swiper .img-wrap {height: 34vw;}
    
    .section-story .card-wrap .common-card .img-wrap {height: 22vw;}
    
    .section-festival .festival-img {flex-wrap: wrap; justify-content: center;}
    .section-festival .festival-img li:nth-of-type(2) {margin-top: 220px;}
    .section-festival .festival-img li:nth-of-type(3) {margin-top: -160px;}
    .section-festival .festival-img li:nth-of-type(3) {margin-right: 336px;}
}
@media screen and (max-width: 1024px) {
    
    .section-article .article-swiper .img-wrap {height: 42vw;}
    
    .section-festival .inner {flex-direction: column; justify-content: center; row-gap: var(--space-80);}
    .section-festival .main-tit {width: 100%; justify-content: center; align-items: center; text-align: center;}
    .section-festival .btn-area {margin-top: var(--fs-48);}
    .section-festival .festival-person {width: 18vw;}
    .section-festival .festival-tree {height: 17vw;}
    
    .article-btn-area::after {height: 18vh;}
    .article-btn-area .sub-tree,
    .article-btn-area .sub-person {width: 9vw; left: -12vw; top: -12vw;}
}
@media screen and (max-width: 768px) {
    
    .section-article .article-swiper .img-wrap {height: 60vw;}
    
    .section-story::before  {height: 130vh;}
    .section-story .card-wrap .common-card {width: calc(100% / 2 - 12px);}
    .section-story .card-wrap .common-card .img-wrap {height: 32vw;}

    .section-festival .festival-img {width: 100%; flex-direction: column; row-gap: var(--space-60); justify-content: center; align-items: center;}
    .section-festival .festival-img li:nth-of-type(2) {margin-top: 0;}
    .section-festival .festival-img li:nth-of-type(3) {margin: 0 !important;}
    .section-festival .festival-img .festival-info {text-align: center; margin-top: -16px;}
    .section-festival .festival-person {width: 16vw;}
    .section-festival .festival-tree {height: 15vw;}

    .article-btn-area {height: auto;}
    .article-btn-area .inner-s {padding: var(--space-60) 0; border-top: 1px solid var(--color-border-1);}
    .article-btn-area::after,
    .article-btn-area .sub-article-wave {display: none;}

    .article-wrap .common-grid2 {grid-template-columns: repeat(1, 1fr);}

    .data-wrap .article-list .article-item {flex-direction: column !important; row-gap: var(--fs-36);}
    .data-wrap .article-list .article-item .info {flex-direction: column; row-gap: var(--fs-20);}
    .data-wrap .article-list .article-item .img-wrap {width: 100%;}

    .festival-wrap .article-list .price-multi {flex-direction: column; row-gap: 12px;}
    .festival-wrap .article-list .price-multi br {display: none;}
    .festival-wrap .article-list .price-multi .line {width: 100%; height: 1px;}

    .festival-link > a {padding: var(--fs-24) var(--fs-12);}

    #top_btn {right: 4%;}

    .footer-top {height: 52px;}
    .footer-top p {font-size: 15px;}
    footer {padding: 60px 0;}
    footer .logo {padding-bottom: 32px;}
    footer .logo img {height: 58px;}
    footer ul {width: 100%; max-width: 500px;}
    footer ul li:nth-of-type(2):after {display: none;}

}
@media screen and (max-width: 600px) {
    
}
@media screen and (max-width: 500px) {

    header {height: 64px;}
    header .logo img {height: 32px;}
    header .mo-btn {width: 20px; height: 12px;}
    header .mo-btn span:nth-child(3) {margin-top: -1px;}
    .menu-open .mo-btn span:nth-child(3) {top: 8px;}

    #gnb_all > ul > li .pc-mode {display: none;}
    #gnb_all > ul > li .mo-mode {display: flex; flex-direction: column; row-gap: 4px; font-size: var(--fs-20);}
    #gnb_all > ul > li .mo-mode small {font-size: var(--fs-15);}
    #gnb_all>ul>li:not(.links)>a {align-items: center;}
    #gnb_all > ul > li > a .arrow {margin-top: 0;}
    #gnb_all > ul > li > a .arrow img {width: var(--fs-12); height: var(--fs-12);}
    #gnb_all .sub-menu li a {font-size: var(--fs-16); row-gap: var(--fs-14);}

    footer .logo img {height: 44px;}
    footer ul {max-width: 100%; flex-direction: column;}
    footer ul li:nth-of-type(3):after {display: none;}
    #top_btn {width: 54px; height: 54px;}
    #top_btn svg {width: 32px; height: 32px;}

    .section-story::before {height: 2300px;}
    .section-story .card-wrap .common-card {width: 100%;}
    .section-story .card-wrap .common-card .img-wrap {height: 280px;}

    .section-festival .festival-person,
    .section-festival .festival-tree {display: none;}

    .sub-visual {margin-top: 64px;}

    .festival-wrap .article-list {row-gap: 12px;}
    .festival-wrap .article-list .article-txt {column-gap: 16px;}
    .festival-link {flex-direction: column;}
    .festival-link > a {width: 100%; padding: var(--fs-12);}
    .festival-link > a > img {width: 56px; height: 56px;}
    .festival-link > a:not(:last-of-type) {border-right: 0; border-bottom: 1px solid var(--color-border-1);}

}

@media screen and (max-width: 480px) {

}

@media screen and (max-width: 375px) {
    .section-article::after {height: 73vh;}
    .section-article .article-swiper .img-wrap {height: 124vw;}

    .section-festival .festival-img .festival-info {padding: 0;}
}

@media screen and (max-width: 340px) {

}

/*********/
/*********/
/*********/
/*********/
/*********/
/*********/
/*********/