@charset "utf-8";

/* main */
main{
  width: 100%;
  height: 100vh;
  background: url(../img/home/main_back.jpg) no-repeat;
  background-size: cover;
  background-position: 85% center;
}
main .wrap{
  height: 100%;
  padding-top: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
main h4{
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
}
main h2{
  margin-top: 2rem;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.42;
  letter-spacing: 0.01em;
}
main h2 span{
  color: var(--main);
}
main p{
  margin-top: 4rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}
main a{
  margin-top: 8rem;
  width: fit-content;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  position: relative;
}
main a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2.1px;
  background: var(--main);
}
main a:hover::after{
  animation: line_fill .5s;
}
@keyframes line_fill{
  0%{width: 0%;}
  100%{width: 100%;}
}
main a img{
  width: 8px;
  object-fit: contain;
  margin-left: 8px;
}


/* intro-video */
.intro-video{
  padding: 18rem 0 25rem;
}
.intro-video img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11rem;
  max-height: 95%;
  object-fit: contain;
  z-index: -1;
}
.intro-video .wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-video iframe{
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 880 / 500;
  border: none;
  border-radius: 1.6rem;
}


/* review */
.review{
  padding: 14rem 0;
  background: #F7F7F7;
}
.review .review_slide{
  width: 100%;
  overflow: visible;
}
.review .review_slide::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 200%;
  transform: translateX(-100%) translateY(-25%);
  background: #F7F7F7;
  z-index: 1;
}
.review .review_slide .swiper-slide{
  height: auto;
  position: relative;
  padding: 4rem 3rem 4.5rem 4rem; 
  background-color: #fff;
  box-shadow: .9rem 1.2rem 2.7rem 2.5rem rgba(0, 0, 0, .03);
}
.review .review_slide .swiper-slide .profile_box img{
  display: inline-block;
  width: 3.5rem;
  min-width: 26px;
  object-fit: contain;
  margin-right: 1rem;
}
.review .review_slide .swiper-slide .profile_box b{
  display: inline-block;
  margin-top: 3px;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.004em;
  color: var(--grey1);
}
.review .review_slide .swiper-slide small{
  display: block;
  margin-top: 1rem;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.55;
  color: var(--grey2);
}
.review .review_slide .swiper-slide h3{
  margin-top: 4rem;
  line-height: 1.33;
  letter-spacing: 0;
  color: var(--grey1);
}
.review .review_slide .swiper-slide .p_box{
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review .review_slide .swiper-slide .p_box p{
  letter-spacing: 0;
  color: var(--grey1);
}
.review button.next{
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 6.2rem;
  z-index: 2;
}
.review button.next img{
  width: 100%;
  object-fit: contain;
}
.review .swiper-pagination{
  position: relative;
  margin-top: 8rem;
  display: none;
}
.review .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background-color: #D9D9D9; 
  opacity: 1;
  transition: .5s; 
  margin: 0 6px !important;
}
.review .swiper-pagination-bullet-active{
  width: 60px;
  border-radius: 8px;
  background-color: #666; 
  opacity: .9;
}

/* 로그아웃시 스타일 정의 */
/* 로그아웃 상태에서 .review_slide에 .login_required 클래스 추가, 로그인 상태에선 .login_required 클래스 삭제 */
.review .review_slide .swiper-slide p.locked{
  display: none;
  margin-top: 3rem;
  color: var(--main);
  letter-spacing: 0;
}
.review .review_slide.login_required .swiper-slide{
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 59rem;
}
.review .review_slide.login_required .swiper-slide *{
  display: none;
}
.review .review_slide.login_required .swiper-slide small{
  display: block;
  margin-top: 0;
}
.review .review_slide.login_required .swiper-slide h3, 
.review .review_slide.login_required .swiper-slide h3 br{
  display: block;
  margin-top: 1.5rem;
  color: #fff;
}
.review .review_slide.login_required .swiper-slide p.locked{
  display: block;
}






