.footer {
	position: relative;
	background-color: #F9F9F9;
	border-top: 1px solid #D7D7D7;
	padding: 43px 0;
}

.footer-inner {
	display: flex;
    justify-content: space-between; /* 핵심 */
    align-items: flex-end;

    max-width: 1200px;
    margin: 0 auto;	
}

.logo-container {
	padding-bottom: 15px;
}


.top-btn {
  position: absolute;
  
  right: 90px;
  top: -120px;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  border: none;

  background: #433CC2;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .top-btn {
    right: 20px;
    top: -80px;
    width: 50px;
    height: 50px;
  }
}
