@charset "UTF-8";
@charset "UTF-8";

/* ========= 컬러 토큰 통합 ========= */
:root {
  /* 지금 쓰는 흑백 모노톤 토큰 */
  --bg: #ffffff;
  --bg-muted: #f5f5f5;
  --surface: #ffffff;
  --surface-muted: #f8f8f8;
  --text: #111111;
  --text-muted: #666666;
  --text-inverse: #ffffff;
  --border: #e5e5e5;
  --shadow-rgb: 0 0 0;
  --brand: #111111;       /* 버튼/포인트용 */
  --brand-weak: #333333;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
}

/* ========= 기본 폰트 크기 ========= */
@media (max-width: 599px) {
  :root {
    font-size: 14px;
  }
}
@media (min-width: 600px) and (max-width: 799px) {
  :root {
    font-size: 16px;
  }
}
@media (min-width: 800px) {
  :root {
    font-size: 18px;
  }
}

/* ========= body ========= */
body {
  margin: 0;
  font-family: '맑은 고딕', 'Apple SD Gothic Neo', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ========= 헤더 ========= */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(18, 43, 48, 0.9); /* 예전처럼 살짝 투명한 흰색 바 */
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nohero header {
  position: static;
  border-bottom: 1px solid var(--border);
}

.headA {
  display: flex;
  align-items: center;
  height: 70px;                 /* 예전 메뉴 높이 그대로 */
  padding: 0 20px;              /* 좌우 여백 20px */
  color: #ffffff;               /* NIGO/COOLLAB 로고를 항상 흰색으로 */
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-decoration: none;
  line-height: 1;
}


/* 네비게이션 */
.headB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headB a {
  display: block;
  padding: 15px;                /* 예전 메뉴 사이즈 그대로 */
  color:#ccc;
  font-size: 12px;
  text-decoration: none;
}

.headB a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color:#ffcc99;
		
}

/* PC 헤더 레이아웃 */
@media (min-width:768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px; 
		max-width: var(--large-width);/*1000px*/
		margin: 0 auto;
	}
	.headB ul{
		display: flex;
	}
}

/* 모바일 헤더 (햄버거 메뉴) */
@media (max-width: 767px) {
  header .container-small {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .headC {
    margin-right: 10px;
    padding: 0;
    border: none;
    background: none;
    font-size: 28px;
    opacity: 0.6;
    cursor: pointer;
    color:#ccc;
  }

  .headC:hover {
    opacity: 0.4;
  }

  .headB {
    display: none;
    position: fixed;
    top: 70px;                       /* 헤더 높이(70px) 아래부터 드롭다운 */
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(18, 43, 48, 0.9);
    box-shadow: 0 12px 30px rgba(var(--shadow-rgb) / 0.12);
  }

  .headB ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }

  .headB li {
    width: 100%;
  }

  .headB a {
    width: 100%;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
	color:#ccc;
  }
  .headB a:hover {
		background-color: rgba(0, 0, 0, 0.1);
		color:#ffcc99;
		font-weight:bold;
  }
}

@media (min-width: 768px) {
  .headC {
    display: none;
  }
  .headB {
    display: block !important;
  }
}


/* ========= HERO (메인 배너) – 옛날 사이즈(100vh, min 450px) + 지금 슬라이더 구조 ========= */

/* ========= HERO (메인 배너, 양옆 여백 없이 꽉 차게) ========= */

/* 히어로 전체 영역 */
.conA {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70vh;        /* 화면 가득 → 약 70%만 차지하도록 줄임 */
	min-height: 450px;
	/*color: var(--text-inverse);*/
	text-align: center;
	overflow: hidden;
	background: #000;
  }
  
  /* 서브 페이지용 compact 버전 (원하면 유지) */
  .conA.compact {
	height: 450px;
	min-height: 0;
  }
  
  /* 이미지 들어가는 배경 래퍼 */
  .hero-background {
	position: absolute;
	inset: 0;
	overflow: hidden;
  }
  
  /* 슬라이드 트랙: 좌우 슬라이드 */
  .hero-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.6s ease;
  }
  
  /* 각 슬라이드: 한 화면에 하나씩, 컨테이너 꽉 채우기 */
  .hero-slide {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
  }
  
