@charset "UTF-8";
/**
 * フルードな clamp() を作る関数
 *
 * @param $min    最小サイズ(px)   … 例: 14
 * @param $max    最大サイズ(px)   … 例: 20
 * @param $min-vw 最小幅(px)       … 例: 375（スマホ）
 * @param $max-vw 最大幅(px)       … 例: 1200（PC）
 */
/*
20251202 hackrescue リニューアル作業
 */
body {
  font-family: "Noto Sans JP", メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

/* ナビゲーション */
.site-nav {
  /* スマホ用（とりあえず横並びを少し詰めるだけ） */
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__item {
  /* デフォルトはテキストリンク */
}
.site-nav__item--primary {
  /* 「お申し込み」用：ボタン風にする */
}
.site-nav__link {
  font-size: 0.9rem;
  color: #111827;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease;
  /* ▼ 「お申し込み」＝青ボタン */
}
.site-nav__link:hover {
  color: #2563eb;
}
.site-nav__link--primary {
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  border: 1px solid transparent;
  white-space: nowrap;
}
.site-nav__link--primary:hover {
  color: #ffffff;
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}
@media (max-width: 768px) {
  .site-nav__list {
    gap: 12px;
    font-size: 0.85rem;
  }
  .site-nav__link {
    font-size: 0.85rem;
  }
  .site-nav__link--primary {
    padding: 6px 12px;
  }
}

h2 {
  font-weight: 900;
  margin: 0px 0 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* お知らせバー */
.notice {
  background: #f9fafb; /* ごく薄いグレー */
  border-bottom: 1px solid #e5e7eb; /* 下だけ細い線 */
  padding: 6px 0;
  font-size: 0.85rem;
}

.notice__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em;
  color: #374151;
}

.notice__label {
  font-weight: 600;
  margin-right: 0.3em;
}

.notice__date {
  color: #6b7280;
  font-size: 0.82rem;
}

.notice__text {
  margin: 0 0 0 0.3em;
}

/* スマホ時は折り返し前提で少しだけ余白調整 */
@media (max-width: 640px) {
  .notice {
    padding: 8px 0;
  }
  .notice__inner {
    padding: 0 12px;
    gap: 0.2em;
  }
}
.info-first, .info-second {
  color: var(--wp--preset--color--black);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 600;
}

.info-first {
  text-align: center;
  padding: 1em;
}

.info-second {
  display: flex;
  align-items: center;
}
.info-second img {
  width: 100px;
  padding-right: 20px;
}
@media only screen and (min-width: 993px) {
  .info-second {
    max-width: 700px;
    margin: 2em auto;
    padding: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .info-second {
    margin: 2em 2em;
    padding: 0.5em;
  }
}

.top-message {
  padding: 4em;
  background-color: #f4f5e8;
  margin-bottom: 4em;
}
.top-message h2 {
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .top-message {
    padding: 3em 2em;
    background-color: beige;
    background-color: #f4f5e8;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin: 20px auto;
}
.hero-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.45);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, filter 0.15s ease;
}
.hero-cta__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}
.hero-cta__btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
}
.hero-cta__tel {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
}
.hero-cta__tel-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.hero-cta__tel-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta__btn {
    width: 100%;
    text-align: center;
  }
  .hero-cta__tel {
    font-size: 0.8rem;
  }
}

.pr-box {
  position: relative;
}
@media only screen and (min-width: 993px) {
  .pr-box:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .pr-box {
    margin: 2em auto;
    width: 95%;
  }
}

span.top-pr-span {
  position: absolute;
  top: 0;
  left: 70px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 0 1em;
  font-size: 22px;
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 993px) {
  span.top-pr-span {
    left: 70px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 0 1em;
    font-size: 22px;
    width: 65px;
    text-align: center;
  }
}

