@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap&subset=korean");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");
@import url('https://fonts.cdnfonts.com/css/segoe-ui-4');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap");

/*Common*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
html {
  overflow-y: scroll;
}
body {
  background-color: #fff;
  word-break: keep-all;
  -webkit-text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
li,
dt,
dd,
a,
p,
input,
textarea,
select,
option,
button {
  color: #555;
  font-family: "Segoe UI","pretendard", "돋움", dotum, sans-serif;
  font-size: 14px;
  font-weight: normal;
}
img,
fieldset,
iframe {
  border: 0 none;
}
ul,
ol,
li {
  list-style: none;
}
em,
address {
  font-style: normal;
}
img,
input,
select,
textarea {
  vertical-align: middle;
}
a {
  color: #7d7d7d;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #333;
  text-decoration: none;
}
button,
label {
  cursor: pointer;
  _cursor/**/: hand;
}
button * {
  position: relative;
}
textarea {
  overflow: auto;
}
option {
  padding-right: 6px;
}
.input_text,
textarea {
  margin: -1px 0;
  padding-right: 1px;
}
.input_check,
.input_radio {
  width: 13px;
  height: 13px;
}
.blind,
legend,
caption {
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
hr {
  display: none;
}
legend {
  width: 0;
}
:root legend {
  margin-top: -1px;
  font-size: 0;
  line-height: 0;
}
caption {
  line-height: 0;
}
img {
  max-width: 100%;
}
.viewCon a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

/*test*/
.test1 {
  border: 1px solid red;
}
.test2 {
  background: #4f7beb;
}

.font1 {
  font-family: "Noto Sans KR";
}
.font2 {
  font-family: "Montserrat";
}

/* popup */
.pop_today_close {
  padding: 1px 7px 3px 7px;
  color: #ffffff;
  background: #303030;
  vertical-align: middle;
  border: 0px;
}
.pop_close {
  padding: 1px 7px 3px 7px;
  color: #ffffff;
  background: #303030;
  vertical-align: middle;
  border: 0px;
}

@media (max-width: 767px) {
  /* 메인 레이어 팝업 */
  .main_layer_popup {
    width: 96% !important;
    left: 50% !important;
    top: 50px !important;
    transform: translateX(-50%);
  }
  .main_layer_popup .popupContent {
    height: 100% !important;
  }
  .main_layer_popup img {
    width: 100%;
  }
}

/*=============== 로딩스피너 =================*/
#loadingIndicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateBg {
  0% {
    transform: translate(-50%, -50%) scale(4) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(4) rotate(360deg);
  }
}
/*=============== 로딩스피너 끝 ================*/

/*=============================== 사이트 CSS 시작 ===============================*/




#wrap{overflow:hidden;}


/* header */
#header{
  position:fixed;left:00%;top:0;z-index:1000;
  width:100%; 
  transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change:transform;
}
#header.is-header-hidden{
  transform:translate(0%, -100%);
  pointer-events:none;
}
@media (prefers-reduced-motion:reduce){
  #header{transition-duration:0.01ms;}
}

