/* block-styles.css */
/* ══════════════════════════════════════
   SWELLブロックスタイル上書き — toB / プロフェッショナル
   ══════════════════════════════════════ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1-A. POINT（左バー + タグラベル）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.is-style-big_icon_point {
	border: none !important;
	/* border-left: 4px solid #1e3a5f !important; */
	border-radius: 0 !important;
	padding: 18px 24px 20px !important;
	position: relative;
	background: #f5f7fa !important;
}

/* 元の丸アイコンを非表示 */
.is-style-big_icon_point::before {
	display: none !important;
}

/* タグラベル */
.is-style-big_icon_point > .wp-block-group__inner-container::before {
	content: "POINT";
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 12px;
	padding: 4px 12px;
	border-radius: 3px;
	color: #1e3a5f;
	background: #e2e8f0;
	width: auto;
	height: auto;
	line-height: 1.4;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1-B. メリット / デメリット（極細縦書きカラム + フラット）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.is-style-big_icon_good,
.is-style-big_icon_bad {
	display: flex !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	position: relative;
	background: transparent !important;
	overflow: hidden;
	margin-top: 0 !important;
	margin-bottom: 1rem !important;
}

/* 左カラム（::before を縦書きラベルに） */
.is-style-big_icon_good::before,
.is-style-big_icon_bad::before {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 30px !important;
	min-width: 30px !important;
	align-self: stretch !important;
	height: auto !important;
	writing-mode: vertical-rl !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .2em !important;
	color: #fff !important;
	padding: 16px 0 !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background-image: none !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
}

/* コンテンツ側 */
.is-style-big_icon_good > .wp-block-group__inner-container,
.is-style-big_icon_bad > .wp-block-group__inner-container {
	flex: 1;
	padding: 16px 20px;

	background: #fafbfc;
	border: 1px solid #e5e7eb;
	border-left: none;
}

/* inner-containerの::beforeは不要 */
.is-style-big_icon_good > .wp-block-group__inner-container::before,
.is-style-big_icon_bad > .wp-block-group__inner-container::before {
	display: none !important;
}

/* ── メリット ── 緑 */
.is-style-big_icon_good::before {
	content: "メリット" !important;
	background: #047857 !important;
}

/* ── デメリット ── 赤 */
.is-style-big_icon_bad::before {
	content: "デメリット" !important;
	background: #b91c1c !important;
}

/* テキスト調整 */
.is-style-big_icon_point p,
.is-style-big_icon_good p,
.is-style-big_icon_bad p {
	font-size: 14.5px;
	line-height: 1.8;
	color: #334155;
}
.is-style-big_icon_point ul,
.is-style-big_icon_good ul,
.is-style-big_icon_bad ul {
	margin-top: 8px;
}
.is-style-big_icon_point li,
.is-style-big_icon_good li,
.is-style-big_icon_bad li {
	font-size: 14px;
	line-height: 1.7;
	color: #334155;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. STEPブロック（透かし番号 + ミニマル）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swell-block-step {
	padding: 0 !important;
}

/* 各ステップアイテム */
.swell-block-step .swell-block-step__item {
	padding: 16px 20px 10px 54px !important;
	position: relative;
}
.swell-block-step .swell-block-step__item:not(:last-child) {
	border-bottom: 1px dashed #e5e7eb !important;
	padding-bottom: 10px !important;
}
.swell-block-step .swell-block-step__item:last-child {
	padding-bottom: 0;
}

/* 接続線を非表示 */
.swell-block-step .swell-block-step__item::before {
	display: none !important;
}

/* 番号を透かし表示 */
.swell-block-step .swell-block-step__number {
	position: absolute !important;
	left: 0 !important;
	top: 10px !important;
	background: transparent !important;
	color: #e2e8f0 !important;
	border-radius: 0 !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	font-size: 32px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	display: block !important;
}

/* 番号（::after counter）を大きな透かしに（01形式） */
.swell-block-step .swell-block-step__number::after {
	content: counter(step, decimal-leading-zero) !important;
	font-size: 32px !important;
	font-weight: 800 !important;
	color: #e2e8f0 !important;
	line-height: 1 !important;
}

/* STEPラベルを小さく表示 */
.swell-block-step .swell-block-step__number .__label {
	display: block !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: .06em !important;
	color: #1e3a5f !important;
}

/* ステップタイトル */
.swell-block-step .swell-block-step__title {
	font-size: 16px !important;
	font-weight: 700;
	color: #1a1a1a;
	margin-top: 0;
	padding-bottom: 0;
	border-bottom: none;
	min-height: 0 !important;
}

/* ステップ本文 */
.swell-block-step .swell-block-step__title + .swell-block-step__body {
	margin-top: 0 !important;
	padding: 0;
}
.swell-block-step .swell-block-step__body p {
	font-size: 14.5px;
	line-height: 1.8;
	color: #334155;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. キャプションボックス
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* タイトルバー */
.swell-block-capbox .cap_box_ttl {
	background: #1e3a5f !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 8px 16px !important;
	border-radius: 4px 4px 0 0 !important;
}
.swell-block-capbox .cap_box_ttl span {
	color: #fff !important;
}

/* コンテンツエリア */
.swell-block-capbox .cap_box_content {
	border: 1px solid #d1d5db !important;
	border-radius: 0 0 4px 4px !important;
	padding: 20px 24px !important;
	background: #fafbfc !important;
}

.swell-block-capbox .cap_box_content p {
	font-size: 14.5px;
	line-height: 1.8;
	color: #334155;
}
.swell-block-capbox .cap_box_content li {
	font-size: 14px;
	line-height: 1.7;
	color: #334155;
}

/* onborder_ttl スタイル上書き — 控えめに */
.swell-block-capbox.is-style-onborder_ttl .cap_box_ttl {
	background: #f0f2f5 !important;
	color: #1e3a5f !important;
	font-size: 12.5px !important;
	font-weight: 600;
	padding: 5px 14px !important;
	border-radius: 3px !important;
	border: 1px solid #d1d5db !important;
}
.swell-block-capbox.is-style-onborder_ttl .cap_box_ttl span {
	color: #1e3a5f !important;
}

/* inner スタイル上書き — 控えめに */
.swell-block-capbox.is-style-inner .cap_box_ttl {
	background: #e8eaed !important;
	color: #475569 !important;
	font-size: 12.5px !important;
	font-weight: 600;
	padding: 5px 14px !important;
	border-radius: 4px 4px 0 0 !important;
	border: none !important;
}
.swell-block-capbox.is-style-inner .cap_box_ttl span {
	color: #475569 !important;
}
.swell-block-capbox.is-style-inner .cap_box_content {
	border: none !important;
	background: #fafbfc !important;
}

/* onborder_ttl2 スタイル上書き */
.swell-block-capbox.is-style-onborder_ttl2 .cap_box_ttl {
	border-radius: 4px 4px 0 0 !important;
	margin: 0 !important;
	transform: none !important;
}
.swell-block-capbox.is-style-onborder_ttl2 .cap_box_content {
	border-top: 1px solid #d1d5db !important;
	margin-top: 0 !important;
	padding-top: 20px !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. wp-block-group ボーダー＋背景 — 控えめに
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.wp-block-group.has-border {
	border-width: 1px !important;
	border-color: #d1d5db !important;
}
.wp-block-group.has-swl-pale-02-background-color {
	background-color: #f8f9fb !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. 定義リスト（swell-block-dl）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swell-block-dl {
	background: transparent !important;
	display: block !important;
}

/* dt — ラベル（上） */
.swell-block-dl .swell-block-dl__dt {
	display: block !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
	padding: 0 0 0 16px !important;
	margin: 20px 0 4px !important;
	background: transparent !important;
	border: none !important;
	line-height: 1.5 !important;
	position: relative !important;
}
.swell-block-dl .swell-block-dl__dt::before {
	content: '▸' !important;
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	font-size: 14px !important;
	color: #475569 !important;
	line-height: 1 !important;
	width: auto !important;
	height: auto !important;
	border-radius: 0 !important;
	background: none !important;
}
.swell-block-dl .swell-block-dl__dt:first-of-type {
	margin-top: 0 !important;
}

/* dd — 説明文（下・インデント） */
.swell-block-dl .swell-block-dl__dd {
	padding: 4px 0 16px 20px !important;
	margin: 0 !important;
	border: none !important;
	border-bottom: 1px solid #f1f5f9 !important;
	background: transparent !important;
}
.swell-block-dl .swell-block-dl__dd:last-of-type {
	border-bottom: none !important;
	padding-bottom: 0 !important;
}
.swell-block-dl .swell-block-dl__dd p {
	font-size: 15px;
	line-height: 1.8;
	color: #64748b;
	margin: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. テーブル（wp-block-table）
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.wp-block-table {
	overflow-x: auto;
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	font-size: 13.5px;
	line-height: 1.65;
	border: none !important;
}

/* ヘッダー行（post + use-case のみ） */
.single-post .post_content thead th,
.single-use-case .post_content thead th,
.single-trends .post_content thead th {
	background: #1e293b !important;
	color: #e2e8f0 !important;
	font-size: 12.5px !important;
	font-weight: 700 !important;
	padding: 10px 16px !important;
	border: none !important;
	border-right: 1px solid rgba(255,255,255,.1) !important;
	text-align: left;
}
.single-post .post_content thead th:last-child,
.single-use-case .post_content thead th:last-child,
.single-trends .post_content thead th:last-child {
	border-right: none !important;
}

/* ボディセル（post + use-case のみ） */
.single-post .post_content tbody td,
.single-use-case .post_content tbody td,
.single-trends .post_content tbody td {
	padding: 10px 16px !important;
	border: none !important;
	border-bottom: 1px solid #eef0f2 !important;
	border-right: 1px solid #e2e8f0 !important;
	color: #334155 !important;
	vertical-align: top;
}
.single-post .post_content tbody td:last-child,
.single-use-case .post_content tbody td:last-child,
.single-trends .post_content tbody td:last-child {
	border-right: none !important;
}

/* ストライプ（偶数行） */
.single-post .post_content tbody tr:nth-child(even) td,
.single-use-case .post_content tbody tr:nth-child(even) td,
.single-trends .post_content tbody tr:nth-child(even) td {
	background: #fafbfc !important;
}

/* Two-Tone: クラス row-header でテーブルの左列をラベル扱い */
.single-post .post_content .row-header tbody td:first-child,
.single-post .post_content table.row-header tbody td:first-child,
.single-use-case .post_content .row-header tbody td:first-child,
.single-use-case .post_content table.row-header tbody td:first-child,
.single-trends .post_content .row-header tbody td:first-child,
.single-trends .post_content table.row-header tbody td:first-child {
	background: #f1f5f9 !important;
	font-weight: 700 !important;
	color: #1e293b !important;
	border-bottom: 1px solid #e2e8f0 !important;
}
.single-post .post_content .row-header thead th:first-child,
.single-post .post_content table.row-header thead th:first-child,
.single-use-case .post_content .row-header thead th:first-child,
.single-use-case .post_content table.row-header thead th:first-child,
.single-trends .post_content .row-header thead th:first-child,
.single-trends .post_content table.row-header thead th:first-child {
	background: #0f172a !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. SWELLアコーディオン — コンパクト化
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swell-block-accordion__title {
	font-size: 14px !important;
	font-weight: 600 !important;
	padding: 10px 14px !important;
	min-height: 0 !important;
}

.swell-block-accordion__icon {
	width: 20px !important;
	height: 20px !important;
	font-size: 12px !important;
}

.swell-block-accordion__body {
	padding: 10px 14px 14px !important;
	font-size: 14px !important;
}

.swell-block-accordion__body p {
	font-size: 14px;
	line-height: 1.75;
}

/* cta.css */
/* =========================================================
   全ページ共通 CTA セクション
   ========================================================= */
.aind-cta {
  position: relative;
  overflow: hidden;
  background: #1e293b;
  padding: 80px 20px;
  text-align: center;

  /* コンテナから抜け出してフルwidth */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

/* メッシュグラデーション背景 */
.aind-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(37, 99, 235, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(139, 92, 246, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ドットパターン */
.aind-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.aind-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

/* ラベル — 斜めストライプバッジ */
.aind-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #38bdf8;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.aind-cta__label::before,
.aind-cta__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38bdf8);
}

.aind-cta__label::after {
  background: linear-gradient(90deg, #38bdf8, transparent);
}

/* 見出し */
.aind-cta__heading {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* 補助テキスト */
.aind-cta__text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0 0 36px;
}

/* ボタンラップ */
.aind-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ボタン共通 */
.aind-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.aind-cta__btn-icon {
  font-size: 16px;
  line-height: 1;
}

/* プライマリ — グロー効果 */
.aind-cta__btn--primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.4),
    0 0 40px rgba(124, 58, 237, 0.15);
}

.aind-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(37, 99, 235, 0.5),
    0 0 60px rgba(124, 58, 237, 0.25);
  color: #fff;
}

/* アウトライン — ガラス風 */
.aind-cta__btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(8px);
}

.aind-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* ボトムアクセントライン */
.aind-cta__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, #2563eb 30%, #7c3aed 50%, #38bdf8 70%, transparent 90%);
  opacity: 0.5;
}

/* SP用改行を表示 / PC用改行を非表示 */
.aind-cta__br-sp {
  display: none;
}

.aind-cta__br-pc {
  display: inline;
}


/* レスポンシブ */
@media (max-width: 768px) {
  .aind-cta {
    padding: 56px 20px;
  }

  .aind-cta__heading {
    font-size: 22px;
  }

  .aind-cta__text {
    font-size: 13px;
  }

  .aind-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .aind-cta__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .aind-cta__br-sp {
    display: inline;
  }

  .aind-cta__br-pc {
    display: none;
  }
}

/* header.css */
/* ヘッダー：お問い合わせボタン — フルハイト帯 ドットノイズ 水色→ブルー＋きらりん */
.aind-menu-contact > a {
	background: url("data:image/svg+xml,%3Csvg width='8' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='1' fill='rgba(255,255,255,.07)'/%3E%3C/svg%3E") repeat, linear-gradient(135deg, #0ea5e9, #3b82f6) !important;
	color: #fff !important;
	border-radius: 0 !important;
	border: none !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	transition: filter .2s;
	position: relative;
	overflow: hidden;
}
.aind-menu-contact > a::after {
	content: "";
	position: absolute;
	top: -20%;
	left: -120%;
	width: 80%;
	height: 140%;
	background: linear-gradient(
		100deg,
		transparent 0%,
		rgba(255,255,255,.08) 30%,
		rgba(255,255,255,.4) 46%,
		rgba(255,255,255,.5) 50%,
		rgba(255,255,255,.4) 54%,
		rgba(255,255,255,.08) 70%,
		transparent 100%
	);
	transform: skewX(-15deg);
	animation: kirarin 4s ease-in-out infinite;
}
@keyframes kirarin {
	0%   { left: -120%; }
	35%  { left: 160%; }
	100% { left: 160%; }
}
.aind-menu-contact > a:hover {
	filter: brightness(1.1);
}
.aind-menu-contact > a .ttl {
	color: #fff;
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center;
	gap: 10px;
}
.aind-menu-contact > a .ttl::before {
	content: "";
	display: block;
	width: 15px;
	height: 12px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Crect x='1' y='1' width='22' height='16' rx='2' fill='white'/%3E%3Cpath d='M1 1l11 8 11-8V1H1z' fill='black'/%3E%3Cpath d='M1 1l11 8 11-8' fill='none' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 18'%3E%3Crect x='1' y='1' width='22' height='16' rx='2' fill='white'/%3E%3Cpath d='M1 1l11 8 11-8V1H1z' fill='black'/%3E%3Cpath d='M1 1l11 8 11-8' fill='none' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: .9;
	flex-shrink: 0;
}
.aind-menu-contact > a .c-smallNavTitle {
	display: none;
}

/* ── グローバルナビ ── */
.c-gnav > li > a {
	font-weight: 400;
	letter-spacing: 0.04em;
}
.c-gnav > li > a .ttl {
	font-size: 13.5px;
	font-weight: 400;
}
.c-gnav > li {
	position: relative;
}
.c-gnav > li > a:hover .ttl,
.c-gnav > li.current-menu-item > a .ttl {
	color: #1e3a5f;
}
.c-gnav > li > a:hover .desc,
.c-gnav > li.current-menu-item > a .desc {
	color: #1e3a5f;
	opacity: .8;
}
.c-gnav > .aind-menu-contact > a:hover .ttl {
	color: #fff;
}

/* ── メガメニュー ── */
#sp_menu .aind-mega { display: none !important; }

.sub-menu.aind-mega {
	width: auto;
	min-width: 400px;
	padding: 16px 0 14px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
	border: none;
	border-top: none;
	border-radius: 0 0 4px 4px;
}

.aind-mega a::before,
.aind-mega li::before,
.aind-mega__list a::before,
.aind-mega__list li::before {
	content: none !important;
	display: none !important;
}

.aind-mega__inner {
	list-style: none;
}

.aind-mega__list {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: 0;
}
.aind-mega__list li {
	break-inside: avoid;
}
.aind-mega__list li a {
	display: block;
	padding: 6px 20px;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	line-height: 1.6;
	transition: color .12s, background .12s;
}
.aind-mega__list li a:hover {
	background: #f8fafc;
	color: #1e3a5f;
}

.aind-mega__group {
	padding: 10px 20px 4px;
	margin: 4px 0 0;
	font-size: 10px;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: .12em;
	text-transform: uppercase;
	border-top: 1px solid #f1f5f9;
	column-span: all;
}
.aind-mega__group:first-child {
	border-top: none;
	margin-top: 0;
}

.aind-mega__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 10px 20px 0;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	color: #1e3a5f !important;
	background: transparent !important;
	text-decoration: none !important;
	transition: color .15s;
}
.aind-mega__cta:hover {
	color: #2a5090 !important;
}
.aind-mega__arrow {
	font-size: 11px;
	transition: transform .15s;
}
.aind-mega__cta:hover .aind-mega__arrow {
	transform: translateX(3px);
}

/* heading.css */
/* ══════════════════════════════════════
   通常投稿（post） & 固定ページ（page） & 導入事例（use-case）
   見出し h2 / h3
   ══════════════════════════════════════ */

/* --- h2 ---
   左丸＋薄い背景 */
.single-post .post_content h2,
.page .post_content h2,
.single-use-case .post_content h2 {
	position: relative;
	margin: 60px 0 24px !important;
	padding: 10px 16px 10px 28px !important;
	border: none !important;
	background: #f1f3f5 !important;
	border-radius: 2px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	color: #1a2744 !important;
}
.single-post .post_content h2::before,
.page .post_content h2::before,
.single-use-case .post_content h2::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #2563eb;
	display: block;
}
.single-post .post_content h2::after,
.page .post_content h2::after,
.single-use-case .post_content h2::after {
	display: none;
}
.single-post .post_content h2:first-child,
.page .post_content h2:first-child,
.single-use-case .post_content h2:first-child {
	margin-top: 0 !important;
}

/* --- h3 ---
   border-bottom グレー */
.single-post .post_content h3,
.page .post_content h3,
.single-use-case .post_content h3 {
	margin: 40px 0 18px !important;
	padding: 0 0 8px !important;
	border: none !important;
	border-bottom: 2px solid #d1d5db !important;
	background: transparent !important;
	border-radius: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -.01em;
	color: #1a2744;
}

/* layout.css */
/* =========================================================
 *  Layout Overrides
 *  SWELL親テーマのレイアウト値を上書き
 * ========================================================= */

/* コンテンツエリア上部余白を縮小（親テーマ: 4em → 2rem） */
@media (min-width: 600px) {
  .l-content {
    padding-top: 2rem !important;
  }
}

/* pagination.css */
/* ページネーション — Fluent(控えめ) */
.c-pagination {
	margin-top: 24px !important;
	gap: 4px;
	justify-content: center;
	align-items: center;
	border: none;
	padding: 3px 4px;
	background: rgba(248, 250, 252, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
	width: fit-content;
	margin-left: auto !important;
	margin-right: auto !important;
}
.c-pagination .page-numbers {
	width: 30px !important;
	min-width: 30px !important;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	color: #64748b;
	background: transparent;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	transition: all .2s ease;
}
.c-pagination .page-numbers:hover {
	color: #1e293b;
	background: rgba(255, 255, 255, 0.7);
}
.c-pagination .page-numbers.current {
	color: #fff;
	font-weight: 700;
	background: #1e3a5f;
	border-radius: 8px;
}
.c-pagination .page-numbers.prev,
.c-pagination .page-numbers.next {
	width: auto;
	height: 30px;
	padding: 0 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	background: rgba(255, 255, 255, 0.5);
}
.c-pagination .page-numbers.prev:hover,
.c-pagination .page-numbers.next:hover {
	color: #1e293b;
	background: rgba(255, 255, 255, 0.8);
}
.c-pagination__dot {
	background: none !important;
	border: none !important;
	color: #cbd5e1;
	font-size: 12px;
	letter-spacing: 3px;
	width: auto !important;
}
.c-pagination:has(.page-numbers:only-child) {
	display: none;
}
.home .c-pagination {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