/* 실제 배너 이미지 – 전체가 보이도록 (잘리지 않게) */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;      /* ★ 잘리지 않고 전체 보이게 */
  background-color: #fff;   /* 좌우 여백 생길 때 배경 흰색 */
  display: block;
  padding-top: 20px;
}

  /* 슬라이드 좌우 화살표 */
  .hero-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	border: none;
	background: none;
	color:  rgba(18, 43, 48, 0.9);
	font-size: 2.2rem;
	line-height: 1;
	padding: 10px;
	cursor: pointer;
	transition: color 0.25s ease;
  }
  
  .hero-control:hover,
  .hero-control:focus {
	color:  rgba(18, 43, 48, 0.9);
  }
  
  .hero-prev {
	left: 20px;
  }
  
  .hero-next {
	right: 20px;
  }
  
  /* 모바일에서 높이 조금 줄이기 */
  @media (max-width: 768px) {
	.conA {
	  height: 75vh;
	  min-height: 260px;
	}
  
	.hero-control {
	  font-size: 1.6rem;
	  padding: 6px;
	}
  }

/* ========= 리스트/아코디언 ========= */
.list-section {
  background-color: var(--surface);
  padding: 60px 0;
}

.list-section .section-title {
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.list-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.list-item {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 24px 28px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 15px 35px rgba(var(--shadow-rgb) / 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.list-item:hover,
.list-item:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(var(--shadow-rgb) / 0.12);
  border-color: #d9d9d9;
}

.list-item:hover::after,
.list-item:focus-within::after {
  opacity: 1;
}

.list-column-right .list-item {
  flex-direction: row-reverse;
  text-align: right;
}

.list-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #e9e9e9, #dcdcdc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 15px rgba(var(--shadow-rgb) / 0.15);
  position: relative;
  border: 1px solid var(--border);
}

.list-image span {
  position: relative;
  z-index: 1;
}

.list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.list-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.list-toggle {
  align-self: flex-start;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.list-column-right .list-toggle {
  align-self: flex-end;
}

.list-toggle:hover,
.list-toggle:focus {
  background-color: var(--surface-muted);
  transform: translateY(-2px);
  outline: none;
  border-color: #d9d9d9;
}

.list-more {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background-color: var(--surface-muted);
  color: var(--text);
  line-height: 1.6;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.list-item.open .list-more {
  display: block;
}

.list-item.open .list-toggle::after {
  content: " 닫기";
}

.list-item:not(.open) .list-toggle::after {
  content: " 펼치기";
}

.list-item.open .list-image {
  box-shadow: inset 0 0 20px rgba(var(--shadow-rgb) / 0.25), 0 12px 18px rgba(var(--shadow-rgb) / 0.1);
}

@media (max-width: 768px) {
  .list-columns {
    grid-template-columns: 1fr;
  }
  .list-column-right .list-item {
    flex-direction: row;
    text-align: left;
  }
  .list-column-right .list-toggle {
    align-self: flex-start;
  }
}

/* ========= Content Highlight ========= */
.content-highlight {
	background: var(--bg-muted);
	padding: 40px;
	
  }
  
  .content-highlight .container {
	display: flex;
	align-items: center;
	gap: 40px;
  }
  
  .highlight-card {
	flex: 1;
  }
  
  .highlight-image {
	flex: 1;
	overflow: hidden;
	border-radius: 16px; /* 필요 없으면 지워도 됨 */
  }
  
  .highlight-img {
	width: 100%;
	height: 100%;
	object-fit: cover;  /* 이미지가 영역에 맞게 잘림 */
	display: block;
	border-radius: 16px;
  }
  
  /* 모바일 반응형 */
  @media (min-width: 768px) {
    .content-highlight .container{
        /*padding-left: 20px;
        padding-right: 20px;*/
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px; 
		max-width: var(--large-width);/*1000px*/
		margin: 0 auto;
		
    }


	.highlight-img {
	  width: 100%;
	  height: auto;
	}
}  
  
/* ========= FEATURE BANNER (패럴랙스) ========= */
.feature-banner {
	position: relative;
	width: 100%;
	height: 60vh; /* 원하는 높이 조절 */
	min-height: 380px;
	display: flex;
	justify-content: center;
	align-items: center;
  
	/* 백그라운드 이미지 + 패럴랙스 */
	background-image: url("img/banner_bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* 패럴랙스 핵심 */
	background-repeat: no-repeat;
  
	color: #fff;
	text-align: center;
  }
  
  /* 타이틀 중앙 + 박스 제거 */
  .banner-title {
	margin: 0;
	padding: 0;
	font-size: 2rem;
	letter-spacing: 0.1em;
	color: #fff;
	font-weight: 600;
  }
  /* ========= FEATURE BANNER (패럴랙스) ========= */
.feature-banner {
	position: relative;
	width: 100%;
	height: 60vh; /* 원하는 높이 조절 */
	min-height: 380px;
	display: flex;
	justify-content: center;
	align-items: center;
  
	/* 백그라운드 이미지 + 패럴랙스 */
	background-image: url("img/banner_bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* 패럴랙스 핵심 */
	background-repeat: no-repeat;
  
	color: #fff;
	text-align: center;
  }
  
  /* 타이틀 중앙 + 박스 제거 */
  .banner-title {
	margin: 0;
	padding: 0;
	font-size: 2rem;
	letter-spacing: 0.1em;
	color: #fff;
	font-weight: 600;
  }
  
/* ========= CTA (심플 버전) ========= */
.cta-section {
  padding: 80px 0;
  background: var(--bg);
}
.flip-card:hover {
  transform: scale(1.02);
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------ LEFT : 이미지 플립 카드 ------ */
.cta-left {
  padding: 0;
  background: none;
  border-radius: 0;
}

/* 비율: 16:9 / 원하면 4:5로 바꿔도 됨 */
.flip-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  perspective: 1200px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.flip-back {
  transform: rotateY(180deg);
}

/* 이미지 꽉 차게 */
.flip-front img,
.flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------ RIGHT : 텍스트 ------ */
.cta-right {
  padding: 0;
  background: none;
}

.cta-title {
  margin: 0 0 15px;
  padding-left: 10px;
  border-left: 4px solid var(--text);
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-text {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

/* 모바일 */
@media (max-width: 768px) {
  .cta-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



/* ========= 포스트/히스토리(테이블) ========= */
.post .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 10px;
}

.post h1 {
  padding-left: 0.5rem;
  border-left: 0.4rem solid #ffffff;
  font-size: 2rem;
  margin-top: 0;
}

.post p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
}

.history {
  background-color: var(--bg-muted);
  color: var(--text);
}

.history .text {
  padding: 20px;
}

.history h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.history .photo {
  min-height: 300px;
  background-image: url(img/plant.jpg);
  background-position: center;
  background-size: cover;
}

.history table {
  border-collapse: collapse;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  width: 100%;
  background: var(--surface);
}

.history th,
.history td {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

@media (min-width: 768px) {
  .history .container {
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .history .photo {
    flex: 3;
  }
  .history .text {
    flex: 2;
    padding: 50px;
  }
}

/* content-highlight 모바일 세로 배치 */
@media (max-width: 768px) {
  .content-highlight .container {
    flex-direction: column;
  }

  .highlight-image {
    order: -1; /* 이미지가 위로 올라오게 */
  }
}


/* ========= Artwork 리스트 ========= */
.listA h1,
.listB h1 {
  font-size: 2rem;
  text-align: center;
  color: var(--text);
}

.listA .container,
.listB .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 30px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.listA article {
  flex: 1 1 300px;
  display: flex;
}

.listB article {
  flex: 1 1 384px;
  display: flex;
}

.listA a,
.listB a {
  flex: 1;
  margin: 10px;
  display: flex;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

.listA a:hover,
.listB a:hover {
  background-color: var(--surface-muted);
}

.listA .photo,
.listB .photo {
  min-height: 200px;
  background-position: center;
  background-size: cover;
}

.listA .text,
.listB .text {
  margin: 12px;
  color: var(--text);
}

.listA h2,
.listB h2 {
  font-size: 18px;
  margin: 0 0 6px 0;
}

.listA p,
.listB p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  color: var(--text-muted);
}

.listB .photo {
  flex: 2;
  min-height: 0;
}

.listB .text {
  flex: 3;
  margin: 12px;
}

@media (max-width: 384px) {
  .listB .photo {
    flex: 1;
  }
  .listB p {
    display: none;
  }
}

/* ========= 문의/연락 ========= */
.contact {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--surface);
  border-radius: 12px;
}

.contact span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2.2rem;
  width: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  background-color: #e9e9e9;
  color: var(--text);
}

.contact h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.contact a {
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}

@media (min-width: 768px) {
  .contact-wrap {
    display: flex;
    gap: 20px;
  }
  .contact {
    flex: 1;
  }
}
.project-banner {
  position: relative;
  width: 100%;
  height: 50vh;         /* 원하는 높이: 50vh 추천 */
  min-height: 300px;
  overflow: hidden;
}

.project-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 이미지 꽉 차게 */
  display: block;
}
/* ========= PROJECT SHOWCASE ========= */
.project-showcase {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 48px;
  padding-bottom: 56px;
  isolation: isolate;
}

/* 섹션 배경 이미지 */
.ps-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/project_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* 레이아웃 */
.ps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

/* 좌우 화살표 */
.ps-arrow {
  border: none;
  background: none;
  color: var(--text);
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.ps-arrow:hover {
  background-color: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* ====== LP 디스크 영역 ====== */
.ps-visual {
  width: min(640px, 80vw);  /* 👉 여기가 전체 LP 크기. 더 키우고 싶으면 720px 정도까지 가능 */
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 슬라이드들을 겹쳐 쌓기 */
.ps-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 각 슬라이드: 중앙에 겹쳐놓고 active만 보이게 */
.ps-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ps-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* LP 디스크 본체 */
.ps-disc {
  position: relative;
  width: 100%;
  max-width: 2500px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden; /* 여기서 진짜 동그랗게 잘림 */
  box-shadow:
    inset 0 0 0 14px #2e2e2e,
    inset 0 0 0 32px #252525;
    top: 130px;
    margin-right: -270px;


}

/* LP 이미지 – 정가운데 꽉 채우기 */
.ps-lp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* 중앙 구멍 */
.ps-hole {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 18%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px #1a1a1a inset;
  pointer-events: none;
}

/* 회전 애니메이션 */
@keyframes ps-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* 기본은 멈춰 있고, 재생 상태일 때만 회전 */
.ps-disc {
  will-change: transform;
  animation: ps-spin 6s linear infinite;
  animation-play-state: paused;
}

/* 현재 보이는 슬라이드 + is-playing 클래스일 때 회전 */
.project-showcase.is-playing .ps-slide.is-active .ps-disc {
  animation-play-state: running;
}

/* 우측 메타 정보 */
.ps-meta {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-left: 12px;
}
.ps-title {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.ps-lines {
  display: grid;
  gap: 8px;
}
.ps-line {
  height: 10px;
  width: clamp(160px, 32vw, 360px);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}
.ps-desc {
  margin: 4px 0 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.ps-cta {
  margin-top: 6px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.ps-cta:hover {
  background: var(--surface-muted);
  transform: translateY(-1px);
  border-color: #d9d9d9;
}

/* ====== 하단 컨트롤바 ====== */
.ps-controls {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 0 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.ps-range {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  outline: none;
}
.ps-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #111111;
  border-radius: 50%;
  cursor: pointer;
}
.ps-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #111111;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* 재생/이전/다음 버튼 */
.ps-transport {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 10px;
}
.ps-btn {
  border: none;
  background: none;
  color: var(--text);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.ps-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  /* PC와 같은 3열 구조 유지: 화살표 / 디스크 / 텍스트 */
  .ps-inner {
    grid-template-columns: auto 1fr auto; /* 원래 값과 동일하게 유지 */
    align-items: center;
    column-gap: 12px;
  }


  .ps-meta {
    text-align: left;     /* 가운데 정렬 X, PC처럼 왼쪽 정렬 유지 */
    padding-left: 12px;
  }

  .ps-line {
    margin-left: 0;
    margin-right: 0;
  }
}
/* 모바일에서 LP 디스크 / 배경 레이아웃 조정 */
@media (max-width: 768px) {

  /* 섹션 전체 높이 살짝 줄여서 뒤 배경 이미지 영역도 줄이기 */
  .project-showcase {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  /* LP 전체 영역: 더 작게, 살짝 왼쪽으로 */
  .ps-visual {
    width: 50vw;          /* 기존 70vw → 더 작게 */
    max-width: 150px;     /* 전체 크기 제한 */
    margin: 0 auto 0 8px; /* 살짝 왼쪽으로 밀기 */
  }

  /* LP 디스크: 아래쪽 + 왼쪽으로 더 내려오게 */
  .ps-disc {
    top: 110px;            /* 아래로 40px 내려오기 */
    margin-right: 0;
    margin-left: -150px;   /* 왼쪽으로 조금 더 당기기 */
    /* transform 은 건드리지 않음 → 회전 애니메이션 그대로 유지 */
  }

  /* 화살표만 살짝 줄여서 덜 거슬리게 */
  .ps-arrow {
    transform: scale(0.8);
  }
}


.project-showcase.is-playing .ps-disc {
  box-shadow:
  0 0 25px rgba(255, 176, 0, 0.25),   /* 노랑빛 오렌지 */
  0 0 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .ps-title {
    font-size: 1.15rem;
  }
  .ps-line {
    width: clamp(140px, 62vw, 280px);
    height: 8px;
  }
  .ps-desc {
    font-size: 0.9rem;
  }
}
/* ========= DJ / VIDEO SECTION (썸네일 링크 버전) ========= */
.dj-section {
  padding-top: 56px;
  padding-bottom: 72px;
  background: transparent;
}

.dj-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.dj-title {
  margin: 0 0 20px 0;
  font-size: 1.6rem;
  text-align: center;
  color: #111111;
  letter-spacing: 0.04em;
}
/* DJ 썸네일 크기 조절 */
.dj-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr));   /* 3등분 강제 */
}

.dj-thumb {
  max-width: 100%;
  height: 90px;        /* 원하는 높이로 조절 가능 */
}

.dj-thumb img {
  height: 100%;
  object-fit: cover;
}


/* --- 썸네일 링크 전체 --- */
.dj-thumb-link {
  position: relative;
  display:block;
  width: 100%;
  aspect-ratio: 16 / 9;          
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transform: translateZ(0);
}

/* 썸네일 이미지 */
.dj-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
}

/* --- 플레이 아이콘 컨테이너 --- */
.dj-play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 3rem;
  transition: background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}
/* DJ 썸네일 hover + active 상태 정리 */
.dj-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dj-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dj-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.dj-thumb.is-active {
  border-color: #ffb000;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* --- 아이콘 자체 애니메이션 --- */
.dj-play-icon .fa-play {
  animation: pulsePlay 1.8s infinite ease-in-out;
  transform-origin: center;
}

/* 플레이 버튼 숨쉬기(반짝이기) 효과 */
@keyframes pulsePlay {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.18); opacity: 0.75; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Hover 시 효과 --- */
.dj-thumb-link:hover img {
  transform: scale(1.05);
}

.dj-thumb-link:hover .dj-play-icon {
  background: rgba(0, 0, 0, 0.45);
  transform: scale(1.04);
}

/* 반응형 */
@media (max-width: 768px) {
  .dj-title {
    font-size: 1.35rem;
  }
  .dj-play-icon {
    font-size: 2.4rem;
  }
}

/* ========= ROTATING CARD SECTION ========= */
.flip-section {
  padding: 80px 20px;
  background: #f3f3f3;
  text-align: center;
}

.flip-title {
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 50px;
}

/* 카드 레이아웃 */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* 개별 카드 */
.flip-card {
  background: transparent;
  width: 260px;
  height: 260px;
  perspective: 1000px;
}

/* 카드 내부 */
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

/* 호버 시 회전 */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* 앞면/뒷면 공통 */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* 앞면 디자인 */
.flip-front {
  background: rgba(18, 43, 48, 0.9);
  color: #FFFDE7  ;
}

/* 뒷면 디자인 */
.flip-back {
  background:#FF9F1C;
  color: var(--brand-weak);
  transform: rotateY(180deg);
}
.flip-back p{
  padding: 0 20px;
  color: #666666;
}

/* 반응형 */
@media (max-width: 480px) {
  .flip-title {
    font-size: 1.4rem;
  }
  .flip-card {
    width: 220px;
    height: 220px;
  }
}

/* ========================================
   COLLAB PAGE WRAPPER
========================================= */
.collab-page {
	padding-top: 90px; /* 헤더가 덮지 않도록 */
	background-color: #ffffff;
  }
  
  /* ========================================
	 COLLAB HERO
  ========================================= */
  .collab-hero {
	padding: 0 0 40px;
	text-align: center;
  }
  
  .collab-hero-inner h1 {
	margin: 0 0 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.4rem;
	letter-spacing: 0.18em;
  }
  
  .collab-hero-inner p {
	margin: 0;
	font-size: 0.95rem;
	color: #666666;
  }
  
  @media (max-width: 599px) {
	.collab-hero-inner h1 {
	  font-size: 1.9rem;
	}
  }
  
  /* ========================================
	 SHORT BANNER + MARQUEE
  ========================================= */
  .collab-banner {
	background-color: #ffffff;
	padding: 1.4rem 0 1.8rem;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	text-align: center;
  }
  
  .collab-banner-label {
	font-size: 0.8rem;
	color:rgba(18, 43, 48, 0.9);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
  }
  
  /* 브랜드 흐르는 줄 */
  .collab-marquee {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	overflow: hidden;
  }
  
  .collab-track {
	display: inline-flex;
	white-space: nowrap;
	animation: collab-scroll 18s linear infinite;
  }
  
  .collab-track span {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-right: 2.2rem;
	opacity: 0.85;
  color: #FF9F1C  ;
  }
  
  .collab-marquee:hover .collab-track {
	animation-play-state: paused;
  }
  
  @keyframes collab-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
  }
  
  @media (max-width: 600px) {
	.collab-track span {
	  font-size: 0.7rem;
	  margin-right: 1.3rem;
	}
  }

  .collab-list {
	padding: 3rem 0 4rem;
  }
  
  /* 타이틀 */
  .collab-main-title {
	text-align: center;
	font-size: 1.9rem;
	letter-spacing: 0.2em;
	margin-bottom: 0.6rem;
  }
  
  .collab-main-sub {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 2.5rem;
	font-size: 0.95rem;
	color: #666;
  }
  
  /* 각 브랜드 섹션 */
  .collab-section {
	padding: 2.4rem 0 3rem;
	border-top: 1px solid #f0f0f0;
  }
  
  .collab-section:first-of-type {
	border-top: none;
  }
  
 
  .collab-header {
	text-align: center;
	margin-bottom: 1.5rem;
  }
  
  .collab-header h3 {
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 0.4rem;
  }
  
  .collab-header p {
	font-size: 0.92rem;
	color: #666;
	max-width: 520px;
	margin: 0 auto;
  }

  .collab-section::before {
    content:"";
    display:block;
    height:1px;
    background:#e2e2e2;
    margin: 80px 0 40px;
  }
  
  
  /* ========================================
	 GRID (이미지)
  ========================================= */
  .collab-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 1.8rem;  
	row-gap: 2rem;
	padding-left: 1rem;
	padding-right: 1rem;
  }
  
  /* 카드 */
  .collab-card {
	display: block;
	text-decoration: none;
	color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  /* ========= COLLAB 카드 정리 + 효과 ========= */
.collab-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.collab-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* hover 시 카드 살짝 띄우기 */
.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.16);
  border-color: #d5d5d5;
}

/* 그리드 영역에 은은한 배경 */
.collab-section .collab-grid {
  background: #fafafa;
  padding: 24px;
  border-radius: 16px;
}

  .collab-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }
  
  /* 이미지 */
  .collab-thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #222;
  }
  
  .collab-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.35s;
  }
  
  /* overlay */
  .collab-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	background: rgba(0,0,0,0.35);
	transition: 0.35s;
	transform: scale(1.05);
  }
  
  .collab-overlay span {
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
  }
  
  /* hover */
  .collab-card:hover .collab-thumb img {
	transform: scale(1.06);
	filter: blur(2px) brightness(0.8);
  }
  
  .collab-card:hover .collab-overlay {
	opacity: 1;
	transform: scale(1);
  }
  
  .collab-info {
	margin-top: 0.65rem;
	text-align: center;
  }
  
  .collab-name {
	font-size: 0.95rem;
	margin-bottom: 0.15rem;
  }
  
  .collab-price {
	font-size: 0.85rem;
	color: #777;
  }
  
  /* 반응형 */
  @media (max-width: 1024px) {
	.collab-grid {
	  grid-template-columns: repeat(3, 1fr);
	}
  }
  
  @media (max-width: 699px) {
	.collab-grid {
	  grid-template-columns: repeat(2, 1fr);
	  column-gap: 1.2rem;
	  row-gap: 1.4rem;
	}
  
	.collab-header h3 {
	  font-size: 1.1rem;
	}
  }
  

/* ========= ABOUT PAGE ========= */

html {
	scroll-behavior: smooth;
  }
  
  .about-page {
	background-color: var(--bg-muted);
  }
  
  /* 메인 영역 여백 조정 */
  .about-main .container {
	max-width: 960px;
	padding: 100px 20px 60px;
  }
  
  /* 상단 타이틀 영역 */
  .about-header {
	margin-bottom: 40px;
  }
  

  /* 키워드 카드 3개 */
  .about-keywords {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 40px;
  }
  
  .about-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px 20px 18px;
	text-decoration: none;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0;
	box-shadow: 0 14px 30px rgba(var(--shadow-rgb) / 0.12);
	transform-origin: center bottom;
	transform: translateY(0) rotateX(0deg);
	transition:
	  transform 0.3s ease,
	  box-shadow 0.3s ease,
	  border-color 0.3s ease,
	  background 0.3s ease;
  }
  
  .about-card h2 {
	margin: 0 0 8px 0;
	font-size: 0.9rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
  color: #FF9F1C  ;
  }
  
  .about-card p {
	margin: 0 0 18px 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-muted);
  }
  
  .about-card-link {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	position: relative;
	align-self: flex-start;
  }
  
  /* 앵커 hover 언더라인 애니메이션 */
  .about-card-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 1px;
	width: 0;
	background:#d9d9d9;
	transition: width 0.25s ease;
  }
  
  /* 카드 hover 인터랙션 */
  .about-card:hover {
	transform: translateY(-8px) rotateX(4deg);
	box-shadow: 0 22px 40px rgba(var(--shadow-rgb) / 0.22);
	border-color:var(--brand-weak);
	background: #ffffff;
  }
  
  .about-card:hover .about-card-link::after {
	width: 100%;
  }
  
  @media (max-width: 900px) {
	.about-keywords {
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	}
  }
  
  @media (max-width: 640px) {
	.about-keywords {
	  grid-template-columns: 1fr;
	}
  }
  
  /* ABOUT 본문 섹션 */
  .about-section {
	margin-top: 40px;
	padding-top: 10px;
	border-top: 1px solid var(--border);
  }
  
  .about-section h2 {
	margin: 0 0 12px 0;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
  color: #666;

  }
  /* about 상단 제목 한 줄 + 흰색 처리 */
