@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Template: cocoon-master
*/

/* ============================================
   闇金注意喚起サイト - 全面リデザイン版
   Tone: Editorial × Neo-Brutalism ミックス
   固すぎない / シンプルすぎない / 見たことのない
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Outfit:wght@400;600;800&display=swap');

/* ----------------------------------------
   カラー変数
   ---------------------------------------- */
:root {
  /* ベース */
  --ink: #1a1a2e;
  --ink-soft: #3d3d5c;
  --ink-mute: #8888a0;

  /* 背景 */
  --canvas: #f5f3ef;
  --surface: #ffffff;
  --surface-warm: #faf8f5;

  /* アクセント: ティールブルー */
  --accent: #2a9d8f;
  --accent-bright: #34c6b5;
  --accent-deep: #1f7a6f;
  --accent-pale: #e6f5f3;

  /* 警告系 */
  --danger: #e63946;
  --danger-pale: #fdeced;
  --warning: #e9a820;
  --warning-pale: #fdf5e0;

  /* ニュートラル */
  --border: #e0ddd7;
  --border-strong: #c8c4bc;
  --tag-bg: #eae7e2;

  /* エフェクト */
  --shadow-card: 4px 4px 0 rgba(26, 26, 46, 0.08);
  --shadow-hover: 6px 6px 0 rgba(42, 157, 143, 0.15);
  --shadow-float: 0 12px 40px rgba(26, 26, 46, 0.08);

  /* 角丸 */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* フォント */
  --font-ja: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-en: 'Outfit', sans-serif;
}


/* ----------------------------------------
   全体ベース
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-ja);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-deep);
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}


/* ----------------------------------------
   Cocoonデフォルト要素を非表示
   ---------------------------------------- */
#header, .header, .navi, #navi,
.breadcrumb, #breadcrumb,
.footer, #footer {
  display: none !important;
}


/* ========================================
   カスタムヘッダー
   ======================================== */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 3px solid var(--accent);
}

.site-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ロゴ */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #fff !important;
}

.site-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-en);
  transform: rotate(-2deg);
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo .logo-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-logo .logo-sub {
  font-size: 10px;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ナビ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li a {
	display: block;
	padding: 8px 16px;
	color: rgb(0, 25, 52) !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--r-sm);
	transition: all 0.2s;
}

.site-nav li a:hover {
  color: #105cc5 !important;
  background: rgba(255,255,255,0.08);
}

.site-nav li.nav-cta a {
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--r-md);
  padding: 8px 20px;
  margin-left: 8px;
  font-weight: 700;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.site-nav li.nav-cta a:hover {
  background: var(--accent-bright);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

/* 検索バー */
.header-search {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.header-search-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 28px;
}

.header-search-form {
  display: flex;
  gap: 6px;
  max-width: 380px;
}

.header-search-form input[type="text"] {
  flex: 1;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  outline: none;
}

.header-search-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.header-search-form button {
  padding: 7px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}


/* モバイルメニュー */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}
.mobile-overlay.active { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--ink);
  z-index: 10001;
  transition: right 0.3s;
  overflow-y: auto;
}
.mobile-drawer.active { right: 0; }

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-drawer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
}

.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer ul li a {
  display: block;
  padding: 14px 20px;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-drawer .drawer-cta a {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  margin: 16px 20px;
  border-radius: var(--r-md);
  border-bottom: none;
}


/* ========================================
   パンくず
   ======================================== */
.site-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.site-breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 28px;
}

.site-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.site-breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--ink-mute);
}

.site-breadcrumb a {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
}

.site-breadcrumb a:hover {
  color: var(--accent) !important;
}

.site-breadcrumb .sep {
  margin: 0 6px;
  color: var(--border-strong);
}


/* ========================================
   記事ページ
   ======================================== */
.article {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5em 2em;
  box-shadow: var(--shadow-card);
}

.entry-title {
  font-size: 1.6em;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.6em;
  padding-left: 16px;
  border-left: 5px solid var(--accent);
  position: relative;
}