.white-pr-box {
  background-color: #f4f5e8;
  padding-top: clamp(3.125rem, 1.7045454545rem + 6.0606060606vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 1.7045454545rem + 6.0606060606vw, 6.25rem);
}
.white-pr-box h2 {
  display: block;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 10px;
  font-size: clamp(1.25rem, 0.7954545455rem + 1.9393939394vw, 2.25rem);
  line-height: 1.5;
}
.white-pr-box h2 span {
  font-weight: bold;
  display: inline;
  position: relative;
  padding: 0 1em;
  font-size: clamp(1rem, 0.6022727273rem + 1.696969697vw, 1.875rem);
  line-height: 2.5;
}
@media only screen and (max-width: 768px) {
  .white-pr-box h2 span {
    display: inline-block;
    width: 150px;
  }
}
.white-pr-box h2 span:after {
  position: absolute;
  width: 100%;
  content: "";
  display: inline-block;
  border-bottom: 5px solid #000;
  text-align: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top-copy h3 {
  font-size: clamp(1.25rem, 1.1931818182rem + 0.2424242424vw, 1.375rem);
  line-height: 1.5;
}

.recovery-plan {
  max-width: 960px;
  margin: 40px auto;
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  /* 中の「✓」を線で描く */
  /* オプション（グレーアウト） */
  /* オプションバッジ */
}
.recovery-plan__head {
  padding: 24px 20px 20px;
  text-align: center;
  background: #f5f7fb;
  border-bottom: 1px solid #e1e4ea;
}
.recovery-plan__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 4px;
}
.recovery-plan__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111827;
}
.recovery-plan__sub {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}
.recovery-plan__price {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.2rem;
}
.recovery-plan__price span:first-child {
  margin-right: 0.5em;
  font-size: 0.9rem;
  color: #6b7280;
}
.recovery-plan__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.recovery-plan__table th, .recovery-plan__table td {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  vertical-align: middle;
}
.recovery-plan__col-feature {
  text-align: left;
  width: 70%;
}
.recovery-plan__col-plan {
  text-align: center;
  width: 30%;
}
.recovery-plan__table tbody th[scope=row] {
  font-weight: 500;
  color: #111827;
}
.recovery-plan__section th {
  background: #f3f4f6;
  font-weight: 700;
  color: #111827;
  border-top-color: #d1d5db;
}
.recovery-plan__check {
  text-align: center;
  padding: 12px 16px;
}
.recovery-plan__feature-list {
  margin: 4px 0 0;
  padding-left: 1.2em;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
}
.recovery-plan__feature-list li {
  list-style: disc;
}
.recovery-plan__option {
  background-color: #fafafa;
}
.recovery-plan__option th[scope=row] small {
  font-size: 0.85rem;
  color: #6b7280;
}
.recovery-plan__option-note {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}
.recovery-plan__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 600;
}
.recovery-plan__note {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
  text-align: left;
}
.recovery-plan .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 9999px;
  border: 2px solid #16a34a;
  background: #ecfdf3;
  box-shadow: 0 0 0 1px #bbf7d0;
  position: relative;
}
.recovery-plan .check-icon::before {
  content: "";
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg) translateY(-1px);
}
.recovery-plan .check-icon--optional {
  border: 2px solid #d1d5db;
  background: #f9fafb;
}
.recovery-plan .check-icon--optional::before {
  content: "";
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(-45deg) translateY(-1px);
}
.recovery-plan .recovery-plan__badge {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.recovery-plan .recovery-plan__badge--option {
  background: #fef3c7;
  color: #92400e;
}
.recovery-plan .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 640px) {
  .recovery-plan {
    margin: 24px 12px;
  }
  .recovery-plan__table thead {
    display: none;
  }
  .recovery-plan__table, .recovery-plan__table tbody, .recovery-plan__table tr, .recovery-plan__table th[scope=row], .recovery-plan__table td {
    display: block;
    width: 100%;
  }
  .recovery-plan__section th {
    display: block;
  }
  .recovery-plan__table tr {
    border-top: 1px solid #e5e7eb;
  }
  .recovery-plan__table tbody th[scope=row] {
    padding-bottom: 4px;
  }
  .recovery-plan__table td {
    padding-top: 0;
    text-align: right;
    font-size: 0.9rem;
    color: #16a34a;
  }
}