/* point */
.point{
  padding: 18rem 0;
  background: url(../img/home/point_back.jpg) no-repeat;
  background-size: cover;
}
.point .wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.point .title h2{
  color: #fff;
}
.point .title h2 span{
  color: var(--main);
}
.point .container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.point .container article{
  width: 86.44%;
  height: 41rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid #5d5d5d;
  border-radius: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, .1);
  overflow: hidden;
}
.point .container article .l_box{
  flex: 1;
  padding: 6rem 8rem;
  color: #fff;
}
.point .container article .l_box h6{
  font-weight: 400;
  font-family: "parlare", sans-serif;
  font-size: 1.2rem;
  line-height: 3.33;
  letter-spacing: -0.02em;
  color: var(--main);
  display: flex;
  align-items: center;
  height: 4rem;
}
.point .container article .l_box h6 span{
  display: inline-block;
  margin-left: 2rem;
  font-size: 2.2rem;
}
.point .container article .l_box h3{
  margin-top: 2rem;
}
.point .container article .l_box h3 span{
  color: var(--main);
}
.point .container article .l_box p{
  margin-top: 4rem;
  letter-spacing: 0;
  color: #d9d9d9;
}
.point .container article img{
  height: 100%;
  object-fit: contain;
  opacity: .9;
}