/* 見出しh2: カードスタイル */
.article h2 {
  font-size: 1.2em;
  font-weight: 800;
  color: var(--ink);
  padding: 14px 20px;
  margin: 2.5em 0 1em;
  background: var(--accent-pale);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  position: relative;
}

.article h2::before {
  content: none;
}

/* 見出しh3 */
.article h3 {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--accent-deep);
  padding: 6px 0 6px 14px;
  margin: 1.8em 0 0.7em;
  border-left: 3px solid var(--accent);
  background: none;
  border-radius: 0;
}


/* ========================================
   悪質度バッジ
   ======================================== */
.bad-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1.5em;
  border: 2px solid;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.06);
}

.bad-level-badge.level-1,
.bad-level-badge.level-2 {
  background: var(--warning-pale);
  color: var(--warning);
  border-color: var(--warning);
}

.bad-level-badge.level-3 {
  background: var(--danger-pale);
  color: var(--danger);
  border-color: var(--danger);
}

.bad-level-badge.level-4,
.bad-level-badge.level-5 {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}


/* ========================================
   業者情報テーブル
   ======================================== */
.provider-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 1.5em 0 2em;
  font-size: 14px;
  box-shadow: var(--shadow-card);
}

.provider-info-table th,
.provider-info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.provider-info-table th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  width: 150px;
  white-space: nowrap;
  font-size: 13px;
}

.provider-info-table td {
  background: var(--surface);
  color: var(--ink);
}

.provider-info-table tr:last-child th,
.provider-info-table tr:last-child td {
  border-bottom: none;
}

.provider-info-table tr:nth-child(even) td {
  background: var(--surface-warm);
}


/* ========================================
   注意・情報ボックス
   ======================================== */
.warning-box {
  background: var(--danger-pale);
  border: 2px solid var(--danger);
  border-radius: var(--r-md);
  padding: 1.5em;
  margin: 1.5em 0;
  box-shadow: 3px 3px 0 rgba(230, 57, 70, 0.1);
}

.warning-box::before {
  content: "⚠ 注意";
  display: inline-block;
  background: var(--danger);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
}

.info-box {
  background: var(--accent-pale);
  border: 2px solid var(--accent);
  border-radius: var(--r-md);
  padding: 1.5em;
  margin: 1.5em 0;
  box-shadow: 3px 3px 0 rgba(42, 157, 143, 0.1);
}

.info-box::before {
  content: "ℹ 情報";
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
}


/* ========================================
   CTA（弁護士誘導）
   ======================================== */
.cta-lawyer-box {
  background: var(--ink);
  border: 3px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 2em;
  margin: 2.5em 0;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0 rgba(42, 157, 143, 0.12);
}

.cta-lawyer-box .cta-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 3px 14px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-en);
}

.cta-lawyer-box .cta-title {
  color: #fff;
  font-size: 1.3em;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.4;
}

.cta-lawyer-box .cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-lawyer-box .cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  border: 2px solid var(--accent-bright);
}

.cta-lawyer-box .cta-button:hover {
  background: var(--accent-bright);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.cta-lawyer-box .cta-sub {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  margin-top: 10px;
}

/* サイドバー用 */
.cta-lawyer-sidebar {
  background: var(--ink);
  border: 2px solid var(--accent);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 rgba(42, 157, 143, 0.1);
}

.cta-lawyer-sidebar .cta-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.cta-lawyer-sidebar .cta-text {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.cta-lawyer-sidebar .cta-button {
  display: block;
  background: var(--accent);
  color: #fff !important;
  padding: 10px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.2s;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}

.cta-lawyer-sidebar .cta-button:hover {
  background: var(--accent-bright);
}


/* ========================================
   業者一覧カード
   ======================================== */
.provider-archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 1.5em 0;
}

.provider-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow-card);
}

.provider-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-2px, -2px);
  border-color: var(--accent);
}

.provider-card a {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  padding: 18px;
}

.provider-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.provider-card .card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.provider-card .card-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
  border: 1px solid;
}

.provider-card .card-badge.level-low {
  background: var(--warning-pale);
  color: var(--warning);
  border-color: var(--warning);
}

