@charset "UTF-8";

/* 기본 색상 */
:root {
	--main-color: #6e888e;
	--accent-color: #9d8aae;
	--dark-main-color: #3e6974;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
}


/* 기본 설정: 폰트 크기 */
@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 {font-size: 16px;
}
html, body {
    overflow-x: hidden;
}

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

/* header 헤더 */
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 80px;
	background-color: #000;
}

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

/* headA 사이트 이름 */
.headA{
	display:flex;
	line-height: 70px;
	align-items: center; 
	padding-left: 20px; 
	padding-right: 20px;
	height: 80px; 
	background-color: #000; 
  }
.headA img{
	height: 50px; 
  }

/* headB 내비게이션 메뉴 */
.headB ul{
	margin: 0;
	padding: 0;
	list-style: none; 
	background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.3));
}

.headB a{
	display: block;
	padding: 15px;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	border-bottom:1px solid #660000;
}

.headB a:hover{
	background-color: #69100b;
	padding-left:30px;
	font-style:bold;
}

@media(min-width:768px){
	header .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.headB ul{
		display: flex;
	}
	.headB a{
		display: block;
		padding:15px;
		color:#b23832;
		font-size: 12px;
		text-decoration: none;
		border:0;
		
	}
	.headB a:hover{
		padding:15px;
		font-style:bold;
		color:#fff;
	}
}

