@charset "UTF-8";
header {
  box-sizing: border-box;
  /* background-color: #EAA150; */
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.6s;
  z-index: 99999;
  border-bottom: 1px solid #ffffff00;
}
header.wh {
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
}
header.on {
  background-color: #fff;
}
header.open {
  background-color: #fff;
}
/* 스크롤 내릴때 헤더 숨기기 */
.header_hidden {
  top: -82px; /* 헤더의 높이만큼 위로 숨김 */
  transition: all 0.6s;
}
header.on.header_hidden {
  top: -490px;
  transition: all 0.6s;
}
.header_w {
  max-width: 1560px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}
.header_cont {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* height: 48px; */
}
.header_cont nav > ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  .header_cont nav > ul {
    gap: 20px;
  }
}
.header_cont nav > ul > li {
  position: relative;
}

.header_cont nav > ul > li > a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.64px;
  display: block;
}
header.on .header_cont nav > ul > li > a {
  color: var(--black);
}
header.wh .header_cont nav > ul > li > a {
  color: var(--black);
}
header.open .header_cont nav > ul > li > a {
  color: var(--black);
}
.pc_hove_menu {
  visibility: hidden;
  pointer-events: none;
  width: max-content;
  position: absolute;
  top: 20px;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -5px);
  padding-top: 50px;
  transition: all 0.45s ease-in-out;
}
.pc_hove_menu.on {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transform: translate(-50%, 0);
}
header.on .pc_hove_menu.on {
  display: none;
}
.pc_hove_menu .bg {
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
}
.pc_hove_menu h3 {
  color: var(--maincolor);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.pc_hove_menu .menu_text {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc_hove_menu .menu_text h6 {
}
.pc_hove_menu .menu_text h6 a {
  position: relative;

  color: var(--black, #171717);
  font-size: 16px;
  font-weight: 400;
  display: inline-block;

  transition: background 0.2s ease;
}

.pc_hove_menu .menu_text h6 a:before {
  content: "";
  display: block;

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 0.4em;

  background: var(--maincolor);
  opacity: 0;

  z-index: 0;
  transition: opacity 0.3s ease;
}

.pc_hove_menu .menu_text h6 a:hover:before {
  opacity: 0.4;
}

@media screen and (max-width: 1700px) {
  .pc_hove_menu {
    left: 0;
    transform: translate(0, -5px);
  }

  .pc_hove_menu.on {
    left: 0;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 1280px) {
  .header_cont {
    padding: 0;
  }
  .header_cont nav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header_cont nav > ul > li > a:hover {
    color: var(--maincolor);
  }
  header.on .header_cont nav > ul > li > a:hover {
    color: var(--maincolor);
  }
  header.open .header_cont nav > ul > li > a:hover {
    color: var(--maincolor);
  }
  header:hover {
    background-color: #fff;
    border-bottom: solid 1px #e1e1e1;
  }
  header:hover .header_cont nav > ul > li > a {
    color: var(--black);
  }
}

.header_cont .logo {
display: block;
  position: absolute;
  top: 0px;
  left: calc(50% - 141.5px);
  width: 284px;
  margin: 1em 0;
}

.header_cont .logo img {
  width: 100%;
}

.header_cont .logo {
  filter: brightness(0) invert(1);
}
header.on .header_cont .logo {
  filter: brightness(1) invert(0);
}
header.open .header_cont .logo {
  filter: brightness(1) invert(0);
}
header.wh .header_cont .logo {
  filter: brightness(1) invert(0);
}
@media screen and (max-width: 1280px) {
  .header_cont .logo {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  header {
    background-color: #fff;
    border-bottom: solid 1px #e1e1e1;
  }
  .header_cont .logo {
    filter: brightness(1) invert(0);
  }
  .header_cont .logo {
    max-width: 200px;
  }
  .header_cont .logo img {
    width: 100%;
  }
  .ham_btn {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  header:hover .header_cont .logo {
    filter: brightness(1) invert(0);
  }
}

.ham_btn {
  border-radius: 9999px;
  background: linear-gradient(270deg, #ed8e4b 0%, #eaa150 100%);
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}
.ham_btn li {
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
  transition: all 0.4s;
}
.ham_btn.on li:nth-child(1) {
  transform: translateY(4px) rotate(-45deg);
}
.ham_btn.on li:nth-child(2) {
  transform: translateY(-5px) rotate(45deg);
}
.ham_btn:hover li {
  transform: scaleX(1.2) scaleY(1.1);
}

@media screen and (max-width: 768px) {
  .ham_btn {
    width: 32px;
    height: 32px;
  }
  .ham_btn li:nth-child(1) {
    width: 16px;
    height: 1px;
  }
  .ham_btn li:nth-child(2) {
    width: 16px;
    height: 1px;
  }
  .ham_btn.on li:nth-child(2) {
    transform: translateY(-4px) rotate(45deg);
  }
}

header.header_hidden .pc_open_menu_bg {
  display: none;
}
.pc_open_menu_bg {
  display: none;
  border-top: solid 1px #e1e1e1;
}
.pc_open_menu_box {
  display: flex;
  align-items: stretch;
}
.pc_open_menu_box > li {
  width: 25%;
  background-color: #fff;
  padding: 30px 0 80px 0;
  box-sizing: border-box;
  text-align: center;
  transition: background 0.45s ease;
}
.pc_open_menu_box > li:nth-child(2n) {
  background-color: #f7f7f7;
  border-right: solid 1px #e1e1e1;
}

.pc_open_menu_box > li h3 {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.64px;
}

.pc_open_menu {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc_open_menu > li {
}
.pc_open_menu > li h3 {
}

.pc_open_menu > li h6 {
}
.pc_open_menu > li h6 a {
  color: #606060;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.64px;
  display: block;
}

@media screen and (max-width: 1020px) {
  .pc_open_menu_box > li {
    padding: 20px 10px 40px 10px;
  }
  .pc_open_menu > li {
  }
  .pc_open_menu > li h6 a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .pc_open_menu_bg {
    height: 100vh;
  }
  .pc_open_menu_box {
    flex-direction: column;
    /* overflow-y: scroll; */
    height: 100vh;
  }
  .pc_open_menu {
    display: none;
  }
  .pc_open_menu > li {
    margin-bottom: 20px;
  }
  .pc_open_menu > li:last-child {
    margin-bottom: 0;
  }
  .pc_open_menu_box > li {
    width: 100%;
    padding: 32.5px 30px;
    text-align: left;
  }
  .pc_open_menu_box > li:nth-child(2n) {
    border-right: 0;
  }
  .pc_open_menu_box > li h3 {
    position: relative;
  }
  .pc_open_menu_box > li h3:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("/img/menu_arrow.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.6s;
  }
  .pc_open_menu_box > li.down h3:after {
    transform: rotate(180deg);
  }
  .pc_open_menu_box > li h3.down:after {
    transform: rotate(180deg);
    transition: all 0.6s;
  }
  .pc_open_menu > li h6 a {
    text-align: left;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .pc_open_menu > li h6 a {
    position: relative;
    display: inline-block;
  }
  .pc_open_menu > li h6 a::before {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: -1px;
    background-color: #fff;
    position: absolute;
    transition: all 0.7s ease;
  }
  .pc_open_menu > li h6 a:hover:before {
    width: 100%;
  }
  .pc_open_menu > li h6 a:hover {
    /* text-decoration: underline; */
  }
  .pc_open_menu_box > li:hover h3 {
    color: #fff;
  }
  .mo_menu_btn:hover .pc_open_menu > li h6 a {
    color: #fff;
  }
  .pc_open_menu_box > li:hover {
    background-color: var(--maincolor);
  }
}

/* footer */
.ft_box_1 {
  border-top: 1px solid #474747;
  background: #272727;
}
.ft_box_1 > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_box_1 > ul li {
}
.ft_box_1 > ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 16px 23px;
  box-sizing: border-box;
  border-right: solid 1px #474747;
  display: inline-block;
}
.ft_box_1 > ul li:last-child a {
  border: 0;
}

.ft_box_2 {
  background: #212121;
  padding: 60px 0;
  box-sizing: border-box;
}
.ft_box_2 .ft_box_2_w {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.ft_box_2 .ft_box_2_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft_box_2 .text_box {
  max-width: 580px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft_box_2 .text_box > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ft_box_2 .text_box h4 {
  color: var(--maincolor);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
}
.ft_box_2 .text_box h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.ft_box_2 .text_box .time_list {
}
.ft_box_2 .text_box .time_list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 2px 0;
}
.ft_box_2 .text_box .time_list li > .date_text {
  min-width: 140px;
  max-width: 140px;
  width: 100%;
  flex: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  letter-spacing: 9.5px;
}
.ft_box_2 .text_box .time_list li:nth-child(4) > .date_text {
  letter-spacing: 12.5px;
}
.ft_box_2 .text_box .time_list li:nth-child(5) > .date_text {
  letter-spacing: 10px;
}
.ft_box_2 .text_box .time_list li > p:nth-child(2) {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 1px;
}
.ft_box_2 .text_box .notice_text {
  color: #a9a9a9;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
.ft_box_2 .text_box .addres_text {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 1px;
}
.ft_box_2 .text_box .go_naver_btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 16px 40px;
  box-sizing: border-box;
  border-radius: 50px;
  background: #343434;
}
.ft_box_2 .text_box .go_naver_btn p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.ft_box_2 .img_box {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}
.ft_box_2 .img_box img {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .ft_box_2 .ft_box_2_w {
    width: 95%;
  }
  .ft_box_2 .ft_box_2_flex {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ft_box_1 > ul li {
  }
  .ft_box_1 > ul li a {
    font-size: 13px;
    padding: 12px 8px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.7px;
  }
  .ft_box_2 {
    padding: 40px 0 0 0;
  }
  .ft_box_2 .ft_box_2_w {
    width: 100%;
  }
  .ft_box_2 .ft_box_2_flex {
    flex-direction: column;
    gap: 40px;
  }
  .ft_box_2 .img_box {
    width: 100%;
    border-radius: 0;
  }
  .ft_box_2 .text_box {
    max-width: none;
    width: 90%;
    margin: 0 auto;
  }
  .ft_box_2 .text_box h4 {
    font-size: 20px;
  }
  .ft_box_2 .text_box h3 {
    font-size: 18px;
    letter-spacing: -0.9px;
  }
  .ft_box_2 .text_box .time_list {
    width: 100%;
  }
  .ft_box_2 .text_box .time_list li > .date_text {
    font-size: 15px;
    min-width: 100px;
    max-width: 100px;
  }
  .ft_box_2 .text_box .time_list li:nth-child(4) > .date_text {
    letter-spacing: 11.8px;
  }
  .ft_box_2 .text_box .time_list li:nth-child(5) > .date_text {
    letter-spacing: 11px;
  }
  .ft_box_2 .text_box .time_list li > p:nth-child(2) {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
  .ft_box_2 .text_box .notice_text {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .ft_box_2 .text_box .addres_text {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
  .ft_box_2 .text_box .go_naver_btn {
    padding: 16px 30px;
  }
  .ft_box_2 .text_box .go_naver_btn p {
    font-size: 16px;
  }
}
.ft_box_3 {
  border-top: 1px solid #474747;
  background: #171717;
  padding: 40px 0 120px 0;
  box-sizing: border-box;
}
.ft_box_3 .ft_box_3_w {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.ft_box_3 .ft_box_3_flex {
  display: flex;
  justify-content: space-between;
}
.ft_box_3 .ft_box_3_flex .text_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft_box_3 .ft_box_3_flex .text_box .info_text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ft_box_3 .ft_box_3_flex .text_box .info_text > li {
  position: relative;
}
.ft_box_3 .ft_box_3_flex .text_box .info_text > li::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #ccc;
  position: absolute;
  top: 0;
  right: -10px;
}
.ft_box_3 .ft_box_3_flex .text_box .info_text > li:last-child::after {
  display: none;
}
.ft_box_3 .ft_box_3_flex .text_box .info_text > li p {
}
.ft_box_3 p {
  color: #ccc;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.64px;
}
.ft_icon_list {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .ft_box_3 .ft_box_3_w {
    width: 95%;
  }
}
@media screen and (max-width: 960px) {
  .ft_box_3 .ft_box_3_flex .text_box .info_text {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft_box_3 .ft_box_3_flex .text_box .info_text > li::after {
    display: none;
  }
  .ft_box_3 .ft_box_3_flex {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .ft_box_3 .ft_box_3_w {
    width: 90%;
  }
  .ft_box_3 .ft_box_3_flex {
    flex-direction: column;
    gap: 30px;
  }
  .ft_box_3 .ft_box_3_flex > div {
    width: 100%;
  }
  .ft_icon_list {
    width: 100%;
    justify-content: center;
  }
  .ft_box_3 .ft_box_3_flex .text_box .info_text,
  .ft_box_3 .ft_box_3_flex .text_box {
    gap: 6px;
  }
  .ft_box_3 p {
    font-size: 14px;
    letter-spacing: -0.56px;
  }
}

/* quick_menu */
.quick_menu {
  position: fixed;
  /* bottom: 120px; */
  bottom: 5%;
  right: 50px;
  z-index: 999;
  transition: all 0.6s;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.quick_menu .quick_menu_box {
  position: absolute;
  text-align: right;
  /* bottom: 141px; */
  bottom: 100px;
  opacity: 1;
  transform: translateY(5px);
  transition: 0.45s transform ease, 0.45s opacity ease;
}
.quick_menu.toggle .quick_menu_box {
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
}
.quick_list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  box-shadow: 0px 4px 10px 0px rgba(157, 109, 41, 0);
}
.quick_list > li a {
  display: flex;
  align-items: center;

  padding: 10px;

  border: solid 1px #ececec;
  border-radius: 50%;

  transition: all 0.6s;
}
.quick_list > li > a > .img_box {
  width: 40px;
  height: 40px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  background: linear-gradient(149deg, #6e7685 12.74%, #292b30 84.83%);
}
.quick_list > li > a > p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 0;
  opacity: 0;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  /* transform: scaleX(0); */
  transform-origin: left;
  margin-left: 0;
  transition: all 0.6s;
}
.quick_all_btn {
  cursor: pointer;
  text-align: right;
  /* margin-right: 10px; */
  margin-top: 20px;
  position: relative;
  width: 46px;
  height: 46px;
}
/* .quick_all_btn >img{
    animation: rotateAnimation 3s linear infinite;

} */
.quick_menu .quick_all_btn .open_btn {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background: linear-gradient(270deg, #ed8e4b 0%, #eaa150 100%);
  right: 0;
  transform: translateX(-9px);
}
.quick_menu .quick_all_btn .open_btn img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.45s all ease;
  position: absolute;
}
.quick_menu .quick_all_btn .open_btn img.orange {
  width: 0;
  animation: rotateAnimation 4s infinite linear;
}
.quick_menu .quick_all_btn .open_btn img.close {
  width: 40%;
}
.quick_menu.toggle .quick_all_btn .open_btn img.orange {
  width: 60%;
}
.quick_menu.toggle .quick_all_btn .open_btn img.close {
  width: 0;
}

.go_top_btn {
  text-align: right;
}
.go_top_btn > button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-right: 4px;
  margin-top: 40px;
}

/* 회전 애니메이션 정의 */
@keyframes rotateAnimation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (min-width: 768px) {
  .quick_list > li:hover a {
    padding: 10px 15px 10px 10px;
    border-radius: 34px;
    border: 1px solid #c6a865;
    transition: all 0.6s;
    background: linear-gradient(
      180deg,
      rgba(252, 183, 106, 0.9) 0%,
      rgba(16, 16, 16, 0.8) 80%
    );
    box-shadow: 0px 4px 10px 0px rgba(201, 127, 23, 0.25);
  }
  .quick_list > li:hover .img_box {
    background: linear-gradient(149deg, #eaa150 12.74%, #ce8534 84.83%);
    transition: 0.6s;
  }
  .quick_list > li:hover p {
    opacity: 1;
    width: var(--width);
    transform: scaleX(1);
    /* transition: all 0.6s; */
    margin-left: 10px;
  }
}
@media screen and (max-width: 1080px) {
  /* .quick_menu_box{
        display: none;
    } */
  .quick_menu {
    bottom: 171px;
  }
  .quick_menu.close {
    bottom: 40px;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 768px) {
  .quick_all_btn {
    text-align: right;
  }
  .quick_menu {
    bottom: 60px;
    right: 10px;
  }
  .quick_menu.close {
    bottom: 220px;
  }
  .quick_all_btn > img {
    width: 33px;
    height: 33px;
  }
  .quick_list > li > a > .img_box {
    padding: 4px;
  }
  .quick_list > li a {
    padding: 6px 18px 6px 6px;
    border-radius: 34px;
    border: 1px solid #c6a865;
    background: linear-gradient(
      180deg,
      rgba(252, 183, 106, 0.9) 0%,
      rgba(16, 16, 16, 0.8) 80%
    );
  }
  .quick_list > li > a > .img_box {
    background: linear-gradient(149deg, #eaa150 12.74%, #ce8534 84.83%);
    transition: 0.6s;
  }
  .quick_list > li > a > p {
    font-size: 13px;
    text-align: center;
    min-width: 6.4em;
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.6s;
    margin-left: 10px;
  }
  /* .quick_all_btn {
        margin-right: 0;
    } */
  .go_top_btn > button {
    margin-top: 20px;
    margin-right: 0;
  }

  .quick_menu .quick_menu_box {
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    bottom: 121px;
  }
  .quick_menu.toggle .quick_menu_box {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .quick_menu .quick_all_btn .open_btn {
    transform: translateX(-4px);
  }

  .quick_menu .quick_all_btn .open_btn img.orange {
    width: 60%;
  }
  .quick_menu .quick_all_btn .open_btn img.close {
    width: 0;
  }
  .quick_menu.toggle .quick_all_btn .open_btn img.orange {
    width: 0;
  }
  .quick_menu.toggle .quick_all_btn .open_btn img.close {
    width: 40%;
  }
}
