@charset "UTF-8";
/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cactus+Classical+Serif&display=swap');
.serif {
  font-family: "Noto Serif KR", serif;
}
.deco {
  font-family: "Unna", serif;
  font-style: normal;
}
.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*inner size*/
.inner {
  padding: 0 100px;
  width: 100%;
  margin: 0 auto;
}
/*body bg*/
body {
  font-family: "Pretendard", sans-serif;
}
section {
  overflow: hidden;
  margin-bottom: 100px;
}
/*********topbtn***********/
.topbtn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: #666;
  z-index: 999;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  display: none;
}
.topbtn:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.topbtn:hover:before {
  top: 50%;
}
/*********header***********/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.5s ease; 
  white-space: nowrap;
  background: transparent;
}
header .inner {
  position: relative;  
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  transition: all .5s;
  height: 150px;
  max-width: 1440px;
}
header.on {
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
header.on .inner {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
header .inner .header_logo {
  text-align: center;
}
header .inner .header_logo a {
  display: block;
  width: 250px;
  height: 55px;
  background: url(/img/logo.png) no-repeat center / cover;
  transition: all .3s ease-in-out;
  filter: invert(99%) sepia(1%) saturate(2%) hue-rotate(88deg) brightness(104%) contrast(101%);
}
header.on .inner .header_logo a {
  filter: none;
}
header .inner nav {
  width: 60%;
}
header .inner nav ul.menu {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
}
header .inner nav ul.menu li {
  position: relative;
}
header .inner nav ul.menu li > a {
  position: relative;
  font-size: 16px;
  display: block;
  transition: 0.3s;
  font-weight: 600;
  height: 100px;
  line-height: 100px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
header.on .inner nav ul.menu li > a {
  color: #111;
}
header .inner nav ul.menu li > a:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 0;
  height: 1px;
  bottom: 30px;
  transition: 0.3s;
}
header.on .inner nav ul.menu li > a:before {
  background: #111;
}
header .inner nav ul.menu li.on > a:before, 
header .inner nav ul.menu li:hover > a:before {
  width: 100%;
}
header .inner nav ul.menu li .sidemenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 90px;
  background: rgba(255,255,255,0.7);
  padding: 20px 50px;
  text-align: center;
  display: none;
  border-radius: 15px;
}
header .inner nav ul.menu li .sidemenu.active {
  top: 90px;
  /* display: block; */
  opacity: 1;
}
header .inner nav ul.menu li .sidemenu a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  transition: all 0.3s;
  color: #333;
  font-weight: 400;
  border-bottom: 1px solid transparent;
}
header .inner nav ul.menu li .sidemenu a:hover {
  border-color: #333;
}
header .inner .sns_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .inner .sns_btns a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s;
}
header .inner .sns_btns span {
  display: block;
  width: 1px;
  height: 15px;
  background: #222;
  opacity: 0.5;
}
header .inner .sns_btns a:hover {
  opacity: 0.3;
}
header.on .inner .sns_btns a {
  color: #111;
}
/***************footer***************/
footer {
  background: #333;
  padding: 30px 0;
  color: #fff;
}
footer .footer_logo {
  margin-right: 100px;
}
footer .footer_logo img {
  width: 200px;
}
footer > .inner {
  display: flex;
  justify-content: start;
  align-items: center;
  max-width: 1400px;
}
footer .inner .footer_content ul {
  display: flex;
  justify-content: start;
  gap: 5px;
  margin-bottom: 15px;
}
footer .inner .footer_content ul li a {
  font-size: 13px;
}
footer .inner .footer_content ul li:first-of-type a {
  color: dodgerblue;
}
footer .inner .footer_content ul li span {
  font-size: 8px;
  vertical-align: middle;
}
footer .inner .footer_content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
}
footer .inner .footer_content p small {
  display: block;
  margin-top: 15px;
  font-size: 11px;
}
/*.main common*/
.title h2 {
  font-size: 54px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 200;
  position: relative;
  line-height: 1em;
}
.title h2:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  background: #666;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.title h3 {
  font-size: 18px;
  color: var(--main-color);
  margin-bottom: 10px;
}
.title p {
  font-size: 15px;
  line-height: 1.5;
}
.more {
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  padding: 6px 25px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  text-align: center;
  color: var(--main-color);
  transition: 0.3s;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  transition: all 0.3s;
  z-index: 1;
}
.more:hover {
  color: #fff;
}
.more:hover:before {
  top: 0;
  z-index: -1;
}
.location_table {
  border-color: #bbb;
  color: #333;
  width: 100%;
}
.location_table th {
  background: #999;
  color: #fff;
}
.location_table th,
.location_table td {
  padding: 15px;
  text-align: center;
  font-size: 18px;
}
.location_search {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.location_search a {
  text-align: center;
  padding: 10px 50px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.location_search a img {
  height: 25px;
}
.location_search a span {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
}
.location_search a:nth-child(2) {
  margin: 0 50px;
}
.location_search a:nth-child(1) span {
  color: #03cf5d;
}
.location_search a:nth-child(2) span {
  color: #0089ff;
}
.location_search a:nth-child(3) span {
  color: #dd4436;
}
/*.main visual*/
.visual {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  overflow: hidden;
  margin-bottom: 0;
}
.visual .visual_slide {
  position: relative;
  height: 100%;
}
.visual .visual_slide .swiper-slide > img {
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%; */
  object-fit: cover;
  transition: all 5s;
}
.visual .visual_slide .swiper-slide-active > img {
  transform: scale(1.03);
}
.visual .visual_slide .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.visual .visual_txt {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  color: #222;
  z-index: 999;
  text-align: center;
  line-height: 1em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  transition: all 1s ease-in-out;
  opacity: 0;
}
.visual .visual_txt:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 50px;
  background: #222;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
}
.visual .visual_slide .swiper-slide-active .visual_txt {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.visual .visual_txt h2 {
  font-size: 48px;
  letter-spacing: -2px;
  margin: 30px 0; 
  font-weight: 500;
  line-height: 1em;
  color: #000;
}
.visual .visual_txt h3 {
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 100;
}
.visual .visual_txt p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3px;
}
.swiper .swiper-btns {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.swiper-btns .swiper-button-prev,
.swiper-btns .swiper-button-next {
  background: #00000050;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: none;
}
.swiper-btns .swiper-button-prev:before,
.swiper-btns .swiper-button-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
}
.swiper-btns .swiper-button-prev:after,
.swiper-btns .swiper-button-next:after {
  display: none;
}
.swiper-btns .swiper-button-prev:before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.swiper-btns .swiper-button-next:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper .swiper-btns-small {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.swiper-btns-small .swiper-button-prev,
.swiper-btns-small .swiper-button-next {
  background: #00000050;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: none;
}
.swiper-btns-small .swiper-button-prev:before,
.swiper-btns-small .swiper-button-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
}
.swiper-btns-small .swiper-button-prev:after,
.swiper-btns-small .swiper-button-next:after {
  display: none;
}
.swiper-btns-small .swiper-button-prev:before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.swiper-btns-small .swiper-button-next:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: #aaa;
  opacity: 0.5;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color);
  opacity: 1;
}
.visual .scroll_down_box {position: absolute; color: #000; bottom: 20px; left: 20px; z-index: 999; text-align: center;}
.visual .scroll_down_box p {font-size: 9px; font-weight: 300; letter-spacing: 5px; writing-mode : vertical-rl;}
.visual .scroll_down_box .scroll_down_mouse {background: rgba(255, 255, 255, 0.27); width: 1px; height: 100px; position: absolute; left: 6px; bottom: 130px;  overflow: hidden;}
.visual .scroll_down_box .scroll_down_mouse span {background: #000; display: block; width: 1px; height: 100px; position: absolute; left: 0; top: -100%; animation: wheeldown 2s 1s infinite normal;}
@keyframes wheeldown {
	0% {
		top: -100%;
	}
	100% {top: 100%;}
}
/* main_about */
.about {
  padding: 100px 0;
  background: #f8f6f1;
  position: relative;
}
.about .title {
  text-align: center;
  margin-bottom: 50px;
}
.about_slide {
  position: relative;
  width: 140%;
  left: 50%;
  transform: translateX(-50%) !important;
  overflow: visible !important;
}
.about_slide .swiper-slide img {
  border-radius: 10px;
}
.about_slide .swiper-slide span {
  position: absolute;
  left: 40px;
  bottom: -35px;
  color: #222;
  font-size: 16px;
  font-weight: 900;
}
.about_slide .swiper-slide span:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100px;
  background: var(--main-color);
  left: -10px;
  top: -80px;
}
.about .about_slide .swiper-pagination {
  bottom: -70px;
}
.about .about_slide .swiper-pagination .swiper-pagination-bullet {
  margin: 0 10px;
}
.gallery_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery_txt {
  flex: 1;
  text-align: center;
}
.gallery_txt h2 {
  font-size: 80px;
  font-weight: 100;
}
.gallery_txt p {
  color: #666;
  margin: 15px 0;
}
.main_gall_bbs {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main_gall_bbs li {
  width: 49%;
  margin-bottom: 50px;
}
.main_gall_bbs li a p {
  padding: 20px 0 0 40px;
  position: relative;
  color: #222;
  transition: all .3s ease-in-out;
  font-weight: 900;
}
.main_gall_bbs li a p:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 80px;
  background: var(--main-color);
  left: 30px;
  top: -40px;
}
.main_gall_bbs li a .thumb {
  position: relative;
  border-radius: 0 15px 0 0;
  overflow: hidden;
}
.main_gall_bbs li a .thumb span{
  position: absolute;
  display: block;
  padding: 20px;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.main_gall_bbs li a:hover .thumb span {
  opacity: 1;
}
.main_gall_bbs li a:hover p {
  color: var(--main-color);
}
.hall {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  position: relative;
}
.hall .hall_slide {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.hall .hall_cont {
  background: rgba(255,255,255,0.8);
  padding: 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.reserve {
  padding: 100px 0;
  background: url(/img/reservebg.jpg) no-repeat center / cover fixed;
  position: relative;
}
.reserve_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reserve_txt {
  text-align: center;
  width: 50%;
}
.reserve_txt h2 {
  font-size: 80px;
  font-weight: 100;
}
.reserve_txt p {
  color: #666;
  margin: 15px 0;
}
.reserve_form {
  background: rgba(255,255,255,0.8);
  padding: 50px;
  border-radius: 10px;
  width: 50%;
}
.reserve_form .consult_cont table td select {
  background: #fff;
}
.reserve_form .consult_cont table th {
  font-weight: 900;
}
.location .inner {
  /* max-width: 1440px; */
  /* padding: 0; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location .location_txt {
  text-align: center;
  margin-bottom: 50px;
  width: 50%;
}