*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

/* base */
body {
  margin: 0;
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* color: #0e1625; */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  height: auto;
}

/* ========== Scroll Reveal (fade-up) ========== */
.js .js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ========== FV Loader ========== */
.fv_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
  z-index: 9999;
  transition: opacity .4s ease;
}
.fv_loader.is-hidden { opacity: 0; pointer-events: none; }
.fv_loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0,0,0,.15);
  border-top-color: rgba(0,0,0,.55);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ローディング中のスクロール無効化 */
.is-loading-fv {
  overflow: hidden;
  height: 100vh;
}

/* header */
.site-header {
  height: 70px;
  /* ← 固定高さ（PC） */
  border-bottom: 1px solid #e6eef2;
  background: #fff;
}

.header-inner {
  height: 100%;
  padding: 8px 32px;
  /* ← 指定どおり */
  display: grid;
  /* 3カラム：左/中/右 */
  grid-template-columns: 1fr auto auto;
  align-items: center;
  /* ← 上下中央揃え */
  gap: 15px;
}

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand__logo {
  height: 30px;
}

/* ロゴ高さ（64px内に収まる）*/
.brand__text {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  color: #7B0000;
}

/* 電話ボタン（中央） */
header .btn-phone {
  display: inline-block;
}

header .phonebtn {
  height: 55px;
  width: auto;
}

/* LINEボタン（右） */
header .btn-line {
  display: inline-block;
}

header .linebtn {
  height: 55px;
  width: auto;
}

.fv_section {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.fv_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PC/SPで画像を切り替え */
.fv_image--pc {
  display: block;
}

.fv_image--sp {
  display: none;
}

/* 注意喚起アコーディオン */
.warning_accordion_section {
  background: #fefbf4;
  padding: 24px 16px;
  border-bottom: 1px solid #8B0000;
}

.warning_accordion_inner {
  max-width: 827px;
  margin: 0 auto;
}

.warning_accordion_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #8B0000;
  cursor: pointer;
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #8B0000;
  text-align: center;
  transition: all 0.3s ease;
}

.warning_accordion_btn:hover {
  background: rgba(139, 0, 0, 0.05);
}

.warning_accordion_btn[aria-expanded="true"] {
  background: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.warning_accordion_btn_text {
  flex: 1;
  text-align: center;
}

.warning_accordion_icon {
  margin-left: 16px;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.warning_accordion_btn[aria-expanded="true"] .warning_accordion_icon {
  transform: rotate(180deg);
}

.warning_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
  border-left: 1px solid #8B0000;
  border-right: 1px solid #8B0000;
  border-bottom: 1px solid #8B0000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.warning_accordion_content[aria-hidden="false"] {
  max-height: 500px;
}

/* JavaScriptで動的に設定される場合のフォールバック */
.warning_accordion_content.is-open {
  max-height: 500px;
}

.warning_accordion_text {
  padding: 24px;
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  letter-spacing: 0.02em;
}

.warning_accordion_text p {
  margin: 0 0 16px;
}

.warning_accordion_text p:last-child {
  margin-bottom: 0;
}

.consult_section {
  background: #f8f8f8;
  /* 薄いグレー背景 */
  padding: 64px 16px;
  /* 全体余白を広めに */
  text-align: center;
  border-top: 3px solid #8B0000;
  border-bottom: 3px solid #8B0000;
}

.consult_inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* 警告メッセージ */
.consult_warning {
  margin: 0 0 32px;
}

.consult_warning_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
  color: #2a2a2a;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 24px 40px;
  background: rgba(139, 0, 0, 0.08);
  border-left: 4px solid #8B0000;
  border-right: 4px solid #8B0000;
  text-align: left;
  display: inline-block;
  max-width: 900px;
  text-align: center;
}

.consult_warning_subtext {
  font-size: 0.85em;
}

.consult_warning_emphasis {
  color: #94152b;
  font-size: 28px;
  font-weight: 700;
}

/* メインメッセージ */
.consult_maintext {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 40px;
  color: #2a2a2a;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.consult_emphasis {
  color: #C41E3A;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 8px;
}

.consult_emphasis::before,
.consult_emphasis::after {
  content: '"';
  color: #C41E3A;
  font-size: 32px;
}

/* ボタン（画像） */
.consult_buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  /* ボタン間の余白も広めに */
}

