/* 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;
}

@font-face {
	font-family: 'OneStoreMobileGothic';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Regular.woff') format('woff');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'OneStoreMobilePop';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-POP.woff') format('woff');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroL.woff') format('woff');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroM.woff') format('woff');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Aggravo';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
	font-weight: 700;
	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.main {
	background-image: url('/PROJECT_HTML/busan_edu_shorts/img/main_bg.jpg');
	background-size: cover;
	background-position: center;
	height: 1088px;
	padding-top: 72px;
	overflow: hidden;
}


.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 75px;
	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;
	}
}

/* =========================================================
   2026 부산학생 쇼츠 영상 공모전
   PSD artboard: 1920 x 6000
   ========================================================= */
:root {
	--busan-blue: #0b4786;
	--busan-light-blue: #eef4ff;
	--busan-black: #212121;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}

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

.blind {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip_link {
	position: fixed;
	top: -60px;
	left: 16px;
	z-index: 10000;
	padding: 12px 20px;
	border-radius: 0 0 8px 8px;
	background: #fff;
	color: var(--busan-blue);
	font-weight: 800;
	transition: top .2s ease;
}

.skip_link:focus {
	top: 0;
}

.container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
}

.section {
	position: relative;
	width: 100%;
}

.section .inner {
	max-width: none;
}

.section.main {
	height: min(59.896vw, 1150px);
	padding: 0;
	background: #ffdc62 url('/PROJECT_HTML/busan_edu_shorts/img/main_bg.jpg') center / cover no-repeat;
	overflow: hidden;
}

.main_artboard {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(100vw, 1920px);
	height: min(62.5vw, 1200px);
	transform: translateX(-50%);
}

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

.main_logo {
	left: 44.323%;
	top: 4.667%;
	width: 11.354%;
	z-index: 9;
}

.main_title {
	position: absolute;
	left: 37.24%;
	top: 12.5%;
	width: 25.73%;
	z-index: 9;
}

.main_title img {
	position: static;
	width: 100%;
}

.main_music {
	left: 31.25%;
	top: 3.667%;
	width: 34.896%;
	z-index: 2;
	transform-origin: 50% 45%;
	animation: music-sway 2.8s ease-in-out infinite;
}

.main_people {
	left: 0;
	top: 38.833%;
	width: 100%;
	z-index: 3;
}

.phone_stage {
	position: absolute;
	inset: 0;
	z-index: 5;
}

.phone_frame {
	left: 33.385%;
	top: 30.333%;
	width: 33.958%;
	z-index: 6;
}

.phone_title {
	left: 40.938%;
	top: 37.333%;
	width: 18.125%;
	z-index: 8;
}

.rolling_item {
	z-index: 4;
	opacity: 0;
	will-change: opacity, transform;
}

.rolling_01 {
	left: 32.552%;
	top: 43.917%;
	width: 29.375%;
	animation: rolling-one 12s ease-in-out infinite;
}

.rolling_02 {
	left: 38.021%;
	top: 54.583%;
	width: 31.458%;
	animation: rolling-two 12s ease-in-out infinite;
}

.rolling_03 {
	left: 41.094%;
	top: 52.083%;
	width: 18.438%;
	animation: rolling-three 12s ease-in-out infinite;
}

.heart_group {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}

.heart {
	transform-origin: 50% 100%;
	animation: heart-pop 2.4s cubic-bezier(.2, .75, .35, 1) infinite;
}

.heart_01 {
	left: 19.063%;
	top: 26.583%;
	width: .833%;
	animation-delay: 0s;
}

.heart_02 {
	left: 20.781%;
	top: 29.083%;
	width: 1.25%;
	animation-delay: .25s;
}

.heart_03 {
	left: 17.865%;
	top: 31.917%;
	width: 1.667%;
	animation-delay: .5s;
}

.heart_04 {
	left: 18.698%;
	top: 36.417%;
	width: 2.708%;
	animation-delay: .75s;
}

.load_motion {
	opacity: 0;
	animation: load-rise .9s cubic-bezier(.18, .75, .3, 1) forwards;
}

.load_motion_01 { animation-delay: .08s; }
.load_motion_02 { animation-delay: .22s; }
.load_motion_03 { animation-delay: .38s; }
.load_motion_04 { animation-delay: .55s; }

@keyframes load-rise {
	from { opacity: 0; transform: translateY(34px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes music-sway {
	0%, 100% { transform: translateX(-5px) rotate(-2deg); }
	50% { transform: translateX(5px) rotate(2deg); }
}

@keyframes heart-pop {
	0%, 18% { opacity: 0; transform: translateY(12px) scale(.15); }
	38% { opacity: 1; transform: translateY(0) scale(1.16); }
	50%, 72% { opacity: 1; transform: translateY(-3px) scale(1); }
	100% { opacity: 0; transform: translateY(-22px) scale(.72); }
}

@keyframes rolling-one {
	0%, 27% { opacity: 1; transform: translateY(0) scale(1); }
	31%, 96% { opacity: 0; transform: translateY(12px) scale(.985); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rolling-two {
	0%, 29%, 65%, 100% { opacity: 0; transform: translateY(12px) scale(.985); }
	34%, 60% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rolling-three {
	0%, 62%, 98%, 100% { opacity: 0; transform: translateY(12px) scale(.985); }
	67%, 93% { opacity: 1; transform: translateY(0) scale(1); }
}

.section_02 {
	height: 1296px;
	background: #fff;
	overflow: hidden;
}

.section_item {
	position: absolute;
	left: 50%;
	display: block;
	max-width: none;
	transform: translateX(-50%);
}

.section02_item {
	top: 31px;
	width: 692px;
}

.section_03 {
	height: 1532px;
	background: var(--busan-light-blue);
	overflow: hidden;
}

.section03_item {
	top: 71px;
	width: 690px;
	z-index: 2;
}

.section03_object {
	position: absolute;
	left: calc(50% + 459px);
	top: 1201px;
	width: 501px;
	max-width: none;
	z-index: 1;
}

.contest_buttons {
	position: absolute;
	top: 1260px;
	left: 50%;
	z-index: 3;
	display: flex;
	width: 683px;
	gap: 35px;
	transform: translateX(-50%);
}

.contest_button {
	display: block;
	width: 324px;
	transition: transform .2s ease, filter .2s ease;
}

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

.contest_button:hover,
.contest_button:focus-visible {
	filter: brightness(1.04) saturate(1.08);
	transform: translateY(-6px);
}

.contest_button:focus-visible,
.sns_link:focus-visible,
.quick_link:focus-visible,
.footer_logo:focus-visible {
	outline: 4px solid #ff5d65;
	outline-offset: 4px;
}

.section_04 {
	height: 1424px;
	background: var(--busan-blue);
	color: #fff;
	overflow: hidden;
}

.notice_inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.notice_inner h2 {
	position: absolute;
	top: 89px;
	left: 50%;
	width: 204px;
	transform: translateX(-50%);
}

.notice_inner h2 img {
	display: block;
	width: 100%;
}

.notice_copy {
	position: absolute;
	top: 214px;
	left: 50%;
	width: 695px;
	transform: translateX(-50%);
	font-size: 21px;
	line-height: 36px;
	letter-spacing: -.05em;
	word-break: keep-all;
}

.notice_copy,
.notice_copy * {
	font-family: 'Aggravo', 'Noto Sans KR', sans-serif;
	font-weight: 300;
}

.notice_copy h3 {
	display: flex;
	align-items: center;
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
}

.notice_copy h3,
.notice_copy h3 * {
	font-family: 'Aggravo', 'Noto Sans KR', sans-serif;
	font-weight: 700;
}

.notice_mark {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	margin-right: 5px;
}

.notice_heading_text {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 2px;
}

.notice_heading_text::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 6px;
	height: 24px;
	z-index: -1;
	background: #013275;
}

.notice_copy h3:not(:first-child) {
	margin-top: 26px;
}

.notice_copy ol {
	counter-reset: notice-number;
}

.notice_copy li {
	position: relative;
	padding-left: 23px;
	counter-increment: notice-number;
}

.notice_copy li::before {
	content: counter(notice-number) ".";
	position: absolute;
	left: 0;
	top: 0;
}

.section.sns {
	height: 188px;
	padding: 0;
	background: var(--busan-black);
}

.sns_links {
	position: absolute;
	top: 55px;
	left: 50%;
	width: 514px;
	height: 82px;
	transform: translateX(-50%);
}

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

.sns_link {
	position: absolute;
	top: -1px;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	transition: transform .2s ease;
}

.sns_link:hover,
.sns_link:focus-visible {
	transform: translateY(-5px) scale(1.04);
}

.sns_youtube { left: 0; }
.sns_instagram { left: 108px; }
.sns_blog { left: 216px; }
.sns_facebook { left: 323px; }
.sns_daangn { left: 431px; }

.footer {
	height: 230px;
	padding: 0;
	background: #fff;
	color: #111;
	text-align: center;
}

.footer_inner {
	position: relative;
	height: 100%;
	padding-top: 28px;
}

.footer_logo {
	display: block;
	width: 308px;
	margin: 0 auto;
}

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

.footer address {
	margin-top: 25px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.footer .font_outfit {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.quick_bar {
	position: fixed;
	z-index: 100;
}

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

.quick_bar_pc {
	top: 316px;
	left: calc(50% + 613px);
	width: 188px;
}

.quick_bar_pc .quick_link {
	position: absolute;
	left: 0;
	width: 100%;
}

.quick_bar_pc .quick_download {
	top: 17px;
	height: 109px;
}

.quick_bar_pc .quick_email {
	top: 122px;
	height: 110px;
}

.quick_bar_mo {
	display: none;
	left: 50%;
	bottom: 0;
	width: min(100%, 750px);
	transform: translateX(-50%);
}

.quick_bar_mo .quick_link {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
}

.quick_bar_mo .quick_download { left: 0; }
.quick_bar_mo .quick_email { right: 0; }

body.is_email_modal_open {
	overflow: hidden;
}

.email_modal[hidden] {
	display: none;
}

.email_modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.email_modal_backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(0, 0, 0, .68);
	cursor: pointer;
}

.email_modal_panel {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	padding: 42px 34px 30px;
	border: 4px solid var(--busan-blue);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
	color: #111;
	text-align: center;
	outline: none;
}

.email_modal_close {
	position: absolute;
	top: 10px;
	right: 13px;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	color: var(--busan-blue);
	font-family: Arial, sans-serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.email_modal_title {
	color: var(--busan-blue);
	font-family: 'Aggravo', 'Noto Sans KR', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.35;
}

.email_modal_description {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
}

.email_modal_actions {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.email_modal_link,
.email_copy_button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border: 3px solid var(--busan-blue);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.email_modal_link {
	flex: 1 1 auto;
	padding: 10px 16px;
	background: #fff5bd;
	color: var(--busan-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.email_copy_button {
	flex: 0 0 132px;
	padding: 10px 14px;
	background: var(--busan-blue);
	color: #fff;
	cursor: pointer;
}

.email_modal_close:focus-visible,
.email_modal_link:focus-visible,
.email_copy_button:focus-visible {
	outline: 3px solid #ffcd2e;
	outline-offset: 3px;
}

.email_copy_status {
	min-height: 24px;
	margin-top: 12px;
	color: var(--busan-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

@media (max-width: 540px) {
	.email_modal {
		padding: 16px;
	}

	.email_modal_panel {
		padding: 38px 18px 22px;
		border-width: 3px;
	}

	.email_modal_title {
		font-size: 22px;
	}

	.email_modal_description {
		font-size: 14px;
	}

	.email_modal_actions {
		gap: 7px;
		margin-top: 18px;
	}

	.email_modal_link,
	.email_copy_button {
		min-height: 50px;
		border-width: 2px;
		font-size: 14px;
	}

	.email_modal_link {
		padding: 8px 10px;
	}

	.email_copy_button {
		flex-basis: 102px;
		padding: 8px;
	}
}

.scroll_reveal {
	transition: opacity .85s ease, transform .85s cubic-bezier(.2, .75, .3, 1);
}

.js .scroll_reveal {
	opacity: 0;
	transform: translateY(60px);
}

.js .section_item.scroll_reveal {
	transform: translate(-50%, 60px);
}

.js .contest_buttons.scroll_reveal,
.js .sns_links.scroll_reveal {
	transform: translate(-50%, 60px);
}

.js .scroll_reveal.reveal_right {
	transform: translateX(60px);
}

.js .scroll_reveal.is_visible {
	opacity: 1;
	transform: translateY(0);
}

.js .section_item.scroll_reveal.is_visible,
.js .contest_buttons.scroll_reveal.is_visible,
.js .sns_links.scroll_reveal.is_visible {
	transform: translate(-50%, 0);
}

.js .scroll_reveal.reveal_right.is_visible {
	transform: translateX(0);
}

@media (max-width: 1600px) {
	.quick_bar_pc {
		left: auto;
		right: 16px;
	}
}

@media (max-width: 991px) {
	.quick_bar_pc {
		display: none;
	}

	.quick_bar_mo {
		display: block;
	}

	.footer {
		padding: 0;
	}

	.section.sns {
		height: 296px;
		padding-bottom: 0;
	}
}

@media (max-width: 750px) {
	.section.main {
		height: max(575px, 89.844vw);
		background-size: max(960px, 150vw) auto;
		background-position: center top;
	}

	.main_artboard {
		width: max(960px, 150vw);
		height: max(600px, 93.75vw);
	}

	.section_02 {
		height: auto;
		padding: 4.13vw 3.87vw;
	}

	.section_item {
		position: static;
		transform: none;
	}

	.section02_item,
	.section03_item {
		width: 100%;
	}

	.section_03 {
		height: auto;
		padding: 9.47vw 4vw 44vw;
	}

	.contest_buttons {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		gap: 4.67vw;
		margin-top: 8vw;
		transform: none;
	}

	.contest_button {
		width: calc(50% - 2.335vw);
	}

	.section03_object {
		left: auto;
		top: auto;
		right: -8vw;
		bottom: 0;
		width: 66.8vw;
	}

	.section_04 {
		height: auto;
		padding: 11.87vw 5.6vw 12vw;
	}

	.notice_inner {
		height: auto;
	}

	.notice_inner h2 {
		position: static;
		width: 27.2vw;
		margin: 0 auto;
		transform: none;
	}

	.notice_copy {
		position: static;
		width: 100%;
		margin-top: 8vw;
		transform: none;
		font-size: clamp(11px, 2.8vw, 21px);
		line-height: 1.72;
		letter-spacing: -.05em;
		word-break: normal;
	}

	.notice_copy h3 {
		font-size: clamp(14px, 3.2vw, 24px);
		line-height: 1.5;
	}

	.notice_heading_text::before {
		top: .8vw;
		height: max(14px, 3.2vw);
	}

	.notice_copy h3:not(:first-child) {
		margin-top: 5vw;
	}

	.notice_copy li {
		padding-left: 4.3vw;
	}

	.section.sns {
		height: 39.47vw;
		padding: 0 0 14.4vw;
	}

	.sns_links {
		top: 7.33vw;
		width: 68.53vw;
		height: 10.93vw;
	}

	.sns_link {
		top: -.13vw;
		width: 11.2vw;
		height: 11.2vw;
	}

	.sns_youtube { left: 0; }
	.sns_instagram { left: 14.4vw; }
	.sns_blog { left: 28.8vw; }
	.sns_facebook { left: 43.07vw; }
	.sns_daangn { left: 57.47vw; }

	.footer {
		height: 48vw;
		padding: 0;
	}

	.footer_inner {
		padding-top: 3.73vw;
	}

	.footer_logo {
		width: 41.07vw;
	}

	.footer address {
		margin-top: 3.33vw;
		font-size: 2.2vw;
	}

	.footer .font_outfit {
		margin-top: .67vw;
		font-size: 1.9vw;
	}

	.js .section_item.scroll_reveal {
		transform: translateY(12vw);
	}

	.js .contest_buttons.scroll_reveal {
		transform: translateY(12vw);
	}

	.js .section_item.scroll_reveal.is_visible,
	.js .contest_buttons.scroll_reveal.is_visible {
		transform: translateY(0);
	}
}

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

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

	.rolling_01 {
		opacity: 1;
	}

	.rolling_02,
	.rolling_03 {
		opacity: 0;
	}

	.js .scroll_reveal,
	.js .section_item.scroll_reveal,
	.js .contest_buttons.scroll_reveal,
	.js .sns_links.scroll_reveal,
	.js .scroll_reveal.reveal_right {
		opacity: 1;
		transform: none;
	}

	.js .section_item.scroll_reveal,
	.js .contest_buttons.scroll_reveal,
	.js .sns_links.scroll_reveal {
		transform: translateX(-50%);
	}

}

@media (max-width: 750px) and (prefers-reduced-motion: reduce) {
	.js .section_item.scroll_reveal,
	.js .contest_buttons.scroll_reveal {
		transform: none;
	}
}
