@charset "UTF-8";

/* ===== Header ========================================== */
.header{
    width: 100%;
    background: #fff6bb;
  }
  
  .header-inner{
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  
  /* ===== Logo ===== */
  .header-logo{
    flex: 0 0 auto;
  }
  .header-logo img{
    height: 32px;
    display: block;
  }
  
  /* ===== Actions ===== */
  .header-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  
  .header-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: opacity .2s ease;
  }
  
  .header-btn--gray{ background:#5f5f5f; color:#fff; }
  .header-btn--orange{ background:#d8944d; color:#fff; }
  .header-btn:hover{ opacity:.86; }
  
  br.sp{ display:none; }
  
  /* ===== Responsive (SP) ===== */
  @media (max-width: 768px){
  
    .header-inner{
      max-width: none;
      width: 100%;
      padding: 10px 12px;
      gap: 15px;
    }
  
    .header-logo,
    .header-actions{
      min-width: 0;
    }
  
    .header-logo{
      flex: 0 1 auto;
    }
    .header-logo img{
      height: 22px;
      width: auto;    
    }
  
    .header-actions{
      flex: 1;
      gap: 10px;
      justify-content: flex-end;
    }
  
    .header-btn{
        height: 45px;
        padding: 6px 5px;            
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        max-width: 190px;
        display: flex;
        align-items: center;           
        justify-content: center; 
      }
  }