.about-header-text h2 {
  white-space: nowrap;     /* 한 줄 */
  color: #ffffff;          /* 흰색 */
  font-size: 32px;         /* 필요 시 조정 */
}

  .about-section p {
	margin: 0;
	line-height: 1.9;
	color:var(--text-muted);
  }

  /* About 섹션 구분 간 여백 */
.about-section {
  margin-top: 120px;
  margin-bottom: 120px;
}
  
  /* HISTORY 레이아웃 정리 (기존 layout 유지 + 미니멀하게) */
  .history {
	background-color: var(--surface);
	border-top: 1px solid var(--border);
	padding: 60px 0 80px;
  }
  
  .history .container {
	max-width: 960px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	gap: 30px;
	align-items: stretch;
  }
  
  .history .photo {
	width: 100%;
	min-height: 220px;
	background-color: var(--bg-muted);
	border: 1px solid var(--border);
	background-image: url("img/art.jpg");
	background-size: cover;
	background-position: center;
  }
  
  .history .text h2 {
	margin: 0 0 16px 0;
	font-size: 1.1rem;
	letter-spacing: 0.12em;
  color: #FF9F1C;
  }
  
  .history table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
  }
  
  .history th,
  .history td {
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
  }
  
  .history th {
	width: 80px;
	font-weight: 600;
	color: var(--text-muted);
  }
  
  .history td {
	color: var(--text);
	line-height: 1.6;
  }
  
  @media (max-width: 768px) {
	.about-main .container {
	  padding-top: 80px;
	}
  
	.history .container {
	  grid-template-columns: 1fr;
	}
  }

  /* ========= ABOUT 상단 이미지 + 텍스트 ========= */

