@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css");
@import url("https://webfontworld.github.io/SCoreDream/SCoreDream.css");
@import url("https://fonts.googleapis.com/earlyaccess/jejumyeongjo.css");
@import url("https://fonts.cdnfonts.com/css/segoe-ui-4");
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  letter-spacing: -0.05em;
}
.score {
  font-family: "SCoreDream", "Pretendard", "Noto Sans KR";
}
.title {
  font-family: "Pretendard", serif;
}
.en_font {
  font-family: "Roboto", sans-serif;
}
.serif {
  font-family: "Noto Serif KR", serif;
}
.segoe {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.jjmj {
  font-family: "Jeju Myeongjo", serif;
}
.pre {
  font-family: "Pretendard", sans-serif;
}
.sans {
  font-family: "Pretendard", sans-serif;
}
body {
  position: relative;
  overflow-x: hidden;
  font-family: "Pretendard", sans-serif;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  min-width: 1903px;
}
a {
  color: #333;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}
li {
  list-style: none;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
.m_con {
  display: none;
}
.blind {
  text-indent: -9999px;
  line-height: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
  margin: 0;
}
.center {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
/*intro*/
.main_intro {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0 auto;
  z-index: 99999999;
  text-align: center;
  opacity: 1;
  animation: intro 2s 5s linear both;
  animation-iteration-count: 1;
  background: #000;
}
@keyframes intro {
  0% {
    opacity: 1;
    display: block;
  }
  50% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/* .main_intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: url("../img/main_intro.jpg") no-repeat center;
} */
.main_intro .title {
  display: flex;
  justify-content: center;
  padding-top: 150px;
  margin-bottom: 10px;
  font-size: 290px;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
}
.main_intro > .goodmorning {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 75px;
  color: #fff;
  z-index: 2;
}
.main_intro .goodmorning > div {
  font-weight: 600;
}
.main_intro .goodmorning .color {
  color: #abe2ff;
}
.main_intro .sleep {
  display: flex;
  justify-content: center;
  font-size: 108px;
  font-weight: 700;
  color: #abe2ff;
}
.main_intro .sleep > .deco {
  font-size: 120px;
  font-weight: 500;
  line-height: 120px;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.5);
}
.hd_wrap {
  padding: 0 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd_wrap > ul.pc_con {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
}
.submenu {
  position: absolute;
  top: -333px;
  left: 0px;
  display: flex;
  justify-content: end;
  width: 100%;
  transition: all 0.5s;
  padding: 0 240px 28px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
}
.submenu_wrap {
  display: flex;
  padding-top: 120px;
  width: 60%;
  justify-content: space-evenly;
}
.submenu_wrap ul {
  text-align: center;
}
/* .submenu_wrap > ul:last-child {
  width: 65px;
} */
.submenu a {
  line-height: 52px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  width: 180px;
  display: inline-block;
}
.hd_wrap > ul.pc_con:hover > .submenu {
  top: 0px;
  opacity: 1;
}
.hd_wrap > ul > .submenu li a {
  transition: all 0.2s;
}
.hd_wrap > ul > .submenu li a:hover {
  color: #a0c5f6;
}
.hd_wrap > ul.pc_con > li > a {
  line-height: 90px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  position: relative;
  display: inline-block;
  width: 180px;
  text-align: center;
}
.hd_wrap > ul > li a::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  transition: all 0.2s;
}
.hd_wrap > ul > li a:hover::after {
  width: 100%;
}
