@charset "UTF-8";
/* =========================
  フッター
========================= */
.site-footer {
  background-color: #F48E00;
  color: #ffffff;
  text-align: center;
  padding: 32px 16px;
}

/* 更新日 */
.footer-update {
  font-size: clamp(16px, 1.3vw, 32px);
  margin-bottom: 24px;
  font-weight: 700;
}

/* リンク行 */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}

/* リンク */
.footer-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: clamp(16px, 1.2vw, 20px);
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

/* 区切り線 */
.footer-separator {
  color: #ffffff;
  font-size: 32px;
}

/* コピーライト */
.footer-copy {
  font-size: clamp(12px, 1vw, 16px);
  opacity: 0.9;
}

/* ===== プライバシーモーダル ===== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.privacy-modal.is-active {
  display: flex;
}

.privacy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.privacy-modal__content {
  position: relative;
  width: 90%;
  max-width: 720px;
  max-height: 80vh;
  margin: 5vh auto;
  background: #FFECD5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.privacy-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.privacy-modal__body {
  padding: 32px 24px;
  overflow-y: auto;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-modal__body h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.privacy-modal__body h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-modal__body ul {
  padding-left: 18px;
}

/* ===== 運営者情報テーブル ===== */
.company-modal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
}

.company-modal-table th,
.company-modal-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.company-modal-table th {
  width: 35%;
  text-align: left;
  font-weight: 600;
  color: #555;
  background: rgba(255, 255, 255, 0.4);
}

.company-modal-table td {
  color: #333;
}

@media (max-width: 768px) {
  .privacy-modal__body {
    padding: 24px 16px;
  }
  .company-modal-table th {
    width: 40%;
  }
}
@media (max-width: 380px) {
  .company-modal-table th {
    font-size: 13px;
  }
}/*# sourceMappingURL=footer.css.map */