/* =============================================
   footer-a.css : フッター
   ============================================= */

/* ── ベース ─────────────────────────────── */
.footer-a {
  background-color: var(--clr-bg-alt);
  position: relative;
}

/* 上部ゴールドライン */
.footer-a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--clr-gold) 40%,
    var(--clr-gold) 60%,
    transparent 100%
  );
}

/* ── メインエリア ────────────────────────── */
.footer-a__main {
  padding: var(--sp-xl) 0;
}

/* ── Inner ──────────────────────────────── */
.footer-a__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 var(--inner-padding);
}

/* ── グリッド（3列）────────────────────── */
.footer-a__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

/* ── ロゴ・会社情報 ──────────────────────── */
.footer-a__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-a__logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  width: fit-content;
}

.footer-a__logo-en {
  font-family: var(--font-en);
  font-size: var(--fz-xs);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--clr-gold);
  line-height: 1;
}

.footer-a__logo-ja {
  font-family: var(--font-ja);
  font-size: var(--fz-sm);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--clr-white);
  line-height: 1;
}

/* 会社概要テキスト */
.footer-a__tagline {
  font-family: var(--font-ja);
  font-size: var(--fz-2xs);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--clr-text-sub);
  line-height: 1.8;
}

/* 会社情報リスト */
.footer-a__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer-a__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xs);
  font-family: var(--font-ja);
  font-size: var(--fz-2xs);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--clr-text-sub);
  line-height: 1.6;
}

.footer-a__info-label {
  flex-shrink: 0;
  color: var(--clr-gold);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding-top: 2px;
}

/* ── ナビゲーション ──────────────────────── */
.footer-a__nav-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-a__nav-heading {
  font-family: var(--font-en);
  font-size: var(--fz-2xs);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--clr-gold);
  line-height: 1;
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--clr-border-dim);
}

.footer-a__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  list-style: none;
}

.footer-a__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ja);
  font-size: var(--fz-xs);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--clr-text-sub);
  text-decoration: none;
  transition: color var(--t-base);
}

.footer-a__nav-link::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background-color: var(--clr-gold);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--t-base), width var(--t-base);
}

.footer-a__nav-link:hover {
  color: var(--clr-gold-light);
}

.footer-a__nav-link:hover::before {
  opacity: 1;
  width: 18px;
}

/* ── お問い合わせCTA ─────────────────────── */
.footer-a__contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-a__contact-heading {
  font-family: var(--font-en);
  font-size: var(--fz-2xs);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--clr-gold);
  line-height: 1;
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--clr-border-dim);
}

.footer-a__tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.footer-a__tel-label {
  font-family: var(--font-ja);
  font-size: var(--fz-2xs);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--clr-text-sub);
}

.footer-a__tel-number {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--clr-white);
  line-height: 1;
  transition: color var(--t-base);
}

.footer-a__tel:hover .footer-a__tel-number {
  color: var(--clr-gold-light);
}

.footer-a__tel-hours {
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--clr-text-sub);
  line-height: 1.5;
}

.footer-a__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 var(--sp-md);
  font-family: var(--font-ja);
  font-size: var(--fz-sm);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--clr-bg);
  background-color: var(--clr-gold);
  text-decoration: none;
  transition: background-color var(--t-base);
}

.footer-a__contact-btn:hover {
  background-color: var(--clr-gold-light);
}

/* ── ボトムバー ──────────────────────────── */
.footer-a__bottom {
  border-top: 1px solid var(--clr-border-dim);
  padding: var(--sp-md) 0;
}

.footer-a__bottom-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 var(--inner-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.footer-a__copyright {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--clr-text-sub);
}

.footer-a__bottom-links {
  display: flex;
  gap: var(--sp-md);
  list-style: none;
}

.footer-a__bottom-link {
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--clr-text-sub);
  text-decoration: none;
  transition: color var(--t-base);
}

.footer-a__bottom-link:hover {
  color: var(--clr-gold);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .footer-a__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }

  .footer-a__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-a__inner {
    padding: 0 var(--inner-padding-sp);
  }

  .footer-a__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-a__brand {
    grid-column: auto;
  }

  .footer-a__contact-btn {
    width: 100%;
  }

  .footer-a__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
    padding: 0 var(--inner-padding-sp);
  }

  .footer-a__bottom-links {
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }
}
