.contact-section {
  display: flex;
  margin: auto;
  padding: 80px 0px;
  background: #123888;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
.contact-section-sp {
  text-align: center;
}
.contact-section-title {
  width: fit-content;
  margin: auto;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  border-bottom: 4px solid #FFFFFF;
}
@media (min-width: 768px) {
  .contact-section {
    gap: 24px;
  }
}

.contact-button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 85%;
  min-width: 320px;
  height: 70px;
  background: #ED7330;
  color: #FFFFFF;
  border-radius: 64px;
  border: none;
}
.contact-button {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
}
.contact-button-cover {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
}
.contact-button-title {
  font-size: 14px;
}
.contact-icon {
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .contact-button-wrap {
    width: 992px;
    height: 104px;
    font-size: 31px;
  }
  .contact-button {
    font-size: 31px;
  }
  .contact-icon {
    width: 32px;
    height: 32px;
  }
}

.new-horizon-banner-section {
  display: flex;
  padding: 64px 0px;
  justify-content: center;
}
.new-horizon-banner {
  margin: auto;
}
@media (min-width: 768px) {
  .new-horizon-banner-section {
    padding: 80px 0px;
  }
}

.footer-section {
  display: flex;
  padding: 0px 16px;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.footer-section .footer-download-guidance {
  position: relative;
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: 18px;
  padding-bottom: 15px;
}
.footer-section .footer-download-guidance::before {
  content: "";
  position: absolute;
  width: 62px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  height: 1px;
  background-color: #808080;
}
.footer-section .footer-download-guidance::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #808080;
}
@media (min-width: 768px) {
  .footer-section {
    gap: 50px;
  }
  .footer-section .footer-download-guidance {
    font-size: 24px;
    padding-bottom: 26px;
  }
  .footer-section .footer-download-guidance::before {
    width: 138px;
  }
  .footer-section .footer-download-guidance::after {
    bottom: -10px;
    width: 20px;
    height: 20px;
  }
}


.download-app-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.download-app-wrap img {
  width: 156px;
  height: auto;
}
@media (min-width: 768px) {
  .download-app-wrap {
    flex-direction: row;
    gap: 34px;
  }
  .download-app-wrap img {
    width: 200px;
    max-width: 100%;
  }
}

.footer-supplement {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-supplement-text {
  margin: auto;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: #384341;
}
.footer-supplement ul li {
  font-size: 11px;
  font-weight: 300;
  color: #384341;
}
@media (min-width: 768px) {
  .footer-supplement-text {
    color: #1B1B1B;
  }
  .footer-supplement ul li {
    font-size: 16px;
    color: #1B1B1B;
  }
}

.footer-border-line {
  width: 100%;
  height: 1px;
  background-color: #A1A6AC;
}
.footer-link-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.footer-link-wrap a {
  margin: auto;
  font-size: 16px;
  font-weight: 300;
  color: #1B1B1B;
  text-decoration: underline;
}
.footer-link {
  display: flex;
  text-align: center;
  gap: 16px;
}

.footer-ecc-logo {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 24px;
}
.footer-ecc-logo img {
  margin: auto;
  width: 180px;
  height: auto;
}

.footer-copyright {
  display: flex;
  height: 100px;
  font-size: 14px;
  background: #4680A3;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-border-line {
    width: 1040px;
  }
  .footer-link-wrap {
    gap: 32px;
  }
  .footer-link {
    gap: 32px;
  }

  .footer-ecc-logo {
    margin-top: 66px;
    margin-bottom: 100px;
  }
  .footer-ecc-logo img {
    width: auto;
  }

  .footer-copyright {
    height: 62px;
    font-size: 16px;
    align-items: center;
  }
}