/* quick — Figma 4118:16178 */
.quick{
  position:fixed;right:60px;bottom:clamp(24px,3vh,60px);z-index:900;
  display:flex;flex-direction:column;align-items:flex-start;gap:0;
  pointer-events:none;
}
.quick__panel{
  position:absolute;
  left:0;
  bottom:calc(100% + 8px);
  display:flex;flex-direction:column;align-items:stretch;gap:8px;
  width:66px;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transform:translate3d(0,12px,0);
  transform-origin:bottom center;
  transition:
    opacity 0.38s cubic-bezier(0.22,1,0.36,1),
    transform 0.42s cubic-bezier(0.22,1,0.36,1),
    visibility 0s linear 0.42s;
}
.quick.is-open .quick__panel{
  pointer-events:auto;
  opacity:1;
  visibility:visible;
  transform:translate3d(0,0,0);
  transition:
    opacity 0.42s cubic-bezier(0.22,1,0.36,1),
    transform 0.42s cubic-bezier(0.22,1,0.36,1),
    visibility 0s linear 0s;
}
.quick__pill{
  display:flex;align-items:center;justify-content:center;
  box-sizing:border-box;
  width:100%;aspect-ratio:1/1;
  border-radius:100px;
  background:#01a1b8;
  color:#fff;
  text-decoration:none;
  font-family:"pretendard","Segoe UI",sans-serif;
  font-size:var(--font-size-16);font-weight:600;letter-spacing:-0.64px;
  line-height:normal;
  transition:
    opacity 0.24s cubic-bezier(0.22,1,0.36,1),
    transform 0.26s cubic-bezier(0.22,1,0.36,1),
    background-color 0.2s ease;
  transition-delay:0s;
  align-self:stretch;
  white-space:nowrap;
  opacity:0;
  transform:translate3d(0,10px,0);
}
.quick.is-open .quick__pill{
  opacity:1;
  transform:translate3d(0,0,0);
  transition-duration:0.32s, 0.36s, 0.2s;
}
.quick.is-open .quick__pill:nth-child(1){transition-delay:40ms;}
.quick.is-open .quick__pill:nth-child(2){transition-delay:58ms;}
.quick.is-open .quick__pill:nth-child(3){transition-delay:76ms;}
.quick.is-open .quick__pill:nth-child(4){transition-delay:96ms;}
.quick__pill:hover{
  background:#0196ab;
}
.quick__pill--icon img{
  display:block;
  width:36px;
  height:36px;
  object-fit:contain;
}
.quick__toggle{
  pointer-events:auto;
  display:flex;align-items:center;justify-content:center;
  width:66px;height:66px;
  align-self:stretch;
  margin:0;
  border:none;
  border-radius:100px;
  box-sizing:border-box;
  background:#0196ab;
  cursor:pointer;
  transition:background-color 0.38s cubic-bezier(0.22,1,0.36,1),
    transform 0.22s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.38s ease;
}
.quick__toggle:active{
  transform:scale(0.98);
}
.quick__toggleIcon{
  position:relative;
  display:flex;
  width:24px;
  height:24px;
  align-items:center;
  justify-content:center;
}
.quick__toggleIcon svg{
  display:block;
}
.quick__iconOpen path{
  stroke:#fff;
  transition:stroke 0.34s cubic-bezier(0.22,1,0.36,1),
    transform 0.34s cubic-bezier(0.22,1,0.36,1);
  transform-origin:center;
}
.quick.is-open .quick__toggle{
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.quick.is-open .quick__iconOpen path{
  stroke:#000;
  transform:rotate(45deg);
}

@media (max-width:812px){
  .quick{
    right:20px;
    bottom:max(20px, env(safe-area-inset-bottom, 0px));
  }
  .quick__panel{width:50px;}
  .quick__toggle{
    width:50px;height:50px;
  }
}





.head{ 
  position:relative;
  width:100%;max-width:1800px;
  margin:0 auto;
  padding:23.4px 0 0;
  text-align:center;
}
.head .gnb{width:100%;}
.head .gnb h1 a{display:block;text-indent:-9999px;}
.head .gnb .logo1{
  position:absolute;left:0;top:23.4px;;
  width:100px;height:23px;
  background:url(/images/common/logo1.png) no-repeat center / contain;
}
.head .gnb .logo2{
  width: 330px;margin:0 auto;
  aspect-ratio:660/127;
  background:url(/images/common/logo2.png) no-repeat center / contain;  
}
.head .gnb .gnb__actions{
  position:absolute;right:0;top:23.4px;
  display:flex;align-items:center;
  gap:8px;
}
.head .gnb .linkInsta{display:block;line-height:0;}
.head .gnb .linkInsta img{width:23.4px;}
.head .gnb .btnMenu{
  display:none;
  border:0;background:transparent;
  cursor:pointer;
}
.head .pcNav{
  margin-top:34.4px;
  border-top:1px solid #000;border-bottom:1px solid #000; 
}
.head .pcNav>ul{display:flex;justify-content:space-between;}
.head .pcNav>ul>li{flex:1;position:relative;text-align:center;}
.head .pcNav>ul>li>a{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:58px;
  font-family: "Segoe UI";font-size:var(--font-size-25);font-weight:600;color:#231815;
}
.head .pcNav>ul>li:last-child>a{font-weight:900;}
.head .pcNav>ul>li>ul{
  display:none;
  position:absolute;left:0;top:100%;
  width:100%;
  border:1px solid #000;
  z-index:2;
}
/* 2뎁스: 상단 링크와 패널 사이 틈·테두리 통과 시 끊김 완화 */
.head .pcNav>ul>li>ul::before{
  content:"";
  position:absolute;
  left:0;right:0;
  height:14px;
  bottom:100%;
}
.head .pcNav>ul>li>ul>li>ul{
  display:none;
  position:absolute;left:100%;top:0;
  width:100%;
  border:1px solid #000;
  z-index:3;
}
/* 3뎁스: 좌측 플라이아웃 틈 완화 */
.head .pcNav>ul>li>ul>li>ul::before{
  content:"";
  position:absolute;
  right:100%;top:0;
  width:12px;height:100%;
}
.head .pcNav>ul>li>ul>li{position:relative;border-bottom:1px solid #262626;}
.head .pcNav>ul>li>ul>li:last-child{border:0;}
.head .pcNav>ul>li>ul>li>a{
  display:flex;align-items:center;
  padding:16px;
  background:#d7dce2;
  font-family: "Pretendard";font-size:var(--font-size-18);font-weight:500;color:#262626;
}
.head .pcNav>ul>li>ul>li>ul>li{border-bottom:1px solid #444;}
.head .pcNav>ul>li>ul>li>ul>li:last-child{border:0;}
.head .pcNav>ul>li>ul>li>ul>li>a{
  display:flex;align-items:center;
  padding:16px;
  background:#d7dce2;
  font-family: "Pretendard";font-size:var(--font-size-18);font-weight:500;color:#262626;  
}

/* header — tablet/mobile compact nav (813~1399, ~812) */
@media (max-width:1399px){
  html{overflow-x:hidden;}
  body.is-mobile-nav-open{overflow:hidden;}
  body.is-place-gallery-open{overflow:hidden;}

  #header .head{
    max-width:none;
    width:100%;
    padding:0 16px;
    box-sizing:border-box;
  }
  #header .head .gnb{
    position:relative;
    height:72px;
    border-bottom:1px solid #000;
  }
  #header .head .gnb .logo1{
    left:0;
    top:50%;
    width:108px;
    height:24px;
    transform:translateY(-50%);
  }
  #header .head .gnb .logo2{display:none;}
  #header .head .gnb .gnb__actions{
    right:0;
    top:50%;
    transform:translateY(-50%);
  }
  #header .head .gnb .linkInsta{display:none;}
  #header .head .gnb .btnMenu{
    display:flex;align-items:center;justify-content:center;
    width:32px;height:32px;
    padding:0;
  }
  #header .head .gnb .btnMenu__icon{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    width:27px;
    height:27px;
  }
  #header .head .gnb .btnMenu__icon span{
    display:block;
    width:100%;
    height:1.5px;
    background:#231815;
    transition:transform 0.3s ease, opacity 0.3s ease;
    transform-origin:center;
  }
  body.is-mobile-nav-open #header{
    z-index:1002;
  }
  body.is-mobile-nav-open #header .head .gnb .btnMenu__icon span:nth-child(1){
    transform:translateY(7.5px) rotate(45deg);
  }
  body.is-mobile-nav-open #header .head .gnb .btnMenu__icon span:nth-child(2){
    opacity:0;
  }
  body.is-mobile-nav-open #header .head .gnb .btnMenu__icon span:nth-child(3){
    transform:translateY(-7.5px) rotate(-45deg);
  }
  #header .head .pcNav{
    display:none;
    position:fixed;
    left:0;
    right:0;
    top:72px;
    height:calc(100dvh - 72px);
    z-index:1001;
    margin:0;
    padding:20px 16px 40px;
    border:0;
    background:#d7dce2;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    box-sizing:border-box;
  }
  body.is-mobile-nav-open #header .head .pcNav{display:block;}
  #header .head .pcNav>ul{
    flex-direction:column;
  }
  #header .head .pcNav>ul>li{
    flex:none;
    text-align:left;
    border-bottom:1px solid #000;
  }
  #header .head .pcNav>ul>li>a{
    justify-content:space-between;
    height:58px;
    font-size:18px;
    padding-right:8px;
  }
  #header .head .pcNav>ul>li:has(>ul)>a::after{
    content:"";
    width:16px;height:16px;
    background:url(/images/common/allmenu_arr.png) no-repeat center / contain;
    transition:transform 0.3s ease;
  }
  #header .head .pcNav>ul>li>ul{padding:10px 0;}
  #header .head .pcNav>ul>li>ul>li{border-bottom:0;}
  #header .head .pcNav>ul>li>ul>li.dep3>a::after{
    content:"+";
    flex-shrink:0;
    font-family:"pretendard","Segoe UI",sans-serif;
    font-size:20px;
    font-weight:400;
    line-height:1;
    color:#231815;
    margin-right:10px;
    transition:transform 0.3s ease;
  }
  #header .head .pcNav>ul>li.is-open>a::after{transform:rotate(180deg);}
  #header .head .pcNav>ul>li>ul>li.dep3.is-open>a::after{transform:rotate(45deg);}
  #header .head .pcNav>ul>li>ul{
    display:none;
    position:static;
    border:0;
    border-top:1px solid rgba(0,0,0,0.15);
    background:#dfe3e8;
  }
  #header .head .pcNav>ul>li>ul::before{display:none;}
  #header .head .pcNav>ul>li>ul>li>a{
    justify-content:space-between;
    height:auto;
    padding:14px 0 14px 12px;
    font-size:15px;
    background:transparent;
  }
  #header .head .pcNav>ul>li>ul>li>ul{
    display:none;
    position:static;
    border:0;
    margin:0;
    padding-left:12px;
  }
  #header .head .pcNav>ul>li>ul>li>ul::before{display:none;}
  #header .head .pcNav>ul>li>ul>li>ul>li>a{
    padding:10px 0 10px 12px;
    font-size:14px;
    background:transparent;
  }
}
@media (min-width:813px) and (max-width:1399px){
  #header .head{
    width:94%;
    padding:0;
  }
  #header .head .gnb{
    height:80px;
  }
  #header .head .gnb .logo1{
    width:90px;
    height:21px;
  }
  #header .head .gnb .logo2{
    display:block;
    position:absolute;
    left:50%;
    top:50%;
    width:220px;
    margin:0;
    transform:translate(-50%, -50%);
  }
  #header .head .pcNav{
    top:80px;
    height:calc(100dvh - 80px);
    padding:0 24px 40px;
  }
  #header .head .pcNav>ul>li>a{
    height:64px;
    font-size:22px;
  }
  #header .head .pcNav>ul>li>ul>li>a{
    font-size:17px;
  }
  #header .head .pcNav>ul>li>ul>li>ul>li>a{
    font-size:15px;
  }
}



