@charset "UTF-8";

/* ----------------------------------------------------------------------
 初診の方へページ (page-tcd-first-visit.php) 専用スタイル
---------------------------------------------------------------------- */

.post_content .design_headline1{
	text-align: left;
}

/* ----- セクション間の余白 ----- */
.fv_section {
  margin-bottom: 60px !important;
}
.fv_section:last-of-type {
  margin-bottom: 0 !important;
}

/* ----- チェックリスト ----- */
.fv_checklist {
  list-style: none !important;
  padding: 0;
  margin: 20px 0 0;
}
.fv_checklist li::marker {
  content: none;
}
.fv_checklist li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 10px;
  line-height: 1.8;
}
.fv_checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main_color);
  font-weight: 700;
}

/* ----- 注意事項ボックス ----- */
.fv_notes {
  margin-top: 24px;
  padding: 20px 24px;
  background: #f7f7f7;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.9;
}
.fv_notes p {
  margin: 0 0 6px;
}
.fv_notes p:last-child {
  margin-bottom: 0;
}
.fv_notes a {
  color: var(--main_color);
  text-decoration: underline;
}

/* ----- 受診の流れ: フローリスト ----- */
.fv_flow_list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.fv_flow_list li::marker{
	content: none;
}

.fv_flow_item {
  position: relative;
  padding: 0 0 40px 80px;
}
/* 縦の接続線（最後の項目以外） */
.fv_flow_item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: #ddd;
}

/* 番号サークル */
.fv_flow_number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main_color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* フロー本文エリア */
.fv_flow_content {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.fv_flow_item:last-child {
  padding-bottom: 0;
}

/* ステップタイトル */
.fv_flow_title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 10px 0 0;
  color: #333;
}
.fv_flow_content p {
  margin: 0 0 10px;
  line-height: 1.8;
}
.fv_flow_content p:last-child {
  margin-bottom: 0;
}

/* ----- WEB予約・問診リンクボタン ----- */
.fv_links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}
.fv_link_btn {
  display: inline-block;
  padding: 10px 28px;
  background: #3f5ad4;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.fv_link_btn:hover {
  opacity: 0.8;
}
.fv_link_btn::before {
  content: '\e93c';
  font-family: 'normal_icon';
  font-weight: normal;
  font-style: normal;
  margin-right: 6px;
  font-size: 1.1em;
  vertical-align: -0.1em;
  -webkit-font-smoothing: antialiased;
}
.fv_link_btn--secondary {
  background: #1FC4A6;
  color: #fff !important;
  border: none;
}
.fv_link_btn--secondary:hover {
  opacity: 0.8;
}
.fv_link_btn--secondary::before {
  content: '\e91d';
  font-family: 'normal_icon';
  font-weight: normal;
  font-style: normal;
  margin-right: 6px;
  font-size: 1.1em;
  vertical-align: -0.1em;
  -webkit-font-smoothing: antialiased;
}

/* ----- 発熱のある方 注意ボックス ----- */
.fv_fever_note {
  margin-top: 16px;
  padding: 16px 20px;
  border-left: 4px solid var(--main_color);
  background: #fff8f8;
  border-radius: 0 6px 6px 0;
}
.fv_fever_title {
  font-weight: 700;
  color: var(--main_color);
  margin: 0 0 8px !important;
}

/* ----- レスポンシブ ----- */
@media screen and (max-width: 750px) {
  .fv_section {
    margin-bottom: 40px;
  }
  .fv_flow_item {
    padding-left: 60px;
    padding-bottom: 30px;
  }
  .fv_flow_item:not(:last-child)::before {
    left: 19px;
    top: 40px;
  }
  .fv_flow_number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .fv_flow_title {
    font-size: 16px;
    padding-top: 6px;
  }
  .fv_links {
    flex-direction: column;
    gap: 8px;
  }
  .fv_link_btn {
    text-align: center;
  }
  .fv_notes {
    padding: 16px;
  }
}
