/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.l-wrapper {
  padding-block-start: clamp(60px, 8vw, 120px);
}

.p-wrap {
  max-width: 875px;
  margin-inline: auto;
  padding-block-end: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.p-wrap .item {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.p-wrap .item .title {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
}
.p-wrap .item p {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
/* プライバシーポリシー：折り返し時に「・」の後ろで揃える */
.p-wrap .item ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.p-wrap .item ul li {
  text-indent: -1em;
  padding-left: 1em;
}
/* 同意チェックボックス */
.p-consent {
  /* display: flex; */
  justify-content: center;
  margin-block: clamp(20px, 5vw, 40px);
  text-align: center;
}
@media (max-width: 768px) {
  .p-consent p {
    font-size: 14px;
  }
}
.p-consent__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7e6db; /* 参考画像の淡いベージュ */
  border-radius: 6px;
}
.p-consent__label input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.p-consent__text {
  font-size: clamp(0.9375rem, 0.85rem + 0.2vw, 1.0625rem);
}
/* 送信ボタン */
.p-consent-btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.c-button {
  appearance: none;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  background: #8bb7cc;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
  width: 300px;
  font-size: 16px;

}
.c-button:disabled {
  background: #c9d6dc;
  cursor: not-allowed;
}
.text-color {
  color: #FF0000;
}