/* ½ºÅµ ³×ºñ°ÔÀÌ¼Ç ½ºÅ¸ÀÏ */
.skip ul {
  position: absolute;
  top: -40px;
}

.skip ul li a {
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
}

.skip ul li a:focus {
  top: 0;
}

#wrap {
  background: var(--bg);
  box-shadow: -20px -20px 30px 0px #FFF, 20px 20px 30px 0px rgba(40, 37, 37, 0.26);
}

/* Çì´õ */
.header {
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header h1 {
  height: 40px;
}

.header h1 a {
  display: inline-block;
  width: 70px;
  height: 100%;
  background-size: contain;
  background-image: url('/img/common/layout/logo.png');
  background-repeat: no-repeat;
  text-indent: -9999px;
}

.header nav {
  padding-top: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  position: fixed;
  width: 60%;
  background: var(--point_gray);
  z-index: 1000;
  top: 0;
  height: 100%;
  left: -100%; /* ¿ÞÂÊ¿¡¼­ ½ÃÀÛ */
  transition: left 0.5s; /* ºÎµå·¯¿î ÀÌµ¿À» À§ÇÑ ÀüÈ¯ È¿°ú */
}

.header nav >div{
  width: 100%;
}

.header nav >div.util_item01,
.header nav >div.util_item11,
.header nav >div.util_item02{
  width: initial;
}

.header nav >div.util_item03,
.header nav >div.util_item04{
}
.header nav.on {
  left: 0; /* ¿ÞÂÊ¿¡¼­ 0ÀÇ À§Ä¡·Î ÀÌµ¿ */
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 25px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--point_bg);
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 42%;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* Áß¾Ó ¶óÀÎÀÌ °íÁ¤µÈ ÀÚ¸®¿¡¼­ Åõ¸íÇÏ°Ô »ç¶óÁö¸ç »óÇÏ¶óÀÎ È¸ÀüÇÏ¸ç ¿¢½ºÀÚ ¸¸µé±â */
.menu-trigger.on span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.on span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.on span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.util {
  text-align: right;
  height: 50px;
}

.util >div{
  display: inline-block;
}

.util .on{
  background: var(--bg, rgba(239, 242, 249, 0.98));
  box-shadow: -5px -5px 4px 0px #FFF inset, 5px 5px 4px 0px rgba(0, 0, 0, 0.25) inset;
  border-radius: 25px;
  padding: 0 10px;
}

.util a {
  position: relative;
  text-decoration: none;
  color: #333;
  height: 100%;
  line-height: 50px;
  padding-left: 20px;
}
.util .util_item01 a ,.util .util_item02 a,.util .util_item11 a{
  line-height: 30px;
}

.util div a:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
}
.util .util_item01,.util .util_item02, .util .util_item11{
  height: 30px;
}
.util .util_item11 a:before{
  background-image: url("/img/common/layout/usa.png");
}
.util .util_item02 a:before{
  background-image: url("/img/common/layout/kr.png");
}
.util .util_item01 a:before{
  background-image: url("/img/common/layout/cn.png");
}

.util .on a{
  font-weight: bold;
}


.util a.point {
  font-size: 1.125rem;
  font-weight: bold;
  background: linear-gradient(180deg, #006401 0%, #005E01 43.75%, #000702 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ÁÖ ³×ºñ°ÔÀÌ¼Ç */
.gnb ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.gnb ul li {
  display: inline-block;
  margin-right: -4px;
}

.gnb ul li a {
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  color: #333;
}

.gnb ul li.on a {
  color: #007bff;
}

/* ÄÁÅÙÃ÷ ¿µ¿ª */
#contents {
  padding: 0 10% 0;
}

#contents .contMain {
  overflow: hidden;
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: -20px -20px 30px 0px #FFF, 20px 20px 30px 0px rgba(40, 37, 37, 0.26);
}

#contents .contMain .left {
  width: 40%;
}