.scroll{background:#fff;}





/* */
.innerWrap{
  max-width:1800px;width:94%;
  margin:0 auto;
}

.btnMore {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  text-align: center;
  text-decoration: none;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: var(--font-size-18);
  color: #000;
  font-weight: 500;
  transition: border-color 0.35s ease;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  min-width: 147px;
  box-sizing: border-box;
  text-transform: uppercase;
}
/* 단일 링크(게시판 List 등): .front/.back 없음 */
.btnMore:not(:has(.back)) {
  padding: 20px 10px;
}

.btnMore:has(.front):has(.back) .front,
.btnMore:has(.front):has(.back) .back {
  display: block;
  padding: 20px 10px;
  box-sizing: border-box;
  line-height: normal;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btnMore:has(.front):has(.back) .front {
  position: relative;
}

.btnMore:has(.front):has(.back) .back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateY(100%);
}

.btnMore:has(.front):has(.back):hover .front,
.btnMore:has(.front):has(.back):focus-visible .front {
  transform: translateY(-100%);
}

.btnMore:has(.front):has(.back):hover .back,
.btnMore:has(.front):has(.back):focus-visible .back {
  transform: translateY(0);
}

.btnMore:hover,
.btnMore:focus-visible {
  border-color: #000;
  color: #000;
}





/* footer — Figma main footer_new 4227:7826 */
#footer .foot {
  padding: 60px;
  box-sizing: border-box;
  background: #f3f4f5;
}
#footer .foot .innerWrap {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}
#footer .foot__bar {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 24px 0;
  box-sizing: border-box;
}
#footer .foot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
#footer .foot__left {
  display: flex;
  align-items: flex-start;
  gap: 137px;
  flex: 1;
  min-width: 0;
}
#footer .foot,
#footer .foot .innerWrap,
#footer .foot__bar,
#footer .foot__row {
  overflow: visible;
}
#footer .foot__famDetails {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  z-index: 1;
}
#footer .foot__famDetails[open] {
  z-index: 50;
}
#footer .foot__famDetails[open] .foot__famSummary {
  border: 1px solid #111;
}
#footer .foot__famSummary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 18px;
  border: none;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #111;
  box-sizing: border-box;
  background: transparent;
  font-family: "pretendard", "Segoe UI", sans-serif;
  font-size: var(--font-size-22);
  font-weight: 400;
  letter-spacing: -0.44px;
  color: #262626;
}
#footer .foot__famSummary::-webkit-details-marker {
  display: none;
}
#footer .foot__famSummary::marker {
  content: "";
}
#footer .foot__famLabel {
  line-height: 32px;
  white-space: nowrap;
}
#footer .foot__famIcon {
  display: flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
