/* CSS Document */

/* footer */

footer {
  background: #001d88;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 30px;
  overflow: hidden;
}

.ft-main {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
}

.footer_logo {
  width: 280px;
}

.ft-contact-detail {
  margin: 10px 0;
  min-width: 300px;
}

.ft-contact-detail p {
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05rem;
  margin: 0;
}

.ft-main .tel-box {
  align-items: flex-start;
}

.ft-main .tel-text {
  font-size: 1.75rem;
  line-height: 3rem;
  border-radius: 30px;
}

.ft-main .tel-box .tel-time {
  padding: 0;
  background: inherit;
  border-radius: 0;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
  left: -5px;
}

.ft-main .tel-box .tel-time p {
  font-size: 0.75rem;
}

.sitemap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sitemap ul {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.sitemap ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-sitemap a {
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  line-height: 1.4rem;
  padding: 5px;
  position: relative;
  transition: ease-in-out 0.3s;
}

.page-sitemap a::before {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 13px;
  background: rgba(255, 255, 255, 0.5);
  top: 15px;
  left: -3px;
  transition: ease-in-out 0.3s;
}

.page-sitemap a:hover {
  color: #f7c400;
}

.page-sitemap a:hover::before {
  border: 2px solid #f7c400;
  background: #fff;
  width: 8px;
  left: -6px;
}

@media (max-width: 1560px) {
  .page-sitemap a::before {
    top: 13px;
  }
}

@media (max-width: 1200px) {
  .ft-main {
    gap: 20px;
  }

  .footer_logo {
    width: 200px;
  }

  .ft-contact-detail p {
    font-size: 0.75rem;
    letter-spacing: 0.02rem;
  }

  .ft-main .tel-box .tel-time p {
    font-size: 0.7rem;
  }

  .sitemap ul {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .ft-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: auto;
  }

  .page-sitemap {
    justify-content: flex-start;
  }

  .page-sitemap a::before {
    top: 12px;
  }
}

@media (max-width: 500px) {
  .ft-main {
    width: 100%;
  }
}

/* footer //*/

/*　copy right */

.copy-right {
  width: 100%;
  text-align: center;
  padding: 5px;
  background: #009edd;
}

.copy-right p {
  font-size: 0.8rem;
  color: #fff;
}

@media (max-width: 600px) {
  .copy-right p {
    font-size: 0.65rem;
  }
}

/*　copy right //*/