.about-header {
	display: grid;
	grid-template-columns: 1fr 1.4fr;  /* 왼쪽 이미지 / 오른쪽 텍스트 */
	align-items: center;
	gap: 40px;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--border);
  }

  
  .about-header-img {
	width: 100%;
	height: 320px; /* 필요하면 조정 가능 */
	background-image: url("img/nigo.jpg"); /* 이미지 파일 경로 */
	background-size: cover;
	background-position: center;
	background-color: #ddd;
	border: 1px solid var(--border);
  }
  
  .about-header-text {
	display: flex;
	flex-direction: column;
    .about-tag {
    color: #ffffff;
    }
  }
  
  .about-header-text h1 {
	margin: 0 0 12px 0;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
  color: var(--surface);
  }
  
  .about-header-text .about-sub {
	line-height: 1.8;
  color:#ddd;
  padding: 0 20px;
  }

  .about-header-text .about-sub {
    line-height: 1.8;
    color: #ddd;
    padding: 0 40px;   /* 기본 PC 여백 */
  }
  
  @media (max-width: 768px) {
    .about-sub {
      padding: 0 30px; /* 모바일에서는 조금 줄임 */
    }
    .post h1.about-header-text{
      padding-left: 30px;
    }
  }
  
  
  @media (max-width: 760px) {
	.about-header {
	  grid-template-columns: 1fr;
	}
  
	.about-header-img {
	  height: 260px;
	}
  }

  /* 모바일 시 니고 카드 크기 줄이기 */
