/* 
 * CV-Focused Footer Sitemap Styles
 */

.cv-footer {
  background-color: #111827;
  color: #f3f4f6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-top: 60px;
  text-align: left;
  /* リセット */
}

.cv-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

/* CTA Area */
.cv-footer-cta {
  text-align: center;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 16px;
  padding: 50px 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cv-cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cv-cta-desc {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cv-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}

.cv-btn:hover {
  transform: translateY(-4px);
  color: #ffffff;
}

.cv-btn-youtube {
  background: #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.cv-btn-youtube:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.cv-btn-discord {
  background: #5865f2;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25);
}

.cv-btn-discord:hover {
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* Sitemap Area */
.cv-footer-sitemap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.sitemap-col {
  flex: 1;
}

.sitemap-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #9ca3af;
  border-bottom: 2px solid #374151;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  text-align: left;
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sitemap-col ul li {
  margin-bottom: 12px;
}

.sitemap-col ul li a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.sitemap-col ul li a:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

/* SNS Specific Colors */
.sitemap-col ul li a .fa-twitter:hover,
.sitemap-col ul li a:hover .fa-twitter {
  color: #1DA1F2;
}

.sitemap-col ul li a .fa-twitch:hover,
.sitemap-col ul li a:hover .fa-twitch {
  color: #9146FF;
}

.sitemap-col ul li a .fa-comment-dots:hover,
.sitemap-col ul li a:hover .fa-comment-dots {
  color: #FF5A5F;
}

.sitemap-col i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

/* Bottom Area */
.cv-footer-bottom {
  background-color: #030712;
  padding: 30px 20px;
}

.bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-counters {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .cv-cta-title {
    font-size: 1.4rem;
  }

  .cv-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cv-btn {
    width: 100%;
    justify-content: center;
  }

  .cv-footer-sitemap {
    flex-direction: column;
    gap: 40px;
  }

  .sitemap-col h3 {
    margin-bottom: 15px;
  }
}