@charset "utf-8";


@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:100;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Thin.woff2) format('woff2'), 
	url(/humanframe/global/assets/css/font/NotoSansKR-Thin.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NoNotoSansKR-Thin.otf) format('opentype');
}
@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:200;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Light.woff2) format('woff2'), 
	url(/humanframe/global/assets/css/font/NotoSansKR-Light.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Light.otf) format('opentype');
}
@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:400;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Regular.woff2) format('woff2'), 
	url(/humanframe/global/assets/css/font/NotoSansKR-Regular.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Regular.otf) format('opentype');
}

@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:700;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Medium.woff2) format('woff2'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Medium.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Medium.otf) format('opentype');
}
@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:800;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Bold.woff2) format('woff2'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Bold.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Bold.otf) format('opentype');
}
@font-face {
	font-family:'NotoSans'; font-style:normal; font-weight:900;
	src:url(/humanframe/global/assets/css/font/NotoSansKR-Black.woff2) format('woff2'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Black.woff) format('woff'),
	url(/humanframe/global/assets/css/font/NotoSansKR-Black.otf) format('opentype');
}
@font-face {
	font-family:'SCDream'; font-style:normal; font-weight:400;
	src:url(/humanframe/global/assets/css/font/SCDream4.woff) format('woff'),
	url(/humanframe/global/assets/css/font/SCDream4.otf) format('opentype');
}
@font-face {
	font-family:'SCDream'; font-style:normal; font-weight:600;
	src:url(/humanframe/global/assets/css/font/SCDream6.woff) format('woff'),
	url(/humanframe/global/assets/css/font/SCDream6.otf) format('opentype');
}
:root {
  --color-org: #e2571a;
  --color-pp: #5f48a0;
  --color-dpp: #51288f;
  --color-mgt: #e7539f;
  --color-dmgt: #df2886;
  --light-color:#76c900;
}


* {box-sizing:border-box;}
html {
	overflow-x: hidden;
	font-size:62.5%;
	scroll-behavior: smooth;
}
body {
	font-family: "NotoSans", sans-serif;
	line-height:1.4;
	font-weight:400;
	overflow-x: hidden;
	min-width:280px;
	margin:0 auto;
	color:#222;
	letter-spacing:-0.05em;
	word-break:keep-all;
	position:relative;
}
select, input, textarea, button {
	font-family:inherit;
}
img {
	vertical-align: top; 
	image-rendering: -webkit-optimize-contrast;
}
a, a:hover, a:focus {
	text-decoration:none;
}
.mo {display: block;}
.pc {display: none;}


/*---------------------------header*/
header{
	display:block;
	width:100%;
	margin:0 auto;
    z-index: 12;
    position: relative;
}
.headerWrap{
	display:block;
	width:100%;
	margin:0 auto;
    position: fixed;
    height: 125px;
    background: #fff;
    z-index: 10;
}
.headerInner{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position:relative;
}
.headerLeft{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
h1.logo{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px 0;
}
h1.logo > a.busanTitle{
	display:block;
    width: 99px;
    height: 31px;
    text-indent: -9999px;
    background: url(/humanframe/global/assets/img/common/logo.svg) no-repeat center center / contain;
}
h1.logo > a.reserveTitle{
    font-size: 3rem;
    font-family: 'SCDream';
    font-weight: 200;
    line-height: 1em;
    width: auto;
    height: auto;
}
h1.logo > a.reserveTitle > strong{
	font-weight:600;
}
.headerRight{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 45px 0;
}
.headerUtil{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap:0 13px;
    margin-top: 19px;
}
.headerUtil > li:nth-child(2){
	position:relative;
	padding:0 13px;
}
.headerUtil > li:nth-child(2)::after,
.headerUtil > li:nth-child(2)::before{
	display:block;
	content:'';
	width:1px;
	height:11px;
	background:#dbdbdb;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
}
.headerUtil > li:nth-child(2)::after{
	left:inherit;
	right:0;
}
.headerUtil > li > a{
    font-size:1.5rem;
    line-height:1em;
}
.headerUtil > li:nth-child(3){
	position:relative;
}
.headerUtil > li:nth-child(3) > button{
    padding: 0 20px 0 0;
    position:relative;
    text-indent:-9999px;
    background-image: url(/humanframe/theme/reserve/assets/img/new/common/iconLangSelect.png);
    width:18px;
    height:18px;
    background-repeat:no-repeat;
    background-position:center;
    background-size: auto auto;
	transition:0.2s;    
}
.headerUtil > li:nth-child(3) > button.on{
	transform:rotate(180deg);
	transition:0.2s;
}
.langList{
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    z-index: 4;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 1px 1px 16px rgba(0, 0, 0, 0.15);
}
.langList.on{
    height: auto;
    opacity: 1;
    visibility:visible;
    opacity:1;
    transition: all 0.2s ease-in-out;
}
.langList > li{
	display:block;
	width:100%;
}
.langList > li > a{
    padding: 11px 11px 7px;
    border-bottom: 1px solid #dbdbdb;
    display: block;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1em;
    font-weight: 700;
}
.langList > li > a:hover{
	font-weight:800;
	color:var(--color-dpp);
}
.langList > li:last-child > a{
	border-bottom:0;
}
.header-nav-btn,
.btn-menudrop{
	display:none;
	overflow:hidden;
	transition:0.2s;
}
nav{
    display: block;
}
.headerNavBtn{
	display:none;
}
.headerMenu{
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    gap: 0 76px;
    font-size: 2rem;
    font-weight: 800;
    line-height:1em;
}
.headerMenu > li > a{
    padding: 0 0 20px 0;
    display:block;
}
.headerMenu > .memberList{
	display:none;
}
/*---------------------------header*/

/*---------------------------content*/
#container{
	padding-top:125px;
	margin-top:0;
}
/*---------------------------content*/

