:root {
    --color-green: #096e50;
    --color-lightgreen: #f4fbf4;
	--color-brightgreen: #01bd46;
    font-size: 10px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    letter-spacing: -0.5px;
	box-sizing: border-box;
	text-align: left;
}

html, body {
    width: 100%;
}

@media only screen and (min-height: 1000px) and (min-width: 768px) {
	html.vwrap, html.vwrap body {height: 100%;}
	html.vwrap .sub_wrap {display: flex; flex-direction: column;}
}

html.no_scroll, body.no_scroll {
	overflow: hidden;
}

html.full,
body.wrap {
	min-height: 100vh;
}

html *, body * {
   font-family: 'NanumSquareNeo';
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
a,
span,
p {
    color: inherit;
    text-decoration: none !important;

}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
button, input {
    background-color: transparent;
    border: 0; border-radius: 0;
}
input:focus-visible {
    outline: 0;
}
button {
	color: inherit;
	cursor: pointer;
}
em {
	font-style: normal;
}

select:focus-visible,
textarea:focus-visible {
	outline: 0;	
}

.sound_only {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important;
}

.zh_font {font-family: 'NanumBarunGothic';}

.italic {font-style: italic;}

/*colors*/
.white_box {background-color: #fff;}
.grey_box {background-color: #fafafa;}
.text_green {color: var(--color-green) !important;}
.text_brightgreen {color: var(--color-brightgreen);}
.bold {font-weight: 800;}
.text_pink {color: #fe4879;}
.text_grey {color: #ccc;}

/*size*/
.col2 > .element {width: 50%;}
.inner_container {max-width: 1200px; width: 95%; margin: 0 auto; height: 100%;}
.inner_container.wide {max-width: 1820px; }

/*align*/
.dfbox {display: flex;}
.dfbox.a_center {align-items: center;}
.dfbox.space {justify-content: space-between;}
.el_center {display: flex !important; align-items: center; justify-content: center;}
.el_center.column {flex-direction: column;}

/*버튼*/
.btn_white {border: 1px solid #bbb; color: #222; background: #fff;}	
.btn_green {background: var(--color-green); color: #fff; border: 1px solid transparent;  }
.btn_green_border {background: transparent; border: 2px solid var(--color-green); color: var(--color-green); }
.btn_pink_border {background: transparent; border: 2px solid #f66d90; color: #f66d90;}
.btn_orange_border {background: transparent; border: 2px solid #f28446; color: #f28446; }
.btn_pink {background: #ff4668; color: #fff;}
.btn_darkgrey {background: #4d4d4d; color: #fff;}
.btn {display: inline-block; padding: 18px 30px 17px; font-size: 1.8rem; box-sizing: border-box; text-align: center; transition: .25s;}
.btn.sm {padding: 13px 25px 12px; font-size: 1.5rem;}
.member_wrap .btn {padding: 22px 0 21px;}
.btn.round {border-radius: 100px;}
.btn.br5 {border-radius: 5px;}
.btn.wide {width: 40%;}

/*bg figure*/
.bg_figure img {position: absolute; z-index: 0;}
.bg_figure .grass01 {top: calc(100px + 5%); left: 0;}
.bg_figure .grass02 {bottom: 0; left: 0;}
.bg_figure .grass03 {bottom: 0; right: 0;}
.bg_figure .grass04 {top: calc(100px + 5%); right: 0;}
.bg_figure .grass05 {display: none;}

/*bg figure member 공통*/
.member_wrap .bg_figure .grass01 {top: 5%; left: -35px;}
.member_wrap .bg_figure .grass04 {top: 0;}

.checkbox,
.radio {
	display: flex;
    vertical-align: middle;
}

.checkbox label,
.radio label {
	cursor: pointer;
}

.checkbox input,
.radio input {
	display: none;
}

.checkbox span,
.radio span{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	word-break: keep-all;
	font-size: 1.7rem;
	padding-left: 3.5rem;
}

.checkbox span::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
    transform: translateY(-20%);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
	background-image: url("../img/sub/checkbox_icon.png");
	width: 2.8rem;
	height: 2.8rem;
}

.checkbox input:checked + span::before {
	background-image: url("../img/sub/checkbox_icon_checked.png");
	
}

.radio span {
	padding-left: 2.5rem;
}

.radio span em {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 100px;
	border: 3px solid #ccc;
}

.radio span em::after {
	content: "";
	display: inline-block;
	/*position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
	width: 7px;
	height: 7px;
	border-radius: 100px;
	background-color: transparent;
}

.radio input:checked + span em {
	border-color: var(--color-green);
}

.radio input:checked + span em::after {
	background-color: var(--color-green);
}

.radio + .radio {
	margin-left: 15px;
}


/*navbar*/
#navbar {height: 120px;}
#navbar .dfbox {
	align-items: center;
	height: 100%;
}

#gnb {
	max-width: 1050px;
	width: 65%;
	margin: 0 auto;
	z-index: 10;
	height: 100%;;
}

#gnb .depth01 > li {
	width: 16.666%;
	height: 100%;
	position: relative;
}

#gnb ul ul {
	position: absolute;
	top: 80%;
	width: 100%;
	left: 0;
	display: none;
	background: #fff; 
	box-shadow: 0 5px 20px rgba(17,65,47,0.18);
	border-radius: 18px;
}

#gnb .depth01 > li:hover ul {
/*	display: block;*/
}

#gnb .depth01 > li > a {
	display: flex;
	align-items: center;	
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
}

#gnb .depth02,
#gnb .depth03 {
	padding: 20px 0;
	z-index: 10;
}

#gnb li.has_child {
	position: relative;
}

#gnb li.has_child::after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	background: transparent;
	z-index: 0;
}

#gnb li.has_child .depth03 {
	position: absolute; 
	left: 102%;
	top: 0;
	padding: 4px 0;
	border-radius: 30px;
}

#gnb li.has_child img {
	display: inline-block;
	margin-left: 5px;
}

