@font-face {
    font-family: 'Isamanru';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Isamanru';
}

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
}

.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: #ff95d4;
   color: #fff
}

::-moz-selection {
   background: #ff95d4;
   color: #fff
}

::-webkit-selection {
    background: #ff95d4;
   color: #fff
}

area {
    cursor: pointer;
}

.rel {
    position: relative;
}

.container {
    max-width: 1920px;
    margin: auto;
}

.section .inner {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

.section_main {
    height: 2062px;
    padding-top: 44px;
    background-image: url('/PROJECT_HTML/busan_evt/img/main_bg_new.jpg?new');
    background-size: cover;
    background-position: center 100%;
    border-bottom: 2px solid #0c3462;
}

.section_main .inner {
    height: 100%;
    z-index: 5;
}

.section_main .logo_title {
	margin-bottom: 92px;
}

.section_main .main_title {
	margin-bottom: 20px;
}

.section_main .main_title .bubble {
	position: absolute;
	left: 206px;
	top: -52px;
}

.section_main .main_visual > img {
	margin: -28px 0 48px;
}

.section_main .obj {
	position: absolute;
}

.section_main .obj.left {
	width: 24.48vw;
	left: 2.92vw;
	top: 790px;
}

.section_main .obj.right {
	width: 20vw;
	right: 4.38vw;
	top: 973px;
}

.main_visual_rolling {
  position: absolute;
  width: 100%;
  height: 52px; /* 한 줄 높이 */
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden; /* 중요! 영역 넘는 부분 안 보이게 */
}

.main_visual_rolling ul {
  transition: transform 0.6s ease-in-out;
}

.main_visual_rolling li {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_02 {
    background-image: url('/PROJECT_HTML/busan_evt/img/content_bg.jpg?new');
	background-size: cover;
    background-position: center;
    border-bottom: 2px solid #0c3462;
	padding-bottom: 100px;
}

.section_02 .inner {
	max-width: 810px;
	padding: 0 10px;
}

.video_area {
    position: absolute;
    width: 610px;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

.video_wrap {
  position: relative;
  width: 100%;
  padding-bottom: 60.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #09003e;
  border-radius: 20px;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section_02 .info img {
	 margin-top: -436px;
}

.section_02 .btn_box {
	margin-top: 40px;
}

.section_04 {
    padding: 90px 0;
    background-color: #1d1d1d;
}

.section_05 {
    padding: 72px 0;
    background-color: #01c0f1;
}

.section_05 .center_item {
    display: inline-block;
    margin: auto;
}

.section_05 dl {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #000;
}

.section_05 dt {
    padding-right: 3px;
}

.section_05 dd {
	text-align: left;
}

.footer {
    padding: 70px 20px;
    text-align: center;
}

.footer .info {
    margin-top: 30px;
    line-height: 180%;
}

/* 오버레이 (팝업) */
.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%);
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  max-height: calc(100svh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
}

.b_popup_title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    color: #0041a3;
    font-size: 36px;
    font-weight: 900;
}

.b_popup_title span {
    border-bottom: 2px solid #0041a3;
}

.b_popup_title .btn_close_popup {
    position: absolute;
    top: -10px;
    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;
    border: 2px solid #000;
    margin-bottom: 12px;
}

.b_popup_content  .form_group label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 166px;
    height: 60px;
    font-size: 24px;
    background-color: #0068ff;
    color: #fff;
}

.b_popup_content .form_group input {
    width: 394px;
    height: 60px;
    padding: 0 12px;
    font-size: 24px;
    border-radius: 0px;
    border: none;
    outline: none;
}

.b_popup_content .form_group input::placeholder {
	font-size: 20px;
}

.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: 180px;
    background-color: #fff;
	border: 2px solid #000;
    overflow-y: scroll;
    padding: 24px;
    font-size: 18px;
    margin-bottom: 12px;
}

.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;
}

.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: #0041a3;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.b_popup .term_zone .agree input:checked::after {
    display: inline-block;
}

.b_popup .btn_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.b_popup .btn_box button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 70px;
    background-color: #a4a4a4;
    color: #fff;
    border: 2px solid #000;
    font-size: 25px;
	cursor: pointer;
}

.b_popup .btn_box button.confirm_btn {
    background-color: #0041a3;
}

.quick_btn.pc {
    position: fixed;
    margin: 80px 0 0 830px;
}