#contents .contMain .left .text_box {
  padding: 0.5rem;
  height: 75%;
  box-sizing: border-box;
  color: #3D3D3D;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

#contents .contMain .left .text_box > p > span {
  display: block;
  color: #006402;
}

#contents .contMain .left .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contents .contMain .left .btn_box > p {
  display: inline-block;
  overflow: hidden;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: var(--box_sh);
}
#contents .contMain .left .btn_box > p a{
font-size: .5rem;
}
#contents .contMain .right {
  width: 60%;
}

#contents .contMain .right > img {
  display: block;
  width: 100%;
}

/* ´ëÇÐ ¸®½ºÆ® ½ºÅ¸ÀÏ */

#contents .contWrap01 .univSel .font_description {
  display: block;
}

#contents .contWrap01 .conArea .univArea {
  margin-top: 10px;
}

.contWrap01 .univList {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.contWrap01 .univList li {
  position: relative;
  width: 45%;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  background: #EFF2F9;
  box-shadow: var(--box_sh);
/*  max-height: 0; !* ÃÊ±â¿¡´Â ¿ä¼Ò°¡ º¸ÀÌÁö ¾ÊÀ½ *!
  opacity: 0; !* ÃÊ±â¿¡´Â Åõ¸í *!*/
  transition: all 0.5s ease-out; /* ºÎµå·¯¿î ÀüÈ¯ È¿°ú */

}

/*.contWrap01 .univList li.active{*/
.contWrap01 .univList li{
  margin-bottom: 10px;
  display: block ;
  max-height: 1000px; /* ÃæºÐÈ÷ Å« °ªÀ¸·Î ¼³Á¤ */
  opacity: 1; /* ¿ÏÀü ºÒÅõ¸í */
}


.contWrap01 .univList li:nth-child(odd) {
  margin-right: 10%;
}

/*¾Ö´Ï¸ÞÀÌ¼Ç*/
.univList li:nth-child(-n+2) {
  display: block;
}


.contWrap01 .univList li a {

  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.contWrap01 .univList li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.contWrap01 .univList li a img {
  position: absolute;
  left: 50%;
  top:40%;
  display: block;
  height: 50%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  transform: translate(-50% , -50%);
}

.contWrap01 .univList li .univName {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 20%;
  width: 100%;
  text-align: center;
}

#contents .contWrap01 .univArea .btn_Wrap {
  display: flex;
  justify-content: center;
}

#showMore, #showLess {
  padding: 0.3rem 1rem;
  border: initial;
  margin: 0 auto;
  border-radius: .5rem;
  box-shadow: var(--box_sh);
}


/* ¸ÞÀÎ ÇÐºñ³³  */

#contents .payment_ul li {
  position: relative;
}

/*#contents .payment_ul li.item01:hover .back:before{*/
/*  !*background-image: url("./../img/main/mask.png");*!*/
/*  -webkit-transform: scale(1.1) rotate(15deg);*/
/*  transform: scale(1.1) rotate(15deg);*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/

/*#contents .payment_ul li.item02:hover .back:before{*/
/*  !*background-image: url("./../img/main/mask.png");*!*/
/*  -webkit-transform: scale(1.1) rotate(-15deg);*/
/*  transform: scale(1.1) rotate(-15deg);*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/

/*#contents .payment_ul li.item03:hover .back:before{*/
/*  !*background-image: url("./../img/main/mask.png");*!*/
/*  -webkit-transform: scale(1.1) rotate(15deg);*/
/*  transform: scale(1.1) rotate(15deg);*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/



#contents .payment_ul .back{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#contents .payment_ul .back:before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 1rem;
  background:var(--white);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#contents .payment_ul .back:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 1rem;
  left: 0;
  top: 0;
  z-index: -1;
}
#contents .payment_ul li.item01 .back:after {
  background: #6E7F8B;
  transform: rotate(82deg);
}
#contents .payment_ul li.item02 .back:after {
  background: #6E7F8B;
  transform: rotate(96deg);
}
#contents .payment_ul li.item03 .back:after {
  background: #6E7F8B;
  transform: rotate(82deg);
}
#contents .payment_ul li .top_text_img {
  display: flex;
  justify-content: center;
  height: 11%;
  position: relative;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
/*#contents .payment_ul li:hover .right_img {*/
/*  -webkit-transform: scale(1.2) ;*/
/*  transform: scale(1.2) ;*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/


#contents .payment_ul li .top_text_img .left_text {
  width: 60%
}

#contents .payment_ul li .top_text_img .right_img {
  width: 20%
}

#contents .payment_ul li .top_text_img .right_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}

/*#contents .payment_ul li:hover .bottom_textWrap{*/
/*  -webkit-transform: scale(1.2) ;*/
/*  transform: scale(1.2) ;*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/

#contents .payment_ul li .bottom_textWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80%;
  /*-webkit-transition: .5s ease-in-out;*/
  /*transition: .5s ease-in-out;*/
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#contents .payment_ul li .bottom_textWrap > p > strong {
  font-weight: 800
}

