/* ë¡œê·¸ì¸ */
.main_wrap{
  /* background: url(../img/main/main_bg.jpg) no-repeat  center center; */
  background-color: #F4F4F4;
  background-size: cover;
  text-align: center;
  padding-top: 80px;
  /* padding: 70px 20px 40px; */
  min-height: calc(100vh);
}
.title_wrap h2{
  font-size: 55px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.title_wrap p{
  font-size: 18px;
  color: #2f2f2f;
  letter-spacing: -0.06em;
  margin-top: 10px;
}
.login{
  margin-bottom: 100px;
}
.login .bt_sub_txt{
  max-width: 1028px;
  margin: 20px auto 0;
}
.login .bt_sub_txt p{
  text-align: middle;
  font-size: 18px;
}
.login_wp{
  border: 1px solid #d2b77c;
  border-radius: 15px;
  max-width: 1028px;
  margin: 60px auto 0px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.login_wp .txt{
	    background-color: #0A8F3B;
  background-size: cover;
  text-align: center;
  font-size: 38px;
  color: #fff;
  line-height: 390px;
  letter-spacing: -0.06em;
}
.login_wp .write_form{
  padding: 0 20px;
  text-align: center;
}
.login_wp .input_box{
  position: relative;
}
.login_wp .write_form label{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  color: #b4985a;
  font-size: 20px;
}
.login_wp .write_form input:focus+label,
.login_wp .write_form input:valid+label {
  transform: translate(-50%, -50%) scale(.7);
	-webkit-transform: translate(-50%, -50%) scale(.7);
	-ms-transform: translate(-50%, -50%) scale(.7);
  top: 24%;
}
.login_wp .write_form input{
  display: block;
  margin: 0 auto;
  max-width: 345px;
  min-width: auto;
  width: 100%;
  border: 1px solid #b4985a;
  font-size: 20px;
  height: 62px;
  padding: 25px 15px 5px;
  text-align: center;
  position: relative
}
.login_wp .write_form input::placeholder{
  color: #b4985a;
}
.login_wp .write_form button{
  max-width: 345px;
  min-width: auto;
  width: 100%;
  line-height: 60px;
  font-size: 20px;
}
.login_wp .write_form::before{
  content: '';
  display: block;
  background: url(../img/main/ico_login.png) no-repeat;
  width: 58px;
  height: 53px;
  margin: 0 auto 37px;
  background-size: contain;
}
.copyright{
  /* margin-top: 165px; */
  color: #2f2f2f;
  font-size: 16px;
}

@media screen and (max-width: 768px){
  .title_wrap h2 {
    font-size: 28px;
  }
  .title_wrap p {
    font-size: 14px;
    margin-top: 5px;
  }
  .main__content{
    min-height: calc(100vh - 69px);
    background: #f4f4f4;
  }
  .main_wrap{
    padding: 65px 20px 30px;
    min-height: 0;
  }
  .login{
    margin-bottom: 70px;
  }
  .login .bt_sub_txt{
    max-width: 100%;
    margin: 15px 25px 0;
  }
  .login .bt_sub_txt p{
    text-align: left;
    font-size: 14px;
    line-height: 22px;
  }
  .login_wp{
    max-width: 100%;
    margin: 50px 25px 0px;
    grid-template-columns: 1fr;
  }
  .login_wp .txt{
    font-size: 24px;
    line-height: 140px;
  }
  .login_wp .write_form {
    padding: 32px 24px 35px;
  }
  .login_wp .write_form::before {
    width: 47px;
    height: 43px;
    margin: 0 auto 20px;
  }
  .login_wp .write_form input{
    max-width: 100%;
    font-size: 16px;
    height: 45px;
    padding: 19px 15px 5px;
  }
  .login_wp .write_form label{
    font-size: 16px;
  }
  .login_wp .write_form input:focus+label, .login_wp .write_form input:valid+label {
    transform: translate(-50%, -50%) scale(.6);
    -webkit-transform: translate(-50%, -50%) scale(.6);
    -ms-transform: translate(-50%, -50%) scale(.6);
    top: 25.5%;
  }
  .login_wp .write_form button {
    max-width: 100%;
    line-height: 43px;
    font-size: 16px;
    margin-top: 12px;
  }
  .copyright {
    /* margin-top: 65px; */
    font-size: 14px;
  }
}

/* ë¡œê·¸ì¸ í›„ ë©”ì¸í™”ë©´ */
.start_menu_wp{
  max-width: 980px;
  margin: 60px auto 100px;
}
.start_menu_wp > ul{
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, auto));
  gap: 45px 32px;
}
.start_menu_wp > ul > li{
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  min-height: 200px;
  position: relative;
  transition: all 0.3s;
}
.start_menu_wp > ul > li a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.start_menu_wp > ul > li a::after{
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: #0A8F3B url(../img/main/ico_arrow.png) no-repeat center center;
  border-radius: 50%;
  bottom: -20px;
  transition: all 0.3s;
}
.start_menu_wp > ul > li:hover{
  box-shadow: 6px 0 21px rgb(76 61 27 / 0.08);
}
.start_menu_wp > ul > li:hover a::after{
  background-color: #8d6e2a;
}
.start_menu_wp > ul > li p {
  font-size: 21px;
  letter-spacing: -0.06em;
}

