@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
/* font-family: 'Noto Sans KR', sans-serif; */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* Bold 700 */
/* Black 900 */

/* ani */
@keyframes load_R {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_L {
  0% {
    transform: translateX(15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  word-break: keep-all;
  color: #000;
}
#all_wrap {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
section {
  width: 100%;
  height: 100vh;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #000;
}

/* header */
.header {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  height: 13vh;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1000;
  transition: 0.3s;
  background: transparent;
}
.header:hover {
  background: #ab0331;
}

/* .header:hover .logo a img.logo_on {
  opacity: 0;
} */

.header.header_sub.active {
  top: -10%;
}
.header_sub .inner {
  background: white;
}
.header.sec05_on {
  top: -10%;
  transition-delay: 0.5s;
}

.header .inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .logo {
  width: 163px;
  height: 39px;
  margin-left: 80px;
}
.header .inner .logo a {
  width: 100%;
  display: block;
  position: relative;
}
.header .inner .logo a img {
  width: 100%;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  opacity: 1;
}
.header .inner .logo a img.logo_on {
  opacity: 1;
}
.header .inner .logo a img.logo_off {
  opacity: 0;
}
.header.sec01_on .inner .logo a img.logo_on {
  opacity: 1;
}
.header.sec01_on .inner .logo a img.logo_off {
  opacity: 0;
}

.header.sec02_on .inner .logo a img.logo_on {
  opacity: 1;
}
.header.sec02_on .inner .logo a img.logo_off {
  opacity: 0;
}

.header.sec03_on .inner .logo a img.logo_on {
  opacity: 0;
}
.header.sec03_on .inner .logo a img.logo_off {
  opacity: 1;
}

.header.sec04_on .inner .logo a img.logo_on {
  opacity: 0;
}
.header.sec04_on .inner .logo a img.logo_off {
  opacity: 1;
}

.header .inner .menu {
  width: 52%;
  /* width: 1020px; */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .inner .menu li {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* .header .inner .menu li::before {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  background: #ab0331;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
}
.header .inner .menu li:hover::before {
  opacity: 1;
  width: 65%;
} */
.header .inner .menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  color: #ffffff;
}
.header.sec01_on .menu li a {
  color: #ffffff;
}
.header.sec02_on .menu li a {
  color: #ffffff;
}
.header.sec03_on .menu li a {
  color: #3b3b3b;
}
.header.sec04_on .menu li a {
  color: #3b3b3b;
}
.header_sub .inner .menu li a {
  color: #3b3b3b;
}
.header_sub .inner .logo a img.logo_off,
.header_sub .inner .header_cont .item img.h_item_off {
  opacity: 1;
}
.header_cont {
  width: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 23px;
  margin-right: 80px;
}
.header_cont .item {
  display: block;
  position: relative;
}
.header_cont .item:nth-child(1) {
  width: 36px;
  height: 23px;
}
.header_cont .item:nth-child(2) {
  width: 20px;
  height: 20px;
}
.header_cont .item:nth-child(3) {
  width: 22px;
  height: 20px;
}
.header_cont .item img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
  z-index: 50;
}
.header_cont .item:nth-child(2) img {
  z-index: 100;
  cursor: pointer;
}

.header_cont .item:nth-child(2) .h_item02 {
  width: 20px;
  height: 20px;

  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
  z-index: 100;
  transition: 0.4s;

  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;

  background: url("../image/h_item02.png") no-repeat center center;
  background-size: cover;
  cursor: pointer;
}
.header_cont .item:nth-child(2):hover .h_item02 {
  width: 210px;
  height: 50px;
  right: -20px;
  top: 50%;
  opacity: 1;
  transition: 0.7s;
  transition-delay: 0.2s;
}

.header_cont .item img.h_item_on {
  opacity: 1;
}
.header_cont .item img.h_item_off {
  opacity: 0;
}
.header.sec01_on .item img.h_item_on {
  opacity: 1;
}
.header.sec01_on .item img.h_item_off {
  opacity: 0;
}
.header.sec02_on .item img.h_item_on {
  opacity: 1;
}
.header.sec02_on .item img.h_item_off {
  opacity: 0;
}
.header.sec03_on .item img.h_item_on {
  opacity: 0;
}
.header.sec03_on .item img.h_item_off {
  opacity: 1;
}
.header.sec04_on .item img.h_item_on {
  opacity: 0;
}
.header.sec04_on .item img.h_item_off {
  opacity: 1;
}

.header.sec03_on:hover .menu li a,
.header.sec04_on:hover .menu li a {
  color: #ffffff;
}

.header.sec03_on:hover .logo a img.logo_off,
.header.sec04_on:hover .logo a img.logo_off {
  opacity: 0;
}
.header.sec03_on:hover .logo a img.logo_on,
.header.sec04_on:hover .logo a img.logo_on {
  opacity: 1;
}
.header.sec03_on:hover .item img.h_item_on,
.header.sec04_on:hover .item img.h_item_on {
  opacity: 1;
}
.header.sec03_on:hover .item img.h_item_off,
.header.sec04_on:hover .item img.h_item_off {
  opacity: 0;
}

/* width: 58%; */
.s_menu_cont {
  width: 100%;
  transform: translateY(-101%);
  position: relative;
  z-index: -1;
  background: #ab0331;
  transition: 0.4s;
  opacity: 0;
}
.header:hover .s_menu_cont {
  transform: translateY(0);
  opacity: 1;
}
.sub-menu {
  width: 52%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.sub-menu li {
  flex: 1;
  margin: 0px;
  text-align: center;
}
.sub-menu li a {
  width: 100%;
  display: block;
  padding: 10px 0;
}
.sub-menu li ul {
  width: 100%;
}
.sub-menu li ul li {
  width: 100%;
}
.sub-menu li ul li a {
  width: 100%;
  padding: 10px 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}
.sub-menu li ul li a:hover {
  color: #a79079;
}

/* footer */
#section5 {
  max-width: 1920px;
  min-width: 1400px;
  background: #3a3a3a;
}
.sub_foot {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  position: relative;
  background: #3a3a3a;
}
.footer {
  width: 91.7%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background: #3a3a3a;
  position: relative;
}
.sub_foot .sub_top {
  position: absolute;
  top: -81px;
  right: 0;
}
.footer .item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}
.footer .item img {
  margin: 0 20px;
}
.footer .item .foot_t01 {
}
.footer .item .foot_t02 {
}
.footer .item .foot_t03 {
}

.footer .foot_desc {
  text-align: center;
}
.footer .foot_desc p {
  color: white;
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
}

.footer .foot_link_t {
  margin-bottom: 36px;
}
.footer .foot_link_t h2 {
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.footer .foot_link_t a {
  color: white;
  font-size: 15px;
  font-weight: 400;
}
/* 
.footer .desc .item nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .desc .item nav a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  display: block;
}
.footer .desc .item nav .foot_line {
  display: block;
  width: 1px;
  height: 10px;
  background: #979797;
  margin: 0 20px;
}
.footer .desc .item nav h3 {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #979797;
}

.footer .desc .item .family_box {
  width: 180px;
  height: 40px;
  position: relative;
  margin-left: 40px;
}
.footer .desc .item .family_text {
  width: 100%;
  height: 100%;

  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 100;

  border: 1px solid #494949;
  box-sizing: border-box;
}
.footer .desc .item .family_text::after {
  content: "Family Site";

  width: 100%;
  height: 100%;
  display: block;
  background: #232323;

  position: absolute;
  left: 0;
  bottom: -100%;
  transition: 0.3s;
  opacity: 0;

  font-size: 15px;
  line-height: 40px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.footer .desc .item .family_text:hover::after {
  bottom: 0;
  opacity: 1;
  transition-delay: 0.3s;
}
.footer .desc .item .family_text.active::after {
  bottom: 0;
  opacity: 1;
}
.footer .desc .item .family_text:hover span {
  opacity: 0;
}
.footer .desc .item .family_text span {
  font-size: 15px;
  font-weight: 300;
  color: #9a9999;
  text-transform: uppercase;
  display: block;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: 0.5s;
}

.footer .desc .item .family_list {
  position: absolute;
  left: 0;
  bottom: 60px;

  width: calc(100% - 27px - 20px + 3px);
  height: calc(390px - 30px - 10px);
  border: 1px solid #cecece;

  background: #fff;
  display: none;
  padding: 27px 10px 20px 30px;
}
.footer .desc .item .family_list li {
}
.footer .desc .item .family_list li:nth-of-type(1) {
}
.footer .desc .item .family_list li:nth-of-type(2) {
  padding-top: 20px;
}
.footer .desc .item .family_list li:nth-of-type(3) {
  padding-top: 20px;
}
.footer .desc .item .family_list li a {
  color: #999;
  font-size: 15px;
  transition: 0.5s;
}
.footer .desc .item .family_list li a:hover {
  color: #333;
}

.footer .desc .item h4 {
  font-size: 13px;
  line-height: 13px;
  font-weight: 300;
  color: #979797;
}
.footer .desc .item h4 span {
  font-size: 13px;
  line-height: 13px;
  font-weight: 300;
  color: #979797;
  margin-right: 3px;
  display: inline-block;
}

.footer .desc .item img {
  margin-left: 40px;
}
.footer .desc .item a {
}
.footer .desc .item a img {
} */
