:root {
  --mc: #051e38;
  --gold: #cfa66a;
  --wc: #ffffff;
  --gc-light: #999999;
  --gc-dark: #666666;
  --bc: #171717;
}


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');


.pc_none {
  display: none !important;
}
.m_none {
  display: block !important;
}

.tit_wrap h2 {
  font-size: 50px;
  line-height: 55px;
  font-weight: 200;
  color: var(--bc);
  position: relative;
  margin: 0 0 80px 0;
  /*transform: translatex(-20px);*/
  letter-spacing: -1px;
}
.tit_wrap h2 b {
  font-weight: 700;
}

.tit_wrap.on h2 {
}

.tit_wrap h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background: var(--bc);

  bottom: -40px;
}

.tit_wrap p {
  font-size: 20px;
  line-height: 29px;
  color: var(--gc-dark);
  transition-delay: 0.5s;
}

.tit_wrap.on p {
  opacity: 1;
  transform: translatex(0);
}

.b_r {
  display: none;
}

@media (max-width: 768px) {
  .b_r {
    display: block;
  }

  .tit_wrap h2 {
    font-size: 18px;
    line-height: 23px;
    color: var(--bc);

    position: relative;
    margin: 0 0 40px 0;
  }

  .tit_wrap.on h2 {
    opacity: 1;
    transform: translatex(0);
  }

  .tit_wrap h2::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 70px;
    background: var(--bc);

    bottom: -20px;
  }

  .tit_wrap p {
    font-family: "Nanum Myeongjo", serif;
    font-size: 14px;
    line-height: 19px;
    color: var(--gc-dark);
  }

  .tit_wrap.on p {
    opacity: 1;
    transform: translatex(0);
  }
}

.detail_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wc);

  width: 200px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  font-weight: 200;
  font-size: 14px;
  margin: 0 auto;
}

.detail_btn .arrow {
  position: relative;
  margin-left: 30px;
  width: 40px;

  transition: width 0.5s;
}

.detail_btn:hover .arrow {
  width: 60px;
}

.detail_btn .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--wc);
}

.detail_btn .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 1px;
  background: var(--wc);
  transform: rotate(45deg);
  transform-origin: right bottom;
}

@media (max-width: 768px) {
  .detail_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc);

    width: 160px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    font-weight: 200;
    font-size: 12px;
    margin: 0 auto;
  }

  .detail_btn .arrow {
    position: relative;
    margin-left: 30px;
    width: 30px;

    transition: width 0.5s;
  }

  .detail_btn:hover .arrow {
    width: 40px;
  }

  .detail_btn .arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--wc);
  }

  .detail_btn .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 1px;
    background: var(--wc);
    transform: rotate(45deg);
    transform-origin: right bottom;
  }
}

/* Header */
.Header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.Header h1.active {
  /*
  filter: invert(100%);*/
}

.Header .header_wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.Header .sitemap_btn {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;

  transition: 0.3s ease-in-out;
}

