@charset "utf-8";
/* CSS Document */
/********************************************************************
	privacy.css
*********************************************************************/

/*==========================================================================
	イントロエリア
============================================================================*/
.privacyIntro {
  background-color: #f0f5fa;
  border-left: 4px solid #0062a9;
  padding: 18px 20px;
  margin-bottom: 35px;
  line-height: 1.9;
}
.privacyIntro p {
  margin-bottom: 8px;
}
.privacyIntro p:last-child {
  margin-bottom: 0;
}

/*==========================================================================
	各セクション
============================================================================*/
.privacySection {
  margin-bottom: 35px;
}

/* メイン見出し（1. 2. 3. …） */
.privacySectionTitle {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background-color: #0062a9;
  color: #fff;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.4;
}
.privacyNum {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background-color: #fff;
  color: #0062a9;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  margin-right: 12px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* セクション本文ラッパー */
.privacySectionBody {
  padding: 0 5px;
}
.privacySectionBody > p {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* サブ見出し（1.1. 1.2. …） */
.privacySubTitle {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  background-color: #f2f2f2;
  border-left: 3px solid #0062a9;
  padding: 8px 12px;
  margin: 22px 0 12px;
  line-height: 1.5;
}

/*==========================================================================
	リスト（(1) (2) …）
============================================================================*/
.privacyList {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  counter-reset: privacy-counter;
}
.privacyList > li {
  counter-increment: privacy-counter;
  position: relative;
  padding: 8px 0 8px 36px;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.75;
}
.privacyList > li:last-child {
  border-bottom: none;
}
.privacyList > li::before {
  content: "(" counter(privacy-counter) ")";
  position: absolute;
  left: 0;
  top: 8px;
  color: #0062a9;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.75;
}

/*==========================================================================
	お問い合わせ窓口テーブル
============================================================================*/
.privacyContact {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 14px;
}
.privacyContact th,
.privacyContact td {
  padding: 10px 14px;
  border: 1px solid #ccc;
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
}
.privacyContact th {
  background-color: #deeaf6;
  color: #0062a9;
  font-weight: bold;
  white-space: nowrap;
}
.privacyContact td {
  background-color: #fff;
}
/*--- リンク ---*/
.privacyContact a:link,
.privacyContact a:visited {
  color: #0026a9;
  text-decoration: underline;
}
.privacyContact a:hover,
.privacyContact a:active {
  color: #199c69;
  text-decoration: underline;
}

/*==========================================================================
	制定日・署名エリア
============================================================================*/
.privacySignature {
  border-top: 1px solid #ccc;
  margin-top: 45px;
  padding-top: 20px;
  text-align: right;
  font-size: 14px;
  line-height: 1.9;
}

/*==========================================================================
	Veoliaスタイル プライバシーポリシー（pp-プレフィックス）
============================================================================*/

/* イントロボックス */
.pp-intro {
  background-color: #f0f5fa;
  border-left: 4px solid #0062a9;
  padding: 20px 22px;
  margin-bottom: 40px;
  line-height: 1.9;
  font-size: 15px;
}
.pp-intro p {
  margin-bottom: 10px;
}
.pp-intro p:last-child {
  margin-bottom: 0;
}

/* セクション */
.pp-section {
  margin-top: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}
.pp-section + .pp-section {
  padding-top: 30px;
}
.pp-section-last {
  border-bottom: none;
}

/* セクション見出し（h2） */
.pp-heading {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #0062a9;
  padding: 11px 18px;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* 本文エリア */
.pp-body p {
  line-height: 1.9;
  margin-bottom: 12px;
  font-size: 15px;
}

/* サブ見出し（h3） */
.pp-sub-heading {
  font-size: 14px;
  font-weight: bold;
  color: #0062a9;
  border-left: 3px solid #0062a9;
  background-color: #f0f5fa;
  padding: 7px 12px;
  margin: 22px 0 12px;
  line-height: 1.5;
}

/* ●ブレットリスト */
.pp-bullet {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.pp-bullet > li {
  position: relative;
  padding: 6px 0 6px 22px;
  line-height: 1.8;
  font-size: 15px;
  border-bottom: 1px dotted #e0e0e0;
}
.pp-bullet > li:last-child {
  border-bottom: none;
}
.pp-bullet > li::before {
  content: "●";
  color: #0062a9;
  font-size: 9px;
  position: absolute;
  left: 4px;
  top: 9px;
}

/* 説明文付きブレットリスト */
.pp-bullet.pp-desc > li {
  padding-bottom: 10px;
  padding-top: 10px;
}
.pp-bullet.pp-desc > li strong {
  display: block;
  margin-bottom: 5px;
}
.pp-bullet.pp-desc > li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* 番号付きリスト */
.pp-ordered {
  padding-left: 22px;
  margin: 8px 0 14px;
}
.pp-ordered > li {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 4px;
}

/* ダッシュリスト */
.pp-dash {
  list-style: none;
  padding: 0;
  margin: 4px 0;
}
.pp-dash > li {
  position: relative;
  padding: 3px 0 3px 20px;
  line-height: 1.8;
  font-size: 15px;
}
.pp-dash > li::before {
  content: "－";
  color: #666;
  position: absolute;
  left: 0;
}

/* 定義リスト（共同利用） */
.pp-dl {
  margin: 12px 0;
}
.pp-dl dt {
  font-weight: bold;
  color: #333;
  font-size: 14px;
  margin-top: 14px;
  margin-bottom: 4px;
  padding-left: 10px;
  border-left: 2px solid #0062a9;
  line-height: 1.6;
}
.pp-dl dt:first-child {
  margin-top: 0;
}
.pp-dl dd {
  margin: 2px 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* お問い合わせフォームリンクボタン */
.pp-form-link {
  display: inline-block;
  background-color: #0062a9;
  color: #fff;
  padding: 9px 26px;
  text-decoration: none;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 15px;
  margin: 4px 0 10px;
  transition: background-color 0.2s linear;
}
.pp-form-link:link,
.pp-form-link:visited {
  color: #fff;
  text-decoration: none;
}
.pp-form-link:hover,
.pp-form-link:active {
  background-color: #199c69;
  color: #fff;
  text-decoration: none;
}

/* お問い合わせ窓口ボックス */
.pp-contact {
  background-color: #f0f5fa;
  border: 1px solid #c4d8ef;
  padding: 16px 20px;
  margin-top: 14px;
  line-height: 2;
  font-size: 15px;
}
.pp-contact p {
  margin-bottom: 2px !important;
}
.pp-contact p:last-child {
  margin-bottom: 0 !important;
}
.pp-contact a:link,
.pp-contact a:visited {
  color: #0026a9;
  text-decoration: underline;
}
.pp-contact a:hover,
.pp-contact a:active {
  color: #199c69;
}

/* 注釈テキスト */
.pp-note {
  font-size: 13px !important;
  color: #555;
  padding-left: 6px;
  margin-top: 2px !important;
  margin-bottom: 14px !important;
}

/* ステータスタグ（常に有効 / 初期設定では無効） */
.pp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: normal;
  padding: 2px 8px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
  line-height: 1.4;
}
.pp-tag-always {
  background-color: #0062a9;
  color: #fff;
}
.pp-tag-consent {
  background-color: #777;
  color: #fff;
}

/* クッキーテーブル */
.pp-table-wrap {
  overflow-x: auto;
  margin: 14px 0 22px;
  -webkit-overflow-scrolling: touch;
}
.pp-cookie-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.6;
}
.pp-cookie-table th,
.pp-cookie-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  vertical-align: top;
  text-align: left;
}
.pp-table-cat {
  background-color: #e8f0f9;
  color: #0062a9;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 12px !important;
}
.pp-table-head th {
  background-color: #f2f6fa;
  color: #333;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.pp-cookie-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.pp-cookie-table td:nth-child(3) {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  .pp-heading {
    font-size: 18px;
    padding: 12px 22px;
  }
  .pp-sub-heading {
    font-size: 15px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  .pp-heading {
    font-size: 19px;
  }
  .pp-sub-heading {
    font-size: 16px;
  }
  .pp-body {
    padding: 0 5px;
  }
}

/*****************************************************
	768px以上【tablet】（既存クラス）
******************************************************/
@media print, screen and (min-width: 768px) {
  .privacySectionTitle {
    font-size: 19px;
    padding: 13px 22px;
  }
  .privacyNum {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .privacySubTitle {
    font-size: 16px;
  }
  .privacyContact th {
    width: 170px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  .privacySectionTitle {
    font-size: 20px;
  }
  .privacySubTitle {
    font-size: 17px;
  }
  .privacyContact th {
    width: 200px;
  }
  .privacySectionBody {
    padding: 0 10px;
  }
}