#footer .foot__famIcon svg {
  display: block;
}
/* #footer .foot__famDetails[open]:has(.foot__famList:not(:empty)) .foot__famSummary {
  border-bottom: 1px solid #111;
} */
#footer .foot__famList {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 50;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #111;
  border-bottom: none;
  background: #f3f4f5;
}
#footer .foot__famList:empty {
  display: none;
}
#footer .foot__famList li {
  margin: 0;
  border-bottom: 1px solid #999;
}
#footer .foot__famList li:last-child {
  border-bottom: none;
}
#footer .foot__famList a {
  display: block;
  padding: 10px 18px;
  font-family: "pretendard", "Segoe UI", sans-serif;
  font-size: var(--font-size-22);
  line-height: 32px;
  letter-spacing: -0.44px;
  color: #262626;
  text-decoration: none;
}
#footer .foot__famList li:hover a {
  background: #fff;
}
#footer .foot__contact {
  flex-shrink: 0;
}
#footer .foot__contact p {
  margin: 0;
  line-height: 32px;
  font-family: "pretendard", "Segoe UI", sans-serif;
  font-size: var(--font-size-22);
  font-weight: 400;
  letter-spacing: -0.44px;
  color: #262626;
}
#footer .foot__contact a {
  color: #262626;
  text-decoration: none;
  line-height: 32px;
  font-family: "pretendard", "Segoe UI", sans-serif;
  font-size: var(--font-size-22);
  font-weight: 400;
  letter-spacing: -0.44px;
}
#footer .foot__contact a:hover {
  color: #000;
  text-decoration: underline;
}
#footer .foot__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 96px;
  padding-top: 6px;
  flex-shrink: 0;
  overflow: visible;
}
#footer .foot__logo {
  display: block;
  height: 36px;
  line-height: 0;
}
#footer .foot__logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  object-position: right center;
}
#footer .foot__copy {
  margin: 0;
  font-family: "pretendard", "Segoe UI", sans-serif;
  font-size: var(--font-size-22);
  font-weight: 400;
  letter-spacing: -0.44px;
  line-height: 32px;
  color: #a0a1a1;
  text-align: right;
  white-space: nowrap;
}


@media (max-width: 1140px) {
  #footer .foot {
    padding: 40px 0;
  }
  #footer .foot .innerWrap{width:94%;}
  #footer .foot__bar{padding:0 0 24px 0;}
  #footer .foot__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  #footer .foot__left {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }
  #footer .foot__famDetails {
    width: 100%;
    max-width: 280px;
  }
  #footer .foot__right {
    align-items: flex-start;
    min-height: 0;
    width: 100%;
  }
  #footer .foot__logo img {
    object-position: left center;
  }
  #footer .foot__copy {
    text-align: left;
  }
}
@media (max-width: 700px) {

  #footer .foot__famDetails {max-width:100%;}

}

