@charset "UTF-8";
@import url(reset.css);
@import url(font.css);

html {
  font-size: 10px;
}

body {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
}

/* 공통 wrapper */
.all-wrap {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

[class $= "inner"] {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

a,button {
  cursor: pointer;
}

/* footer 영역 */
#footer {
  background-color: #f9f9f9;
  padding: 3rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.f-left {
  text-align: left;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.f-left h2 img {
  height: 68px;
  margin-bottom: 1.5rem;
}

.f-left p {
  line-height: 1.6;
  color:#16356D;
}

.f-right {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.sns-wrap a {
  display: inline-block;
  margin-left: 1rem;
}

.sns-wrap img {
  width: 32px;
  height: 32px;
}

/* 반응형 대응 */
@media only screen and (max-width: 1280px) {
  #footer {
    padding: 3.5rem 0;
  }
  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .f-left {
    text-align: center;
  }
  .f-left p{
    line-height: 1.2;
  }
  .f-left h2 img {
    height: 53px;
  }
  .f-right {
    justify-content: center;
    margin-top: 2rem;
  }

  .sns-wrap a {
    margin: 0 0.5rem;
  }
}