.provider-card .card-badge.level-mid {
  background: var(--danger-pale);
  color: var(--danger);
  border-color: var(--danger);
}

.provider-card .card-badge.level-high {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.provider-card .card-meta {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.6;
}

.provider-card .card-category {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
}


/* ========================================
   検索フォーム
   ======================================== */
.provider-search-form {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.provider-search-form .search-inner {
  display: flex;
  gap: 8px;
}

.provider-search-form input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: border-color 0.2s;
}

.provider-search-form input[type="text"]:focus {
  border-color: var(--accent);
  outline: none;
}

.provider-search-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.provider-search-form button:hover {
  background: var(--accent-bright);
}


/* ========================================
   カスタムフッター
   ======================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  margin-top: 60px;
  border-top: 3px solid var(--accent);
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-en);
}

.footer-brand .footer-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-en);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-bright) !important;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 28px;
}

.site-footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--accent-bright) !important;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-en);
}


/* ========================================
   PC / SP 切替
   ======================================== */
.pc-only { display: flex; }
.sp-only { display: none; }


/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 834px) {
  .pc-only { display: none !important; }
  .sp-only { display: flex !important; }

  .site-header-inner {
    height: 56px;
    padding: 0 16px;
  }

  .site-logo .logo-main { font-size: 13px; }
  .site-logo .logo-sub { font-size: 9px; }
  .site-logo .logo-mark { width: 30px; height: 30px; font-size: 15px; }

  .header-search-inner { padding: 6px 16px; }
  .header-search-form { max-width: 100%; }

  .site-breadcrumb-inner { padding: 8px 16px; }
  .site-breadcrumb { font-size: 11px; }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 36px 16px 24px;
  }

  .provider-archive-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .article {
    padding: 1.5em 1.2em;
    border-radius: var(--r-md);
  }

  .entry-title { font-size: 1.25em; }
  .article h2 { font-size: 1.05em; padding: 12px 16px; }

  .cta-lawyer-box { padding: 1.5em; }
  .cta-lawyer-box .cta-title { font-size: 1.1em; }
  .cta-lawyer-box .cta-button { display: block; text-align: center; }

  .provider-info-table,
  .provider-info-table tbody,
  .provider-info-table tr,
  .provider-info-table th,
  .provider-info-table td {
    display: block;
    width: 100%;
  }

  .provider-info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .provider-info-table td {
    padding-top: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* ============================================
   2026 Hero / Provider Detail refresh
   先払い買取・闇金 駆け込み相談窓口
   ============================================ */
:root {
  --navy: #061f3d;
  --navy-2: #0a2b4f;
  --gold: #d5a338;
  --gold-bright: #f6ce4c;
  --red-deep: #a70404;
  --red: #b40808;
  --paper: #f7f4ef;
}

.site-header {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  border-bottom-color: var(--gold);
}
.site-logo .logo-mark,
.site-nav li.nav-cta a,
.header-search-form button,
.mobile-drawer .drawer-cta a {
  background: var(--red);
}
.site-nav li.nav-cta a {
  border: 1px solid rgba(246,206,76,.65);
  box-shadow: 0 4px 0 rgba(0,0,0,.22);
}
.site-logo .logo-sub { color: rgba(255,255,255,.52); }

.article.provider-single {
  padding: 0;
  overflow: hidden;
  border-color: #d8dde4;
  box-shadow: 0 22px 60px rgba(6,31,61,.10);
}
.provider-single .entry-title {
  border-left: 0;
  padding-left: 0;
  margin: 0;
}
.provider-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(213,163,56,.28), transparent 24%),
    linear-gradient(135deg, #fff 0%, #f8fafc 54%, #dfe8ef 100%);
  border-bottom: 6px solid var(--navy);
  position: relative;
}
.provider-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: repeating-linear-gradient(135deg, #111 0 12px, var(--gold-bright) 12px 24px);
}
.provider-alert {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.provider-title {
  color: var(--navy);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: .01em;
}
.provider-lead {
  color: #334155;
  line-height: 1.9;
  margin: 14px 0 18px;
  font-size: 15px;
}
.provider-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
.provider-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8dde4;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.provider-chip.muted { color: #64748b; }
.provider-hero .bad-level-badge { margin: 0; }
.provider-hero-cta {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(6,31,61,.20);
  align-self: start;
  position: relative;
  z-index: 1;
}
.provider-hero-cta .mini-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}
.provider-hero-cta .mini-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}
.provider-hero-cta p {
  margin: 8px 0 14px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.7;
}
.provider-red-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #d71313, var(--red-deep));
  color: #fff !important;
  text-decoration: none !important;
  border: 2px solid var(--gold-bright);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 6px 0 #6f0303;
}
.provider-hero-cta small {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  line-height: 1.5;
}
.provider-first-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 34px 0;
}
.provider-first-actions div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #fff7df;
  border: 1px solid #ead59e;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}
