@charset "UTF-8";
/* 建築業特化フォーム CSS */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "メイリオ", sans-serif;
  line-height: 1.6;
  color: #141414;
  min-height: 100vh;
  font-size: 1.6rem;
  background-color: #f6f6f6;
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.phase_check {
  background: #dedede;
  /* color: white; */
  padding: 40px;
  text-align: center;
}

.phase_check h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .phase_check h2 {
    font-size: 1.8rem;
  }
}
.phase_check ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* 進捗線 */
.phase_check ul::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 30%;
  right: 30%;
  height: 4px;
  background: rgb(245, 245, 245);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
}

@keyframes progressFill {
  to {
    width: 0%;
  }
}
.phase_check ul li {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 0;
  margin: 0 20px;
}

/* ステップ番号 */
.phase_check ul li::before {
  content: attr(data-step);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(99, 99, 99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
  /* border: 3px solid rgba(255, 255, 255, 0.3); */
  transition: all 0.3s ease;
}

/* ステップテキスト */
.phase_check ul li span {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* アクティブ状態 */
.phase_check ul li.active::before {
  background: linear-gradient(135deg, #479cc1, #07499e);
  color: white;
  border-color: #ffffff;
  transform: scale(1.1);
}

.phase_check ul li.active span {
  color: #07499e;
  font-weight: 700;
  opacity: 1;
  transform: translateY(-2px);
}

/* 完了状態 */
.phase_check ul li.completed::before {
  background: #07499e;
  border-color: #07499e;
  content: "✓";
  font-size: 2rem;
}

.phase_check ul li.completed span {
  color: #07499e;
  opacity: 1;
}

.in_form_tel {
  margin-top: 20px;
  padding: 15px;
  background: #e8f4fb;
  border-radius: 10px;
  margin-bottom: 20px;
}

.in_form_tel_n {
  font-weight: 600;
  font-size: 3.5rem;
}

.in_form_tel_n a {
  color: #07499e;
  text-decoration: none;
}

/* フォーム全体のコンテナ */
form {
  padding: 40px;
}

/* フォームボックス */
.form_box {
  margin-bottom: 50px;
}

.inquiry_conf .form_box {
  margin-bottom: 20px;
}

/* フォームラベル */
.form_box label,
.form-label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #141414;
  font-size: 1.8rem;
}

.form_box label small,
.form-label small {
  font-weight: normal;
}

/* 必須・任意マーカー */
.required {
  color: #d54b00;
  margin-left: 5px;
  font-size: 1.4rem;
  padding: 2px 6px;
  background: #ffebee;
  border-radius: 4px;
}

.not-required {
  color: #07499e;
  font-weight: normal;
  font-size: 1.4rem;
  margin-left: 5px;
  padding: 2px 6px;
  background: #e8f5e8;
  border-radius: 4px;
}

/* ヘルプテキスト */
.help-text {
  font-size: 1.4rem;
  color: #7f8c8d;
  margin-bottom: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-left: 4px solid #07499e;
  border-radius: 0 4px 4px 0;
}

/* チェックボックスグループ */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.checkbox-item:hover {
  background: #fffdf3;
  border-color: #07499e;
}

.checkbox-item input[type=checkbox] {
  margin-right: 12px;
  transform: scale(1.2);
  accent-color: #07499e;
}

.checkbox-item label {
  flex: 1;
  cursor: pointer;
  font-weight: 500;
}

.checkbox-item small {
  display: block;
  color: #666;
  font-size: 1.4rem;
  margin-top: 4px;
}

/* ラジオボタングループ */
.radio-group,
.form_box.reply ul,
.form_box ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
  list-style: none;
}

.radio-item,
.form_box.reply li,
.form_box li {
  display: flex;
  align-items: center;
}

.radio-item input[type=radio],
.form_box.reply li input[type=radio],
.form_box li input[type=radio] {
  margin-right: 10px;
  transform: scale(1.1);
  accent-color: #07499e;
}

.radio-item label,
.form_box.reply li label,
.form_box li label {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}

.radio-item label:hover,
.form_box.reply li label:hover,
.form_box li label:hover {
  background: #fffdf3;
  border-color: #07499e;
}

/* 入力フィールド */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select,
.form-text {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  background: white;
  line-height: 1;
  font-family: inherit;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus,
.form-text:focus {
  outline: none;
  border-color: #d54b00;
  box-shadow: 0 0 0 3px rgba(167, 114, 8, 0.1);
}

textarea,
.form-text[rows] {
  min-height: 120px;
  resize: vertical;
}

/* 例示テキスト */
.example {
  font-size: 1.4rem;
  color: #7f8c8d;
  margin-top: 5px;
  padding: 5px 10px;
  background: #f8f9fa;
  border-radius: 4px;
}

/* 例示ボックス */
.example-box {
  background: #fffdf3;
  border: 1px solid #07499e;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.example-title {
  font-weight: 600;
  color: #07499e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.example-title::before {
  content: "💡";
  margin-right: 8px;
}

.example-content {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #424242;
}

/* エラーメッセージ */
.erre_name {
  color: #d54b00;
  font-size: 1.4rem;
  margin-top: 5px;
  display: block;
}

/* 注意事項 */
.notice {
  font-size: 1.4rem;
  color: #7f8c8d;
  margin-top: 10px;
  padding: 10px;
  background: #fff3cd;
  border-left: 4px solid #fff4ae;
  border-radius: 0 4px 4px 0;
}

/* 送信ボタン */
.submit_btn {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.soushin_btn,
.submit-btn {
  background: #07499e;
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(7, 73, 158, 0.3);
}

@media (max-width: 768px) {
  .soushin_btn,
  .submit-btn {
    padding: 18px;
    width: 100%;
  }
}
.soushin_btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(7, 73, 158, 0.3);
}

.soushin_btn:disabled,
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* 信頼指標 */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  font-size: 1.4rem;
  color: #666;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* フォーム選択エリア */
.form_select {
  margin-top: 10px;
}

/* プログレスバー（PHPフォーム用） */
.progress-bar {
  background: #f0f0f0;
  height: 6px;
  border-radius: 3px;
  margin: 20px 40px 30px 40px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #479cc1, #07499e);
  height: 100%;
  width: 20%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.sm_only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sm_only {
    display: unset !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
.max_img {
  width: 1000px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .max_img {
    width: 100%;
  }
}
/* フッター */
footer {
  background-color: #07499e;
  padding: 50px 30px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 30px 15px;
    font-size: 1.4rem;
  }
}
/* 確認画面用スタイル */
.form_caution {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 50px;
  text-align: center;
}

.form_caution p {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.form_caution span {
  font-size: 1.6rem;
  line-height: 1.6;
  opacity: 0.95;
}

.form_caution span span {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* 確認画面のフォームボックス */
.form_box p,
.form_box .kakunin {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #141414;
  min-height: 50px;
  margin-top: 8px;
  word-wrap: break-word;
}

.form_box .kakunin {
  display: block;
}

.form_box {
  /* スクロールボックス（プライバシーポリシー） */
}

.form_box .scrollbox {
  max-height: 200px;
  overflow-y: auto;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  background: #f8f9fa;
  margin-top: 10px;
}

.form_box .scrollbox * {
  font-size: 1.4rem;
}

.form_box .scrollbox::-webkit-scrollbar {
  width: 8px;
}

.form_box .scrollbox::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.form_box .scrollbox::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.form_box .scrollbox::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ボタンエリア */
.btn_area {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* 戻るボタン */
.modoru_btn {
  padding: 15px 40px;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
}

/* 確認画面での送信ボタン調整 */
.btn_area .soushin_btn {
  width: 80%;
  background: #07499e;
  font-size: 1.7rem;
  padding: 18px 40px;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(7, 73, 158, 0.3);
}

@media (max-width: 768px) {
  .btn_area .soushin_btn {
    width: 100%;
    margin-bottom: 0;
  }
}
.btn_area .soushin_btn:hover {
  transform: translateY(-2px);
}

@keyframes progressFill {
  to {
    width: 50%;
  }
}
/* 完了画面専用のphase_checkスタイル */
.phase_check.inqpage li[data-step="3"].active::before {
  background: linear-gradient(135deg, #479cc1, #07499e);
  animation: completePulse 2s ease-in-out infinite;
}

@keyframes completePulse {
  0%, 100% {
    transform: scale(1.1);
    box-shadow: 0 0 0 0 rgba(7, 73, 158, 0.7);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(7, 73, 158, 0);
  }
}
/* 成功アニメーション */
.contents {
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contents {
    margin: 20px 10px;
    border-radius: 15px;
  }
  .phase_check,
  form {
    padding: 20px;
  }
  .checkbox-group,
  .radio-group,
  .form_box.reply ul,
  .form_box ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-indicators {
    flex-direction: column;
    gap: 10px;
  }
  .phase_check ul li {
    min-width: unset;
  }
  .form_caution {
    padding: 25px 12px;
  }
  .form_caution p {
    font-size: 1.8rem;
  }
  .form_caution span {
    font-size: 1.4rem;
  }
}
/* 電話案内セクション */
.urgent_call_section {
  background: linear-gradient(135deg, #fff4f4 0%, #ffe8dc 100%);
  border: 3px solid #d54b00;
  border-radius: 12px;
  padding: 25px 20px;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 768px) {
  .urgent_call_section {
    padding: 25px 12px;
    font-size: 17px;
    line-height: 1.9;
  }
}
.urgent_call_header {
  text-align: center;
  margin-bottom: 20px;
}

.urgent_call_header svg {
  width: 33px;
  animation: ring 2s ease-in-out infinite;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .urgent_call_header h3 {
    text-align: left;
  }
}
@keyframes ring {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-15deg);
  }
  20%, 40% {
    transform: rotate(15deg);
  }
}
.urgent_call_header h3 {
  font-size: 30px;
  font-weight: bold;
  color: #d54b00;
  /* margin: 10px 0 0 0; */
  line-height: 1.5;
}

/* 電話ボックス */
.call_box {
  background: #fff;
  /* border-radius: 10px; */
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.call_box .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .call_box {
    padding: 20px 10px;
  }
  .call_box .flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.call_box img {
  width: 250px;
}

.call_label {
  font-size: 14px;
  font-weight: bold;
  color: #07499e;
  margin: 0 0 10px 0;
  display: inline-block;
  background: #e8f8f5;
  padding: 5px 15px;
  border-radius: 20px;
}

.call_number {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #d54b00;
  text-decoration: none;
  margin: 15px 0;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.call_number:hover {
  color: #d54b00;
  transform: scale(1.05);
}

.call_number i {
  margin-right: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.call_hours {
  font-size: 14px;
  color: #555;
  margin: 10px 0 5px 0;
}

.call_hours i {
  color: #07499e;
  margin-right: 5px;
}

.call_tap {
  font-size: 17px;
  /* color: #7f8c8d; */
  margin: 17px 0 0 0;
  font-weight: bold;
  background: #f2f2f2;
  padding: 5px 0;
}

/* 電話説明 */
.call_description {
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.9;
}

.call_tap_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call_tap_inner p {
  padding: 0;
}

.call_tap_inner svg {
  width: 30px;
  fill: #888888;
}

.call_description small {
  font-weight: normal;
}

.call_note {
  background: #fff3cd;
  border-left: 4px solid #fff4ae;
  padding: 10px;
  margin: 12px 0 0 0 !important;
  border-radius: 4px;
  font-size: 13px !important;
}

.call_note i {
  color: #d54b00;
  margin-right: 5px;
}

/* メリット */
.call_merit {
  background: #fffff4;
  border-left: 4px solid #c5b502;
  padding: 15px;
  text-align: left;
}

.call_merit strong {
  color: #d54b00;
  font-weight: bold;
}

/* 今後の流れセクション */
.flow_section {
  background: #f8f9fa;
  padding: 40px;
}

.flow_title {
  font-size: 20px;
  font-weight: bold;
  color: #141414;
  text-align: center;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #07499e;
}

.flow_title i {
  color: #07499e;
  margin-right: 8px;
}

/* フローアイテム */
.flow_item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}

.flow_item:last-of-type {
  margin-bottom: 15px;
}

.flow_item::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 60px;
  width: 2px;
  height: calc(100% + 25px);
  background: #07499e;
  z-index: 1;
}

.flow_item:last-of-type::after {
  display: none;
}

.flow_number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #479cc1 0%, #07499e 100%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3);
  position: relative;
  z-index: 1;
}

.flow_content {
  flex: 1;
}

.flow_content h4 {
  font-size: 16px;
  font-weight: bold;
  color: #141414;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecf0f1;
}

.flow_content h4 i {
  color: #07499e;
  margin-right: 8px;
}

.flow_content > p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* フロー詳細 */
.flow_detail {
  background: #e8f4fb;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px;
}

.detail_title {
  font-size: 16px;
  font-weight: bold;
  color: #014c96;
  margin: 0 0 8px 0;
}

.flow_detail ul {
  margin: 0;
}

.flow_detail li {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* フロー注意書き */
.flow_note {
  background: #fff3cd;
  border-left: 4px solid #fff4ae;
  padding: 12px;
  margin: 15px 0 0 0;
  border-radius: 4px;
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
}

.flow_note i {
  color: #d54b00;
  margin-right: 5px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .urgent_call_header h3 {
    font-size: 20px;
  }
  .flow_section {
    padding: 20px;
  }
  .call_number {
    font-size: 28px;
  }
  .flow_item {
    gap: 12px;
    padding: 15px;
  }
  .flow_number {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .flow_item::after {
    left: 31px;
    top: 50px;
  }
}
.fee-info {
  font-size: 14px;
  background: #07499e;
  border-right: 1px solid;
  padding: 10px;
  color: white;
  white-space: nowrap;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .fee-info {
    font-size: 17px;
    line-height: 1.2;
    padding: 16px 20px;
    color: white;
  }
}
.fee-info br {
  display: block;
  content: "";
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .in_form_tel_n {
    gap: 10px;
    font-size: 3.2rem;
  }
  .fee-info {
    text-align: center;
    width: 23%;
    line-height: 1.2;
  }
}
.in_form_tel_n a {
  color: #07499e;
  text-decoration: none;
  line-height: 1.2;
  font-size: 62px;
  white-space: nowrap;
  font-weight: 500;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  .in_form_tel_n a {
    font-size: 36px;
  }
}
.in_form_tel_n {
  font-size: 4.5rem;
  font-weight: bold;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.in_form_tel_t {
  font-size: 1.2rem;
  color: #141414;
  font-weight: normal;
  margin-top: 3px;
}

@media screen and (min-width: 769px) {
  .in_form_tel_t {
    font-size: 1.5rem;
  }
}
.flow_detail02 {
  background: #fffff4;
}
.flow_detail02 .detail_title {
  color: #d54b00;
}
.flow_detail02 .detail_title b {
  font-size: 2.2rem;
}
.flow_detail02 li {
  font-size: 1.3rem;
}

.to_mail {
  font-weight: normal;
  font-size: 1.5rem;
  padding-bottom: 12px;
  text-align: center;
}

/* ==================== LINE追加セクション ==================== */
.line_section {
  margin: 20px 0;
  padding-top: 30px;
  border-top: 3px solid #f0f0f0;
}

.line_container {
  text-align: center;
}

/* --- PC版：QRコード表示 --- */
.line_container.pc_only {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.line_title {
  font-size: 2rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.line_qrcode_wrapper {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.line_qrcode {
  width: 250px;
  height: 250px;
  border: 3px solid #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.line_description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin-top: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
}

/* --- スマホ版：ボタンとアピール文 --- */
.line_container.sm_only {
  padding: 30px 20px;
}

.line_container.sm_only .line_title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1b5e20;
}

.line_appeal {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #141414;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}

.line_btn {
  display: inline-block;
  background: linear-gradient(135deg, #00b900 0%, #00a500 100%);
  color: white !important;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 185, 0, 0.3);
  letter-spacing: 0.5px;
}

.line_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 185, 0, 0.4);
  background: linear-gradient(135deg, #00a500 0%, #008c00 100%);
}

.line_btn:active {
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  .line_section {
    margin-top: 20px;
    padding-top: 0px;
  }
  .line_container.pc_only {
    padding: 25px 15px;
  }
  .line_qrcode {
    width: 200px;
    height: 200px;
  }
  .line_description {
    font-size: 1.4rem;
    padding: 15px 15px;
  }
  .line_container.sm_only {
    padding: 25px 15px;
  }
  .line_container.sm_only .line_title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .line_appeal {
    font-size: 1.4rem;
    margin-bottom: 0px;
    padding: 20px 0;
  }
  .line_appeal span {
    margin-top: 10px;
    display: block;
  }
  .line_btn {
    padding: 14px 35px;
    font-size: 1.5rem;
    width: 100%;
  }
}
.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .send_attention {
    text-align: left;
  }
}
/* 完了画面：最終確認セクション */
.final_confirm_section {
  margin-top: 10px;
}

.final_confirm_header h3 {
  font-size: 24px;
  font-weight: bold;
  color: #d54b00;
  line-height: 1.6;
  text-align: center;
}

.final_confirm_main_row {
  margin: 2px 0 0;
  text-align: left;
}

.final_confirm_left_col {
  min-width: 0;
}

.final_confirm_lead {
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 0;
  color: #141414;
}

@media screen and (min-width: 769px) {
  .final_confirm_main_row {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .final_confirm_left_col {
    flex: 1;
  }
  .final_confirm_illustration {
    flex-shrink: 0;
    width: 160px;
    align-self: center;
  }
  .final_confirm_illustration img {
    width: 100%;
  }
}
.final_confirm_emphasis {
  color: #d54b00;
  font-weight: bold;
}

.final_confirm_tel_box {
  margin: 0;
  padding: 24px 16px;
}

.final_confirm_tel_main {
  text-align: center;
}

.final_confirm_tel_label {
  font-size: 1.5rem;
  font-weight: bold;
  color: #141414;
  margin: 0 0 8px;
}

.final_confirm_tel_number {
  display: block;
  font-size: 52px;
  font-weight: bold;
  color: #d54b00;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.final_confirm_tel_number:hover {
  opacity: 0.8;
}

.final_confirm_body {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  margin-top: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.final_confirm_request {
  padding: 0 0 0px;
  margin-bottom: 16px;
  text-align: left;
  line-height: 1.9;
}
.final_confirm_request h4 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #d54b00;
  margin: 0 0 12px;
  text-align: center;
}
.final_confirm_request p {
  font-size: 1.6rem;
  margin: 0;
  color: #141414;
  font-weight: 500;
  text-align: center;
}
.final_confirm_request p span {
  color: #141414;
  font-weight: bold;
  font-size: inherit;
  background: linear-gradient(transparent 55%, #fff3b0 55%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 2px;
}
.final_confirm_request p > strong {
  color: #d54b00;
  font-weight: bold;
  font-size: inherit;
}
.final_confirm_request .final_confirm_register {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-weight: bold;
  font-size: inherit;
  background: #d54b00;
  padding: 0px 4px;
  border-radius: 3px;
}

.final_confirm_scroll_hint {
  text-align: center;
  color: #8fa9bc;
  font-size: 1.3rem;
  letter-spacing: 0.35em;
  margin: 4px 0 12px;
  line-height: 1;
}

.final_confirm_reassurance {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff9e6;
  border-radius: 8px;
  padding: 10px;
  text-align: left;
  line-height: 1.9;
  margin-top: 14px;
  margin-bottom: 0;
}
.final_confirm_reassurance::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 12px solid #fff9e6;
}
.final_confirm_reassurance p {
  flex: 1;
  font-size: 1.5rem;
  margin: 0;
  color: #141414;
}
.final_confirm_reassurance span {
  color: #d54b00;
  font-weight: bold;
}

.illustration_image {
  flex-shrink: 0;
  width: 100px;
}
.illustration_image img {
  display: block;
  width: 100%;
  height: auto;
}

.phonebook_section {
  background: #e8f4fb;
  border: 3px solid #07499e;
  border-radius: 8px;
  padding: 22px 18px;
  margin: 0 0 8px;
  text-align: center;
}

.phonebook_section_header {
  margin-bottom: 16px;
}
.phonebook_section_header h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #07499e;
  margin: 0 0 6px;
}

.phonebook_note {
  font-size: 1.3rem;
  color: #666;
  margin: 0;
}

.phonebook_copy_box {
  background: #fff;
  border-radius: 8px;
  padding: 18px 12px;
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: left;
  white-space: pre-line;
  color: #141414;
  margin: 0 auto;
  max-width: 480px;
  font-weight: bold;
}

.phonebook_separator {
  color: #c5c5c5;
  font-weight: normal;
  margin: 0 32px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .final_confirm_header h3 {
    font-size: 2rem;
  }
  .final_confirm_lead {
    font-size: 1.6rem;
  }
  .final_confirm_tel_label {
    font-size: 1.6rem;
  }
  .final_confirm_tel_number {
    font-size: 28px;
  }
  .final_confirm_request h4 {
    font-size: 2rem;
  }
  .final_confirm_request p {
    font-size: 1.7rem;
  }
  .final_confirm_reassurance p {
    font-size: 1.6rem;
  }
  .phonebook_section_header h3 {
    font-size: 1.8rem;
  }
  .phonebook_note {
    font-size: 1.4rem;
  }
  .phonebook_copy_box {
    font-size: 1.7rem;
  }
  .final_confirm_main_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }
  .final_confirm_left_col {
    display: contents;
  }
  .final_confirm_lead {
    flex: 1;
    order: 1;
    margin: 10px 0 0;
    line-height: 1.8;
  }
  .final_confirm_illustration {
    order: 2;
  }
  .final_confirm_illustration img {
    width: 94%;
  }
  .final_confirm_tel_box {
    order: 3;
    width: 100%;
  }
  .final_confirm_body {
    padding: 16px 12px;
  }
  .final_confirm_request h4,
  .final_confirm_request p,
  .final_confirm_reassurance {
    gap: 12px;
  }
  .illustration_image {
    width: 72px;
  }
  .phonebook_section {
    padding: 16px 12px;
  }
}
@media screen and (min-width: 769px) {
  .urgent_call_section.final_confirm_section {
    padding: 25px 55px 25px 20px;
  }
  .final_confirm_lead {
    margin: 20px;
    padding-left: 32px;
  }
  .final_confirm_main_row {
    gap: 0px;
  }
  .final_confirm_tel_box {
    margin: auto;
    padding: 24px 16px;
    width: 86%;
  }
  .final_confirm_illustration .illustration_image img {
    width: 110%;
  }
  .final_confirm_reassurance .illustration_image img {
    width: 97%;
  }
  .final_confirm_body {
    padding: 24px 52px;
  }
  .final_confirm_reassurance {
    padding: 8px 30px;
  }
  .phonebook_section_header {
    margin-bottom: 8px;
  }
  .final_confirm_request p {
    font-size: 1.7rem;
    margin: 0 14px 8px;
  }
  .phonebook_copy_box {
    text-align: center;
    white-space: normal;
    max-width: none;
  }
}/*# sourceMappingURL=form_.css.map */