* {
  position: relative;
  padding: 0;
  margin: 0;
}
li,
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
}
p,
div {
  font-family: "Alegreya Sans", sans-serif;
  /* line-height: 1.58em;  */
  font-size: 17px;
  /* color:#5f5f5f; */
}
header,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
}
::selection {
  background: #c9ab81;
  color: #fff;
}
section {
  /* overflow-x: hidden; */
  background-color: white;
}

/* 상단 */
.header1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.header1 .row1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
  padding: 0% 3%;
}
.header1 .row2 {
  padding: 30px 3% 0;
}

.container-full {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.container-full .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-full .item ul {
  display: flex;
}
.container-full .item li {
  margin-right: 35px;
  font-size: 15px;
  top: 5px;
}
.container-full .item .last {
  margin-right: 0px;
}
.container-full .main-li a {
  color: #fff;
  font-size: 16px;
  padding-bottom: 7px;
  /* font-family: "Roboto", sans-serif; */
}
.container-full .main-li a:before {
  content: "";
  display: inline-block;
  position: absolute !important;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  /* border-top: 1px solid #c9ab81; */
  border-top: 1px solid #c902b8;
  transform: scaleX(0);
  transform-origin: 0% 100%;
  transition: transform 0.5s cubic-bezier(0.54, 0.32, 0.05, 0.96);
}
.container-full .main-li:hover > a:before {
 transform: scaleX(1);
}
/* .container-full .main-li:hover .sub-ul{ display: block !important;  } */
header .container-full .sub-ul {
  display: none;
  background-color: #fff;
  font-style: italic;
  width: 120px;
  position: absolute;
  top: 40px;
  line-height: 32px;
  padding: 15px;
  box-sizing: border-box;
}
.container-full .sub-ul a {
  color: #525252;
}
.header2 .sub-ul {
  top: 70px !important;
}  
.container-full .logo {
  width: 168px;
  margin-right: 35px;
}
.container-full .logo img {
  width: 100%;
}

.container-full .menu2 {
  height: 50px;
}
.container-full .ham-btn {
  /* border:1px solid yellowgreen; */
  height: 100%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}
.container-full .bar {
  width: 30px;
  height: 1px;
  background-color: #fff;
}
.container-full .bar1 {
  top: -8%;
  left: 25%;
}
.container-full .bar2 {
  top: 8%;
  right: 25%;
}
.container-full .menu2 i {
  font-size: 18px;
  font-weight: 100;
  margin-left: 30px;
}
.container-full .menu2 .btnmine {
  text-transform: none;
  font-weight: 400;
}
.container-full .ham-btn-mobile {
  display: none !important;
  height: 100%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

/* 투명상단 */
/* 흰색상단 */
.header2 {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 80px;
  background-color: white;
  padding: 5px 3% 0;
  box-sizing: border-box;
  /* border:3px solid green; */
}
.header2 .container-full {
  height: 70px;
}

.header2 .main-li {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header2 .main-li > a {
  color: #525252;
}
.header2 .sub-ul {
  top: 70px;
}
.header2 .btnmine {
  color: #525252;
}
.header2 i {
  color: #525252;
}
.header2 .ham-btn .bar {
  background-color: #525252;
}

.header2 .item-left {
}
.header2 .item-right {
  top: 8px;
}

.header2.visible {
  top: 0;
}

/* 모바일 메뉴 */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  background-color: white;
  padding: 20px;
  box-sizing: border-box;
  display: none;
}
.mobile-menu .menu {
  display: block;
}
.mobile-menu .main-li {
  line-height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .main-li:last-child {
  border-bottom: none;
}
.mobile-menu .main-li > a {
  color: #e4068c;
}
.mobile-menu .sub-ul {
}
.mobile-menu .sub-li {
  font-size: 14px;
  line-height: 25px;
  text-indent: 30px;
}
.mobile-menu .sub-li a {
  color: #e485d2 !important;
}

@media (max-width: 900px) {
  header .row1 {
    display: none;
  }
  header .row2 .item .menu .main-li {
    display: none;
  }
  header .item-right .btnmine,
  header .item-right i,
  header .item-right .ham-btn {
    display: none;
  }
  header .item-right .ham-btn-mobile {
    display: flex !important;
    left: 10px;
  }
  .header2 .main-li {
    display: none;
  }
  .header2 .logo {
    top: 12px;
  }
  .mobile-menu {
    top: 80px;
  }
}

/* 맥스사이즈 */
.container-full {
  width: 100%;
}
.container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

/* 버튼 스타일 */
.btnmine {
  width: 160px;
  height: 50px;
  border: 1px solid #ffbde6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 15px;
}

/* fill: transparent;
    stroke: #c9ab81;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    stroke-width: 2px; */

/* stroke-dashoffset: 240%; */
/* stroke-dasharray: 330% 25; */

/* 섹션타이틀 */
.section-title {
  /* border:1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.section-title h4 {
  /* text-transform: none; */
  color: #c9ab81;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}
.section-title h1 {
  /* border:1px solid red; */
  font-weight: 400;
  color: #525252;
  font-size: 51px;
  letter-spacing: 0.16em;
}
.section-title p {
  font-size: 19px;
  font-weight: 400;
  color: #5f5f5f;
  margin: 20px 0 0;
}
.section-title h1::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(100% + 30px);
  width: 120px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-title h1::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 30px);
  width: 120px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

/* owl slider part */
.owl-nav {
  position: absolute;
  left: 0;
  top: 51%;
  width: 100%;
  height: 60px;
}
.owl-nav button {
  /* border:10px solid orange; */
  width: 30px;
  height: 30px;
  position: absolute;
  top: -25px;
}
.owl-prev {
  border-left: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
  transform: rotate(-45deg);
  left: 25px;
}
.owl-next {
  border-right: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
  transform: rotate(45deg);
  right: 25px !important;
}
.owl-nav button span {
  display: none;
}
.owl-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.owl-dot {
  width: 30px;
  height: 30px;
}
.owl-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  transition: 0.5s;
}
.owl-dot.active span {
  transform: scale(2);
}

/* ham-btn 열면 나올 메뉴     */
.all {
  /* border:9px solid blue; */
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  transition: width 0.3s;
}
.all .all-left {
  /* border:2px solid rosybrown; */
  width: 0%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 120;
}
.section-menu {
  /* border:8px solid orange; */
  background-color: #f8f8f8;
  color: #525252;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 0%;
  height: 100vh;
  transition: width 0.5s;
}
.section-menu .list-box {
  position: absolute;
  top: 20px;
  right: 54%;
  /* border: 2px solid blueviolet; */
  margin: 60px auto;
  /* width: 0; */
}
.section-menu .list {
  padding-bottom: 20px;
  opacity: 0;
  top: 100px;
}

.section-menu .list-box .list0 img {
  width: 100%;
}

/* .section-menu .list-box .time {
  font-size: 15px;
  line-height: 30px;
  font-family: "Alegreya Sans", sans-serif;
  color: #5f5f5f;
} */
.menu-on .section-menu .list-box i {
  font-size: 25px;
  margin-bottom: 15px;
}
.menu-on .section-menu .list-box .list4 i {
  margin-right: 17px;
  font-size: 19px;
  margin-top: 13px;
}
.section-menu .list4 {
  display: flex;
}

.menu-on .all {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.2);
}
.menu-on .all-left {
  /* border:2px solid rosybrown; */
  width: 80%;
  left: 0;
}
.menu-on .section-menu {
  width: 20%;
  right: 0;
}
.menu-on .section-menu .list {
  top: 0;
  opacity: 1;
}
.menu-on .section-menu .list0 {
  transition: 0.5s 0.5s;
  padding-bottom: 150px;
  width: 100px;
}
.menu-on .section-menu .list1 {
  transition: 0.5s 0.8s;
}
.menu-on .section-menu .list2 {
  transition: 0.5s 1.1s;
}
.menu-on .section-menu .list3 {
  transition: 0.5s 1.4s;
}
.menu-on .section-menu .list4 {
  transition: 0.5s 1.7s;
}
.menu-on .cursor-x {
  /* border:1px solid rgb(234, 248, 213); */
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  /* display: flex; align-items: center; justify-content: center; */
  transition: 0.5s;
  pointer-events: none;
  mix-blend-mode: difference;
  /* transform: translate(-50%, -50%); */
  opacity: 0;
}
.menu-on .cursor-x:before,
.menu-on .cursor-x:after {
  position: absolute;
  left: 20px;
  content: " ";
  height: 40px;
  width: 2px;
  background-color: #fff;
}
.menu-on .cursor-x:before {
  transform: rotate(45deg);
}
.menu-on .cursor-x:after {
  transform: rotate(-45deg);
}

.menu-on .cursor-x.over {
  opacity: 1;
}
.menu-on .section-menu .list-box {
  width: 60px;
}
.menu-on .section-menu .list-box .tit {
  letter-spacing: 0.16em;
  font-size: 20px;
  line-height: 45px;
  font-family: "EB Garamond", serif;
  color: #525252;
}

/* Footer */
footer {
  z-index: -1;
  background-color: #272727;
  width: 100%;
  height: 400px;
  padding-top: 100px;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
}
footer * {
  color: rgba(255, 255, 255, 0.8);
}
footer .container {
  display: flex;
}
footer .item {
  width: 25%;
}
footer .item:last-child {
}
footer .item .logo {
  width: 50px;
  margin-bottom: 25px;
}
footer .item .logo img {
  width: 100%;
}
footer .item a,
.item3 .row {
  font-family: alegreya sans;
  font-size: 17px;
  font-weight: 400;
  line-height: 40px;
}
footer .item h5 {
  margin-bottom: 30px;
}
footer .item .menu {
}
footer .item .menu li {
}
footer .item i {
  margin-right: 20px;
}
footer .item i:last-child {
  margin-right: 0px;
}
footer .item4 {
  text-align: right;
}
footer .item .copyright {
  line-height: 40px;
}

/* subpage common */
.sub-page-name {
  display: table;
  /* border: 2px solid gold; */
  z-index: 20;
  font-weight: 400;
  color: #ffffff;
  font-size: 58px;
  letter-spacing: 0.16em;
}
.sub-page-name::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(100% + 30px);
  width: 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.sub-page-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 30px);
  width: 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Subpage section-last */
