@charset "UTF-8";
li{
    letter-spacing: .5px;
    line-height: 1.8rem;
    overflow-wrap: normal;
}

header {
    background-color: #98d545;
    height: 115px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
header img{
    height: 89px;
    width: auto;
}

.div_pp_title{
    text-align: center;
}

.div_pp_title h1{
    margin-top: 80px;
    font-size: 36px;
}

.div_pp_title p{
    margin-top: -15px;
    font-size: 16px;
}

.privacy_policy{
    max-width: 1100px;
    min-width: 200px;
    margin: 0px auto;
    padding: 20px;
}

.privacy_ttl{
    margin: 55px 0 -5px 0;
}

.privacy_number li{
    list-style-type: none;
	counter-increment: cnt;
    text-indent: -1.5rem;
}

.privacy_number li::before {
	content: "(" counter(cnt) ") ";
}

/* ===== ヘッダー画像調整 ===== */
header {
    text-align: center;
  }
  
  .pp_logo_img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* ===== タイトル調整 ===== */
  .div_pp_title {
    text-align: center;
    margin-top: 40px;
  }
  
  .div_pp_title h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
  }
  
  .div_pp_title p {
    margin-top: 10px;
    font-size: 18px;
  }
  
  /* 表示切替制御 */
  .pc-only {
    display: inline;
  }
  
  .sp-only {
    display: none;
  }
  
  /* ===== スマホ表示時のみ適用 ===== */
  @media screen and (max-width: 768px) {
    .div_pp_title h1 {
      font-size: 22px;
    }
  
    .div_pp_title p {
      font-size: 16px;
    }
  
    .pc-only {
      display: none;
    }
  
    .sp-only {
      display: block;
    }
  }
  