.Header .sitemap_btn span {
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: var(--wc);

  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.Header .sitemap_btn span.active {
  background-color: var(--bc);
}

.Header .sitemap_btn span.active2 {
  background-color: var(--wc);
}

.Header .sitemap_btn span:nth-child(1) {
  top: 0;
}

.Header .sitemap_btn span:nth-child(2),
.Header .sitemap_btn span:nth-child(3) {
  top: 10px;
}

.Header .sitemap_btn span:nth-child(4) {
  top: 20px;
}

.Header .sitemap_btn.on span {
  background: var(--wc);
}

.Header .sitemap_btn.on span:nth-child(1),
.Header .sitemap_btn.on span:nth-child(4) {
  opacity: 0;
}

.Header .sitemap_btn.on span:nth-child(2) {
  transform: rotate(45deg);
}

.Header .sitemap_btn.on span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Header - Res */
@media (max-width: 768px) {
  .Header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  /* r */
  .Header h1 {
    width: 120px;
  }

  .Header h1.active {
  }

  .Header .header_wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
  }

  .Header .sitemap_btn {
    position: relative;
    width: 26px;
    height: 18px;
    cursor: pointer;

    transition: 0.3s ease-in-out;
  }

  .Header .sitemap_btn span {
    position: absolute;
    height: 1px;
    width: 26px;
    background-color: var(--wc);

    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  }

  .Header .sitemap_btn span.active {
    background-color: var(--bc);
  }

  .Header .sitemap_btn span.active2 {
    background-color: var(--wc);
  }

  .Header .sitemap_btn span:nth-child(1) {
    top: 2px;
  }

  .Header .sitemap_btn span:nth-child(2),
  .Header .sitemap_btn span:nth-child(3) {
    top: 9px;
  }

  .Header .sitemap_btn span:nth-child(4) {
    top: 16px;
  }

  .Header .sitemap_btn.on span {
    background: var(--wc);
  }

  .Header .sitemap_btn.on span:nth-child(1),
  .Header .sitemap_btn.on span:nth-child(4) {
    opacity: 0;
  }

  .Header .sitemap_btn.on span:nth-child(2) {
    transform: rotate(45deg);
  }

  .Header .sitemap_btn.on span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* site_map : gnb */
.gnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: #000; */

  background-color: #ebab2b;
  backdrop-filter: blur(10px);

  width: 100%;
  height: 100%;
  z-index: 998;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gnb.on {
  opacity: 1;
  visibility: visible;
}

.gnb .sub_menu {
  display: flex;
  gap: 30px;
  color: var(--wc);

  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
}

.gnb .sub_menu > * {
  flex: 1;

  visibility: hidden;
  transform: translatey(-20px);
  opacity: 0;
  position: relative;
}

.gnb.on .sub_menu > * {
  visibility: visible;
  transform: translatey(0);
  opacity: 1;
}

.gnb.on .sub_menu > *:nth-child(1) {
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.gnb.on .sub_menu > *:nth-child(2) {
  transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.gnb.on .sub_menu > *:nth-child(3) {
  transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.gnb.on .sub_menu > *:nth-child(4) {
  transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.gnb.on .sub_menu > *:nth-child(5) {
  transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
}

.gnb.on .sub_menu > *:nth-child(6) {
  transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
}

.gnb .sub_list a {
  font-size: 24px;
  font-family: "Nanum Myeongjo", serif;
  line-height: 72px;
  font-weight: 600;
  display: block;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin: 0 0 24px 0;

  white-space: nowrap;
}

.gnb .sub_list ul > li > a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 100;
  color: #fff;
  border-bottom: none;
  margin: 0 0 5px 0;
}

.gnb .sub_list ul > li > a:hover {
  color: var(--wc);
}

/* site_map : gnb - Res */
@media (max-width: 768px) {
  .gnb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background-color: #000; */
    background-color: #ebab2b;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    z-index: 998;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .gnb.on {
    opacity: 1;
    visibility: visible;
  }

  .gnb .sub_menu {
    display: flex;
    gap: 30px;
    color: var(--wc);

    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;

    /* r */
    flex-direction: column;
  }

  .gnb .sub_menu > * {
    flex: 1;

    visibility: hidden;
    transform: translatey(-20px);
    opacity: 0;
    position: relative;
  }

  .gnb.on .sub_menu > * {
    visibility: visible;
    transform: translatey(0);
    opacity: 1;
  }

  .gnb.on .sub_menu > *:nth-child(1) {
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .gnb.on .sub_menu > *:nth-child(2) {
    transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
  }

  .gnb.on .sub_menu > *:nth-child(3) {
    transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
  }

  .gnb.on .sub_menu > *:nth-child(4) {
    transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
  }

  .gnb.on .sub_menu > *:nth-child(5) {
    transition: visibility 0.5s 0.4s, opacity 0.5s 0.4s, transform 0.5s 0.4s;
  }

  .gnb.on .sub_menu > *:nth-child(6) {
    transition: visibility 0.5s 0.5s, opacity 0.5s 0.5s, transform 0.5s 0.5s;
  }

  .gnb .sub_list a {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;

    display: block;
    color: #fff;
    border-bottom: none;
    margin: 0 0 0 0;

    white-space: nowrap;
  }

  /* r */
  .gnb .sub_list ul {
    display: none;

    padding-top: 15px;
  }

  .gnb .sub_list ul > li > a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 100;
    font-family: "Noto Serif KR", serif;

    color: #fff;
    border-bottom: none;
    margin: 0 0 0 0;
  }

  .gnb .sub_list ul > li > a:hover {
    color: var(--wc);
  }

  .scr_area_box {
    display: none;
  }
}

/* scrolldown */
.scr_area_box {
  position: fixed;
  z-index: 999;
  bottom: 100px;
  left: -20px;
  transform: rotate(-90deg);
}

.scr_area_box.on {
  display: none;
}

.scr_area {
  display: inline-block;
  animation: scr_down 2s infinite alternate;
}

@keyframes scr_down {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(20px);
  }
}

.scr_area span {
  background: linear-gradient(270deg, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 500;
}

.scr_area span.active {
  background: linear-gradient(270deg, #999999 0%, #171717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Main_fullpage */
/* Intro */
.main_slide_container {
  max-width: 1440px;
  border-radius: 4px;
  /*max-height: 680px;*/
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .main_slide_container {
    height: 100%;
    max-height: 100%;
  }
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}
@media screen and (max-width: 930px) {
  .left-side {
    text-align: center;
    margin-bottom: 50px;
  }
}

.mySwiper {
  display: flex;
  flex-grow: 1;
  position: relative;
}

.main {
  padding: 42px 0 30px;
  display: flex;
  flex-grow: 1;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 930px) {
  .main {
    display: inline-block;
    /*flex-direction: column-reverse;
      align-items: center;
      justify-content: space-around;*/
      align-content: center;
  }
}
.main-title {
  padding: 0px 0 30px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.14em;
  transition-delay: 0.3s;
  letter-spacing: -2px;
  font-family: "Noto Serif KR", serif;
  color: #fff;
}
.main-title b {
  color: #ebab2b;
  font-weight: 700;
}
.main-subtitle {
  font-weight: 400;
  font-size: 32px;
  margin-top: 14px;
  margin-bottom: 60px;
  transition-delay: 0.4s;
}
.main-content__title {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 14px;
  transition-delay: 0.2s;
}
.main-content__subtitle {
  font-size: 17px;
  line-height: 1.37;
  margin-bottom: 35px;
  letter-spacing: -0.02em;
  transition-delay: 0.3s;
  margin-top: 30px;
  color: #fff;
}
.main-content .more-menu {
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  transition-delay: 0.4s;
  background-color: #ebab2b;
  border-radius: 100px;
  color: #fff;
  padding: 18px 20px;
  width: 140px;
}
@media screen and (max-width: 930px) {
  .main-content .more-menu {
    display: none;
    justify-content: center;
  }
}
.main-content .more-menu svg {
  width: 28px;
  height: 18px;
  margin-left: 10px;
}

.center {
  display: flex;
  margin-left: 120px;
  position: relative;
  flex-shrink: 0;
  width: 41%;
}
@media screen and (max-width: 930px) {
  .center {
    margin-left: 0;
    width: unset;
    justify-content: center;
  }
}
.center .bottle-bg {
  width: 100%;
  object-fit: cover;
  border-radius: 160px;
}
@media screen and (max-width: 930px) {
  .center .bottle-bg {
    width: 260px;
    height: 390px;
  }
}
@media screen and (max-width: 575px) {
  .center .bottle-bg {
    width: 220px;
    height: 340px;
  }
}
.center .bottle-img {
  position: absolute;
  top: 30%;
  left: 0;
  transform: scale(1.6);
  width: 72%;
}

.swiper-pagination {
  display: none;
  position: absolute;
  right: 30px;
  left: auto;
  top: 100px;
  width: auto;
  bottom: auto;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
}

.button-wrapper {
  position: absolute;
  right: 160px;
  bottom: 45px;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 930px) {
  .button-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0 60px;
  }
  .center .bottle-img {
    width: 200px;
    top: 55px;
    position: unset;
  }
  .button-wrapper {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .button-wrapper {
    padding: 0 20px;
  }
}
.button-wrapper svg {
  width: 28px;
  color: #ebab2b;
}
.button-wrapper .swiper-button {
  border: 1px solid #ebab2b;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ebab2b 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.button-wrapper .swiper-button + .swiper-button {
  margin-left: 16px;
}
@media screen and (max-width: 930px) {
  .button-wrapper .swiper-button + .swiper-button {
    margin-left: 0;
  }
}
.button-wrapper .swiper-button:hover {
  background-color: #ebab2b;
  background-position: left bottom;
}
.button-wrapper .swiper-button:hover svg {
  stroke: #fff;
}
.button-wrapper .swiper-prev-button {
  background: linear-gradient(to left, #ebab2b 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease-out;
}
.button-wrapper .swiper-prev-button svg {
  transform: rotate(-180deg);
}
.button-wrapper .swiper-prev-button:hover {
  background-position: right bottom;
}

.swiper-slide {
  opacity: 0 !important;
  transition: 0.4s;
  padding: 5px 0 0px;
}
.swiper-slide-active {
  opacity: 1 !important;
}

.swiper-slide .main-wrapper > *,
.swiper-slide .main-content > * {
  transform: translateY(-30px);
  opacity: 0;
  transition-duration: 0.8s;
}

.swiper-slide-active .main-wrapper > *,
.swiper-slide-active .main-content > * {
  transform: none;
  opacity: 1;
}

.swiper-slide .bottle-bg {
  transition-duration: 0.6s;
  opacity: 0;
  object-position: 60%;
}

.swiper-slide-active .bottle-bg {
  opacity: 1;
  transform: none;
  object-position: 50%;
}

.swiper-slide .bottle-img {
  transition-duration: 0.8s;
  transform: scale(1.2);
  opacity: 0;
}

.swiper-slide-active .bottle-img {
  opacity: 1;
  transform: scale(1.6);
}

[data-sld="1"] .container,
[data-sld="1"] .header {
  background-color: var(--savanna-bg);
}

[data-sld="2"] .container,
[data-sld="2"] .header {
  background-color: var(--glacier-bg);
}

.intro {
  background: url(../images/main_bg0113_re.jpg) no-repeat center center/cover;
}
.sec_01-intro {
  background: url(../images/sec01_main_bg.png) no-repeat center center/cover;
}

.intro .main_tit {
  color: var(--wc);
  text-align: center;
}

.main_tit h2 {
  font-size: 100px;
  position: relative;
  margin: 0 0 150px 0;
  letter-spacing: 8px;
}

.sec_01-intro .main_tit strong {
  font-family: "Lora", serif;
  font-size: 20px;
  display: block;
  margin: 0 0 48px 0;
  opacity: 0;
  animation: delay_fade ease-in 1s 0s forwards;
}

.sec_01-intro h2 {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 57px;
  margin-top: 16px;
}
.sec_01-intro span {
  font-weight: 200;
  font-size: 19px;
}

.intro .main_tit h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 100px;
  width: 1px;
  background: var(--wc);
  left: 50%;
  bottom: -120px;
}

.sec_02 .main_tit {
  text-align: center;
  color: #fff;
}
.sec_02 .main_tit strong {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 200;
  margin-top: 20px;
}

.sec_02 .main_tit h2 {
  font-size: 50px;
  letter-spacing: -2px;
  line-height: 59px;
  font-weight: 700;
  margin-top: 20px;
}

.sec_02 .main_tit span {
  font-size: 18px;
  line-height: 25px;
  font-weight: 200;
}

.sec_02 .main_tit h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 100px;
  width: 1px;
  background: var(--wc);
  left: 50%;
  bottom: -120px;
}

.intro .main_tit p {
  font-size: 20px;
  line-height: 1.3;
  opacity: 0;
  font-weight: 200;
  animation: delay_fade ease-in 1s 3.3s forwards;
}

.intro .main_tit p > span {
  color: var(--gc-light);
}

@keyframes delay_fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Intro - Res */
@media (max-width: 768px) {
  .intro {
    /* background: url(../images/m_main_bg.jpg) no-repeat left center / cover;*/
  }

  .intro .main_tit {
    color: var(--wc);
    text-align: center;

    opacity: 0;
    animation: delay_fade ease-in 1s forwards;
  }

  .intro .main_tit strong {
    font-family: "VLADIMIR.TTF";

    font-size: 12px;
    display: block;
    margin: 0 0 20px 0;

    opacity: 0;
    animation: delay_fade ease-in 1s 0s forwards;
  }

  .intro .main_tit h2 {
    font-family: "Nanum Myeongjo", serif;
    font-size: 35px;
    position: relative;
    margin: 0 0 60px 0;
    letter-spacing: 0;

    opacity: 0;
    animation: delay_fade ease-in 1s 1.1s forwards;
  }

  .intro .main_tit h2::after {
    position: absolute;
    content: "";
    bottom: 0;
    height: 40px;
    width: 1px;
    background: var(--wc);
    left: 50%;
    bottom: -50px;

    opacity: 0;
    animation: delay_fade ease-in 1s 2.3s forwards;
  }

  .intro .main_tit p {
    font-family: "Lora", serif;
    font-size: 12px;
    line-height: 1.3;

    opacity: 0;
    animation: delay_fade ease-in 1s 3.3s forwards;
  }

  .intro .main_tit p > span {
    color: var(--gc-light);
  }

  @keyframes delay_fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
  .swiper-slide{
    padding: 0;
  }
}

/* sec_01 */
.sec_01 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  width: 100%;
}

.sec_01 .bene_list {
  margin-top: 30px;
  font-weight: 500;
  font-size: 21px;
  color: #3b1c09;
  letter-spacing: -1px;
}
.sec_01 .bene_list li {
  margin-bottom: 11px;
}
.sec_01 .bene_list li i {
  margin-right: 10px;
}

.bg_jamon {
  position: absolute;
  top: 0;
  right: 7%;
  height: 0;
}

.bg_jamon.on {
  height: 100%;
}

/* sec_01 - Res */
@media (max-width: 768px) {
  .sec_01 {
    background: url(../images/sec01_bg.jpg) no-repeat left / cover;
    width: 100%;
  }

  /* r */
  .sec_01 .tit_wrap {
    padding-top: 300px;
    text-align: center;
  }

  .bg_jamon {
    position: absolute;
    top: 0;
    right: 0;
    height: 0;
  }

  .bg_jamon.on {
    height: 50vh;
  }
}

/* sec_02 */
.sec_02 {
  background: url(../images/sec02_bg.jpg) no-repeat center center/cover;
}

.keywords {
  display: flex;
  justify-content: center;
}

.keywords > li {
  display: flex;
  width: 20%;
  height: 100vh;
  color: var(--wc);
  text-align: center;
  justify-content: center;
  align-items: center;

  position: relative;

  visibility: hidden;
  transform: translatey(-20px);
  opacity: 0;
}

.keywords > li.on {
  visibility: visible;
  transform: translatey(0);
  opacity: 1;
}

.keywords > li:nth-child(1).on {
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.keywords > li:nth-child(2).on {
  transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.keywords > li:nth-child(3).on {
  transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.keywords > li:nth-child(4).on {
  transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.keywords > li::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.keywords > li:last-child:before {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.keywords > li:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.keywords > li:hover .keywords-content {
  margin-top: 300px;
}

.keywords-content {
  width: 100%;
  margin-top: 500px;
  transition: all 300ms ease-out;

  padding: 0 30px;

  position: relative;
  z-index: 1;
}

.keywords-content span {
  font-size: 18px;
  font-weight: 300;
  display: block;
  margin: 0 0 24px 0;

  text-shadow: 0 0 3px #000;
}

.keywords-content h3 {
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 48px 0;

  text-shadow: 0 0 3px #000;
}

.keywords-content .keywords-desc {
  display: none;
}

.keywords > li:hover .keywords-desc {
  display: block;
}

.keywords-content .keywords-desc {
  line-height: 26px;
  font-weight: 300;
}

.keywords-desc p {
  margin: 0 0 48px 0;

  word-break: keep-all;
}

/* sec_02 - Res */
@media (max-width: 768px) {
  .sec_02 {
    background: url(../images/sec02_bg.jpg) no-repeat center center/cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .keywords {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    color: var(--wc);
    z-index: 1;
    padding-top: 400px;
  }

  .keywords .slick-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .keywords .slick-active {
    opacity: 1;
  }

  /* r */
  .keywords .slick-dots {
    margin: 30px 0;
    text-align: center;

    opacity: 0.6;
  }

  .keywords .slick-dots button {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0;
  }

  .keywords .slick-dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #f9f9f9;
    margin: 0 4px;
    /* cursor: pointer; */
    border-radius: 50%;
  }

  .keywords .slick-dots li.slick-active {
    background: var(--gold);
    width: 20px;
    border-radius: 20px;
  }

  .keywords > li {
    display: flex;
    width: 100%;
    height: 100%;
    color: var(--wc);
    text-align: center;
    justify-content: center;
    align-items: center;

    position: relative;

    /* visibility: hidden;
          transform: translatey(-20px);
          opacity: 0; */
  }

  /* 
      .keywords>li.on {
          visibility: visible;
          transform: translatey(0);
          opacity: 1;
      } */

  .keywords > li:nth-child(1).on {
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .keywords > li:nth-child(2).on {
    transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
  }

  .keywords > li:nth-child(3).on {
    transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
  }

  .keywords > li:nth-child(4).on {
    transition: visibility 0.5s 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
  }

  .keywords > li::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);

    display: none;
  }

  .keywords > li:last-child:before {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);

    display: none;
  }

  .keywords > li:hover {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );

    display: none;
  }

  .keywords > li:hover .keywords-content {
    margin-top: 0;
  }

  .keywords-content {
    width: 100%;
    margin-top: 0;
    transition: all 300ms ease-out;

    padding: 0 30px;

    position: relative;
    z-index: 1;
  }

  .keywords-content span {
    font-size: 14px;
    font-weight: 300;
    display: block;
    margin: 0 0 24px 0;

    text-shadow: 0 0 3px #000;
  }

  .keywords-content h3 {
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 24px 0;

    text-shadow: 0 0 3px #000;
  }

  .keywords-content .keywords-desc {
    display: none;

    display: block;
  }

  .keywords > li:hover .keywords-desc {
    display: block;
  }

  .keywords-content .keywords-desc {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 300;
  }

  .keywords-desc p {
    margin: 0 0 24px 0;

    word-break: keep-all;
  }
}

@media (max-height: 700px) {
  .keywords {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    color: var(--wc);
    z-index: 1;
    padding-top: 330px;
  }
}

/* sec_03 */
.sec_03 {
  background: url(../images/sec03_bg.jpg) no-repeat center center/cover;
}
.sec_03 .tit_wrap h2::before {
  display: none;
}
.sec_03 .tit_wrap h2{
    margin: 0 0 20px 0;
}
.sec_03 img {
  display: flex;
  margin: 0 auto;
  transition: 1s ease-out;
}

.sec_03 .tit_wrap,
.sec_04 .tit_wrap {
  text-align: center;
}

.sec_03 .tit_wrap h2::before,
.sec_04 .tit_wrap h2::before {
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec_03 .content figure {
  position: relative;

  visibility: hidden;
  transform: translatey(-20px);
  opacity: 0;
}

.sec_03 .content figure.on {
  visibility: visible;
  transform: translatey(0);
  opacity: 1;
}

.sec_03 .content figure:nth-child(1).on {
  transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
}

.sec_03 .content figure:nth-child(2).on {
  transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.sec_03 .content figure:nth-child(3).on {
  transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.sec_03 .content figure .cover {
  position: absolute;
  bottom: 0;
  color: var(--wc);
  padding: 40px;
  width: 100%;
}

.sec_03 .content figure .cover p {
  font-family: "Nanum Myeongjo", serif;
  font-size: 24px;
  line-height: 29px;
}

/* sec_03 - Res */
@media (max-width: 768px) {
  .sec_03 {
    background: url(../images/sec03_bg.jpg) no-repeat right/cover;
  }

  .sec_03 .tit_wrap,
  .sec_04 .tit_wrap {
    text-align: center;
  }

  .sec_03 .tit_wrap h2::before,
  .sec_04 .tit_wrap h2::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* r */
  .sec_03 .content {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .sec_03 .content .slick-dots {
    margin: 30px 0;
    text-align: center;

    /* opacity: 0.6; */
  }

  .sec_03 .content .slick-dots button {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0;
  }

  .sec_03 .content .slick-dots li {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--gc-light);
    margin: 0 4px;
    border-radius: 50%;
  }

  .sec_03 .content .slick-dots li.slick-active {
    background: var(--gold);
    width: 20px;
    border-radius: 20px;
  }

  .sec_03 .content figure {
    position: relative;

    visibility: hidden;
    transform: translatey(-20px);
    opacity: 0;

    width: 100%;
  }

  .sec_03 .content figure .img_box {
    height: 200px;
  }

  .sec_03 .content figure .img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .sec_03 .content figure.on {
    visibility: visible;
    transform: translatey(0);
    opacity: 1;
  }

  .sec_03 .content figure:nth-child(1).on {
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
  }

  .sec_03 .content figure:nth-child(2).on {
    transition: visibility 0.5s 0.1s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
  }

  .sec_03 .content figure:nth-child(3).on {
    transition: visibility 0.5s 0.2s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
  }

  .sec_03 .content figure .cover {
    position: absolute;
    bottom: 0;
    color: var(--wc);
    padding: 20px;
    width: 100%;

    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  .sec_03 .content figure .cover p {
    font-family: "Nanum Myeongjo", serif;
    font-size: 14px;
    line-height: 18px;
  }
}

/* sec_04 */
.sec_04 {
  background: url(../images/small_jamon.png) no-repeat 50px 175px;
  z-index: -2;
}

.sec_04 .v_content {
  max-width: 709px;
}

.sec_04 .v_content video {
  width: 850px;
}

/* 
  .video_box {
      position: relative;
      background: var(--wc);
      padding-bottom: 56.25%;
  }
  
  .video_box>* {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  } */

.sec_04 .bg_mcbar {
  width: calc((100% - 1440px) / 2 + 1425px);
  background: url(../images/mcbar_back.png) no-repeat center center/cover;
  min-height: 765px;
  position: absolute;
  bottom: 0;
  right: -100%;
  z-index: -1;

  overflow: hidden;
  transition: 1s ease-out;
}

.sec_04 .bg_mcbar.on {
  right: 0;
}

.sec_04 .bg_pig {
  position: absolute;
  top: -30%;
  right: 0;
}

/* sec_04 - Res */
@media (max-width: 768px) {
  .sec_04 {
  }

  .sec_04 .v_content {
    max-width: 100%;
  }

  .sec_04 .v_content video {
    width: 100%;
  }

  /* 
      .video_box {
          position: relative;
          background: var(--wc);
          padding-bottom: 56.25%;
      }
  
      .video_box>* {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
  
          z-index: 999;
      } */

  .sec_04 .bg_mcbar.on {
    right: 0;
  }

  .sec_04 .bg_pig {
  }
}

/* sec_05 */
.sec_05 {
  background: url(../images/ft_bg.jpg) no-repeat center center/cover;
}

.sec_05 .tit_wrap h2 {
  color: var(--wc);
}

.sec_05 .tit_wrap h2::before {
  background: var(--wc);
}

.sec_05 .tit_wrap p {
  color: #c9c9c9;
  margin: 0 0 80px 0;
}

.sec_05 .contact_area {
  color: var(--wc);
}

.sec_05 .contact_area {
  display: flex;
  gap: 40px;
  margin: 0 0 40px 0;
}

.sec_05 .contact_area .contact_box strong {
  display: block;
  font-size: 18px;
  margin: 0 0 15px 0;
}

.sec_05 .contact_area .contact_box span {
  font-size: 18px;
  font-weight: 200;
}

.sec_05 .detail_btn {
  border: 1px solid var(--wc);
  font-size: 17px;
  margin: 0 0;
  width: 300px;
  padding: 16px;
}

.sec_05 .circle_btn {
  color: var(--wc);

  position: absolute;
  bottom: 40px;
  right: 40px;
}

.sec_05 .circle_btn .rotate_txt {
  animation: rotate 30s infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.sec_05 .circle_btn .rotate_txt img {
  opacity: 0.2;
}

.sec_05 .circle_btn strong {
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-40%, -40%);

  font-family: "Lora", serif;
  font-size: 20px;
}

.sec_05 .circle_btn strong .arrow_right {
  font-size: 30px;
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" -25, "opsz" 20;
}

/* sec_05 - Res */
@media (max-width: 768px) {
  .sec_05 {
    background: url(../images/ft_bg.jpg) no-repeat center center/cover;
  }

  .sec_05 .tit_wrap h2 {
    color: var(--wc);
  }

  .sec_05 .tit_wrap h2::before {
    background: var(--wc);
  }

  .sec_05 .tit_wrap p {
    font-family: "Lora", serif;
    color: var(--gc-light);

    margin: 0 0 40px 0;

    display: none;
  }

  .sec_05 .contact_area {
    color: var(--wc);
  }

  .sec_05 .contact_area {
    display: flex;
    gap: 15px;
    margin: 0 0 30px 0;

    flex-direction: column;
  }

  .sec_05 .contact_area .contact_box strong {
    display: block;
    font-size: 12px;
    margin: 0 0 5px 0;
  }

  .sec_05 .contact_area .contact_box span {
    font-size: 12px;
    font-weight: 200;
  }

  .sec_05 .detail_btn {
    border: 1px solid var(--wc);
    font-size: 14px;
    margin: 0 0;
    width: 240px;
    padding: 10px;
  }

  .sec_05 .circle_btn {
    color: var(--wc);

    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .sec_05 .circle_btn .rotate_txt {
    animation: rotate 30s infinite;
  }

  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  .sec_05 .circle_btn .rotate_txt img {
    opacity: 0.2;

    width: 150px;
  }

  .sec_05 .circle_btn strong {
    display: block;
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-40%, -40%);

    font-family: "Lora", serif;
    font-size: 16px;
  }

  .sec_05 .circle_btn strong .arrow_right {
    font-size: 20px;
    vertical-align: middle;
    font-variation-settings: "FILL" 0, "wght" 200, "GRAD" -25, "opsz" 20;
  }
}

/* footer */
.footer {
  background: url(../images/footer_back.jpg) no-repeat center center / cover;
  color: var(--wc);
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer .ft_wrap {
  display: flex;
  justify-content: space-between;
}

.footer .insta_icon {
  display: flex;
  gap: 10px;

  /* flex-direction: column; */
  flex: 1;
}

.footer .insta_icon i {
  font-size: 30px;
}

.footer .ft_menu {
  text-align: center;
  flex: 10;
}

.footer .ft_menu .ft_nav {
  font-family: "Nanum Myeongjo", serif;
  font-size: 24px;
  font-weight: 600;

  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 48px 0;
}

.footer .ft_menu .copy {
  font-size: 16px;
  font-weight: 200;
  color: #fff;

  margin: 0 0 48px 0;
}

.footer .ft_menu .ft_logo img {
  opacity: 0.1;
}

.to_top {
  flex: 1;
  text-align: right;
}

.to_top:hover {
  transform: translateY(-15px);
}

/* footer - Res */
@media (max-width: 768px) {
  .footer {
    background-color: var(--bc);
    color: var(--wc);
    padding-top: 30px;
  }

  .footer .ft_wrap {
    display: flex;
    justify-content: space-between;
  }

  .footer .insta_icon {
    display: flex;
    gap: 5px;

    flex: 1;
  }

  .footer .insta_icon i {
    font-size: 18px;
  }

  .footer .ft_menu {
    text-align: center;
    flex: 3;
  }

  .footer .ft_menu .ft_nav {
    font-family: "Nanum Myeongjo", serif;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 24px 0;
  }

  .footer .ft_menu .copy {
    font-size: 12px;
    font-weight: 200;
    color: #fff;

    margin: 0 0 24px 0;
  }

  .footer .ft_menu .ft_logo img {
    opacity: 0.1;

    width: 70%;
  }

  .to_top {
    flex: 1;
    text-align: right;
  }

  .to_top img {
    height: 30px;
  }

  .to_top:hover {
    transform: none;
  }
}

@media (max-width: 1000px) {
  .pc_none {
    display: block !important;
  }
  .m_none {
    display: none !important;
  }

  .main-title {
    font-size: 20px;
    padding: 0px 0 0px;
  }
  .left-side .slide_line{
    width: 1px;
    height: 30px;
    background-color: #ebab2b;
    display: flex;
    margin: 12px auto;
    
  }

  .main-content__subtitle {
    font-size: 13px;
    margin-top: 5px;
  }
  .main-content__subtitle br{
    display: none;
  }
  .main-content .more-menu {
    font-size: 12px;
    margin: 0 auto;
    padding: 25px 10px;
  }
  .sec_02 .main_tit h2 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    margin-top: 10px;
  }
  .sec_02 .main_tit span {
    font-size: 13px;
    line-height: 19px;
  }
  .sec_02 .main_tit strong {
    font-size: 13px;
  }

  .sec_01 .bene_list {
    font-size: 13px;
    letter-spacing: 0;
    margin-top: 20px;
  }
  .sec_01 .bene_list li {
    margin-bottom: 8px;
  }
  .sec_01 .bene_list li i img {
    width: 5%;
  }
  .sec_01 .tit_wrap p {
    font-family: none;
  }
  .sec_04 {
    background: url(../images/small_jamon.png) no-repeat 0 80px;
    background-size: 30%;
    z-index: -2;
  }
  .sec_04 .bg_mcbar {
    /* width: calc((100% - 1440px) / 2 + 1425px); */
    width: 100%;
    background-color: #ebab2b;
    background: url(../images/m_mcbar_back.png) no-repeat 0 0px;
    min-height: 45vh;
    position: absolute;
    bottom: 0;
    right: -100%;
    z-index: -1;

    overflow: hidden;
    transition: 1s ease-out;
  }
  .sec_04 .bg_pig {
    display: none;
  }
  .sec_05 br {
    display: none;
  }
  .m_main_bizzle {
    width: 80%;
    margin: 10px auto;
  }
}