.consult_btn {
  display: inline-block;
}

.btn_img {
  display: block;
  width: 400px;
  /* PCでは大きめのボタン */
  height: auto;
}

/* LINEボタン：下側に濃いドロップシャドウ（#06c655を暗くした色） - .consult_section内のみ */
.consult_section img[src*="line_btn"] {
  border-radius: 8px;
  filter: drop-shadow(0 6px 0 rgba(3, 99, 42, 1));
}

/* 電話ボタン：下側に濃いドロップシャドウ（#f1ad00を暗くした色） - .consult_section内のみ */
.consult_section img[src*="phone_btn"] {
  border-radius: 8px;
  filter: drop-shadow(0 6px 0 rgba(193, 138, 0, 1));
}

 

/* ===== セクション背景 ===== */
.trouble_section {
  position: relative;
  overflow: hidden;
  padding: 64px 16px;
  background: url("../img/n_trouble_1.jpg") center/cover no-repeat;
  border-top: 3px solid #8B0000;
  border-bottom: 3px solid #8B0000;
}

.trouble_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 248, 248, 0.85);
  pointer-events: none;
  z-index: 0;
}

.trouble_section::after {
  display: none;
}





.notice_section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6B0000 0%, #A01E2A 50%, #6B0000 100%);
  text-align: center;
  padding: 40px 16px;
  height: 200px;
  width: 100%;
}


.notice_section::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #ffffff;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.notice_title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.notice_dotted {
  position: relative;
  display: inline-block;
}

.notice_dotted::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}


@media (max-width: 1100px) {
  .notice_title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .notice_dotted::before {
    width: 5px;
    height: 5px;
    top: -7px;
  }

  .notice_section {
    height: 160px;

  }
}

 

.sr_only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* セクション */
.fraud_points_section {
  padding: 64px 16px;
  background: #ffffff;
  position: relative;
}

.fraud_points_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8B0000 20%, #8B0000 80%, transparent);
}
.fraud_points_inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* リスト */
.fraud_list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.fraud_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #fafafa;
  border: 2px solid #e8e8e8;
  border-radius: 0;
}

.fraud_icon {
  color: #C41E3A;
  font-size: 20px;
  flex-shrink: 0;
  align-self: center;
}

.fraud_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  color: #2a2a2a;
  letter-spacing: 0.03em;
}

/* タブレットサイズ以下では1カラム */
@media (max-width: 992px) {
  .fraud_list {
    grid-template-columns: 1fr;
  }
}

/* 結論ブロック */
.fraud_conclusion {
  margin-top: 56px;
  text-align: center;
}

.conclusion_text {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.8;
  color: #2a2a2a;
  letter-spacing: 0.05em;
}

.conclusion_em {
  color: #C41E3A;
  font-weight: 700;
  position: relative;
  padding: 0 4px;
}

.conclusion_em::before,
.conclusion_em::after {
  content: '"';
  color: #C41E3A;
}



 /* ===== 中央寄せコンテンツ ===== */
.trouble_inner {
  position: relative;
  z-index: 1;
  /* オーバーレイより上に出す */
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し：48px */
.trouble_title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 50px;
  text-align: center;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: .05em;
  color: #2a2a2a;
}

/* リストを中央寄せ。背景の人物に被らないよう右に余白を確保 */
.trouble_list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 700px;
  /* 中央の幅 */
}

/* 各カード */
.trouble_item {
  display: block;
  padding: 28px 40px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #8B0000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  transition: box-shadow 0.2s ease;
}

/* 本文：24px */
.trouble_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  color: #2a2a2a;
  letter-spacing: 0.03em;
}

.trouble_text .em {
  color: #C41E3A;
  /* 強調赤 */
  font-weight: 700;
}

/* セクション背景と下の斜め仕切り */
.cases_section {
  padding: 80px 16px;
  background: url("../img/n_trouble_1.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.cases_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 248, 248, 0.85);
  pointer-events: none;
  z-index: 0;
}
/* コンテナ */
.cases_inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 背景画像エリア */
.cases_visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2%;
  opacity: 1;
  pointer-events: none;
}

.case_image_container {
  flex: 0 0 auto;
  width: 550px;
  height: 500px;
  position: relative;
}

.case_image_container--left {
  transform: translateX(-20px) translateY(-80px);
  margin-left: -100px;
  margin-top: -50px;
}