#gnb .depth02 > li > a,
#gnb .depth03 > li > a{
	display: inline-block;
	padding: 12px 0;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
}

.navbar_member {margin-right: 30px;}

.navbar_member a {
	font-size: 1.5rem; 
	color: #666;
	font-weight: 600;
}

.list_bar {
	padding-right: 9px;
	margin-right: 12px;
	position: relative;
}

.list_bar::after {
	content: "|";
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 500;
	position: absolute;
	top: 50%; left: 100%;
	transform: translateY(-50%);
	color: inherit;
}

.search_btn span {display: inline-block; background: url('/img/common/search_btn.png') no-repeat 50% 50% / contain; width: 22px; height: 22px;}

.navbar_toggle {
	margin-left: 18px; 
	z-index: 999;
}

.navbar_toggle input {display: none;}

.navbar_toggle label {
	display: block;
	width: 26px;
	height: 21px;
	z-index: 999;
}

.hamburger {
	position: relative;
	display: block;
	width: 100%; 
	height: 100%;
	cursor: pointer;
}

.hamburger_icon {
	display: block;
	width: 100%;
	height: 100%;
}

.hamburger_icon i {
	display: inline-block;
	position: absolute;
	right: 0;
	width: 100%;
	height: 3px;
	background: #000;
	-webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger_icon i:nth-child(1) {
	top: 0;
}

.hamburger_icon i:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
}

.hamburger_icon i:nth-child(3) {
	bottom: 0;
	width: 80%;
}


.hamburger--active i:nth-child(2) {
	opacity: 0;
}

.hamburger--active i:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.hamburger--active i:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  width: 100%;
}

.f_nav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	opacity: 0;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 12;
}


.f_nav--active {
	opacity: 1;
	visibility: visible;
	transition: opacity 400ms, visibility 400ms;
	will-change: opacity, visibility;
}

