@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap');

/* Reset start */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans KR", sans-serif;
    font-size: inherit;
    word-break: keep-all;
}
a{text-decoration: none; color: #fff;}
li{list-style: none;}
button{outline: none; border: none; cursor: pointer;}
html{font-size: 62.5%; /* 1rem = 10px */ overflow-x: hidden;}
body{position: relative; width: 100%; min-height: 100vh;}
.br{display: block;}
/* Reset end */


.wrapper{
	display: flex;
    gap: 6rem;
	
    position: relative;
    width: 100%;
    height: 100%;
    
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 5rem;
}

/* aside (RDWMS,고급기능,상담신청,요금안내,고객센터 페이지 - 사이드 네비게이션바) */
#aside{
    position: sticky;
    top: 14.2rem;
    left: 0;
    width: 160px;
    height: 100%;
}

#aside > ul{
	/* border: 1px solid #aaa; */
}

#aside > ul > li{
	height: 42px;
	margin-bottom: 10px;	
}

#aside > ul > li:last-child{
	margin-bottom: 0;
}

#aside > ul > li.on a{
	background: #000;
	color: #fff;	
}

#aside > ul > li a{
	display: block;
	padding: 1rem;
    border-radius: 1.5rem 0 0 1.5rem;
    color: #aaa;
    font-size: 1.4rem;
}

section{
    width: calc(100% - 160px);
}

/* 각 article 공통 START */
section article{
    position: relative;
    width: 100%;
    height: auto;
    /* border: 1px solid tomato; */
}

section article div strong{
    display: block;
    margin: 2rem 0 5rem;
	font-size: 3rem;
}

section article div.title{
	display: flex;
    gap: .5rem;
    height: 9rem;
    margin-bottom: 1rem;
}

section article div.title p,
section article div.title h1{
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 4rem;
}

section article div.title h1:last-child{
	position: relative;
	/* width: 100%; */
	height: 100%;
	line-height: 13rem;
}

section article div.title h1:last-child:before{
	content: "";
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    height: 13%;
    z-index: -1;
    background: #ccd0f3;
    mix-blend-mode: difference;
    transform: skewX(-24deg);
    border-radius: .3rem;
}

section article div.title span{
    display: block;
    transform: rotate(24deg);
    background-color: #fff;
    border: 1px solid transparent;
    border-image: linear-gradient(to right, #fff 0%, #000 50%, #fff 100%);
    border-image-slice: 1;
}

/* 첫번째과 마지막 article 사이의 article */
section article:not(:first-child):not(:last-child){
	padding: 10rem 0;
	border-top: 1px solid #aaa;
}
/* 각 article 공통 END */

/* RDWMS 페이지 start */
/* Article 1 */
#rdwmsPage section article:nth-of-type(1){
	padding-bottom: 10rem;
	
}

#rdwmsPage section article:nth-of-type(1) div ul{
	display: flex;
    gap: 1rem;
    height: 106.7rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

#rdwmsPage section article:nth-of-type(1) div ul li{
	width: calc(100% / 4 - 1rem);
	height: calc(100% / 4 - 1rem);
    padding: 3rem;
    border: 3px solid #ccc;
    border-radius: 2rem;
    transition: 0.2s;
}

#rdwmsPage section article:nth-of-type(1) div ul li:hover{
	/* border: 2px solid #2196F3; */
	border: 3px solid #4a60db;
    box-shadow: 2px 2px 5px #999;
}

#rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(1){
	/* font-size: 4rem; */
}

#rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(2){
	font-size: 2.3rem;
    font-weight: bold;
    padding: 2rem 0 1rem 0;
}

#rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(3){
	font-size: 1.5rem;
	white-space: break-spaces;
    word-break: keep-all;
}

/* Article 2 */
#rdwmsPage section article:nth-of-type(2) > div > p{
	margin-top: 5rem;
}

#rdwmsPage section article:nth-of-type(2) > div > p img{
	width: 100%;
	height: 100%;
}

/* Article 3 */
#rdwmsPage section article:nth-of-type(3){
}

#rdwmsPage section article:nth-of-type(3) div > ul{
	display: flex;
	justify-content: center;
	
	position: relative;
    width: 100%;
    height: 100%;
    margin-top: 6rem;
    /* padding: 0 20px 0 0; */
    border: 1px solid #5d72dd;
    border-radius: 1rem;
    box-shadow: 2px 2px 8px #aaa;
    
    
    
    
}
#rdwmsPage section article:nth-of-type(3) div > ul > li{
    position: relative;
	width: calc(100% / 5);
    height: auto;
    padding-bottom: calc(100% / 5);
    /* border: 4px solid #5d72dd;
    border-radius: 50%; */
}

#rdwmsPage section article:nth-of-type(3) div > ul > li:first-child{
	margin-left: 4rem;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li:last-child{
	margin-left: -4rem;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li > div{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
	
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 95%;
    height: 95%;
    text-align: center;
    /* border-radius: 50%;
    box-shadow: 2px 2px 5px #777; */
}
#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1){
	display: flex;
    align-items: center;
    gap: 1.5rem;
	
	font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.15;
    color: #5d72dd;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1) span:nth-of-type(1){
    display: inline-block;
    width: 45px;
    height: 45px;
    padding: .6rem;
    border-radius: 50%;
    background-color: #e2e4f9;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1) span:nth-of-type(2){
    margin-left: 2rem;
	font-size: 2rem;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1) img{
	width: 100%;
	height: 100%;
}

