@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');
.serif {
  font-family: "Noto Serif KR", serif;
}
.deco {
  font-family: "PT Serif", serif;
  font-style: normal;
}
.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/************inner size*************/
.inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
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%;
}
/**********common************/
.video_wrap {
  position: absolute;
  width: 100%;
  height: 0%;
  padding-top: 56.25%;
  left: 0;
  top: 0;
}
.video_wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000040;
  left: 0;
  top: 0;
  z-index: 1;
}
.video_wrap iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
main {
  overflow: hidden;
}
/************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;
}
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 .header_logo {
  text-align: center;
}
header .header_logo a img {
  width: 250px;
  transition: 0.5s;
}
nav .nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
nav .nav_item {
  position: relative;
}
nav .nav_item > a {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: block;
  transition: 0.3s;
  height: 100px;
  line-height: 100px;
}
nav .nav_item > a:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 0;
  height: 1px;
  bottom: 30px;
  transition: 0.3s;
}
nav .nav_item.on > a:before, 
nav .nav_item:hover > a:before {
  width: 100%;
}
nav .nav_dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 50px;
  display: none;
  text-align: center;
}
nav .nav_dropdown a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  transition: all 0.3s;
  color: #fff;
  font-weight: 300;
  border-bottom: 1px solid transparent;
}
nav .nav_dropdown a:hover {
  border-color: #fff;
}
header .sns_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .sns_btns a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}
header .sns_btns span {
  display: block;
  width: 1px;
  height: 15px;
  background: #fff;
  opacity: 0.5;
}
header .sns_btns a:hover {
  opacity: 0.3;
}
header.on .nav_item > a {
  color: #222;
}
header.on .sns_btns span {
  background: #222;
}
header.on .nav_item > a:before {
  background: #222;
}
/***************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_content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
}
.footer_content p span {
  padding: 0 15px;
}
.footer_content p small {
  display: block;
  margin-top: 15px;
  font-size: 11px;
}
/*.main common*/
.title {
  margin-bottom: 50px;
}
.title h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
  display: inline-block;
  padding: 0 100px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;

}
.title h3 {
  color: #bf1035;
  font-size: 20px;
}
.title p {
  font-size: 16px;
  line-height: 1.5;
}
.more {
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  padding: 10px 40px;
  border: 1px solid #999;
  border-radius: 3px;
  text-align: center;
  color: #333;
  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: #222;
  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;
}
/*****************visual****************/
.visual {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  overflow: hidden;
  height: 100vh;
}
.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: translate(-50%, -50%) 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: #fff;
  z-index: 999;
  text-align: center;
}
.visual .visual_slide .swiper-slide-active .visual_txt {
  animation: visual_txt 1.5s 1 normal;
}
@keyframes visual_txt {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.visual .visual_txt h2 {
  font-size: 60px;
  font-weight: 300;
}
.visual .visual_txt h2 strong {
  font-weight: 700;
}
.visual .visual_txt h3 {
  font-size: 24px;
  display: inline-block;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 10px 30px;
  margin: 10px 0 30px;
  font-weight: 300;
  letter-spacing: 10px;
}
.visual .visual_txt p {
  font-size: 16px;
  font-weight: 300;
}
.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: #bf1035;
  opacity: 1;
}
.visual .scroll_down_box {position: absolute; color: #fff; bottom: 50px; left: 30px; z-index: 999; text-align: center;}
.visual .scroll_down_box p {font-size: 10px; font-weight: 700; letter-spacing: 3px; 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: 123px;  overflow: hidden;}
.visual .scroll_down_box .scroll_down_mouse span {background: #fff; 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%;}
}
/************** menu ****************/
.menu {
  padding: 100px 0;
  background: #f4f4f4;
  text-align: center;
}
.menu_txt a {
  margin-top: 30px;
  display: inline-block;
  border-radius: 50px;
  padding: 8px 30px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background: #8b001d;
  transition: all .3s;
}
.menu_txt a:hover {
  padding: 8px 40px;
}
.menu_slide {
  margin-bottom: 10px;
}
.menu_slide_reverse .swiper-wrapper,
.menu_slide .swiper-wrapper {
  transition-timing-function: linear !important;
  height: inherit;
}
.food img {
  border-radius: 8px;
}
/********** about ***********/
.about {
  position: relative;
  width: 100%;
  height: 700px;
}
.about .video_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #00000090;
}
.about .video_wrap:before {
  background: #00000060;
}
.about .about_cont {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 2;
}
.about .about_txt h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 200;
  display: block;
  padding: 0;
  padding-top: 0;
  border: none;
}
.about .about_txt {
  color: #fff;
}
.about .about_txt p {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 200;
}
.about .about_txt p:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  background: #fff;
  left: 0;
  top: 0;
}
.about .swiper {
  border-radius: 10px;
}
/*************reserve****************/
.reserve {
  padding: 100px 0;
  background: url(../img/reservebg.jpg) no-repeat center / cover fixed;
  position: relative;
  text-align: center;
}
.reserve .reserve_cont {
  max-width: 1000px;
  background: rgba(255,255,255,0.8);
  border-radius: 15px;
  padding: 100px;
}
.reserve .reserve_cont .reserve_form {
  background: rgba(255,255,255,0.8);
  padding: 50px;
  border-radius: 10px;
}
.reserve .reserve_cont .reserve_form .consult_cont table td select {
  background: #fff;
}
.location .location_txt {
  text-align: center;
  margin-bottom: 50px;
}
/*************gall************/
.gall {
  text-align: center;
}
.main_gall_bbs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main_gall_bbs li {
  width: 32%;
  text-align: center;
  margin-bottom: 30px;
}
.main_gall_bbs li a {
  display: block;
  position: relative;
}
.gall_bbs_img .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
  overflow: hidden;
  border-radius: 8px;
}
.gall_bbs_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  object-fit: cover;
}
.main_gall_bbs li:hover .gall_bbs_img img {
  transform: translate(-50%, -50%) scale(1.05);
}
/*************mainbbs**************/
.mainbbs {
  padding: 150px 0;
  background: url(/img/bbsmainbg.jpg) no-repeat center / cover fixed;
  text-align: center;
}
.mainbbs_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainbbs_list .mainbbs_item {
  width: 48%;
  padding: 50px;
  text-align: left;
  border-radius: 10px;
  background: rgba(255,255,255,0.8);
}
.mainbbs_item h2 {
  display: flex;
  font-size: 32px;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.mainbbs_item h2 a {
  font-size: 16px;
  font-weight: 400;
}
.lst li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  border-bottom: 1px solid #bbb;
}
.lst li a {
  font-size: 16px;
}
.lst li .date {
  font-size: 12px;
}