@charset "utf-8";
@charset "utf-8";

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
*{margin:0;padding:0;list-style-type:none;box-sizing:border-box;border:0;outline:0;font-family: 'Pretendard','Malgun Gothic','dotum','돋움','gulim','굴림','Tahoma';}

/*ROOT*/
:root {
	/*color*/
	--color-green: #52A421;
	--color-green-light: rgba(106,177,65,0.11);
	--color-red: #FC6262;
	--color-blue: #448CF9;
	--color-black: #333333;
	--color-gray: #666666;
	--color-pink: #FF5D5D;
	--txt-color-def: #242424;
	--txt-color-dark-gray: #525252;
	--txt-color-gray: #a5a5a5;
	--txt-color-light: #bfbfbf;
	--txt-light: 300;
	--txt-regular: 400;
	--txt-medium: 500;
	--txt-semibold: 600;
	--txt-bold: 700;
	--txt-extrabold: 800;
}

/* 초기화 */
html {font-size:2.77778vw; background:#f2f2f2;}
body {max-width:720px; min-width:280px;margin:0 auto;padding:0;font-size:2.77778vw;font-family: 'Apple SD Gothic Neo', Pretendard, 'Malgun Gothic', sans-serif;color:var(--txt-color-def);background:#fff; letter-spacing:-0.05em; box-sizing:border-box;}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family: 'Apple SD Gothic Neo', Pretendard, 'Malgun Gothic', sans-serif}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}

ul, ol, dl,dt,dd {margin:0;padding:0;list-style:none}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle;font-size:1em}
input, button {margin:0;padding:0;font-family: 'Apple SD Gothic Neo',Pretendard, 'Malgun Gothic', sans-serif;font-size:1em; border:0;}
input[type="submit"] {cursor:pointer}
button {cursor:pointer;transition:all 0.3s}

p {margin:0;padding:0;word-break:break-all}
hr  {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:var(--txt-color-def);text-decoration:none; transition:all 0.3s}
br {font-size:0;}

*, :after, :before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

input[type=text],input[type=password], textarea {
-webkit-transition:all 0.30s ease-in-out;
-moz-transition:all 0.30s ease-in-out;
-ms-transition:all 0.30s ease-in-out;
-o-transition:all 0.30s ease-in-out;
outline:none;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="submit"]  { 
	-webkit-appearance: none; /*브라우저 스타일 초기화*/
    -moz-appearance: none; /*브라우저 스타일 초기화*/
    appearance: none; /*브라우저 스타일 초기화*/
	font-family: 'Apple SD Gothic Neo', Pretendard, 'Malgun Gothic', sans-serif;
}
input[type=text]:focus,input[type=password]:focus, textarea:focus,select:focus {
	-webkit-appearance: none; /*브라우저 스타일 초기화*/
    -moz-appearance: none; /*브라우저 스타일 초기화*/
    appearance: none; /*브라우저 스타일 초기화*/
}
input::placeholder,
textarea::placeholder {
	color:var(--txt-color-gray);
}
textarea, select, button {
	-webkit-appearance: none; /*브라우저 스타일 초기화*/
    -moz-appearance: none; /*브라우저 스타일 초기화*/
    appearance: none; /*브라우저 스타일 초기화*/
	font-family: 'Apple SD Gothic Neo', Pretendard, 'Malgun Gothic', sans-serif;
	background:none;
	color:var(--txt-color-def);
}
img {
	max-width:100%;
	height:auto;
}
.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;
}
@media screen and (min-width:400px) {
	html, body {
		font-size:11px;
	}
}


/* COMMON */

html {
  scroll-behavior: smooth;
}
body.no_scroll_body {
    position: relative;
    overflow: hidden;
}

/*TEXT-ALIGN*/
.align_cnt {
	text-align:center;
}
.align_left {
	text-align:left;
}
.align_right {
	text-align:right;
}

