/* /css/privacy.css */

/* ベースリセットは既存の reset.css で行う前提 */

/* 全体コンテナ */
.privacy-policy .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
  }
  
  /* ページタイトル */
  .privacy-policy .page-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 32px;
    color: #333;
  }
  
  /* セクション見出し */
  .privacy-policy h2 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
    color: #49B190;
    text-align: left;
  }
  
  /* 見出し下にアクセントライン */
  .privacy-policy h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #49B190;
    margin-top: 4px;
  }
  
  /* 本文段落 */
  .privacy-policy p {
    margin: 0 0 16px;
    line-height: 1.8;
    text-align: left;
    color: #555;
  }
  
  /* 箇条書きリスト */
  .privacy-policy ul {
    margin: 0 0 16px 20px;
    padding: 0;
    list-style: disc;
    color: #555;
    line-height: 1.8;
  }
  
  /* フッター */
  .privacy-policy .footer-box {
    background: none;
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
    padding: 20px 0 0;
  }
  .privacy-policy .footer-nav a {
    color: #49B190;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
  }
  .privacy-policy .footer-nav .sep {
    color: #ccc;
  }
  

  
.footer-box {
    background-color: #ffffff;
    max-width: 800px;
    /* ボックスの最大幅 */
    margin: 50px auto 10px auto;
    /* 中央寄せ */
    box-sizing: border-box;
}

.footer-nav {
    text-align: center !important;
    font-size: 14px !important;
    color: #333333 !important;
    line-height: 1.5 !important;
}

.footer-nav a {
    color: inherit !important;
    text-decoration: none !important;
    color: #333333 !important;
    margin: 0 8px !important;
}

.footer-nav a:hover {
    text-decoration: underline !important;
}

.footer-nav .sep {
    color: #999999 !important;
}

.footer-nav .copy {
    color: #666666 !important;
    margin-left: 8px !important;
}