/*headC 토글버튼 */
@media (max-width: 767px){
	/* 작은화면 전용설정 */
	header .container-small{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.headC{
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		/*opacity: 0.5;*/
		cursor: pointer;
		color: #843533;
	}
	.headC:hover{
		opacity: 0.3;
	}
	.headB{
		display: none;
	}
}

@media(min-width:768px){
	/* 큰화면 전용설정 */
	.headC{
		display: none;
	}
	.headB{
		display: block !important;
	}
}

/* 콘텐츠A: main-banner-image 히어로 이미지 (모바일 767px) */
.conA{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh; 
	min-height: 450px;
	padding: 0;
	background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url(img/main_img.jpg);
	background-position: center;
	background-size: cover;
	/*color: #fff;*/
	text-align: center;
	margin: 0;
}
.conA .text h2{
	font-weight: 400;
	letter-spacing: 2px;
	margin: 0;
	transform: translateY(-50px);
	font-family: 'Cinzel Decorative', cursive; 
	color:#ef5b54;
}
.conA .text h1{
	font-weight: 400;
	letter-spacing: 2px;
	margin: 0;
	transform: translateY(-50px);
	font-family: 'Cinzel Decorative', cursive; 
	color:#8b2c27;
}

/* Mobile size -콘텐츠A: main-banner-image (pc 768px) */
@media (min-width: 768px) {
	.conA h1{
		font-size: 110px;
	}
	.conA h2{
		font-size: 40px;
	}
}
@media (max-width: 767px){
	.conA{
		height: 100vh;
		background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("img/main_m_img.jpg");
	}
	.conA .text h2 {
		font-size: 20px;
		transform: translateY(-130px); 
	}
	.conA .text h1{
		font-size: 60px;                                                               
		transform: translateY(-130px);
	}
}

/* (M) 콘텐츠 B 여백(그라데이션) */
.conB{
	background: linear-gradient(180deg, #000, #300705, #000);
	width: 100%;
	height: 300px;
	margin: 0;
	padding: 0;
	display: flex;           
    align-items: center;        
    justify-content: center; 
    text-align: center; 
}  
.conB h2{
	font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    color:#ef5b54;
	transform: translateY(-10px);
}

/* pc 콘텐츠B: B 여백(그라데이션) width=768 기준으로*/         
@media (min-width:768px){
	.conB .container{
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.conB .text{
		flex: 1;
	}
}
@media (max-width:767px){
	.conB h2{
		font-size: 25px;
	}
}

/* (M) 콘텐츠C: image+text(artwork로 이동) */
.conC{
	background-color: #000;
	color: #fff;
}
.conC .text{
	padding: 20px;
}
.conC h2{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}
.conC p{
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.8;
}
.conC a{
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	/*border: solid 3px currentColor;
	border-radius: 6px; */
	background-color: #69100b;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.conC a:hover{
	background-image: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2));
}
.conC .photo{
	min-height: 300px;
	background-image: url(img/main_artwork.jpg);
	background-position: center;
	background-size: cover;
	margin-bottom: 20px;
}

/* pc-콘텐츠C: image+text(artwork로 이동) width=786px 기준으로 */
@media (min-width:768px){
	.conC .container{
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.conC .photo{
		flex: 3;
	}
	.conC .text{
		flex: 2;
		padding: 50px;
	}
}
/*M-conC: image+text(artwork로 이동) 767px */
@media (max-width:767px){
	.conC .photo{
		margin: 0 20px;
	}
}

/*  콘텐츠D: 배경이미지+중앙텍스트=about으로 이동 */
.conD{
	background-image: url(img/main_about.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	color: #fff;
	color: var(--text-bright-color);
	padding: 100px 0; 
  }
.conD .container{
	max-width: 1000px; 
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.conD .text{
	background: rgba(0, 0, 0, 0.4); 
	padding: 60px 80px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.conD h3{
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 5px #000;
}
.conD p{
	font-size: 16px;
	line-height: 1;
	color: #fff;
	opacity: 0.9;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
	margin: 0;
} 
.conD a{
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	/*border: solid 3px currentColor;
	border-radius: 6px; */
	background-color: #000;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.conD a:hover{
	background-color: #69100b;
	color: #fff;
}
  
/* pc-콘텐츠D: 배경이미지+중앙텍스트 width=786px 기준으로 */
@media (max-width: 768px){
	.conD .text{
	  padding: 40px 20px;
	}
	.conD h3{
	  font-size: 22px;
	}
	.conD p{
	  font-size: 14px;
	}
  }

  /*M 콘텐츠E: 콜라주 형식 */
  .conE{
	background-color: #d9d7d7;
	padding: 100px 0;
	text-align: center;
}
.conE h2{
	font-size: 28px;
	margin-bottom: 80px;
	letter-spacing: 2px;
	color: #2a2a2a;
}
.conE .container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.conE .collage{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 250px;
	gap: 15px;
}
.conE .img-box{
	position: relative;
	overflow: hidden;
}
.conE .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.conE .overlay-text{
	position: absolute;
	left: 20px;
	bottom: 15px;
	color: #fff;
	text-align: left;
	z-index: 2;
}
.conE .overlay-text h4{
	font-size: 16px;
	margin-bottom: 5px;
	letter-spacing: 1.5px;
}
.conE .overlay-text p{
	font-size: 13px;
	opacity: 0.9;
	text-shadow: 2px 2px 5px #000;
}
.conE .img-box:hover img{
	transform: scale(1.05);
}
.conE .text-box{
	background-color: #fff;
	/* border: 2px solid #000; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 30px;
	text-align: center;
}
.conE .text-box h3{
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 700;
}
.conE .text-box p{
	font-size: 14px;
	line-height: 1.7;
	color: #555;
}
  
  /* pc- conE: 콜라주 */
  @media (max-width: 767px){
	.conE .collage {
	  grid-template-columns: 1fr 1fr;
	  grid-auto-rows: 200px;
	}
	.conE .text-box{
	  grid-column: span 2;
	  padding: 30px 20px;
	}
  }

/*proposal: 기획안 영상*/
.video-wrap{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px){
    .proposal .container{
        width: 100%;    
        max-width: 1500px;  /* 개인작은 1200 */
        margin: 0 auto;
    }
    .video-wrap iframe{
        object-fit: contain; 
        object-position: center;
    }
}

@media (max-width: 767px){
    .proposal .container{
        width: 100%;
        padding: 0;
    }
    .video-wrap{
        padding-bottom: 70%; 
    }
    .video-wrap iframe{
        object-fit: cover;
        object-position: top;
    }
}

/* footer 푸터 */
footer{
	/*color: #ccc;*/
	background-image: linear-gradient(#000,#232222);
}
footer .container{
	padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
	
/* PC-footer: 구조 레이아웃 width=768px 기준으로 */
@media (min-width:768px){
	footer .container{
		max-width: var(--middle-width);
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
	}
	.footD{
		margin-left: auto;
		margin-top: 0;
	}
	.footA, .footB, .footC{
		flex: 0 0 100%;
	}
	
}

/* (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:#b23832;
}
.footA p{
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	color:#ab4b46;
}
.footA a{
	color:#ab4b46;
	text-decoration: none;
}
	
/* footerC: 저작권 */
.footC{
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	padding:20px 0;
	margin:0 auto;
	color:#a35d5a;
}
	
/* 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;
	font-size: 16px;
	text-decoration: none;
	background-color: #000;
	color: #660000;
	border: solid 2px #660000;
	width: 2em;  
	line-height: 2em;
	border-radius: 50%; 
	text-align: center;
}
.footD a:hover{
	background-color: #660000;
	color: #222;
	border: solid 2px #660000;
}


/*aboutA: 배너 이미지 */
.aboutA.compact{
    height: 450px;
    min-height: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url(img/about_bg.jpg);  
    background-position: center;
    background-size: cover;
	margin-bottom: 0px;
}
@media (max-width: 767px){
    .aboutA.compact{
        height: 80vh;
        background-image:linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url(img/about_bg_m.jpg);
		margin-bottom: 0px;
    }
}

/*aboutB: 여백 (그라데이션) */
.aboutB{
	height: 200px;
	background-color: #000;
}

/*aboutC: 작가소개, 이미지+텍스트(about_b로 이동) */
.aboutC{
	background: linear-gradient(180deg, #5a5a5a,  #000);
    color: #fff;
}
.aboutC .container{
    position: relative;      
    display: flex;
    align-items: flex-end;
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 120px;
    gap: 40px;
}
.aboutC .photo{
    position: relative; 
}
.aboutC .photo .bg-photo{
    width: 100%;
    max-width: 600px;
    display: block;
}

/* 컷아웃 PNG */
.aboutC .photo .mcqueen{
    position: absolute;
    bottom: 0;   
    left: -10px;       
    width: 620px;   
    pointer-events: none;
    z-index: 10;
}
.aboutC .text{
    flex: 1;
}

  /*aboutD: 텍스트+이미지*/
.aboutD{
	background: linear-gradient(180deg, #000, #5a5a5a);
	color: #fff;
}
.aboutD .container{
	display: flex;
	align-items: flex-end;
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 20px;
	gap: 40px;
}
.aboutD .photo img{
	width: 100%;
	max-width: 600px;
	height: auto;
	display: block;
}
.aboutD .text{
	flex: 1;
	text-align: end;
	align-items: flex-end;
}
.aboutD h3{
	font-size: 22px;
	margin-bottom: 15px;
	text-shadow: 2px 2px 5px #000;
}

  /* aboutC,D width=768 기준으로 */
@media(max-width:768px){
	.aboutC .container{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.aboutC .text{
		text-align: center;
	}
	.aboutC .photo img{
		max-width: 100%;
	}
	.aboutD .container{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.aboutD .text{
		text-align: center;
	}
	.aboutD .photo img{
		max-width: 100%;
	}
}

/*artwork 배너 이미지 */
.conA.compact{
	height: 450px;
	min-height: 0;
	background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url(img/artwork_img.jpg);
}
.conA.compact h1{
    font-size: 100px; 
	letter-spacing: 30px;
    font-weight: 600;
    color: #69100b; 
    text-align: center;
	font-family: "Playfair Display", serif;
}
@media (max-width: 767px){
    .conA.compact h1{
        font-size: 50px;
		letter-spacing:10px;
		color: #69100b;
		font-family: "Playfair Display", serif;
    }
	.conA.compact{
		background-image: url(img/artwork_img_m.jpg);
		background-position: center;
		height: 80vh;
		background-size: cover;
	}
}

  /* aboutC,D BUTTON 버튼 부분 */
.buttonC{
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	background-color: #69100b;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease; 
}
.buttonC:hover{
	background-color: #fff;
	color: #69100b;
}
.buttonD{
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.buttonD:hover{
	background-color: #69100b;
	color: #fff;
}


/* artwork artA: 이미지+텍스트 */
.artA{
	padding-top: 100px;
	margin-bottom: 250px; 
}
.artA .container{
	display: flex;
	align-items: flex-end;
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
}
.artA .photo, .artA .text{
	flex: 1;
}
.artA .text {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}
.artA .text h2{
	font-size: 20px;
	margin: 0 0 10px 0;
	text-align: left;
}
.artA .artDesc{
	font-size: 15px;
	line-height: 1.6;
	max-width: 700px;
	margin-top: 0;
	text-align: left;
	padding-left: 0;
}
@media (max-width: 767px){
	.artA .container{
		flex-direction: column;
		align-items: center; 
		text-align: center;
	  }
	  .artA .text{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	  }
	  .artA .text h2{
		text-align: center;
		margin-top: 15px;
	  }
	  .artA .artDesc{
		text-align: center;
		padding-left: 0;
		margin: 10px auto 0;
	  }
  }

/* artwork artA: 돋보기 기능 */
.artA-wrap{
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.artA-wrap img{
	width: 100%;
	display: block;
	filter: blur(3px) brightness(0.55);
	transition: filter 0.25s ease-out;
}
.artA-wrap:hover img{
	filter: blur(2px);
}
.center-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    pointer-events: none; 
	opacity: 1;
    transition: opacity 0.4s ease;
}
.artA-wrap:hover .center-text{
    opacity: 0;
}
.img-magnifier-glass{
	position: absolute;
	border: 2px solid #ffffffa8;
	border-radius: 50%;
	cursor: none;
	width: 150px;
	height: 150px;
	display: none;
	z-index: 10;
	box-shadow: 0 0 15px rgba(255,255,255,0.4);
}
.artA-wrap:hover .img-magnifier-glass{
	display: block;
}

/* artwork: runway: 3단그리드&필터기능 부분 */
.runway{
	padding: 100px 20px;
	max-width: 1200px;
	margin: auto;
} 
.runway-title{
	text-align: center;
	font-size: 26px;
	margin-bottom: 40px;
}  
.runway-filter{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}  
.filter-btn{
	padding: 8px 18px;
	border: none;
	background: #000;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	transition: 0.2s;
}  
.filter-btn.active, .filter-btn:hover{
	background: #69100b;
	color: #fff;
} 
.runway-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}  
.runway-grid img{
	width: 100%;
	display: block;
} 
.date{
	font-size: 12px;
	color: #666;
	margin-top: 6px;
}  
.name{
	font-size: 15px;
	font-weight: 600;
	margin-top: 2px;
}
.hidden{
	display: none;
}
.fade-in {
	animation: fadeUp 0.6s ease-out forwards;
}
@keyframes fadeUp{
	from {opacity: 0; transform: translateY(15px);}
	to {opacity: 1; transform: translateY(0);}
}
.view-more {
    display: block;              
    width: fit-content;       
    margin: 50px auto 0;     
    padding: 10px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .2s;
    text-align: center;
}
.view-more:hover{
    background: #69100b;
    color: #fff;
}
@media (max-width: 767px){
    .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .runway {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .runway-filter {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        gap: 10px;
        width: 100%;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 14px;
    }
    .runway-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .runway-grid .item {
        margin: 0;
        width: 100%;
    }
    .artA-wrap img{
        filter: none;
    }
    .img-magnifier-glass{
        display: none;
    }
    .center-text{
        display: none;
    }
}

/* brand: 브랜드 소개 페이지 */
.brand{
    padding: 80px 0;
    background: #fff;
}
.brand .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.brand-text h2{
    font-size: 30px;
    margin-bottom: 10px;
}
.brand-text p{
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.brand-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.brand-row{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.layout1{
    justify-content: center;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 200px;
}
.layout1 .brand-text{
    max-width: 700px;
    margin: 0 auto;
}
.layout2 .brand-img,
.layout2 .brand-text{
    flex: 1;
}
.layout3{
    width: 100vw;
    height: 450px;
    background-image: url("img/brand_3.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 200px;
    margin-bottom: 200px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.layout4{
    flex-direction: row-reverse;
    margin-bottom: 200px;
    text-align: end;
}
.layout4 .brand-img,
.layout4 .brand-text{
    flex: 1;
}
.layout5{
    flex-direction: column;
    text-align: center;
}
.layout5 .brand-text{
    max-width: 700px;
    margin: 0 auto;
}
.layout5 .brand-img{
    max-width: 700px;
    margin: 20px auto 0;
}

@media (max-width: 767px){
    .brand-row {
        flex-direction: column;
        gap: 20px;
    }
    .layout3 {
        height: 250px;
        background-attachment: scroll;
        margin-top: 120px;
        margin-bottom: 120px;
        background-image: url("img/brand_3_m.jpg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .layout4 {
        flex-direction: column;
    }
    .layout5 .brand-img {
        max-width: 100%;
    }
    .layout2 .brand-text,
    .layout4 .brand-text {
        text-align: center;
    }
}
	
/*about_b(detail)페이지: 작가소개 */
.detail_b{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 30px;
    margin-top: 0;
    margin-bottom: 200px;
}
.detail_b-img{
    flex: 2.5; 
    height: 850px;
}
.detail_b-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}
.detail_b-text{
	flex: 1;
	display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    text-align: left;      
    min-height: 300%;            
    padding-bottom: 10px;
}
.detail_b-text h4{
	font-size: 22px;
	margin-bottom: 15px;
}
.detail_b-text p{
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}
.btn-back{
	display: block;       
	width: fit-content;   
	margin: 80px auto;   
	padding: 10px 25px;
	border: 1px solid #000;
	text-decoration: none;
	color: #000;
}
  .btn-back:hover{
	background: #69100b;
	color: #fff;
}

/* (M)- 767px */
@media (max-width: 767px) {
    .detail_b{
      flex-direction: column;
      gap: 20px;
      margin: 60px 0;
    }
    .detail_b-img, .detail_b-text{
      flex: none;
      width: 100%;
    }
    .detail_b-img {
        height: 400px;
        background-image: url(img/detail-b-m_1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .detail_b-img img {
        display: none;
    }
}
   
/* history_b: 작가 경력 소개 */
.history_b{
	background-color: #f7f7f7;
	color: #555;
}
.history_b .text{
	padding: 20px;
}
.history_b h2{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
}
.history_b .photo{
	min-height: 300px;
	background-image: url(img/detail-b_2.jpg);
	background-position: center;
	background-size: cover;
}
.history_b table{
	border-collapse: collapse;
	border-top: solid 1px #ddd;
	border-top: solid 1px var(--gray-color);
	font-size: 0.875rem;
	width: 100%;
}
.history_b th, .history_b td{ 
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}
.history_b th{
	padding-right: 0.5rem;
	text-align: start;
	word-break: keep-all; 
}
/* history_b width=768px 기준으로 */
@media (min-width:768px){
	.history_b .container{
		display: flex;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.history_b .photo{
		flex: 3;
	}
	.history_b .text{
		flex: 2;
		padding: 50px;
	}
} 

/*about_c(detail)페이지: 작가연혁 */
.detail_c{
	display: flex;
	align-items: flex-end;
	gap: 40px;      
	margin-top: 80px;
	margin-bottom: 250px;
	padding: 0 30px; 
}
.detail_c-img{
	flex: 1;
}
.detail_c-img img{
	width: 100%;
	object-fit: cover;
	display: block;
}
.detail_c-text{
	flex: 1;
	display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    text-align: left;      
    min-height: 300%;            
    padding-bottom: 10px;
}
.detail_c-text h4{
	font-size: 22px;
	margin-bottom: 15px;
}
.detail_c-text p{
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

/* (M)- 767px */
@media (max-width: 767px) {
	.detail_c{
	  flex-direction: column;
	  gap: 20px;
	  margin: 60px 0;
	}
	.detail_c-img, .detail_c-text{
	  flex: none;
	  width: 100%;
	}
}

/* history: 작가 연혁 */
.history{
    background-image: url('img/journey_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f6f6f6;
}
.history .text{
    padding: 20px;
    background-color: rgba(42, 42, 42, 0.7);
    color: #fff;
}
.history h2{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #fff;
}
.history .photo{
    min-height: 300px;
}
.history table{
    border-collapse: collapse;
    border-top: solid 1px #ccc;
    font-size: 0.875rem;
    width: 100%;
}
.history th, .history td{ 
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: solid 1px #ccc;
}
.history th{
    padding-right: 0.5rem;
    text-align: start;
    word-break: keep-all; 
}
@media (min-width:768px){
    .history .container{
        display: flex;
        width: 100%;
        max-width: unset;
        margin-left: unset;
        margin-right: unset;
    }
    .history .photo{
        flex: 3;
    }
    .history .text{
        flex: 2;
        padding: 50px;
    }
}