#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(2){
	font-size: 1.5rem;
	font-weight: 500;
}
/* #rdwmsPage section article:nth-of-type(3) div > ul > li > p{
	position: absolute; z-index: 1;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 50%;
    font-size: 1.8rem;
    background-color: #29689d;
    color: #fff;
    text-align: center;
} */

/* Article 4 */
#rdwmsPage section article:nth-of-type(4){
}

#rdwmsPage section article:nth-of-type(4) > div strong{
	margin-bottom: 8rem;
}

#rdwmsPage section article:nth-of-type(4) > div > ul{
    display: flex;
    gap: 2.4rem;
    position: relative;
    width: 100%;
    height: 100%;
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li{
	width: calc(100% / 3);
    height: 40rem;
    box-shadow: 2px 2px 5px #777;
    border-radius: 3rem;
    overflow: hidden;
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(1){
    position: relative;
	height: 50%;
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li:nth-of-type(1) div:nth-of-type(1){background: #ff9999;}
#rdwmsPage section article:nth-of-type(4) > div > ul > li:nth-of-type(2) div:nth-of-type(1){background: #fff798;}
#rdwmsPage section article:nth-of-type(4) > div > ul > li:nth-of-type(3) div:nth-of-type(1){background: #c8b0fe;}

#rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(1) p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(2){
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    height: 50%;
    background-color: #f4f4f4;
    text-align: center;
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(2) p:nth-of-type(1){
	font-size: 3rem;
    font-weight: 500;
}

#rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(2) p:nth-of-type(2){
	font-size: 2rem;
}

#rdwmsPage section article:nth-of-type(4) > div > p{
    margin-top: 5rem;
	font-size: 2.5rem;
    font-weight: 500;
}

/* Article 5 */
#rdwmsPage section article:nth-of-type(5){
}

#rdwmsPage section article:nth-of-type(5) > div{
}

#rdwmsPage section article:nth-of-type(5) > div > strong{
}

#rdwmsPage section article:nth-of-type(5) > div > ul{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    position: relative;
    width: 90%;
    height: 70rem;
    flex-wrap: wrap;
    
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li{
    position: relative;
    width: calc(100% / 3 - 2rem);
    height: calc(100% / 3 - 2rem);
    border-radius: 3rem;
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li:hover{
	
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div{
	width: 100%;
	height: 100%;	
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div:first-child{
	padding: 2rem;
	background-color: #eee;
    border-radius: 3rem;
	transition: .2s;
	/* box-shadow: 3px 3px 5px 0px #2196f340; */
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li:hover div:first-child{
	transform: translate(-1.2rem, -1.2rem);
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li:hover div:last-child{}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div:last-child{
    position: absolute; z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3.5rem;
    background-color: #5c69e9;
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div p{
	
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(1){
	width: 7rem;
	height: 7rem;
	margin-left: auto;
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(1) img{
	width: 100%;
	height: 100%;
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(2){
	margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 600;
}

#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(3){
	font-size: 1.5rem;
}
/* Article last */
section article:last-child{
	margin-bottom: 0 !important;
	padding: 10rem 0 0;
	border-top: 1px solid #aaa;
}

/* Article 6,7 */
#rdwmsPage section article:nth-of-type(6) img,
#rdwmsPage section article:nth-of-type(7) img{
	/* width: 100%; */
	position: relative;
	width: 85%;
	left: 50%;
	transform: translateX(-50%);
}

#rdwmsPage section article:nth-of-type(6) p{
}

#rdwmsPage section article:nth-of-type(6) > div > p,
#rdwmsPage section article:nth-of-type(7) > div > p{
	width: 100%;
    border: 2px solid #000;
    border-radius: 2rem;
    box-shadow: 0px 0px 10px #999;
    background: #fff;
}

#rdwmsPage section article:nth-of-type(7){padding-bottom: 2rem;}

#rdwmsPage section article:nth-of-type(7) div > strong{
	/* padding-bottom: 10rem; */
}

#rdwmsPage section article:nth-of-type(7) > div > p{
	/* width: 80%; */
	width: 100%;
}

#rdwmsPage section article:nth-of-type(7) .backgroundDiv{
    /* display: none; */
    position: absolute; z-index: -1;
    bottom: 0;
    left: calc(50% - 10.6rem);
    width: calc(100vw - .2rem);
    height: calc(100% - 36rem);
    transform: translateX(-50%);
    background: #edf5ff;
}

/* RDWMS 페이지 end */

/* 고급기능 페이지 start */
#featuresPage img{
	width: 100%;
	height: 100%;
}

#featuresPage section article{
	margin: 10rem 0;
}

#featuresPage section article:not(:first-child):not(:last-child){
	padding: 10rem 0 0;
}