/*reasons*/
/* セクション全体 */
.reasons {
  padding: 56px 16px 64px;
  background: var(--color-bg-section);
  /* ヘッダー */
  /* カードグリッド */
  /* ナンバーの丸アイコン */
  /* スマホ調整 */
}
.reasons__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.reasons__header {
  text-align: center;
  margin-bottom: 40px;
}
.reasons__eyebrow {
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  margin: 0 0 12px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e0edff;
}
.reasons__title {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 1.1rem + 0.6vw, 1.9rem);
  font-weight: 700;
  color: var(--color-text-main);
}
.reasons__lead {
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  width: 640px;
}
.reasons__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}
@media only screen and (max-width: 768px) {
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.reasons__item {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 24px 20px 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.reasons__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}
.reasons__item-title {
  margin: 10px 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text-main);
}
.reasons__item-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .reasons .reasons {
    padding: 40px 14px 48px;
  }
  .reasons__item {
    padding: 16px 16px 14px;
  }
}

/* POINT 見出しバッジ */
.point-tag {
  position: relative;
  display: inline-block;
  padding: 14px 40px 10px 12px;
  color: #111827;
  margin-bottom: 10px;
}

/* 上の横ライン */
.point-tag::before {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  top: 4px;
  height: 2px;
  background: #111827;
}

/* 下の横ライン */
.point-tag::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: #111827;
}

/* 「POINT」ラベル */
.point-tag__label {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  transform: translate(-8px, 0px);
}

/* 下に伸びている小さな縦ライン */
.point-tag__stick {
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: #111827;
  transform: rotate(43deg);
}

/* 右上の数字 1 */
.point-tag__num {
  position: absolute;
  right: -10px;
  top: -11px;
  transform: translateY(4px);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  color: #2563eb;
}

.symptoms {
  padding: 56px 16px 64px;
  background: #ffffff;
  /* ヘッダー */
  /* 症状パネル */
  /* カード群（よくある対応パターン） */
  /* タイトルは今のままでOK（padding-leftは.card側で確保） */
  /* セクション末尾の一文 */
  /* スマホ調整 */
}
.symptoms__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.symptoms__header {
  text-align: center;
  margin-bottom: 32px;
}
.symptoms__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  margin: 0 0 12px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e0edff;
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  line-height: 1.5;
}
.symptoms__title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 1.1rem + 0.6vw, 1.9rem);
  font-weight: 700;
  color: #111827;
}
.symptoms__lead {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}
.symptoms__panel {
  margin: 32px auto 24px;
  max-width: 760px;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.symptoms__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: 24px;
  row-gap: 10px;
}
.symptoms__list-item {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #111827;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: #111827;
  line-height: 1.7;
}
.symptoms__list-item .symptoms__icon {
  left: 0;
  flex-shrink: 0;
  width: 10px;
  font-size: 0.75rem;
  background: none;
  top: 0;
  transform: translate(0, 10%);
  -webkit-transform: translate(0, 10%);
  -ms-transform: translate(0, 10%);
}
.symptoms__list-item span {
  display: inline-block;
}
.symptoms__note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.symptoms__sub {
  max-width: 840px;
  margin: 20px auto 16px;
  text-align: left;
}
.symptoms__sub-title {
  margin: 0 0 4px;
  font-weight: 700;
  color: #111827;
}
.symptoms__sub-lead {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .symptoms__sub {
    margin: 18px 4px 12px;
  }
  .symptoms__sub-lead {
    font-size: 0.8rem;
  }
}
.symptoms__cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 16px 18px 18px;
}
@media only screen and (max-width: 768px) {
  .symptoms__cards {
    display: flex;
    flex-direction: column;
  }
}
.symptoms__card {
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 50px 25px 16px 25px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  position: relative;
}
.symptoms__icon {
  color: #2563eb;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 1.8rem;
  line-height: 1.5;
}
.symptoms__card--backup .symptoms__icon {
  background: #fef3c7;
  color: #92400e;
}
.symptoms__card--self .symptoms__icon {
  background: #e0f2fe;
  color: #0369a1;
}
.symptoms__card--agency .symptoms__icon {
  background: #e5e7eb;
  color: #374151;
}
.symptoms__card-title {
  margin: 10px 0 10px;
  font-size: 1rem;
  font-weight: 600;
}
.symptoms__card-title {
  color: #111827;
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}
.symptoms__card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
}
.symptoms__card-text + .symptoms__card-text {
  margin-top: 8px;
}
.symptoms__cta-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: #374151;
}
.symptoms__cta-note strong {
  font-weight: 700;
  color: #1f2937;
}
@media (max-width: 640px) {
  .symptoms {
    padding: 40px 14px 48px;
  }
  .symptoms__panel {
    padding: 16px 14px 14px;
  }
  .symptoms__cards {
    gap: 16px;
  }
  .symptoms__card {
    padding: 16px 14px 14px;
  }
}

