/* ------------------------------ 메인 타이틀 시작 ------------------------------ */
#main_title_box {
	max-width: 1400px;
	padding-top: 60px;
}

#main_title_btn_box {
	width: 100%;
}

.title_btn {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}

.title_home_btn, .title_arrow_box, .title_text_btn {
	margin: 0;
}

.title_arrow_box {
	width: 24px;
	height: 24px;
}

.title_arrow_box {
	display: flex;
	align-items: center;
}

.title_home_btn {
	position: relative;
  	width: 24px;
  	height: 24px;
	margin-left: 7px;
}

.title_home_btn img {
	position: absolute;
	inset: 0;
	display: block;
}

.title_home_btn a {
	display: block;
	width: 100%;
	height: 100%;
}

.home_btn_mouse_leave {
	opacity: 1;
	transition: opacity .25s ease;
}

.home_btn_mouse_over {
	opacity: 0;
	transition: opacity .25s ease;
}

.title_home_btn:hover .home_btn_mouse_leave  {
  	opacity: 0;
}

.title_home_btn:hover .home_btn_mouse_over {
  	opacity: 1;
}

.title_arrow_btn {
	width: 5px;
    height: 5px;
    border-top: 1px solid #767676;
    border-right: 1px solid #767676;
    transform: rotate(45deg);
}

.title_text_btn p {
	color: #767676;
	transition: color .15s ease-out;
}

.title_btn > .title_text_btn:nth-of-type(3) {
	margin-right: 20px;
}

.title_text_btn p:hover {
	color: #f79a49;
}

#title_BG_box {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title_BG_mask {
	width: 800px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: titleBGExpand 1.8s ease-out forwards;
}

.title_BG_mask img {
	width: 1400px;
    max-width: none;
    flex-shrink: 0;
}

@keyframes titleBGExpand {
    0% {
        width: 800px;
    }
    100% {
        width: 1400px;
    }
}

#title_BG_box > p {
    font-size: 48px;
    font-weight: 700;
    color: #f3f3f3;
    padding-bottom: 10px;
    position: absolute;
}

#title_BG_box > p::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 50%;
    height: 3px;
    background: #f3f3f3;
}

#mobile_title_box {
	display: none;
}
/* ------------------------------ 메인 타이틀 끝 ------------------------------ */


/* --------------- 섹션01 시작 --------------- */
#section01 {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 200px;
}

#section01_contents {
	max-width: 1400px;
	display: flex;
	flex-direction: column;
}

.notice_list_head {
	width: 100%;
	display: flex;
	align-items: center;
}

.notice_list_item {
	width: 100%;
}

.notice_list_item a  {
	width: 100%;
	display: flex;
	align-items: center;
}

.notice_list_item_box  {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.notice_list_head p {
	font-size: 18px;
	font-weight: 500;
	padding: 20px 0;
	text-align: center;
}

.notice_list_item p {
	font-size: 18px;
	padding: 45px 0;
	text-align: center;
}

.notice_list_head {
	box-shadow: 0 -1px 0 #333 inset;
}

.notice_list_item {
	box-shadow: 0 -1px 0 #dbdbdb inset;
}

.notice_head_type, .notice_item_type {
	width: 160px;
	margin: 0;
}

.notice_head_title, .notice_item_title {
	width: auto;
}

.notice_item_title {
	margin-left: 40px;
}

.notice_head_date, .notice_item_date {
	width: 160px;
	margin: 0;
}

.notice_item_type p, .notice_item_date p {
	color: #767676;
}

.notice_item_title p {
	font-weight: 500;
}

.notice_title_arrow {
	display: none;
}

.notice_list_item_none {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 260px 0;
	box-shadow: 0 -1px 0 #dbdbdb inset;
}

.notice_list_item_none > p:nth-of-type(1) {
	font-size: 32px;
	font-family: 'Paperozi';
	font-weight: 800;
	letter-spacing: 0.05em;
}

.notice_list_item_none > p:nth-of-type(2) {
	font-size: 18px;
	color: #505050;
}
/* --------------- 섹션01 끝 --------------- */


/* -------------------------------- 모바일 -------------------------------- */
@media (max-width: 480px){
/*---------- 메인타이틀 ----------*/
	#main_title_box {
		width: 100%;
		padding-top: 40px;
		padding-bottom: 10px;
	}

	#main_title_btn_box {
		display: none;
	}

	#title_BG_box {
		display: none;
	}

	#mobile_title_box {
		width: calc(100% - 40px);
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	#mobile_title_box p {
		font-size: 32px;
		font-weight: 500;
	}

	.mobile_title_line {
		width: 60px;
		height: 3px;
		background-color: #f79a49;
	}
/*---------- 메인타이틀 ----------*/


/*-------------------- 섹션01 --------------------*/
	#section01 {
		width: 100%;
		padding-top: 30px;
		padding-bottom: 140px;
	}

	#section01_contents {
		width: calc(100% - 40px);
	}
	
	.notice_list_head {
		display: none;
	}

	.notice_list_item_box {
		gap: 20px;
	}

	.notice_list_item {
		width: 100%;
		border-radius: 20px;
		background-color: #FFF9F4;
		box-shadow: 0 2px 4px rgba(25, 25, 25, 5%);
	}

	.notice_list_item a {
		width: auto;
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		padding: 20px;
		margin: 0;
	}

	.notice_item_type {
		width: auto;
		background-color: #F79A49;
		border-radius: 8px;
	}

	.notice_item_type > p {
		font-size: 16px;
		color: #f3f3f3;
		padding: 4px 12px;
	}

	.notice_item_title {
		width: 100%;
		margin: 0;
		margin-top: 4px;
		display: flex;
		align-items: center;
		justify-content: space-evenly;
	}

	.notice_item_title p {
		padding: 0;
		margin-left: 0;
	}

	.notice_title_arrow {
		width: 18px;
		height: 18px;
		display: flex;
		align-items: center;
		margin-right: 0;
	}

	.notice_arrow {
		width: 5px;
		height: 5px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg);
		margin-left: 5px;
	}

	.notice_item_date {
		width: auto;
	}

	.notice_item_date p {
		padding: 0;
		margin: 0;
		font-size: 14px;
	}

	.notice_list_item_none {
		padding: 100px 0;
		box-shadow: none;
		gap: 12px;
	}

	.notice_list_item_none > p:nth-of-type(1) {
		font-size: 28px;
	}

	.notice_list_item_none > p:nth-of-type(2) {
		font-size: 16px;
	}
/*-------------------- 섹션01 --------------------*/

}