/* 각 메뉴별 이미지 지정 */
.start_menu_wp > ul > li p::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.menu-intro p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic1.png);
}
.menu-loan p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic2.png);
}
.menu-overpay p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic3.png);
}
.menu-contract p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic4.png);
}
.menu-acquisition p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic5.png);
}
.menu-stamp p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic6.png);
}
.menu-saving p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic7.png);
}
.menu-pension p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic8.png);
}
.menu-compound p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic9.png);
}
.menu-krstock p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic10.png);
}
.menu-usstock p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic11.png);
}
.menu-map p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic12.png);
}
.menu-usecase p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic13.png);
}
.filemenu1 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic14.png);
}
.filemenu2 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic15.png);
}
.filemenu3 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic16.png);
}
.filemenu4 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic17.png);
}
.filemenu5 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic18.png);
}
.filemenu6 p::before {
  background-image: url(/rsc/templete/vrisvr/pic/pic19.png);
}

.qr_code_wrap .code_img{
  width: 225px;
  height: 225px;
  margin: 0 auto;
  text-align: center;
}
.qr_code_wrap .dialog__text{
  margin-bottom: 0;
}
.btn-area > button {
  min-width: 190px;
  line-height: 58px;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 768px){
  .start_menu_wp {
    max-width: 100%;
    margin: 60px auto 80px;
  }
  .start_menu_wp > ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 12px;
  }
  .start_menu_wp > ul > li a::after{
    width: 28px;
    height: 28px;
    background-size: 11px 8px;
    bottom: -14px;
  }
  .start_menu_wp > ul > li{
    min-height: 140px;
  }
  .start_menu_wp > ul > li p {
    font-size: 16px;
  }
  .start_menu_wp > ul > li p::before{
    width: 39px;
    height: 41px;
    margin: 0 auto 13px
  }
  .start_menu_wp > ul > li:nth-child(2) p::before{
    width: 37px;
    height: 41px;
  }
  .start_menu_wp > ul > li:nth-child(3) p::before{
    width: 37px;
    height: 36px;
  }
  .start_menu_wp > ul > li:nth-child(4) p::before{
    width: 39px;
    height: 43px;
  }
  .start_menu_wp > ul > li:nth-child(5) p::before{
    width: 46px;
    height: 44px;
  }
  .start_menu_wp > ul > li:nth-child(6) p::before{
    width: 43px;
    height: 36px;
  }
  .start_menu_wp > ul > li:nth-child(7) p::before{
    width: 39px;
    height: 36px;
  }
  .start_menu_wp > ul > li:nth-child(8) p::before{
    width: 40px;
    height: 41px;
  }
  dialog .btn-area {
    margin-top: 25px;
    gap: 7px;
  }
  .qr_code_wrap .code_img{
    width: 132px;
    height: 132px;
  }
  .btn-area > button {
    min-width: 94px;
    line-height: 32px;
    font-size: 15px;
  }
}