.faq {
  padding: 56px 16px 64px;
  background: #f9fafb;
}
.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: 28px;
}
.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  margin: 0 0 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e0edff;
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  line-height: 1.5;
}
.faq__title {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 1.1rem + 0.6vw, 1.9rem);
  font-weight: 700;
  color: #111827;
}
.faq__lead {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}
.faq__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}
.faq__item summary {
  list-style: none;
}
.faq__item[open] {
  border-color: #bfdbfe;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}
.faq__summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px 14px 16px;
  cursor: pointer;
}
.faq__label {
  flex-shrink: 0;
  font-weight: 600;
  color: #2563eb;
}
.faq__question {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  position: relative;
}
.faq__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__icon::before {
  transform: rotate(225deg) translateY(1px);
}
.faq__body {
  padding: 0 16px 14px 36px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4b5563;
}
.faq__body p {
  margin: 10px 0 0;
}
.faq__body p:first-child {
  margin-top: 12px;
}
.faq__body strong {
  font-weight: 600;
  color: #111827;
}
@media (max-width: 640px) {
  .faq {
    padding: 40px 12px 48px;
  }
  .faq__body {
    padding: 0 12px 14px 32px;
  }
}

.flow {
  padding: 56px 16px 64px;
  background: #ffffff;
  /* ステップリスト */
  /* 左側：番号・ラベル */
  /* 右側：説明文 */
  /* 保証・支払いメモ */
  /* モバイル */
}
.flow__inner {
  max-width: 960px;
  margin: 0 auto;
}
.flow__header {
  text-align: center;
  margin-bottom: 28px;
}
.flow__eyebrow {
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  margin: 0 0 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e0edff;
}
.flow__title {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 1.1rem + 0.6vw, 1.9rem);
  font-weight: 700;
  color: #111827;
}
.flow__lead {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
}
.flow__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.flow__item {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 16px 0 16px 4px;
}
.flow__item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
.flow__step {
  flex-shrink: 0;
  width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow__step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}
.flow__step-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}
.flow__badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #bbf7d0;
}
.flow__body {
  flex: 1;
  font-size: 0.9rem;
  color: #4b5563;
}
.flow__body p {
  margin: 6px 0 0;
}
.flow__body p:first-child {
  margin-top: 2px;
}
.flow__body strong {
  font-weight: 600;
  color: #111827;
}
.flow__notes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #e5e7eb;
}
.flow__note {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.flow__note strong {
  font-weight: 600;
  color: #374151;
}
@media (max-width: 768px) {
  .flow {
    padding: 40px 14px 48px;
  }
  .flow__item {
    flex-direction: column;
    padding: 14px 0;
  }
  .flow__step {
    width: auto;
    justify-content: flex-start;
  }
  .flow__badge {
    margin-left: 0;
    margin-top: 4px;
  }
  .flow__body {
    padding-left: 4px;
  }
}

.terms {
  padding: 40px 16px 56px;
  background: #ffffff;
  /* 小さい補足テキストを使う場合（任意で） */
  /* モバイルレイアウト調整 */
}
.terms__inner {
  max-width: 960px;
  margin: 0 auto;
}
.terms__title {
  margin: 0 0 20px;
  font-size: clamp(1.3rem, 1.05rem + 0.5vw, 1.7rem);
  font-weight: 700;
  color: #111827;
  text-align: left;
}
.terms__list {
  margin: 0;
  padding: 0;
}
.terms__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.terms__row:not(:last-child) {
  margin-bottom: 12px;
}
.terms__row dt, .terms__row dd {
  margin: 0;
}
.terms__row dt {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  padding-top: 2px;
}
.terms__row dd {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}
.terms__row dd strong {
  font-weight: 600;
  color: #111827;
}
.terms__note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6b7280;
}
@media (max-width: 768px) {
  .terms {
    padding: 32px 14px 40px;
  }
  .terms__row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 6px;
    padding: 12px 12px;
  }
  .terms__row dt {
    padding-top: 0;
  }
}