#featuresPage section article:nth-of-type(1){
	margin-top: 0;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2){
   	display: flex;
    gap: 4rem;
    height: 55rem;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    
    position: relative;
    width: 38%;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    position: relative;
    width: 100%;
    padding: 1rem;
    font-size: 2rem;
    border: 3px solid #5c69e9;
    border-radius: 3rem;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li.on{
	box-shadow: 2px 2px 5px #aaa;
    box-sizing: border-box;
    background-color: #f2f3ff;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li p:nth-of-type(1){
    position: absolute;
    bottom: -3.3rem;
    right: 0;
    font-size: 9rem;
    font-weight: 800;
    font-family: emoji;
    color: #dcdefd;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li.on p:nth-of-type(1){color: #5c69e9;}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li p:nth-of-type(2){
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    font-size: 2.8rem;
    font-weight: 700;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div{
	position: relative;
    width: 45%;
    border-radius: 4rem 0rem 0rem 4rem;
    background-image: url(/rdscm/images/cartonization.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div p{
    display: none;
    
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem 2rem 2rem;
    height: 40%;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}

#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div p:nth-of-type(1){display: block;}

#featuresPage section article:nth-of-type(1) img{
	width: 100%;
	height: 100%;
}

#featuresPage section article:nth-of-type(2) div:nth-of-type(2){
    border-radius: 2rem;
    overflow: hidden;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(1){
	display: flex;
	width: 100%;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(1) li{
	display: block;
    width: calc(100% / 5);
    padding: .5rem 1rem;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid #6b7bd5;
    border-bottom: unset;
    border-radius: 1.5rem 1.5rem 0rem 0rem;
    color: #fff;
    background-color: #8ca8f7;
    cursor: pointer;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(1) li.on{
	font-weight: bold;
    color: #6b7bd5;
    background-color: #eff0ff;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(2){
	display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 3rem;
    background-color: #eff0ff;
    border: 1px solid #6b7bd5;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(2) li{
	display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

#featuresPage section article:nth-of-type(3) div ul:nth-of-type(2) li.on{
	display: block;
}

#featuresPage section article:nth-of-type(5) > div > div:last-child,
#featuresPage section article:nth-of-type(7) > div > div:last-child{
	width: 100%;
}

.box_shadow{
    padding: 1rem;
	box-shadow: 0 0 10px 5px #eee;
    border-radius: 1rem;
}

#featuresPage section article:nth-of-type(3) .box_shadow{
	padding: 4rem;
}

#featuresPage section article:nth-of-type(4) > div > div:nth-of-type(2){
	display: flex;
    justify-content: flex-end;
    
	position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

#featuresPage section article:nth-of-type(4) > div > div:nth-of-type(2) p:nth-of-type(1){
	width: 70%;
	margin-top: 4rem;
    border-radius: 1rem 0 0 0;
    overflow: hidden;
}

#featuresPage section article:nth-of-type(4) > div > div:nth-of-type(2) p:nth-of-type(2){
	position: absolute;
    top: 22%;
    left: 12%;
    width: 42%;
    padding: 3rem 2.5rem;
    font-size: 2.3rem;
    font-weight: 500;
    border-radius: .4em;
    background: #ebecff;
}

#featuresPage section article:nth-of-type(4) > div > div:nth-of-type(2) p:nth-of-type(2):after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-left-color: #ebecff;
	border-right: 0;
	border-bottom: 0;
	margin-top: -10px;
	margin-right: -20px;
}

#featuresPage section article:nth-of-type(5) > div > div:nth-of-type(2){
	display: flex;
    gap: 5rem;
    margin-top: 5rem;
}

#featuresPage section article:nth-of-type(5) > div > div:nth-of-type(2) p:nth-of-type(1){
    width: 100%;
   	border: 1px solid #6b7bd5;
    box-shadow: 3px 3px 10px #ccc;
}

#featuresPage section article:nth-of-type(5) > div > div:nth-of-type(2) p:nth-of-type(2){
	width: 35%;
    padding-top: 3rem;
    font-size: 3.5rem;
    font-weight: 500;
}

#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 3rem;
}

#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2) p{
	width: calc(100% / 3 - 2rem);
    border-radius: 1.5rem;
    box-shadow: 2px 2px 5px #aaa;
    overflow: hidden;
}

#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2) p img{
	transition: 0.15s ease-out;
}

#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2) p:hover img{
    transform: scale(1.1);
}

#featuresPage section article:nth-of-type(7) img{
	box-shadow: 3px 3px 5px #ccc;
    overflow: hidden;
    border-radius: 1rem;
}

/* 고급기능 페이지 end */

/* 이용안내 페이지 start */
#informationPage section article{padding: 5rem 0 0; border-top: none;}