.f_nav_container {
	max-width: 1400px;
	width: 90%;
	margin-left: 0 auto;
}

.f_nav_heading {
	font-size: 5.0rem;
	font-weight: 800;
	padding-bottom: 35px;
	border-bottom: 1px solid #eee;
}

.f_nav_list {
	padding-top: 40px;
}

.depth01_item {
	transform: translateX(-2em);
	opacity: 0;
	transition: opacity 200ms, transform 200ms;
	will-change: transform, opacity;
}

.depth01_item--active {
	opacity: 1;
	transform: translateX(0);
}

#navbar .f_nav_list ul {
	align-items: flex-start;
}

.f_nav_list li {
	text-align: center;
}

.f_nav_list li a {
	display: inline-block;
}

.f_nav_list .depth02 {
	margin-top: 25px;
}

.f_nav_list .depth01 > li {
	width: 16.666%;
}

.f_nav_list .depth01 > li > a {
	font-size: 3.0rem;
	font-weight: 800;
} 

.f_nav_list .depth02 > li > a {
	font-size: 2.0rem;
	font-weight: 600;
	padding: 12.5px 0;
} 

.f_nav_list .depth03 > li > a {
	font-size: 1.6rem;
	color: #666;
	font-weight: 600;
	padding-bottom: 15px;
} 

.f_nav_list .depth02 > li.has_child > a {
	padding: 10px 0 8px;
}


.f_nav_list .depth01 > li:hover > a,
.f_nav_list .depth02 > li:hover > a {
	color: var(--color-green);
}

.oasims-clear-both{
	clear:both
}

/*footer*/
footer {
	background: url('/img/common/footer_bg.png') no-repeat 50% 50% / 100% 100%; 
	padding: 110px 0 45px; 
	margin-top: auto;
}

footer * {
	font-family: 'KoPubWorldDotum';
	color: #fff; 
}

/*.footer_term li:first-child {padding-right: 9px; margin-right: 12px; position: relative;}

.footer_term li:first-child::after {
	content: "|";
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 300;
	position: absolute;
	top: 50%; left: 100%;
	transform: translateY(-50%);
}*/

.footer_term a {font-size: 1.5rem;}

.footer_info {margin-top: 15px;}

.footer_info p {
	font-size: 1.4rem;
	line-height: 1.6;
	opacity: 0.85;
	font-weight: 300;
}

.footer_info p .pc_none {
	display: none;
}

.footer_info p.copyright {
	font-size: 1.3rem;
	margin-top: 15px;
	opacity: 0.3;
}

.footer_right {
	flex-direction: column;
}

.footer_btn .footer_select_wrap {
	margin-right: 10px;
	position: relative;
}

.footer_btn .select_box {
	height: 37px; 
	background: #fff; 
	border-radius: 30px; 
	position: relative;
	padding: 0 50px 0 20px;
	cursor: pointer;
}

.footer_btn .select_box span {
	font-size: 1.2rem;
	color: #666;
}

.footer_btn .select_box::after {
	content: ""; 
	display: inline-block; 
	width: 11px; height: 7px; 
	background: url('/img/common/footer_select_arrow.png') no-repeat 50% 50%/ contain;
	position: absolute;
	right: 20px;
	top: 50%; transform: translateY(-50%);
}

.footer_btn .selection {
	position: absolute;
	top: 100%;
	width: 100%;
	border-radius: 15px;
	font-size: 1.2rem;
	overflow: hidden;
	display: none;
	z-index: 5;
}

.footer_btn .selection a {
	display: inline-block;
	width: 100%;
	padding: 15px 20px 14px;
	color: #666;
}

.footer_btn .footer_sns li:not(:last-child) {
	margin-right: 5px;
} 

.footer_btn .sns_link {
	width: 37px; height: 37px;
	border-radius: 100px;
}

