/* =========================================================
   Privacy Policy
   cancel-policy.css のメディアクエリ構成に完全準拠
   ========================================================= */

/* 共通（ベース） */
.privacy-policy-section{
  background: #fdf5f3;
  padding: 20px 10px;
  margin-top: 80px;
}

.privacy-policy-section .section-header{
  background-color: #e05a60;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  margin: 20px auto;
  width: 90%;
  border-radius: 4px;
}

.privacy-policy-section .section-title{
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.privacy-policy-section .privacy-container{
  width: 90%;
  margin: 0 auto;
}

/* 各行（PC/タブレットでは2カラム） */
.privacy-policy-section .policy-row{
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e05a60;
}

.privacy-policy-section .policy-label{
  font-size: 16px;
  color: #e05a60;
  font-weight: bold;
  line-height: 1.6;
}

.privacy-policy-section .policy-body{
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.privacy-policy-section .policy-content{
  margin: 0;
}

/* 箇条書き */
.privacy-policy-section .policy-list{
  margin: 12px 0 0;
  padding-left: 1em;
  list-style: disc;
}

.privacy-policy-section .policy-list li{
  margin-bottom: 12px;
}

/* お問い合わせ（表風） */
.privacy-policy-section .contact-container{
  margin-top: 16px;
  border: 1px solid #f3bfc1;
  border-radius: 6px;
  background-color: #fff8f8;
  overflow: hidden;
}

.privacy-policy-section .contact-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid #f3bfc1;
}

.privacy-policy-section .contact-row:first-child{
  border-top: none;
}

.privacy-policy-section .contact-label{
  padding: 12px;
  font-weight: bold;
  color: #e05a60;
  background: rgba(248,220,221,0.5);
}

.privacy-policy-section .contact-content{
  padding: 12px;
  word-break: break-word;
}

/* =========================================================
   小型スマホ ~390px
   ========================================================= */
@media (max-width: 390px){

  .privacy-policy-section .policy-row{
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .privacy-policy-section .policy-label{
    font-size: 16px;
    border-bottom: 1px solid #e05a60;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }

  .privacy-policy-section .policy-body{
    font-size: 16px;
  }

  .privacy-policy-section .contact-row{
    grid-template-columns: 1fr;
  }

  .privacy-policy-section .contact-label{
    border-bottom: 1px solid #f3bfc1;
  }
}

/* =========================================================
   スマホ 391px〜767px
   ========================================================= */
@media (min-width: 391px) and (max-width: 767px){

  .privacy-policy-section .policy-row{
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .privacy-policy-section .policy-label{
    font-size: 16px;
    border-bottom: 1px solid #e05a60;
    padding-bottom: 6px;
    margin-bottom: 12px;
  }

  .privacy-policy-section .contact-row{
    grid-template-columns: 1fr;
  }

  .privacy-policy-section .contact-label{
    border-bottom: 1px solid #f3bfc1;
  }
}

/* =========================================================
   タブレット 768px〜1199px
   ========================================================= */
@media (min-width: 768px) and (max-width: 1199px){

  .privacy-policy-section .policy-row{
    grid-template-columns: 260px 1fr;
  }

  .privacy-policy-section .policy-label{
    font-size: 16px;
  }
}

/* =========================================================
   PC 1200px〜
   ========================================================= */
@media (min-width: 1200px){

  .privacy-policy-section .policy-row{
    grid-template-columns: 260px 1fr;
  }

  .privacy-policy-section .policy-label{
    font-size: 16px;
  }
}