.service-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-lead {
  font-size: 20px;
  color: #4a5a60;
  margin-bottom: 60px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* カード全体 */
.service-item {
  border: 1px solid #d9dee2;
  border-radius: 32px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}


.service-item:hover {
  background: #f8fbfc;
  border-color: #b4c8cd;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}


/* サムネイル画像 */
.service-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  background: #eef3f5;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト部分 */
.service-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-text .ja {
  font-size: 20px;
  font-weight: 700;
  color: #102a33;
}

.service-text .en {
  font-size: 12px;
  color: #6b7f86;
  letter-spacing: 0.12em;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #5b6b71;
}

/* 矢印ボタン */
.service-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #d9dee2;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #0f2e36;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.service-item:hover .service-arrow {
  background: #0f2e36;
  color: #ffffff;
  border-color: #0f2e36;
}


.service-item:hover .service-arrow {
  background: #0f2e36;
  color: #fff;
}

/* スマホ時：縦積みカード */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .service-thumb {
    width: 100%;
    height: 240px;
    flex: 0 0 auto;
  }

  .service-body {
    width: 100%;
  }

  .service-text .ja {
    font-size: 18px;
  }

  .service-desc {
    font-size: 12px;
  }

  .service-arrow {
    margin-left: auto;
    margin-top: 8px;
  }
}
.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;
}
/* ================================
   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;
  }
}