.provider-first-actions b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-en);
}
.provider-thumb {
  padding: 24px 34px 0;
  text-align: center;
}
.provider-thumb img {
  max-width: 100%;
  border-radius: 18px;
  border: 2px solid #d8dde4;
  box-shadow: 0 18px 48px rgba(6,31,61,.10);
}
.provider-section,
.provider-warning,
.provider-content,
.provider-bottom-cta,
.provider-source-note {
  margin-left: 34px;
  margin-right: 34px;
}
.provider-section { margin-top: 28px; }
.provider-section h2,
.provider-content h2,
.provider-two-col h2 {
  background: linear-gradient(90deg, #fff4f4, #fff);
  border-left: 6px solid var(--red);
  color: var(--navy);
}
.provider-content { margin-top: 28px; }
.provider-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.info-box.no-icon::before { content: none; }
.info-box.no-icon h2 {
  margin-top: 0;
  font-size: 1.05em;
}
.info-box.no-icon ul {
  margin-bottom: 0;
}
.provider-warning p { margin: 0; }
.provider-bottom-cta { margin-top: 32px; }
.cta-lawyer-box.provider-bottom-cta {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.cta-lawyer-box.provider-bottom-cta .cta-label { background: var(--gold); color: var(--navy); }
.cta-lawyer-box.provider-bottom-cta .cta-button {
  background: linear-gradient(180deg, #d71313, var(--red-deep));
  border-color: var(--gold-bright);
}
.provider-source-note {
  margin-top: 22px;
  margin-bottom: 34px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 12px;
}

@media (max-width: 834px) {
  .provider-hero,
  .provider-first-actions,
  .provider-two-col {
    grid-template-columns: 1fr;
  }
  .provider-hero { padding: 24px 18px 30px; }
  .provider-first-actions { padding: 18px 18px 0; }
  .provider-thumb { padding: 20px 18px 0; }
  .provider-section,
  .provider-warning,
  .provider-content,
  .provider-bottom-cta,
  .provider-source-note {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 480px) {
  .provider-title { font-size: 25px; }
  .provider-hero-cta { padding: 17px; }
  .provider-first-actions div { align-items: flex-start; }
}

/* ========================================
   水色系ブランド調整 2026
   Hero image: /images/yamikin-hero-blue.png
   ======================================== */
:root {
  --ink: #06366c;
  --ink-soft: #245074;
  --ink-mute: #7189a3;
  --canvas: #f5fbff;
  --surface-warm: #f7fcff;
  --accent: #1b8ff2;
  --accent-bright: #55c7ff;
  --accent-deep: #0b66c3;
  --accent-pale: #eaf7ff;
  --danger: #0b70d6;
  --danger-pale: #eef8ff;
  --warning: #39aef5;
  --warning-pale: #f0f9ff;
  --border: #d6e8f7;
  --border-strong: #abcfe8;
  --tag-bg: #eaf4ff;
  --shadow-card: 0 12px 34px rgba(11, 95, 184, 0.08);
  --shadow-hover: 0 18px 48px rgba(11, 112, 214, 0.14);
  --shadow-float: 0 18px 50px rgba(11, 95, 184, 0.10);
  --navy: #06366c;
  --navy-2: #0b66c3;
  --red: #1b8ff2;
  --red-deep: #0757b8;
  --gold: #8ccfff;
  --gold-bright: #b7e5ff;
}
body { background: var(--canvas); }
.site-header {
	background: #fff;
	border-bottom-color: #8ccfff !important;
	padding: 10px 0;
}
.site-logo .logo-mark,
.site-nav li.nav-cta a,
.header-search-form button,
.mobile-drawer .drawer-cta a { background:#1b8ff2!important; }
.site-nav li.nav-cta a { border:1px solid rgba(183,229,255,.9)!important; box-shadow:0 4px 0 rgba(3,76,159,.35)!important; }
.article,
.provider-card,
.provider-search-form,
.cta-lawyer-sidebar { border-color:#d6e8f7!important; box-shadow:0 12px 34px rgba(11,95,184,.08)!important; }
.entry-title { border-left-color:#1b8ff2!important; color:#06366c!important; }
.article h2 { background:linear-gradient(90deg,#eaf7ff,#fff)!important; border-left-color:#1b8ff2!important; color:#06366c!important; }
.article h3 { color:#0b66c3!important; border-left-color:#55c7ff!important; }
.warning-box { background:#eef8ff!important; border-color:#55c7ff!important; box-shadow:3px 3px 0 rgba(11,112,214,.08)!important; }
.warning-box::before { background:#0b70d6!important; }
.info-box { background:#eaf7ff!important; border-color:#55c7ff!important; box-shadow:3px 3px 0 rgba(11,112,214,.08)!important; }
.info-box::before { background:#1b8ff2!important; }
.bad-level-badge.level-3,
.bad-level-badge.level-4,
.bad-level-badge.level-5,
.provider-card .card-badge.level-mid,
.provider-card .card-badge.level-high { background:#0b70d6!important; border-color:#0b70d6!important; color:#fff!important; }
.cta-lawyer-box,
.cta-lawyer-sidebar,
.cta-lawyer-box.provider-bottom-cta,
.provider-hero-cta { background:linear-gradient(135deg,#06366c,#0b66c3)!important; border-color:#8ccfff!important; }
.cta-lawyer-box .cta-label,
.cta-lawyer-sidebar .cta-button,
.cta-lawyer-box .cta-button,
.cta-lawyer-box.provider-bottom-cta .cta-button,
.provider-red-btn { background:linear-gradient(180deg,#1b8ff2,#0757b8)!important; border-color:#b7e5ff!important; box-shadow:0 6px 0 #034c9f!important; }
.provider-hero { background:radial-gradient(circle at 92% 8%,rgba(116,207,255,.36),transparent 24%),linear-gradient(135deg,#fff 0%,#f7fcff 54%,#dff3ff 100%)!important; border-bottom-color:#8ccfff!important; }
.provider-hero::after { background:linear-gradient(90deg,#8ccfff,#eaf7ff)!important; height:8px!important; }
.provider-alert { background:#0b66c3!important; }
.provider-title,.provider-chip,.provider-first-actions div { color:#06366c!important; }
.provider-hero-cta .mini-label,
.cta-lawyer-box.provider-bottom-cta .cta-label { background:#eaf7ff!important; color:#0b66c3!important; }
.provider-first-actions div { background:#f0f9ff!important; border-color:#b9dfff!important; }
.provider-first-actions b { background:#0b70d6!important; }
.provider-section h2,
.provider-content h2,
.provider-two-col h2 { background:linear-gradient(90deg,#eaf7ff,#fff)!important; border-left-color:#1b8ff2!important; color:#06366c!important; }
.provider-thumb img { border-color:#d6e8f7!important; box-shadow:0 18px 48px rgba(11,95,184,.10)!important; }
.provider-source-note { background:#f7fcff!important; border-color:#d6e8f7!important; }
.site-logo img {width: 70%;}
.site-nav li {border-right: 2px solid #ddd;}
.site-nav li a img {
	width: 25px;
}
.site-nav li a {
	display: flex;
	gap: 10px;
	align-items: center;
}