/* ========================================
   フッタースタイル - les SALON
   ======================================== */

.site-footer {
  background: linear-gradient(135deg, #3D3D3D 0%, #2A2A2A 100%);
  color: #E8DDD0;
  font-family: var(--font-ja-sans);
}

.footer-content {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

/* ウィジェットタイトル */
.widget-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #F4D03F;
  margin-bottom: 1.5rem;
  font-family: var(--font-ja-heading);
  letter-spacing: 0.1em;
}

/* サロン情報 */
.footer-salon-info .salon-tagline {
  font-size: 0.9rem;
  color: #9B9B9B;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.salon-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
  line-height: 1.8;
}

.info-content strong {
  display: block;
  color: #F4D03F;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.info-content a {
  color: #E8DDD0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-content a:hover {
  color: #F4D03F;
}

.info-content small {
  font-size: 0.85rem;
  color: #9B9B9B;
}

/* メニューリスト */
.footer-menu-list,
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li,
.footer-services-list li {
  margin-bottom: 0.75rem;
}

.footer-menu-list a {
  color: #E8DDD0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footer-menu-list a:hover {
  color: #F4D03F;
  padding-left: 0.5rem;
}

.footer-services-list li {
  color: #9B9B9B;
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.8;
}

.footer-services-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #F4D03F;
}

/* アクセス */
.footer-access p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 0.9rem;
}

.footer-access strong {
  display: block;
  color: #F4D03F;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-map-link {
  margin-top: 1.5rem;
}

.footer-map-link .btn {
  background: transparent;
  border-color: #F4D03F;
  color: #F4D03F;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

.footer-map-link .btn:hover {
  background: #F4D03F;
  color: #2A2A2A;
}

/* フッターボトム */
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 130, 0.2);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright,
.site-info {
  margin: 0;
  font-size: 0.85rem;
  color: #9B9B9B;
  letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-widget {
    text-align: left;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .info-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .info-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2.5rem 0;
  }
  
  .widget-title {
    font-size: 1.25rem;
  }
  
  .info-content {
    font-size: 0.85rem;
  }
  
  .footer-map-link .btn {
    width: 100%;
  }
}

/* アクセス情報 */
.footer-access {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 0.75rem 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  border-left: 3px solid var(--color-accent);
}

.footer-map-link {
  margin-top: 1rem;
}

.footer-map-link .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-map-link .btn:hover {
  transform: translateY(-2px);
}

