@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* =========================================
           フッター
        ========================================= */

.pasona-footer {
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

.footer-container {
  max-width: 70%;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px; 
  height: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column:nth-of-type(2),
.footer-column:nth-of-type(4) {
    min-width: 275px !important;
}

.footer-column h3 {
  color: #4caf50;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.5;
  height: 1.5em;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  line-height: 2.5;
  font-size:1.4rem;
}

.footer-column li:before {
  line-height: 1.8;
  content: "⚫︎"; /* 記号(黒丸)を挿入 */
  color: #f36c00; /* 好きな色にする */
  margin-right: 0.5em; /* 点とテキストの距離 */
}

.footer-column li a {
  text-decoration: none;
  color: #333;
  line-height: 1.5;
}

.footer-column li a:hover {
  text-decoration: underline;
}

.empty-heading {
  visibility: hidden;
}
@media (max-width: 1280px) {
    .footer-container {
  max-width: 90%;
  margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .pasona-footer {
    padding: 30px 20px;
  }

  .footer-container {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-logo {
    margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }
  .footer-nav {
    flex-direction: column;
  }
  .empty-heading {
    visibility: hidden;
    display: none;
  }

}