#informationPage section article:nth-of-type(1){padding-top: 0;}
#informationPage section article:nth-of-type(1) .wrapper{display: block; gap: 0;}
#informationPage section article:nth-of-type(1) .form .tab3 > p:nth-of-type(1){margin-bottom: 3rem; font-size: 25px; font-weight: 600;}
#informationPage section article:nth-of-type(1) .form .tab3 > p:nth-of-type(2){margin-bottom: 2rem; font-size: 14px; color: #444;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap h4 span{display: inline-block; font-size: 13px; font-weight: bold; color: #ed6d2b;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap.first{padding-bottom: 6rem; border-top: 3px solid #000; border-bottom: 3px solid #000;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(2){padding-bottom: 4rem; border-bottom: 3px solid #000;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(3) .agreeWrap span{font-size: 18px; font-weight: 600;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li.otherInquiries{width: 100%; margin-right: 0;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li.otherInquiries textarea{
	width: 100%;
    height: 150px;
    padding: 1.2rem;
    font-size: 12px;
    border-radius: .3rem;
    border: 1px solid #5c69e9;
    background-color: #f2f3ff;
    resize: none;
    outline: none;
}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(3){margin-top: 2rem;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(3) > div{display: inline-block;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(3) > p{display: inline-block; margin-left: 1rem; font-size: 13px;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap:nth-of-type(3) > p span{font-size: 17px; color: #ea552a; vertical-align: sub;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li select.select{color: #000;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li select option:not([value='']){color: #000;}


#informationPage section article:nth-of-type(1) .chargePop {display: none;position: absolute; top: 0; z-index: 9999; bottom: 0; left: 0; right: 0; background: #000000b3;}
#informationPage section article:nth-of-type(1) .chargePop.on {display: block;}
#informationPage section article:nth-of-type(1) .chargePop .popList {display: flex; justify-content: center; align-items: center; text-align: center; height: 100%;}
#informationPage section article:nth-of-type(1) .chargePop .popList li {position: relative; width: 650px; background: #fff; padding: 40px 0px; box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.2); border-radius: 5px;}
#informationPage section article:nth-of-type(1) .chargePop .popList li h4 {font-size: 23px; letter-spacing: -2px; color: #ed6d2b;}
#informationPage section article:nth-of-type(1) .chargePop .popList li p {font-size: 18px; margin: 5px 0px;}
#informationPage section article:nth-of-type(1) .chargePop .popList li span {display: block; font-size: 15px; margin-bottom: 20px;}
#informationPage section article:nth-of-type(1) .chargePop .popList li img {width: 500px;}
.chargePop .close {position: absolute; top: 20px; right: 20px;}
.chargePop .close span {display: inline-block; cursor: pointer; background: url(/common/theme/webdek/images/close.png) no-repeat center center; width: 14px; height: 14px;}

/* RDWMS Setup Wizard 문의 작성 페이지 */

#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .agreeWrap label{font-size: 2rem; vertical-align: text-top;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap h4 {font-size: 2rem; color: #363636; padding: 30px 0 40px;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap h4 p {margin-top: 5px; font-size: 15px; color: #ed6d2b;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list {display: flex; flex-wrap: wrap; gap: 2rem 0;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li {position: relative;width: 50%; margin: 10px 0;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li {width: 49%; margin-right: 2%;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li.fr {margin-right: 0;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li label {display: block; height: 30px; font-size: 15px; font-weight: bold;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li label .point {color: #ed6d2b; margin-left: 5px; vertical-align: middle;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li input {width: 100%; height: 40px; padding: 5px 10px; border: 1px solid #5c69e9; border-radius: .3rem; font-size: 15px; background-color: #f2f3ff;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li input::placeholder {color: #aaa;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li select {width: 100%; height: 40px; padding: 5px 10px; border: 1px solid #5c69e9; background-color: #f2f3ff; color: #aaa; border-radius: .3rem; font-size: 15px; appearance: none; -webkit-appearance: none; -moz-appearance: none;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list .arrow { position: absolute; top :45px; right: 3%; width :0; height :0; pointer-events: none; border-style :solid; border-width: 11px 7px 0 7px; border-color: #aaa transparent transparent transparent;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li input:focus {outline: none;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .input_list li select:focus {outline: none;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .agreeWrap p {font-size: 13px;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .agreeWrap p .point {color: #ed6d2b;margin-left: 5px;}
#informationPage section article:nth-of-type(1) .form .tab3 .inputWrap .agreeWrap label {display: block; font-size: 15px; margin-top: 5px;}
#informationPage section article:nth-of-type(1) .pageNext {margin: 0 auto; display: block; cursor: pointer; margin-top: 15px; text-align: center; color: #fff; padding: 10px 50px; border: 2px solid #4c5ee6; border-radius: 3rem; font-size: 1.7rem; font-weight: 400; background-color: #4c5ee6;}
#informationPage section article:nth-of-type(1) .pageNext:hover {background-color: #fff; color: #4c5ee6;}

#informationPage section article:nth-of-type(1) .inquiryPage {width: 1050px; margin: 50px auto 0px; padding: 35px 55px; background-color: #fff;}
#informationPage section article:nth-of-type(1) .inquiryPage:after {content:""; display:block; clear:both;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt {font-size: 18px;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt h2 {font-size: 23px; margin-bottom: 5px; font-weight: 100; color: #eb7c42;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt .address p {display: inline-block; padding: 15px 15px 15px 0px; font-size: 18px;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt .address p:after {content: ""; display: inline-block; height: 12px; margin-left: 15px; border: 1px solid #fff;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt .address p i {margin-left: 0px; margin-right: 10px; font-size: 18px; color: #eb7c42;}
#informationPage section article:nth-of-type(1) .inquiryPage .txt .address p:last-child:after {border :none}
#informationPage section article:nth-of-type(1) .inquiryPage .txt .time {font-size: 14px;}
#informationPage section article:nth-of-type(1) .inquiryPage .startBtn {display: flex; float: right;height: 189px; align-items: center; flex-wrap: nowrap;text-align: center;}
#informationPage section article:nth-of-type(1) .inquiryPage .startBtn li {text-align: center; display: inline-block; margin: 0 15px;}
#informationPage section article:nth-of-type(1) .inquiryPage .startBtn li a {display: inline-block;color: #000;padding: 10px 20px;border: 2px solid #eee;font-weight: bold;background-color: #eee;}
#informationPage section article:nth-of-type(1) .inquiryPage .startBtn li a:hover {border:2px solid #fff; color:#fff; background-color: unset;}
#informationPage section article:nth-of-type(1) .inquiryPage .line {margin: 10px 0; border-bottom: 1px solid #c7c7c7ad;}

/* tab btn */
.ul-clicktabBtn {text-align: center; position: relative; z-index: 1; margin-bottom: 25px;}
.ul-clicktabBtn li {display: inline-block; width: 160px; margin: 0px 10px; transition:0.2s; padding: 40px 30px; text-align: center; font-weight: bold; cursor: pointer; border: 1px solid #ccc; background-color: #fff; border-radius: 10px 0px 10px 10px;}
.ul-clicktabBtn li img {width: 45px; height: auto;}
.ul-clicktabBtn li span {display: block; margin-top: 15px; color: #555; font-size: 14px;}
.ul-clicktabBtn li.on {/*background-color: #ed6d2b;*/border-color: #ed6d2b;}
.ul-clicktabBtn li.on span {color: #ed6d2b;}
.tab-btn{position: relative;}
.tab-btn.on {display: block;}
.tab-btn.on.first {padding-top: 0px;}
.room-block.rdpage {height: 0px;}

/* 요금안내 페이지 start */
#farePage section{width: 100%;}
#farePage section article{margin: 0; padding: 0; border-top: 0;}
#farePage section article > div > div:nth-of-type(1) p:nth-of-type(1){margin-bottom: 3rem; font-size: 3rem; font-weight: 600;}
#farePage section article > div > div:nth-of-type(1) p:nth-of-type(2){margin-bottom: 2rem; color: #ea552a; font-size: 1.8rem;}
#farePage section article > div > div:nth-of-type(1) p:nth-of-type(2) span{vertical-align: middle;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li{background-repeat: no-repeat; background-position: center; background-size: contain;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li:nth-of-type(2){background-image: url(/rdscm/images/bg01.png);}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li:nth-of-type(3){background-image: url(/rdscm/images/bg02.png);}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li:nth-of-type(4){background-image: url(/rdscm/images/bg03.png);}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li:nth-of-type(5){background-image: url(/rdscm/images/bg04.png);}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li:nth-of-type(6){background-image: url(/rdscm/images/bg05.png);}
#farePage section article > div > div:nth-of-type(2){border-top: 4px solid #000; border-bottom: 4px solid #000;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1),
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2),
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(3){display: flex; position: relative; width: 100%; height: 15rem;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li,
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2) li,
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(3) li{display: flex; align-items: center; justify-content: center; width: calc(100% / 6); text-align: center; margin: 2rem 0;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li p,
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2) li p,
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(3) li p{font-size: 2rem; font-weight: 600;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li span{display: block; font-size: 1.5rem; font-weight: 500;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2){border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; color: #5c69e9;}
#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2) li:first-child{color: #000;}
#farePage section article > div > div:nth-of-type(3){border-bottom: 4px solid #000;}
#farePage section article > div > div:nth-of-type(3) > ul > li{padding: 2rem; font-size: 2rem; font-weight: 500; border-bottom: 1px solid #ccc;}
#farePage section article > div > div:nth-of-type(3) > ul > li:last-child{border-bottom: none;}
/* 요금안내 페이지 end */

/* 고객센터 페이지 start */
#parcelPage section{width: 100%;}
#parcelPage section article{padding: 0; border-top: 0;}
#parcelPage section article > div{}
#parcelPage section article > div > div:nth-of-type(1){
	font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
#parcelPage section article > div > div:nth-of-type(2){
	display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 4px solid #000;
}
#parcelPage section article > div > div:nth-of-type(2) > ul{
	display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    gap: 1rem;
    width: 260px;
}
#parcelPage section article > div > div:nth-of-type(2) > ul > li{
    width: calc(100% / 2 - .5rem);
    /* padding: 0.5rem 1rem; */
    padding: 10px 20px;
    font-size: 2rem;
    background-color: #f2f3ff;
    color: #c4c9f9;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
}
#parcelPage section article > div > div:nth-of-type(2) > ul > li.on{
	background-color: #5c69e9;
	color: #fff;
}
#parcelPage section article > div > div:nth-of-type(2) > div{
	float: right;
    text-align: center;
    padding: 1.5rem 2rem;
    border: 1px solid #5c69e9;
    border-radius: 2rem;
}
#parcelPage section article > div > div:nth-of-type(2) > div > p{
	font-size: 2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
#parcelPage section article > div > div:nth-of-type(2) > div > span{
    display: block;
    text-align: left;
    font-size: 1.5rem;
}
#parcelPage section article > div > div:nth-of-type(3){
	border-bottom: 4px solid #000;
}
#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1){
	padding: 5rem 0;
}
#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li:nth-of-type(1){margin-bottom: 3rem;}

#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li label{
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li input{
	width: 100%; height: 40px; padding: 5px 10px; border: 1px solid #5c69e9; border-radius: .3rem; font-size: 15px; background-color: #f2f3ff;
}

#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li textarea{
	width: 100%;
    height: 150px;
    padding: 1.2rem;
    font-size: 14px;
    border-radius: .3rem;
    border: 1px solid #5c69e9;
    background-color: #f2f3ff;
    resize: none;
    outline: none;
}

