@charset "UTF-8"; 
@font-face {
    font-family: 'DosMyungjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_eight@1.0/DOSMyungjo.woff') format('woff');
    font-weight: normal;
    font-display: swap;

	font-family: 'Galmuri11';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2506-1@1.0/Galmuri11-Bold.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}


/* 기본 색상 */
:root {
	--main-color: #6e888e;
	--accent-color: #9d8aae; /* (구)포인트 컬러 */
	--dark-main-color: #292929; /* 다크모드 설정 시 백그라운드 컬러 */
	--text-bright-color: #fff; /* 다크모드 설정 시 텍스트 컬러 */
	--point-color: #a94144; 
	--icon-color: #fff; 
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px; /* 양쪽 여백을 남기고 가운데 컨텐츠가 보여지는 영역 */
	--middle-width: 800px;
}


/* 기본 설정: 폰트 크기 */
@media (max-width: 599px) { /* width값이 (최대)599까지 */
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) { /* width값이 600~799까지의 본문 폰트 사이즈 설정 */
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) { /* width값이 800까지의 폰트 사이즈 설정 */
	:root {
		font-size: 18px;
	}
}

body {
	font-size: 16px; 
}



/* 기본 설정: 페이지 전체 */
body {
	margin: 0;
	font-family: '맑은 고딕',
		'Apple SD Gothic Neo','sans-serif'; 
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* header 헤더 */
header {
	position: fixed;
	/* position: absolute; 상단에 헤더 고정. absolute: 고정적으로, relative: 상대적으로 */
	top: 0;
	left: 0;
	z-index: 100; /* 헤더를 중첩하는 순서. 숫자가 높을 수록 가장 위에 보이게 함. z 좌표 기준(xy 상하 아님). 정확한 특정 값이 아니기에 단위 생략 */
	width: 100%;
	/* background-color: rgba(255, 255, 255, 0.9); */
}

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


/* headA: 사이트 이름 */
.headA {
	display: inline-block;
	line-height: 70px;
	padding-left: 20px;
	padding-right: 20px;
	color: var(--dark-main-color);
	font-family: 'DosMyungjo', sans-serif;
    font-style: normal;
	font-size: 20px;
	text-decoration: none;
}


/* headB: 네비게이션 메뉴 */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--dark-main-color);
}

.headB a {
	display: block;
	padding: 15px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.headB a:hover {
	color: #e0585d;
	/* background-color: rgba(0, 0, 0, 0.3); */
}

@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center; /* 세로 방향으로 중앙 정렬 */
		justify-content: space-between; /* 왼쪽 오른쪽 사이 끝 방향 위치 - 양쪽 정렬 */
		max-width: 1450px;
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display: flex;
	}
}


/* headC: 토글 버튼 */
@media (max-width: 767px) {
	/* M 전용 설정 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 15px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 24px;
		opacity: 0.1;
		cursor: pointer;
		color: var(--dark-main-color);
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
		text-align: right;
		margin-right: 10px;
		margin-bottom: 15px;
	}
}


@media (min-width: 768px) {
	/* PC 전용 설정 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* 콘텐츠A: main-banner-image 히어로 이미지 */
.conA { /* .은 class */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;
	/* background-color: #fff; */
	background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(img/main0_img.jpg);
	background-position: center;
	background-size: cover;
	text-align: center;
}


.conA h1 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
	font-size: 15vw; /* 스크린의 너비 값에 꽉 차는 헤드라인을 위한 단위: vw (높이면 vh) */
}

.conA a {
	position: absolute;
	bottom: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}


#goConB {
  width: 20px;   /* 화살표 크기에 맞춤 */
  height: 20px;
  margin: 60px auto 0; 
  padding: 0;
}

#goConB span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -12px;
  border-left: 2px solid var(--dark-main-color);
  border-bottom: 2px solid var(--dark-main-color);
  transform: rotate(-45deg);
  animation: sdb 2s infinite;
  box-sizing: border-box;
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}


