@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;background:#ecece3;}


/* 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:#231f20;
  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:#231f20;
  color:#fff;
}
.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:#231f20;
  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:20px 0;
  text-align:center;
}
.head .gnb{
  display:flex;align-items:center;
  width:100%;text-align:center;
}
.head .gnb h1 a{display:block;width:150px;text-indent:-9999px;}
.head .gnb .logo1{
  width:150px;height:36px;
  background:url(/images/common/logo1.png) no-repeat center / contain;
}
.head .gnb .gnb__actions{
  display:flex;align-items:center;
  gap:8px;
}
.head .gnb .lang{
  display:flex;align-items:center;
  gap:8px;
}
.head .gnb .lang a{
  font-family: "Pretendard";font-size:var(--font-size-18);font-weight:500;color:#262626;
}
.head .gnb .lang .bar{
  display:inline-block;
  width:1px;height:100%;background:#aeaea8;
}
.head .gnb .btnMenu{
  display:none;
  border:0;background:transparent;
  cursor:pointer;
  margin-left:10px;
}

.head .pcNav{width:calc(100% - 150px - 63px);padding:0 5vw;}
.head .pcNav>ul{display:flex;justify-content:center;}
.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:38px;
  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>a .arrow{
    display:inline-block;vertical-align:top;
    width:14px;height:14px;
    margin:3px 0 0 3px;
    background:url(/images/common/arrow.png) no-repeat center / contain;
  }
.head .pcNav>ul>li>ul{
  display:none;
  position:absolute;left:50%;top:120%;
  width:120%;
  transform:translateX(-50%);
  border:1px solid #000;
  z-index:2;
  text-align:left;
}
/* 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;
  margin-left:-1px;
  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:#eae9e1;
  font-family: "Pretendard";font-size:var(--font-size-18);font-weight:500;color:#262626;
}
.head .pcNav>ul>li>ul>li:hover>a{background:#fff;}
.head .pcNav>ul>li>ul>li>ul>li{border-bottom:1px solid #ddd;}
.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;text-align:left;
}

/* 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;justify-content:space-between;
    width:100%;height:76px;
  }
  #header .head .gnb .logo1{
    width:108px;
    height:24px;
  }
  #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:#ecece3;
    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-family:"Raleway";font-size:18px;font-weight:600;
    padding:0 16px;;
  }
  #header .head .pcNav>ul>li.is-open>a{background:#fff;}
  #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:#fff;
  }
  #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 16px;
    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 (max-width:1399px){
  #header .head{
    width:94%;
    padding:0;
  }
  #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:77px;
    width:100%;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{width:100%;border:0;}
  #header .head .pcNav>ul>li>ul>li>a{
    font-size:17px;
  }
  #header .head .pcNav>ul>li>ul>li>ul>li>a{
    font-size:15px;
  }

  .head .pcNav>ul>li>ul{transform:translateX(0);}
  .head .pcNav>ul>li>a .arrow{
    position:absolute;right:10px;top:28px;transform:translateY(-50%);
  }

}



.scroll{background:#fff;}





/* */
.innerWrap{
  max-width:1220px;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;
}

/* secHead·btnPill — Figma PROGRAM/ARTIST/NEWS 타이틀 공통 */
.secHead{
  width:100%;
  max-width:1220px;
}
.secHead__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.secHead__tit{
  margin:0;
  font-family:"pretendard","Segoe UI",sans-serif;
  font-size:var(--font-size-42);
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:normal;
  color:#292929;
}
.btnPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  padding:10px 22px;
  border:1px solid #292929;
  border-radius:300px;
  box-sizing:border-box;
  font-family:"pretendard","Segoe UI",sans-serif;
  font-size:var(--font-size-15);
  font-weight:600;
  line-height:normal;
  color:#292929;
  text-decoration:none;
  white-space:nowrap;
}
.btnPill:hover{
  color:#292929;
}
.secHead__line{
  height:1px;
  margin-top:60px;
  background:#ccc;
}
.secHead--news{
  border-top:1px solid #767671;
  padding-top:49px;
}
.secHead--news .secHead__line{
  margin-top:60px;
}
.newsLead__top{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:252px;
}
.newsLead__title{
  margin:0;
  display:flex;
  flex-direction:column;
  font-family:"pretendard","Segoe UI",sans-serif;
  font-size:var(--font-size-42);
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:normal;
  color:#231f20;
}
.newsLead__title span{
  display:block;
}





/* footer — Figma 6268:17553 */
#footer .foot {
	padding: 40px 0;
	box-sizing: border-box;
	background: #333;
	color: #ecece3;
}
#footer .foot .innerWrap {
	display: flex;
	flex-direction: column;
	gap: 48px;
	max-width: 1220px;
	width: 94%;
	margin: 0 auto;
}
#footer .foot__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
}
#footer .foot__info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	min-width: 0;
}
#footer .foot__contactLine {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-family: "pretendard", "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	color: #ecece3;
}
#footer .foot__sep {
	flex-shrink: 0;
	width: 1px;
	height: 12px;
	background: rgba(236, 236, 227, 0.45);
}
#footer .foot__email {
	margin: 0;
	font-family: "pretendard", "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}
#footer .foot__email a {
	color: #ecece3;
	text-decoration: none;
}
#footer .foot__email a:hover {
	text-decoration: underline;
}
#footer .foot__famDetails {
	position: relative;
	width: 290px;
	flex-shrink: 0;
	z-index: 1;
  
}
#footer .foot__famDetails[open] {
	z-index: 50;
}
#footer .foot__famSummary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	margin: 0;
	padding:12px 12px;
	border:1px solid rgba(255,255,255,0.35);
	box-sizing: border-box;
	background: transparent;
	font-family: "Raleway", "pretendard", sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.3px;
	line-height: 32px;
	color: #fff;
}
#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;
	color: #fff;
}
#footer .foot__famIcon svg {
	display: block;
}
#footer .foot__famDetails[open] .foot__famIcon svg path {
	transform: rotate(45deg);
	transform-origin: center;
	transition: transform 0.25s ease;
}
#footer .foot__famIcon svg path {
	transform-origin: center;
	transition: transform 0.25s ease;
}
#footer .foot__famList {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	z-index: 50;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-bottom: none;
	background: #333;
}
#footer .foot__famList:empty {
	display: none;
}
#footer .foot__famList li {
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .foot__famList li:last-child {
	border-bottom: none;
}
#footer .foot__famList a {
	display: block;
	padding: 10px 12px;
	font-family: "pretendard", "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.4;
	color: #ecece3;
	text-decoration: none;
}
#footer .foot__famList li:hover a {
	color: #fff;
}
#footer .foot__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}
#footer .foot__logo {
	display: block;
	height: 27px;
	line-height: 0;
}
#footer .foot__logo img {
	display: block;
	height: 27px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
	object-position: left center;
}
#footer .foot__sns {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
#footer .foot__snsLink {
	display: block;
	line-height: 0;
}
#footer .foot__snsLink img {
	display: block;
	width: 32px;
	height: 32px;
}


@media (max-width: 1140px) {
	#footer .foot {
		padding: 40px 0;
	}
	#footer .foot__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}
	#footer .foot__info {
		max-width: none;
		width: 100%;
	}
	#footer .foot__famDetails {
		width: 100%;
		max-width: 290px;
	}
	#footer .foot__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}
@media (max-width: 700px) {
	#footer .foot__famDetails {
		max-width: 100%;
	}
	#footer .foot__contactLine {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	#footer .foot__sep {
		display: none;
	}
}