#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li .contact_submit {width: auto; height: auto; margin: 0 auto; display: block; cursor: pointer; margin-top: 15px; text-align: center; color: #fff; padding: 10px 50px; border: 2px solid #4c5ee6; border-radius: 3rem; font-size: 1.7rem; font-weight: 400; background-color: #4c5ee6;}
#parcelPage section article > div > div:nth-of-type(3) form > ul:nth-of-type(1) > li .contact_submit:hover {background-color: #fff; color: #4c5ee6;}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1){display: none;}
#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li{
    padding: 2rem;
    border-bottom: 1px solid #ccc;
	font-size: 1.7rem;
    font-weight: 500;
    cursor: pointer;
}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li:last-child{border-bottom: 0;}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > p{
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 2rem;
    color: #5c69e9;
}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > span{
    display: inline-block;
    float: right;
    line-height: 25px;
}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > span i{
	font-size: 2rem;
	transition: .3s;
}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li.on > span i{
	transform: rotate(180deg);
}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > ul{
	display: none;
	
	position: relative;
    width: 95%;
    height: 100%;
    margin-left: auto;
    margin-top: 2rem;
}
#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > ul > li{display: flex;}

#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li > ul > li span{
    margin-right: 1rem;
    font-size: 2rem;
	color: #5c69e9;
}
/* 고객센터 페이지 end */

