@charset "utf-8";


#wrap {
	max-width: 1024px;
	margin: 0 auto;
}

.inner {
	position: relative;
	width: 100%;
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: sticky;
	top: 0;
	width: 100%;
	max-width: 1024px;
	padding: 20px 20px 16px;
	background: var(--white);
	box-sizing: border-box;
	z-index: 5;
}
#header h3 {
	font-size: 2rem;
	font-weight: 500;
	color: #aaa;
}
#header h3 a {
	font-weight: 500;
	color: #aaa;
}
#header h3 img {
	width: 24px;
	margin-right: 5px;
}
#header .alarm {
	width: 24px;
	height: 24px;
	background: url("../images/ic_alarm.svg")no-repeat 50% 50%;
}
#header .setting {
	display: none;
	width: 24px;
	height: 24px;
	background: url("../images/ic_setting.svg")no-repeat 50% 50%;
}




#container {
	width: 100%;
	padding: 0 0 130px;
}



#footer {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1024px;
	border-radius: 10px 10px 0px 0px;
	background: var(--white);
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);
	z-index: 999;
	padding: 22px 16px;
	box-sizing: border-box;
}
#footer ul li {
	flex: 1;
	text-align: center;
}
#footer ul li a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1.2rem;
	font-weight: 600;
	padding-top: 40px;
}
#footer ul li.active a {
	opacity: 1;
}
#footer ul li.ft01 a {
	background: url("../images/ft01.svg")no-repeat 50% 0;
}
#footer ul li.ft01.active a {
	background: url("../images/ft01_on.svg")no-repeat 50% 0;
}
#footer ul li.ft02 a {
	background: url("../images/ft02.svg")no-repeat 50% 0;
}
#footer ul li.ft02.active a {
	background: url("../images/ft02_on.svg")no-repeat 50% 0;
}
#footer ul li.ft03 a {
	background: url("../images/ft03.svg")no-repeat 50% 0;
}
#footer ul li.ft03.active a {
	background: url("../images/ft03_on.svg")no-repeat 50% 0;
}
#footer ul li.ft04 a {
	background: url("../images/ft04.svg")no-repeat 50% 0;
}
#footer ul li.ft04.active a {
	background: url("../images/ft04_on.svg")no-repeat 50% 0;
}

#footer_util {
	background: var(--white);
	border-radius: 20px 20px 0 0;
	padding: 20px 20px 110px;
	box-sizing: border-box;
}
#footer_util h4 {
	font-size: 1.4rem;
}
#footer_util .addr {
	padding: 15px 0;
}
#footer_util .addr > div {
	padding: 3px 0;
}
#footer_util .addr span {
    position: relative;
	display: inline-block;
    font-size: 12px;
    color: #9A9A9A;
    font-weight: 500;
    margin-right: 10px;
}
#footer_util .addr span:after {
	content: '';
	position: absolute;
	top: 4px;
	right: -7px;
	display: block;
	width: 1px;
	height: 4px;
	background: #CFCFCF;
}
#footer_util .addr span:last-child {
	margin-right: 0;
}
#footer_util .addr span:last-child:after {
	display: none;
}
#footer_util .copy {
	text-align: center;
	font-size: 12px;
	color: #afafaf;
}



.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1000;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 1001;
	background: #fff;
	border-radius: 10px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 20px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	font-size: 2rem;
	margin-bottom: 15px;
	padding: 20px 15px 0;
}
.modal .cont {
	font-size: 1.6rem;
	white-space: pre-line;
	line-height: 1.4;
}
.modal .btn_area {
	margin: 40px -20px -20px;
}
.modal .btn_area a,
.modal .btn_area button {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 0;
}

#modify_pop p {
	font-size: 1.8rem;
}
#modify_pop .btn_area {
	margin: 25px 0 0;
}
#modify_pop .btn_area button {
	border-radius: 15px;
}



.bottom_modal {
	position: fixed;
	opacity: 0;
    z-index: -1;
}
.bottom_modal .black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.bottom_modal .modal_cont {
	position: fixed;
	bottom: -100%;
	width: 100%;
	max-width: 1024px;
	z-index: 9999;
	max-height: 90vh;
	transition: bottom .3s;
}
.bottom_modal.open {
	opacity: 1;
	z-index: 99;
}
.bottom_modal.open .modal_cont {
	bottom: 0;
}
.bottom_modal.open .black_bg {
	display: block;
}
.bottom_modal .modal_cont .scroll {
	overflow-y: auto;
	padding: 24px 12px;
	background: var(--white);
	border-radius: 10px 10px 0px 0px;
}
.bottom_modal .modal_cont h3.title {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 25px;
	word-break: keep-all;
}
.bottom_modal .modal_cont .desc {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 15px;
}
.bottom_modal .modal_cont .flex_list {
	gap: 15px;
}
.bottom_modal .modal_cont .flex_list > div {
	font-size: 1.4rem;
	gap: 7px;
	font-weight: 500;
}
.bottom_modal .modal_cont .flex_list > div p {
	color: #aaa;
	font-weight: 400;
}
.bottom_modal .modal_cont .btn_area {
	margin-top: 25px;
	gap: 10px;
}
.bottom_modal .modal_cont .btn_area > * {
	flex: 1;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 15px;
	font-size: 1.6rem;
	font-weight: 500;
}


