@charset "UTF-8";

footer {
  background-color: #000;
  color: #fff;

  padding-bottom: 12px;
}

.footer_contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  width: 80%;

  margin: 0 auto;
}

.footer_logo{
  width: 100%;
}

.footer_contents_txt{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 62px;

  margin-top: 66px;
}

.footer_contents_txt_1 p{
  color: #FFF;
font-size: 16px;
font-weight: 600;

margin-top: 12px;
}

.footer_contents_txt_2 p{
  color: #FFF;
font-size: 16px;
font-weight: 600;

margin-top: 12px;
}

.footer_contents_cta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.footer_line {
  display: flex;
  width: 205px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 30px;
  background: #FFF;

  color: #212121;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 194.99%;
}

.footer_contact {
  display: flex;
  width: 205px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 30px;
  background: #FFF;

  color: #212121;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 194.99%;

  margin-top: 25px;
}

.footer_contents_sns{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;

  margin-top: 25px;
}

.footer_contents_sns img {
  width: 40px;
  height: 40px;
}

.copyright {
  text-align: center;
  margin-top: 62px;
}

@media screen and (max-width: 768px) {
  .footer_contents{
    width: 82%;
    flex-direction: column;
    align-items: flex-start;

    margin-top: 32px;
  }

  .footer_logo{
    width: 80%;
  }

  .footer_content{
    width: 100%;
  }

  .footer_contents_txt{
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .footer_contents_cta{
    margin-top: 42px;
    width: 100%;
  }

  .footer_line{
    width: 100%;
  }

  .footer_contact{
    width: 100%;
  }
}