@charset "UTF-8";
/* ============================================================
   個人情報保護方針ページ  css/privacy.css
   ============================================================ */

.pv__intro{
  display:grid; grid-template-columns: 150px 1fr;
  gap: clamp(22px, 4vw, 40px);
  align-items:start;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.pv__intro figure{
  background:#fff; border-radius:12px;
  display:grid; place-items:center;
  padding:14px;
  box-shadow: var(--shadow-sm);
}
.pv__intro h2{
  font-size: clamp(20px, 2.6vw, 25px); font-weight:900;
  color:var(--navy); letter-spacing:.12em;
  margin-bottom: 12px;
  display:flex; align-items:center; gap:.6em;
}
.pv__intro h2::before{
  content:""; width:.55em; height:.55em; border-radius:50%; background:var(--yellow);
  box-shadow:.95em 0 0 -2px var(--magenta), 1.9em 0 0 -4px var(--cyan);
  margin-right:1.7em; flex:none;
}
.pv__intro p{ font-size:14.5px; color:#39414f; }

/* 方針リスト */
.pv__list li{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3.4vw, 34px);
  margin-bottom: 18px;
}
.pv__list h3{
  display:flex; align-items:baseline; gap:12px;
  font-size: clamp(16px, 2.2vw, 19px); font-weight:900;
  color:var(--navy); letter-spacing:.08em;
  margin-bottom: 12px;
}
.pv__list h3 span{
  flex:none;
  font-family:var(--font-en);
  color:#fff; font-size:15px;
  width:34px; height:34px; border-radius:50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  display:grid; place-items:center;
  translate:0 4px;
}
.pv__list li:nth-child(2) h3 span{ background: linear-gradient(135deg, var(--magenta), #ff5fae); }
.pv__list li:nth-child(3) h3 span{ background: linear-gradient(135deg, #ffb800, var(--yellow)); color:var(--navy); }
.pv__list li:nth-child(4) h3 span{ background: linear-gradient(135deg, var(--navy), var(--blue-bright)); }
.pv__list li:nth-child(5) h3 span{ background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.pv__list p{ font-size:14px; color:#39414f; }
.pv__example{
  margin-top: 12px;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  padding: 14px 18px;
}
.pv__date{
  margin-top: 26px;
  text-align:right;
  font-size:13.5px; color:#475064; line-height:2;
}

/* 開示対象 */
.pv__block > p{ font-size:14px; color:#39414f; margin-bottom:16px; }
.pv__table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px; overflow:hidden;
  box-shadow: var(--shadow-sm);
  margin: 8px 0 20px;
}
.pv__table th, .pv__table td{
  padding: 14px 18px;
  border-bottom:1px solid var(--line);
  font-size:13.5px; text-align:left;
}
.pv__table thead th{
  background: var(--blue);
  color:#fff; font-weight:700; letter-spacing:.1em;
  border-bottom:0;
}
.pv__table tbody td:first-child{
  font-weight:700; color:var(--blue-deep);
  background:#eef3fc;
  width: 40%;
}
.pv__table tr:last-child td{ border-bottom:0; }

/* 手続きステップ */
.pv__steps{ counter-reset: step; }
.pv__steps li{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px 22px 26px;
  margin-bottom: 16px;
}
.pv__steps h3{
  font-size:16.5px; font-weight:900; color:var(--navy);
  letter-spacing:.08em; margin-bottom:8px;
  display:flex; align-items:center; gap:.6em;
}
.pv__steps h3::before{
  content:""; width:.6em; height:.6em; flex:none; border-radius:3px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
}
.pv__steps p{ font-size:13.5px; color:#39414f; }

/* 窓口ボックス（contact.cssと共通デザインだが単独でも使えるように定義） */
.ct-window__box{
  border:1px solid var(--line);
  border-left:5px solid var(--blue-bright);
  border-radius:10px;
  background:#fff;
  padding: 24px 28px;
}
.ct-window__box h2{
  font-size:16px; font-weight:900; color:var(--navy);
  letter-spacing:.1em; margin-bottom:8px;
}
.ct-window__box p{ font-size:14px; color:#39414f; }

@media (max-width: 700px){
  .pv__intro{ grid-template-columns: 1fr; }
  .pv__intro figure{ width: 150px; margin-inline:auto; }
}