#contents .payment_ul li .bottom_textWrap > p > span {
  font-weight: 600
}

/*½ÃÅ¥¸®Æ¼*/
#contents .security {
  position: relative;
  z-index: 10;
  overflow: hidden
}

#contents .security img {
  display: block;
  width: 100%;
  height: 100%
}

#contents .security .left {
  display: flex;
  flex-flow: column;
  justify-content: end;
  align-items: end;
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


#contents .security .left .bottom_textWrap {
  margin-top: 10px;
  display: flex;
  justify-content: right
}

#contents .security .left .bottom_textWrap p {
  word-break: keep-all;
  width: 74%;
  line-height: 1.4;
  text-align: right;
  color: var(--font_gray)
}

#contents .security .left .bottom_textWrap p.font_normal {
  position: relative;
  z-index: 2; /* ÅØ½ºÆ®¸¦ ´õ ¾ÕÀ¸·Î °¡Á®¿À±â À§ÇØ */
}


/*»ç¿ë¹æ¹ý*/
#contents .usageWrap {
  margin-top: 50px;
  overflow: hidden;
  background: var(--point_gray);
  padding: 2rem;
  box-sizing: border-box;
}

#contents .usageList li {
  position: relative;
  margin-bottom: 40%
}

#contents .usageList li.item01 {
  background: var(--pastel_green)
}

#contents .usageList li.item02 {
  background: var(--pastel_purple)
}

#contents .usageList li.item03 {
  background: var(--white);
}

#contents .usageList.textWrap {
  overflow: hidden
}


#contents .usageList li.item02 .text > p {
  color: var(--white)
}

#contents .usageList li .imgWrap {
  height: 40%;
  display: flex;
  justify-content: end;
}

#contents .usageList li .right_img {
  width: 40%
}
#contents .usageList li .right_img img{
  display: block;
  width: 100%;
}
#contents .usageList li .textWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%
}

#contents .usageList li .textWrap p{
  font-weight: 800;
}
#contents .usageList li .arrow {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30%;
  height: 20%;
  aspect-ratio: 1 / 1;
}

#contents .usageList li .arrow > span {
  position: relative;
  display: block;
  height: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  /*text-indent: -9999px;*/
  /*border-radius: 50%;*/
  /*background-color: var(--point_gray);*/
  /*filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));*/
}
#contents .usageList li .arrow > span img {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(90deg); /* °¢µµ */
}
/*#contents .usageList li .arrow > span:after {*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  top: 50%;*/
/*  content: '';*/
/*  width: 25%; !* »çÀÌÁî *!*/
/*  height: 25%; !* »çÀÌÁî *!*/
/*  border-top: 2px solid #000; !* ¼± µÎ²² *!*/
/*  border-right: 2px solid #000; !* ¼± µÎ²² *!*/
/*  transform: translate(-50%, -50%) rotate(135deg); !* °¢µµ *!*/
/*}*/


