@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;
	}
}


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


/* 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/p12.jpg'); */
    /* background-size: cover;
    background-position: center; */
    margin-left: auto;
    margin-right: -5px; 
    
    /* transition: background-image 0.5s ease-in-out; */

    background-image: none;
    transition: none;

    position: relative;
    background-color: var(--gray-color);
}


.right-image .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    
    opacity: 0;
 
    transition: opacity 0.5s ease-in-out;
}


.right-image .slide-item:first-child {
    opacity: 1;
}

/* 왼쪽 내용*/
.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: 2.2rem;
		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: 15px;
        font-size: 10px;

        white-space: normal;
        word-break: break-word;
        box-sizing: border-box;
    }

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


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


/* 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: 10px;
        line-height: 1.6;
        text-align: left;
        margin-top: 0;
        margin-bottom: 15px;
	}

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

    .info-left-menu ul {
        gap: 15px;
        font-size: 10px;
		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; 
    }
}