.company {
  padding: 40px 16px 32px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.company__inner {
  max-width: 960px;
  margin: 0 auto;
}
.company__title {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 1rem + 0.4vw, 1.5rem);
  font-weight: 700;
  color: #111827;
}
.company__list {
  margin: 0;
  padding: 0;
}
.company__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 4px;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
}
.company__row:first-of-type {
  border-top: none;
}
.company__row dt, .company__row dd {
  margin: 0;
  font-size: 0.9rem;
}
.company__row dt {
  font-weight: 600;
  color: #374151;
}
.company__row dd {
  color: #4b5563;
  line-height: 1.7;
}
.company__en {
  font-size: 0.8rem;
  color: #6b7280;
}
.company__tel {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.company__tel:hover {
  text-decoration: underline;
}
.company__small {
  font-size: 0.8rem;
  color: #6b7280;
}
@media (max-width: 768px) {
  .company {
    padding: 32px 14px 24px;
  }
  .company__row {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2px;
  }
  .company__row dt {
    font-size: 0.85rem;
  }
  .company__row dd {
    font-size: 0.85rem;
  }
}

/* 右下固定 お問い合わせボックス */
.fixed-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 320px;
  max-width: calc(100% - 24px);
  font-size: 0.9rem;
  color: #111827;
  /* ▼ スマホ用ドック（デフォルトはPCで非表示） */
  /* ▼ スマホ用レイアウト切り替え */
}
.fixed-contact__inner {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  padding: 14px 16px 14px;
}
.fixed-contact__lead {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}
.fixed-contact__tel {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: #374151;
}
.fixed-contact__tel-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.fixed-contact__tel-link:hover {
  text-decoration: underline;
}
.fixed-contact__tel-note {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 2px;
}
.fixed-contact__btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}
.fixed-contact__btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}
.fixed-contact__btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}
.fixed-contact__btn--secondary {
  background: #f9fafb;
  color: #111827;
  border: 1px solid #e5e7eb;
}
.fixed-contact__btn--secondary:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}
.fixed-contact__note {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
}
.fixed-contact__dock {
  display: none;
}
.fixed-contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  text-decoration: none;
  color: #111827;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.fixed-contact__icon:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}
.fixed-contact__icon--phone {
  color: #16a34a;
  border-color: #bbf7d0;
  background: #ecfdf3;
}
.fixed-contact__icon--form {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}
.fixed-contact__icon--chatwork {
  color: #0f172a;
  border-color: #e5e7eb;
  background: #f9fafb;
  font-size: 0.9rem;
  font-weight: 700;
}
@media (max-width: 640px) {
  .fixed-contact {
    right: 0;
    left: 0;
    bottom: 8px;
    width: 100%;
    max-width: none;
    pointer-events: none; /* 中身だけタッチ可能にして下のUIを邪魔しにくくする */
  }
  .fixed-contact__inner {
    display: none; /* カードは隠す */
  }
  .fixed-contact__dock {
    pointer-events: auto;
    display: flex;
    justify-content: center; /* 中央に3つ並べる */
    gap: 12px;
  }
}

/* スマホだけ改行したい時用のユーティリティ（前に出したやつ） */
.u-sp {
  display: none;
}
@media (max-width: 640px) {
  .u-sp {
    display: inline;
  }
}

