@charset "utf-8";

.footer {
  background: #333;
  color: #fbfbfb;
  padding: 40px 0 20px;
  
  .footerContainer {
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 20px;
    
    .footerContent {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      
      .footerLogo {
        a {
          font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem);
          font-weight: 900;
          color: #d2691e;
        }
      }
      
      .footerNav {
        .footerNavList {
          display: flex;
          gap: 30px;
          
          a {
            font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1rem);
            color: #fbfbfb;
            transition: color 0.3s ease;
            
            &:hover {
              color: #dc143c;
            }
          }
        }
      }
    }
    
    .footerCopyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #555;
      
      p {
        font-size: clamp(0.8rem, 0.7rem + 0.3vw, 0.9rem);
        color: #999;
      }
    }
  }
}

/* メディアクエリ */
@media (width < 768px) {
  .footer {
    .footerContent {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      
      .footerNav {
        .footerNavList {
          flex-direction: column;
          gap: 15px;
        }
      }
    }
  }
}