/* Mobile size -콘텐츠A: main-banner-image [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conA h1 {
		font-size: 120px;
	}
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M 콘텐츠B: 개요(icon+text) */
.conB { 
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 450px;
	background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(img/main_img.jpg); /* 반투명한 검정색을 배경 이미지에 겹치게 하는 그라디언트 기능 */
	background-position: center;
	background-size: cover;
	text-align: center;
}


/* pc-콘텐츠B: 개요(아이콘+글자) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conB h1 {
		font-size: 115px;
	}
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M about 페이지: post 작성 */
.post .container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 25px 10px 100px 10px;
	/* background-color: #66CBE5; */
	display: flex;
}

.post .text {
	max-width: 800px;
	text-align: left;
	/* background-color: antiquewhite; */
}

.post h1 {
	padding-left: 0.5rem; /* em: 배수, r: root, 지정된 폰트 사이즈를 기반으로 배수 자동 계산해 적용 */
	/* border-left: solid 0.75rem #B2A83D;
	border-left: solid 0.75rem ver(--accent-color); */
	font-size: 9rem;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.post .text2 {
	margin-top: 430px;
	margin-left: 90px;
	max-width: 500px;
}

.post p {
	font-size: 0.7rem;
	text-align: right;
    line-height: 1.6;
}


/* about 페이지: post [width=768px]를 기준으로 */
@media (max-width: 768px) {
	.post .container {
		flex-direction: column; 
		align-items: flex-start;
	}

	.post h1 {
        font-size: clamp(36px, 16vw, 58px);
    }

	.post .text,
	.post .text2 {
		max-width: 100%;          
	}

    .post .text {
		padding: 0;
		margin-bottom: 2px;
	}

	.post .text2 {
        margin-top: 0;   
        margin-left: auto;
		padding: 0 15px 30px 10px;
	}

	.post .text2 p {
		font-size: 0.8rem;
        text-align: right;
        overflow-wrap: break-word; 
        word-break: keep-all;
	}

    .post .text2 p br:nth-of-type(3) {
        display: none;
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M 소개 페이지: 이미지와 줄글 */
.introduction {
	color: var(--dark-main-color);
}

.introduction .container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; 
}

.introduction .text {
	padding: 20px 0;
	margin-bottom: 20px;
	display: block;
	flex-direction: initial;
	justify-content: initial;
	text-align: left;
}

.introduction h2 {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 1.5rem;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.introduction p {
	padding-top: 15px;
	font-size: 12px;
    line-height: 1.6;
}

.introduction .photo {
	min-height: 250px;
	background-image: url(img/p01.jpg);
	background-position: center;
	background-size: cover;
	margin-bottom: 20px;
}


/* 소개 페이지: 이미지와 줄글  [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.introduction {
		padding-top: 100px;
		padding-bottom: 150px;
	}

	.introduction .container {
		display: block;
		max-width: 1500px;
		margin-left: auto;
		margin-right: auto;
	}

	.introduction .photo {
		min-height: 400px;
	}

	.introduction .text {
		padding: 80px 0;
		width: 590px;
		margin-left: 150px;
        text-align: left;
	}
}

@media (max-width: 768px) {
    .introduction {
		padding-top: 20px;
        padding-bottom: 60px; 
    }

	.introduction .photo {
        min-height: 250px; /* 모바일에서 이미지가 너무 커지지 않도록 조정 */
    }
    
    .introduction .text {
        width: 100%;
        padding: 20px 0 40px 0;
    }

	.introduction h2 {
        margin-bottom: 5px;
    }

	.introduction p {
        padding-top: 5px; 
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M image-section: 텍스트와 작은 이미지 3개 */
.image-section {
    padding: 50px 0 350px 0;
    color: var(--dark-main-color);
}

.image-section .container {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: center;
}

.image-section .left-text {
    flex-basis: 30%;
    max-width: 30%;
    padding-right: 140px;
	padding-left: 50px;
	padding-bottom: 150px;
}

.image-section .left-text h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.image-section .left-text p {
    padding-top: 15px;
	font-size: 12px;
    line-height: 1.6;
}


.image-section .right-images {
    flex-basis: 70%;
    display: flex; 
    gap: 30px;
    justify-content: space-between;
	align-items: center;
}

.image-section .image-item {
    flex: 1 1 30%; 
    height: 550px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-color);
	position: relative;
}


/* PC 환경에서만 높낮이 조절 */
@media (min-width: 768px) { 
    .image-section .image-item.first-image {
        top: -90px; 
    }

    .image-section .image-item.third-image {
        top: 80px;
    }
}


/* --- 반응형 웹 (767px 이하, 모바일/태블릿) --- */
@media (max-width: 767px) {
    .image-section {
        padding: 50px 0;
    }
    
    .image-section .container {
        flex-direction: column; 
        align-items: center;
        padding: 20px;
    }

    .image-section .left-text {
		order: 2;
        flex-basis: 100%;
        max-width: 100%;
        padding: 20px 15px 50px 15px;
        margin-bottom: 30px; 
    }
    
    .image-section .left-text h2 {
		margin-bottom: 5px;
        font-size: 1.5rem;
    }

	.image-section .left-text p {
        padding-top: 5px;
    }

    .image-section .right-images {
		order: 1;
        flex-basis: 100%;
        width: 100%;
        gap: 15px;
		margin-bottom: 30px;
		padding: 0 15px;
    }

    .image-section .image-item {
        height: 350px;
		position: relative; 
    }

	.image-section .image-item.first-image {
        top: -40px; 
    }

	.image-section .image-item.third-image {
        top: 40px; 
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M 콘텐츠C: 개요(이미지+글자) */
.conC {
	background: linear-gradient(rgba(114, 114, 114, 0.8), rgba(24, 24, 24, 0.8)), url(img/main2_img.jpg)fixed;
	min-height: 300px;
	color: #fff;
	color: var(--text-bright-color);
	background-size: cover; /* 공간 넘은 부분은 잘리게 */
}


.conC .text {
	padding: 20px;
	display: flex;
	text-align: left; 
	flex-direction: column;
	align-items: flex-start;
	margin-left: 500px;
}


.conC h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


.conC p {
	margin-top: 0;
	margin-bottom: 20px;
	padding-top: 15px;
	font-size: 12px;
    line-height: 1.6;
}


.conC a:hover {
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
}


/* pc-콘텐츠C: 개요(image+text) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conC .container {
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.conC .text {
		flex: 1;
		max-width: 1000px;
		padding: 310px 0 90px 0;
		display: flex;          
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
	}
}

@media (max-width: 768px) {
    .conC {
        min-height: 250px; 
        background-repeat: no-repeat; 
        background-position: center; 
    }

	.conC .text {
		margin-left: 0;
		padding: 250px 20px 40px 20px;;
		width: 100%;
		box-sizing: border-box;
		display: flex;          
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
	}

	.conC .container {
        justify-content: flex-start; 
        align-items: flex-start;
        height: 100%;
    }

	.conC h2 {
        margin-bottom: 5px; 
    }
    
    .conC p {
        padding-top: 10px; 
        margin-bottom: 10px; 
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M 소개 페이지: 작업 경력, 연혁 */

.history .container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 70px 10px 150px 10px;
	/* background-color: #66CBE5; */
	display: flex;
}

.history .text {
	padding: 20px;
}

.history .text p {
    padding-left: 50px;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 40px; 
    opacity: 0.8;
    max-width: 385px; 
}

.history h1 {
	margin-top: 0;
	margin-bottom: 20px;
	padding-left: 50px;
	font-size: 2rem;
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.history table {
	border-collapse: collapse;
	font-size: 0.875rem;
	width: 100%; /* 보더가 화면 끝까지 위치하도록 함 */
}

.history tr {
	border-top: solid 1px var(--gray-color);
}

.history tr:first-child {
    border-top: none;
}

.history th, .history td {
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
	border-bottom: none;
}


.history th { /* th: 좌우 어느쪽으로든 맞추기, td: 왼쪽 정렬 */
	padding-right: 1rem;
	text-align: start; /* 우측 정렬일 경우 end */
	word-break: keep-all; /* keep-all: 줄 바꿈 x 코드. 혹은 th에 width값 적용 */
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.history td {
	padding-left: 40px;
	font-size: 12px;
    line-height: 1.6;
}



/* pc-소개 페이지: 이미지와 연혁 [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.history {
		padding-top: 150px;
		flex-direction: column;
		align-items: flex-start; 
	}

	.history .container {
		display: flex;
		max-width: 1400px;
		margin-left: auto;
		margin-right: auto;
	}

	.history .text,
	.history .text2 {
		max-width: 100%;          
	}

	.history .text {
		flex: 1.5;
		order: 1;
	}

	.history .text2 {
		flex: 2;
		padding: 100px 0 70px 0;
		order: 2;
		margin-top: 40px; 
	}
}

@media (max-width: 768px) {
    .history {
		padding-top: 120px;
	}

	.history .container {
		flex-direction: column;
		align-items: flex-start; 
	}

	.history .text,
	.history .text2 {
		max-width: 100%; 
		margin-top: 0;  
		padding: 0 20px 20px 0; 
	}

	.history .text2 {
		margin-left: 50px;
	}
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M-artwork 소개 */
.listA .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-auto-rows: 250px;
	gap: 15px;
	grid-auto-flow: dense;
	max-width: 1400px;
	margin: 0 auto;
}

.listA article {
	display: block;
}

.listA a {
	margin: 0;
	display: block;
	/* border: solid 1px #ddd;
	border: solid 1px var(--gray-color); */
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.listA article.tall {
    grid-row: span 2; 
}

/*
.listA a:hover {
	opacity: 0.8;
}
*/
	
.listA a:hover { /* 다크모드 변환용 */
	background-color: #222;
	color: #ddd;
}

.listA .photo {
	height: 100%;
	/* min-height: 250px; */
	background-position: center;
	background-size: cover;
}



/* M-artwork_2 소개 */
.listB {
    padding-top: 200px;
	padding-bottom: 250px; 
}

.listB-header {
    text-align: center; 
    max-width: 1000px;
    margin: 0 auto 200px auto;
}

.listB-header h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 70px; 
    color: var(--dark-main-color);
    font-family: '맑은 고딕', 'Apple SD Gothic Neo', 'sans-serif'; 
}

.listB-divider {
    width: 80px; 
    height: 1px; 
    background-color: #c6c6c6; 
    margin: 0 auto; 
}

.listB .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.listB article {
	margin-bottom: 0;
	text-align: center;
}

.listB .photo {
	width: 100%;
    height: 300px; /* 작품 높이 고정 */
    background-color: #eee;
    background-size: cover;
    background-position: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* 가로 세로 블러 반경 확산 반경 투명도 */
}

.listB .content {
    padding: 20px 0 0 0;
	text-align: center;
}

.listB .content p {
    /* border: 1px solid #b5b5b5; 
	background-color: var(--dark-main-color);
    padding: 5px 10px;
    line-height: 1.4;
	font-size: 0.9rem;
    opacity: 1; */
	display: inline-block;
	text-align: center;
	font-weight: normal;
}

.listB p {
	font-size: 12px;
	color: var(--dark-main-color);
	font-family: '맑은 고딕', 'Apple SD Gothic Neo', 'sans-serif';
}


/* 너비가 600px 이하의 미디어에서 
@media (max-width: 384px) {
	.listB .photo {
		flex: 1;
	}

	.listB p {
		display: none;
	}
}*/

@media (max-width: 767px) {
    .listA .container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        column-gap: 10px;
        row-gap: 10px; 
		padding: 0 15px;
		margin-top: 15px;
    }

	.listA article {
        height: 100%;
    }

	.listB-header h2 {
    font-size: 20px;
	margin-bottom: 70px
	}
	
	.listB-header {
        margin-bottom: 200px; 
    }

    .listB .container {
        grid-template-columns: 1fr; 
        gap: 90px; 
        padding: 0 15px;
    }

	.listB article {
        width: 220px;
        margin-left: auto; /* 중앙 정렬 */
        margin-right: auto; /* 중앙 정렬 */
    }
    
    .listB .photo {
        height: 250px; 
    }
    
    .listB .content p {
        padding: 10px; 
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M-contact: 문의 페이지 */
.contact-main .container {
    padding: 0; 
    display: flex; 
    max-width: none; 
    min-height: 80vh; 
}

.contact-left {
    flex-grow: 1; 
    width: 40%; 
}

.contact-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 50px;
}


.contact-title {
    font-size: 12vw; 
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--dark-main-color);
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: left; 
    width: 100%; 
    max-width: 400px; 
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* 아이콘 및 텍스트 리스트 스타일 */
.contact-list {
    list-style: none;
    padding-left: 600px;
    margin: 0;
    width: 100%; 
    max-width: 400px; 
    text-align: left; 
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 15px;
}

.contact-list a {
    display: inline-block;
    text-decoration: none;
    color: var(--dark-main-color);
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--point-color);
}

.contact-list .fa-brands,
.contact-list .fa-solid {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

/* PC: 아이콘을 더 오른쪽으로 밀기 위해 contact-right 내용을 중앙에서 약간 오른쪽으로 이동 */
@media (min-width: 768px) {
    .contact-right {
        align-items: flex-start; 
        padding-left: 100px;   
        padding-right: 50px;   
    }
    
    .contact-title {
        font-size: 95px; 
        max-width: 450px; 
    }
}


/* 모바일/태블릿 최적화 */
@media (max-width: 767px) {
    .contact-main .container {
        flex-direction: column; 
    }

    .contact-left, .contact-right {
        width: 100%;
        height: auto;
    }

    .contact-left {
        min-height: 500px; /* 모바일에서 이미지 영역 최소 높이 지정 */
		display: flex;
        flex-grow: 1;
    }

	.contact-photo {
        width: 100%;
		min-height: 500px;
	}

    .contact-right {
        padding: 5px 20px 40px 20px;
        align-items: flex-start; /* 모바일에서 좌측 정렬 */
		box-sizing: border-box;
    }
    
    .contact-title {
        font-size: 13vw;
        text-align: left; /* 좌측 정렬 */
        margin-bottom: 30px;
        max-width: none;
		width: 100%;
		box-sizing: border-box;
    }

    .contact-list {
		padding-left: 0;
        text-align: left; /* 좌측 정렬 */
        max-width: 100%;
		width: auto;
		margin-left: auto;
		margin-right: 20px;
		margin-top: 30px;
		margin-bottom: 40px;
		box-sizing: border-box;
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M 콘텐츠E: 비디오 */
.conE {
	background-color: var(--text-bright-color);
	color: var(--text-bright-color);
	padding-top: 15px; 
    padding-bottom: 15px;
}

.conE video {
	width: 100%;
	position: center;
}

.conE .text {
	padding: 20px;
}

.conE h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.conE p {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
}



/* pc-콘텐츠E: 개요(image + text) [width=768px]를 기준으로 */
@media (min-width: 768px) {
	.conE .container {
		display: block;
		width: 1500px; 
		margin-left: auto;
		margin-right: auto;
	}
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* artwork 상세페이지 영역 */
.split-hero {
    padding-top: 50px; 
    min-height: 80vh;
    display: flex; 
    align-items: center;
}

/* 내부 컨테이너*/
.split-hero .container {
    display: flex;
    position: relative; 
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0 0 10px; 
}

/* 오른쪽 이미지*/
.right-image {
    width: 70%;
    height: 500px;
    background-image: url('img/main_img.jpg'); 
    background-size: cover;
    background-position: center;
    margin-left: auto;
    margin-right: -5px; 
}

/* 왼쪽 내용*/
.left-content {
    width: 35%; 
    padding-right: 70px; 
    z-index: 2;
}

.left-content h1 {
    font-size: 2.8rem; 
    font-weight: bold;
    color: var(--dark-main-color);
    text-align: left;
    position: absolute;
    right: 65%;
    top: 25%; 
    transform: translateY(-50%);
    width: auto;
    max-width: 70%;
    z-index: 3; 
	
	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.left-content p {
    margin-top: 270px; 
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
	margin-left: 40px;
}


@media (max-width: 767px) {
    .split-hero {
        padding-top: 50px;
        min-height: auto;
    }
    
    .split-hero .container {
        flex-direction: column;
		padding: 0;
		align-items: flex-start;
    }

    .left-content,
    .right-image {
        width: 100%;
        margin-right: 0 !important; 
		box-sizing: border-box;
    }
    
    .right-image {
        height: 300px; 
        order: 1; 
		width: calc(100% - 30px);
		margin-left: 30px;
		padding: 0;
    }

    .left-content h1 {
        position: static;
        transform: none;
        right: auto;
        width: 100%;
        text-align: left;
        margin: 20px 0 20px 0;
        font-size: 3rem;
		white-space: nowrap;
    }
    
    .left-content {
        order: 2; 
		padding: 0 15px;
		align-self: auto;
    }
    
    .left-content p {
        margin-top: 0; 
        padding-bottom: 50px;
		text-align: left;
		margin-left: 30px;
    }
}


/* M info-split: 텍스트 좌우 분할 영역 */
.info-split {
    padding: 100px 0; /* 상하 여백 */
    min-height: 20vh;
    display: flex;
    align-items: center;
    color: var(--dark-main-color);
}

.info-split .container {
    display: flex;
    justify-content: space-between; /* 양 끝 정렬 */
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px; /* 좌우 여백 추가 */
}


.info-right-content {
    flex-basis: 40%;
    max-width: 40%;
    padding-right: 40px;
}

.info-right-content p {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
}

/* 왼쪽 키워드 영역 */
.info-left-menu {
    flex-basis: 40%;
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
}

.info-left-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 55px; 
    font-size: 12px;
    letter-spacing: 1px;
	word-break: keep-all;

	font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.info-left-menu li {
    word-break: keep-all; /* 줄바꿈 방지 */
}

/* --- 반응형 웹 (767px 이하) --- */
@media (max-width: 767px) {
    .info-split {
        padding: 50px 0;
    }
    
    .info-split .container {
        flex-direction: column; /* 세로로 쌓기 */
        padding: 0 15px;
        align-items: center;
    }

    .info-right-content {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 0; 
		padding: 30px 15px 50px 15px;
		box-sizing: border-box;
    }

	.info-right-content p {
        font-size: 12px;
        line-height: 1.6;
        text-align: left;
        margin-top: 0;
        margin-bottom: 15px;
	}

    .info-left-menu {
        flex-basis: 100%;
        width: 100%;
        margin: 0 auto 30px auto;
		justify-content: center;
		padding: 0 15px 35px 15px;
		box-sizing: border-box;
    }

    .info-left-menu ul {
        gap: 40px;
        font-size: 14px;
		justify-content: center;
		width: auto;
		word-break: normal;
    }
}



/* M image-showcase: 작품 이미지 섹션 */
.image-showcase {
	clear: both;
    padding: 50px 0;
    color: var(--dark-main-color);
}

.image-showcase .container {
    display: flex;
    justify-content: space-between; /* 이미지 항목 사이에 균일한 간격 배치 */
    gap: 30px; /* 항목 사이 최소 간격 */
    
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 50px; 
}

/* 개별 이미지 설정 */
.image-showcase .photo-item {
    flex: 1 1 30%; 
    min-width: 250px;
}

.image-showcase .photo {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-color); 
}


/* --- 반응형 웹 (767px 이하) --- */
@media (max-width: 767px) {
    .image-showcase {
        padding: 0 0 100px 0;
    }
    
    .image-showcase .container {
        flex-direction: row;
        padding: 0 15px; /* 모바일 좌우 여백 */
        gap: 10px;
		justify-content: space-between;
		align-items: flex-start;
    }

    .image-showcase .photo-item {
		flex: 1 1 50%;
        width: 50%;
        min-width: unset;
		box-sizing: border-box;
    }
    
    .image-showcase .photo {
		height: 0;
        padding-top: 60%; /* 모바일에서는 높이를 조금 줄여 직사각형으로 */
    }
}



/* M full-width-showcase: 이미지 하나씩 크게 표시되는 섹션 */
.full-width-showcase {
    clear: both;
    padding: 200px 0 50px 0;
    color: var(--dark-main-color);
}

.full-width-showcase .container {
    display: block;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 50px; 
}

/* 개별 이미지 항목 */
.full-width-showcase .photo-item {
    margin-bottom: 70px; /* 이미지 항목 간 세로 간격 */
}

.full-width-showcase .photo {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-color); 
}

/* --- 반응형 웹 (767px 이하) --- */
@media (max-width: 767px) {
    .full-width-showcase {
        padding: 30px 0;
    }
    
    .full-width-showcase .container {
        padding: 0 15px;
    }
    
    .full-width-showcase .photo-item {
        margin-bottom: 30px; 
    }
    
    .full-width-showcase .photo {
        height: 300px; 
    }
}


/* M artwork-nav: Artwork 페이지 이동 버튼 */
.artwork-nav {
    padding: 0 0 100px 0; /* 상하 여백 조정 */
    text-align: center;
}

.artwork-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.back-to-list {
    display: inline-block;
    padding: 10px 20px;
    color: var(--dark-main-color);
    font-size: 12px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    letter-spacing: 0.1em;
    font-family: "Zalando Sans Expanded", sans-serif; 
}

.back-to-list:hover {
    color: var(--point-color); 
    opacity: 0.8;
}

@media (max-width: 767px) {
    .artwork-nav {
        padding: 30px 0 60px 0; 
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */


/* M footer 푸터 */
footer {
	color: var(--dark-main-color);
	background-color: var(--text-bright-color);
	border-top: solid 1px var(--gray-color);
}


footer .container {
	padding: 15px 20px;
}


/* 푸터C: 저작권 */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'DosMyungjo', sans-serif;
    font-style: normal;
	width: 100%;
	color: var(--point-color);
	margin-top: 20px;
	
}


/* 푸터B: sns메뉴 */
.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--dark-main-color);
	gap: 50px;
	display: flex; 
    justify-content: center;
}


.footB ul li:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
}


.footB a {
	display: block;
	padding: 15px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}


.footB ul li:last-child a {
    /* border: solid 1px var(--dark-main-color); */
	border-radius: 2px;
	padding: 2px 18px;
	display: inline-block;
	vertical-align: middle;
}

.footB a:hover {
	color: #e0585d;
}

@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		max-width: 1450px;
		margin-left: auto;
		margin-right: auto;
	}

	.footB ul {
		display: flex;
	}

	.footB {
        flex-grow: 0; 
        flex-shrink: 0;
    }

	.footC {
        flex: 0 0 100%;
		/* border-top: solid 1px var(--gray-color); */
        padding-top: 30px; /* 구분선 위쪽 여백 */
        margin: 10px; /* footB와 footC 사이 여백 */
    }
}


@media (max-width: 768px) {
    .footB a {
        padding: 10px 5px;
        font-size: 8px; 
        white-space: nowrap;
    }
    
    .footB ul li:last-child a {
        padding: 2px 10px; 
    }
    
    .footB ul {
        gap: 20px; 
        padding: 0 5px;
    }

	.footC {
        margin-top: 40px; 
    }
}
