.breadcrumbs {
  margin: 1rem auto;
  font-size: 14px;
  color: #6b7a86;
  max-width: 1200px;
}

.bc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-item {
  display: flex;
  align-items: center;
  color: #6b7a86;
}

.bc-item a {
  color: #004751;
  text-decoration: none;
  font-weight: 600;
}

.bc-item a:hover {
  text-decoration: underline;
}

.bc-item::after {
  content: ">";
  margin: 0 6px;
  color: #9aa5af;
}

.bc-item:last-child::after {
  content: "";
}

.bc-current {
  color: #1f3137;
  font-weight: 700;
}
/* =========================================
  Contact – Design Digital Spoke
  Tailwindクラスベースの微調整用CSS
========================================= */

.contact-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 20px 96px;
}

/* 見出しエリア */
.contact-hero {
  margin-bottom: 32px;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ca3af;
  /* text-gray-400 */
  margin-bottom: 8px;
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  /* text-gray-900 */
  margin-bottom: 12px;
}

.contact-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
  /* text-gray-600 */
}

/* カード本体 */
.contact-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 28px 36px;
  border: 1px solid #e5e7eb;
  /* border-gray-200 */
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

/* ラベル・バッジ */
.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  /* text-gray-700 */
}

.contact-badge-required,
.contact-badge-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.contact-badge-required {
  background-color: #fee2e2;
  /* red-100 */
  color: #b91c1c;
  /* red-700 */
}

.contact-badge-optional {
  background-color: #e5e7eb;
  /* gray-200 */
  color: #4b5563;
  /* gray-600 */
}

/* 説明文とのバランス調整 */
.contact-card .space-y-6>div {
  margin-bottom: 1.5rem;
}

/* 送信ボタン */
.contact-submit {
  text-align: center;
  margin-top: 12px;
}

.contact-submit-button {
  padding: 12px 40px;
  border-radius: 999px;
  border: 1px solid #004751;
  background-color: #004751;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
}

.contact-submit-button:hover {
  background-color: #003842;
  box-shadow: 0 10px 25px rgba(0, 71, 81, 0.35);
  transform: translateY(-1px);
}

.contact-submit-button .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.15s ease;
}

.contact-submit-button:hover .material-symbols-outlined {
  transform: translateX(3px);
}

/* スマホ調整 */
@media (max-width: 640px) {
  .contact-wrapper {
    padding: 0px;
  }

  .contact-card {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .contact-title {
    font-size: 24px;
  }
}

/*  送信中 */
.contact-submit-button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* 確認用 */

.contact-confirm-box {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 20px;
}

.contact-confirm-row+.contact-confirm-row {
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
  padding-top: 12px;
}

.contact-confirm-row dt {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-confirm-row dd {
  font-size: 14px;
  color: #111827;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* 送信中の見た目 */
.contact-submit-button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.contact-submit-button--secondary {
  background: #ffffff;
  color: #154b5a;
  border: 1px solid #154b5a;
}

/* 確認ステップのボタン行 */
.contact-step-confirm.contact-submit {
  display: flex;
  gap: 1rem;
}

/* ★ 2つ目のボタンを右端に寄せる */
.contact-step-confirm .contact-submit-button:last-child {
  margin-left: auto;
}

/* ▼ スマホ用（画面幅768px以下）で縦並びにする */
@media (max-width: 768px) {
  .contact-step-confirm.contact-submit {
    flex-direction: column;
    /* ★ 縦並び */
    align-items: stretch;
    /* 幅を広げる */
  }

  .contact-step-confirm .contact-submit-button:last-child {
    margin-left: 0;
    /* 右寄せ解除 */
  }

  .contact-submit-button,
  .contact-submit-button--secondary {
    width: 100%;
    /* ボタンを画面幅いっぱいに */
    justify-content: center;
  }
}
/* ================================
   Design Digital Spoke：ヘッダーデザイン
================================ */

/* header 内側の高さ・整列（PC共通） */
.dds-header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 左：ロゴ / 右：ボタン群 */
  gap: 32px;
}

/* ロゴ（PC） */
.dds-logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #154B5A;
}

/* ナビ */
.dds-nav-ul {
  display: flex;
  align-items: center;
  gap: 56px;
  text-transform: uppercase;
  font-size: 14px;
}

.dds-nav-link {
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: color .2s ease;
}

.dds-nav-link:hover {
  color: #bfbfbf;
}

/* 検索アイコン（丸 / PC） */
.dds-search-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.dds-search-btn:hover {
  background: #f5f5f5;
}

/* お問い合わせ（PC） */
.dds-contact-btn {
  background: #154B5A;
  /* 濃いめブルーグレー */
  color: #fff;
  padding: 10px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease;
}

.dds-contact-btn:hover {
  background: #6a93a6;
}

/* お問い合わせ（SP 用。ヘッダーで使わないなら残しておいてもOK） */
.dds-contact-btn-sm {
  background: #7aa7bd;
  color: #fff;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease;
}

.dds-contact-btn-sm:hover {
  background: #6a93a6;
}

/* ================================
   全画面検索オーバーレイ（PCベース）
================================ */

/* 初期状態：非表示だが DOM には存在させる */
.dds-search-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 1s ease-out, visibility 1s ease-out;
  overflow-y: auto;
}