/*¸®ºä*/
/*#contents .reviewsWrap {*/
/*  overflow: hidden;*/
/*}*/

/*#contents .reviewsWrap img {*/
/*  width: 100%*/
/*}*/


#contents .reviews{
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}



#contents .reviews li {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
/*#contents .reviews li:hover{*/
/*  -webkit-transform: scale(1.1) rotate(15deg);*/
/*  transform: scale(1.1) rotate(15deg);*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/

/*#contents .reviews li:hover p{*/
/*  font-weight: 800;*/
/*  !*-webkit-transform: scale(1.3);*!*/
/*  !*transform: scale(1.3);*!*/
/*  -webkit-transition: .5s ease-in-out;*/
/*  transition: .5s ease-in-out;*/
/*}*/

#contents .reviews li .imgWrap{
  position: relative;
}

#contents .reviews li p{
  position: absolute;
  line-height: 1.2;
  word-break: keep-all;
}


#contents .reviews li p{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
}

#contents .reviews li.selected p{
  text-overflow: initial;
  overflow: hidden;
  display: initial;
  -webkit-box-orient: initial;
  -webkit-line-clamp:initial;
}

#contents .reviews li p{
  width: 70%;
}

#contents .reviews li.item01 p{
  top: 60%;
  left: 16%;
}
#contents .reviews li.item02 p{
  top: 38%;
  left: 17%;
}
#contents .reviews li.item03 p{
  top: 60%;
  left: 16%;
}

#contents .reviews li.item04 p{
  top: 38%;
  left: 17%;
}

#contents .reviews li.selected p{
  font-size: 3.2vw;
}

#contents .reviews li.selected.item01 p{
  top: 48%;
  left: 19%;
}

#contents .reviews li.selected.item02 p{
  top: 24%;
  left: 17%;
}

#contents .reviews li.selected.item03 p{
  top: 51%;
  left: 18%;
}

#contents .reviews li.selected.item04 p{
  top: 23%;
  left: 17%;
}


#contents .reviews li .imgWrap img{
  width: 100%;
}

/*¿À½Ã´Â±æ*/
#contents .locationWrap {
  overflow: hidden;
  padding: 1rem;
  background: var(--point_gray);
  box-sizing: border-box;
}

#contents .locationWrap .component_font_title{
  text-align: center;
}

#contents .locationWrap img {
  width: 100%
}


/*ÆÄÆ®³Ê*/

#contents .partner .component_font_title{
  width: 80%;
  word-break: auto-phrase;
}
#contents .partner{
  margin-bottom: 50px;
}

#contents .partner .font_description{
  line-height: 1.2;
}
#contents .partner_ul {
  overflow: hidden
}

#contents .partner_ul li {
  width: 100%;
  box-sizing: border-box
}

#contents .partner_ul li .imgWrap{
  display: flex;
  height: 200px;
}
#contents .partner_ul li .imgWrap>img{
  display: block;
  width: 50%;
  object-fit: scale-down;
}
#contents .partner_ul li .imgWrap>a>img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#contents .partner .font_description{
display: block;
}
/*°áÁ¦ Á¤º¸È®ÀÎ ÀÔ·Â*/


.payment_inquiry .sectionComponent .info ,
.payment_inquiry .sectionComponent .enter_info{
  padding: 2rem;
  box-sizing: border-box;
}
.payment_inquiry  .sectionComponent .info .component_font_title,
.enter_info .component_font_title {
  margin-bottom: 10px;
}