@media (max-width: 768px) {
  .flip-card {
    width: 240px;
    height: 320px;
    margin: 0 auto;
  }

  .flip-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .cta-right {
    text-align: center;
    padding-top: 30px;   /* 니고 이미지랑 거리 확보 */
  }
}
/* collab 섹션 배경 연회색 처리 */
.collab-section {
  background-color: #f1f1f1;
  padding: 80px 0;
}

/* 이미지 카드 */
.collab-item {
  background-color: #ffffff;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 6px;
}
@media (min-width: 1024px) {
  header .container {
    max-width: 880px;      /* 1000px → 880px 로 줄여서 모이게 */
  }
}
/* ========= 현재 페이지 메뉴 강조 ========= */
.headB a[aria-current="page"] {
  color: #ffb000;              /* 옐로우빛 주황 포인트 */
  font-weight: 600;
  position: relative;
}

.headB a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 16px;
  height: 2px;
  background: #ffb000;
  transform: translateX(-50%);
}
/* ========= 하이라이트 이미지 hover 효과 ========= */
.highlight-image {
  overflow: hidden;
  border-radius: 16px;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.highlight-image:hover .highlight-img {
  transform: scale(1.06);
}
/* ABOUT 키워드 카드 정리 + 인터랙션 */
.about-keywords {
  gap: 24px;
}

.about-card {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-card h2 {
  letter-spacing: 0.18em;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  background: #fffdf0;              /* 연노랑 하이라이트 */
}

/* 링크 텍스트 옆에 작은 화살표 */
.about-card-link::before {
  content: "↗";
  margin-right: 6px;
  font-size: 0.8rem;
}



/* ========= 푸터 ========= */
/* footer 푸터 */
footer{
	color: #ccc;
	/*color: var(--text-bright-color);*/
	background-color: #000000;
}
footer .container{
	padding: 40px 20px;
	display: flex;
	flex-wrap: wrap;
	padding: 40px 20px;
	text-decoration: none;
	text-align: center;
}

.pptx{
  background-color: #ddd;
  color: #fff;
}
.pptx video{
  width: 100%;
  position: center;
}

@media (min-width: 768px){
  .pptx .container{
    display: block;
    width: 1500px;
    margin-left: auto ;
    margin-right: auto;
  }
}
	
/* PC-footer: 구조 레이아웃 width=768px 기준으로 */
@media (min-width:768px){
	footer .container{
		display: flex;
		flex-wrap: wrap;
		max-width: 800px;
		max-width: var(--middle-width);
		margin-left: auto;
		margin-right: auto;
		text-decoration: none;
		text-align: center;
		/*flex: 0 0 100%;*/
	}
	.footD{
		margin-left: auto;
		margin-top: 0;
	}
	.footA, .footB, .footC{
		flex: 0 0 100%;
	}
	
}
/*@media(min-width:768px){
	.footD{
		margin-left: auto;
		margin-top: 0;
	}
}*/
/* (M) footer A: 사이트 정보 */
.footA{
	/*margin-bottom: 30px;*/
	margin:0 auto;
}
.footA h2{
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 25px; 
	color:#fff;
}
.footA p{
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}
.footA a{
	color: inherit; 
	text-decoration: none;
}
	
/* footerC: 저작권 */
.footC{
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	padding:20px 0;
	margin:0 auto;
}
	
/* footerD: SNS 메뉴 */
.footD{
	/*margin-bottom: 20px;*/
	margin: 0 auto;
}
.footD ul{
	display: flex;
	margin: 0;
	padding: 0 0 20px 0;
	list-style: none;
	/*justify-content: flex-end;*/
}
.footD a{
	display: block;
	margin-right: 8px;
	padding: 0;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	border: solid 1px currentColor;
	width: 2em;  
	line-height: 2em;
	border-radius: 50%; 
	text-align: center;
}
.footD a:hover{
	background-color: rgba(0,0,0,0.3);
}
