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


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


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

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

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


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


.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: 0;
    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 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; 
    }
}