.case_image_container--right {
  transform: translateX(20px) translateY(80px);
  margin-right: -100px;
  margin-top: 160px;
}

.case_visual_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) opacity(0.3);
  border-radius: 16px;
}

/* コンテンツエリア */
.cases_content_wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px 56px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

/* リスト */
.case_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.case_item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 2px solid #e8e8e8;
  border-left: 4px solid #8B0000;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.case_item::before {
  content: "■";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #8B0000;
  opacity: 0.6;
}

.case_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  padding-left: 24px;
}

/* 下段メッセージ */
.cases_message {
  text-align: center;
  margin-top: 100px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 56px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cases_emphasis {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.8;
  color: #2a2a2a;
  letter-spacing: 0.05em;
}

.cases_em {
  color: #C41E3A;
  font-weight: 700;
  position: relative;
  font-size: 1.25em;
  display: inline-block;
}

.cases_em::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  right: -30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C41E3A, transparent);
  opacity: 0.3;
}

/* タブレットサイズ以下 */
@media (max-width: 992px) {
  .cases_visual {
    padding: 0 3%;
  }

  .case_image_container {
    width: 380px;
    height: 570px;
  }

  .case_image_container--left {
    transform: translateX(-15px) translateY(-60px);
  }

  .case_image_container--right {
    transform: translateX(15px) translateY(60px);
  }

  .cases_content_wrap {
    padding: 40px 32px;
  }
}

/* レスポンシブ */
 

 

 

/* =========================
   Appeal/Trust Section
   ========================= */
.appeal_section {
  position: relative;
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 50%, #C41E3A 100%);
  padding: 80px 32px;
  overflow: hidden;
}

.appeal_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.appeal_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* コンテンツエリア */
.appeal_content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

/* appeal_section_2専用：中央揃え */
.appeal_section_2 .appeal_content {
  grid-template-columns: 1fr;
  justify-items: center;
}

.appeal_section_2 .appeal_text {
  text-align: center;
  font-size:20px;
}

.appeal_section_2 .appeal_text_note {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  font-size: 14px;
  margin-top: 24px !important;
}

/* テキストエリア */
.appeal_text_area {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 700px;
}

/* テキストラッパー（2つのappeal_textを囲む） */
.appeal_texts_wrap {
  display: block;
}

.appeal_section_2 .appeal_text_area {
  width: 100%;
  max-width: 800px;
}

.appeal_heading {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 45px;
  font-size: 32px;
  font-weight: 700;
  color: #C41E3A;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  background: #ffffff;
  padding: 16px 36px;
  border-radius: 99px;
  display: inline-block;
  width: 100%;
}

.appeal_panel {
  color: #ffffff;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.appeal_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}

.appeal_text:last-of-type {
  margin-bottom: 0;
}

.appeal_text_highlight {
  font-weight: 600;
  color: #ffffff;
  padding: 20px 24px;
  font-size: 20px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  margin-top: 42px;
  text-align: center;
}
.appeal_text_note {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-top: 32px !important;
  padding: 20px 24px;
  background: #f8f8f8;
  border-left: 3px solid #8B0000;
  border-radius: 6px;
}

/* 画像エリア */
.appeal_visual {
  position: relative;
  z-index: 2;
}

/* PC/SPで画像を切り替え */
.appeal_visual--sp {
  display: none;
}

.appeal_visual--pc {
  display: block;
}

.appeal_person_container {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.appeal_person__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.appeal_credit {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  background: #fffcf0;
  color: #373737;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.08);
}

/* タブレットサイズ以下 */
@media (max-width: 992px) {
  .appeal_content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .appeal_heading {
    text-align: center;
  }

  .appeal_person_container {
    max-width: 350px;
  }
}

 

 

/* ベース */
.case_section {
  position: relative;
  padding: 80px 16px;
  background: url("../img/n_trouble_1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.case_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000 0%, #C41E3A 50%, #8B0000 100%);
  z-index: 2;
}

.case_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 248, 248, 0.65);
  pointer-events: none;
  z-index: 0;
}

.case_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* セクション見出し */
.case_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 56px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
  text-align: center;
}

/* カード本体 */
.case_card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 48px 56px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

/* ヘッダー（バッジ＋タイトル） */
.case_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e8e8e8;
}

/* タイトルラッパー */
.case_title_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