.quick_btn.mo {
    display: none;
    max-width: 750px;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.pharases_box {
	font-size: 18px;
	margin-bottom: 12px;
}

.pharases_box .top {
	padding: 16px;
	background-color: #ffdbdb;
	text-align: center;
	border: 2px solid #000;
}

.pharases_box .bt {
	position: relative;
	margin-top: -2px;
	border: 2px solid #000;
	padding: 16px;
	background-color: #fff;
	text-align: center;
}

.pharases_box .bt span {
	position: absolute;
	left: -2px;
	top: 0;
	transform: translateY(-50%);
	padding: 4px;
	background-color: #ff9b42;
	border: 2px solid #000;
}

/* 반응형 */

@media(min-width: 1921px) {
    .section_main .obj.left {
		width: 470px;
		left: 56px;
		top: 790px;
	}
	
	.section_main .obj.right {
		width: 384px;
		right: 84px;
		top: 973px;
	}
}

@media(max-width: 1600px) {
    .quick_btn.pc {
        margin-left: 750px;
    }
}

@media(max-width: 1359px) {
    .section.section_main .obj {
        display: none;
    }
}

@media(max-width: 991px) {
    .quick_btn.pc {
        display: none;
    }
    
    .quick_btn.mo {
        display: block;
    }
    
    .quick_btn.mo img {
        width: 100.1%;
        max-width: 100.1%;
    }
    
    .section_04 {
        padding-bottom: 200px;
    }
}

@media(max-width: 750px) {

	.section_main {
		height: 274.93vw;
		padding-top: 5.87vw;
	}
   
	.section_main .logo_title {
		width: 29.07vw;
		margin: auto;
		margin-bottom: 12.27vw;
	}
	
	.section_main .main_title {
		width: 83.47vw;
		margin: auto;
		margin-bottom: 2.67vw;
	}
	
	.section_main .main_title .bubble {
		width: 34.67vw;
		left: 27.47vw;
		top: -6.93vw;
	}
	
	.section_main .sub_title {
		width: 70.13vw;
		margin: auto;
	}
	
	.section_main .main_visual > img {
		width: 89.6vw;
		margin: -3.73vw 0 6.4vw;
	}
	
	.main_visual_rolling {
		height: 6.93vw;
		bottom: 8.8vw;
	}
	
	.main_visual_rolling li {
		height: 6.93vw;
	}
	
	.main_visual_rolling li.rolling_01 img {
		width: 74.4vw;	
	}
	
	.main_visual_rolling li.rolling_02 img {
		width: 78.4vw;	
	}
	
	.main_visual_rolling li.rolling_03 img {
		width: 48vw;	
	}
	
	.main_visual_rolling li.rolling_04 img {
		width: 52.27vw;	
	}
	
	.main_visual_rolling li.rolling_05 img {
		width: 75.47vw;	
	}
	
	.main_visual_rolling li.rolling_06 img {
		width: 73.87vw;	
	}
	
	.video_zone > img {
		width: 94.67vw;
		margin: auto;
	}
	
	.video_area {
		width: 81.33vw;
		top: 2.67vw;
	}
	
	.section_02 {
		padding-bottom: 13.33vw;
	}
	
	.section_02 .info img {
		width: 90.67vw;
		margin-top: -58.13vw;
	}
	
	.section_02 .btn_box {
		width: 90.93vw;
		margin: auto;
		margin-top: 5.33vw;
	}
	
	.section_05 {
		padding: 9.6vw 1.2vw;
	}
	
	.section_05 dl {
		margin-bottom: 1.33vw;
		font-size: 2.2vw;
	}
	
	.section_04 {
		padding: 12vw 0 26.67vw;
	}
	
	.section_04 .sns {
		width: 68.53vw;
		margin: auto;
	}
    
    .footer {
        padding: 9.33vw 2.67vw;
    }
    
    .footer .logo > img {
        width: 27.73vw;
    }
    
    .footer .info {
        margin-top: 4vw;
        font-size: 2.13vw;
    }
    
    .b_popup_inner {
        padding: 6vw;
    }
    
    .b_popup_title {
        margin-bottom: 5.33vw;
        font-size: 4.8vw;
    }
    
    .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 {
        margin-bottom: 1.6vw;
    }
    
    .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;
    }
	
	.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;
    }
    
    .b_popup .btn_box button {
        width: 42.67vw;
        height: 12vw;
        margin-top: 1.6vw;
        font-size: 4.33vw;
    }
	
	.pharases_box {
		font-size: 2.4vw;
		margin-bottom: 1.6vw;
	}

	.pharases_box .top {
		padding: 2.13vw;
	}

	.pharases_box .bt {
		padding: 2.13vw;
	}
	
	.pharases_box .bt > img {
		width: 60.8vw;
	}

	.pharases_box .bt span {
		padding: 0.53vw;
	}
}