/* ê°€ìž…ì°¨ëŸ‰ ì„ íƒ */
.join_car_choose_wrap{
  max-width: 860px;
  margin: 60px auto 100px;
}
.join_car_choose_wrap > p{
  font-size: 25px;
  margin-bottom: 35px;
}
.join_car_choose_wrap .car_wrap{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
.car_wrap > .wrap {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d2b77c;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  transition: all 0.3s;
}
.car_wrap > .wrap:hover{
  box-shadow: 6px 5px 21px rgb(76 61 27 / 0.2);
}
.car_wrap > .wrap a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 40px;
}
.car_wrap > .wrap p {
  padding: 20px 40px;
  text-align: left;
  font-size: 20px;
  color: #2f2f2f;
}
.car_wrap > .wrap p:not(:last-of-type){
  border-bottom: 1px solid #d2b77c;
}
.car_wrap > .wrap p span{
  display: block;
}

@media screen and (max-width: 768px){
  .join_car_choose_wrap {
    max-width: 100%;
    margin: 60px auto 125px;
  }
  .join_car_choose_wrap > p{
    font-size: 23px;
    margin-bottom: 20px;
  }
  .join_car_choose_wrap .car_wrap{
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .car_wrap > .wrap a {
    padding: 10px 10px;
  }
  .car_wrap > .wrap p {
    padding: 20px 7px 10px;
    font-size: 18px;
  }
  .car_wrap > .wrap{
    min-width: 100%;
    max-width: none;
  }
}
/*0531 ë©”ì¸í‘¸í„° ì¶”ê°€*/
.footer {
	color:#000;
	font-weight: 500;
}
.footer ul {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  margin-bottom:8px;
}
.footer ul > li {
  position: relative;
  padding:0 10px;
}
.footer ul > li:not(:last-of-type)::after {
  content:"";
  width:1px;
  height: 14px;
  background:#000;
  position:absolute;
  top:3px;
  right:0;
}
@media screen and (max-width: 768px){
	.header__logo a {
	font-size:22px;
	}
	.footer {
		font-size: 14px;
	}
	.footer ul > li:not(:last-of-type)::after {
		height: 11px;
	}
}
/*ë©”ì¸ì‚¬ì—…ìží™•ì¸ íŒì—…*/
.operator_regist_pop .form label{
  display: inline-block;
  font-size: 18px;
  letter-spacing: -0.06em;
  min-width: 137px;
}
.operator_regist_pop .form input{
  width: calc(100% - 151px);
  margin-left: 10px;
  border: 1px solid #d2d2d2;
  height: 55px;
  font-size: 18px;
  padding: 0 15px;
}
.operator_regist_pop .form:first-child{
  margin-bottom: 25px;
}
.operator_regist_pop .btn{
  text-align: right;
  margin-top: 20px;
}
.operator_regist_pop .btn button{
  min-width: 120px;
  line-height: 38px;
  font-size: 17px;
}
dialog .operator_regist_pop .btn-area {
  margin-top: 30px;
}
.operator_regist_pop .dialog__text{
  text-align: left;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.06em;
}
.operator_regist_pop .dialog__text > span{
  display: block;
  margin-top: 10px;
}
.operator_regist_pop .btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width: 768px){
  .operator_regist_pop .dialog__text {
    font-size: 16px;
    line-height: 24px;
  }
  .operator_regist_pop .dialog__text > span {
    margin-top: 5px;
  }
  .operator_regist_pop .form label{
    min-width: 122px;
    font-size: 16px;
  }
  .operator_regist_pop .form input{
    width: calc(100% - 136px);
    height: 35px;
    font-size: 16px;
    padding: 0 10px;
  }
  .operator_regist_pop .form:first-child {
    margin-bottom: 20px;
  }
  .operator_regist_pop .btn{
    margin-top: 7px;
  }
  .operator_regist_pop .btn button {
    min-width: 85px;
    line-height: 28px;
    font-size: 12px;
  }
  dialog .operator_regist_pop .btn-area {
    margin-top: 25px;
  }
  .operator_regist_pop .btn-area.one > :is(button, a, input){
    min-width: auto;
    flex: 0 0 150px;
  }
}