@charset "utf-8";

.land-header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 30vh;
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.land-header img {
  width: calc(100% + 10vw);
  height: auto;
  object-fit: cover;
  position: absolute;
}

.land-header img {
  animation: anm-slide 5s forwards;
}

@keyframes anm-slide {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-5vw);
  }
}

.land-header h1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  justify-content: center;
  position: absolute;
  font-size: 2.8cqi;
  font-weight: 600;
  letter-spacing: 0.5cqi;
  line-height: 1;
  color: #ffffff;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 1));
}

.land-button {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  color: #FF505A;
  border: 1px solid #FF505A;
  font-size: 1.5cqi;
  font-weight: 600;
  line-height: 1;
  padding: 15px 0px;
  justify-content: center;
  align-items: center;
  margin: 0px 15px 15px 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.land-button:hover {
  border: 1px solid #FF505A;
  color: #ffffff;
  background: #FF505A;
}

.land-next {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  color: #FF505A;
  border: 1px solid #FF505A;
  font-size: 1.5cqi;
  font-weight: 600;
  line-height: 1;
  padding: 30px 0px;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
  cursor: pointer;
  transition: all 0.5s;
}

.land-next:hover {
  border: 1px solid #FF505A;
  color: #ffffff;
  background: #FF505A;
}

.registData {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}

.registData a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border: 1px solid #efefef;
  background: #fafafa;
  transition: all 0.5s;
}

.registData a:hover {
  background: #ffffff;
  filter: drop-shadow(0px 0px 3px rgba(255, 80, 90, 0.5));
}

.registData img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.registData dl {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 30px);
  margin: 15px auto;
  gap: 15px;
}

.registData dt {
  display: flex;
  flex-wrap: wrap;
  width: calc(30% - 15px);
  padding: 0px;
  font-size: 1.4cqi;
  line-height: 1.5;
  font-weight: 600;
  align-items: center;
}

.registData dd {
  display: flex;
  flex-wrap: wrap;
  width: calc(70% - 15px);
  padding: 0px;
  font-size: 1.4cqi;
  line-height: 1.5;
}

.land-price {
  font-size: 3cqi;
  color: #FF505A;
  font-weight: 600;
}

@media(max-width: 767px) {
  .land-header h1 {
    font-size: 6cqi;
  }

  .registData dl {
    gap: 5px;
    margin: 10px;
  }

  .registData dt {
    font-size: 2.5cqi;
    width: calc(40% - 5px);
  }

  .registData dd {
    font-size: 2.5cqi;
    width: calc(60% - 5px);
  }

  .land-button {
    max-width: 100%;
    padding: 10px 0px;
    margin: 0px 10px 0px 10px;
    font-size: 3cqi;
  }

  .land-next {
    max-width: 100%;
    padding: 15px 0px;
    font-size: 3cqi;
  }
}