/* フッター */
.footer {
    background: #f0f0f0;
    border-radius: 24px;
    margin: 40px;
  }
  
  .footer__container {
    padding: 80px 40px 40px;
  }
  
  .footer__content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  
  /* 左側：会社情報 */
  .footer__company {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 192px;
    flex-shrink: 0;
    height: 259px;
  }
  
  .footer__company-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .footer__logo {
    width: 79px;
    height: auto;
  }
  
  .footer__address {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #3d3a2c;
  }
  
  .footer__address p {
    margin: 4px 0 0;
  }
  
  .footer__address p:first-child {
    margin-top: 0;
  }
  
  .footer__tel {
    display: flex;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #3d3a2c;
  }
  
  .footer__sns {
    display: flex;
    gap: 16px;
  }
  
  .footer__sns-link {
    width: 32px;
    height: 32px;
    background: #3d3a2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  
  .footer__sns-link:hover {
    transform: translateY(-2px);
  }
  
  .footer__sns-link img {
    width: 40px;
    height: 40px;
  }
  
  /* noteアイコンだけ特別扱い */
  .footer__sns-link--note {
    background: transparent !important;
  }
  
  .footer__sns-link--note img {
    filter: none !important;
    width: 32px !important;
    height: 32px !important;
  }
  
  /* 右側：ナビゲーション */
  .footer__nav {
    width: 1032px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  /* 6列グリッド */
  .footer__nav-columns {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  
  .footer__nav-column {
    width: 140px;
  }
  
  .footer__nav-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: #333333;
  }
  
  /* 矢印アイコン（右向き） */
  .footer__nav-heading img {
    width: 16px;
    height: 16px;
  }
  
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__nav-list a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  
  .footer__nav-list a:hover {
    opacity: 0.8;
  }
  
  /* 専用ページボタン */
  .footer__nav-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
  }
  
  .footer__nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    transition: transform 0.2s ease;
    width: 210px;
  }
  
  .footer__nav-btn:hover {
    transform: translateY(-2px);
  }
  
  .footer__nav-btn--student {
    background: #ffb838;
  }
  
  .footer__nav-btn--company {
    background: #5dabde;
  }
  
  .footer__nav-btn--contact {
    background: white;
    color: #3d3a2c;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  }
  
  .footer__nav-btn-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  
  .footer__nav-btn--contact .footer__nav-btn-icon {
    background: #ffb838;
  }
  
  .footer__nav-btn-icon img {
    width: 24px;
    height: 24px;
  }
  
  /* 下部 */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .footer__privacy {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
  }
  
  .footer__privacy img {
    width: 8px;
    height: 8px;
  }
  
  .footer__copyright {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #3d3a2c;
  }