/**
 * Footer Section
 * フッターセクションのスタイル
 */

/* ========================================
   Footer Section
======================================== */
.lp01-footer {
  padding: var(--wp--preset--spacing--3-xl) var(--wp--preset--spacing--xl)
    var(--wp--preset--spacing--2-xl);
  background-color: var(--wp--preset--color--gray-darkest);
  color: var(--wp--preset--color--white);
}

.lp01-footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--2-xl);
  margin-bottom: var(--wp--preset--spacing--3-xl);
}

.lp01-footer__nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--lg);
  margin: 0;
  padding: 0;
}

.lp01-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--wp--preset--color--white);
  opacity: var(--wp--custom--opacity--80);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lp01-footer__nav-link:hover,
.lp01-footer__nav-link:focus-visible {
  opacity: 1;
  color: var(--wp--preset--color--secondary);
}

.lp01-footer__title {
  font-size: var(--wp--preset--font-size--xl);
  font-weight: var(--wp--custom--font-weight--bold);
  margin-bottom: var(--wp--preset--spacing--xl);
}

.lp01-footer__company,
.lp01-footer__address,
.lp01-footer__tel {
  font-size: var(--wp--preset--font-size--base);
  margin-bottom: var(--wp--preset--spacing--base);
  opacity: var(--wp--custom--opacity--90);
}

.lp01-footer__copyright {
  padding-top: var(--wp--preset--spacing--2-xl);
  border-top: 1px solid var(--wp--custom--overlay--light--1);
  text-align: center;
  font-size: var(--wp--preset--font-size--sm);
  opacity: var(--wp--custom--opacity--70);
}

/* Responsive */
@media (min-width: 768px) {
  .lp01-footer__content {
    flex-direction: row;
    justify-content: space-between;
  }

  .lp01-footer__nav-list {
    justify-content: flex-end;
  }
}