.footer_etc {margin-top: 15px;}

.footer_etc .footer_num span {
	font-size: 1.5rem;
	color: #fff;
	font-weight: 600;
}

.footer_etc .footer_num .num {
	display: inline-block;
	font-size: 2.5rem;
	color: #fff221;
	font-weight: 800;
	margin-left: 10px;
	letter-spacing: -1.5px;
}

.footer_mark {
	margin-left: 10px;
}

/*회원가입, 로그인 공통*/
.inner_container.narrow {max-width: 600px;}
.inner_container.narrow2 {max-width: 622px;}
.inner_container.sm {max-width: 740px;}

/*약관 페이지*/
.term .box_numtitle {
	line-height: 1.4;
}

.term .paragraph + .box_numtitle {
	margin-top: 35px;
}

.term .paragraph ul {
	padding-left: 15px;
	margin-bottom: 10px;
}

.term .paragraph li {
	font-size: 1.5rem; 
	color: #666; 
	line-height: 1.6em;
}

.term .table_wrap {
	margin: 15px 0 35px;
}

.term .table_wrap table {
	width: 100%; 
	border-collapse: collapse;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

.term .table_wrap table th,
.term .table_wrap table td {
	font-size: 1.6rem; 
	padding: 14px 10px;
	text-align: center;
	vertical-align: middle;
}

.term .table_wrap table th {
	background-color: #f7f7f7;
}

.term .table_wrap table td {
	border-top: 1px solid #666;
}

.term .table_wrap table tr:first-child td {
	border-top: 0;
}


@media only screen and (min-width: 1025px) {
	.btn_green_border:hover {background-color: var(--color-green); color: #fff;}
	.btn_green:hover {border: 1px solid var(--color-green);background-color: #fff; color: var(--color-green);}
	.footer_btn .selection a:hover {
		background: #eee;
	}
	.footer_btn .footer_select_wrap:hover .selection {
		display: block;
	}

	.btn_white:hover {
		border-color: var(--color-green);
		background: var(--color-green);
		color: #fff;
	}

	.btn_pink_border:hover {
		background: #f66d90; 
		color: #fff;
	}

	.btn_orange_border:hover {
		background: #f28446; 
		color: #fff; 
	}
}

@media only screen and (max-width: 1440px) {
	:root {
		font-size: 9px;
	}

	.navbar_logo {
		width: 14%;
	}

	.navbar_logo img {
		width: 100%;
	}

	.bg_figure .grass02 {
		width: 10%;
	}

	.bg_figure .grass03 {
		width: 12%;
	}
}

@media only screen and (max-width: 1200px) {
	#gnb {
		display: none;
	}

	.sub_wrap .navbar_member {
		margin-left: auto;
	}
}

@media only screen and (max-width: 1024px) {
	.btn_pink_border {
		color: #fff;
		background-color: #f66d90;
	}

	.btn_orange_border {
		color: #fff;
		background-color: #f28446;
	}

	.f_nav_list .depth01 {
		flex-wrap: wrap;
	}
	.f_nav_list .depth01 > li {
		width: 33.333%;
		margin-bottom: 5%;
	}

	.member_wrap .bg_figure .grass01 {
		left: -20px;
		width: 25%;
	}

	.member_wrap .bg_figure .grass02 {
		width: 40%;
	}

	.member_wrap .bg_figure .grass03 {
		width: 30%;
	}

	.member_wrap .bg_figure .grass04 {
		width: 28%;
	}

	footer {
		background: url(/img/common/footer_bg.png) no-repeat 50% 50% / auto 100%;
	}

	.footer_info p .pc_none {
		display: inline-block;
	}

	.footer_info p .mb_none {
		display: none;
	}

	.footer_info p br {
		display: none;
	}

	.footer_info p .br_mb {
		display: block;
	}

	/*.footer_btn .footer_select_wrap .select_box:hover + .selection {
		display: block;
	}*/

	.selection.open {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	#navbar {
		height: 100px;
	}

	.navbar_logo {
		width: 20%;
	}

	.f_nav_heading {
		padding-bottom: 25px;
	}

	.f_nav_list {
		padding-top: 30px;
	}

	.f_nav_list .depth02 {
		margin-top: 18px;
	}

	.navbar_member a {
		font-size: 1.7rem;
	}

	.f_nav_list .depth02 > li > a {
		padding: 9px 0;
	}

	footer {
		background-position: 42% 50%;
		background-size: 220% 100%;
		padding: 165px 0 40px;
	}

	footer > .dfbox {
		flex-direction: column-reverse;
	}

	.footer_right {
		flex-direction: row-reverse;
		justify-content: space-between;
		position: relative;
	}

	.footer_etc {
		margin-top: 0;
	}

	.footer_etc .footer_num span {
		font-size: 2.4rem;
	}

	.footer_etc .footer_num .num {
		font-size: 4.2rem;
		font-weight: 600;
	}

	.footer_btn .select_box {
		height: 40px;
	}

	.footer_btn .select_box span,
	.footer_btn .selection a {
		font-size: 1.7rem;
	}

	footer .footer_mark {
		position: absolute; 
		right: 0;
		top: 140%;
	}

	.footer_left {
		margin-top: 25px;
	}

	.footer_term a {font-size: 2.3rem;}

	.footer_info p {font-size: 2.1rem;}

	.footer_info p.copyright {
		font-size: 1.7rem;
	}

	.term .table_wrap table th, .term .table_wrap table td {
		font-size: 2.4rem;
		padding: 12px 6px;
	}

	.term .table_wrap table th:first-child {
		width: 10%;
	}

	.term .table_wrap table thead tr:nth-child(2) th:first-child {
		width: 15%;
	}

	.term .table_wrap table th:nth-child(2) {
		width: 20%;
	}
}

@media only screen and (max-width: 600px) {
	:root {
		font-size: 1.22vw;
	}

	.btn {
		font-size: 2.7rem;
		padding: 15px 30px 14px;
	}

	.btn.sm {
		font-size: 2.3rem;
	}

	.checkbox span, .radio span {
		font-size: 2.6rem;
		padding-left: 4.5rem;
	}

	.footer_btn .select_box {
		height: 37px;
		padding: 0 40px 0 15px;
	}

	.footer_btn .select_box::after {
		right: 15px;
	}

	.footer_etc .footer_num .num {
		margin-left: 8px;
	}

	.term .paragraph li {
		font-size: 2.4rem;
	}
}

@media only screen and (max-width: 480px) {
	:root {
		font-size: 1.5vw;
	}

	.col2 > .element {width: 100%;}

	#navbar {height: 60px;}

	.navbar_logo {width: 120px;}

	.navbar_logo img {width: 100%;}

	.navbar_toggle {margin-left: 10px;}

	.navbar_toggle label {
		width: 22px;
		height: 18px;
	}

	.hamburger--active i:nth-child(1) {
		-webkit-transform: translateY(5px) rotate(45deg);
		-ms-transform: translateY(5px) rotate(45deg);
		-o-transform: translateY(5px) rotate(45deg);
		transform: translateY(5px) rotate(45deg);
	}

	.navbar_member {margin-right: 0;}

	.navbar_member a {
		font-size: 2.4rem;
	}

	.navbar_search {margin-left: 20px;}

	.f_nav_heading {
		padding-bottom: 18px;
	}

	.f_nav_list {
		padding-top: 22px;
	}

	.f_nav_list li {
		text-align: left;
	}
	
	.f_nav_list .depth01 > li {
		width: 100%;
	}

	.f_nav_list .depth01 > li > a {
		font-size: 3.6rem;
	}

	.f_nav_list .depth02 {
		max-height: 0;
		overflow: hidden;
		margin-top: 10px;
		transition: max-height 0.2s ease-out;
	}
	
	.f_nav_list .depth02 > li > a {
		font-size: 2.7rem;
		padding: 10px 0;
		font-weight: 500;
	}

	.f_nav_list .depth03 > li > a {
		font-size: 2.0rem;
	}

	footer {
		background-image: url('/img/common/footer_bg_mb.png');
		padding: 85px 0 25px;
		background-size: 250% 100%;
		background-position: 58% 50%;
	}

	footer .footer_right {
		flex-direction: column-reverse;
	}

	footer .footer_etc {
		margin-bottom: 10px;
	}

	footer .footer_etc.dfbox.space {
		justify-content: flex-start;
	}

	footer .footer_term a {
		font-size: 2.5rem;
	}

	footer .footer_mark {
		position: static;
		top: auto;
		bottom: auto;
		transform: translateY(0);
		width: 35px;
		height: 35px;
		margin-left: 10px;
	}

	footer .footer_mark img {
		width: 100%;
	}

	footer .footer_btn .select_box span, 
	footer .footer_btn .selection a {
		font-size: 1.9rem;
	}

	footer .footer_left {
		margin-top: 20px;
	}
	
	footer .footer_info p {
		font-size: 2.35rem;
		line-height: 1.45;
	}

	footer .footer_info p .mb_none2 {
		display: none;
	}

	footer .footer_info p .br_mb_c {
		display: inline-block;
	}

	footer .footer_info p .br_mb2 {
		display: block;
	}
}

@media only screen and (max-width: 350px) {
	:root {
		font-size: 5.5px;
	}

	#navbar {
		margin-bottom: 20px;
	}

	#navbar .dfbox {
		position: relative;
	}

	.sub_wrap .navbar_member {
		position: absolute;
		right: 0;
		top: 110%;
	}

	.navbar_search {
		margin-left: auto;
	}

	.f_nav_list .depth01 > li {
		margin-bottom: 3%;
	}

	.f_nav_list .depth02 > li > a {
		padding: 8px 0;
	}
}



