/* =========================================
   Footer
========================================= */

.footer {
  background: #f5f5f5;
  padding-top: 60px;
  font-size: 16px;
}

.footer p {
    margin: 0;
    line-height: 1.6;
}

/* -----------------------------------------
   Footer Inner
----------------------------------------- */

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

/* -----------------------------------------
   Footer Logo Area
----------------------------------------- */

.footer__logo {
  flex: 1;
}

.footer__logo-image {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: auto;
}

.footer__site-name {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
}


/* -----------------------------------------
   Footer Information Area
----------------------------------------- */

.footer__contents {
    flex: 1.8;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
    row-gap: 24px;
}

.footer__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

a.footer__item {
    display: flex;
}

.footer__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer__title,
.footer__text {
    margin: 0;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

.footer__tel {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

/* -----------------------------------------
   Footer Link
----------------------------------------- */

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.7;
}

/* -----------------------------------------
   Footer Bottom
----------------------------------------- */

.footer__bottom {
  margin-top: 24px;
  padding: 24px 40px;

  border-top: 1px solid #ddd;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright,
.footer__privacy {
  font-size: 12px;
}

  /* =========================================
   Responsive tab
========================================= */

@media screen and (max-width: 1024px) and (min-width: 769px) {

  /* -----------------------------------------
     Footer Inner
  ----------------------------------------- */

  .footer__inner {
    padding: 0 24px;
    gap: 32px;
  }

  .footer__contents {
    flex: 1.5;
    column-gap: 32px;
    row-gap: 20px;
    font-size: 15px;
  }

.footer p,
.footer a:not(.footer__tel),
.footer li {
    font-size: 15px;
    line-height: 1.6;
}
  /* -----------------------------------------
     Footer Logo Area
  ----------------------------------------- */

  .footer__logo-image {
      width: 70px;
  }

  .footer__site-name {
    font-size: 25px;
  }

  /* -----------------------------------------
     Footer Information Area
  ----------------------------------------- */

  .footer__icon {
    width: 20px;
    height: 20px;
  }

  .footer__tel {
    font-size: 22px;
    font-weight: 700;
  }

  /* -----------------------------------------
     Footer Bottom
  ----------------------------------------- */

  .footer__bottom {
    padding: 20px 24px;
  }

  .footer__copyright,
  .footer__privacy {
    font-size: 12px;
  }
}

/* =========================================
   Responsive SP
========================================= */

@media screen and (max-width: 768px) {

  /* -----------------------------------------
     Footer
  ----------------------------------------- */

  .footer {
    padding-top: 48px;
  }

  .footer__item {
    width: 100%;
  }

  .footer p,
  .footer a:not(.footer__tel),
  .footer li {
    font-size: 14px;
    line-height: 1.6;
  }

  /* -----------------------------------------
     Footer Inner
  ----------------------------------------- */

  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
  }

  .footer__contents {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  /* -----------------------------------------
     Footer Logo Area
  ----------------------------------------- */

  .footer__logo {
    text-align: center;
  }

  .footer__site-name {
  font-size: 22px;
}

  /* -----------------------------------------
     Footer Information Area
  ----------------------------------------- */

  .footer__content {
      flex-direction: column;
      gap: 0px;
    }

  .footer__tel {
      font-size: 22px;
      font-weight: 700;
  }
  /* -----------------------------------------
     Footer Bottom
  ----------------------------------------- */

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
  
.footer__privacy {
    order: 1;
    font-size: 12px;
}

.footer__copyright {
    order: 2;
    font-size: 12px;
}

  }