/* ヘッダー内のアイコン（PCでは非表示） */
.case_person_icon--header {
  display: none;
}

/* CASEバッジ */
.case_badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #8B0000 0%, #C41E3A 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.case_title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 0.03em;
}

/* コンテンツエリア */
.case_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 悩みテキストのラッパー */
.case_text_wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.case_person_icon {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.case_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  color: #2a2a2a;
  font-weight: 500;
  letter-spacing: 0.03em;
  flex: 1;
}

/* 重要ポイント */
.point_box {
  position: relative;
  margin-top: 8px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 8px;
  padding: 24px;
}

/* 専門家の回答見出しラッパー */
.point_heading_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* 専門家の回答見出し */
.point_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #8B0000;
  letter-spacing: 0.03em;
  flex: 1;
}

/* PCでは見出しラッパー内のアイコンを表示 */
.point_heading_wrap .point_consultant_icon {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

/* 専門家の返答ラッパー */
.point_content_wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.point_consultant_icon {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.point_content {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #2a2a2a;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex: 1;
}

/* ========== レスポンシブ ========== */
 

 

/* Section */
.reasons_section {
  padding: 80px 16px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
}

.reasons_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000 0%, #C41E3A 50%, #8B0000 100%);
}

.reasons_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reasons_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 56px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
}

/* カード */
.reason_card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 48px 56px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

/* コンテンツラップ */
.reason_content_wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

/* 画像 */
.reason_media {
  flex: 0 0 auto;
}

.reason_media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* コンテンツ */
.reason_content {
  flex: 1 1 auto;
}

/* タイトル */
.reason_title {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  color: #94152b;
  letter-spacing: 0.03em;
}

/* テキスト */
.reason_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* タブレットサイズ以下 */
@media (max-width: 992px) {
  .reason_content_wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reason_media {
    text-align: center;
  }

  .reason_media img {
    max-width: 240px;
  }
}

/* Responsive */
 

 

.conclusion_em span {
  letter-spacing: -20px;
}


.flow_section {
  padding: 80px 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.flow_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000 0%, #C41E3A 50%, #8B0000 100%);
}

.flow_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flow_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 56px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
}

/* カード */
.flow_card {
  position: relative;
  display: grid;
  grid-template-columns: 650px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-top: 32px;
  backdrop-filter: blur(10px);
  align-items: start;
}

/* ヘッダー（PCではflow_contentの上に配置） */
.flow_header {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}

/* 番号 */
.flow_number {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #6B0000 0%, #bb0e30 50%, #8B0000 100%);
  color: #fff;
  padding: 8px 24px 6px 24px;
  border-radius: 0;
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.15);
  border: 1px solid #6B0000;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* アイコン */
