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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  font-size: 1.6rem;
  background-color: rgb(242, 242, 242);
}

.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;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 100%;
  }
}
.phase_check {
  background: #dfdfdf;
  /* 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, #5b9bd5, #2a6cb6);
  color: white;
  border-color: #ffffff;
  transform: scale(1.1);
}

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

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

.phase_check ul li.completed span {
  color: #2ecc71;
  opacity: 1;
}

.in_form_tel {
  margin-top: 20px;
  padding: 15px;
  background: rgb(240, 240, 240);
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.in_form_tel_n a {
  color: #c97f18;
  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: #2c3e50;
  font-size: 1.6rem;
}
.form_box label small,
.form-label small {
  font-weight: normal;
}

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

.not-required {
  color: #27ae60;
  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 #3498db;
  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: 8px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.checkbox-item:hover {
  background: #e3f2fd;
  border-color: #2196f3;
}

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

.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: #667eea;
}

.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: #e8f5e8;
  border-color: #4caf50;
}

/* 入力フィールド */
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: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 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: #f0f8ff;
  border: 1px solid #b3d9ff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.example-title {
  font-weight: 600;
  color: #1976d2;
  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: #e74c3c;
  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 #ffc107;
  border-radius: 0 4px 4px 0;
}

/* 送信ボタン */
.submit_btn {
  text-align: center;
  margin-top: 10px;
  padding-top: 13px;
}

.soushin_btn,
.submit-btn {
  background: #667eea;
  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(102, 126, 234, 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 15px 30px rgba(102, 126, 234, 0.4);
}

.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, #667eea, #764ba2);
  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: gray;
  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: left;
}

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

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

.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: #2c3e50;
  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: 0px;
  background: #f8f9fa;
  margin-top: 10px;
}
.form_box .scrollbox * {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .form_box .scrollbox {
    padding: 20px;
  }
  .scrollbox::-webkit-scrollbar {
    width: 8px;
  }
  .scrollbox::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .scrollbox::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  .scrollbox::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
}
/* ボタンエリア */
.btn_area {
  text-align: center;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-repeat: repeat;
}

.top_btn_area {
  text-align: center;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-color: #e3f1f5;
  background-image: url(../images/bg_diagonal.webp);
  background-repeat: repeat;
}

.top_btn_area img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {
  .top_btn_area img {
    width: 70%;
    margin: auto;
  }
}
/* 戻るボタン */
.modoru_btn {
  padding: 15px 40px;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
}

/* 確認画面での送信ボタン調整 */
.btn_area .soushin_btn {
  width: 80%;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
  font-size: 1.7rem;
  padding: 18px 0px;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn_area .soushin_btn {
    width: 100%;
    margin-bottom: 0;
  }
}

.btn_area .soushin_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
}

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

@keyframes completePulse {
  0%, 100% {
    transform: scale(1.1);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 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 40px;
    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;
  }
}
@media (max-width: 768px) {
  .logo {
    text-align: center;
  }
  .logo img {
    width: 60%;
    margin: 15px auto 5px;
  }
}
@media (min-width: 468px) {
  .logo {
    width: 1000px;
    margin: auto;
    margin-top: 20px;
  }
  .logo img {
    width: 400px;
    margin: 20px 40px 0px;
  }
}
small {
  font-size: 1.4rem;
  color: gray;
}

.sent_attention {
  border-radius: 50px;
  font-size: 1.7rem;
  font-weight: bold;
  background-color: #f1f4ff;
  width: 44%;
  margin: 0 auto;
  position: relative;
  padding: 9px 19px;
  line-height: 1.8;
}

.send_attention {
  background-color: #f1f4ff;
  padding: 10px;
}

.send_attention p {
  font-size: 1.8rem;
}

.sent_attention_tel {
  color: #d32f2f;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-bottom: 3px solid #d32f2f;
  padding-bottom: 1px;
}

@media screen and (max-width: 769px) {
  .sent_attention_tel {
    font-size: 2rem;
  }
}
.sent_attention:before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #f1f4ff;
}