/* 白ベール（画像を少し薄く） */
.dds-search-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  pointer-events: none;
  /* クリックを通す */
}

/* 開いた状態 */
.dds-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 中身：中央寄せ（PC） */
.dds-search-overlay-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 720px;
  text-align: center;
  z-index: 2;

  opacity: 0;
  transform: translate(-50%, calc(-50% + 30px));
  transition:
    opacity 1.1s ease-out 0.1s,
    transform 1.1s ease-out 0.1s;
}

/* 開いたとき：上にふわっと */
.dds-search-overlay.is-open .dds-search-overlay-inner {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* タイトル */
.dds-search-overlay-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #144c65;
  margin-bottom: 20px;
}

/* 検索フォーム */
.dds-search-form {
  position: relative;
  width: 100%;
  height: 64px;
  border-radius: 9999px;
  border: 2px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 64px 0 24px;
  box-sizing: border-box;
}

.dds-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
}

/* 右端の虫メガネ（オーバーレイ内） */
.dds-search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dds-search-submit-icon {
  width: 16px;
}

/* Closeボタン（右上） */
.dds-search-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 40px;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #333;
  transition: opacity .3s ease;
  z-index: 3;
}

.dds-search-close:hover {
  opacity: 0.7;
}

/* ================================
   SP レイアウト調整（ヘッダー＋検索画面）
================================ */
@media (max-width: 768px) {

  /* ヘッダー内レイアウト（高さ＆左右余白） */
  .dds-header-inner {
    height: 56px;
    padding: 0 12px;
    gap: 8px;
  }

  /* ロゴを小さめにして1行に */
  .dds-logo {
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  /* ナビは完全非表示（念のため） */
  .dds-nav-ul {
    display: none;
  }

  /* 検索アイコンを少し小さく */
  .dds-search-btn {
    width: 32px;
    height: 32px;
    border-width: 1px;
  }

  .dds-search-btn svg {
    width: 14px;
    height: 14px;
  }

  /* ハンバーガーも同じサイズ感に */
  #navOpen {
    width: 32px;
    height: 32px;
    padding: 0;
    margin-left: 4px;
  }

  /* オーバーレイ全体：デバイス画面ピッタリ */
  .dds-search-overlay {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  /* 中身：画面ど真ん中にコンパクト配置 */
  .dds-search-overlay-inner {
    top: 40%;
    left: 50%;
    width: 100%;
    max-width: 320px;
    /* バー＋タイトルの最大幅 */
    padding: 0 16px;
    box-sizing: border-box;
    text-align: center;

    opacity: 0;
    transform: translate(-50%, -50%);
    transition:
      opacity 0.7s ease-out 0.1s,
      transform 0.7s ease-out 0.1s;
  }

  .dds-search-overlay.is-open .dds-search-overlay-inner {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  /* KEYWORD */
  .dds-search-overlay-title {
    font-size: 16px;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
  }

  /* 検索フォーム：細め＆短め */
  .dds-search-form {
    height: 34px;
    padding: 0 30px 0 8px;
    border-width: 1px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .dds-search-input {
    font-size: 11px;
  }

  .dds-search-submit {
    width: 22px;
    height: 22px;
    right: 6px;
  }

  .dds-search-submit-icon {
    width: 11px;
  }

  /* Closeボタン：少し小さく内側に */
  .dds-search-close {
    top: 12px;
    right: 12px;
    font-size: 22px;
  }
}