/*---------------------------footer*/
footer{
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    background:#4b4956;
}
.footerInner{
    display: block;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.footerTop{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #76757e;
    padding: 23px 10px 18px 23px;
    width:100%;
}
.footerLogo > a{
	display:block;
}
.footerLinkList{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0 12px;
    font-size: 1.5rem;
    font-weight: 800;
}
.footerLinkList > li{
    padding-right: 14px;
    position:relative;
}
.footerLinkList > li::after{
	display:block;
	content:'';
	width:1px;
	height:11px;
	background:#8d8d91;
	position:absolute;
	right:0;
	top:50%;
	margin-top:-5.5px;
}
.footerLinkList > li:last-child{
	padding-right:0;
}
.footerLinkList > li:last-child::after{
	display:none;
}
.footerBottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 37px 10px 48px 23px;
    font-size: 1.5rem;
    line-height: 1em;
    font-weight: 700;
    width: 100%;
}
.callCenterBx{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}
.callTitle{
    font-size: 2.4rem;
    line-height: 1em;
    font-weight: 700;
}
.callTitle > strong{
	font-weight:800;
}
.addressBx{
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 8px 0;
}

.scrollTop{
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
	width:78px;
	height:78px;
	border:1px solid #ffffff60;
	border-radius:25px;
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:flex-end;
	padding-bottom:22px;
	background-image:url(/humanframe/theme/officehome/assets/img/common/icon_top.png);
	background-repeat:no-repeat;
	background-position:top 23px center;
	background-size: auto 9px;
	font-size:1.4rem;
	line-height:1em;
}
/*---------------------------footer*/