.price-cta {
  padding: 28px 16px 40px;
  background: #f9fafb;
  /* スマホ調整 */
}
.price-cta__inner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #0f172a;
  color: #e5e7eb;
  padding: 20px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3);
}
.price-cta__text {
  flex: 1 1 260px;
  min-width: 0;
}
.price-cta__title {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 0.95rem + 0.4vw, 1.4rem);
  font-weight: 700;
  color: #f9fafb;
}
.price-cta__lead {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.7;
}
.price-cta__actions {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.price-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, filter 0.15s ease;
}
.price-cta__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}
.price-cta__btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.price-cta__note {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: right;
}
@media (max-width: 768px) {
  .price-cta {
    padding: 20px 14px 32px;
  }
  .price-cta__inner {
    padding: 16px 14px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .price-cta__actions {
    align-items: stretch;
  }
  .price-cta__note {
    text-align: left;
  }
}

/* フッター例（必要なら） */
.site-footer {
  padding: 16px;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* 申込フォーム全体 */
#cf-tbl {
  max-width: 760px;
  margin: 40px auto 60px;
  font-size: 0.95rem;
  color: #111827;
  text-align: left;
}

/* テーブル基本 */
#cf-tbl table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

#cf-tbl tbody {
  display: table-row-group;
}

#cf-tbl tr {
  border-top: 1px solid #e5e7eb;
}

#cf-tbl tr:first-child {
  border-top: none;
}

#cf-tbl th,
#cf-tbl td {
  padding: 10px 14px;
  vertical-align: top;
}

#cf-tbl th {
  width: 32%;
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

#cf-tbl td {
  width: 68%;
  background: #ffffff;
}

/* ラベル部分の中身 */
#cf-tbl .title-contactform7 {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.9rem;
}

#cf-tbl .title-contactform7 small {
  font-size: 0.78rem;
  color: #6b7280;
}

/* 必須・任意バッジ */
#cf-tbl .required,
#cf-tbl .optional {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.2;
  vertical-align: middle;
}

#cf-tbl .required {
  color: #b91c1c;
}

#cf-tbl .optional {
  background: #e5e7eb;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

/* 入力要素共通 */
#cf-tbl input[type=text],
#cf-tbl input[type=email],
#cf-tbl input[type=tel],
#cf-tbl input[type=url],
#cf-tbl textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

#cf-tbl input[type=text]:focus,
#cf-tbl input[type=email]:focus,
#cf-tbl input[type=tel]:focus,
#cf-tbl input[type=url]:focus,
#cf-tbl textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* 自動計算の金額フィールド（readonly） */
#cf-tbl input[readonly],
#cf-tbl .price,
#cf-tbl .gross_price,
#cf-tbl .tax_price {
  background: #f3f4f6;
  color: #4b5563;
}

/* textarea 高さ */
#cf-tbl textarea {
  min-height: 120px;
  resize: vertical;
}

/* 個人情報同意（acceptance） */
#cf-tbl td a {
  color: #2563eb;
  text-decoration: underline;
}

#cf-tbl td a:hover {
  text-decoration: none;
}

/* 消費税行をデフォルト非表示にしておきたい場合（必要なら） */
/*
#cf-tbl .tax-price-hidden {
  display: none;
}
*/
/* 送信ボタン */
#cf-tbl > p {
  text-align: center;
}

#cf-tbl input[type=submit],
#cf-tbl [type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, filter 0.15s ease;
}

#cf-tbl input[type=submit]:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

#cf-tbl input[type=submit]:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

/* CF7のバリデーションメッセージ（汎用） */
#cf-tbl span.wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #b91c1c;
}

#cf-tbl .wpcf7-response-output {
  margin-top: 16px;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* レスポンシブ対応：スマホでは縦並びに */
@media (max-width: 640px) {
  #cf-tbl table,
  #cf-tbl tbody,
  #cf-tbl tr,
  #cf-tbl th,
  #cf-tbl td {
    display: block;
    width: 100%;
  }
  #cf-tbl tr {
    border-top: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
  }
  #cf-tbl th {
    background: transparent;
    padding: 6px 2px;
    width: 100%;
  }
  #cf-tbl td {
    background: transparent;
    padding: 2px 2px 8px;
  }
}
/*unit*/
.u-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.u-border {
  border: 3px solid #000;
}

@media only screen and (min-width: 993px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .fullwide-when-block .pc-catch-heading, .fullwide-why-block .pc-catch-heading {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    background-color: #0693E3;
  }
}
@media only screen and (max-width: 768px) {
  .u-sp-block {
    display: block;
  }
}
.u-center {
  text-align: center;
}

strong {
  font-weight: bold;
  color: #2563eb;
}