/* contents.css */


/*
	** 소개
*/
.introduce-top {
}
.introduce-top .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    gap: 0 40px;
}
.introduce-top .container .title {
    flex: 1;
    font-size: 1.8em;
    line-height: 1.5em;
}
.introduce-top .container .title strong {
    color: var(--primary-color);
    font-weight: 700;
}
.introduce-top .container::after {
    content: "";
    display: block;
    width: 35%;
    max-width: 505px;
    height: 223px;
    background: url(../img/contents/introduce-img01.png) no-repeat center top;
    background-size: contain;
}
.introduce {
    background: url(../img/contents/introduce-bg01.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0 80px;
    min-height: 700px;
    display: flex;
    align-items: center;
}
.introduce .container {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
}
.introduce .container .title {
    font-size: 1.8em;
    line-height: 1.5em;
    font-weight: 700;
    color: #fff;
}
.introduce .container .desc {
    color: #fff;
    line-height: 1.5em;
    margin-bottom: 20px;
}
@media all and (max-width: 1023px) {
    .introduce-top .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .introduce-top .container .title {
        text-align: center;
    }
    .introduce-top .container::after {
        width: 235px;
        height: 100px;
    }
    .introduce {
        padding: 150px 0 200px;
        min-height: auto;
        background-size: 150% auto;
    }
}
@media all and (max-width: 767px) {
    .introduce-top .container::after {
        display: none;
    }
    .introduce-top .container .title {
        font-size: 1.5em;
    }
    .introduce-top .container .title br {
        /*display: none;*/
    }
    .introduce {
        padding: 50px 0 200px;
        min-height: auto;
        background-size: auto 120%;
    }
    .introduce .container {
        align-items: center;
        text-align: center;
    } 
    .introduce .container .title {
        font-size: 1.5em;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    }
}
@media all and (max-width: 480px) {
    .introduce-top .container .title br,
    .introduce .container .title br {
        display: none;
    }
}

/*
	** 인사말
*/
.greeting {
	padding-bottom: 100px;
}
.greeting .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 40px;
}
.greeting .greeting-top {
    width: 100%;
    margin-bottom: 60px;
}
.greeting .greeting-top .title {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center; 
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.greeting .greeting-top .title br {
    display: none;
}
.greeting .greeting-top .title strong {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
}
.greeting .greeting-txt {
    flex: 1 1 50%;
}
.greeting .greeting-txt .txt {
    margin-bottom: 20px; 
    font-size: 1.1em;   
    line-height: 1.8em;
}
.greeting .img-box {
    width: 25%;
    max-width: 261px;
    text-align: center; 
    border-radius: 20px;
    overflow: hidden;
}
.greeting .img-box img {
    display: inline-block; 
    max-width: 100%; 
    height: auto;
}

@media screen and (max-width: 1200px) {
    .greeting .greeting-txt .txt br {
        display: none;
    }
}
@media screen and (max-width: 1023px) {
    .greeting .greeting-top .title br {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .greeting .container {
        gap: 0;
        flex-direction: column;
        flex-wrap: wrap-reverse;
    }
    .greeting .greeting-top {
        margin-bottom: 30px;
    }
    .greeting .greeting-top .title {
        font-size: 1.6em;
        padding-bottom: 30px;
    }
    .greeting .img-box {
        width: 160px;
    }
}
@media screen and (max-width: 400px) {
    .greeting .greeting-top .title br {
        display: none;
    }
}


/* ## 연혁 ## */
.history-top {
	height: 300px;
	background: url("../img/contents/history-img.png") no-repeat left center;
}
.history-top .container {
	display: flex;
	align-items: center;
	height: 100%;
}
.history-top img {
	width: 330px;
}
.history {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 100px;
}
.history .tab {
	position: sticky;
	top: -1px;
	z-index: 5;
}
.history .tab-btn {
	height: 70px;
	background: #fff;
	border-bottom: 2px solid #cecece;
	font-size: var(--font-size-22);
	font-weight: 700;
	color: #929292;
}
.history .tab-btn.active {
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.history-list {
	margin-top: 60px;
}
.history-box {
	display: flex;
}
.history-box .year {
	flex: 0 0 295px;
	transform: translateY(-12px);
	text-align: right;
	padding-right: 60px;
	font-size: 2.125em;
	font-weight: 700;
	color: var(--primary-color);
}
.history-box .date {
	flex-grow: 1;
	border-left: 1px solid #769fb8;
	padding-bottom: 100px;
}
.history-box .date>li {
	position: relative;
	display: flex;
	gap: 0 20px;
	padding: 0 60px;
	font-size: var(--font-size-18);
}
.history-box .date>li:not(:last-child) {
	margin-bottom: 30px;
}
.history-box .date>li::before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/contents/history-circle.png") no-repeat center;
	position: absolute;
	left: 0;
	transform: translateX(-50%);
}
.history-box .date>li:first-child::before {
	width: 24px;
	height: 24px;
	background: url("../img/contents/history-circle02.png") no-repeat center / cover;
}
.history-box .date .tit {
	flex: 0 0 100px;
    font-size: var(--font-size-14);
	font-weight: 600;
}
.history-box .date .desc {
    font-size: var(--font-size-14);
	flex-grow: 1;
}
.history-item:last-child .history-box:last-child .date {
	padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
	.history-top {
		height: 200px;
	}
	.history-top .container {
		justify-content: center;
	}
	.history-top img {
		width: 230px;
	}
	.history {
		padding: 60px 0 90px;
	}
	.history .tab-btn {
		height: 60px;
		font-size: var(--font-size-18);
	}
	.history-list {
		margin-top: 50px;
	}
	.history-box .year {
		flex: 0 0 180px;
		transform: translateY(-10px);
		padding-right: 50px;
		font-size: var(--font-size-30);
	}
	.history-box .date>li {
		padding: 0 50px;
		font-size: var(--font-size-16);
	}
	.history-box .date>li:first-child::before {
		width: 22px;
		height: 22px;
	}
}
@media screen and (max-width: 767px) {
	.history-top {
		height: 130px;
	}
	.history-top img {
		width: 180px;
	}
	.history {
		padding: 0 0 80px;
	}
	.history .tab-btn {
		height: 50px;
		font-size: var(--font-size-15);
	}
	.history-box .year {
		flex: 0 0 100px;
		transform: translateY(-6px);
		padding-right: 25px;
		font-size: var(--font-size-22);
	}
	.history-box .date {
		padding-bottom: 50px;
	}
	.history-box .date>li {
		padding: 0 25px;
		font-size: var(--font-size-15);
		gap: 0 5px;
	}
	.history-box .date>li:not(:last-child) {
		margin-bottom: 30px;
	}
	.history-box .date .tit {
		flex: 0 0 70px;
	}
}


/* ## 찾아오시는길 ## */
.map-wrap {
}
.map-wrap .root_daum_roughmap {
	width: 100%;
}
.map-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	padding-right: 40px;
	border-bottom: 1px solid #e4e4e4;
	border-top: 1px solid #e4e4e4;
    background: #fff;
    margin-top: -84px;
    z-index: 99;
    position: relative;
}
.map-info .info-list {
	display: flex;
}
.map-info .info-list>li {
	position: relative;
	padding: 0 40px;
}
.map-info .info-list>li:not(:last-child) {
	border-right: 1px solid #c8c8c8;
	font-weight: 600;
}
.map-info .info-list .info {
	font-size: var(--font-size-20);
}
.map-btn {
	display: flex;
	align-items: center;
	gap: 0 60px;
}
.map-btn a {
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.map-btn a::before {
	content: "";
	display: block;
	width: 72px;
	height: 72px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.map-btn a.kakao::before {
	background-image: url("../img/contents/map-kakao.png");
}
.map-btn a.naver::before {
	background-image: url("../img/contents/map-naver.png");
}
.way {
	padding: 0 0 100px;
}
.way .title-md {
	font-weight: 700;
	color: #919191;
}
.way .way-box {
	padding: 50px 0;
	border-bottom: 1px solid #c8c8c8;
	display: flex;
	align-items: flex-start;
}
.way .way-title {
	flex: 0 0 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 15px;
	padding: 0 20px;
	font-size: var(--font-size-22);
	font-weight: 700;
}
.way .text-list>li {
	position: relative;
	padding-left: 13px;
}
.way .text-list > li:not(:last-child) {
	margin-bottom: 10px;
}
.way .text-list li::before {
	content: "•";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--primary-color);
}
@media screen and (max-width: 1199px) {
	.map-info {
		padding-right: 25px;
	}
	.map-info .info-list>li {
		padding: 0 25px;
	}
	.map-info .info-list .info {
		font-size: var(--font-size-18);
	}
	.map-btn {
		gap: 0 30px;
	}
	.map-btn a::before {
		width: 65px;
		height: 65px;
	}
}
@media screen and (max-width: 1023px) {
	.map-info {
		padding-right: 15px;
	}
	.map-info .info-list {
		flex-direction: column;
		gap: 7px 0;
	}
	.map-info .info-list>li {
		padding: 0 15px;
	}
	.map-info .info-list>li:not(:last-child) {
		border-right: 0;
	}
	.map-btn {
		gap: 0 15px;
	}
	.map-btn a::before {
		width: 60px;
		height: 60px;
	}
	.map-btn .txt {
		display: none;
	}	
	.way .way-title {
		flex: 0 0 150px;
		font-size: var(--font-size-20);
	}
	.way .way-title img {
		width: 30px;
	}
}
@media screen and (max-width: 767px) {
	.map-wrap .root_daum_roughmap {
		height: 280px !important;
	}
	.map-info {
		padding-right: 5px;
		gap: 0 5px;
	}
	.map-info .info-list>li {
		padding: 0 5px;
	}
	.map-info .info-list .info {
		font-size: var(--font-size-15);
		word-break: keep-all;
	}
	.map-btn {
		gap: 0 7px;
	}
	.map-btn a::before {
		width: 42px;
		height: 42px;
	}
	.way .way-box {
		padding: 20px 0;
		flex-direction: column;
	}	
	.way .way-title {
		flex: none;
        padding: 0;
		padding-bottom:20px;
        justify-content: flex-start;
	}
}

/* ## 회원가입 및 후원 안내 ## */
.donation {
	padding-bottom: 100px;
}
.donation .container {
	position: relative;
	display:flex;
	gap: 0 100px;
}
.donation-img {
	flex: 1;
}
.donation-img img {
	width: 100%;
	height: auto;
}
.donation-txt {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.donation-txt .desc {
	font-size: var(--font-size-20);
	line-height: 1.8em;
	font-weight: 600;
	padding-bottom: var(--space-md);
	padding-right: 60px;
	margin-bottom: var(--space-md);
	border-bottom: 1px solid #e4e4e4;
	word-break: keep-all;
}
.donation-txt .desc::before{
	content: "";
	display: block;
	width: 100%;
	max-width: 480px;
	height: 100px;
	background: url(../img/contents/donation-logo.png) no-repeat;
	background-size: contain;
}
.donation-txt .desc strong {
	color: var(--primary-color);
	font-weight: 800;
}
.donation-txt .account {
	margin-bottom: var(--space-md);
	padding-right: 60px;
}
.donation-txt .account strong {
	display: block;
	font-size: var(--font-size-18);
	color: var(--primary-color);
	margin-bottom: var(--space-sm);
}
.donation-txt .account strong span {
	display: inline-block;
}
.btn-box .btn {
	display: inline-block;
	padding: 15px 40px;
	background: var(--secondary-color);
	color: #fff;
	transition: background .3s;
}
.btn-box .btn:hover {
	background: var(--primary-color);
}
.btn-box .btn i {
	margin-left: 10px;
}

@media screen and (max-width: 1200px) {
	.donation .container {
		gap: 0 50px;
	}
	.donation-img {
		flex: 0 0 35%;
	}
	.donation-txt .desc,
	.donation-txt .account {
		padding-right: 0;
	}
}
@media screen and (max-width: 1023px) {
	.donation .container {
		gap: 0 30px;
	}
	.donation-txt .desc::before{
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.donation-img {
		position: absolute;
		top: 0;
		left: 0;
		width:100%;
		z-index: -1;
	}
	.donation-img::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,1));
	}
	.donation-txt {
		padding: 50px 20px;
	}
}


/* ## 사람들 ## */
.peaple {
	padding-bottom: 100px;
}
.peaple dl {
	display: flex;
	padding-bottom: var(--space-md);
	margin-bottom: var(--space-md);
	border-bottom: 1px solid #e4e4e4;
}
.peaple dl:last-of-type {
	border-bottom: none;
}
.peaple dl dt {
	flex: 0 0 300px;
	font-size: var(--font-size-26);
	font-weight: 800;
}
.peaple dl dd {
	width: 100%;
}
.peaple ul {
	display: block;
	border-top: 2px solid var(--primary-color);
	
}
.peaple ul li {
	display: flex;
	border: 1px solid #e4e4e4;
	border-top: none;
}
.peaple ul li .name {
	position: relative;
	flex: 0 0 200px;
	font-size: var(--font-size-18);
	font-weight: 700;
	padding: 20px 20px;
	text-align: center;	
}
.peaple ul li .name::after {
	content: "";
	display: block;
	width: 1px;
	height: 20px;
	background: #e4e4e4;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.peaple ul li .position {	
	padding: 20px 30px;
}
@media screen and (max-width: 1023px) {
	.peaple dl dt {
		flex: 0 0 200px;
	}
	.peaple ul li .name {
		flex: 0 0 150px;
	}
}
@media screen and (max-width: 767px) {
	.peaple dl {
		flex-direction: column;
		margin-bottom: 0;
		border-bottom: none;
	}
    .peaple dl dt {
        flex: none;
		padding-bottom:10px;
		font-size: var(--font-size-22);
    }
	.peaple ul li .name {
		font-size: var(--font-size-16);
		flex: 0 0 100px;
		padding: 10px;
	}
	.peaple ul li .position {	
		padding: 10px 15px;
	}
}