@media screen and (max-width: 1560px){
	.footerInner,
	.headerInner{
		max-width:inherit;
		padding:0 60px;
	}
}
@media screen and (max-width: 1284px){
	.footerInner,
	.headerInner{
		max-width:inherit;
		padding:0 32px;
	}
}
@media screen and (max-width: 1140px){
	.headerMenu{
		gap:0 38px;
	}	
}
@media screen and (max-width: 1024px){
	.headerWrap{
	    display: flex;
	    flex-direction: row;
	    justify-content: flex-start;
	    align-items: stretch;
	    height:auto;
	}
	.headerInner{
		height:100%;
		align-items:center;
		padding:0 16px;
        border-bottom: 1px solid #dbdbdb;
	}
	h1.logo{
		gap:4px 0;
		padding:16px 0;
	}
	h1.logo > a.busanTitle{
		width:79px;
		height:25px;
	}
	h1.logo > a.reserveTitle{
		font-size:2rem;
	}
	.headerUtil{
		display:none;
	}
	nav{
	    position: relative;
    }
	.headerNavBtn{
		display:block;
		width:21px;
		height:19px;
		position:relative;
	}
	.headerNavBtn > span{
		text-indent:-9999px;
		display:block;
		width:100%;
		height:3px;
		background-color:#383838;
		transition:0.2s;
	}
	.headerNavBtn > span::after,
	.headerNavBtn > span::before{
		display:block;
		content:'';
		width:100%;
		height:3px;
		background-color:#383838;
		position:absolute;
		left:0;
		top:0;
		transition:0.2s;
	}
	.headerNavBtn > span::after{
		top:inherit;
		bottom:0;
	}
	.headerMenu{
		display:none;
	}
	.headerMenu.on{
		display:flex;
		max-width:480px;
        position: fixed;
        right: 0;
        top: 82px;
        background: #fff;
        width: 100vw;
        height: calc(100vh - 81px);
        z-index: 2;
        overflow-y: scroll;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
	}
	.navBg.on::after{
		display:block;
		content:'';
		width:100vw;
        height: calc(100vh - 81px);
        background: #00000060;
        position: fixed;
        right: 0;
        top: 81px;
        z-index: 1;
	}
	.headerNavBtn.on{
		height:21px;
	}
	.headerNavBtn.on > span{
		background:#22222200;
		transition:0.2s;
	}
	.headerNavBtn.on > span::before{
		top:50%;
		transform:rotate(45deg);
		transition:transform 0.2s;
	}
	.headerNavBtn.on > span::after{
    	bottom: 32%;
		transform:rotate(-45deg);
		transition:transform 0.2s;
	}
	.headerMenu > li{
		padding:20px;
		border-bottom:1px solid #dbdbdb;
	}
	.headerMenu > li > a{
		padding:0;
	}
	.headerMenu > .memberList{
		display:block;
		padding:0;
		border-bottom:0;
	}
	.headerMenu > .memberList > .headerUtil{
        position: relative;
        z-index: 3;
        background: #fff;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        border-bottom: 1px solid #dbdbdb;
        gap:0;
        margin:0;
    }
	.headerMenu > .memberList > .headerUtil > li{
        width: 33.3333%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
     }
	.headerMenu > .memberList > .headerUtil > li > a{
        width: auto;
        padding: 20px 0 20px 24px;
    	background-image: url(/humanframe/theme/reserve/assets/img/new/common/icon_login.png);
        background-position: left center;
        background-repeat:no-repeat;
        font-size: 1.5rem;
        font-weight:400;
        line-height: 1.8rem;
      }
	.headerMenu > .memberList > .headerUtil > li:nth-child(2) > a{
    	background-image: url(/humanframe/theme/reserve/assets/img/new/common/icon_join.png);
	}
	.headerMenu > .memberList > .headerUtil > li:nth-child(3) > a{
    	background-image: url(/humanframe/theme/reserve/assets/img/new/common/icon_lang.png);
   	}
    .langList{
      	top:100%;
      }
      
	.headerUtil > li:nth-child(2)::after,
	.headerUtil > li:nth-child(2)::before{
		height:100%;
	}
	#container{
		padding-top:81px !important;
	}
	.footerInner{
		padding:0 16px;
	}
	.footerTop,
	.footerBottom{
        flex-direction: column;
        align-items: center;
	}
	.footerTop{
    	padding: 27px 0 19px;
	}
	.footerLinkList{
		display:none;
	}
	.footerBottom{
	    padding: 20px 0 26px;
	    font-size: 1.4rem;
	    gap: 30px;
	}
	.callCenterBx{
	    gap: 8px;
	    align-items: center;
    }
    .callTitle{
    	font-size:2rem;
    }
    .addressBx > .address{
    	display:none;
    }
	/*hover 삭제*/
	
}
@media screen and (max-width: 880px){
	.site_info_wrap{
		flex-direction:column;
		padding-top:36px;
	}
	.scrollTop{
	    width: 48px;
	    height: 48px;
	    top: 17px;
	    font-size: 0.9rem;
	    padding-bottom: 13px;
	    background-size: auto 6px;
	    background-position: top 14px center;
	    transform:inherit;
    }
}
@media screen and (max-width: 768px){
	body{
		font-size:1.5rem;
	}
	.footerInner{
		padding:0 20px;
		text-align:center;
	}
}