.payment_inquiry .enter_info > div{
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.payment_inquiry .enter_info .design_box{
  height: 35px;
}

.privacy {
  padding: 1rem;
  box-sizing: border-box;
}
.privacy > div{
  margin-bottom: 30px;
}
.privacy  .box_01  >div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.privacy .box_02 .component_font_title,
.privacy .box_03 .component_font_title,
.privacy .box_04 .component_font_title{
  margin-bottom: 10px;
}
.privacy .box_01 > .proList{
  padding: 0.7rem;
  border: 1px solid;
}
.privacy_btnWrap{
  margin: 0 auto;
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
}
.privacy_btnWrap .prevBtn,
.privacy_btnWrap .nextBtn{
  display: inline-block;
  border-radius: .3rem;
  font-weight: 800;
  text-align: center;
  padding: 0.5rem;
  background: var(--btn_gray);
  color: var(--white);
}
#contents .sectionComponent.contMain.payment{
  overflow: visible;
}
.privacy .box_01 > .proList li{ line-height: 1.2; margin-bottom: 5px}



  /* ÇÐºñ ³³ºÎ °áÁ¦ ¼±ÅÃ*/
.option_select {
  padding: 2rem;
  box-sizing: border-box;
}
.option_select .font_middle{
  text-align: center;
}

.option_select .boxWrap{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.option_select .boxWrap div{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}
.option_select .boxWrap div .box_img{
  padding: .5rem;
  width: 20%;
  aspect-ratio: 1/1;
  background: var(--bg);
  box-shadow: var(--box_sh);
  border-radius: 1rem;
  box-sizing: border-box;
}
.option_select .boxWrap div.on .box_img{
  background: var(--bg, rgba(239, 242, 249, 0.98));
  box-shadow: -5px -5px 4px 0px #FFF inset, 5px 5px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.option_select .boxWrap div p{
  margin-left: .5rem;
  padding: .3rem;
  width: 80%;
}

.option_select .boxWrap div p span{
  display: block;
  color: #D7332E;
  font-size: .8rem;
}
.option_description{
  padding: 0 2rem;
}

#confiText{
  padding: 0 1rem;
  width: 100px;
  border-radius: 0.75rem;
  background: var(--bg, rgba(239, 242, 249, 0.98));
  box-shadow: -5px -5px 4px 0px #FFF inset, 5px 5px 4px 0px rgba(0, 0, 0, 0.25) inset;
  height: 2rem;
}

.option_description .font_normal{
  display: inline;
  line-height: 1rem;
}
.option_description .font_description{
  margin-top: 5px;
  line-height: 1rem;
}

.tuitionPayment .privacy_btnWrap{
  margin-top: 10px;
  margin-bottom: 10px;

}
.boxWrap div input{
  display: none;
}
.boxWrap div input#alipay_pw{
  display: block;
}
.boxWrap div label{
  text-indent: -9999px;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;

}
.boxWrap .box1 label{ background-image: url("./../img/common/ico/wechat.png")}
.boxWrap .box2 label{ background-image: url("./../img/common/ico/alipayplus.png")}
.boxWrap .box3 label{ background-image: url("./../img/common/ico/visa.png")}
.boxWrap .box4 label{ background-image: url("./../img/common/ico/ali.png")}

.boxWrap .box2 .ailpay_plus_lage{
  background-size: contain;
  background-image: url("./../img/common/ico/apipay_plust_lage.png");
  background-repeat: no-repeat;
  height: 9px;
  margin-left: 15px;
}

  /*ÃÖÁ¾È®ÀÎ*/

.final .subBtn{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.final .subBtn li{
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  overflow: hidden;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: var(--box_sh);
  border-radius: 1rem;
}

.final .subBtn li{
  padding: 0 2rem;
}



.inquiry .subBtn{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.inquiry .subBtn li{
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  overflow: hidden;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: var(--box_sh);
  border-radius: 1rem;
}

.inquiry .subBtn li{
  padding: 0 2rem;
}



#contents .contMain.pay{
  margin-bottom: 40px;
}

#qrCode{
  display: flex;
  justify-content: center;
}

.ali_btn{
  display: flex;
  justify-content: center;

}