/*FLEX*/
.flex_nml {
	display:-ms-flexbox;
	display:-webkit-flexbox;
	display:flex;
}
.flex_btw {
	display:-ms-flexbox;
	display:-webkit-flexbox;
	display:flex;
	justify-content:space-between;
}
.flex_cnt {
	display:-ms-flexbox;
	display:-webkit-flexbox;
	display:flex;
	justify-content:center;
}
.flex_ard {
	display:-ms-flexbox;
	display:-webkit-flexbox;
	display:flex;
	justify-content:space-around;
}
.flex_end {
	display:-ms-flexbox;
	display:-webkit-flexbox;
	display:flex;
	justify-content:flex-end;
}
.flex_col {
	flex-flow:column;
}
.flex_wrap {
	flex-wrap:wrap;
}
.items_base {
	align-items:baseline;
}
.items_str {
	align-items:start;
}
.items_cnt {
	align-items:center;
}
.items_end {
	align-items:end;
}

/*INPUT CUSTOM*/
input.input_cst {
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	padding: 1em 1em;
	border-radius: 0.5em;
	font-size: 1.6rem;
	background: #fff;
	border: 1px solid #e8e8e8;
}
input.input_cst:not([type="search"]):focus {
	/*브라우저 스타일 초기화*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #1D2023;
	border: 1px solid #e8e8e8 !important;
	outline: none;
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2)
}
input.input_cst.readonly,
input.input_cst.readonly:focus {	
	border: 1px solid #D3D4D8 !important;
	background: #eff2f8;
	box-shadow:none;
	cursor:default;
}
input.input_cst_file {	
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

/*RADIO CUSTOM**/
.radio_cst input[type="radio"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	opacity: 0;
	height: 0;
	width: 0;
	font-size: 0;
}

/*CHECKBOX CUSTOM**/
.check_cst input[type="checkbox"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	opacity: 0;
}
.check_cst_switch {
  position: relative;
  display: inline-block;
  width: 3.8rem;
  height: 2.3rem;
}
.check_cst_switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F0F0F0;
  border-radius:50em;
  transition: .4s;
}
.check_cst_switch .slider:before {
  position: absolute;
  content: "";
  height: 1.9rem;
  width: 1.9rem;
  left: 0.2rem;
  bottom: 0.2rem;
  background-color: #fff;
  border-radius:50em;
  transition: .4s;
  box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
}
.check_cst_switch input:checked + .slider {
  background-color: var(--color-pink);
}
.check_cst_switch input:checked + .slider:before {
  -webkit-transform: translateX(1.5rem);
  -ms-transform: translateX(1.5rem );
  transform: translateX(1.5rem);
}