/* interview */
.interview{
  padding: 18rem 0 14rem;
  background: var(--dark2);
}
.interview .wrap{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.interview .l_text{
  width: 45%;
  display: flex;
  flex-direction: column;
}
.interview .l_text .title{
  margin-bottom: 4rem;
}
.interview .l_text h2{
  font-weight: 500;
  color: var(--main);
}
.interview .l_text .p_box{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.interview .l_text .p_box p{
  letter-spacing: 0;
  color: #d9d9d9;
}
.interview .l_text img{
  margin-right: -3.8rem;
  margin-top: 4.6rem;
  align-self: flex-end;
  width: 33rem;
  object-fit: contain;
}
.interview>img{
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
}


/* bna */
.bna{
  padding: 14rem 0 calc(14rem + 3rem + 2.4rem * 1.42);
  background: #F7F7F7;
}
.bna .top_continer{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bna .top_continer .title{
  margin-bottom: 0;
}
.bna .top_continer .title small{
  font-weight: 300;
  font-size: 14px;
  line-height: 1.57;
  color: var(--grey1);
}
.bna .top_continer .title small:first-of-type{
  margin-top: 3.5rem;
  margin-bottom: 1rem;
}
.bna .top_continer a{
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.004em;
  padding: 1.1rem 4.7rem;
  border: 1px solid var(--main);
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  margin-bottom: 14.3rem;
}
.bna .top_continer a:hover{
  background: var(--main);
  color: #fff;
}
.bna .top_continer a img{
  margin-left: 2rem;
  height: 10px;
  object-fit: contain;
  transition: .3s;
}
.bna .top_continer a:hover img{
  filter: brightness(10);
}
.bna .bna_slide{
  margin-top: 7rem;
  overflow: visible;
}
.bna .bna_slide::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: calc(100% + 64px);
  transform: translateX(-100%);
  background: #F7F7F7;
  z-index: 1;
}
.bna .bna_slide .swiper-slide{
  position: relative;
  width: 58rem;
  aspect-ratio: 58 / 28;
  display: flex;
  justify-content: space-between;
}
.bna .bna_slide .swiper-slide img{
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.bna .bna_slide .swiper-slide img:nth-child(1){
  border-radius: 1.6rem 0 0 1.6rem;
}
.bna .bna_slide .swiper-slide img:nth-child(2){
  border-radius:  0 1.6rem 1.6rem 0;
}
.bna .bna_slide .swiper-slide h3{
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translate(-50%, 100%);
}
.bna .bna_slide .swiper-slide button{
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}
.bna .bna_slide .swiper-slide button a{
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.9rem;
  letter-spacing: 0.004em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bna .bna_slide .swiper-slide button a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--main);
}
.bna .bna_slide .swiper-slide button a:hover::after{
  animation: line_fill .5s;
}
.bna .bna_slide .swiper-slide button a img{
  width: 5px;
  object-fit: contain;
  margin-left: 1rem;
}
.bna button.next{
  position: absolute;
  left: -4rem;
  top: 73.6%;
  transform: translateX(-100%);
  width: 4.8rem;
  height: 4.8rem;
  z-index: 2;
}
.bna button.next img{
  width: 100%;
  object-fit: contain;
}
.bna .swiper-pagination{
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.bna .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background-color: #D9D9D9; 
  opacity: 1;
  transition: .5s; 
  margin: 0 6px !important;
}
.bna .swiper-pagination-bullet-active{
  width: 60px;
  border-radius: 8px;
  background-color: #666; 
  opacity: .9;
}

/* subject */
.subject{
  padding: 18rem 0 22rem;
}
.subject .container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.subject .container article{
  width: calc(33.33% - 1.34rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
}
.subject .container article .t_box{
  position: relative;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 3.3rem 0 1.6rem;
  background: var(--dark2);
  border-radius: 1.6rem 1.6rem 0 0;
}
.subject .container article .t_box img{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 4.8rem;
  max-width: 18%;
  object-fit: contain;
}
.subject .container article .b_box{
  width: 100%;
  height: 100%;
  padding: 6rem 3rem;
  background: #FAF9F8;
  border-radius: 0 0 1.6rem 1.6rem;
}
.subject .container article .b_box ul li::before {
  flex-shrink: 0;
  content: '';
  display: inline-block;
  width: .4rem;
  height: .4rem;
  border-radius: 50%; 
  background-color: #000;
  margin-top: 1.15rem;
  margin-right: 1rem;
}
.subject .container article .b_box ul li{
  margin-top: 1rem;
  position: relative;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--grey1);
  display: flex;
  align-items: flex-start;
}
.subject .container article .b_box ul li:first-child{
  margin-top: 0;
}


/* view */
.view{
  display: flex;
  background: #FAF9F8;
  max-height: 750px;
  gap: 12rem;
}
.view .l_img{
  position: relative;
  width: 50%;
  aspect-ratio: 950 / 750;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease-in-out;
}
.view .r_box{
  position: relative;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  width: calc(50% - 12rem);
  height: 100%;
}
.view .r_box:after{
  content: '';
  position: absolute;
  top: 0;
  left: -12rem;
  width: 12rem;
  height: 100%;
  background: #FAF9F8;
  z-index: 2;
}
.view .r_box .title{
  padding-right: 3rem;
  margin-bottom: 12rem;
}
.view .r_box .page{
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
.view .r_box .page button{
  height: 2.4rem;
}
.view .r_box .page button img{
  height: 100%;
  object-fit: contain;
}
.view .r_box .page .pagination{
  font-family: "roboto", sans-serif;
  font-size: 2.2rem;
  line-height: 1.16;
  color: var(--grey2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.view .r_box .page .pagination .swiper-pagination-current {
  font-weight: 600;
  color: var(--dark2);
  margin-right: 1rem;
}
.view .r_box .page .pagination .swiper-pagination-total{
  font-weight: 400;
  font-size: 1.8rem;
  margin-left: 1rem;
}
.view .r_box .view_slide{
  width: 100%;
  overflow: visible;
}
.view .r_box .view_slide .swiper-slide{
  width: 20rem;
  aspect-ratio: 200 / 158;
}
.view .r_box .view_slide .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* place */
.place{
  padding: 18rem 0;
}
.place #map{
  width: 100%;
  height: 50rem;
  border: 0;
  border-radius: 1.6rem;
}
.place .info{
  margin-top: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid #D9D9D9;
}
.place .info div{
  width: 33.33%;
  height: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.place .info .c1{
  background: var(--dark2);
  justify-content: center;
}
.place .info .c1 img{
  width: 310px;
  max-width: 80%;
  object-fit: contain;
}
.place .info .c2{
  text-align: left;
  padding: 6rem 5rem 5.5rem;
  border-right: 1px solid #D9D9D9;
}
.place .info .c2 .num{
  width: 100%;
}
.place .info .c2 h3{
  width: 100%;
  display: block;
  margin-bottom: 1.6rem;
}
.place .info .c2 h6{
  width: 100%;
  display: block;
  font-family: "roboto", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: auto;
  white-space: nowrap;
}
.place .info .c2 a{
  flex: 0 0 auto;
  width: calc(100% - 1.5rem);
  height: 5.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.004em;
  transition: .4s;
  cursor: pointer;
}
.place .info .c2 a:hover{
  background: var(--main);
  color: #fff;
}
.place .info .c2 a img{
  margin-left: 2rem;
  height: 10px;
  object-fit: contain;
  transition: .4s;
}
.place .info .c2 a:hover img{
  filter: brightness(10);
}
.place .info .c3{
  padding: 6rem 5rem 5.5rem;
  color: var(--dark2);
}
.place .info .c3 h3{
  width: 100%;
  display: block;
  margin-bottom: 1.6rem;
}
.place .info .c3 ul{
  width: 100%;
  margin-bottom: 20px;
}
.place .info .c3 ul>li{
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.6;
}
.place .info .c3 ul>li:nth-child(1){
  letter-spacing: 0.012em;
}
.place .info .c3 ul>li:nth-child(2){
  letter-spacing: 0.013em;
}
.place .info .c3 ul>li:nth-child(3){
  letter-spacing: 0.024em;
}
.place .info .c3 ul>li:nth-child(4){
  letter-spacing: -0.01em;
}
.place .info .c3 ul>li span{
  color: var(--grey1);
}
.place .info .c3 ul>li:nth-child(1) span{
  letter-spacing: 0.0422em;
}
.place .info .c3 ul>li:nth-child(2) span{
  letter-spacing: 0.1em;
}
.place .info .c3 ul>li:nth-child(3) span{
  letter-spacing: 0.1em;
}
.place .info .c3 ul>li:nth-child(4) span{
  letter-spacing: 0;
}
.place .info .c3 p{
  width: 100%;
  display: block;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: -0.01em;
  color: var(--grey1);
}


/* qna */
.qna{
  padding: 15rem 0;
}
.qna .back_box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60rem;
  background: var(--dark2);
}
.qna .title{
  margin-bottom: 4rem;
}
.qna .title h2{
  color: #fff;
}
.qna .qna_list{
  margin: 0 auto;
  width: 1480px;
  max-width: 90%;
  background: #fff;
  border-radius: 1.6rem;
  padding: 6rem 0;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 2;
} 
.qna .qna_list>div{
  margin: 0 auto;
  max-width: 85%;
  width: 1180px;
  border-bottom: .5px solid var(--grey2);
}
.qna .qna_list>div button{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  padding: 3.6rem 0;
  text-align: left;
}
.qna .qna_list>div button .text_box{
  display: flex;
  width: 85%;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.qna .qna_list>div button .text_box i{
  font-style: normal;
  margin-top: -3px;
  margin-right: 10px;
  display: inline-block;
  font-family: "Noto Serif KR", serif;
  color: var(--grey2);
}
.qna .qna_list>div button .text_box br{
  display: none;
}
.qna .qna_list img.toggle-arrow{
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}
.qna .qna_list>div .answer{
  padding-bottom: 4rem;
  width: 90%;
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: var(--grey1);
}
.qna .qna_list>div .answer p{
  display: inline-block;
  word-break: normal;
  line-height: 1.6;
  letter-spacing: 0.004em;
}

 
.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0f0f0f;
    opacity: 0.4;
    z-index: 999;
}


.kakaoBtn {
	margin-top: 2.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.cursor-pointer {
	cursor:pointer;
}