/* 상담신청 페이지 start */
.solutionInquiry .wrapper{display: block; gap: 0;}
.solutionInquiry .form .tab3 > p:nth-of-type(1){margin-bottom: 3rem; font-size: 3rem; font-weight: 600;}
.solutionInquiry .form .tab3 > p:nth-of-type(2){margin-bottom: 2rem; font-size: 14px; color: #444;}
/* .solutionInquiry #myForm{border-top: 3px solid #000;} */
.solutionInquiry .form .tab3 .inputWrap h4 span{display: inline-block; font-size: 13px; font-weight: bold; color: #ed6d2b;}
.solutionInquiry .form .tab3 .inputWrap.first{padding-bottom: 6rem; border-top: 3px solid #000; border-bottom: 3px solid #000;}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(2){padding-bottom: 4rem; border-bottom: 3px solid #000;}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(3) .agreeWrap span{font-size: 18px; font-weight: 600;}
.solutionInquiry .form .tab3 .inputWrap .input_list li.otherInquiries{width: 100%; margin-right: 0;}
.solutionInquiry .form .tab3 .inputWrap .input_list li.otherInquiries textarea{
	width: 100%;
    height: 150px;
    padding: 1.2rem;
    font-size: 12px;
    border-radius: .3rem;
    border: 1px solid #5c69e9;
    background-color: #f2f3ff;
    resize: none;
    outline: none;
}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(3){margin-top: 2rem;}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(3) > div{display: inline-block;}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(3) > p{display: inline-block; margin-left: 1rem; font-size: 13px;}
.solutionInquiry .form .tab3 .inputWrap:nth-of-type(3) > p span{font-size: 17px; color: #ea552a; vertical-align: sub;}
.solutionInquiry .form .tab3 .inputWrap .input_list li select.select{color: #000;}
.solutionInquiry .form .tab3 .inputWrap .input_list li select option:not([value='']){color: #000;}


.solutionInquiry .chargePop {display: none;position: absolute; top: 0; z-index: 9999; bottom: 0; left: 0; right: 0; background: #000000b3;}
.solutionInquiry .chargePop.on {display: block;}
.solutionInquiry .chargePop .popList {display: flex; justify-content: center; align-items: center; text-align: center; height: 100%;}
.solutionInquiry .chargePop .popList li {position: relative; width: 650px; background: #fff; padding: 40px 0px; box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.2); border-radius: 5px;}
.solutionInquiry .chargePop .popList li h4 {font-size: 23px; letter-spacing: -2px; color: #ed6d2b;}
.solutionInquiry .chargePop .popList li p {font-size: 18px; margin: 5px 0px;}
.solutionInquiry .chargePop .popList li span {display: block; font-size: 15px; margin-bottom: 20px;}
.solutionInquiry .chargePop .popList li img {width: 500px;}
.chargePop .close {position: absolute; top: 20px; right: 20px;}
.chargePop .close span {display: inline-block; cursor: pointer; background: url(/common/theme/webdek/images/close.png) no-repeat center center; width: 14px; height: 14px;}

/* RDWMS Setup Wizard 문의 작성 페이지 */

.solutionInquiry .form .tab3 .inputWrap .agreeWrap label{font-size: 2rem; vertical-align: text-top;}
/* .solutionInquiry .form .tab3 > p {text-align: center;} */
/* .solutionInquiry .form .tab3 .inputWrap {margin-top: 55px;} */
/* .solutionInquiry .form .tab3 .inputWrap.first {margin-top: 40px;} */
.solutionInquiry .form .tab3 .inputWrap h4 {font-size: 2rem; color: #363636; padding: 30px 0 40px;}
.solutionInquiry .form .tab3 .inputWrap h4 p {margin-top: 5px; font-size: 15px; color: #ed6d2b;}
.solutionInquiry .form .tab3 .inputWrap .input_list {display: flex; flex-wrap: wrap; gap: 2rem 0;}
.solutionInquiry .form .tab3 .inputWrap .input_list li {position: relative;width: 50%; margin: 10px 0;}
.solutionInquiry .form .tab3 .inputWrap .input_list li {width: 49%; margin-right: 2%;}
.solutionInquiry .form .tab3 .inputWrap .input_list li.fr {margin-right: 0;}
.solutionInquiry .form .tab3 .inputWrap .input_list li label {display: block; height: 30px; font-size: 15px; font-weight: bold;}
.solutionInquiry .form .tab3 .inputWrap .input_list li label .point {color: #ed6d2b; margin-left: 5px; vertical-align: middle;}
.solutionInquiry .form .tab3 .inputWrap .input_list li input {width: 100%; height: 40px; padding: 5px 10px; border: 1px solid #5c69e9; border-radius: .3rem; font-size: 15px; background-color: #f2f3ff;}
.solutionInquiry .form .tab3 .inputWrap .input_list li input::placeholder {color: #aaa;}
.solutionInquiry .form .tab3 .inputWrap .input_list li select {width: 100%; height: 40px; padding: 5px 10px; border: 1px solid #5c69e9; background-color: #f2f3ff; color: #aaa; border-radius: .3rem; font-size: 15px; appearance: none; -webkit-appearance: none; -moz-appearance: none;}
.solutionInquiry .form .tab3 .inputWrap .input_list .arrow { position: absolute; top :45px; right: 3%; width :0; height :0; pointer-events: none; border-style :solid; border-width: 11px 7px 0 7px; border-color: #aaa transparent transparent transparent;}
.solutionInquiry .form .tab3 .inputWrap .input_list li input:focus {outline: none;}
.solutionInquiry .form .tab3 .inputWrap .input_list li select:focus {outline: none;}
/* .solutionInquiry .form .tab3 .inputWrap .agreeWrap {text-align: center;margin: 20px;} */
.solutionInquiry .form .tab3 .inputWrap .agreeWrap p {font-size: 13px;}
.solutionInquiry .form .tab3 .inputWrap .agreeWrap p .point {color: #ed6d2b;margin-left: 5px;}
.solutionInquiry .form .tab3 .inputWrap .agreeWrap label {display: block; font-size: 15px; margin-top: 5px;}
.solutionInquiry .pageNext {margin: 0 auto; display: block; cursor: pointer; margin-top: 15px; text-align: center; color: #fff; padding: 10px 50px; border: 2px solid #4c5ee6; border-radius: 3rem; font-size: 1.7rem; font-weight: 400; background-color: #4c5ee6;}
.solutionInquiry .pageNext:hover {background-color: #fff; color: #4c5ee6;}

.solutionInquiry .inquiryPage {width: 1050px; margin: 50px auto 0px; padding: 35px 55px; background-color: #fff;}
.solutionInquiry .inquiryPage:after {content:""; display:block; clear:both;}
.solutionInquiry .inquiryPage .txt {font-size: 18px;}
.solutionInquiry .inquiryPage .txt h2 {font-size: 23px; margin-bottom: 5px; font-weight: 100; color: #eb7c42;}
.solutionInquiry .inquiryPage .txt .address p {display: inline-block; padding: 15px 15px 15px 0px; font-size: 18px;}
.solutionInquiry .inquiryPage .txt .address p:after {content: ""; display: inline-block; height: 12px; margin-left: 15px; border: 1px solid #fff;}
.solutionInquiry .inquiryPage .txt .address p i {margin-left: 0px; margin-right: 10px; font-size: 18px; color: #eb7c42;}
.solutionInquiry .inquiryPage .txt .address p:last-child:after {border :none}
.solutionInquiry .inquiryPage .txt .time {font-size: 14px;}
.solutionInquiry .inquiryPage .startBtn {display: flex; float: right;height: 189px; align-items: center; flex-wrap: nowrap;text-align: center;}
.solutionInquiry .inquiryPage .startBtn li {text-align: center; display: inline-block; margin: 0 15px;}
.solutionInquiry .inquiryPage .startBtn li a {display: inline-block;color: #000;padding: 10px 20px;border: 2px solid #eee;font-weight: bold;background-color: #eee;}
.solutionInquiry .inquiryPage .startBtn li a:hover {border:2px solid #fff; color:#fff; background-color: unset;}
.solutionInquiry .inquiryPage .line {margin: 10px 0; border-bottom: 1px solid #c7c7c7ad;}

/* tab btn */
.ul-clicktabBtn {text-align: center; position: relative; z-index: 1; margin-bottom: 25px;}
.ul-clicktabBtn li {display: inline-block; width: 160px; margin: 0px 10px; transition:0.2s; padding: 40px 30px; text-align: center; font-weight: bold; cursor: pointer; border: 1px solid #ccc; background-color: #fff; border-radius: 10px 0px 10px 10px;}
.ul-clicktabBtn li img {width: 45px; height: auto;}
.ul-clicktabBtn li span {display: block; margin-top: 15px; color: #555; font-size: 14px;}
.ul-clicktabBtn li.on {/*background-color: #ed6d2b;*/border-color: #ed6d2b;}
.ul-clicktabBtn li.on span {color: #ed6d2b;}
.tab-btn{position: relative;}
.tab-btn.on {display: block;}
.tab-btn.on.first {padding-top: 0px;}
.room-block.rdpage {height: 0px;}

/* 상담신청 페이지 end */





 /* 태블릿 버전 */
@media screen and (max-width: 1280px) {
	html{font-size: 45%;}
	.wrapper{gap: 3rem; padding: 5rem 1rem 0;}
	.br{display: inline-block;}
	.demoPageOpen, .youtubePageOpen{border-radius: 5rem;}
	#aside{width: 120px;}
	#aside > ul > li{margin-bottom: 0;}
	#aside > ul > li a{font-size: 1.8rem;}
	section{width: calc(100% - 120px);}
	section article{height: auto; /* margin: 10rem 0; */}
	section article div.title h1{font-size: 2.5rem;}
	
	
	/* RDWMS 페이지 start */
	#rdwmsPage section article:nth-of-type(1){margin-top: 0;}
	#rdwmsPage section article:nth-of-type(1) div ul{height: auto; align-items: stretch;}
	#rdwmsPage section article:nth-of-type(1) div ul li{width: calc(100% / 2 - .5rem); height: auto;}
	#rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(2){font-size: 2.5rem;}
	#rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(3){font-size: 2.3rem;}
	#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1){font-size: 2.5rem;}
	#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1) span:nth-of-type(2){margin-left: 0; font-size: 2.5rem;}
	#rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(2){font-size: 2rem;}
	#rdwmsPage section article:nth-of-type(4) > div > p{font-size: 2.5rem;}
	#rdwmsPage section article:nth-of-type(5) > div > ul{width: 100%; height: 75rem;}
	#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(2){font-size: 2.5rem;}
	#rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(3){font-size: 2rem;}
	/* RDWMS 페이지 end */
	
	/* 고급기능 페이지 start */
	#featuresPage section article:nth-of-type(1){}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul{width: 30%;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div{width: 40%;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div p{font-size: 2.3rem;}
	/* 고급기능 페이지 end */
	
	/* 상담신청 페이지 start */
	.solutionInquiry .form .tab3 .inputWrap h4{font-size: 3rem;}
	/* 상담신청 페이지 end */
}

/* 모바일 버전 (767px 이하) */
@media (max-width: 767px) {
	html{font-size: 45%;}
	body{min-width:100%;}
	.section{min-width:100%;}
	.wrapper{width:100%; margin: 0;}
	.br{display: inline-block;}
    #aside{display: none;}
    section{width: 100%;}
    section article{height: auto !important; padding: 1rem; margin: 0;}
    section article div.title h1{font-size: 2.5rem;}
    section article div strong{font-size: 2.7rem;}
    
    /* RDWMS 페이지 start */
    #rdwmsPage section article:nth-of-type(1) div ul li{padding: 1.5rem;}
    #rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(1){font-size: unset;}
    #rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(1) img{width: 40px; height: 40px;}
    #rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(2){padding: 1rem 0;}
    #rdwmsPage section article:nth-of-type(1) div ul li p:nth-of-type(3){font-size: 2rem;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li{border: 2px solid #5d72dd; border-radius: 50%;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1){font-size: 2.7rem;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(1) span:nth-of-type(2){display: none;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li > div p:nth-of-type(2){font-size: 2rem;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li:first-child,
    #rdwmsPage section article:nth-of-type(3) div > ul > li:last-child{margin-left: 0;}
    #rdwmsPage section article:nth-of-type(3) div > ul,
    #rdwmsPage section article:nth-of-type(6) div > ul{flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 1rem 0; border: none;}
    #rdwmsPage section article:nth-of-type(3) div > ul > li,
    #rdwmsPage section article:nth-of-type(6) div > ul > li{width: calc(100% / 2 - 1rem); height: auto; padding-bottom: calc(100% / 2 - 1rem);}
    #rdwmsPage section article:nth-of-type(4) > div > ul{flex-wrap: wrap;}
    #rdwmsPage section article:nth-of-type(4) > div > ul > li{width: 100%;}
    #rdwmsPage section article:nth-of-type(4) > div > ul > li div:nth-of-type(2) p:nth-of-type(2){font-size: 2.3rem;}
    #rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(1){width: 6rem; height: 6rem;}
    #rdwmsPage section article:nth-of-type(5) > div > ul{width: 100%; height: auto; justify-content: center;}
    #rdwmsPage section article:nth-of-type(5) > div > ul > li{width: calc(100% / 2 - 1rem); height: auto;}
    #rdwmsPage section article:nth-of-type(5) > div > ul > li div:first-child{padding: 1rem;}
    #rdwmsPage section article:nth-of-type(5) > div > ul > li div p:nth-of-type(3){font-size: 1.8rem;}
    #rdwmsPage section article:nth-of-type(6) ul li p{font-size: 3rem;}
    #rdwmsPage section article:nth-of-type(7) div > strong{padding-bottom: 0;}
    #rdwmsPage section article:nth-of-type(7) > div > p{width: 100%;}
    #rdwmsPage section article:nth-of-type(7) .backgroundDiv{display: none;}
    #rdwmsPage section article:nth-of-type(6) > div > p,
    #rdwmsPage section article:nth-of-type(7) > div > p{overflow: hidden;}
    #rdwmsPage section article:nth-of-type(6) > div > p img,
    #rdwmsPage section article:nth-of-type(7) > div > p img{width: 100%;}
    /* RDWMS 페이지 end */
    
    /* 고급기능 페이지 start */
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2){gap: 1rem;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div{width: 55%;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) div p{height: 44%; padding: 1rem; font-size: 2rem;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul{width: 45%; gap: 1rem;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li p:nth-of-type(1){font-size: 7rem;}
	#featuresPage section article:nth-of-type(1) div:nth-of-type(2) > ul > li p:nth-of-type(2){font-size: 2rem;}
	#featuresPage section article:nth-of-type(3) .box_shadow{padding: 1rem;}
	#featuresPage section article:nth-of-type(3) div ul:nth-of-type(2){padding: 1rem;}
	#featuresPage section article:nth-of-type(4) > div > div:nth-of-type(2) p:nth-of-type(2){top: 5%;}
	#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2){flex-direction: column; gap: 2rem;}
	#featuresPage section article:nth-of-type(6) > div > div:nth-of-type(2) p{width: 100%;}
	/* 고급기능 페이지 end */
	
	/* 상담신청 페이지 start */
	.solutionInquiry .form .tab3 .inputWrap h4{font-size: 2.5rem; padding: 20px 0 30px;}
	.solutionInquiry .form .tab3 .inputWrap .input_list li input,
	.solutionInquiry .form .tab3 .inputWrap .input_list li select,
	.solutionInquiry .form .tab3 .inputWrap .input_list li.otherInquiries textarea{font-size: 14px;}
	.solutionInquiry .pageNext{font-size: 2rem;}
	/* 상담신청 페이지 end */
	
	/* 요금안내 페이지 start */
	#farePage section article > div > div:nth-of-type(2){overflow-x: scroll;}
	#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1),
	#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(2),
	#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(3){width: 650px;}
	#farePage section article > div > div:nth-of-type(2) > ul:nth-of-type(1) li{background-size: contain;}
	/* 요금안내 페이지 end */
	
	/* 고객센터 페이지 start */
	#parcelPage section article > div > div:nth-of-type(3) > ul:nth-of-type(1) > li{font-size: 1.7rem;}
	#parcelPage section article > div > div:nth-of-type(2){padding-bottom: 1rem; gap: 1rem;}
	#parcelPage section article > div > div:nth-of-type(2) > ul > li{padding: 1rem;}
	/* 고객센터 페이지 end */
}