/* legal-disclosure.css */
.legal-disclosure-header {
    width: 100%;
    padding-bottom: 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .legal-disclosure-content {
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  .legal-disclosure-small-english {
    font-family: 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e94d80;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }
  
  .legal-disclosure-large-english {
    font-family: 'Arial', sans-serif;
    font-size: 80px;
    font-weight: 200;
    letter-spacing: 4px;
    color: #f2f2f2;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    text-transform: uppercase;
  }
  
  .legal-disclosure-japanese {
    font-family: 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .legal-disclosure-large-english {
      font-size: 50px;
    }
    
    .legal-disclosure-japanese {
      font-size: 22px;
    }
    
    .legal-disclosure-small-english {
      font-size: 12px;
    }
    
    .legal-disclosure-header {
      padding: 60px 0;
    }
  }