/* 공통 */
.sec-heading__pin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding:6px 12px;
  margin-bottom:30px;
  border-radius:20px;
  background: linear-gradient(90deg,rgba(245, 132, 102, 1) 0%, rgba(251, 176, 64, 1) 100%);
  font-family: "Comfortaa", sans-serif;
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
}

.sec-heading__title {
  font-size:5.2rem;
  font-weight:700;
  margin-bottom:40px;
}

.sec-heading__text {
  font-family: 'Spoqa Han Sans Neo', 'sans-serif';
  font-size: 2.4rem;
}

@media screen and (max-width:1200px) {
  .sec-heading__pin {
    font-size:1.6rem;
  }

  .sec-heading__title {
    font-size:3.6rem;
  }

  .sec-heading__text {
    font-size: 2rem;
  }
}
@media screen and (max-width:1024px) {
  .sec-heading__pin {
    margin-bottom:20px;
  }

  .sec-heading__title {
    margin-bottom:30px;
  }
}
@media screen and (max-width:768px) {
  .sec-heading__pin {
    font-size:1.4rem;
  }

  .sec-heading__title {
    font-size:2.8rem;
  }

  .sec-heading__text {
    font-size:1.8rem;
  }
}
@media screen and (max-width:576px) {
  .sec-heading__pin {
    padding: 4px 8px;
    margin-bottom:12px;
    font-size:1.2rem;
  }

  .sec-heading__title {
    font-size:2.4rem;
    margin-bottom:16px;
  }

  .sec-heading__text {
    font-size:1.6rem;
  }
}


/* 메인 배너 */
.main-sec--banner {
  width: 100%;
  height: calc(var(--vh, 1vh)*100);
	height: 100svh;
}

.main-sec--banner .swiper {
  height: 100%;
}

.main-sec--banner .swiper-wrapper {
  height: 100%;
}

.main-sec--banner .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.main-sec--banner .swiper-controller {
  position: absolute;
  bottom:28vh;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width:1400px;
  width: 95%;
  z-index:10;
}

.main-sec--banner .swiper-controller .controller-wrap {
  max-width:280px;
  width:100%;
}

.main-sec--banner .swiper-controller .din {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom:10px;
}

.main-sec--banner .swiper-controller .prev,
.main-sec--banner .swiper-controller .next {
  display: block;
  width: 22px;
  height:12px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.main-sec--banner .swiper-controller .prev {
  background-image: url('../img/main/main_banner_prev.png');
}

.main-sec--banner .swiper-controller .next {
  background-image: url('../img/main/main_banner_next.png');
}

.main-sec--banner .swiper-controller .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  width: auto;
}

.main-sec--banner .swiper-controller .pagination span {
  font-family: 'Spoqa Han Sans Neo', 'sans-serif';
  font-size:1.8rem;
  color:#fff;
}

.main-sec--banner .swiper-controller .pagination i {
  display: block;
  width:1px;
  height:18px;
  background-color: #fff;
}

.main-sec--banner .swiper-controller .progressbar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: rgba(255,255,255,.2);
}

.main-sec--banner .swiper-controller .progressbar-fill {
  width:0;
  height:100%;
  background-color: #fff;
  transition: width 2.5s linear;
}

.main-sec--banner .context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top:0;
  left:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width:1400px;
  width: 95%;
  height:100%;
  padding-bottom:40px;
  z-index:5;
}

.main-sec--banner .title {
  font-size:6.8rem;
  color:#fff;
  margin-bottom:30px;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition:all 1s ease;
}

.main-sec--banner .text {
  font-size:3.2rem;
  line-height:1.5;
  color:#fff;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  opacity: 0;
  -webkit-transition:all 1s ease .2s;
  transition:all 1s ease .2s;
}

.main-sec--banner .background {
  position: relative;
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1.1);
	transform: scale(1.1);
  -webkit-transition: transform 2.5s linear;
  transition: transform 2.5s linear;
}