.flow_icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.flow_icon_img {
  width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* コンテンツ */
.flow_content {
  flex: 1;
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.flow_step_title {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  clear: both;
}

.flow_step_text {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* タブレットサイズ以下 */
@media (max-width: 992px) {
  .flow_card {
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 32px 40px;
  }

  .flow_number {
    padding: 6px 18px;
    font-size: 16px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6B0000 0%, #DC143C 50%, #8B0000 100%);
  }

  .flow_icon_img {
    width: 200px;
  }
}

/* レスポンシブ */
 

.faq_section {
  padding: 80px 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.faq_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000 0%, #C41E3A 50%, #8B0000 100%);
}

.faq_inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 56px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
}

/* list wrapper */
.faq_list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.faq_item {
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Q row */
.faq_qrow {
  display: block;
  margin: 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, #8B0000 0%, #C41E3A 100%);
  border-bottom: 2px solid #e8e8e8;
}

/* A row */
.faq_arow {
  display: block;
  padding: 32px 40px;
  margin: 0;
}

/* texts */
.faq_qtext {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin: 0;
}

.faq_atext {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* レスポンシブ */
 

.company_section {
  padding: 80px 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.company_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000 0%, #C41E3A 50%, #8B0000 100%);
}

.company_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 見出し */
.company_heading {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin: 0 0 56px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
}

/* カードコンテナ */
.company_card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* 画像エリア */
.company_visual {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.company_visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}

/* 情報エリア */
.company_info {
  padding: 56px 48px;
  display: flex;
  align-items: center;
}

/* 定義リスト */
.company_table {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.company_row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: start;
}

.company_row:last-child {
  border-bottom: 0;
}

.company_label {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  color: #8B0000;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.company_value {
  font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  color: #2a2a2a;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

 

.site-footer {
  background-color: #8B0000;  /* えんじ色 */
  color: #ffffff;
  padding: 12px 0;

  font-size: 12px;
  text-align: center;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2); /* 上に影を付けて段差感 */
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
}

.site-footer small {
  display: inline-block;
  color: #ffffff;
  font-size:12px;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
.brand__logo {
    height: 25px;
}
  .fv_section {
    min-width: 0;
    height: auto;
  }

  .trouble_item {
    column-gap: 15px;
  }
  .notice_section {
    padding: 40px 16px;
    height: 125px;
  }

  .cases_section {
    padding: 24px 12px 40px;
  }

  .cases_visual {
    padding: 0 2%;
    opacity: 1;
    display: none;
  }

  .case_image_container {
    width: 250px;
    height: 375px;
  }

  .case_image_container--left {
    transform: translateX(-10px) translateY(-40px);
  }

  .case_image_container--right {
    transform: translateX(10px) translateY(40px);
  }

  .cases_content_wrap {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .case_list {
    gap: 12px;
  }

  .case_item {
    padding: 20px 16px 20px 40px;
    border-left: 3px solid #8B0000;
    border-radius: 6px;
  }

  .case_item::before {
    left: 12px;
    font-size: 8px;
  }

  .case_text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    padding-left: 0px;
  }

  .cases_message {
    margin-top: 40px;
    padding: 32px 20px;
    border-radius: 12px;
  }

  .cases_emphasis {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .cases_em::after {
    left: -15px;
    right: -15px;
  }
  /* warning_accordion_section */
  .warning_accordion_section {
    padding: 16px 12px;
  }

  .warning_accordion_btn {
    padding: 14px 16px;
    font-size: 12px;
  }

  .warning_accordion_text {
    padding: 20px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  /* consult_section */
  .consult_section {
    padding: 40px 12px;
  }

  .consult_warning_text {
    font-size: 15px;
    padding: 20px 10px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .consult_warning_emphasis {
    font-size: 20px;
  }

  .consult_warning_subtext {
    display: block;
    font-size: 0.95em;
    margin-top: 12px!important;
  }

  .consult_maintext {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .consult_emphasis {
    font-size: 28px;
    padding: 0 2px;
    margin: 0 -5px;
  }

  .consult_emphasis::before,
  .consult_emphasis::after {
    font-size: 25px;
  }

  .consult_warning_text{
    width: 100%;
  }

  .btn_img {
    max-width: 100%;
  }

  /* notice_section */
  .notice_section {
    background-size: cover;
    padding: 10px 12px;
  }

  .notice_section::after {
    bottom: 15px;
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 15px;
  }

  .notice_title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-top: 7px;
  }

  .notice_dotted::before {
    width: 4px;
    height: 4px;
    top: -6px;
  }

  /* fraud points */
  .fraud_points_section {
    padding: 40px 12px;
  }

  .fraud_list {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .fraud_item {
    padding: 20px 16px;
    gap: 12px;
    border: 2px solid #e8e8e8;
  }

  .fraud_icon {
    font-size: 18px;
  }

  .fraud_text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .fraud_conclusion {
    margin-top: 40px;
  }

  .conclusion_text {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  /* trouble section (merged from 1200/992/768) */
  .trouble_list {
    max-width: 700px;
  }

  .trouble_section {
    padding: 40px 12px;
  }

  .trouble_title {
    font-size: 24px;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .trouble_item {
    padding: 20px 16px;
    border-left: 3px solid #8B0000;
  }

  .trouble_text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* FV画像をSP用に切り替え */
  .fv_section {
    min-width: 0;
    height: auto;
  }

  .fv_image--pc {
    display: none;
  }

  .fv_image--sp {
    display: block;
  }

  /* header sp */
  .site-header {
    height: auto;
    display: block !important;
  }

  .header-inner {
    padding: 8px 16px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand";
    row-gap: 0;
  }

  .brand {
    grid-area: brand;
  }

  .brand__text {
    font-size: 12px;
  }

  /* cases section (cards list) */

  .cases_section::after {
    height: 100px;
  }

  .case_caption {
    margin-top: 0px;
    font-size: 13px;
    color: #A05252;
    text-align: center;
}

  /* appeal section */
  .appeal_section {
    padding: 48px 12px;
  }

  .appeal_content {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  /* PC用のappeal_visual--spを非表示 */
  .appeal_visual--sp {
    display: none;
  }

  /* スマホ用のappeal_visual--pcを非表示 */
  .appeal_visual--pc {
    display: block;
  }

  /* appeal_section_1専用：スマホでappeal_texts_wrapとappeal_visualを横並び */
  .appeal_section_1 .appeal_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .appeal_section_1 .appeal_text_area {
    width: 100%;
    order: 1;
  }

  .appeal_section_1 .appeal_heading {
    margin-bottom: 16px;
  }

  /* スマホでappeal_texts_wrapとappeal_visualを横並び */
  .appeal_section_1 .appeal_panel {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2%;
    align-items: start;
  }

  .appeal_section_1 .appeal_texts_wrap {
    grid-column: 1;
    display: flex;
    flex-direction: column;
  }

  .appeal_section_1 .appeal_texts_wrap .appeal_text {
    margin: 0;
  }

  .appeal_section_1 .appeal_text_highlight {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .appeal_section_1 .appeal_visual--sp {
    grid-column: 2;
    display: block;
    width: auto;
    margin: 0;
  }

  .appeal_section_1 .appeal_visual--pc {
    display: none;
  }

  .appeal_heading {
    font-size: 18px;
    margin-bottom: 0px;
    text-align: center;
    padding: 12px 0px;
    border-radius: 8px;
  }

  .appeal_panel {
    padding: 32px 5px;
    border-radius: 12px;
  }

  .appeal_text {
    font-size: 15px;
  }

  .appeal_section_2 .appeal_text {
    font-size: 15px!important;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-size:18px;
  }

  .appeal_section_2 .appeal_text_note{
    font-size:15px;
  }

  .appeal_text_highlight {
    padding: 16px 20px;
    margin-top: 24px !important;
  }

  .appeal_text_note {
    font-size: 12px;
    padding: 16px 20px;
    margin-top: 24px !important;
  }

  .appeal_person_container {
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    margin: 0 auto;
  }

  .appeal_credit {
    font-size: 12px;
    padding: 10px 12px;
  }

.appeal_credit--overlay {
  font-size: 12px;
}

.appeal_text_area{
width: 100%;
}
  
  .case_section {
    position: relative;
    padding: 56px 16px 72px;
  }

  .case_section {
    padding: 48px 12px;
  }

  .case_heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .case_card {
    padding: 32px 20px;
    border-radius: 12px;
    margin-top: 32px;
  }

  .case_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .case_badge {
    padding: 6px 20px;
    font-size: 14px;
  }

  .case_title_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  /* スマホでヘッダー内のアイコンを表示 */
  .case_person_icon--header {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  /* スマホでコンテンツ内のアイコンを非表示 */
  .case_person_icon--content {
    display: none;
  }

  .case_title {
    font-size: 20px;
    margin-left: 0;
    flex: 1;
  }

  .case_text_wrap {
    flex-direction: column;
    gap: 16px;
  }

  .case_person_icon {
    width: 50px;
    align-self: flex-start;
  }

  .case_text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .point_box {
    padding: 20px 24px;
    margin-top: 16px;
    border-left: 3px solid #C41E3A;
  }

  .point_heading_wrap {
    gap: 12px;
    margin-bottom: 12px;
  }

  /* スマホでは見出しラッパー内のアイコンを表示 */
  .point_heading_wrap .point_consultant_icon {
    display: block;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
  }

  .point_heading {
    font-size: 18px;
    margin-bottom: 0;
  }

  .point_content_wrap {
    flex-direction: column;
    gap: 0;
  }

  .point_content {
    margin: 0;
  }

  .point_content {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* reasons */
  .reasons_section {
    padding: 48px 12px;
  }

  .reasons_heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .reason_card {
    padding: 40px 20px 32px;
    border-radius: 12px;
    margin-top: 48px;
  }

  .reason_content_wrap {
    gap: 24px;
  }

  .reason_content_wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reason_media {
    text-align: center;
  }

  .reason_media img {
    margin: 0 auto;
  }

  .reason_title {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: #94152b;
  }

  .reason_text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .case_badge_num {
    font-size: 8px;
  }

  .case_badge_id {
    font-size: 17px;
    margin-top: -3px;
  }

  .case_badge::after {
    right: -11px;
    width: 12px;
    height: 18px;
  }

  /* flow */
  .flow_heading {
    font-size: 22px;
  }

  .flow_section {
    padding: 48px 12px;
  }

  .flow_heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .flow_card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    border-radius: 12px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
  }

  /* スマホではflow_headerを表示（横並び） */
  .flow_header {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 0px;
    justify-content: center;
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .flow_header .flow_number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .flow_header .flow_step_title {
    margin-bottom: 0;
    display: inline-block;
    flex-shrink: 0;
    clear: none;
  }

  .flow_number {
    padding: 6px 16px;
    font-size: 13px;
    margin-bottom: 0;
    display: inline-block;
    background: linear-gradient(135deg, #6B0000 0%, #DC143C 50%, #8B0000 100%);
  }

  .flow_icon {
    justify-content: center;
    order: 2;
  }

  .flow_icon_img {
    width: 100%;
  }

  .flow_content {
    text-align: center;
    order: 3;
  }

  .flow_step_title {
    font-size: 20px;
    margin-bottom: 0;
    font-family: "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.03em;
  }

  .flow_step_text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* faq */

  .faq_section {
    padding: 48px 12px;
  }

  .faq_heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .faq_list {
    gap: 20px;
  }

  .faq_qrow {
    padding: 24px 20px;
  }

  .faq_arow {
    padding: 24px 20px;
  }

  .faq_qtext {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .faq_atext {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* company */
  .company_section {
    padding: 48px 12px;
  }

  .company_heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .company_card {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 12px;
  }

  .company_visual {
    order: 1;
  }

  .company_visual img {
    min-height: 280px;
    border-radius: 12px 12px 0 0;
  }

  .company_info {
    order: 2;
    padding: 40px 24px;
    display: block;
  }

  .company_row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
    margin: 0;
  }

  .company_label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .company_value {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* case_inner（SP専用）：シルエットの右にテキスト回り込み */
  .case_body {
    display: block; /* floatレイアウトに切替 */
  }
  .case_figure {
    float: left;
    width: 30%;
    margin: 2px 12px 8px 0;
    text-align: left;
  }
  .case_figure img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  /* 親の高さ確保 */
  .case_body::after {
    content: "";
    display: block;
    clear: both;
  }
}

@media (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

/* SP固定ボトムCTA */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 8px;
  padding: 5px 0px; /* 左右にも少し余白 */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-top: 1px solid #e6eef2;
  z-index: 1000;
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
}

.fixed-cta__headline {
  width: 100%;
  padding: 0 8px;
  margin-bottom: 5px;
}

.fixed-cta__headline-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.fixed-cta__buttons {
  display: flex;
  width: 100%;
  gap: 8px;
  padding: 0 5px;
  align-items: center;
  justify-content: center;
}

.fixed-cta__btn {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3%;
}

.fixed-cta__img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-cta.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

/* 450px～550px の間 */
@media (min-width: 450px) and (max-width: 550px) {
  .appeal_person--right {
    right: -24%;
  }
  .appeal_section_1  .appeal_text {
    width: 63%;
  }
  .appeal_text_2 {
    width: 50%;
  }

  .appeal_text_3{
    width: 45%;
  }
}

/* 551px～649px の間 */
@media (min-width: 551px) and (max-width: 649px) {
  .appeal_person--right {
    right: -17%;
  }
}

/* 650px～767px の間 */
@media (min-width: 650px) and (max-width: 767px) {
  .appeal_person--right {
    right: -10%;
  }

}

/* 768px 以上 */
@media (min-width: 768px) {
  header {
    min-width: 1000px;
  }

  .notice_section,
  .cases_section,
  .appeal_section,
  .reasons_section,
  .faq_section,
  .company_section,
  .flow_section {
    min-width: 1000px;
  }

}

@media (min-width: 768px) and (max-width: 1400px) {
  .appeal_person--left {
    left:-10%;
  }
}

@media (min-width: 1025px) {
  .flow_card {
    display: grid;
    grid-template-columns: 650px 1fr;
    grid-template-rows: min-content 1fr;  
    gap: 20px;
    align-items: start;
  }
  
  .flow_content {
    align-self: start;
  }
}