/*float Banner*/
.floatingWrap{	
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 16px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 300px 0;
    z-index:11;
    width:150px;
}
.floatingBx.pc{
    display: block;
    width: 167px;
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    padding:22px 8px 22px 9px;
    position:relative;
}
.floatingBx.mobile{
	display:none;
}
.floatingBx.pc::after{
	display:block;
	content:'';
	width:96px;
	height:75px;
	position:absolute;
	top:-59px;
	left:50%;
	transform:translateX(-50%);
	background-image:url(/humanframe/theme/reserve/assets/img/new/common/floatBoogi.png);
	background-position:absolute;
	background-size:100% auto;
	background-repeat:no-repeat;
	
}
.floathoverBx{
    position: relative;
}
.floathoverBx > .floatImgBx{
    padding-top: 71px;
    background-image: url(/humanframe/theme/reserve/assets/img/new/common/floatTitleBg.png);
    background-size: auto;
    background-position: top center;
    background-repeat: no-repeat;
}
.floathoverBx > .floatImgBx > img{
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    aspect-ratio: 1.6;
    object-fit: cover;
}
.floathoverBx > .hoverBx{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    padding: 34px 16px 34px 40px;
    background: #f3f3f8;
    width: 725px;
    gap: 0 30px;
    z-index: 9;
    border-radius:10px;
    margin-left:16px;
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
    width:0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.floathoverBx:hover > .hoverBx{
	width:725px;
    opacity: 1;
    pointer-events: auto;
}
.floathoverBx > .hoverBx::after{
	display:block;
	content:'';
	position:absolute;
	width:13px;
	height:15px;
	background-image:url(/humanframe/theme/reserve/assets/img/new/common/hoverItem01.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:100% auto;
	top:40px;
	left:-13px;
}
.floathoverBx > .hoverBx > .hoverInnerBx{
    display: block;
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transform: translateY(-20px);	
}
.floathoverBx:hover > .hoverBx > .hoverInnerBx {
    animation: slideFade 0.6s ease forwards;
}
.floathoverBx:hover > .hoverBx > .hoverInnerBx:nth-child(1) {
    animation-delay: 0.4s;
}
.floathoverBx:hover > .hoverBx > .hoverInnerBx:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.floathoverBx > .hoverBx > .hoverInnerBx:nth-child(1){
	padding-right:35px;
	border-right:1px solid #dbdbdb;
}
.floatingInnerBx > .title{
    color: var(--color-pp);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1em;
    margin-bottom: 16px;
}
.floatingInnerBx > .subTitle{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 20px;
}
.floatingInnerBx > .subTitle > .ft18{
   	font-size: 1.8rem;
}
.floatingPopup .floatingContentBx.bx02{
    border-radius: 10px;
    height: auto;
}
.floatingInnerBx > .incgraph{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width:100%;
    margin-bottom:34px;
}
.floatingInnerBx > .incgraph > li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position:relative;
   }
.floatingInnerBx > .incgraph > li:nth-child(1){
    width: 58px;
    height: 58px;
    border-radius: 30px;
    background: #898989;
   }
.floatingInnerBx > .incgraph > li::after{
       display: block;
       content: '';
       width: 33px;
       height: 22px;
       position: absolute;
       left: calc(100% - 6px);
       bottom: 13px;
       background-size: auto;
       background-position: right top;
       background-repeat: no-repeat;
}
.floatingInnerBx > .incgraph > li:nth-child(1)::after{
	background-image:url(/humanframe/theme/reserve/assets/img/new/common/incgraphArrowPk.png);
}
.floatingInnerBx > .incgraph > li:nth-child(2){
    width: 71px;
    height: 71px;
    border-radius: 38px;
	background:#d70065;
}
.floatingInnerBx > .incgraph > li:nth-child(2)::after{
	background-image:url(/humanframe/theme/reserve/assets/img/new/common/incgraphArrowGr.png);
       bottom: 20px;
}
.floatingInnerBx > .incgraph > li:nth-child(3){
    width: 87px;
    height: 87px;
    border-radius: 45px;
    background: #898989;
   }
.floatingInnerBx > .incgraph > li:nth-child(1) > .year{
   	font-size: 1.3rem;
  	}
.floatingInnerBx > .incgraph > li:nth-child(2) > .year{
   	font-size: 1.4rem;
  	}
.floatingInnerBx > .incgraph > li:nth-child(3) > .year{
   	font-size: 1.8rem;
  	}
.floatingInnerBx > .incgraph > li > .perc{
   	font-size: 1.6rem;
   	font-weight: 700;
  	}
.floatingInnerBx > .incgraph > li:nth-child(2) > .perc{
	font-size:2.2rem;
}
.floatingInnerBx > .incgraph > li:nth-child(3) > .perc{
	font-size:2.4rem;
}
.floatingInnerBx > .incgraph > li > .perc > .mark{
   	font-size: 1.2rem;
}
.floatingBx.pc > .title{
	margin:10px auto;	
}
.floatingBx.pc > .title > p{
    font-size: 2rem;
    font-weight: 700;
    padding-top: 30px;
    background-image: url(/humanframe/theme/reserve/assets/img/new/common/floatTitleImg.png);
    background-repeat: no-repeat;
    background-size: auto 24px;
    background-position: top center;
    line-height: 1em;
    text-align: center;
}
.sportList{
	display:block;
	width:100%;
}
.sportList > li{
	display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 9px 4px 11px;
    border-top: 1px solid #dbdbdb;
}
.sportList > li:last-child{
	padding-bottom:0;
}
.sportList > li > .centerTitle{
    font-size: 1.5rem;
    line-height: 1.2em;
    font-weight: 800;
    padding-left: 4px;
}
.sportList > li > .centerCount{
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-pp);
    line-height:1em;
    padding-right: 4px;
}
.sportList > li > .centerCount > span{
    font-size: 1.5rem;
    color: #1b100b;	
}
.centerInfoBx{
	width:100%;
}
li:last-child .centerInfoBx{
	margin-top:6px;
}
.centerInfoBx > .linkList{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	margin: 0;
    width: 100%;
}
.centerInfoBx > .linkList::after{
	display:none;
}
.centerInfoBx > .linkList > li{
    width: calc(50% - 5px);
}
.centerInfoBx > .linkList > li > a{
	background: #e9e8e4;
	border: 1px solid #dbdbdb;
	border-radius: 5px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1em;
    padding: 4px 0;
    text-align: center;
}
.centerInfoBx > .linkList > li > a:hover{
	color:#222;
}
.topBx{
    width: 52px;
    height: 52px;
    display:block;
    overflow: hidden;
    border-radius: 26px;
}
.topBx > button{
	width:100%;
	height:100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.topBx > button > span{
    font-size: 1.4rem;
    line-height: 1em;
    color: #fff;
    font-weight: 800;
    padding-top: 11px;
    display: block;
    background-image: url(/humanframe/theme/reserve/assets/img/new/common/btnTop.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center top;
    text-align:center;	
}

/*listStyle 수정*/
.listStyle li:before, .listStyle dt:before{
    width: 8px;
    height: 3px;
    background: #444;
}
.listStyle > li{
	color:#444;
}
.listStyle > li > ul > li, .listStyle dd li{
	color:#444;
}
.listStyle > li > ul > li:before{
    width: 3px;
    height: 3px;
    background: #444;	
}
@media screen and (max-width: 1024px){
	.floatingWrap{
		right:0;
        gap: 4px 0;
        z-index:11;
        align-items: flex-end;
        width:auto;
	}
	.floatingBx.pc{
	    display: none;
	}
	.floatingBx.mobile{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px 0;
		
	}
	.floatBtn{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4px 0;
	    width: 37px;
        padding: 15px 0 10px;
	    background-color: var(--color-dmgt);
	    border-radius: 5px 0 0 5px;
	    color: #fff;
	    font-weight: 800;
        font-size: 1.5rem;
        background-repeat: no-repeat;
        background-position: center top 16px;
        background-size: auto;
        letter-spacing: -0.05em;
        position: relative;
    }
	.floatBtn:first-child::before{
		display:block;
		content:'';
		width:37px;
		height:32px;
		background-image:url(/humanframe/theme/reserve/assets/img/new/common/mainPopupBtnItem01.png);
		background-position:center;
		background-size:100% auto;
		background-repeat:no-repeat;
		position:absolute;
		top:-23px;
		right:0;
	}
	.floatBtn:nth-child(2){
		padding-bottom:12px;
	}
	.floatingPopup {
	  display: none;
	}
	
	.floatingPopup.active {
        display: flex;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.85);
        height: 100vh;
        width: 100vw;
        border-radius: 0;
	}
	.floatingPopup .controlBx{
		display:flex;
		flex-direction:row;
		justify-content:space-between;
		align-items:center;
		width:100%;
		max-width:343px;
        margin-bottom: 17px;
	}
	.floatingPopup .controlBx > .title{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 0 13px;
		font-size:1.8rem;
		font-weight:800;
		line-height:1em;
		color:#fff;
	}	 
	.floatingPopup .controlBx > .title > span:nth-child(2){
		padding-left:8px;
		border-left:1px solid #fff;
	}

	.floatingPopup .popupClose {
		text-indent:-9999px;
		background-image:url(/humanframe/theme/reserve/assets/img/new/common/btnClose.png);
		display:block;
		width:22px;
		height:22px;
		background-size:100%;
		background-repeat:no-repeat;
		background-position:center;
		margin-left:18px;
	}
	.floatingPopup .controlBx.abs{
	    position: relative;
	    justify-content: flex-end;
    }
	.floatingPopup .controlBx.abs > .title{
	    position: absolute;
	    top: -12px;
	    left: 10px;
    }
	.floatingPopup .floatingContentBx{
		width:100%;
		max-width:343px;
	    background: #fff;
	    padding: 15px 16px 22px 27px;
	    height:327px;
	    overflow:hidden;
    }
	.floatScrollBx{
		height:100%;
		overflow-y:auto;
        overflow-x: hidden;
	}
	.floatingInnerBx{
    	padding: 16px 11px 16px 0;
    }
	.centerInfoBx{
		width:auto;
	}
	.centerInfoBx > .linkList{
	    width: auto;
	}
	.centerInfoBx > .linkList > li{
		width:auto;
	}
    .sportList{
	    display: block;
	    width: 100%;
    }
    .sportList > li:last-child,
    .sportList > li{
    	border-top:0;
	    border-bottom: 1px solid #d1d1d1;
	    padding: 14px 0 11px;
    }
    .sportList > li > .centerTitle{
	    font-size: 2rem;
	    font-weight: 800;
	    margin-bottom: 10px;
    }
    .sportList > li > .centerInfoBx{
	    display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	    align-items: flex-end;
	    width: 100%;
    }
    .sportList > li > .centerInfoBx > .centerCount{
	    font-size: 3rem;
	    color: var(--color-pp);
	    font-weight: 800;
	    line-height: 1em;
    }
    .sportList > li > .centerInfoBx > .centerCount > span{
    	font-size: 1.5rem;
    }
	.centerInfoBx > .linkList > li > a{
		padding:11px 22px;
		font-size:1.6rem;
	}
	.topBx{
	    display: block;
	    width: 37px;
	    height: 47px;
	    border-radius: 5px 0 0 5px;
    }
    .topBx > button > span{
    	font-size:1.2rem;
    }
}





/*floatingBanner*/
.floatingBanner{
    display: block;
    z-index:2;
}
.floatingBanner.close {
	display: none;
}
.floatingBanner > a{
	display:block;
}
.floatingBanner > a > img{
	display:block;
}
.floatingBanner .closeBtn {
	display: block;
	position: absolute;
	top: -10px;
	left: -10px;
	width: 29px;
	height: 29px;
	background-image: url('/humanframe/theme/reserve/assets/img/common/pop_close02.png');
	background-size:100%;
	background-position:center;
	background-repeat:no-repeat;
	border-radius:17px;
}
.floatingBanner.todayClose{	
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    gap: 1px 0;
}
.floatingBanner.todayClose > .closeBtn{
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: #000000;
    color: #fff;
    background-image: url('/humanframe/theme/reserve/assets/img/new/common/btnClose.png');
	padding:5px 25px 6px 15px;
	background-size:auto 13px;
    background-position: right 10px center;
    text-align: left;
}
@media all and (max-width:1400px){
	.floatingBanner{
	    top: inherit;
	    bottom: 100px;
	    left: inherit;
	    right: 0px;
	    transform: inherit;
    }
	.floatingBanner .closeBtn {
		left: -9px;
		top: -16px;
	}	
}

@media all and (max-width:1024px){
	
    .floatingBanner {
        max-width: 100px;
    }
	.floatingBanner.todayClose > .closeBtn{
    font-size: 0.8em;
    letter-spacing: -0.1em;
    white-space: nowrap;
    padding-left: 8px;
    background-size: auto 10px;
	}
}