/* =========================
   Privacy Policy Page (pp.css)
   ========================= */

.pp-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 全体の基本：読みやすさ */
.pp-page,
.pp-page * {
  box-sizing: border-box;
}

.pp-hero {
  width: 100%;
  padding: 64px 20px 28px;
  background: #f6f8fb;
  border-bottom: 1px solid #e6ebf2;
}

.pp-title {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #111;
}

.pp-lead {
  margin: 14px auto 0;
  max-width: 980px;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

.pp-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 20px 64px;
}

/* セクション */
.pp-section {
  padding: 26px 0;
  border-bottom: 1px solid #eef2f7;
}

.pp-section:last-of-type {
  border-bottom: none;
}

.pp-section h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  padding-left: 12px;
}

.pp-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: #1e2084;
}

.pp-section p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 2.0;
  color: #334155;
}

/* リスト */
.pp-section ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pp-section ul li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
}

.pp-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1e2084;
  transform: translateY(-50%);
}

/* 注釈 */
.pp-note {
  margin-top: 12px;
  padding: 14px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
}

/* サブボックス（注意事項の枠） */
.pp-subbox {
  margin-top: 14px;
  padding: 16px 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
}

.pp-subbox h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.pp-subbox ul {
  margin-top: 10px;
}

/* CTA */
.pp-cta {
  margin-top: 16px;
}

.pp-cta-btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: #1e2084;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.pp-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.pp-cta-btn:active {
  transform: translateY(0);
}

/* フッター */
.pp-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #eef2f7;
}

.pp-company {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* スマホ最適化 */
@media (max-width: 640px) {
  .pp-hero {
    padding: 46px 16px 22px;
  }

  .pp-container {
    padding: 24px 16px 52px;
  }

  .pp-section {
    padding: 22px 0;
  }

  .pp-section h2 {
    font-size: 17px;
  }

  .pp-section p,
  .pp-section ul li {
    font-size: 14px;
  }

  .pp-cta-btn {
    width: 100%;
    text-align: center;
  }
}

.footer-map {
  width: 40%;
}

.yahoo-map {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 正方形にしたい場合（おすすめ） */
  height: 100%;
  overflow: hidden;
  border-radius: 18px;  /* 任意 */
}

/* Yahooが内部に作る要素に効かせる */
.yahoo-map iframe,
.yahoo-map > div,
.yahoo-map canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@media (max-width: 519px) {
.footer-map {
  width: 100%;
}

}

@media (max-width: 519px) {

  /* フッター情報エリア全体は中央に配置 */
  .footer-info{
    text-align: center;
  }

  /* テーブル自体を中央に置く */
  .info-table{
    display: inline-table;  /* ←これがポイント（幅を内容に合わせる） */
    width: auto;
    margin: 0 auto;
  }

  /* ここが原因だった “ブロック化” を戻す */
  .info-table th,
  .info-table td{
    display: table-cell;     /* ← block を解除 */
    width: auto;
    text-align: left;        /* ←文字は左詰め */
    padding: 6px 0 6px 6px;
    vertical-align: top;
  }

  /* 住所の span を改行したいなら（今のままでもOK） */
  .info-table td span{
    display: inline;         /* ←改行したくないなら */
    padding-left: 10px;
  }

  /* 住所を2行にしたいならこっち */
  /* .info-table td span{
    display:block;
    padding-left:0;
  } */
}

/* =========================
  Yahooマップ下：駐車場案内
========================= */
.map-parking-note{
  margin: 14px 0 26px;   /* ←下の余白を追加（重なり防止） */
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbe6;
  border: 1px solid #f0d97a;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 519px){
  .map-parking-note{
    font-size: 0.8rem;
    padding: 10px 12px;
    margin-bottom: 32px; /* ←スマホはもう少し離す */
  }
}


.map-parking-note i{
  color: #d4a400;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-parking-note p{
  margin: 0;
}

.map-parking-note strong{
  font-weight: 800;
  color: #1e2084;
}

