@charset "UTF-8";
/*
Theme Name: 音源ライセンス
Theme URI:
Description: 著作権フリー音源・BGM/効果音サービスの比較メディア向けWordPressテーマ。動画編集者向け。紫系（Purple Dream）／header_a・hero_d・footer_c。
Author: 音源ライセンス編集部
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: musicrights
*/

/*
============================================
SMACSS形式のクラス命名規則
- l-* : レイアウト
- m-* : モジュール
- c-* : コンポーネント
- is-* : 状態
- u-* : ユーティリティ
============================================
*/

/* ==========================================================================
   Base - リセットと基本スタイル
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1e1a2e;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #8b5cf6;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #7c3aed;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 明るいロゴ（Binance, OKXなど）は暗い背景で表示 */
/* 明るいロゴ用：暗い背景（画像部分のみ・角丸） */
.logo-img[data-logo-type="light"] {
  background-color: #1a1a1a;
  background-clip: content-box;
  border-radius: 6px;
  box-sizing: border-box;
}

/* 暗いロゴ（白い縁が目立つもの）用：白い背景・画像部分のみ・他アイコンと同じサイズ感 */
.logo-img[data-logo-type="dark"] {
  background-color: #ffffff;
  background-clip: content-box;
  border: 1px solid #eee;
  border-radius: 6px;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Layout - 全体構造
   ========================================================================== */

.site-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-bar {
  background: linear-gradient(135deg, #1e1a2e 0%, #2a1f47 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-bar__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* デフォルト: 下層ページ用2カラムレイアウト */
.layout-area {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  flex: 1;
}

.layout-area__main {
  order: 2;
  min-width: 0; /* グリッドのオーバーフロー防止 */
}

.layout-area__side {
  order: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* トップページ用: フル幅1カラムレイアウト */
.home .layout-area {
  display: block;
  max-width: 1600px;
  padding: 0 4rem 4rem;
}

.home .layout-area__main {
  width: 100%;
}

.site-end {
  background: #1e1a2e;
  color: #94a3b8;
  padding: 5rem 4rem 3rem;
  margin-top: auto;
}

.site-end__inner {
  max-width: 1600px;
  margin: 0 auto;
}

/* ==========================================================================
   Components - ヘッダー
   ========================================================================== */

.logo-unit {
  text-align: center;
  margin-bottom: 1.5rem;
}

.logo-unit__logo {
  height: 4rem;
  width: auto;
}

.logo-unit__name {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ナビゲーション - 下部横並び */
.gnav {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.gnav__list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gnav__item {
  position: relative;
}

.gnav__link {
  display: block;
  color: #e2e8f0;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.gnav__link:hover {
  background: rgba(139,92,246, 0.2);
  color: #8b5cf6;
}

.gnav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 1rem 0;
  margin-top: 1rem;
}

.gnav__item:hover .gnav__dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.gnav__dropdown-link {
  display: block;
  padding: 1rem 2rem;
  color: #334155;
  font-size: 1.3rem;
}

.gnav__dropdown-link:hover {
  background: #f1f5f9;
  color: #8b5cf6;
}

/* メガメニュー */
.gnav__dropdown--mega {
  min-width: 700px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gnav__dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gnav__dropdown-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e1a2e;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #8b5cf6;
  margin-bottom: 0.5rem;
}

.gnav__dropdown-link--more {
  font-weight: 600;
  color: #8b5cf6;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid #e2e8f0;
}

.gnav__dropdown-link--more:hover {
  background: #f5f3ff;
}

/* ==========================================================================
   Components - ヒーローセクション（トップページ）
   ========================================================================== */

.pickup-strip {
  background: linear-gradient(135deg, #1e1a2e 0%, #2a1f47 50%, #3a2766 100%);
  padding: 5rem 4rem;
  margin: 0 0 4rem 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.pickup-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(139,92,246,0.1)" stroke-width="0.5"/></svg>');
  background-size: 200px;
  opacity: 0.5;
}

.pickup-strip__slider {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pickup-strip__item {
  display: block;
  background: rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  margin: 0 1rem;
}

.pickup-strip__slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -2.6rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pickup-strip__slider .slick-dots li {
  margin: 0;
}

.pickup-strip__slider .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.pickup-strip__slider .slick-dots .slick-active button {
  background: #8b5cf6;
}

.pickup-strip__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pickup-strip__meta {
  padding: 2rem;
}

.pickup-strip__category {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pickup-strip__title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ==========================================================================
   Components - 取引所カード（横スクロール）
   ========================================================================== */

.svc-rank {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.svc-rank__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.svc-rank__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1a2e;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.svc-rank__title::before {
  content: '';
  width: 4px;
  height: 2.4rem;
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  border-radius: 2px;
}

.svc-rank__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
}

.svc-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.svc-card:hover {
  transform: translateY(-5px);
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139,92,246,0.15);
}

.svc-card.is-rank-1 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #f59e0b;
}

.svc-card.is-rank-2 {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-color: #9ca3af;
}

.svc-card.is-rank-3 {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  border-color: #f97316;
}

.svc-card__rank {
  font-size: 1.2rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.svc-card__logo {
  height: 50px;
  width: auto;
  margin: 1rem 0;
}

.svc-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e1a2e;
  margin-bottom: 1.5rem;
}

.svc-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.svc-card__btn {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.svc-card__btn--primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
}

.svc-card__btn--secondary {
  background: #1e1a2e;
  color: #fff;
}

/* セクション下部リンク */
.see-more {
  text-align: center;
  margin-top: 2rem;
}

.see-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #475569;
  padding: 1.1rem 3rem;
  border-radius: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.see-more__btn:hover {
  background: #8b5cf6;
  color: #fff;
}

/* ==========================================================================
   Components - スペック比較表
   ========================================================================== */

.spec-grid {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.spec-grid__header {
  margin-bottom: 2rem;
}

.spec-grid__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1a2e;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spec-grid__title::before {
  content: '';
  width: 4px;
  height: 2.4rem;
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  border-radius: 2px;
}

.spec-grid__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec-grid__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1200px;
}

.spec-grid__table th,
.spec-grid__table td {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1.3rem;
  border-bottom: 1px solid #e2e8f0;
}

.spec-grid__table thead th {
  background: linear-gradient(135deg, #1e1a2e, #2a1f47);
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.spec-grid__table thead th a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.spec-grid__table thead th:first-child {
  border-radius: 1rem 0 0 0;
}

.spec-grid__table thead th:last-child {
  border-radius: 0 1rem 0 0;
}

.spec-grid__table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.spec-grid__table tbody tr:hover {
  background: #f5f3ff;
}

.spec-grid__table .u-label-col {
  background: #f1f5f9;
  font-weight: 600;
  color: #475569;
  text-align: left;
  padding-left: 2rem;
  position: sticky;
  left: 0;
  min-width: 120px;
}

.spec-grid__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 120px;
  margin: 0 auto;
}

.spec-grid__name {
  font-size: 1.2rem;
  color: #64748b;
  display: block;
  line-height: 1.4;
}

.spec-grid__table thead th .ico_rank01,
.spec-grid__table thead th .ico_rank02,
.spec-grid__table thead th .ico_rank03,
.spec-grid__table thead th .ico_rank04,
.spec-grid__table thead th .ico_rank05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.4;
  color: #1e1a2e;
}

.spec-grid__table thead th .ico_rank01::before,
.spec-grid__table thead th .ico_rank02::before,
.spec-grid__table thead th .ico_rank03::before,
.spec-grid__table thead th .ico_rank04::before,
.spec-grid__table thead th .ico_rank05::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.spec-grid__table thead th .ico_rank01::before { content: "1"; background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.spec-grid__table thead th .ico_rank02::before { content: "2"; background: linear-gradient(135deg, #9ca3af, #6b7280); }
.spec-grid__table thead th .ico_rank03::before { content: "3"; background: linear-gradient(135deg, #fb923c, #ea580c); }
.spec-grid__table thead th .ico_rank04::before { content: "4"; background: #e2e8f0; color: #475569; }
.spec-grid__table thead th .ico_rank05::before { content: "5"; background: #cbd5e1; color: #475569; }

.spec-grid__note {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #64748b;
  text-align: right;
}

/* 評価アイコン */
.u-rating--excellent::before { content: '◎'; color: #8b5cf6; font-size: 2rem; }
.u-rating--good::before { content: '○'; color: #3b82f6; font-size: 2rem; }
.u-rating--average::before { content: '△'; color: #f59e0b; font-size: 2rem; }
.u-rating--poor::before { content: '×'; color: #ef4444; font-size: 2rem; }

/* ==========================================================================
   Components - 最新コンテンツ
   ========================================================================== */

.recent {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.recent__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.recent__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1a2e;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recent__title::before {
  content: '';
  width: 4px;
  height: 2.4rem;
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-radius: 2px;
}

.recent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.recent__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.recent__item:hover {
  background: #f8fafc;
}

.recent__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 0.8rem;
  overflow: hidden;
}

.recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recent__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.5;
  margin-bottom: auto;
}

.recent__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  color: #64748b;
  margin-top: 1rem;
}

.recent__category {
  background: #e0f2fe;
  color: #0284c7;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  font-weight: 500;
}

.recent__more {
  text-align: center;
  margin-top: 2rem;
}

.recent__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #475569;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.recent__more-btn:hover {
  background: #8b5cf6;
  color: #fff;
}

/* ==========================================================================
   Components - トピック（カテゴリ・タグ）
   ========================================================================== */

.discover {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.discover__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}

.discover__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1a2e;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discover__title::before {
  content: '';
  width: 4px;
  height: 2.4rem;
  background: linear-gradient(180deg, #ec4899, #db2777);
  border-radius: 2px;
}

.discover__section {
  margin-bottom: 2rem;
}

.discover__section:last-child {
  margin-bottom: 0;
}

.discover__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
}

.discover__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.discover__tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.discover__tag:hover {
  background: #8b5cf6;
  color: #fff;
}

/* ==========================================================================
   Components - サイドバー
   ========================================================================== */

.side-box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.side-box__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #8b5cf6;
}

.side-rank {
  counter-reset: rank;
}

.side-rank__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f1f5f9;
  counter-increment: rank;
}

.side-rank__item:last-child {
  border-bottom: none;
}

.side-rank__item::before {
  content: counter(rank);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: #e2e8f0;
  color: #475569;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.side-rank__item:nth-child(1)::before {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

.side-rank__item:nth-child(2)::before {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  color: #fff;
}

.side-rank__item:nth-child(3)::before {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
}

.side-rank__logos {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 88px;
  flex-shrink: 0;
}

.side-rank__logo {
  display: block;
  width: 88px;
  height: 32px;
  padding: 2px;
  box-sizing: border-box;
  object-fit: contain;
  background-color: transparent;
  border-radius: 4px;
  flex-shrink: 0;
}

.side-rank__logos .side-rank__logo {
  width: 42px;
}

.side-rank__name {
  flex: 1;
  min-width: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.3;
  padding: 0 0.5rem;
}

.side-rank__actions {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
}

.side-rank__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 28px;
  padding: 0 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.side-rank__btn--review {
  background: #8b5cf6;
  color: #fff;
}

.side-rank__btn--official {
  background: #1e1a2e;
  color: #fff;
}

/* ==========================================================================
   Components - 記事ページ
   ========================================================================== */

.m-article {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: visible;
}

.m-article__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.m-article__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e1a2e;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.m-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.3rem;
  color: #64748b;
}

.m-article__category {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.m-article__category a {
  display: block;
  color: #fff;
  padding: 0.4rem 1.2rem;
}

.m-article__category:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139,92,246, 0.3);
}

.m-article__category a:hover {
  color: #fff;
}

.m-article__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.m-article__eyecatch {
  margin-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.m-article__eyecatch img {
  width: 100%;
  height: auto;
}

/* リード文（吹き出しが入る場合のアイコン切れ防止） */
.m-article__lead {
  overflow: visible;
}

/* 記事本文 */
.article-body {
  font-size: 1.6rem;
  line-height: 2;
  color: #334155;
  overflow: visible;
}

.article-body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e1a2e;
  margin: 5rem 0 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, #f5f3ff 0%, transparent 100%);
  border-left: 4px solid #8b5cf6;
  border-radius: 0 1rem 1rem 0;
}

.article-body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1e1a2e;
  margin: 4rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.article-body h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #8b5cf6;
}

.article-body h4 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1e1a2e;
  margin: 3rem 0 1rem;
  padding-left: 1.5rem;
  border-left: 3px solid #8b5cf6;
}

.article-body p {
  margin-bottom: 2rem;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}

.article-body ul,
.article-body ol {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 1.4rem;
  height: 1.4rem;
  background: none;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  box-sizing: border-box;
}

/* 404ページ（PC・SPともボタン/カードで統一、リストマークは出さない） */
.nf-links {
  text-align: center;
}
.nf-links h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.nf-links h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.nf-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}
.nf-links__list a {
  display: inline-block;
  padding: 1rem 2rem;
  background: #8b5cf6;
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nf-links__list a:hover {
  opacity: 0.9;
}
.nf-links__list--exchange a {
  background: #f1f5f9;
  color: #475569;
}
.nf-links__list--exchange a:hover {
  opacity: 0.9;
}
.nf-links__list li {
  padding-left: 0;
}
.nf-links__list li::before {
  content: none;
  display: none;
}

.article-body ul.list_maru li,
.article-body ul.list_batsu li {
  padding-left: 4rem;
}

.article-body ul.list_maru li::before {
  width: 2.6rem;
  height: 2.6rem;
  top: 0.2em;
  background: none;
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  box-sizing: border-box;
}

.article-body ul.list_batsu li::before {
  width: 2.6rem;
  height: 2.6rem;
  top: 0.2em;
  background:
    linear-gradient(45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%);
  border: none;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
}

.article-body ol {
  counter-reset: ol-counter;
}

.article-body ol li {
  counter-increment: ol-counter;
}

.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #8b5cf6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1.4rem;
}

.article-body table th,
.article-body table td {
  padding: 1.2rem;
  border: 1px solid #e2e8f0;
}

.article-body table th a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.article-body table th img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 120px;
  margin: 0 auto;
}

.article-body table th .ico_rank01,
.article-body table th .ico_rank02,
.article-body table th .ico_rank03,
.article-body table th .ico_rank04,
.article-body table th .ico_rank05 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.4;
  color: #1e1a2e;
  justify-content: center;
}

.article-body table th .ico_rank01::before,
.article-body table th .ico_rank02::before,
.article-body table th .ico_rank03::before,
.article-body table th .ico_rank04::before,
.article-body table th .ico_rank05::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.article-body table th .ico_rank01::before { content: "1"; background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.article-body table th .ico_rank02::before { content: "2"; background: linear-gradient(135deg, #9ca3af, #6b7280); }
.article-body table th .ico_rank03::before { content: "3"; background: linear-gradient(135deg, #fb923c, #ea580c); }
.article-body table th .ico_rank04::before { content: "4"; background: #e2e8f0; color: #475569; }
.article-body table th .ico_rank05::before { content: "5"; background: #cbd5e1; color: #475569; }

.article-body table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1e1a2e;
}

.article-body table td.bg_nijumaru {
  background: url('images/common/ico_nijumaru.svg') #fff no-repeat center;
  background-size: auto 70%;
}

.article-body table td.bg_maru {
  background: url('images/common/ico_maru.svg') #fff no-repeat center;
  background-size: auto 70%;
}

.article-body table td.bg_sankaku {
  background: url('images/common/ico_sankaku.svg') #fff no-repeat center;
  background-size: auto 70%;
}

.article-body table td.bg_batsu {
  background: url('images/common/ico_batsu.svg') #fff no-repeat center;
  background-size: auto 70%;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 2rem 2rem 2rem 5.2rem;
  background: #f8fafc;
  border-left: 4px solid #94a3b8;
  border-radius: 0 1rem 1rem 0;
  font-style: normal;
  color: #475569;
  position: relative;
}

.article-body blockquote::before {
  content: """;
  position: absolute;
  left: 2rem;
  top: 1.2rem;
  font-size: 2.4rem;
  line-height: 1;
  color: #94a3b8;
  font-weight: 700;
}

/* ==========================================================================
   Components - SNSシェア・URLコピー
   ========================================================================== */

.m-share {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1.5rem;
}

.m-share__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.m-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-share__list li {
  margin: 0;
  padding: 0;
}

.m-share__list li::before {
  display: none;
}

.m-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.m-share__link img {
  width: 28px;
  height: 28px;
}

.m-share__link--twitter {
  background: #fff;
}

.m-share__link--twitter:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.m-share__link--facebook {
  background: #fff;
}

.m-share__link--facebook:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.m-share__link--line {
  background: #fff;
}

.m-share__link--line:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.m-share__link--hatena {
  background: #fff;
}

.m-share__link--hatena:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* URLコピーボタン */
.m-copy-url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 3rem;
  text-align: center;
}

.m-copy-url:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background: #f5f3ff;
}

.m-copy-url.is-copied {
  border-color: #8b5cf6;
  background: #8b5cf6;
  color: #fff;
}

/* 前後の記事ナビ */
.m-post-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.m-post-nav__item {
  flex: 1;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.m-post-nav__item:hover {
  background: #f5f3ff;
}

.m-post-nav__label {
  display: block;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.m-post-nav__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.4;
}

/* カテゴリリンク */
.m-category-link {
  margin-bottom: 3rem;
  text-align: center;
}

.m-category-link__btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1e1a2e;
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.m-category-link__btn:hover {
  background: #8b5cf6;
  color: #fff;
}

/* 関連タグ */
.m-related-tags {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  color: #64748b;
}

.m-related-tags__label {
  font-weight: 600;
}

.m-related-tags__list a {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 1rem;
  background: #f1f5f9;
  border-radius: 0.4rem;
  color: #475569;
  transition: all 0.3s ease;
}

.m-related-tags__list a:hover {
  background: #8b5cf6;
  color: #fff;
}

/* 関連記事 */
.m-related {
  margin-bottom: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.m-related__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 2rem;
}

.m-related__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.m-related__item {
  padding: 0;
  margin: 0;
}

.m-related__item::before {
  display: none;
}

.m-related__item a {
  display: block;
  background: #f8fafc;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.m-related__item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.m-related__item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.m-related__item-title {
  display: block;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.4;
}

/* 人気記事 */
.m-popular {
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.m-popular__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 2rem;
}

.m-popular__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.m-popular__item {
  padding: 0;
  margin: 0;
}

.m-popular__item::before {
  display: none;
}

.m-popular__item a {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.m-popular__item a:hover {
  background: #f5f3ff;
}

.m-popular__item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.m-popular__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-popular__category {
  display: inline-block;
  font-size: 1.1rem;
  color: #8b5cf6;
  margin-bottom: 0.3rem;
}

.m-popular__item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.4;
}

/* 目次（fxprem 同様: 開閉ボタン・下矢印・閉時は高さ制限＋下透過） */
.mokuji {
  width: 100%;
  margin-top: 3rem;
}

.mokuji_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.toc_toggle_input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.toc_toggle_label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  align-self: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f766e;
  cursor: pointer;
  user-select: none;
}

.toc_toggle_label:hover {
  color: #0d9488;
}

.toc_toggle_close {
  display: none;
}

#toc_toggle:checked ~ .toc_toggle_label .toc_toggle_open {
  display: none;
}

#toc_toggle:checked ~ .toc_toggle_label .toc_toggle_close {
  display: inline;
}

.toc_toggle_arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.5rem solid currentColor;
  margin-left: 0.2rem;
  transition: transform 0.25s ease;
  vertical-align: middle;
}

#toc_toggle:checked ~ .toc_toggle_label .toc_toggle_arrow {
  transform: rotate(180deg);
}

.toc_ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 1rem;
}

.mokuji .m-toc {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 0 0 3rem;
  border: 1px solid #e2e8f0;
  position: relative;
  max-height: 120px;
  overflow: hidden;
}

.mokuji .m-toc::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #f8fafc);
  pointer-events: none;
}

#toc_toggle:checked ~ #toc {
  max-height: none;
  overflow: visible;
}

#toc_toggle:checked ~ #toc::after {
  display: none;
}

/* 目次リスト: 番号表示・階層はインデント（参考: fxprem） */
.m-toc__list {
  padding-left: 1.8rem;
  list-style-type: decimal;
  list-style-position: outside;
}

.m-toc__list li {
  margin-bottom: 0.6rem;
  padding-left: 0.3rem;
}

.m-toc__list li::before {
  display: none;
}

.m-toc__list ol {
  margin: 0.4rem 0 0.6rem 0;
  padding-left: 1.8rem;
  list-style-type: decimal;
  list-style-position: outside;
}

.m-toc__list ol li {
  margin-bottom: 0.4rem;
}

.m-toc__list a {
  color: #475569;
  font-size: 1.4rem;
}

.m-toc__list a:hover {
  color: #8b5cf6;
}

.m-toc__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.m-toc__title::before {
  content: '📋';
}

/* ==========================================================================
   Components - フッター
   ========================================================================== */

.fnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

/* 4カラムバージョン */
.fnav--four-column {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem;
}

/* 1024px～1400px未満：ギャップとフォントサイズを調整 */
@media screen and (min-width: 1024px) and (max-width: 1399px) {
  .fnav--four-column {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
  }
  
  .fnav--four-column .fnav__section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .fnav--four-column .fnav__list--compact a {
    font-size: 1.1rem;
  }
  
  .fnav--four-column .fnav__list--compact li {
    margin-bottom: 0.4rem;
  }
}

.fnav__section h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fnav__list li {
  margin-bottom: 0.8rem;
}

.fnav__list a {
  color: #94a3b8;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.fnav__list a:hover {
  color: #8b5cf6;
}

/* コンパクトリスト（多数表示用） */
.fnav__list--compact li {
  margin-bottom: 0.5rem;
}

.fnav__list--compact a {
  font-size: 1.2rem;
}

.flegal {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.flegal__disclaimer,
.flegal__risk {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 0.8rem;
}

.flegal__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.flegal__links a {
  color: #94a3b8;
  font-size: 1.2rem;
}

.flegal__links a:hover {
  color: #8b5cf6;
}

.flegal__copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
}

/* ==========================================================================
   Components - パンくずリスト
   ========================================================================== */

.crumbs {
  background: #f1f5f9;
  padding: 1rem 2rem;
}

.crumbs__list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: #64748b;
  overflow-x: auto;
  white-space: nowrap;
}

.crumbs__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.crumbs__item::after {
  content: '›';
  color: #94a3b8;
}

.crumbs__item:last-child::after {
  display: none;
}

.crumbs__link {
  color: #64748b;
}

.crumbs__link:hover {
  color: #8b5cf6;
}

/* ==========================================================================
   Components - ページトップボタン
   ========================================================================== */

.gotop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139,92,246,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.gotop:hover {
  transform: translateY(-5px);
}

.gotop img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.u-sp-only { display: none; }
.u-pc-only { display: block; }

.u-text-center { text-align: center; }
.u-text-left { text-align: left; }
.u-text-right { text-align: right; }

.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.u-mt-3 { margin-top: 3rem; }
.u-mt-4 { margin-top: 4rem; }

.u-mb-0 { margin-bottom: 0; }
.u-mb-1 { margin-bottom: 1rem; }
.u-mb-2 { margin-bottom: 2rem; }
.u-mb-3 { margin-bottom: 3rem; }
.u-mb-4 { margin-bottom: 4rem; }

/* ==========================================================================
   CSS_RULE.md - テキスト装飾
   ========================================================================== */

/* 赤い太字テキスト */
.txt_red {
  color: #ef4444;
  font-weight: 700;
}

/* 黒い太字テキスト */
.txt_b {
  color: #1e1a2e;
  font-weight: 700;
}

/* 小さい文字 */
.txt_small {
  font-size: 0.85em;
  color: #64748b;
}

/* 黄色マーカー（strong） */
.article-body strong {
  background: linear-gradient(transparent 60%, #fef08a 60%);
  font-weight: 700;
  padding: 0 0.2em;
}

/* 赤マーカー（mark） */
.article-body mark {
  background: linear-gradient(transparent 60%, #fecaca 60%);
  color: #dc2626;
  font-weight: 700;
  padding: 0 0.2em;
}

/* ==========================================================================
   CSS_RULE.md - 重要度（星）
   ========================================================================== */

.st_star {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 0.5rem;
}

.st_star span {
  color: #f59e0b;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   CSS_RULE.md - この記事を先読み（summary）
   ========================================================================== */

.summary {
  background: linear-gradient(135deg, #f5f3ff 0%, #d1fae5 100%);
  border: 2px solid #8b5cf6;
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
}

.summary::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  border-radius: 0 0 4px 4px;
}

.summary h2 {
  font-size: 1.8rem !important;
  font-weight: 700;
  color: #7c3aed;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.summary h2::before {
  content: '📌';
  font-size: 1.6rem;
}

.summary ul {
  margin: 0;
  padding: 0;
}

.summary ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #334155;
}

.summary ul li:last-child {
  margin-bottom: 0;
}

.summary ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #8b5cf6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CSS_RULE.md - CTAテキスト装飾
   ========================================================================== */

.article-body .cta_text {
  position: relative;
  width: fit-content;
  margin: 3rem auto 0;
  padding: 0 3rem;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 700;
}

.article-body .cta_text::before,
.article-body .cta_text::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background-size: cover;
  background-repeat: no-repeat;
}

.article-body .cta_text::before {
  left: 0;
  background-image: url('images/common/ico_fukiline_l.svg');
}

.article-body .cta_text::after {
  right: 0;
  background-image: url('images/common/ico_fukiline_r.svg');
}

/* ==========================================================================
   CSS_RULE.md - リンクボタン
   ========================================================================== */

/* サイト内リンクボタン */
.bt_link {
  margin: 2rem 0;
}

.bt_link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 1.2rem 2.5rem;
  background-color: #8b5cf6;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 3rem;
  background-image: linear-gradient(135deg, #8b5cf6, #7c3aed);
  background-repeat: no-repeat;
  box-shadow: 0 4px 15px rgba(139,92,246, 0.3);
  transition: all 0.3s ease;
}

.bt_link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246, 0.4);
  color: #fff;
}

/* ページ内リンク（下矢印） */
.bt_link_bottom {
  margin: 2rem 0;
  text-align: center;
}

.bt_link_bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 280px;
  padding: 1.2rem 2.5rem;
  background: #1e1a2e;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 3rem;
  background-repeat: no-repeat;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
  transition: all 0.3s ease;
}

.bt_link_bottom a:hover {
  background: #2a1f47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
  color: #fff;
}

/* CVボタン（sample互換） */
.article-body .bt_site,
.article-body [class^="bt_site_"] {
  display: block;
  width: fit-content;
  min-width: 220px;
  margin: 2rem auto 0;
  border-radius: 3rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 6px 0 rgba(124,58,237, 0.35);
}

.article-body .bt_site a,
.article-body [class^="bt_site_"] a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  text-align: center;
  white-space: nowrap;
}

.article-body .bt_site a::after,
.article-body [class^="bt_site_"] a::after {
  content: '\2197';
  margin-left: 0.6rem;
  font-weight: 700;
}

/* ==========================================================================
   CSS_RULE.md - 関連記事リンク（あわせて読みたい）
   ========================================================================== */

.link_box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #3b82f6;
  border-radius: 0 1rem 1rem 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  position: relative;
}

.link_box::before {
  content: 'あわせて読みたい';
  position: absolute;
  top: -0.8rem;
  left: 1rem;
  background: #3b82f6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 0.4rem;
}

.link_box p {
  margin: 0;
}

.link_box p a,
.link_box ul li a {
  color: #1e1a2e;
  font-weight: 600;
  display: block;
  padding-left: 2rem;
  position: relative;
}

.link_box p a::before,
.link_box ul li a::before {
  content: '\203A';
  position: absolute;
  left: 0.4rem;
  top: 0;
  color: #8b5cf6;
  font-weight: 700;
}

.link_box p a:hover,
.link_box ul li a:hover {
  color: #3b82f6;
}

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

.link_box ul li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e2e8f0;
}

.link_box ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.link_box ul li::before {
  display: none;
}

/* ==========================================================================
   CSS_RULE.md - キャプション
   ========================================================================== */

.caption {
  font-size: 1.3rem;
  color: #64748b;
  display: inline-block;
  margin-top: 0.5rem;
}

.caption a {
  color: #64748b;
  text-decoration: underline;
}

.caption a:hover {
  color: #8b5cf6;
}

/* ==========================================================================
   CSS_RULE.md - テーブル（スクロール対応）
   ========================================================================== */

.tbl_scroll {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  margin: 2rem 0;
}

.tbl_scroll table {
  min-width: 100%;
}

.th_fixed {
  position: sticky;
  left: 0;
  background: #f1f5f9 !important;
  z-index: 1;
  box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

/* ==========================================================================
   CSS_RULE.md - 枠（waku）
   ========================================================================== */

/* 通常枠 */
.waku {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

/* 枠内の小見出し */
.waku_st {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #e2e8f0;
}

/* 枠内のp要素 */
.waku p:not(.waku_st) {
  margin-bottom: 1rem;
}

.waku p:last-child {
  margin-bottom: 0;
}

/* 枠内のリスト */
.waku ul,
.waku ol {
  margin: 1rem 0;
}

.waku ul:last-child,
.waku ol:last-child {
  margin-bottom: 0;
}

/* メリット枠 */
.waku_merit {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.waku_merit::before {
  content: '○';
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #22c55e;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waku_merit .waku_st {
  color: #15803d;
  border-color: #86efac;
}

/* デメリット枠 */
.waku_demerit {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #ef4444;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.waku_demerit::before {
  content: '×';
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #ef4444;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waku_demerit .waku_st {
  color: #dc2626;
  border-color: #fca5a5;
}

/* 必要情報枠 */
.waku_info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.waku_info::before {
  content: 'i';
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #3b82f6;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waku_info .waku_st {
  color: #1d4ed8;
  border-color: #93c5fd;
}

/* ピックアップ枠 */
.waku_pickup {
  background: #fff7ed;
  border: 2px solid #f59e0b;
  border-radius: 1.5rem;
  padding: 0.5rem 0 3rem 0;
  margin: 2rem 0;
}

.waku_pickup .waku_st {
  color: #b45309;
  font-weight: 700;
  padding: 2rem 1rem 1rem 1rem;
  margin: 0 2rem 0 2rem;
  border-bottom: 1px solid #f59e0b;
  font-size: 1.8rem;
}

.waku_pickup p {
  margin: 2rem 3rem 0 3rem;
}

.waku_pickup ul {
  margin: 2rem 3rem 0 3rem;
}

.waku_pickup ul li {
  position: relative;
  padding-left: 2.4rem;
  line-height: 2.5rem;
  margin: 0.5rem 0 0 0;
}

.waku_pickup ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: none;
  border: 2px solid #f59e0b;
  border-radius: 50%;
  box-sizing: border-box;
}

.waku_pickup ol {
  margin: 2rem 3rem 0 3rem;
  counter-reset: custom-ol-counter;
  padding-left: 0;
}

.waku_pickup ol li {
  line-height: 2.5rem;
  margin: 0.5rem 0 0 0;
  padding: 0 0 0 3rem;
  counter-increment: custom-ol-counter;
  position: relative;
}

.waku_pickup ol li::before {
  content: counter(custom-ol-counter);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #f59e0b;
  border-radius: 50%;
  position: absolute;
  top: 0.2rem;
  left: 0;
}

/* アナウンス枠 */
.waku_speaker {
  background-color: #feedeb;
  background-image: linear-gradient(#f69292, #f69292);
  background-repeat: no-repeat;
  background-position: 8rem 2rem;
  background-size: 1px calc(100% - 4rem);
  border: 2px solid #f69292;
  border-radius: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 2rem 2rem 8rem;
  position: relative;
}

.waku_speaker::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  background:
    linear-gradient(#f69292, #f69292) 0.2rem 0.8rem / 0.6rem 1.2rem no-repeat,
    linear-gradient(135deg, transparent 55%, #f69292 55%) 0.8rem 0.4rem / 1.6rem 2rem no-repeat,
    radial-gradient(circle at 2.2rem 1.4rem, transparent 0.7rem, #f69292 0.7rem 0.8rem, transparent 0.8rem) 0 0 / 2.8rem 2.8rem no-repeat;
}

.waku_speaker p {
  margin: 0 0 1rem 2rem;
}

.waku_speaker p:last-child {
  margin: 0 0 0 2rem;
}

/* 注意枠 */
.waku_attention {
  background-color: #fffbe1;
  background-image: linear-gradient(#f6d126, #f6d126);
  background-repeat: no-repeat;
  background-position: 8rem 2rem;
  background-size: 1px calc(100% - 4rem);
  border: 2px solid #f6d126;
  border-radius: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 2rem 2rem 8rem;
  position: relative;
}

.waku_attention::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  width: 2.8rem;
  height: 2.6rem;
  transform: translateY(-50%);
  background: #f6d126;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.waku_attention::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  width: 2.8rem;
  height: 2.6rem;
  transform: translateY(-50%);
  background:
    linear-gradient(#fff, #fff) 50% 45% / 0.3rem 1rem no-repeat,
    radial-gradient(circle, #fff 0.2rem, transparent 0.21rem) 50% 75% / 0.4rem 0.4rem no-repeat;
}

.waku_attention p {
  margin: 0 0 1rem 2rem;
}

.waku_attention p:last-child {
  margin: 0 0 0 2rem;
}

/* 枠内共通のリストスタイル */
.waku_merit ul,
.waku_merit ol,
.waku_demerit ul,
.waku_demerit ol,
.waku_info ul,
.waku_info ol {
  margin: 1rem 0;
}

.article-body .waku ul li,
.article-body .waku_merit ul li,
.article-body .waku_demerit ul li,
.article-body .waku_info ul li {
  padding-left: 3.2rem;
}

.article-body .waku ul li::before {
  background: none;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  box-sizing: border-box;
}

.article-body .waku_merit ul li::before {
  background: none;
  border: 2px solid #22c55e;
  border-radius: 50%;
  box-sizing: border-box;
}

.article-body .waku_demerit ul li::before {
  background: none;
  border: 2px solid #ef4444;
  border-radius: 50%;
  box-sizing: border-box;
}

.article-body .waku_info ul li::before {
  background: none;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  box-sizing: border-box;
}

.article-body .waku ol,
.article-body .waku_merit ol,
.article-body .waku_demerit ol,
.article-body .waku_info ol,
.article-body .waku_speaker ol,
.article-body .waku_attention ol {
  counter-reset: waku-ol-counter;
  padding-left: 0;
}

.article-body .waku ol li,
.article-body .waku_merit ol li,
.article-body .waku_demerit ol li,
.article-body .waku_info ol li,
.article-body .waku_speaker ol li,
.article-body .waku_attention ol li {
  counter-increment: waku-ol-counter;
  position: relative;
  padding-left: 3rem;
}

.article-body .waku ol li::before,
.article-body .waku_merit ol li::before,
.article-body .waku_demerit ol li::before,
.article-body .waku_info ol li::before,
.article-body .waku_speaker ol li::before,
.article-body .waku_attention ol li::before {
  content: counter(waku-ol-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
}

.article-body .waku ol li::before {
  background: #94a3b8;
}

.article-body .waku_merit ol li::before {
  background: #22c55e;
}

.article-body .waku_demerit ol li::before {
  background: #ef4444;
}

.article-body .waku_info ol li::before {
  background: #3b82f6;
}

.article-body .waku_speaker ol li::before {
  background: #f69292;
}

.article-body .waku_attention ol li::before {
  background: #f6d126;
  color: #1f2937;
}

.article-body .waku_merit ul.list_maru li::before,
.article-body .waku ul.list_maru li::before {
  background: none;
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  box-sizing: border-box;
  width: 2.6rem;
  height: 2.6rem;
  top: 0.2em;
}

.article-body .waku_demerit ul.list_batsu li::before,
.article-body .waku ul.list_batsu li::before {
  background:
    linear-gradient(45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%);
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
  border-radius: 0;
  width: 2.6rem;
  height: 2.6rem;
  top: 0.2em;
}

.article-body .waku_merit ul.list_maru li,
.article-body .waku_demerit ul.list_batsu li,
.article-body .waku ul.list_maru li,
.article-body .waku ul.list_batsu li {
  padding-left: 4rem;
}

.waku_merit p:not(.waku_st),
.waku_demerit p:not(.waku_st),
.waku_info p:not(.waku_st) {
  margin-bottom: 1rem;
}

/* ==========================================================================
   CSS_RULE.md - リストマーク
   ========================================================================== */

/* 丸リストマーク（メリット用） */
.list_maru {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.list_maru li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.list_maru li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  box-sizing: border-box;
}

/* バツリストマーク（デメリット用） */
.list_batsu {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.list_batsu li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.list_batsu li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 2.2rem;
  height: 2.2rem;
  background:
    linear-gradient(45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #ef4444 46%, #ef4444 54%, transparent 54%);
  border: none;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
}

/* ==========================================================================
   CSS_RULE.md - 引用
   ========================================================================== */

.article-body blockquote {
  margin: 2rem 0;
  padding: 2rem 2rem 2rem 5.2rem;
  background: #f8fafc;
  border-left: 4px solid #94a3b8;
  border-radius: 0 1rem 1rem 0;
  font-style: normal;
  color: #475569;
  position: relative;
}

.article-body blockquote .waku_st {
  font-size: 1.5rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed #cbd5e1;
}

.article-body blockquote .caption {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
  display: block;
}

/* ==========================================================================
   CSS_RULE.md - 吹き出し（キャラクター対話）
   ========================================================================== */

/* 吹き出し共通 */
[class^="fuki_"] {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
}

[class^="fuki_"]::before {
  content: '';
  flex-shrink: 0;
  width: 80px;
  height: 110px;
  border-radius: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}

[class^="fuki_"] p {
  position: relative;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  margin: 0;
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.7;
}

[class^="fuki_"] p::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20px;
  border: 6px solid transparent;
  border-right-color: #e2e8f0;
}

[class^="fuki_"] p::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 22px;
  border: 4px solid transparent;
  border-right-color: #fff;
}

/* Aさん（通常） */
.fuki_a01::before {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  background-image: url('images/common/mc_a01.svg');
}

/* Aさん（考え中・悩む） */
.fuki_a02::before {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  background-image: url('images/common/mc_a02.svg');
}

/* Aさん（驚き） */
.fuki_a03::before {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  background-image: url('images/common/mc_a03.svg');
}

/* Bさん（通常） - 右配置 */
.fuki_b01,
.fuki_b02,
.fuki_b03,
.fuki_b04 {
  flex-direction: row-reverse;
}

.fuki_b01::before,
.fuki_b02::before,
.fuki_b03::before,
.fuki_b04::before {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  background-image: url('images/common/mc_b01.svg');
}

.fuki_b01 p::before,
.fuki_b02 p::before,
.fuki_b03 p::before,
.fuki_b04 p::before {
  left: auto;
  right: -12px;
  border-right-color: transparent;
  border-left-color: #e2e8f0;
}

.fuki_b01 p::after,
.fuki_b02 p::after,
.fuki_b03 p::after,
.fuki_b04 p::after {
  left: auto;
  right: -8px;
  border-right-color: transparent;
  border-left-color: #fff;
}

/* Bさん（ポイント） */
.fuki_b02::before {
  background-image: url('images/common/mc_b02.svg');
}

.fuki_b03::before {
  background-image: url('images/common/mc_b03.svg');
}

.fuki_b04::before {
  background-image: url('images/common/mc_b04.svg');
}

/* sample互換の吹き出しレイアウト（PC） */
.article-body .fuki_a01,
.article-body .fuki_a02,
.article-body .fuki_a03 {
  position: relative;
  display: block;
  width: calc(80% - 11rem);
  max-width: calc(100% - 20rem);
  background-color: transparent;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 10rem 0 10rem;
  overflow: visible;
}

.article-body .fuki_b01,
.article-body .fuki_b02,
.article-body .fuki_b03,
.article-body .fuki_b04 {
  position: relative;
  display: block;
  width: calc(80% - 11rem);
  max-width: calc(100% - 20rem);
  background-color: transparent;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 10rem 0 10rem;
  overflow: visible;
}

.article-body .fuki_a01 p,
.article-body .fuki_a02 p,
.article-body .fuki_a03 p,
.article-body .fuki_b01 p,
.article-body .fuki_b02 p,
.article-body .fuki_b03 p,
.article-body .fuki_b04 p {
  margin: 0;
}

.article-body .fuki_a01::after,
.article-body .fuki_a02::after,
.article-body .fuki_a03::after {
  content: "";
  position: absolute;
  top: 5rem;
  left: -1rem;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right-color: #fff;
  border-left: 0;
  margin-top: -1rem;
  transform: translateY(-10%);
}

.article-body .fuki_b01::after,
.article-body .fuki_b02::after,
.article-body .fuki_b03::after,
.article-body .fuki_b04::after {
  content: "";
  position: absolute;
  top: 5rem;
  right: -1rem;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-left-color: #fff;
  border-right: 0;
  margin-top: -1rem;
  transform: translateY(-10%);
}

.article-body .fuki_a01::before,
.article-body .fuki_a02::before,
.article-body .fuki_a03::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10rem;
  width: 8.5rem;
  height: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

.article-body .fuki_b01::before,
.article-body .fuki_b02::before,
.article-body .fuki_b03::before,
.article-body .fuki_b04::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10rem;
  width: 8.5rem;
  height: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

.article-body .fuki_a01::before { background-image: url('images/common/mc_a01.png'); }
.article-body .fuki_a02::before { background-image: url('images/common/mc_a02.png'); }
.article-body .fuki_a03::before { background-image: url('images/common/mc_a03.png'); }

.article-body .fuki_b01::before { background-image: url('images/common/mc_b01.png'); }
.article-body .fuki_b02::before { background-image: url('images/common/mc_b02.png'); }
.article-body .fuki_b03::before { background-image: url('images/common/mc_b03.png'); }
.article-body .fuki_b04::before { background-image: url('images/common/mc_b04.png'); }

/* リード文内の吹き出し（PC） - 本文と同じレイアウトでアイコン切れ防止 */
.m-article__lead .fuki_a01,
.m-article__lead .fuki_a02,
.m-article__lead .fuki_a03 {
  position: relative;
  display: block;
  width: calc(80% - 11rem);
  max-width: calc(100% - 20rem);
  background-color: transparent;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 10rem 0 10rem;
  overflow: visible;
}

.m-article__lead .fuki_b01,
.m-article__lead .fuki_b02,
.m-article__lead .fuki_b03,
.m-article__lead .fuki_b04 {
  position: relative;
  display: block;
  width: calc(80% - 11rem);
  max-width: calc(100% - 20rem);
  background-color: transparent;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 10rem 0 10rem;
  overflow: visible;
}

.m-article__lead .fuki_a01 p,
.m-article__lead .fuki_a02 p,
.m-article__lead .fuki_a03 p,
.m-article__lead .fuki_b01 p,
.m-article__lead .fuki_b02 p,
.m-article__lead .fuki_b03 p,
.m-article__lead .fuki_b04 p {
  margin: 0;
}

.m-article__lead .fuki_a01::after,
.m-article__lead .fuki_a02::after,
.m-article__lead .fuki_a03::after {
  content: "";
  position: absolute;
  top: 5rem;
  left: -1rem;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-right-color: #fff;
  border-left: 0;
  margin-top: -1rem;
  transform: translateY(-10%);
}

.m-article__lead .fuki_b01::after,
.m-article__lead .fuki_b02::after,
.m-article__lead .fuki_b03::after,
.m-article__lead .fuki_b04::after {
  content: "";
  position: absolute;
  top: 5rem;
  right: -1rem;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-left-color: #fff;
  border-right: 0;
  margin-top: -1rem;
  transform: translateY(-10%);
}

.m-article__lead .fuki_a01::before,
.m-article__lead .fuki_a02::before,
.m-article__lead .fuki_a03::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10rem;
  width: 8.5rem;
  height: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

.m-article__lead .fuki_b01::before,
.m-article__lead .fuki_b02::before,
.m-article__lead .fuki_b03::before,
.m-article__lead .fuki_b04::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10rem;
  width: 8.5rem;
  height: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

.m-article__lead .fuki_a01::before { background-image: url('images/common/mc_a01.png'); }
.m-article__lead .fuki_a02::before { background-image: url('images/common/mc_a02.png'); }
.m-article__lead .fuki_a03::before { background-image: url('images/common/mc_a03.png'); }

.m-article__lead .fuki_b01::before { background-image: url('images/common/mc_b01.png'); }
.m-article__lead .fuki_b02::before { background-image: url('images/common/mc_b02.png'); }
.m-article__lead .fuki_b03::before { background-image: url('images/common/mc_b03.png'); }
.m-article__lead .fuki_b04::before { background-image: url('images/common/mc_b04.png'); }

/* ==========================================================================
   CSS_RULE.md - よくある質問（FAQ）
   ========================================================================== */

.faq {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  margin: 1.5rem 0;
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e1a2e;
  cursor: pointer;
  list-style: none;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: 'Q';
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq summary::after {
  content: '';
  margin-left: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #8b5cf6;
  transition: transform 0.3s ease;
}

.faq[open] summary::after {
  transform: rotate(180deg);
}

.faq summary:hover {
  background: #f1f5f9;
}

.faq > div {
  padding: 0 2rem 2rem;
  position: relative;
}

.faq > div::before {
  content: 'A';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq > div p {
  margin-left: 4rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.faq > div p:first-of-type {
  margin-top: 0.5rem;
}

.faq > div p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   tail_box（記事フッター：SNS・コピー・前後記事・関連記事・人気記事）
   ========================================================================== */

.tail_box {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.tail_sns {
  margin-bottom: 2.5rem;
  text-align: center;
}

.tail_sns .share_text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 1rem;
}

.tail_sns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tail_sns ul li {
  margin: 0;
  padding: 0;
}

.tail_sns ul li::before {
  display: none;
}

.tail_sns ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.tail_sns ul li a:hover {
  background: #f5f3ff;
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.tail_sns ul li img {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0;
}

.tail_copy {
  display: block;
  width: fit-content;
  padding: 1rem 2rem;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.tail_copy:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background: #f5f3ff;
}

.tail_copy.is-copied {
  border-color: #8b5cf6;
  background: #8b5cf6;
  color: #fff;
}

.tail_nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.tail_nav_l,
.tail_nav_r {
  flex: 1;
}

.tail_nav_l a,
.tail_nav_r a {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tail_nav_l a:hover,
.tail_nav_r a:hover {
  background: #f5f3ff;
  border-color: #8b5cf6;
}

.tail_nav_l a img,
.tail_nav_r a img {
  width: 120px;
  min-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin: 0;
}

.tail_nav_l_info,
.tail_nav_r_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tail_nav_txt_l,
.tail_nav_txt_r {
  display: block;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.tail_nav_l_info a,
.tail_nav_r_info a,
.tail_nav_l a,
.tail_nav_r a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e1a2e;
  text-decoration: none;
  line-height: 1.4;
}

.tail_link_cat {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
}

.tail_link_cat a {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1e1a2e;
  color: #fff;
  border-radius: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tail_link_cat a:hover {
  background: #8b5cf6;
  color: #fff;
}

.meta_box_tag {
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  color: #64748b;
}

.meta_tag_label {
  font-weight: 600;
}

.meta_tag_links a {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 1rem;
  background: #f1f5f9;
  border-radius: 0.4rem;
  color: #475569;
  transition: all 0.3s ease;
}

.meta_tag_links a:hover {
  background: #8b5cf6;
  color: #fff;
}

.tail_related {
  padding-top: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #e2e8f0;
}

.tail_related h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1a2e;
  margin: 0 0 2rem;
  padding: 0;
  background: none;
  border: none;
}

.tail_related_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tail_related_list li {
  margin: 0;
  padding: 0;
}

.tail_related_list li::before {
  display: none;
}

.tail_related_list li a {
  display: block;
  background: #f8fafc;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tail_related_list li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-color: #8b5cf6;
}

.tail_related_list li a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.tail_related_txtbox {
  display: block;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.4;
}

.tail_related_cat {
  display: inline-block;
  font-size: 1.1rem;
  color: #8b5cf6;
  margin-bottom: 0.3rem;
}

.tail_pickup {
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.tail_pickup h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1a2e;
  margin: 0 0 2rem;
  padding: 0;
  background: none;
  border: none;
}

.popular_posts_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popular_posts_list li {
  margin: 0;
  padding: 0;
}

.popular_posts_list li::before {
  display: none;
}

.popular_posts_list li a {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.popular_posts_list li a:hover {
  background: #f5f3ff;
}

.popular_posts_list li a img {
  width: 120px;
  min-width: 120px;
  height: auto;
  border-radius: 0.5rem;
  margin: 0;
}

.popular_posts_txtbox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1a2e;
  line-height: 1.4;
}

.tail_popular_cat {
  display: inline-block;
  font-size: 1.1rem;
  color: #8b5cf6;
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   Responsive - タブレット（1024px〜1400px）
   ========================================================================== */

@media screen and (min-width: 1024px) and (max-width: 1400px) {
  .site-bar__inner {
    padding: 1.5rem 3rem;
  }

  .layout-area {
    padding: 3rem;
    gap: 3rem;
  }

  .home .layout-area {
    padding: 0 3rem 3rem;
  }

  .pickup-strip {
    margin: 0 -3rem 3rem;
    padding: 4rem 3rem;
  }

  .svc-rank__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .recent__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-end {
    padding: 4rem 3rem 2rem;
  }
}

/* ==========================================================================
   Responsive - スマートフォン・タブレット（〜1023px）
   ========================================================================== */

@media screen and (max-width: 1023px) {
  .u-sp-only { display: block; }
  .u-pc-only { display: none; }

  .site-bar__inner {
    padding: 1rem 1.5rem;
  }

  .layout-area {
    display: block;
    padding: 2rem 1.5rem;
  }

  .home .layout-area {
    padding: 0 1.5rem 2rem;
  }

  .layout-area__main {
    order: 1;
    width: 100%;
  }

  .layout-area__side {
    order: 2;
    position: static;
    margin-top: 3rem;
  }

  .gnav {
    display: none;
  }

  .pickup-strip {
    margin: 0 -1.5rem 2rem;
    padding: 2rem 1.5rem;
  }

  .svc-rank,
  .spec-grid,
  .recent,
  .discover {
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
  }

  .svc-rank__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .recent__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .m-article {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .m-article__title {
    font-size: 2.2rem;
  }

  .article-body h2 {
    font-size: 1.9rem;
    margin: 4rem 0 1.5rem;
  }

  .article-body h3 {
    font-size: 1.7rem;
  }

  .fnav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-end {
    padding: 3rem 1.5rem 2rem;
  }
}

/* ==========================================================================
   Responsive - PC（1024px〜）
   ========================================================================== */

@media screen and (min-width: 1024px) {
  .u-sp-only { display: none; }
  .u-pc-only { display: block; }

  .layout-area {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    padding: 4rem;
  }

  .home .layout-area {
    display: block;
    padding: 0 4rem 4rem;
  }

  .layout-area__main {
    order: 2;
    width: auto;
  }

  .layout-area__side {
    order: 1;
    position: sticky;
    top: 100px;
    margin-top: 0;
  }

  .gnav {
    display: block;
  }

  .svc-rank__grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
  }

  .recent__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .fnav {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .fnav--four-column {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
  }

  .site-end {
    padding: 5rem 4rem 3rem;
  }
}

/* アフィリエイト広告表記: ヒーローオーバーレイ（TOP） */
.pickup-strip .ad-note {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  pointer-events: none;
}

/* アフィリエイト広告表記: パンくず直下（記事・カテゴリ等） */
.ad-note {
  font-size: 1.1rem;
  color: #94a3b8;
  background: none;
  border: none;
  padding: 0.3rem 1.6rem;
  margin: 0;
}

/* ==========================================================================
   wp_musicrights 差別化レイヤー
   - header_a（ロゴ左・ナビ右） / hero_d（横スクロールストリップ） / footer_c（2カラム）
   - 記事装飾（見出し・summary・waku_info・CV）を 00_sample_wp と異なる見た目へ
   ========================================================================== */

:root {
  --mr-primary: #8b5cf6;
  --mr-primary-d: #7c3aed;
  --mr-accent: #ec4899;
  --mr-ink: #1e1a2e;
  --mr-soft: #f5f3ff;
  --mr-line: #e6def9;
}

/* --- ヘッダー header_a: 明るい背景・ロゴ左・ナビ右の横1行 --- */
.site-bar {
  background: #ffffff;
  border-bottom: 3px solid var(--mr-primary);
  box-shadow: 0 2px 14px rgba(124,58,237,0.08);
}
.site-bar__inner--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 4rem;
}
.logo-unit {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.logo-unit__logo { height: 40px; width: auto; }
.logo-unit__tagline {
  font-size: 1.2rem;
  color: #6b647e;
  letter-spacing: .02em;
  padding-left: 1.4rem;
  border-left: 1px solid var(--mr-line);
}
.gnav__list { display: flex; gap: 0.3rem; justify-content: flex-end; }
.gnav__item { margin: 0; }
.gnav__link {
  color: var(--mr-ink);
  font-weight: 600;
  font-size: 1.45rem;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  background: none;
}
.gnav__link:hover { color: #fff; background: linear-gradient(135deg, var(--mr-primary), var(--mr-primary-d)); }
.burger span { background: var(--mr-ink); }

/* --- ヒーロー hero_d: 横スクロールストリップ（暗いグラデ全幅やめ） --- */
.pickup-strip {
  background: linear-gradient(135deg, #ffffff 0%, var(--mr-soft) 100%);
  border: 1px solid var(--mr-line);
  border-radius: 1.4rem;
  padding: 2.4rem 2.4rem 1.8rem;
  margin: 0 0 4rem 0;
  width: auto;
  overflow: hidden;
}
.pickup-strip::before { content: none; }
.pickup-strip__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.pickup-strip__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--mr-primary), var(--mr-accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem 1rem;
  border-radius: .5rem;
}
.pickup-strip__heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--mr-ink);
}
.pickup-strip__track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pickup-strip__track::-webkit-scrollbar { height: 6px; }
.pickup-strip__track::-webkit-scrollbar-thumb { background: #d9cff2; border-radius: 3px; }
.pickup-strip__card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border: 1px solid var(--mr-line);
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pickup-strip__card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(124,58,237,.14); }
.pickup-strip__no {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--mr-primary), var(--mr-primary-d));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .2rem .8rem;
  border-radius: .5rem;
}
.pickup-strip__thumb { display: block; }
.pickup-strip__thumb img { width: 100%; height: 150px; object-fit: cover; display: block; }
.pickup-strip__body { display: block; padding: 1.2rem 1.4rem 1.6rem; }
.pickup-strip__cat {
  display: inline-block;
  background: var(--mr-soft);
  color: var(--mr-primary-d);
  border: 1px solid var(--mr-line);
  font-size: 1.1rem;
  font-weight: 600;
  padding: .2rem .8rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}
.pickup-strip__title {
  display: block;
  color: var(--mr-ink);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
}
.pickup-strip__empty { color: #6b647e; padding: 1rem; }

/* --- ランキングカード grid_c: 4カラム・No.バッジ --- */
.svc-rank__grid { grid-template-columns: repeat(4, 1fr); }
.svc-rank__lead { color: #57506b; font-size: 1.4rem; margin-top: .8rem; max-width: 720px; }
.svc-card__rank { letter-spacing: .02em; }

/* --- 最新記事 grid_c: 4カラム --- */
.recent__grid { grid-template-columns: repeat(4, 1fr); }

/* --- フッター footer_c: 2カラム --- */
.fnav.fnav--two-column {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.fnav__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(255,255,255,.18);
}
.fnav__heading--sub { margin-top: 2rem; }
.fnav--two-column .fnav__list--compact {
  columns: 2;
  column-gap: 2rem;
}

/* --- ページトップ CSS矢印 --- */
.gotop__arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
}

/* --- 記事メタ（カテゴリ＝1リンク1ピル・公開/更新日） --- */
.post__head { margin-bottom: 1rem; }
.meta_box { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; }
.meta_cat { display: inline-flex; flex-wrap: wrap; gap: .5rem; }
.meta_cat__item {
  display: inline-block;
  background: var(--mr-soft);
  color: var(--mr-primary-d);
  border: 1px solid var(--mr-line);
  padding: .2rem 1rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
}
.post__dates { display: flex; flex-wrap: wrap; gap: 1.2rem; color: #8a839c; font-size: 1.3rem; }

/* --- 記事見出し: 00_sample_wp（左太線＋グラデ背景）と異なるデザインへ --- */
.article-body h2 {
  background: none;
  border-left: none;
  border-radius: 0;
  padding: 0 0 1.2rem 0;
  margin: 5rem 0 2.4rem;
  border-bottom: 2px solid var(--mr-line);
  position: relative;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, var(--mr-primary), var(--mr-accent));
  border-radius: 2px;
}
.article-body h3 {
  border-bottom: none;
  padding: 0 0 0 1.6rem;
  margin: 4rem 0 1.6rem;
  position: relative;
}
.article-body h3::after { display: none; }
.article-body h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: .25em;
  width: 6px;
  height: 1.1em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--mr-primary), var(--mr-accent));
}
.article-body h4 {
  border-left: none;
  padding: 0 0 .4rem 0;
  margin: 3rem 0 1rem;
  color: var(--mr-primary-d);
  border-bottom: 2px dashed #d4c7f2;
  display: inline-block;
}

/* --- summary（先読み）: 白地＋左アクセント＋♪ に変更 --- */
.summary {
  background: #ffffff;
  border: 1px solid var(--mr-line);
  border-left: 6px solid var(--mr-primary);
  border-radius: .8rem;
  box-shadow: 0 8px 22px rgba(124,58,237,.08);
}
.summary::before { display: none; }
.summary h2::before { content: '♪'; }
.summary ul li::before {
  content: '✓';
  border-radius: 4px;
  background: linear-gradient(135deg, var(--mr-primary), var(--mr-accent));
}

/* --- waku_info: ラベルタブ型・紫に統一（00_sample のラウンドiを変更） --- */
.waku_info {
  background: var(--mr-soft);
  border: 1px solid #d9cff2;
  border-left: 5px solid var(--mr-primary);
  border-radius: .6rem;
}
.waku_info::before {
  content: 'INFO';
  width: auto;
  height: auto;
  padding: .2rem .9rem;
  border-radius: .4rem;
  background: var(--mr-primary);
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: .06em;
  top: -1.1rem;
}
.waku_info .waku_st { color: var(--mr-primary-d); border-color: #c8b8f0; }

/* --- CVボタンの矢印（arrow_画像を廃止しCSSで表示） --- */
.bt_link a::after { content: '\2192'; margin-left: .5rem; }
.bt_link_bottom a::after { content: '\2193'; margin-left: .5rem; }

/* --- サイドバー右配置（sidebar_a）: ベースの左配置を反転 --- */
.layout-area { grid-template-columns: 1fr 300px; }
.layout-area__main { order: 1; }
.layout-area__side { order: 2; }