.ali_btn>a{
  display: inline-block;
  overflow: hidden;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: var(--box_sh);
}


.bottomMagin{
  margin-bottom: 40px;
}
  /* ÇªÅÍ */
.footer {
  position: relative;
  padding: 1rem;
  background: #6E7F8B;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.footer .kb_logo{
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.footer .kb_logo img{
  width: 50px;
  height: 50px;
}

.footer .ftLogo {
  display: none;
}

.footer .addWrap {
  margin-top: 10px;
}

.footer .addWrap p {
  text-align: left;
  margin: 0 0 0.5rem 0.5rem;
}


.footer .addWrap ul li {
  display: flex;
  flex-flow: row;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}

.footer .addWrap ul li > div {
margin-right:.5rem;
}

.footer .addWrap ul li > div > span {
  float: right
}

.footer .addWrap ul li > p {
text-align: center;
}
.footer .owner{
  text-align: center;
}


/* sub0101 ´ëÇÐÁ¶È¸*/
.payment_inquiry .subLocation {
  margin-top: 20px;
  display: flex;
  justify-content: space-between
}

.payment_inquiry .subLocation li {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

.payment_inquiry .payment > h2 {
  text-align: center
}

.payment_inquiry .btn_design.on {
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  overflow: hidden;
  background: rgba(239, 242, 249, 0.98);
  box-shadow: var(--box_sh);
}

.payment_inquiry #univInfFom .sectionComponent {
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 40px;
}

/*ÇÐ±³¼±ÅÃ*/

.payment_inquiry.step2 #univmorFom{
  margin-bottom: 40px;
}

.payment_inquiry.step2 label{
  position: relative;
}
.payment_inquiry.step2 label.listChk01:after{
  /*content: "";*/
  /*display: inline-block;*/
  /*position: absolute;*/
  /*height: 100%;*/
  /*width: auto;*/
  /*aspect-ratio: 1 / 1;*/
  /*right: -20%;*/
  /*bottom: 0;*/
  /*border-radius: 100px;*/
  /*background: var(--btn_gray);*/
}
.payment_inquiry.step2 label.listChk01:before {
  /*content: "?";*/
  /*display: inline-block;*/
  /*position: absolute;*/
  /*height: 100%;*/
  /*width: auto;*/
  /*aspect-ratio: 1 / 1;*/
  /*right: -24%;*/
  /*bottom: -2px;*/
  /*z-index: 10;*/
}

.payment_inquiry .info > div {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  flex-flow: column
}


.payment_inquiry .info > div label {
  margin-bottom: 10px;
}

.payment_inquiry .btn_Wrap {
  width: 100%;
}

.payment_inquiry .btn_Wrap a {
  border-radius: .3rem;
  font-weight: 800;
  text-align: center;
  display: block;
  padding: 0.5rem;
  width: 100%;
  background: var(--btn_gray);
  color: var(--white);
}

#contents .contWrap01 .univArea .btn_Wrap {
  margin-top: 2.38rem;
  margin-bottom: 1rem;
}

.footWrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

