@charset "utf-8";
@font-face {
  font-family: 'SpoqaHanSansNeo-Medium';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SpoqaHanSansNeo-Medium';
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.index_wrap {
  width: 100%;
  height: 100vh;
  background: url(/img/웹\ 1920\ –\ 14.png) center / cover no-repeat;
}
.index_center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index_btn {
  background: #fff;
  width: 20%;
  text-align: center;
  font-weight: bold;
  border-radius: 20px;
  font-size: 40px;
  cursor: pointer;
  box-shadow: 0 0 19px #8BA0F6;
  overflow: hidden;
}
.index_btn_inner {
  padding: 20px 30px;
  box-shadow: inset 0 0 19px #ABABAB;
  width: 100%;
  height: 100%;
}
.index_btn_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
}
.overlay_loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.521);
  z-index: 9999999;
  display: none;
}
.xi-spinner-5 {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
}
.loadingIcon {
  animation: loading 3s ease-in-out infinite;
  transform-origin:center center;
}
@keyframes loading {
  0% {
    transform:  translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media screen and (max-width : 1300px) {
  .index_btn {
    width: 35%;
  }
}
@media screen and (max-width : 808px) {
  .index_wrap {
    background: url(/img/iPhone\ 12\,\ 12\ Pro\ –\ 7.png) center /cover no-repeat;
  }
  .index_btn_wrap {
    flex-direction: column;
  }
  .index_btn {
    width: 70%;
  } 
}
@media screen and (max-width : 360px) {
  .index_btn {
    width: 85%;
  } 
}