@charset "UTF-8";

/* お客様相談室（ご意見・ご要望フォーム）専用スタイル
   ヘッダー/フッター/.container/.el_title は /assets/css/company.css を流用し、
   本ファイルでは入力フォームとカスハラ方針の見た目のみを定義する。 */

.ly_customer {
  padding-bottom: 100px;
  font-family: "Noto Sans JP", sans-serif;
  color: #606060;
}

.bl_customer_lead {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 40px;
}

/* ---- フォーム ---- */
.bl_customer_form {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.bl_customer_form > li {
  margin-bottom: 28px;
}

.bl_customer_form_note {
  font-size: 1.3rem;
  color: #df9273;
  margin-bottom: 20px;
}

.bl_customer_form_label {
  margin-bottom: 8px;
}

.bl_customer_form_label label {
  font-size: 1.5rem;
  font-weight: 700;
}

.el_required {
  color: #e0556a;
  font-size: 1.4rem;
  margin-left: 4px;
  vertical-align: middle;
}

.bl_customer_form input[type="text"],
.bl_customer_form select,
.bl_customer_form textarea {
  width: 100%;
  max-width: 600px;
  padding: 14px 16px;
  font-size: 1.5rem;
  font-family: inherit;
  color: #606060;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.bl_customer_form textarea {
  min-height: 160px;
  line-height: 1.7;
  resize: vertical;
}

.bl_customer_form input[type="text"]:focus,
.bl_customer_form select:focus,
.bl_customer_form textarea:focus {
  outline: none;
  border-color: #df9273;
  background: #fff;
}

.bl_customer_form label input[type="radio"] {
  margin-right: 6px;
}

.bl_customer_form label {
  font-size: 1.5rem;
  line-height: 2;
  cursor: pointer;
}

/* ---- カスタマーハラスメント基本方針 ---- */
.bl_kasuhara {
  background: #f9eae4;
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 50px;
  font-size: 1.4rem;
  line-height: 1.9;
}

.bl_kasuhara_title {
  font-family: "BIZ UDPMincho", serif;
  font-size: 1.8rem;
  color: #df9273;
  margin-bottom: 18px;
}

.bl_kasuhara p {
  margin-bottom: 14px;
}

.bl_kasuhara_list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.bl_kasuhara_list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.bl_kasuhara_list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.9em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #df9273;
}

/* ---- 確認画面（confirmation.php） ---- */
.bl_confirm {
  margin-bottom: 50px;
  border-top: 1px solid #eee;
}

.bl_confirm_row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  padding: 20px 4px;
  border-bottom: 1px solid #eee;
}

.bl_confirm_row dt {
  width: 220px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #df9273;
}

.bl_confirm_row dd {
  flex: 1;
  min-width: 240px;
  font-size: 1.5rem;
  line-height: 1.8;
  word-break: break-all;
}

.bl_confirm_row dd .err {
  color: #e0556a;
  font-weight: 700;
}

/* ---- 送信完了画面（send.php） ---- */
.bl_customer_completion {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
}

/* ---- 送信ボタン（Form::end の .submit_area / .confirmation_btn） ---- */
.submit_area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* 戻るボタン（確認画面） */
.bl_back_btn {
  display: inline-block;
  min-width: 200px;
  padding: 18px 40px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #df9273;
  background: #fff;
  border: 2px solid #df9273;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity .2s;
}

.bl_back_btn:hover {
  opacity: .7;
}

.confirmation_btn {
  display: inline-block;
  min-width: 280px;
  padding: 18px 40px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #ed9b86, #f5c1ac);
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: opacity .2s;
}

.confirmation_btn:hover {
  opacity: .85;
}

@media screen and (max-width: 767px) {
  .ly_customer {
    padding-bottom: 60px;
  }

  .bl_customer_lead {
    font-size: 1.4rem;
  }

  .bl_kasuhara {
    padding: 24px 18px;
  }

  .bl_confirm_row {
    flex-direction: column;
    padding: 16px 4px;
  }

  .bl_confirm_row dt {
    width: 100%;
    margin-bottom: 4px;
  }

  .confirmation_btn,
  .bl_back_btn {
    width: 100%;
    min-width: 0;
  }
}