/* Áß°£ Å©±âÀÇ È­¸é (ÅÂºí¸´ µî)¿¡ ´ëÇÑ ½ºÅ¸ÀÏ */
@media (min-width: 481px) {

  .header h1 {
    height: 50px;
  }
  .header nav {
    width: 40%;
  }

  #contents .contMain {
    margin-top: 30px
  }

  #contents .contMain .left .text_box {
    padding: 1rem;
  }

  #contents .contMain .left .btn_box {
    padding-left: 1rem;
    justify-content: left;
  }

  .sectionComponent {
    margin-top: 60px
  }

  .contWrap01 .univList li {
    width: 25%;
  }
  /*.contWrap01 .univList li.active {*/
  .contWrap01 .univList li {
    margin-bottom: 20px;
  }

  .contWrap01 .univList li:nth-child(odd) {
    margin-right: initial;
  }


  .contWrap01 .univList li:nth-child(3n+1),
  .contWrap01 .univList li:nth-child(3n+3) {
    margin-left: 5%;
    margin-right: 5%;
  }

  /*½ÃÅ¥¸®Æ¼*/
  #contents .security {
    position: initial;
    display: flex;

  }

  #contents .security .left {
    order: 0;
    display: initial;
    position: initial;
  }

  #contents .security .left .bottom_textWrap {
    display: initial;
  }

  #contents .security .left .bottom_textWrap p {
    text-align: left;
  }

  #contents .security .right {
    order: 1
  }

  #contents .usageList li {
    margin-bottom: initial
  }

  #contents .usageList li .arrow {
    width: initial;
    left: initial;
    bottom: initial;
    right: -25%;
    top: 44%;
  }

  #contents .usageList li .arrow > span img {
    transform: initial;
  }


  #contents .reviews{
    margin-top:20px;
  }

  #contents .reviews li{
    width: 50%;
  }

  #contents .reviews li .font_middle_wp{
    font-size: 2.5vw;
  }
  #contents .reviews li.selected p{
    font-size: 1.65vw;
  }


  #contents .partner_ul {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .option_description .font_normal{
    line-height: 2rem;
  }

  .font_normal {
    font-size: 1rem;

  }
  .partnerWrap {
    /*margin-bottom: 50px*/
  }

  .payment_inquiry {
    max-width: 400px;
    margin: 0 auto;
  }
  .payment_inquiry #univInfFom .sectionComponent{
    margin-bottom: 80px;
  }


  .footer .ftLogo {
    display: flex;
    justify-content: start;
    max-width: 100px;
  }
  .footer .ftLogo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


}