@media screen and (max-width: 769px) {
  .sent_attention {
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: #f1f4ff;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 5px 20px;
    line-height: 1.8;
  }
  .send_attention p {
    font-size: 1.5rem;
  }
}
/*btn*/
.anim-box {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/* CSS変数として定義（var(--main-color) 等を有効にする） */
:root {
  --main-color: #1a6d5a;
  --main-bg-color: #d8eee5;
}

/* 事務所案内の見出し */
h2.contents_title00 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a6d5a;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.office_subtable .flex {
  justify-content: space-between;
  align-items: unset;
  margin: 0 auto;
}
.office_subtable .area_box {
  background: #fff;
  width: 32%;
  border: 1px solid #ccc;
  line-height: 1.2;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .office_subtable .area_box {
    width: 100%;
  }
}
.office_subtable .area_box a {
  color: #000;
  font-size: 1.4rem;
}
.office_subtable .area_box .shiten_title {
  /* background-color: #051132; */
  text-align: center;
  /* padding: 5px; */
  font-weight: bold;
  color: #000;
}

.office_box img {
  vertical-align: bottom;
}

.office_table {
  padding: 8px;
  margin-top: 8px;
}
.office_table table {
  border: 1px solid var(--main-color);
  margin-top: 12px;
  display: grid;
}
.office_table table tr,
.office_table table th,
.office_table table td {
  display: grid;
}
.office_table table th {
  border-bottom: 1px solid var(--main-color);
  background: #f5e8d9;
  text-align: left;
  font-weight: bold;
}
.office_table table tr td {
  border-bottom: 1px solid var(--main-color);
}
.office_table table tr td p {
  margin-bottom: 8px;
}
.office_table table th,
.office_table table td {
  padding: 12px;
}
.office_table table tr:last-of-type td {
  border-bottom: none;
}

.office_subtabletitle {
  border-bottom: 1px solid var(--main-color);
  background: var(--main-bg-color);
  text-align: left;
  font-weight: bold;
  padding: 12px;
}

.office_subtable_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.office_subtable {
  padding: 8px;
  margin-top: 0;
}
.office_subtable p.txt {
  color: #cab795;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  margin-top: 40px;
  border-bottom: 2px solid #cab795;
}
.office_subtable table {
  width: 100%; /* 白い線を親幅100%に（PCは親がmax-width:1000pxで制限） */
  box-sizing: border-box;
}
.office_subtable table.txt {
  width: 70%;
}
.office_subtable table.pic {
  width: 20%;
}
.office_subtable table td.s-text {
  font-size: 13px;
}
.office_subtable table tr,
.office_subtable table th,
.office_subtable table td {
  display: flex;
}
.office_subtable table tr {
  width: 100%;
  box-sizing: border-box;
}
.office_subtable table th {
  border-bottom: 1px solid #ffffff;
  text-align: left;
  font-weight: normal;
  width: 165px;
}
.office_subtable table tr td {
  border-bottom: 1px solid #ffffff;
  display: grid;
  flex: 1;
  min-width: 0;
}
.office_subtable table tr td.smalla {
  width: 54px;
  flex: 0 0 54px;
}
.office_subtable table th,
.office_subtable table td {
  padding: 4px;
}
.office_subtable p {
  margin-bottom: 12px;
}
.office_subtable .chizu_box {
  border: 1px solid #ccc;
  padding: 8px;
  margin: 4px 4px 14px 4px;
  width: 32%;
}
.office_subtable .chizu_title {
  font-weight: bold;
  font-size: 1.8rem;
}
.office_subtable .chizu_text {
  font-size: 1.5rem;
}
.office_subtable .jusyo {
  display: none;
}
.office_subtable .chizu_btn {
  text-align: center;
  font-size: 1.5rem;
  color: #3484d1;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 768px) {
  .office_box img {
    vertical-align: bottom;
    width: 100%;
    margin: 10px 0px 45px;
  }
  .office_subtabletitle {
    border-bottom: 1px solid var(--main-color);
    background: var(--main-bg-color);
    text-align: left;
    font-weight: bold;
    padding: 12px;
  }
  .office_subtable {
    padding: 8px;
    margin-top: 14px;
    font-size: 1.4rem;
  }
  .office_subtable table {
    width: 100%; /* スマホでも白い線を100%幅に */
    border: none;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  .office_subtable table tr,
  .office_subtable table th,
  .office_subtable table td {
    display: flex;
  }
  .office_subtable table tr {
    width: 100%;
    box-sizing: border-box;
  }
  .office_subtable table th {
    border-bottom: 1px solid #ffffff;
    text-align: left;
    font-weight: normal;
    width: 79px;
    white-space: nowrap;
  }
  .office_subtable table tr td {
    border-bottom: 1px solid #ffffff;
    display: grid;
    flex: 1;
    min-width: 0;
  }
  .office_subtable table tr td.smalla {
    width: 16px;
    flex: 0 0 16px;
  }
  .office_subtable table th,
  .office_subtable table td {
    padding: 4px;
  }
  .office_subtable p span {
    font-size: 1.3rem;
  }
  .office_subtable p {
    margin-bottom: 12px;
    margin: 0px;
  }
  .office_subtable {
    /*office*/
  }
  .office_subtable .chizu_box {
    border: 1px solid #ccc;
    padding: 8px;
    margin: 4px 4px 14px 4px;
    width: 100%;
  }
  .office_subtable .chizu_title {
    font-weight: bold;
  }
  .office_subtable .chizu_text {
    font-size: 1.3rem;
  }
  .office_subtable .jusyo {
    display: none;
  }
  .office_subtable .chizu_btn {
    text-align: center;
    font-size: 1.3rem;
    color: -webkit-link;
  }
}
.last_area {
  padding: 20px 18px 0;
}

.last_area img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .last_area {
    width: 1000px;
    margin: auto;
  }
  .last_area img {
    width: 50%;
    margin: auto;
  }
}
.fuwafuwa {
  animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* 電話案内セクション */
.urgent_call_section {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 3px solid #e74c3c;
  border-radius: 12px;
  padding: 15px 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: #ba0001;
  /* 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: #27ae60;
  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: #e74c3c;
  text-decoration: none;
  margin: 15px 0;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.call_number:hover {
  color: #c0392b;
  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: #3498db;
  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 #ffc107;
  padding: 10px;
  margin: 12px 0 0 0 !important;
  border-radius: 4px;
  font-size: 13px !important;
}

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

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

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

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

.flow_title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #3498db;
}

.flow_title i {
  color: #3498db;
  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: #2f8ac8;
  z-index: 1;
}

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

.flow_number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 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: #2c3e50;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecf0f1;
}

.flow_content h4 i {
  color: #3498db;
  margin-right: 8px;
}

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

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

.detail_title {
  font-size: 16px;
  font-weight: bold;
  color: #2980b9;
  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 #ffc107;
  padding: 12px;
  margin: 15px 0 0 0;
  border-radius: 4px;
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
}

.flow_note i {
  color: #f39c12;
  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: #ba0000;
  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: #ba0000;
  text-decoration: none;
  line-height: 1.2;
  font-size: 62px;
  white-space: nowrap;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 768px) {
  .in_form_tel_n a {
    font-size: 28px;
  }
}
.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: #333;
  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: #c54803;
}
.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;
  padding-top: 10px;
  background-color: #ffffff;
}

.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .send_attention {
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  body.page-inquiry-complete .logo {
    background: none;
  }
}
body.page-inquiry-complete .phase_check.inqpage {
  padding: 16px 50px 12px;
}
body.page-inquiry-complete .phase_check.inqpage ul {
  margin: 0;
}
body.page-inquiry-complete .phase_check.inqpage ul::before {
  top: 28%;
  left: 32%;
  right: 32%;
  height: 3px;
}
body.page-inquiry-complete .phase_check.inqpage ul li {
  min-width: 80px;
  margin: 0 10px;
  font-size: 1.1rem;
}
body.page-inquiry-complete .phase_check.inqpage ul li::before {
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
body.page-inquiry-complete .phase_check.inqpage ul li.active::before {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  body.page-inquiry-complete .phase_check.inqpage {
    padding: 12px 12px;
  }
  body.page-inquiry-complete .phase_check.inqpage ul li {
    min-width: 64px;
    margin: 0 6px;
    font-size: 1.2rem;
  }
  body.page-inquiry-complete .phase_check.inqpage ul li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
}

/* 完了画面：送信完了メッセージ */
.complete_thanks {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.8;
  margin: 0 0 12px;
  padding: 0;
}

/* 完了画面：最終確認セクション */
.final_confirm_section {
  margin-top: 10px;
}

.final_confirm_header h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ba0001;
  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: #333;
}

@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: #ba0001;
  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: #333;
  margin: 0 0 8px;
}

.final_confirm_tel_number {
  display: block;
  font-size: 52px;
  font-weight: bold;
  color: #ba0001;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  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: #ba0001;
  margin: 0 0 12px;
  text-align: center;
}
.final_confirm_request p {
  font-size: 1.6rem;
  margin: 0;
  color: #333;
  font-weight: 500;
}
.final_confirm_request p span {
  color: #333;
  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: #ba0001;
  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: #ba0001;
  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: #333;
}
.final_confirm_reassurance span {
  color: #ba0001;
  font-weight: bold;
}

/* イラスト */
.illustration_image {
  flex-shrink: 0;
  width: 100px;
}
.illustration_image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 電話帳登録セクション */
.phonebook_section {
  background: #e8f4fd;
  border: 3px solid #2980b9;
  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: #1a5276;
  margin: 0 0 6px;
}

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

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

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

.final_confirm_request p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.page-inquiry-complete .complete_thanks {
    font-size: 1.7rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 9px;
    line-height: 1.7;
  }
  body.page-inquiry-complete .final_confirm_header h3 {
    font-size: 2rem;
  }
  body.page-inquiry-complete .final_confirm_lead {
    font-size: 1.6rem;
  }
  body.page-inquiry-complete .final_confirm_tel_label {
    font-size: 1.6rem;
  }
  body.page-inquiry-complete .final_confirm_tel_number {
    font-size: 28px;
  }
  body.page-inquiry-complete .final_confirm_request h4 {
    font-size: 2rem;
  }
  body.page-inquiry-complete .final_confirm_request p {
    font-size: 1.7rem;
  }
  body.page-inquiry-complete .final_confirm_reassurance p {
    font-size: 1.6rem;
  }
  body.page-inquiry-complete .phonebook_section_header h3 {
    font-size: 1.8rem;
  }
  body.page-inquiry-complete .phonebook_note {
    font-size: 1.4rem;
  }
  body.page-inquiry-complete .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 {
    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 */