/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Outfit:wght@100..900&family=Protest+Riot&display=swap');

/* font-family: "Noto Sans KR", sans-serif; */
/* font-family: "Outfit", sans-serif; */

@font-face {
    font-family: 'Ria';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2410-1@1.0/RiaSans-ExtraBold.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SchoolSafetyNotification';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-5@1.0/HakgyoansimAllimjangTTF-R.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
	font-family: "Noto Sans KR", sans-serif; 
	font-weight: 400;
}

ol, ul {
    list-style: none
}

blockquote,
q {
    quotes: '"' '"'
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

address {
    font-style: normal
}

textarea {
    width: 100%;
    resize: none;
}

button, img, input, select {
    vertical-align: middle
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}

.ellipsis {
	display:inline-block;
	max-width:100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: normal;
	vertical-align:middle
}

table td a {
    overflow: hidden;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

body, html {
	overflow-x:hidden;
}

body {
	color:#353535;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	-webkit-user-drag: none;
}

::selection {
   background: #d99b71;
   color: #fff
}

::-moz-selection {
   background: #d99b71;
   color: #fff
}

::-webkit-selection {
    background: #d99b71;
   color: #fff
}

area {
    cursor: pointer;
}

button {
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

.rel {
    position: relative;
}

.font_outfit {
	font-family: "Outfit", sans-serif; 
}

.container {
    max-width: 1920px;
    margin: auto;
}

.section .inner {
    max-width: 750px;
    margin: auto;
    text-align: center;
}


.section dl {
	display: flex;
	justify-content: center;
	margin: auto;
	color: #09003e;
	margin-bottom: 4px;
}

.section dl:last-of-type {
	margin-bottom: 0;
}

.section dt {
	padding-right: 3px;
}

.section.sns {
	padding: 100px 0;
	background-color: #1d170d;
}

.footer {
	background-color: #1d170d;
	padding-bottom: 100px;
}

.footer .info {
	color: #fff;
	margin-top: 30px;
}

.video_wrap {
  position: relative;
  width: 600px;
  margin: auto;
  margin-top: 68px;
  padding-bottom: 58.15%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
  border: 2px solid #000;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

/* 오버레이 (팝업) */
.b_popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  overflow: auto;
  display: none; /* 기본 숨김 */
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

.b_popup.is-open { display: flex; } /* 열릴 때 flex */

.b_popup_inner {
  position: relative;
  width: min(680px, 100%);
  border-radius: 12px;
  max-height: calc(100svh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.b_popup_title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    font-size: 36px;
	
}

.b_popup_title span {
    font-family: 'Ria';
    font-weight: 900;
}

.b_popup_title .btn_close_popup {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    color: #999;
    background: transparent;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.b_popup_content  .form_group {
    display: flex;
    align-items: center;
	overflow: hidden;
	border-bottom: 1px solid #000;
}

.b_popup_content .form_group:first-of-type {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	
}

.b_popup_content .form_group:nth-of-type(3) {
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border: none;
}

.b_popup_content  .form_group label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 166px;
    height: 60px;
    font-size: 24px;
    background-color: #7e4400;
    color: #fff;
	font-family: 'SchoolSafetyNotification';
}

.b_popup_content .form_group input {
    width: 514px;
    height: 60px;
    padding: 0 12px;
    font-size: 24px;
    border-radius: 0px;
    border: none;
    outline: none; 
	font-family: 'SchoolSafetyNotification';
	background-color: #fff;
}

.b_popup_content .form_group input::placeholder {
	font-size: 20px;
}

.b_popup_content .form_group:has(textarea) {
	align-items: stretch;
}

.b_popup_content .form_group textarea {
	flex: 1;
	min-width: 0;
	width: auto;
	height: 120px;
	padding: 14px 12px;
	font-size: 20px;
	border: none;
	outline: none;
	background-color: #fff;
	font-family: 'SchoolSafetyNotification';
	resize: none;
	display: block;
	line-height: 1.4;
}
.b_popup_content .form_group textarea::placeholder {
	font-size: 18px;
	color: #b3b3b3;
}

.b_popup_content .pharases {
    padding: 0 12px 12px;
}

.b_popup_content dl {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.b_popup_content dl dt {
    padding-right: 3px;
}

.b_popup .term_zone .term {
    height: 280px;
    background-color: #fff;
    padding: 24px;
    font-size: 18px;
    margin-bottom: 12px;
	border-radius: 20px;
	margin-top: 40px;
}

.b_popup .term_zone .term .inner {
	height: 100%;
    overflow-y: scroll;
}

.b_popup .term_zone .term .h5 {
	font-weight: 900;
	margin-bottom: 8px;
}

.b_popup .term_zone .term .h6 {
	margin-bottom: 4px;
}

.b_popup .term_zone .agree {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    gap: 8px;
	color: #fff;
}

.b_popup .term_zone .agree input + label {
    cursor: pointer;
}

.b_popup .term_zone .agree input {
    appearance: none;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
}

.b_popup .term_zone .agree input::after {
    content:'';
    display: none;
    width: 12px;
    height: 12px;
    background-color: #d99b71;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.b_popup .term_zone .agree input:checked::after {
    display: inline-block;
}

/* ==============================================
   FILE LABEL - 흰 영역(파일명) + 검정 파일선택 버튼
   ============================================== */
.b_popup_content .form_group label.file_label {
	max-width: none;
	width: auto;
	flex: 1;
	min-width: 0;
	height: 60px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	cursor: pointer;
	background-color: #fff;
	padding: 0;
	font-size: 16px;
	color: #888;
	overflow: hidden;
}
.b_popup_content .form_group label.file_label .file-name {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	padding: 0 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	color: #888;
	background-color: #fff;
}
.b_popup_content .form_group label.file_label.has-file .file-name {
	color: #1f1f1f;
	font-weight: 700;
}
.b_popup_content .form_group label.file_label::after {
	content: '파일선택';
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1f1f1f;
	color: #fff;
	height: 100%;
	padding: 0 22px;
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
	font-family: 'SchoolSafetyNotification';
	flex-shrink: 0;
	cursor: pointer;
}

.b_popup .btn_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.b_popup .btn_box button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 70px;
    background-color: #fff;
    color: #000;
    font-size: 25px;
	cursor: pointer;
	border-radius: 15px;
	font-family: 'Ria';
	font-weight: 900;
}

.b_popup .btn_box button.confirm_btn {
    background-color: #9f010a;
	color: #fff;
}

.quick_bar.pc {
	position: fixed;
	margin-left: 836px;
	z-index: 50;
}

.quick_bar.mo {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 50;
}

.notice_table {
	width: 100%;
	margin-top: 40px;
	font-size: 14px;
}

.notice_table.mo {
	display: none;
}

.notice_table * {
	font-family: 'NanumSquareNeo';
	font-weight: 600;
}

.notice_table th,
.notice_table td {
	padding: 12px;
}

.notice_table th {
	background-color: #002046;
	color: #fff;
}

.notice_table td {
	border-bottom: 1px solid #002046;
	background-color: #fff;
}

.notice_table td span {
	border-radius: 4px;
	background-color: #002046;
	padding: 4px 8px;
	color: #fff;
	font-size: 12px;
}

.notice_table td span.notice_ticket {
	background-color: #FF8A5D !important;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
}

.notice_table td span.complete {
	background-color: #FF6E44;
}

.notice_w_table {
	width: 100%;
	border-top: 2px solid #002046;
}

.notice_w_table th {
	border-bottom: 1px solid #f5f5f5;
	width: 200px;
}

.notice_w_table input,
.notice_w_table textarea {
	width: 100%;
	padding: 12px;
	font-size: 16px;
}

.notice_w_table textarea {
	height: 250px;
	resize: none;
}

.notice_w_table input {
	height: 40px;
	border: 1px solid #002046;
}

.notice_view td {
	text-align: left;
	background-color: #fff;
}

.notice_view td.fl {
	font-weight: 400;
}

.password_wrap {
	position: relative;
}

.password_wrap input {
  width: 100%;
  padding-right: 40px; /* 아이콘 자리 */
  box-sizing: border-box;
}

.pw input {
	height: 40px;
	border: 1px solid #002046;
	font-size: 16px;
	padding: 0 12px;
}

.password_wrap .toggle_pw {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagenation {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.pagenation span,
.pagenation button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid #002046;
	background-color: #002046;
	color: #fff;
	font-family: 'NanumSquareNeo';
	font-weight: 600;
	cursor: pointer;
}

.pagenation span.active {
	background-color: #FF6E44;
	border-color: #FF6E44;
}

@media(max-width: 1600px) {
	.quick_bar.pc {
		margin-left: 0;
		right: 16px;
	}
}

@media(max-width: 991px) {
	.quick_bar.pc {
		display: none;
	}
	
	.quick_bar.mo {
		display: block;
	}
	
	.section.sns {
		padding-bottom: 120px;
	}
	
	.footer {
		padding: 100px 0;
	}
}

@media(max-width: 750px) {

	.video_wrap {
		
	}
	
	.video_wrap iframe {
		
	}
	
	.section_phara {
		padding: 7.89vw 2.8vw;
	}
	
	.section_phara dl {
		font-size: 3.2vw;
		word-break: keep-all;
	}
	
	.section.sns {
		padding: 13.6vw 2.8vw 24vw;
	}
	
	.footer {
		padding: 8vw 0;
	}
	
	.footer .logo img {
		width: 36vw;
	}
	
	.footer .info {
		margin-top: 4vw;
		font-size: 3.2vw;
	}
	
	.b_popup_title {
		font-size: 4.8vw;
		line-height: 1.3;
    }
	
	.b_popup_content {
		padding: 6vw;
	}
    
    .b_popup_content .form_group label {
        width: 32.13vw;
        height: 40px;
        font-size: 3.2vw;
    }
    
    .b_popup_content .form_group input {
        width: 58.53vw;
        padding: 1.6vw;
        height: 40px;
        font-size: 16px;
    }
    
    .b_popup_content .form_group input::placeholder {
        font-size: 2.53vw;
    }
	
	.b_popup_content .form_group textarea {
		width: 58.53vw;
		min-height: 22vw;
		height: 22vw;
		padding: 2.13vw;
		font-size: 16px;
		line-height: 1.4;
	}

	.b_popup_content .form_group textarea::placeholder {
		font-size: 3vw;
	}
	
	.b_popup_content .form_group:first-of-type {
		border-top-left-radius: 3.2vw;
		border-top-right-radius: 3.2vw;
	}

	.b_popup_content .form_group:nth-of-type(3) {
		border-bottom-left-radius: 3.2vw;
		border-bottom-right-radius: 3.2vw;
	}
   
    .b_popup_content .pharases {
        padding: 0 1.6vw 1.6vw;
        font-size: 2.4vw;
    }
    
    .b_popup .term_zone .term {
        height: 24vw;
        padding: 3.2vw;
        margin-bottom: 1.6vw;
        font-size: 2.4vw;
		border-radius: 3.2vw;
    }
	
	.b_popup .term_zone .term .h5 {
		margin-bottom: 8px;
	}

	.b_popup .term_zone .term .h6 {
		margin-bottom: 4px;
	}
    
    .b_popup .term_zone .agree {
        display: block;
        font-size: 3.2vw;
        gap: 1.07vw;
        text-align: center;
    }
    
    .b_popup .term_zone .agree > span:first-child {
        display: block;
        margin-bottom: 2vw;
        text-align: center;
    }
    
    .b_popup .term_zone .agree > span:nth-child(2) {
        margin-right: 1.6vw;
    }
    
    .b_popup .term_zone .agree input {
        width: 3.6vw;
        height: 3.6vw;
    }
    
    .b_popup .term_zone .agree input::after {
        width: 2vw;
        height: 2vw;
    }
    
    .b_popup .btn_box {
        gap: 3.33vw;
		margin-top: 5.22vw;
    }
    
    .b_popup .btn_box button {
        width: 42.67vw;
        height: 12vw;
        margin-top: 1.6vw;
        font-size: 4.33vw;
		border-radius: 3.2vw;
    }
	
	.notice_table.pc {
		display: none;
	}

	.notice_table.mo {
		display: block;
	}

	.pagenation {
		margin-top: 8vw;
		gap: 2vw;
	}

	.pagenation span,
	.pagenation button {
		font-size: 2.87vw;
		width: 6.27vw;
		height: 6.27vw;
	}

	.notice_table.mo {
		width: 100%;
		border-top: 2px solid #0d3462;
	}

	.notice_table.mo li {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 2vw;
		gap: 2vw;
		border-bottom: 1px solid #0d3462;
		font-size: 3.2vw;
	}

	.notice_table.mo li .no {
		width: 8vw;
	}

	.notice_table.mo li .title {
		font-size: 4vw;
		margin-bottom: 1.2vw;
		font-weight: 900;
		color: #000;
	}

	.notice_table.mo li .con {
		width: 76vw;
		text-align: left;
	}

	.notice_table.mo li .con .flex {
		display: flex;
		align-items: center;
		gap: 2vw;
	}

	.notice_table.mo li .con .flex .date {
		border-left: 1px solid #999;
		padding-left: 2vw;
	}

	.notice_table.mo li .answer {
		width: 20vw;
	}

	.notice_table.mo li .answer span {
		border-radius: 0.8vw;
		background-color: #002046;
		padding: 1.2vw 1.6vw;
		color: #fff;
		font-size: 3.2vw;
	}

	.notice_table.mo li .answer span.complete {
		background-color: #FF6E44;
	}

	.notice_w_table {
		font-size: 3.2vw;
	}

	.notice_w_table th {
		width: 24vw;
	}

	.section.notice .btn_box {
		margin-top: 15px;
	}

	.section.notice .btn_box .btn {
		font-size: 14px;
	}
	
	.b_popup#popup03 .btn_box .btn,
	.section.notice .btn_box .btn.big {
		width: 200px;
		height: 50px;
		font-size: 16px;
	}
}

/* =========================================================
   BUSAN EDU KAKAO EVENT - PSD 1920 x 4890
   기존 공통 스타일은 유지하고 이벤트 전용 스타일만 추가합니다.
   ========================================================= */

:root {
	--event-coral: #ff8564;
	--event-cream: #feede5;
	--event-brown: #412718;
	--event-notice: #65574c;
	--event-ink: #36261f;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--event-cream);
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1920px;
}

.section.main {
	position: relative;
	height: calc(min(1192px, 158.933vw));
	min-height: 0;
	padding: 0;
	background: var(--event-cream);
	overflow: hidden;
}

.main_scene {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	height: min(1192px, 158.933vw);
	aspect-ratio: 1920 / 1192;
	transform: translateX(-50%);
	pointer-events: none;
}

.main_scene > img {
	position: absolute;
	display: block;
	max-width: none;
}

.main_scene .main_bg {
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.main_scene .leaf,
.main_scene .small_cha {
	z-index: 2;
	will-change: transform;
}

.main_scene .leaf_mask {
	position: absolute;
	z-index: 1;
	display: block;
	background: var(--event-cream);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 100% 100%;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 100% 100%;
}

.leaf_mask_01 {
	left: 57.9167%;
	top: -1.1745%;
	width: 8.75%;
	aspect-ratio: 168 / 108;
	-webkit-mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_01.png');
	mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_01.png');
}

.leaf_mask_03 {
	left: 10.7292%;
	top: 35.9060%;
	width: 5.2083%;
	aspect-ratio: 100 / 106;
	-webkit-mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_03.png');
	mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_03.png');
}

.leaf_mask_05 {
	left: 34.0104%;
	top: 29.6141%;
	width: 3.9583%;
	aspect-ratio: 76 / 44;
	-webkit-mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_5.png');
	mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_5.png');
}

.leaf_mask_07 {
	left: 71.0417%;
	top: 39.5973%;
	width: 5.7292%;
	aspect-ratio: 110 / 80;
	-webkit-mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_7.png');
	mask-image: url('/PROJECT_HTML/busan_edu_kakao/img/leaf_7.png');
}

.leaf_01 { left: 57.9167%; top: -1.1745%; width: 8.75%; animation: leaf-flight-a 7.4s ease-in-out infinite alternate; }
.leaf_02 { left: 10.8854%; top: -0.5034%; width: 10.4167%; animation: leaf-flight-b 8.8s ease-in-out -2.1s infinite alternate; transform-origin: 50% 38%; }
.leaf_03 { left: 10.7292%; top: 35.9060%; width: 5.2083%; animation: leaf-flight-c 6.8s ease-in-out -1.4s infinite alternate; }
.leaf_04 { left: 21.3021%; top: 13.7584%; width: 3.3333%; animation: leaf-flight-d 5.9s ease-in-out -3.2s infinite alternate; }
.leaf_05 { left: 34.0104%; top: 29.6141%; width: 3.9583%; animation: leaf-flight-e 7.9s ease-in-out -0.8s infinite alternate; }
.leaf_06 { left: 60.8854%; top: 35.9060%; width: 3.3333%; animation: leaf-flight-f 6.4s ease-in-out -2.7s infinite alternate; }
.leaf_07 { left: 71.0417%; top: 39.5973%; width: 5.7292%; animation: leaf-flight-g 9.2s ease-in-out -4.3s infinite alternate; }

.small_cha_01 { left: 39.3750%; top: 38.0034%; width: 2.2917%; animation: cha-roam-a 5.6s ease-in-out -1.1s infinite alternate; }
.small_cha_02 { left: 42.3438%; top: 42.1141%; width: 1.7708%; animation: cha-roam-b 6.3s ease-in-out -3.5s infinite alternate; }
.small_cha_03 { left: 34.9479%; top: 69.2114%; width: 1.8750%; animation: cha-roam-c 5.1s ease-in-out -2.3s infinite alternate; }

@keyframes leaf-flight-a {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	45% { transform: translate3d(18px, 15px, 0) rotate(8deg); }
	100% { transform: translate3d(-14px, 28px, 0) rotate(-7deg); }
}

@keyframes leaf-flight-b {
	0% { transform: translate3d(0, 0, 0) rotate(-1deg); }
	50% { transform: translate3d(-2px, 2px, 0) rotate(1.5deg); }
	100% { transform: translate3d(2px, 3px, 0) rotate(-1.5deg); }
}

@keyframes leaf-flight-c {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	55% { transform: translate3d(26px, -10px, 0) rotate(13deg); }
	100% { transform: translate3d(8px, 24px, 0) rotate(-10deg); }
}

@keyframes leaf-flight-d {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	100% { transform: translate3d(-25px, 20px, 0) rotate(-18deg); }
}

@keyframes leaf-flight-e {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	45% { transform: translate3d(13px, -18px, 0) rotate(11deg); }
	100% { transform: translate3d(32px, 11px, 0) rotate(-8deg); }
}

@keyframes leaf-flight-f {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	100% { transform: translate3d(21px, 27px, 0) rotate(17deg); }
}

@keyframes leaf-flight-g {
	0% { transform: translate3d(0, 0, 0) rotate(0); }
	50% { transform: translate3d(-31px, 10px, 0) rotate(-9deg); }
	100% { transform: translate3d(-8px, 36px, 0) rotate(13deg); }
}

@keyframes cha-roam-a {
	0% { transform: translate3d(0, 0, 0) rotate(-2deg); }
	50% { transform: translate3d(9px, -13px, 0) rotate(5deg); }
	100% { transform: translate3d(-8px, 8px, 0) rotate(-4deg); }
}

@keyframes cha-roam-b {
	0% { transform: translate3d(0, 0, 0) rotate(2deg); }
	50% { transform: translate3d(-11px, 9px, 0) rotate(-6deg); }
	100% { transform: translate3d(7px, -10px, 0) rotate(5deg); }
}

@keyframes cha-roam-c {
	0% { transform: translate3d(0, 0, 0) rotate(-3deg); }
	50% { transform: translate3d(12px, -12px, 0) rotate(7deg); }
	100% { transform: translate3d(-10px, 6px, 0) rotate(-5deg); }
}

.main_copy {
	position: relative;
	z-index: 5;
	width: min(750px, 100%);
	height: min(1192px, 158.933vw);
	margin: 0 auto;
	pointer-events: none;
}

.main_copy > img,
.main_copy h1 {
	position: absolute;
	display: block;
	margin: 0;
}

.main_copy h1 img {
	display: block;
	width: 100%;
}

.top_logo { left: 36%; top: 3.8591%; width: 28.2667%; }
.title_top_left { left: 22.6667%; top: 12.662%; width: 32.2667%;}
.title_top_right { left:52.8%; top: 14.6678%; width: 22.93%;  z-index: 2;}
.main_title { left: 17.0667%; top: 19.1275%; width: 65.8667%; }
.main_subtitle { left: 31.0667%; top: 33.5570%; width: 37.8667%; }
.main_people { left: 3.6%; top: 39.8490%; width: 94.6667%; }
.main_channel_badge {
	position: absolute;
	left: 56.6667%;
	top: 39.8490%;
	z-index: 10;
	display: block;
	width: 18.9333%;
	height: 4.1946%;
	pointer-events: auto;
}
.main_bottom_text { left: 18.2667%; top: 77.0973%; width: 63.4667%; }

.load_motion {
	opacity: 0;
	transform: translateY(25px) scale(.96);
	transition: opacity .72s ease, transform .82s cubic-bezier(.2,.76,.24,1);
}

.load_motion_02 { transform: translate(-28px, 8px) rotate(-5deg);}
.load_motion_03 { transform: translate(28px, 8px) rotate(5deg); }
.load_motion_04 { transform: translateY(28px) scale(.88); }
.load_motion_06 { transform: translateY(45px) scale(.94); }

body.page_loaded .load_motion {
	opacity: 1;
	transform: translate(0, 0) scale(1) rotate(0);
}

.load_motion_01 { transition-delay: .08s; }
.load_motion_02 { transition-delay: .22s; }
.load_motion_03 { transition-delay: .32s; }
.load_motion_04 { transition-delay: .42s; }
.load_motion_05 { transition-delay: .58s; }
.load_motion_06 { transition-delay: .72s; }
.load_motion_07 { transition-delay: .9s; }

.quick_bar.pc {
	position: fixed;
	top: 181px;
	right: max(24px, calc((100vw - 1920px) / 2 + 224px));
	z-index: 50;
	width: 188px;
	margin: 0;
}

.quick_bar img {
	display: block;
	width: 100%;
}

.quick_link,
.sns_link {
	position: absolute;
	z-index: 2;
	display: block;
	width: 100%;
}

.quick_bar.pc .quick_channel { top: 0; height: 27.35%;  }
.quick_bar.pc .quick_comment { top: 29.05%; height: 27.35%;  }
.quick_bar.pc .quick_apply { bottom: 0;  height: 42.35%; }

.quick_link:focus-visible,
.sns_link:focus-visible,
.main_channel_badge:focus-visible,
.guide_actions a:focus-visible {
	outline: 4px solid #ffe500;
	outline-offset: 4px;
}

.section_02 {
	position: relative;
	z-index: 3;
	padding: 0 20px 80px;
	background: var(--event-coral);
	margin-top: 1px;
	border-top: 2px solid var(--event-notice);
}

.section_02 .inner {
	width: 100%;
	max-width: 750px;
}

.guide_art {
	position: relative;
	z-index: 2;
	display: block;
	width: 744px;
	max-width: 100%;
	margin: -42px auto 0;
}

.guide_actions {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 77px;
}

.guide_actions a {
	display: block;
	width: 240px;
	max-width: calc(50% - 18.5px);
	border-radius: 16px;
}

.guide_actions a:nth-child(2) {
	width: 242px;
}

.guide_actions a:last-child {
	width: 212px;
}

.guide_actions img {
	display: block;
	width: 100%;
}

.apply_section {
	display: block;
	position: relative;
	z-index: 2;
	padding: 112px 20px 91px;
	background: var(--event-cream);
	overflow: hidden;
}

.apply_section .b_popup_inner {
	position: relative;
	width: min(653px, 100%);
	max-height: none;
	margin: 0 auto;
	border-radius: 0;
	overflow: visible;
}

.apply_section .b_popup_title {
	position: relative;
	width: 280px;
	margin: 0 auto 38px;
	font-size: 0;
}

.apply_section .b_popup_title h2,
.apply_section .b_popup_title img {
	display: block;
	width: 100%;
}

.apply_section .b_popup_content {
	padding: 0;
}

.apply_section form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.apply_section .form_group {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 59px;
	margin: 0 0 11px;
	border: 1px solid #7a7775;
	border-radius: 0;
	background: #fff;
	overflow: visible;
}

.apply_section .form_group:has(input[type='file']) { order: 1; }
.apply_section .apply_capture { order: 2; }
.apply_section .form_group:not(:has(input[type='file'])) { order: 3; }
.apply_section .term_zone { order: 4; }
.apply_section .btn_box { order: 5; }

.apply_section .form_group:first-of-type,
.apply_section .form_group:nth-of-type(3) {
	border: 1px solid #7a7775;
	border-radius: 0;
}

.apply_section .form_group > .label {
	display: flex;
	flex: 0 0 184px;
	justify-content: center;
	align-items: center;
	width: 184px;
	height: auto;
	min-height: 57px;
	padding: 8px 12px;
	background: #2e2d30;
	color: #fff;
	font-family: 'SchoolSafetyNotification', 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.apply_section .form_group:has(input[type='file']) > .label {
	background: #ff6548;
}

.apply_section .form_group input:not([type='hidden']):not([type='file']):not([type='checkbox']):not([type='radio']),
.apply_section .form_group select,
.apply_section .form_group textarea {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	min-height: 57px;
	padding: 10px 16px;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: #fff;
	color: #2b2928;
	font-family: 'SchoolSafetyNotification', 'Noto Sans KR', sans-serif;
	font-size: 18px;
	line-height: 1.35;
}

.apply_section .form_group textarea {
	min-height: 118px;
}

.apply_section .form_group input::placeholder,
.apply_section .form_group textarea::placeholder {
	color: #aaa6a3;
	font-size: 16px;
}

.apply_section .form_group input:focus,
.apply_section .form_group select:focus,
.apply_section .form_group textarea:focus {
	box-shadow: inset 0 0 0 3px #ff8564;
}

.apply_section .form_group > label:not(.label):not(.file_label) {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	height: auto;
	min-height: 57px;
	padding: 8px 14px;
	background: #fff;
	color: #2b2928;
	font-family: 'SchoolSafetyNotification', 'Noto Sans KR', sans-serif;
	font-size: 16px;
}

.apply_section .form_group input[type='checkbox'],
.apply_section .form_group input[type='radio'] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	min-height: 0;
	margin-right: 6px;
}

.apply_section .form_group input[type='file'] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.apply_section .form_group label.file_label {
	display: flex;
	flex: 1 1 auto;
	align-items: stretch;
	justify-content: space-between;
	width: auto;
	max-width: none;
	height: auto;
	min-height: 57px;
	padding: 0;
	background: #fff;
	color: #8c8987;
	font-size: 16px;
	overflow: hidden;
}

.apply_section .form_group label.file_label::after {
	content: '추가';
	display: flex;
	flex: 0 0 88px;
	align-items: center;
	justify-content: center;
	height: 38px;
	margin: 9px 10px;
	padding: 0;
	background: #3b3b3b;
	color: #fff;
	font-family: 'SchoolSafetyNotification', 'Noto Sans KR', sans-serif;
	font-size: 17px;
	font-weight: 700;
}

.apply_section .form_group label.file_label .file-name {
	min-width: 0;
	padding: 0 14px;
	font-size: 16px;
}

.apply_capture {
	width: 570px;
	max-width: 100%;
	margin: 14px auto 71px;
}

.apply_capture img {
	display: block;
	width: 100%;
}

.apply_section .term_zone {
	margin-top: 10px;
}

.apply_section .term_zone .term {
	height: 195px;
	margin: 0 0 18px;
	padding: 22px 25px;
	border: 1px solid #77716e;
	border-radius: 0;
	background: #fff;
	color: #4b4745;
	font-size: 13px;
	line-height: 1.48;
	text-align: left;
}

.apply_section .term_zone .term .inner {
	width: 100%;
	max-width: none;
	height: 100%;
	padding-right: 8px;
	overflow-y: auto;
	text-align: left;
}

.apply_section .term_zone .term .h5,
.apply_section .term_zone .term .h6 {
	font-weight: 700;
}

.apply_section .term_zone .agree {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	color: #484442;
	font-size: 13px;
	line-height: 1.35;
}

.apply_section .term_zone .agree > span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.apply_section .term_zone .agree input {
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1px solid #5d5855;
	background: #fff;
}

.apply_section .term_zone .agree input::after {
	width: 10px;
	height: 10px;
	background: #ff6548;
}

.apply_section .btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 56px;
}

.apply_section .btn_box button,
.apply_section .btn_box button.confirm_btn {
	display: block;
	width: 240px;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.apply_section .btn_box img {
	display: block;
	width: 100%;
}

/* 이벤트 참여 입력폼 모달 */
.b_popup.apply_section {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	align-items: flex-start;
	justify-content: center;
	padding: 32px 20px;
	background: rgba(34, 25, 20, .78);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.b_popup.apply_section.is-open {
	display: flex;
}

.b_popup.apply_section .b_popup_inner {
	position: relative;
	width: min(733px, 100%);
	max-height: calc(100svh - 64px);
	margin: auto;
	padding: 58px 40px 48px;
	border-radius: 24px;
	background: var(--event-cream);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.b_popup.apply_section .apply_modal_close {
	position: absolute;
	top: 18px;
	right: 20px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0 0 4px;
	border: 0;
	border-radius: 50%;
	background: #2e2d30;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.b_popup.apply_section .apply_modal_close:focus-visible {
	outline: 4px solid #ff6548;
	outline-offset: 3px;
}

.section_phara {
	padding: 43px 20px 42px;
	background: var(--event-notice);
}

.section_phara .inner {
	max-width: 643px;
	text-align: left;
}

.section_phara ul,
.section_phara li {
	margin: 0;
	padding: 0;
}

.section_phara li {
	color: #fff;
	font-size: 14px;
	line-height: 1.68;
	word-break: keep-all;
}

.section.sns {
	padding: 55px 20px;
	background: var(--event-brown);
}

.sns_links {
	position: relative;
	width: 514px;
	max-width: 100%;
	margin: 0 auto;
}

.sns_links > img {
	display: block;
	width: 100%;
}

.sns_link { top: 0; bottom: 0; width: 15.9533%; border-radius: 50%; }
.sns_youtube { left: 0; border-radius: 0; }
.sns_instagram { left: 21.0117%; }
.sns_blog { left: 42.0233%; }
.sns_facebook { left: 62.8405%; }
.sns_daangn { left: 83.8521%; }

.mobile_quick_anchor {
	height: 0;
}

.quick_bar.mo {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 80;
	width: min(750px, 100%);
	transform: translateX(-50%);
}

.quick_bar.mo a {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	height: 108px;
}

.quick_bar.mo .quick_channel { width: 45%; }
.quick_bar.mo .quick_comment { width: 27.5%; left: 45%; }
.quick_bar.mo .quick_apply { width: 27.5%; left: 72.5%; }

.footer {
	padding: 30px 20px;
	background: #fff;
}

.footer .logo img {
	display: block;
	width: 308px;
	max-width: 52vw;
	margin: 0 auto;
}

.footer .info {
	margin-top: 25px;
	color: #332d29;
	font-size: 14px;
	line-height: 1.55;
}

.footer .info address {
	font-style: normal;
}

.scroll_reveal > .inner,
.scroll_reveal > .b_popup_inner {
	opacity: 0;
	transform: translateY(56px) scale(.975);
	transition: opacity .9s ease, transform 1s cubic-bezier(.2,.72,.25,1);
}

.section_02.scroll_reveal > .inner {
	transform: translateY(62px) rotate(.7deg) scale(.96);
}

.apply_section.scroll_reveal > .b_popup_inner {
	clip-path: inset(0 0 12% 0 round 20px);
	transform: translateY(74px) scale(.965);
	transition: opacity .95s ease, transform 1.05s cubic-bezier(.2,.72,.25,1), clip-path 1.1s ease;
}

.section_phara.scroll_reveal > .inner {
	transform: translateX(-64px);
}

.section.sns.scroll_reveal > .inner {
	transform: translateY(32px) scale(.84) rotate(-2deg);
}

.scroll_reveal.reveal_in > .inner,
.scroll_reveal.reveal_in > .b_popup_inner {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.apply_section.scroll_reveal.reveal_in > .b_popup_inner {
	clip-path: inset(0 0 0 0 round 0);
}

.scroll_reveal_child {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .75s ease .22s, transform .8s ease .22s;
}

.reveal_in .scroll_reveal_child {
	opacity: 1;
	transform: translateY(0);
}

.password_wrap .toggle_pw {
	width: 40px;
	height: 40px;
	color: #3a3532;
	font-size: 12px;
	font-weight: 700;
}

.apply_section .password_wrap {
	display: block;
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.apply_section .password_wrap input {
	padding-right: 52px !important;
}

@media(max-width: 1600px) {
	.quick_bar.pc {
		right: 16px;
		margin: 0;
	}
}

@media(max-width: 991px) {
	.quick_bar.pc { display: none; }
	.quick_bar.mo { display: block; }
	.section.sns { padding-bottom: 148px; }
	.footer { padding: 30px 20px; }
}

@media(max-width: 750px) {
	.b_popup.apply_section {
		padding: 20px 12px;
	}

	.b_popup.apply_section .b_popup_inner {
		max-height: calc(100svh - 40px);
		padding: 58px 4vw 10vw;
		border-radius: 18px;
	}

	.quick_bar.mo a {
		height: 13.6vw;
	}

	.section.main {
		height: calc(158.933vw);
	}

	.main_people,
	.main_channel_badge { top: 40.6%; }
	.main_bottom_text { top: 77.4%; width: 68%; left: 16%; }

	.leaf_04,
	.leaf_06 {
		width: 4.2%;
	}

	.section_02 {
		padding: 0 3.2vw 10.6667vw;
	}

	.guide_art {
		margin-top: -4.9333vw;
	}

	.guide_actions {
		gap: 1.2vw;
		margin-top: 10.2667vw;
	}

	.guide_actions a {
		max-width: calc(50% - 1.6vw);
		border-radius: 2.1333vw;
	}
	
	.guide_actions a:last-child {
		max-width: calc(50% - 2vw);
	}

	.apply_section {
		padding: 14.9333vw 4vw 12.1333vw;
	}

	.apply_section .b_popup_title {
		width: 56vw;
		margin-bottom: 5.0667vw;
	}

	.apply_section .b_popup_content {
		padding: 0;
	}

	.apply_capture {
		margin-top: 1.8667vw;
		margin-bottom: 9.4667vw;
	}

	.apply_section .term_zone .term {
		height: 32vw;
		min-height: 220px;
		padding: 20px;
		font-size: 16px;
		line-height: 1.55;
	}

	.apply_section .term_zone .agree {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 16px;
		font-size: 16px;
	}

	.apply_section .term_zone .agree > span:first-child {
		flex-basis: 100%;
		margin: 0;
	}

	.apply_section .term_zone .agree input {
		width: 24px;
		height: 24px;
	}

	.apply_section .term_zone .agree input::after {
		width: 14px;
		height: 14px;
	}

	.apply_section .btn_box {
		gap: 2.4vw;
		margin-top: 7.4667vw;
	}

	.apply_section .btn_box button,
	.apply_section .btn_box button.confirm_btn {
		width: min(240px, calc(50% - 1.2vw));
	}

	.section_phara {
		padding: 5.7333vw 5.3333vw 5.6vw;
	}

	.section_phara li {
		font-size: max(12px, 2.8vw);
		line-height: 1.62;
	}

	.section.sns {
		padding: 7.3333vw 8vw 20vw;
	}

	.footer {
		padding: 5.3333vw;
	}

	.footer .logo img {
		width: min(308px, 58vw);
	}

	.footer .info {
		margin-top: 3.3333vw;
		font-size: max(12px, 2.8vw);
	}
}

@media(max-width: 600px) {
	.apply_section .form_group {
		flex-direction: column;
		margin-bottom: 14px;
		border-color: #6e6966;
	}

	.apply_section .form_group > .label {
		flex: none;
		width: 100%;
		min-height: 44px;
		padding: 9px 12px;
		font-size: 16px;
	}

	.apply_section .form_group input:not([type='hidden']):not([type='file']):not([type='checkbox']):not([type='radio']),
	.apply_section .form_group select,
	.apply_section .form_group textarea {
		width: 100%;
		min-height: 52px;
		padding: 12px 14px;
		font-size: 16px;
	}

	.apply_section .form_group input::placeholder,
	.apply_section .form_group textarea::placeholder {
		font-size: 16px;
	}

	.apply_section .form_group label.file_label {
		width: 100%;
		min-height: 54px;
	}

	.apply_section .form_group label.file_label::after {
		flex-basis: 76px;
		height: 40px;
		margin: 7px;
		font-size: 16px;
	}

	.apply_section .form_group label.file_label .file-name {
		font-size: 16px;
	}

	.apply_capture {
		margin-top: 10px;
		margin-bottom: 44px;
	}

	.apply_section .term_zone {
		margin-top: 6px;
	}
}

@media(prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.load_motion,
	.scroll_reveal > .inner,
	.scroll_reveal > .b_popup_inner,
	.scroll_reveal_child {
		opacity: 1;
		transform: none;
	}

	.apply_section.scroll_reveal > .b_popup_inner {
		clip-path: none;
	}
}