/* µ¥½ºÅ©Åé ¹× ´õ Å« È­¸é¿¡ ´ëÇÑ ½ºÅ¸ÀÏ */
@media (min-width: 1024px) {

  .header h1 a {
    width: 200px; /* µ¥½ºÅ©Åé È­¸é¿¡ ¸ÂÃã */
    height: 50px;
    background-size: contain;
  }
  .header nav{
    position: initial;
  }
  .header nav >div{
    width: initial;
  }
  .header nav{
    background: initial;
    width: initial;
    padding-top: initial;
    padding-right: initial;
  }
  .util .util_item01, .util .util_item02, .util .util_item11{
    height: 40px;
  }
  .util .on{
    padding: 0 20px;
  }
  .util .util_item01 a, .util .util_item02 a, .util .util_item11 a{
    line-height: 40px;
  }
  .gnb ul li a {
    padding: 10px 20px;
  }
  .menu-trigger{
    display: none;
  }
  #contents {
    max-width: 1460px;
    margin: 0 auto;
  }



  #contents .contMain .left .text_box {
    padding: 3rem; /* µ¥½ºÅ©Åé¿¡ ¸ÂÃá ÆÐµù */
  }

  #contents .contMain .left .btn_box {
    padding-left: 3rem;
    justify-content: left;
  }
  #contents .contMain .left .btn_box > p a{
    font-size: 1.5rem;
  }


  .sectionComponent {
    margin-top: 150px;
  }

  #contents .contWrap01 .conArea .univArea {
    margin-top: 20px;
  }

  .contWrap01 .univList li {
    width: 23%;
  }

  .contWrap01 .univList li:nth-child(3n+1), .contWrap01 .univList li:nth-child(3n+3) {
    margin-left: initial;
    margin-right: initial;
  }


  #showMore, #showLess {
    padding: .5rem 3rem;
    border-radius: 2rem;
    width: 21.875rem;
    height: 4.375rem;;
    flex-shrink: 0;
  }

  #contents .contWrap01 .univArea .btn_Wrap {
    margin-top: 4.38rem;
  }

  #contents .locationWrap {
    padding: 2rem 10rem;
  }


  #contents.payment_inquiry {
    max-width: 500px;
  }
  .payment_inquiry #univInfFom .sectionComponent{
    margin-bottom: 160px;
  }
  .payment_inquiry>.sectionComponent{
    margin-top: 50px;
  }
  .payment_inquiry .info > div{
    height: 80px;
  }

  .payment_inquiry.step2 #univmorFom{
    display: flex;
    flex-flow: unset;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  #contents.payment_inquiry.step2 .contMain{
    width: 47%;
    align-self: start;
  }
  .payment_inquiry.step2>.sectionComponent{
    max-width: 500px;
    margin: 0 auto;
  }

  #contents.payment_inquiry.step2{
    max-width: 1460px;
  }

  #contents .reviews{
    margin-top:30px;
  }
  #contents .reviews li{
    width: 25%;
  }

  #contents .reviews li.selected p{
    font-size: .8vw;
  }

  /*#contents .reviews li .font_middle_wp{*/
  /*  font-size: calc(0.7rem + 0.1vw)*/
  /*}*/
  #contents .reviews li.item01 p{
    top: 52%;
    left: 16%;
  }

  #contents .reviews li.item02 p{
    top: 30%;
    left: 17%;
  }
  #contents .reviews li.item03 p{
    top: 52%;
    left: 16%;
  }
  #contents .reviews li.item04 p{
    top: 30%;
    left: 17%;
  }

  #contents .reviews li .font_middle_wp{
    font-size:1.8vw;
  }

  .payment_inquiry.step2 label.listChk01:before{
    bottom: 3px;
  }

  #contents .usageList li .arrow{
    right: -23%;
  }

  .option_select .font_middle{
    text-align: left;
    font-weight: 800;
  }
  .option_description .font_normal{
    line-height: 2.5rem;
  }
  .option_description .font_description{
    font-size: 1rem;
  }

  .tuitionPayment .privacy_btnWrap .prevBtn,
  .tuitionPayment .privacy_btnWrap .nextBtn{
    height: 50px;
  }
  .tuitionPayment .privacy_btnWrap{
    margin-top: 20px;
    margin-bottom: 20px;

  }
  .payment_inquiry .subLocation li{
    border-radius: 2rem;
  }
  #confiText{
    font-size: 1.2rem;
  width: 130px;
  }



  /*#contents .reviews li.item01 p{*/
  /*  top: 47%;*/
  /*  left: 18%;*/
  /*  width: 68%;*/
  /*}*/
  /*#contents .reviews li.item02 p{*/
  /*  top: 30%;*/
  /*  left: 9%;*/
  /*}*/

  /*#contents .reviews li.item03 p{*/
  /*  top: 35%;*/
  /*  left: 21%;*/
  /*}*/

  /*#contents .reviews li.item04 p{*/
  /*  top: 30%;*/
  /*  left: 9%;*/
  /*}*/

    /*  ÇªÅÍ*/
  .footer {
  }

  .footWrap {
    max-width: 1460px;
    margin: 0 auto;
  }

  .footer .ftLogo {
    flex: initial;
    width: 15%;
    margin-bottom: .5rem;
  }

  .footer .ftLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain
  }

  .footer .addWrap {
    margin-top: initial
  }

  .footer .addWrap ul {
    padding: 0 1rem;
    box-sizing: border-box
  }

  .footer .addWrap ul li > div {
    line-height: 1.5
  }

  .footer .addWrap p {
    margin: initial;
    line-height: 1.5
  }

  footer .font_small{
    font-size: 14px;
  }
  .footer .addWrap p{
    margin: 0 0 .7rem .7rem;
  }
  .footer .owner {
    width: 30%;

  }
}





/*# insert VIDEO - 20240417 */

.videowrap {
    max-width: 100%; 
    margin: 0px auto 0; 
}

.video {
    position: relative;
    width: 100%;
    height: 0; 
    padding-bottom: 56.25%; 
}

.video iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
} 