/*SELECT CUSTOM**/
.select_cst {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/*WIDTH & HEIGHT SIZE*/
.w100 {
	width:100%;
}
.h100 {
	height:100%;
}


/*BTN*/
.btn {
	padding: 1em 0;
	font-size: 1.4rem;
	font-weight:var(--txt-semibold);
	border-radius:1rem;
	border:1px solid transparent;
}
.btn_comm {
	color: #fff;
	background: var(--color-pink);
}
.btn_gray {
	color: #fff;
	background: #d5d5d5;
}
.btn_gray_blk {
	color:var(--txt-color-def);
	background: #f2f2f2;	
}
.btn_gray_light {
	color:#7E7E7E;
	background: #F9F9F9;
}
.btn_gray.active,
.btn_gray_light.active {
	color: #fff; 
	background: var(--color-pink);
}
.btn_line_green {
	color: var(--color-green);
	border-color:var(--color-pink);
}
.btn_bg_green {
	color: var(--color-green);
	background-color:var(--color-green-light);
}
.btn_txt_green {
	color: var(--color-green);
	background-color:#f5f5f5;
}
.btn_line_bg_green {
	color: var(--color-pink);
	background-color:var(--color-green-light);
	border-color:var(--color-pink);
}
.btn_line_pink {
	color: var(--color-pink);
	border-color:var(--color-pink);
	background:#FFF
}
.btn_bg_pink {
	color:#FFF;
	background-color:var(--color-pink);
}

.btn_bigger {
	font-size:1.6rem;
}
.btn_half {
	width:48%;
}

/*SCROLL CUSTOM*/

::-webkit-scrollbar {
	width:0;
	background-color:transparent;
}
::-webkit-scrollbar-thumb {
	width:2rem;		
	border-radius:5em;
    background-clip: padding-box;
    border:2px solid transparent;
	background-color:#f2f2f2;
}
::-webkit-scrollbar-track {
	width:2rem;		
	background-color:transparent;		
} 

/* 툴팁 */
.tooltip_wrap {
	position:relative;
}
.tooltip {
	display:none;
	position:absolute;
	left:0;
	width:max-content;
	padding:1em;
	font-size:1.2rem;
	background:#fff;
	border-radius:0.7rem;
	border:1px solid var(--color-pink);
	z-index:1;
}
.tooltip .flex_btw {
	gap:1rem;
}


/*HEADER*/
header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
	max-width:720px;
	height:75px;
	padding:0 2rem;
	margin:0 auto;
	background:#F1F1F1;
	z-index:99999999;
}
header.nonebg{background:#FFF}
header > * {
	flex-basis:33.33%;
	flex-grow:1;
}
header h1 {
	text-align:center;
	font-size:1.6rem;
	font-weight: var(--txt-bold);
  white-space: nowrap;
}
header h2 {
	text-align:left;
	font-size:22px;;
	font-weight: 700;
	line-height:26px;
    margin-top: 10px;
}
header .flex_nml,
header .flex_end {
	gap: 1.5em;
}
header .hd__logo img {
	width:11.4rem;
}

header .hd__submit {
	font-size:1.4rem;
	font-weight:var(--txt-bold);
	color:var(--txt-color-gray);
}
header .hd__submit.active {
	color:var(--color-pink);	
}
header.Left_ver .hd__back{
	width: 18px;
    flex-grow: inherit;
    flex-basis: auto;
    height:18px;
}
header.Left_ver .hd__back	a{		
	display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
header.Left_ver h2{
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: -0.03em;
	color: #333333;
	margin-top: 0;
	padding:0 1rem
}
header.join_type h1{
	text-align:left;
   margin-top: 2rem
}
header.join_type h2{
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: -0.03em;
	color: #333333;
}

/*MAIN*/
main {
	min-height:100vh;
	min-height: calc(var(--vh, 1vh) * 80);
} 
main#intro_Login,
main#my_join,
main#join_ok{
	min-height: calc(var(--vh, 1vh) * 100);
}
header + main {
	padding-top:75px;
    padding-bottom: 3rem;
}
.comm_wrap {
	max-width:100%;
	min-width:260px;
	padding:0 2rem;
}
main.view_type {
	background: #F8F8F8;
} 

/*FOOTER*/
footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width:100%;
	max-width:720px;
	margin:0 auto;
	background:#fff;
	border-top:1px solid #ddd;
	z-index: 99999999;
}
footer nav a {
	display:block;
	width:20%;
	padding:1.2rem 0;
	text-align:center;
}
footer nav a img {
	width:2.4rem;
}
footer nav a span {
	display:block;
	margin-top:0.5em;
	font-size:1.2em;
	color:var(--txt-color-gray);
}
footer nav a.on span {
	font-weight:var(--txt-bold);
	color:var(--color-pink);
}
.copy_Right{
	background:#E4E4E4;
	padding: 25px 1.455rem 3.182rem;
	margin-bottom: 65px;
}
.copy_Right.only{
	margin-bottom: 0;
}
.copy_Right p{
	font-size: 13px;
	line-height: 16px;
}
.copy_Right p + p{margin-top:.5rem} 

/* COMMON PADDING */
.col_pink{color:#FF8787 !important}
.inner {
	margin-left:1.5rem;
	margin-right:1.5rem;
}
.radius30 {
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	border-radius: 1.5rem;
	overflow:hidden;
}
.radius30.auto_over {
	overflow:inherit;
}

.mt20 {margin-top: 20px;}