.footer {
  background: #f5f5f5;
  padding: 30px 0;
}
.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.footer_logo img {
  height: 40px;
}
.footer_menu ul {
  display: flex;
  gap: 30px;
}
.footer_menu a {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer_menu a:hover {
  color: #e95515;
}
.footer_sns {
  display: flex;
  gap: 15px;
}
.footer_sns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer_sns a:hover {
  transform: translateY(-3px);
}
.footer_sns img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.info_left p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}
.info_right {
  text-align: right;
}

.family_site select {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.contact_number {
  margin-top: 20px;
}
.contact_number .title {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}
.contact_number .number {
  color: #e95515;
  font-size: 24px;
  font-weight: 700;
}

.footer_copyright {
  padding-top: 30px;
  text-align: center;
}
.footer_copyright p {
  color: #505050;
  font-size: 13px;
  line-height: 1.6;
}
.footer_copyright p:first-child {
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer_top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer_menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer_menu ul li a {
    color: #666;
  }
  .footer_info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .info_right {
    text-align: center;
  }
  .contact_number {
    margin-top: 30px;
  }
}
