/************************************************************/
/*   footer   */
/************************************************************/
/* <---------- フッターPC ----------> */
footer {
  background-color: #535353;
}

.site-footer {
  background: #555;
  /* 背景色は画像に合わせて */
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 70px 20px 100px;
  font-size: clamp(16px, 2vw, 20px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left {
  flex: 1;
  display: flex;
  margin-left: 70px;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-info {
  font-size: 14px;
  line-height: 1.6;
}

.footer-info .footer-name {
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-info .footer-title {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.footer-info address {
  font-size: 16px;
  margin-bottom: 5px;
  font-family: 'Noto Sans JP';
  font-style: normal;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
}

.footer-nav ul {
  display: flex;
  gap: 15px;
  /* li 同士の余白 */
  list-style: none;
  /* ← マーカーを消す */
}

.footer-nav ul li {
  position: relative;
  padding: 0 10px;
  /* 線と文字の間隔 */
}

/* .footer-nav ul li:first-child::before {
  display: none;
} */

.footer-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-30%);
  width: 1px;
  /* 線の太さ */
  height: 14px;
  /* 線の高さ */
  background: #fff;
  /* 線の色 */
}

.footer-nav ul li:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-30%);
  width: 1px;
  /* 線の太さ */
  height: 14px;
  /* 線の高さ */
  background: #fff;
  /* 線の色 */
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-sub-conteiner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-sns img {
  width: 40px;
  height: 40px;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  width: 175px;
  height: 40px;
}

.contact-btn img {
  width: 21px;
  height: auto;
}

.footer-npf img {
  max-width: 280px;
  width: 100%;
  width: auto;
}

.footer-copy {
  max-width: 1200px;
  text-align: right;
  font-size: 12px;
  margin: 10px auto 0;
  color: #ddd;
}

/* <---------- フッターTB ----------> */
@media screen and (max-width: 1023px) {

  .footer-inner {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-left {
    flex: 1;
    display: flex;
    margin-left: 0;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-copy {
    text-align: center;

  }

}

/* <---------- フッターSP ----------> */
@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
  }

  .footer-right {
    align-items: center;
  }

  .footer-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 10px;
  }

  .footer-nav ul li {
    position: relative;
    padding: 0 10px;
  }

  .footer-sub-conteiner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .footer-sns img {
    width: 30px;
    height: 30px;
  }

  .contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    width: 175px;
    height: 40px;
  }

  .contact-btn img {
    width: 21px;
    height: auto;
  }

  .footer-npf img {
    max-width: 250px;
    width: 100%;
    width: auto;
  }
}