/*
=================================================
失業保険LP フッター専用スタイル
assets/unemployment-footer.css

【配置場所】
wp-content/themes/swell-child/assets/unemployment-footer.css

【用途】
フッターのスタイル（グリッド、リンク、SNS、ページトップボタン）
=================================================
*/

/* 
=================================================
1. フッター基本設定
=================================================
*/
.unemployment-custom-footer {
  background: #111827;
  color: white;
  padding: 60px 20px 20px;
}

.unemployment-footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 
=================================================
2. フッターグリッド
=================================================
*/
.unemployment-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.unemployment-footer-column h4 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
}

/* 
=================================================
3. フッターロゴ
=================================================
*/
.unemployment-footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.3;
}

.unemployment-footer-tagline {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 
=================================================
4. お問い合わせ情報
=================================================
*/
.unemployment-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unemployment-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
}

.unemployment-footer-contact-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* 
=================================================
5. フッターリンク
=================================================
*/
.unemployment-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unemployment-footer-list li {
  margin-bottom: 12px;
}

.unemployment-footer-link {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.unemployment-footer-link:hover {
  color: white;
}

/* 
=================================================
6. SNSリンク
=================================================
*/
.unemployment-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.unemployment-footer-social-link {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.unemployment-footer-social-link:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* 
=================================================
7. フッター下部
=================================================
*/
.unemployment-footer-divider {
  border: none;
  border-top: 1px solid #374151;
  margin: 40px 0 30px;
}

.unemployment-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.unemployment-footer-copyright {
  color: #9ca3af;
  font-size: 14px;
}

.unemployment-footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.unemployment-footer-bottom-link {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.unemployment-footer-bottom-link:hover {
  color: white;
}

/* 
=================================================
8. ページトップボタン
=================================================
*/
.unemployment-page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.unemployment-page-top.visible {
  opacity: 1;
  visibility: visible;
}

.unemployment-page-top:hover {
  background: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

/* 
=================================================
9. レスポンシブ対応
=================================================
*/
@media (max-width: 768px) {
  .unemployment-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .unemployment-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .unemployment-footer-bottom-links {
    justify-content: center;
  }
  
  .unemployment-page-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* 
=================================================
10. トップページ以外では非表示
=================================================
*/
body:not(.frontpage-unemployment) .unemployment-custom-footer {
  display: none;
}