.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 50px;
}

.home-container > .home-area {
  color: white;
  font-weight: 800;
  font-size: 1.6rem;
  width: 100%;
  max-width: 1400px;
  min-width: 1200px;
  position: relative;
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("/200710/images/main/background.png") center/cover no-repeat;
}

.home-body {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  font-family: "¸¼Àº °íµñ";
  gap: 0.05%;
}

.home-body h3 {
  font-size: 27px;
  font-weight: 500;
}

.home-body-block {
  width: 33.3%;
  min-height: 360px;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-header > img {
  display: block;
  width: 400px;
  margin: 0 auto;

  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff)
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.1))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
}

.home-footer-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-footer p {
  display: flex;
  align-items: center;
  gap: 4px;
}
.home-footer img {
  width: 1.4rem;
}
.home-body-logo {
  width: 130px;
  opacity: 0.8;
}
.home-login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 180px;
}
.home-login-input {
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  border: 1px solid rgba(100, 100, 220, 0.3);
  padding: 0.5rem 1rem;
}
.home-btn-box {
  display: flex;
  justify-content: stretch;
}
.home-btn-box > button,
.home-btn-box > a {
  padding: 0.5rem;
  cursor: pointer;
  outline: none;
  border: 1px solid white;
  color: white;
}
.home-btn-box > button:hover,
.home-btn-box > a:hover {
  opacity: 0.8;
}
.home-body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-body-bottom ul img {
  width: 20px;
}
.home-body-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  min-height: 220px;
  align-items: center;
}

.home-body-bottom ul {
  min-width: 210px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
}
.home-body-bottom li {cursor:pointer;list-style:square;}
.home-body-bottom li:hover {opacity: 0.9;}

.home-body-bottom li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-abs-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: #333;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.4rem;
}
.home-abs-button:hover { background: #555; }
.home-abs-button > img { width: 1.4rem; }

@media (max-width: 1000px) {
  .home-container > .home-area {
    width: 100%;
    max-width: 600px;
    min-width: 300px;
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }
  .home-body-block {
    width: 100%;
  }
  .home-abs-button {
    top: -50%;
  }
  .home-footer-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .home-body-logo {
    display: none;
  }
  .home-body-bottom > ul {
    transform: translate(40px, 0);
  }
  .home-header > img {
    width: 300px;
  }
  .home-footer-content {
    gap: 0;
    flex-direction: column;
  }
}