.not_scroll {
	overflow: hidden;
}


.drop_down {
	position: relative;
	width: 51px;
	box-sizing: border-box;
}
.drop_down > button {
	position: relative;
	font-size: 1.4rem;
	color: #000;
	width: 100%;
	height: 29px;
    text-align: left;
	border-radius: 5px;
	border: 1px solid #E1E5E9;
	padding: 0 10px;
	background: #FFF url("../images/arrow_down.svg")no-repeat 87% 50% / 10px;
	box-sizing: border-box;
}
.drop_down ul {
	display: none;
	position: absolute;
	top: 32px;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	padding: 10px;
	border: 1px solid #E1E5E9;
	box-sizing: border-box;
	z-index: 1;
}
.drop_down ul li button {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    color: #3f3f3f;
    padding: 3px;
    box-sizing: border-box;
}


.tabs {
	border-bottom: 4px solid var(--strock);
	background: #FFF;
}
.tabs a,
.tabs button {
	flex: 1;
	position: relative;
	font-size: 1.6rem;
	color: #aaa;
	padding: 16px 0;
	font-weight: 500;
	text-align: center;
}
.tabs a.active,
.tabs button.active {
	color: var(--black);
	font-weight: 700;
}
.tabs a.active:after,
.tabs button.active:after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background: var(--key-color);
}


.pagenavi {
	margin-top: 40px;
}
.pagenavi ol {
	justify-content: center;
	gap: 5px;
}
.pagenavi ol li {
	
}
.pagenavi ol li img {
	vertical-align: 0px;
}
.pagenavi ol li a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #aaa;
	font-size: 1.6rem;
}
.pagenavi ol li.this a {
	border-radius: 5px;
	color: var(--white);
	background: var(--key-color);
	border-radius: 50%;
}



.sec {
	padding: 30px 0 0;
}

h3.tit {
	font-size: 2rem;
	margin-bottom: 16px;
	text-transform: uppercase;
	font-weight: 400;
}

.title_area {
	position: sticky;
	top: 0;
	width: 100%;
	height: 55px;
	background: var(--white);
	z-index: 5;
	align-items: center;
	padding: 16px 20px;
	gap: 8px;
	max-width: 1024px;
	margin: 0 auto;
	box-sizing: border-box;
}
.title_area h3 {
	font-size: 1.6rem;
	font-weight: 400;
}
.title_area .prev {
	width: 24px;
	height: 24px;
	background: url("../images/arrow-left.svg")no-repeat 50% 50%;
}
.title_area .close {
	width: 24px;
	height: 24px;
	background: url("../images/ico-close.svg")no-repeat 50% 50%;
}
.title_area .home {
	width: 24px;
	height: 24px;
	background: url("../images/ft01.svg")no-repeat 50% 50% / 100%;
}
.title_area .alarm {
	width: 22px;
	height: 24px;
	background: url("../images/ico-alarm.svg")no-repeat 50% 50% / 100%;
}



#loading_img {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
    background-color : rgba(16, 16, 16, 0.7);
}
#loading_img span {
	position: absolute;
    top: 50%;
    left: 50%;
	display: block;
	height: 60px;
	width: 60px;
	border: 5px solid transparent;
    border-radius: 50%;
    background-image: linear-gradient(rgb(90, 90, 90), rgb(90, 90, 90)), conic-gradient(from 180deg at 50% 50%, var(--key-color) 0deg, rgba(255, 255, 255, 0) 360deg);
    background-origin: border-box;
    background-clip: content-box, border-box;
	box-sizing: border-box;
	animation: spin 800ms infinite linear;
}

@keyframes spin {
	from {
		transform: translate(-50%,-50%) rotate(0deg);
	}
	to {
		transform: translate(-50%,-50%) rotate(359deg);
	}
}


.st .fix_btn {
	display: none;
}
.fix_btn {
	position: fixed;
	bottom: 105px;
	right: calc(50% - 492px);
	z-index: 11;
}
.fix_btn a {
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid var(--strock);
    background: rgba(255, 255, 255, 0.80) url("../images/ic_estimate.svg")no-repeat 50% 12px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    font-size: 1.4rem;
    font-family: 'KORAIL';
    text-align: center;
    padding-top: 47px;
    box-sizing: border-box;
}




@media screen and (min-width: 1025px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}