.section-last {
  margin-bottom: 300px;
  background-color: white;
}

/* Subpage Footer */
.sub-footer {
  height: 300px;
  padding-top: 50px;
}
.sub-footer .hour .row {
  line-height: 20px;
}
.sub-footer .menu li a {
  line-height: 20px;
}
.sub-footer .address a {
  line-height: 30px;
  font-size: 20px;
}
.sub-footer .tel a {
  line-height: 30px;
  font-size: 20px;
}
.sub-footer .copyright {
  line-height: 20px;
  text-align: center;
  margin-top: 35px;
  left: -120px;
}
.sub-footer .sns {
  /* border:1px solid rgb(0, 255, 21); */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 19px;
}
.sub-footer .sns .sns-box {
  /* border:1px solid red;  */
  display: table;
  left: -120px;
}
.sub-footer .sns .sns-box i {
  margin-right: 30px;
}
.sub-footer .sns .sns-box i:last-child {
  margin-right: 0px;
}
/* .sub-footer .item2, .item3, .item_4{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */

@media (max-width: 900px) {
  .section-title h1 {
    text-align: center;
    font-size: 30px;
    width: 70%;
    margin-top: 15px;
  }
  .section-title h1::before,
  .section-title h1::after {
    display: none;
  }
  .section-title p {
    width: 90%;
    text-align: center;
  }

  .sub-footer {
    padding-bottom: 10px;
    box-sizing: border-box;
  }
  .sub-footer .menu li a {
    font-size: 10px;
  }
  .sub-footer .address a {
    line-height: 10px;
    font-size: 10px;
  }
  .sub-footer .tel a {
    line-height: 10px;
    font-size: 10px;
  }
  .sub-footer .hour .row {
    font-size: 10px;
  }
  .sub-footer h5 {
    font-size: 10px;
  }
  .sub-footer .copyright {
    font-size: 10px;
    margin-top: 10px;
    left: 0;
  }
  .sub-footer .sns .sns-box {
    left: 0;
  }
  .sub-footer i {
    font-size: 15px;
  }
  .sub-footer .item {
    padding-left: 35px;
    box-sizing: border-box;
  }

  .sub-page-name {
    font-size: 40px;
  }
  .sub-page-name::before,
  .sub-page-name::after {
    display: none;
  }
}
@media (max-width: 400px) {
  .sub-footer {
    padding-top: 50px;
  }
  /* .sub-footer .item3{ display: none; } */
  .sub-footer .sns {
    margin-top: 4px;
  }
  .sub-footer .item {
    padding-left: 0px;
  }
  .sub-page-name {
    font-size: 26px;
  }
}