.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal.show-modal {
	opacity: 1;
	visibility: visible;
	transform: scale(1.0);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal_content {
	display: flex;
	justify-content: center;
	align-items: center;
    max-width: 24vw;
    border-radius: 25px;
}

.modal_content.narrow .white_box {
	width: 100%;
	align-self: center;
	padding: 55px 50px 70px;
	border-radius: 40px;
    border: 1px solid #eee;
    overflow: hidden;
    z-index: 5;
}

.modal_content .modal_heading {
	font-size: 4.0rem;
	text-align: center;
    margin-bottom: 40px;
    font-family: 'NanumSquareNeo';
    font-weight: 800;
}

.modal_content .heading_wrap p {
	font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal_content .input_item {
	border-radius: 100px;
    margin-bottom: 8px;
    background-color: #fafafa;
    padding: 22px 25px;
}

.modal_content .input_item input {
	width: 100%;
	height: 22px;
	font-size: 1.6rem;
	letter-spacing: -0.6px;
}

.modal_content .select_box {
	width: 100%;
	border-radius: 100px;
	margin-bottom: 8px;
	background-color: #fafafa;
	padding: 22px 25px;
	position: relative;
} 

.modal_content .select_box::after {
	content: "";
	display: inline-block;
	background: url('../img/sub/modal_select_arrow.png') no-repeat;
	width: 18px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}

.modal_content .select_box select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	background-color: transparent;
	width: 100%;
	height: 22px;
	font-size: 1.6rem;
	letter-spacing: -0.6px;
}

.modal_content .btn_wrap {
	margin-top: 20px;
}

.modal_content .btn_submit {
	width: 100%;
    text-align: center;
    border-radius: 35px;
    font-size: 2.0rem;
    font-weight: 600;
    letter-spacing: -1px;
	padding: 22px 0 21px;
}