.main-sec--banner .swiper-slide-active .title,
.main-sec--banner .swiper-slide-active .text {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.main-sec--banner .swiper-slide-active .background {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width:1200px) {
  .main-sec--banner .title {
    font-size: 4.8rem;
  }

  .main-sec--banner .text {
    font-size:2.4rem;
  }

  .main-sec--banner .swiper-controller .pagination span {
    font-size:1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .main-sec--banner .swiper-controller .controller-wrap {
    max-width: 220px;
  }

  .main-sec--banner .swiper-controller .pagination {
    gap:16px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--banner .context {
    padding:0px;
  }

  .main-sec--banner .title {
    font-size: 3.6rem;
    margin-bottom:20px;
  }

  .main-sec--banner .text {
    font-size:2rem;
  }

  .main-sec--banner .swiper-controller {
    bottom: 20vh;
  }

  .main-sec--banner .swiper-controller .controller-wrap {
    max-width: 180px;
  }

  .main-sec--banner .swiper-controller .pagination span {
    font-size:1.4rem;
  }

  .main-sec--banner .swiper-controller .prev, 
  .main-sec--banner .swiper-controller .next {
    width:18px;
    height:10px;
    background-size:18px auto;
  }
}
@media screen and (max-width:576px) {
  .main-sec--banner .title {
    font-size: 2.8rem;
    margin-bottom:16px;
  }

  .main-sec--banner .text {
    font-size:1.8rem;
  }

  .main-sec--banner .swiper-controller {
    bottom: 24px;
  }

  .main-sec--banner .swiper-controller .controller-wrap {
    max-width: 100%;
  }

  .main-sec--banner .swiper-controller .din {
    margin:0px;
  }

  .main-sec--banner .swiper-controller .pagination {
    gap:10px;
  }

  .main-sec--banner .swiper-controller .pagination span {
    font-size:1.2rem;
  }

  .main-sec--banner .swiper-controller .pagination i {
    height: 12px;
  }

  .main-sec--banner .swiper-controller .progressbar {
    display: none;
  }
}


/* 메인 인트로 */
.main-sec--intro {
  padding:130px 0px;
  background: url('../img/main/main_intro_bak.png') no-repeat center / cover;
}

.main-sec--intro .text {
  position: relative;
  font-size:0px;
}

.main-sec--intro .text p {
  display: flex;
  justify-content: space-between;
  font-size:4.8rem; 
}

.main-sec--intro .text img {
  display: block;
  position: absolute;
  top:50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-sec--intro .text01,
.main-sec--intro .text02 {
  margin-bottom:80px;
}

.main-sec--intro .text01 {
  padding-right:39%;
}

.main-sec--intro .text01 img {
  right:4%;
}

.main-sec--intro .text02 {
  padding-left:25%;
}

.main-sec--intro .text02 img {
  left:1%;
}

.main-sec--intro .btns-group {
  display: flex;
  justify-content: center;
  gap:28px;
  padding-top:100px;
}

.main-sec--intro .btns-group .btn {
  max-width:300px;
  height:80px;
} 


@media screen and (min-width:1201px) {
  .main-sec--intro .text01 p,
  .main-sec--intro .text03 p {
    opacity:0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
  }

  .main-sec--intro .text02 p {
    opacity:0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
  }

  .main-sec--intro .text01 p.aos-animate,
  .main-sec--intro .text03 p.aos-animate {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  
  .main-sec--intro .text02 p.aos-animate {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@media screen and (max-width:1536px) {
  .main-sec--intro .text p {
    justify-content: unset;
    gap:20px;
    font-size:3.6rem;
  }
}
@media screen and (max-width:1200px) {
  .main-sec--intro .text p {
    justify-content: center;
    gap:12px;
    font-size:2.8rem;
    white-space: nowrap;
  }
  
  .main-sec--intro .text img {
    display: none;
  }

  .main-sec--intro .text01 {
    padding:0px;
  }

  .main-sec--intro .text02 {
    padding:0px;
  }

  .main-sec--intro .text01, 
  .main-sec--intro .text02 {
    margin-bottom: 20px;
  }

  .main-sec--intro .text01 p,
  .main-sec--intro .text03 p {
    opacity:0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
  }

  .main-sec--intro .text02 p {
    opacity:0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
  }

  .main-sec--intro .text01 p.aos-animate,
  .main-sec--intro .text03 p.aos-animate {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .main-sec--intro .text02 p.aos-animate {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (max-width:1024px) {
  .main-sec--intro {
    padding: 100px 0px;
  }

  .main-sec--intro .btns-group {
    gap:20px;
    padding-top: 80px;
  }

  .main-sec--intro .btns-group .btn {
    max-width:240px;
    height:60px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--intro {
    padding: 80px 0px;
  }

  .main-sec--intro .text p {
    display: block;
    white-space: wrap;
    text-align: center;
    font-size:2.4rem;
  }

  .main-sec--intro .text p span {
    display: block;
    margin-bottom: 10px;
  }

  .main-sec--intro .btns-group {
    gap:8px;
    padding-top:60px;
  }

  .main-sec--intro .btns-group .btn {
    max-width: 200px;
    height: 46px;
  }
}
@media screen and (max-width:576px) {
  .main-sec--intro .text01, .main-sec--intro .text02 {
    margin-bottom:16px;
  }

  .main-sec--intro .text p {
    font-size:1.8rem;
  }

  .main-sec--intro .text p span {
    margin-bottom: 6px;
  }

  .main-sec--intro .btns-group {
    gap:4px;
    padding-top: 40px;
  }

  .main-sec--intro .btns-group .btn {
    max-width: 180px;
    height: 40px;
  }
}


/* 상담분야 */
.main-sec--consult {
  position: relative;
  padding: 130px 0px;
}

.main-sec--consult::after {
  content: "";
  position: absolute;
  top:200px;
  left:0;
  width: 100%;
  height: 306px;
  z-index: -1;
  background: url('/asset/img/main/main_consult_bak.svg') no-repeat center / cover;
}

.main-sec--consult .list {
  display: flex;
  gap:28px;
}

.main-sec--consult .list li {
  flex:1 1;
}

.main-sec--consult .list .card {
  position: relative;
  width: 100%;
  height:0;
  padding-top:calc(560/448*100%);
  border-radius:20px;
  overflow: hidden;
}

.main-sec--consult .list .hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  padding:70px 0px 0px;
  text-align: center;
  z-index:6;
  opacity:0;
  visibility: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.main-sec--consult .list .hover-title {
  font-size:3.2rem;
}

.main-sec--consult .list .hover-text {
  font-size: 2rem;
  line-height:1.6;
  margin:40px 0px;
}

.main-sec--consult .list .hover-icon {
  display: block;
  width: 80px;
  height:80px;
  background: url('../img/icon/ico_arr03.png') no-repeat center;
}

.main-sec--consult .list .context {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  padding:70px 0px 0px;
  text-align: center;
  z-index: 5;
}

.main-sec--consult .list .context .title {
  font-size:3.2rem;
  font-weight:700;
}

.main-sec--consult .list .background {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  z-index: 1;
}

@media screen and (min-width:1201px) {
  .main-sec--consult .list li:hover .hover {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width:1200px) {
  .main-sec--consult::after {
    background-size: auto 230px;
  }

  .main-sec--consult .list .context .title {
    font-size:2.4rem;
  }
}
@media screen and (max-width:1024px) {
  .main-sec--consult {
    padding:100px 0px;
  }

  .main-sec--consult .list {
    gap:16px;
  }

  .main-sec--consult .list .context {
    padding:30px 0px 0px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--consult {
    padding:80px 0px;
  }

  .main-sec--consult::after {
    top:80px;
    background-size: auto 160px;
  }

  .main-sec--consult .list {
    flex-direction: column;
    justify-content: center;
    max-width:448px;
    width: 100%;
    margin: 0 auto;
  }

  .main-sec--consult .list li {
    flex:1 1 100%;
  }

  .main-sec--consult .list .card {
    padding-top: 80%;
  }

  .main-sec--consult .list .context .title {
    font-size: 2rem;
  }
}
@media screen and (max-width:576px) {
    .main-sec--consult::after {
      top:100px;
      height: 110px;
      background-size: auto 110px;
    }
}


/* 상담과정 */
.main-sec--order {
  padding:130px 0px;
  background-color: #fff9f0;
}

.main-sec--order .din {
  display: flex;
}

.main-sec--order .sec-heading {
  position: relative;
  width: 32%; 
}

.main-sec--order .sec-heading::after {
  content: "";
  display: block;
  position: absolute;
  left:-20px;
  bottom:80px;
  width: 77%;
  height: 45%;
  background: url('../img/main/main_order_bak.svg') no-repeat center / 100% auto;
  opacity: .1;
}

.main-sec--order .sec-area {
  display: flex;
  gap:11%;
  position: relative;
  width: 68%;
}

.main-sec--order .swiper-controller {
  position: relative;
  padding-left:50px;
}

.main-sec--order .swiper-pagination-custom {
  display: flex;
  flex-direction: column;
  height: 100%;
  white-space: nowrap;
}

.main-sec--order .swiper-pagination-custom li {
  flex:1 1;
  position: relative;
  opacity:.5;
  transition: all .5s ease;
  cursor: pointer;
  height:25%;
}

.main-sec--order .swiper-pagination-custom li::before {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left: -54px;
  width:10px;
  height:10px;
  background-color: #fbb040;
  border-radius: 50%;
}

.main-sec--order .swiper-pagination-custom li.active {
  opacity: 1;
}

.main-sec--order .swiper-pagination-custom span {
  display: block;
  font-size:1.8rem;
  margin-bottom:6px;
}

.main-sec--order .swiper-pagination-custom p {
  font-size:2rem;
  line-height:1.4;
  padding-top: 14px;
}

.main-sec--order  .progress {
  position: absolute; 
  top:0px;
  left:0px;
  width: 2px;
  height: 100%;
  background-color: rgba(251,176,64,.2);
  overflow: hidden;
  z-index: 2;
}

.main-sec--order .progress-fill {
  position: absolute;
  top:2px;
  width: 100%;
  height: 0%; 
  background: #fbb040; 
  transition: height .5s ease;
}

.main-sec--order .context {
  padding-top:40px;
}

.main-sec--order .thumb {
  position: relative;
  width: 100%;
  height:0;
  padding-top: calc(458/686*100%);
  border-radius:20px;
  overflow: hidden;
}

.main-sec--order .thumb div {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.main-sec--order .step {
  font-size:2rem;
}

.main-sec--order .title {
  font-size: 3.2rem;
  margin:12px 0px 30px;
}

.main-sec--order .text {
  font-size: 2rem;
  line-height:1.6;
}

@media screen and (max-width:1200px) {
  .main-sec--order .sec-heading::after {
    width:57%;
    height: 34%;
  }

  .main-sec--order .swiper-pagination-custom img {
    width:50px;
  }

  .main-sec--order .swiper-pagination-custom p {
    font-size:1.8rem;
    padding-top:4px;
  }

  .main-sec--order .swiper-pagination-custom span {
    font-size:1.6rem;
    margin-bottom:4px;
  }

  .main-sec--order .step {
    font-size:1.8rem;
  }

  .main-sec--order .title {
    font-size:2.4rem;
  }

  .main-sec--order .text {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .main-sec--order {
    padding:100px 0px;
  }

  .main-sec--order .din {
    flex-wrap: wrap;
  }

  .main-sec--order .sec-heading {
    width: 100%;
    margin-bottom:60px;
  }

  .main-sec--order .sec-heading::after {
    width: 12%;
    height:100%;
    left: unset;
    bottom:0px;
    right: 20px;
  }

  .main-sec--order .sec-area {
    width: 100%;
    justify-content: space-between;
    gap:0px;
  }

  .main-sec--order .swiper-controller {
    width: 200px;
    padding-left:30px;
  }

  .main-sec--order .swiper-pagination-custom li::before {
    left: -34px;
  }

  .main-sec--order .swiper-order {
    width: calc(100% - 260px);
    margin:0px;
  }

  .main-sec--order .context {
    padding-top:30px;
  }

  .main-sec--order .title {
    margin:12px 0px 20px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--order {
    padding: 80px 0px;
  }

  .main-sec--order .sec-area {
    flex-direction: column;
  }

  .main-sec--order .swiper-controller {
    width: 100%;
    padding:0px;
  }

  .main-sec--order .progress {
    width: 100%;
    height: 2px;
  }

  .main-sec--order .progress-fill {
    top:0px;
    left:0px;
    width: 0%;
    height: 100%;
    transition: width .5s ease;
  }

  .main-sec--order .swiper-pagination-custom {
    flex-direction: unset;
  }

  .main-sec--order .swiper-pagination-custom li {
    flex:1 1 25%;
    max-width: 25%;
    text-align: center;
  }

  .main-sec--order .swiper-pagination-custom li::before {
    top:-3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width:8px;
    height:8px;
  }

  .main-sec--order .swiper-pagination-custom .switch-icon {
    font-size:0px;
    padding:16px 10px;
  }

  .main-sec--order .swiper-pagination-custom p {
    display: none;
  }

  .main-sec--order .swiper-order {
    max-width: 680px;
    width: 100%;
    margin:0 auto;
  }

  .main-sec--order .step {
    font-size:1.6rem;
  }

  .main-sec--order .title {
    font-size: 2rem;
  }

  .main-sec--order .text {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .main-sec--order .sec-heading {
    margin-bottom:40px;
  }

  .main-sec--order .sec-heading::after {
    width: 83px;
    height:63px;
    background-size:auto 63px;
  }

  .main-sec--order .swiper-pagination-custom .switch-icon {
    padding:10px 6px;
  }

  .main-sec--order .swiper-pagination-custom img {
    width: 42px;
  }

  .main-sec--order .context {
    padding-top:20px;
  }

  .main-sec--order .step {
    font-size: 1.4rem;
  }

  .main-sec--order .title {
    font-size:1.8rem;
    margin:8px 0px 16px;
  }

  .main-sec--order .text {
    font-size:1.4rem;
  }
}


/* 안내 */
.main-sec--guide {
  padding:70px 0px;
  background-color: #f58466;
}

.main-sec--guide .din {
  position: relative;
  display: flex;
  gap:12.8%;
}

.main-sec--guide .lt {
  width: 46.6%;
}

.main-sec--guide .img {
  position: absolute;
  left:0;
  bottom:-70px;
  font-size:0px;
  overflow: hidden;
}

.main-sec--guide .mo {
  display: none;
}

.main-sec--guide .title {
  font-size: 3.8rem;
}

.main-sec--guide .text {
  font-size: 2rem;
  margin:20px 0px 30px;
}

.main-sec--guide .btn {
  max-width:210px;
  height:60px;
}

@media screen and (max-width:1200px) {
  .main-sec--guide .img {
    width:50%;
  }

  .main-sec--guide .title {
    font-size:2.4rem;
  }

  .main-sec--guide .text {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .main-sec--guide {
    padding:50px 0px;
  }

  .main-sec--guide .img {
    bottom:-50px;
  }

  .main-sec--guide .text {
    margin:16px 0px 20px;
  }

  .main-sec--guide .btn {
    max-width:200px;
    height:48px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--guide {
    padding: 40px 0px 0px;
  }

  .main-sec--guide .din {
    flex-wrap: wrap;
    gap:40px;
    text-align: center;
  }

  .main-sec--guide .lt {
    width: 100%;
    order: 2;
  }

  .main-sec--guide .rt {
    width: 100%;
    order: 1;
  }

  .main-sec--guide .pc {
    display: none;
  }

  .main-sec--guide .mo {
    display: block;
  }

  .main-sec--guide .img {
    position: relative;
    left: unset;
    bottom: unset;
    max-width: 433px;
    width: 100%;
    margin:0 auto;
  }

  .main-sec--guide .title {
    font-size:2rem;
  }

  .main-sec--guide .text {
    font-size:1.6rem;
  }

  .main-sec--guide .btn {
    max-width: 180px;
    height:40px;
  }
}
@media screen and (max-width:576px) {
  .main-sec--guide .din {
    gap:20px;
  }

  .main-sec--guide .img {
    max-width: 326px;
  }

  .main-sec--guide .title {
    font-size:1.8rem;
  }

  .main-sec--guide .text {
    font-size:1.4rem;
    margin:10px 0px 16px;
  }

  .main-sec--guide .btn {
    max-width: 140px;
    height:34px;
  }
}


/* 오시는 길 */
.main-sec--location {
  padding:130px 0px;
}

.main-sec--location .din {
  display: flex;
  justify-content: space-between;
  gap:8.5%;
}

.main-sec--location .lt {
  position: relative;
  width: 49%;
}

.main-sec--location .rt {
  width: 595px;
}

.main-sec--location .map {
  position: absolute;
  top:0;
  right:0;
  width: 138%;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #000;
  overflow: hidden;
}

.main-sec--location .info {
  padding-left:6.7%;
  font-size:0px;
}

.main-sec--location .info dt {
  position: relative;
  margin-bottom:30px;
  font-size: 2.4rem;
}

.main-sec--location .info i {
  display: block;
  position: absolute;
  top:0;
  left:-6.7%;
  width:24px;
  height:26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 26px;
}

.main-sec--location .info p {
  font-size:2rem;
  line-height:1.8;
}

.main-sec--location .info a:not(:last-child) {
  margin-right:10px;
}

.main-sec--location .line {
  display: block;
  margin: 30px 0px;
  width: 100%;
  height:1px;
  background-color:#c9c9c9;
}

@media screen and (max-width:1200px) {
  .main-sec--location .din {
    gap:4%;
  }

  .main-sec--location .info dt {
    font-size: 2rem;
  }

  .main-sec--location .info p {
    font-size:1.8rem;
    line-height:1.6;
  }

}
@media screen and (max-width:1024px) {
  .main-sec--location {
    padding:100px 0px;
  }

  .main-sec--location .din {
    flex-wrap: wrap;
    gap:40px;
  }

  .main-sec--location .lt {
    position: relative;
    width: 100%;
  }

  .main-sec--location .rt {
    width: 100%;
  }

  .main-sec--location .map {
    position: relative;
    width: 100%;
    height:0;
    padding-top: 52.25%;
    border-radius:20px;
  }

  .main-sec--location .info {
    padding-left:40px;
  }

  .main-sec--location .info i {
    left:-40px;
  }

  .main-sec--location .info dt {
    margin-bottom:20px;
  }

  .main-sec--location .line {
    margin:20px 0px;
  }

  .main-sec--location .info a {
    display: inline-block;
    width: 160px;
  }

  .main-sec--location .info a:not(:last-child) {
    margin-right:6px;
  }
}
@media screen and (max-width:768px) {
  .main-sec--location {
    padding:80px 0px;
  }

  .main-sec--location .info {
    padding-left:30px;
  }

  .main-sec--location .info dt {
    font-size:1.8rem;
  }
  
  .main-sec--location .info i {
    left:-30px;
    width:20px;
    height: 22px;
    background-size:auto 22px;
  }

  .main-sec--location .info p {
    font-size: 1.6rem;
  }

  .main-sec--location .info a {
    width: 140px;
  }

  .main-sec--location .info dd img {
    width: 424px; 
  }
}
@media screen and (max-width:576px) {
  .main-sec--location .din {
    gap:20px;
  }

  .main-sec--location .info {
    padding-left:0px;
  }

  .main-sec--location .info dt {
    display: flex;
    align-items: center;
    gap:4px;
    font-size:1.6rem;
    margin-bottom:12px;
  }
  
  .main-sec--location .info i {
    position: relative;
    top:unset;
    left: unset;
    width:14px;
    height: 16px;
    background-size:auto 16px;
  }

  .main-sec--location .info p {
    font-size: 1.4rem;
    line-height:1.4;
  }

  .main-sec--location .info a {
    width: 120px;
  }

  .main-sec--location .info a:not(:last-child) {
    margin-right:4px;
  }

  .main-sec--location .info dd img {
    width: 324px; 
  }

  .main-sec--location .line {
    margin:16px 0px;
  }
}

/* Popup */
#popup {
	position: relative;
}

.popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
}

@keyframes popup-fade {
	0% { opacity: 0;
	-webkit-transform: translateY(25px);
	-ms-transform: translateY(25px);
	transform: translateY(25px); }
	100% { opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0); }
}
.popup-layer__body {
	background: #fff;
}

.popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
}

.popup-layer__foot {
	background: #424242;
}

.popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
}

.popup-layer__foot li {
	width:50%;
	padding:10px;
}

.popup-layer__foot li:first-child {
	padding-right:0;
}

.popup-layer__foot li:last-child {
	text-align: right;
}

.popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

	.popup-layer {
		width:calc(100% - 10px);
	}

	.popup-layer img {
		max-width: none;
		width:100%;
		height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
}