/* =====================================================
   Minecraft Education Affiliate Site
   Minecraft公式デザイン参考 / ピクセル・ブロック感重視
   ===================================================== */

/* =====================================================
   WORDPRESS RESET — テーマ干渉を防ぐ
   ===================================================== */
body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--mc-bg, #F5F0E8) !important;
}

/* WordPress が生成するラッパーをリセット */
.site, .site-content, .site-main, #page, #content, #primary, #main,
.wp-site-blocks {
  margin: 0 !important;
  padding: 0 !important;
}

/* 管理バー分のオフセット調整 */
.mc-site-header { top: var(--wp-admin--admin-bar--height, 0); }

/* ---- Google Fonts (Pixel style) ---- */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Minecraft カラーパレット */
  --mc-grass:       #5D9E32;   /* 草ブロック緑 */
  --mc-grass-dark:  #3A6B1A;   /* 草ブロック影 */
  --mc-grass-top:   #7DC43D;   /* 草ブロック明 */
  --mc-dirt:        #8B5E3C;   /* 土ブロック茶 */
  --mc-wood:        #C68C3C;   /* 木材オレンジ茶 */
  --mc-wood-dark:   #7A5228;   /* 木材影 */
  --mc-stone:       #8C8C8C;   /* 石ブロック */
  --mc-diamond:     #3BBFCA;   /* ダイヤモンド */
  --mc-sky:         #5B9BD5;   /* スカイブルー */
  --mc-sky-dark:    #2E6FA8;   /* スカイ影 */
  --mc-purple:      #5B4EE5;   /* 教育版紫 */
  --mc-purple-dark: #3730A3;   /* 紫影 */
  --mc-orange:      #C4622D;   /* テラコッタ */
  --mc-orange-dark: #8B3E16;   /* テラコッタ影 */
  --mc-gold:        #F9A825;   /* 金 */
  --mc-red:         #C0392B;   /* レッドストーン */
  --mc-creeper:     #49A025;   /* クリーパー */

  /* テキスト */
  --mc-text:        #1A1A1A;
  --mc-text-muted:  #555;
  --mc-white:       #FFFFFF;
  --mc-bg:          #F5F0E8;   /* 羊皮紙風ベージュ */
  --mc-bg-dark:     #E8E0D0;

  /* ピクセルフォント */
  --font-pixel: 'Press Start 2P', monospace;
  --font-body:  'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;

  /* ブロック影（ピクセルボタン用） */
  --pixel-shadow-green:  4px 4px 0 var(--mc-grass-dark);
  --pixel-shadow-wood:   4px 4px 0 var(--mc-wood-dark);
  --pixel-shadow-sky:    4px 4px 0 var(--mc-sky-dark);
  --pixel-shadow-purple: 4px 4px 0 var(--mc-purple-dark);
  --pixel-shadow-orange: 4px 4px 0 var(--mc-orange-dark);
}

/* ---- Reset & Base ---- */
#mc-site * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#mc-site {
  font-family: var(--font-body);
  color: var(--mc-text);
  background: var(--mc-bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: auto;
  image-rendering: pixelated;
}

#mc-site img {
  max-width: 100%;
  height: auto;
  display: block;
}

#mc-site a {
  color: inherit;
  text-decoration: none;
}

/* ---- Container ---- */
.mc-container {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}
.mc-container--narrow {
  max-width: 740px;
}
.sp-only { display: block; }

/* ---- セクション共通スペーシング ---- */
.mc-why,
.mc-recommend,
.mc-age-guide,
.mc-faq {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ---- ピクセルボーダー（Minecraft風外枠） ---- */
.mc-pixel-border {
  outline: 3px solid #000;
  outline-offset: -3px;
  box-shadow: inset -3px -3px 0 rgba(0,0,0,0.3), inset 3px 3px 0 rgba(255,255,255,0.25);
}

/* ---- Section Titles ---- */
.mc-section-title {
  font-family: var(--font-pixel);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  color: var(--mc-wood-dark);
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
  letter-spacing: -0.02em;
}

.mc-section-sub {
  font-size: 13px;
  color: var(--mc-text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.7;
  padding: 0 4px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ---- Pixel Buttons ---- */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-pixel);
  font-size: 10px;
  line-height: 1.6;
  cursor: pointer;
  border: none;
  border-radius: 0;
  text-align: center;
  transition: transform 0.08s, box-shadow 0.08s;
  letter-spacing: 0;
}

.mc-btn:active {
  transform: translate(4px, 4px);
  box-shadow: none !important;
}

.mc-btn--primary {
  background: var(--mc-grass);
  color: var(--mc-white);
  box-shadow: var(--pixel-shadow-green);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.mc-btn--primary:hover {
  background: var(--mc-grass-top);
}

.mc-btn--secondary {
  background: var(--mc-sky);
  color: var(--mc-white);
  box-shadow: var(--pixel-shadow-sky);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.mc-btn--secondary:hover {
  background: #70b3e8;
}

.mc-btn--wood {
  background: var(--mc-wood);
  color: var(--mc-white);
  box-shadow: var(--pixel-shadow-wood);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.mc-btn--purple {
  background: var(--mc-purple);
  color: var(--mc-white);
  box-shadow: var(--pixel-shadow-purple);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.mc-btn--orange {
  background: var(--mc-orange);
  color: var(--mc-white);
  box-shadow: var(--pixel-shadow-orange);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.mc-btn--outline {
  background: transparent;
  color: var(--mc-grass-dark);
  border: 3px solid var(--mc-grass-dark);
  box-shadow: 4px 4px 0 var(--mc-grass-dark);
}
.mc-btn--outline:hover { background: rgba(93,158,50,0.1); }

.mc-btn--white {
  background: var(--mc-white);
  color: var(--mc-grass-dark);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  text-shadow: none;
}

.mc-btn--full {
  width: 100%;
  padding: 14px 16px;
}

/* =====================================================
   SITE HEADER
   ===================================================== */
.mc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid #E0E0E0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.mc-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1100px;
  margin-inline: auto;
  height: 64px;
}

.mc-site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.mc-site-header__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.mc-site-header__nav { display: none; }

.mc-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-nav__list a {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .15s;
}
.mc-nav__list a:hover { color: #5D9E32; }

@media (min-width: 600px) {
  .mc-site-header__nav { display: block; }
}

/* =====================================================
   HAMBURGER MENU (モバイル用)
   ===================================================== */
.mc-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.mc-hamburger__box {
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
}
.mc-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #1a1a1a;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.mc-hamburger__line:nth-child(1) { top: 0; }
.mc-hamburger__line:nth-child(2) { top: 8px; }
.mc-hamburger__line:nth-child(3) { top: 16px; }
.mc-hamburger.is-active .mc-hamburger__line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background: #5D9E32;
}
.mc-hamburger.is-active .mc-hamburger__line:nth-child(2) {
  opacity: 0;
}
.mc-hamburger.is-active .mc-hamburger__line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
  background: #5D9E32;
}

.mc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 199;
}
.mc-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mc-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78vw, 300px);
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  padding-bottom: 24px;
}
.mc-mobile-nav.is-open {
  transform: translateX(0);
}
.mc-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 2px solid #E0E0E0;
}
.mc-mobile-nav__title {
  font-size: 15px;
  font-weight: 900;
  color: #1a1a1a;
}
.mc-mobile-nav__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F0F0F0;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.mc-mobile-nav__list li {
  border-bottom: 1px solid #F0F0F0;
}
.mc-mobile-nav__list a {
  display: block;
  padding: 14px 20px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.mc-mobile-nav__list a:hover {
  color: #5D9E32;
  background: #F7FBF2;
}

@media (min-width: 600px) {
  .mc-hamburger { display: none; }
  .mc-mobile-overlay,
  .mc-mobile-nav { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.mc-hero {
  position: relative;
  background: linear-gradient(145deg, #1B5E20 0%, #2E7D32 50%, #1565C0 100%);
  color: var(--mc-white);
  padding: 48px 24px 80px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

/* ピクセルデコ（グリッドパターン） */
.mc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(0,0,0,0.05) 31px, rgba(0,0,0,0.05) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(0,0,0,0.05) 31px, rgba(0,0,0,0.05) 32px);
  pointer-events: none;
  z-index: 1;
}

.mc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 40px;
}

.mc-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 8px;
  background: var(--mc-gold);
  color: var(--mc-wood-dark);
  padding: 6px 14px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  text-shadow: none;
  letter-spacing: 0;
}

.mc-hero__title {
  font-family: var(--font-pixel);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  color: var(--mc-white);
}

.mc-hero__accent {
  color: var(--mc-gold);
  display: block;
  font-size: 22px;
}

.mc-hero__sub {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.3);
  padding: 12px 16px;
  display: inline-block;
}

/* ブロックデコ（地面） */
.mc-hero__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  pointer-events: none;
  z-index: 1;
}

.mc-block {
  flex: 1;
  height: 64px;
  position: relative;
}

.mc-block--grass {
  background: var(--mc-grass);
  box-shadow: inset -3px -3px 0 var(--mc-grass-dark), inset 3px 3px 0 var(--mc-grass-top);
}
.mc-block--dirt {
  background: var(--mc-dirt);
  box-shadow: inset -3px -3px 0 #6B3F20, inset 3px 3px 0 #A87050;
}
.mc-block--wood {
  background: var(--mc-wood);
  box-shadow: inset -3px -3px 0 var(--mc-wood-dark), inset 3px 3px 0 #DBA050;
}
.mc-block--stone {
  background: var(--mc-stone);
  box-shadow: inset -3px -3px 0 #666, inset 3px 3px 0 #AAA;
}
.mc-block--diamond {
  background: var(--mc-diamond);
  box-shadow: inset -3px -3px 0 #2899A4, inset 3px 3px 0 #6CDFEB;
}

/* =====================================================
   TRUST
   ===================================================== */
.mc-trust {
  background: var(--mc-wood-dark);
  border-bottom: 4px solid #5A3A18;
  padding: 0;
}

.mc-trust__list {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.mc-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-gold);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
  border-right: 2px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}
.mc-trust__item:last-child { border-right: none; }

.mc-trust__icon { font-size: 20px; }

/* =====================================================
   WHY MINECRAFT
   ===================================================== */
.mc-why {
  padding: 60px 0;
  background: var(--mc-bg);
}

.mc-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

/* 2トーンカード（公式サイト参考） */
.mc-why__card {
  background: #E8E0F0;
  position: relative;
  overflow: hidden;
  outline: 3px solid #000;
  min-width: 0; /* グリッドのはみ出し防止 */
  word-break: break-all;
}

.mc-why__card-top {
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.mc-why__icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  outline: 2px solid rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.mc-why__icon-wrap--blue   { background: var(--mc-sky);    }
.mc-why__icon-wrap--green  { background: var(--mc-grass);  }
.mc-why__icon-wrap--yellow { background: var(--mc-gold);   }
.mc-why__icon-wrap--red    { background: var(--mc-orange); }

.mc-why__title {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-white);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
  line-height: 1.7;
}

/* カード色別 */
.mc-why__card:nth-child(1) .mc-why__card-top { background: var(--mc-sky); }
.mc-why__card:nth-child(2) .mc-why__card-top { background: var(--mc-grass); }
.mc-why__card:nth-child(3) .mc-why__card-top { background: var(--mc-wood); }
.mc-why__card:nth-child(4) .mc-why__card-top { background: var(--mc-orange); }

.mc-why__card:nth-child(1) { background: #D0E8F8; }
.mc-why__card:nth-child(2) { background: #D8F0D0; }
.mc-why__card:nth-child(3) { background: #F5E8D0; }
.mc-why__card:nth-child(4) { background: #F8DDD0; }

.mc-why__text {
  font-size: 11px;
  color: var(--mc-text-muted);
  line-height: 1.7;
  padding: 10px 12px 14px;
}

/* =====================================================
   RECOMMEND
   ===================================================== */
.mc-recommend {
  padding: 60px 0;
  background: var(--mc-bg-dark);
  border-top: 4px solid #C8B898;
  border-bottom: 4px solid #C8B898;
}

.mc-product-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.mc-product-card {
  background: var(--mc-white);
  outline: 3px solid #000;
  position: relative;
  overflow: hidden;
}

.mc-product-card--featured {
  outline: 4px solid var(--mc-gold);
  box-shadow: 6px 6px 0 var(--mc-wood-dark);
}

.mc-product-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mc-gold);
  color: var(--mc-wood-dark);
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 5px 12px;
  z-index: 1;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* カードヘッダー（2トーン） */
.mc-product-card__header {
  padding: 24px 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100px;
}

.mc-product-card--featured   .mc-product-card__header { background: var(--mc-grass); }
.mc-product-card:nth-child(2) .mc-product-card__header { background: var(--mc-sky); }
.mc-product-card:nth-child(3) .mc-product-card__header { background: var(--mc-purple); }

.mc-product-card__img-placeholder {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: rgba(255,255,255,0.2);
  outline: 3px solid rgba(255,255,255,0.4);
}

.mc-product-card__header-text { flex: 1; }

.mc-product-card__category {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: rgba(255,255,255,0.8);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
  margin-bottom: 6px;
}

.mc-product-card__title {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--mc-white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  line-height: 1.8;
}

.mc-product-card__body { padding: 16px 20px 20px; }

.mc-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-bottom: 12px;
}

.mc-tag {
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 4px 10px;
  outline: 2px solid currentColor;
  line-height: 1.4;
}

.mc-tag--blue   { color: var(--mc-sky-dark);    background: #D0E8F8; }
.mc-tag--green  { color: var(--mc-grass-dark);  background: #D8F0D0; }
.mc-tag--orange { color: var(--mc-orange-dark); background: #F8DDD0; }
.mc-tag--purple { color: var(--mc-purple-dark); background: #E8E0F8; }

.mc-product-card__text {
  font-size: 12px;
  color: var(--mc-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  border-left: 4px solid var(--mc-grass);
  padding-left: 10px;
}

.mc-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: var(--mc-bg);
  outline: 2px solid var(--mc-bg-dark);
}

.mc-stars { color: var(--mc-gold); font-size: 14px; letter-spacing: -2px; }

.mc-rating-num {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--mc-text);
}

.mc-rating-count { font-size: 10px; color: var(--mc-text-muted); }

.mc-product-card__note {
  font-size: 10px;
  color: var(--mc-text-muted);
  text-align: center;
  margin-top: 8px;
}

.mc-recommend__more { text-align: center; }

/* =====================================================
   AGE GUIDE
   ===================================================== */
.mc-age-guide {
  padding: 60px 0;
  background: var(--mc-bg);
}

.mc-age-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc-age-tab {
  outline: 3px solid #000;
  overflow: hidden;
}

.mc-age-tab__header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.mc-age-tab:nth-child(1) .mc-age-tab__header-bar { background: var(--mc-grass); }
.mc-age-tab:nth-child(2) .mc-age-tab__header-bar { background: var(--mc-sky); }
.mc-age-tab:nth-child(3) .mc-age-tab__header-bar { background: var(--mc-purple); }

.mc-age-tab__emoji { font-size: 28px; flex-shrink: 0; }

.mc-age-tab__age {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--mc-white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  line-height: 1;
  margin-bottom: 4px;
}

.mc-age-tab__label {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: rgba(255,255,255,0.8);
}

.mc-age-tab__body {
  padding: 14px 16px;
  background: var(--mc-white);
}

.mc-age-tab:nth-child(1) .mc-age-tab__body { background: #D8F0D0; }
.mc-age-tab:nth-child(2) .mc-age-tab__body { background: #D0E8F8; }
.mc-age-tab:nth-child(3) .mc-age-tab__body { background: #E8E0F8; }

.mc-age-tab__text {
  font-size: 12px;
  color: var(--mc-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.mc-age-tab__link {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-grass-dark);
  text-decoration: underline;
}

/* =====================================================
   FAQ
   ===================================================== */
.mc-faq {
  padding: 60px 0;
  background: var(--mc-bg-dark);
}

.mc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mc-faq__item {
  background: var(--mc-white);
  outline: 3px solid #000;
}

.mc-faq__question {
  padding: 16px 48px 16px 16px;
  font-family: var(--font-pixel);
  font-size: 8px;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.8;
  color: var(--mc-wood-dark);
  background: var(--mc-bg);
  border-bottom: 2px solid #C8B898;
}

.mc-faq__question::-webkit-details-marker { display: none; }

.mc-faq__question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-grass);
  color: var(--mc-white);
  font-family: var(--font-pixel);
  font-size: 14px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

.mc-faq__question {
  padding-left: 56px;
}

.mc-faq__question::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--mc-grass);
}

.mc-faq__item[open] .mc-faq__question::after { content: '−'; }

.mc-faq__answer {
  padding: 0 16px 16px 56px;
  position: relative;
}

.mc-faq__answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
  background: var(--mc-gold);
  color: var(--mc-wood-dark);
  font-family: var(--font-pixel);
  font-size: 14px;
}

.mc-faq__answer p {
  font-size: 12px;
  color: var(--mc-text-muted);
  line-height: 1.8;
  padding-top: 14px;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.mc-cta {
  padding: 60px 20px;
  background: var(--mc-grass);
  color: var(--mc-white);
  text-align: center;
  border-top: 4px solid var(--mc-grass-dark);
  border-bottom: 4px solid var(--mc-grass-dark);
  position: relative;
  overflow: hidden;
}

/* ブロックパターン背景 */
.mc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(0,0,0,0.08) 31px,
      rgba(0,0,0,0.08) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      rgba(0,0,0,0.08) 31px,
      rgba(0,0,0,0.08) 32px
    );
  pointer-events: none;
}

.mc-cta > * { position: relative; z-index: 1; }

.mc-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 7px;
  background: var(--mc-gold);
  color: var(--mc-wood-dark);
  padding: 5px 12px;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.mc-cta__title {
  font-family: var(--font-pixel);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.mc-cta__text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.2);
  padding: 10px 16px;
}

/* =====================================================
   ARTICLES
   ===================================================== */
.mc-articles {
  padding: 60px 0;
  background: var(--mc-bg);
}

.mc-articles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.mc-article-card {
  display: block;
  background: var(--mc-white);
  outline: 3px solid #000;
  transition: transform 0.1s;
}
.mc-article-card:active { transform: scale(0.98); }

.mc-article-card__thumb {
  width: 100%;
  height: 90px;
  overflow: hidden;
  background: var(--mc-grass);
}
.mc-article-card__img { width: 100%; height: 100%; object-fit: cover; }

.mc-article-card__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mc-article-card__body { padding: 8px 10px 12px; }

.mc-article-card__cat {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--mc-grass-dark);
  margin-bottom: 4px;
}

.mc-article-card__title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-article-card__date {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--mc-text-muted);
}

.mc-articles__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--mc-text-muted);
  font-size: 13px;
  padding: 40px;
}

.mc-articles__more { text-align: center; margin-top: 28px; }

.mc-article-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: var(--mc-text-muted);
  margin-top: 6px;
}

/* =====================================================
   CATEGORY NAV
   ===================================================== */
.mc-cat-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.mc-cat-nav__item {
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 6px 12px;
  background: var(--mc-white);
  color: var(--mc-text-muted);
  outline: 2px solid var(--mc-bg-dark);
  transition: background 0.1s;
  line-height: 1.6;
}
.mc-cat-nav__item:hover,
.mc-cat-nav__item--all {
  background: var(--mc-grass);
  color: var(--mc-white);
  outline-color: var(--mc-grass-dark);
}

/* =====================================================
   FEATURED CARD（ホーム1枚目大カード）
   ===================================================== */
.mc-feat-card {
  display: block;
  outline: 3px solid #000;
  background: var(--mc-white);
  margin-bottom: 12px;
  transition: transform 0.1s;
}
.mc-feat-card:active { transform: scale(0.99); }

.mc-feat-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--mc-grass);
}
.mc-feat-card__img { width: 100%; height: 100%; object-fit: cover; }
.mc-feat-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--mc-grass), var(--mc-sky));
}

.mc-feat-card__body { padding: 16px 18px 20px; }

.mc-feat-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mc-label {
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 4px 10px;
  background: var(--mc-grass);
  color: var(--mc-white);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.mc-feat-card__new {
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 4px 8px;
  background: var(--mc-red);
  color: var(--mc-white);
}

.mc-feat-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--mc-text);
}

.mc-feat-card__excerpt {
  font-size: 12px;
  color: var(--mc-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mc-feat-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--mc-text-muted);
  border-top: 2px solid var(--mc-bg-dark);
  padding-top: 10px;
}

.mc-feat-card__read {
  margin-left: auto;
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-grass-dark);
}

.mc-articles__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* =====================================================
   ARTICLE PAGE LAYOUT
   ===================================================== */
.mc-article-layout {
  display: block !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 28px 20px 56px !important;
  box-sizing: border-box !important;
  gap: 32px;
}

.mc-article-main {
  min-width: 0;
  display: block;
}

/* WordPress が article に勝手につけるスタイルを上書き */
.mc-article-layout .mc-article,
.mc-article-layout .mc-breadcrumb {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ---- パンくず ---- */
.mc-breadcrumb {
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 2px solid var(--mc-bg-dark);
}
.mc-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: 13px;
  color: var(--mc-text-muted);
  padding: 0;
  margin: 0;
}
.mc-breadcrumb__list li + li::before { content: ' › '; margin-right: 4px; }
.mc-breadcrumb__list a { color: var(--mc-grass-dark); text-decoration: underline; }

/* ---- 記事ヘッダー ---- */
.mc-article__header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E0E0;
}

.mc-article__cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  background: var(--mc-grass);
  color: var(--mc-white);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.mc-article__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--mc-text);
  margin-bottom: 20px;
}

.mc-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--mc-text-muted);
  background: #F8F8F8;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
}

/* ---- アイキャッチ ---- */
.mc-article__thumb { margin-bottom: 32px; border-radius: 8px; overflow: hidden; }
.mc-article__thumb-img { width: 100%; height: auto; display: block; }

/* ---- 目次 ---- */
.mc-toc {
  background: var(--mc-bg);
  outline: 3px solid #000;
  margin-bottom: 28px;
  overflow: hidden;
}
.mc-toc--closed .mc-toc__list { display: none; }
.mc-toc--closed .mc-toc__toggle { content: '▼'; }

.mc-toc__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--mc-wood-dark);
  color: var(--mc-white);
}
.mc-toc__icon { font-size: 16px; }
.mc-toc__title {
  font-family: var(--font-pixel);
  font-size: 9px;
  flex: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.mc-toc__toggle {
  background: none;
  border: none;
  color: var(--mc-white);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
}

.mc-toc__list {
  list-style: none;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: toc;
}

.mc-toc__item {
  font-size: 12px;
  padding-left: 0;
  counter-increment: toc;
}
.mc-toc__item::before {
  font-family: var(--font-pixel);
  font-size: 8px;
  content: counter(toc) '. ';
  color: var(--mc-grass-dark);
  margin-right: 4px;
}
.mc-toc__item--sub {
  padding-left: 16px;
  font-size: 11px;
}
.mc-toc__item--sub::before { content: '└ '; font-family: monospace; color: var(--mc-text-muted); }
.mc-toc__item a { color: var(--mc-grass-dark); text-decoration: underline; line-height: 1.6; }

/* ---- 本文スタイル ---- */
.mc-content {
  font-size: 16px;
  line-height: 2.0;
  color: var(--mc-text);
}
.mc-content h2 {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--mc-white);
  background: var(--mc-grass-dark);
  padding: 14px 18px;
  margin: 40px 0 20px;
  border-left: 6px solid var(--mc-gold);
  border-radius: 0 10px 10px 0;
}
.mc-content h2:first-child { margin-top: 0; }
.mc-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--mc-wood-dark);
  border-left: 4px solid var(--mc-grass);
  padding-left: 12px;
  margin: 32px 0 14px;
  line-height: 1.5;
}
.mc-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--mc-text);
}
.mc-content p { margin-bottom: 18px; }
.mc-content ul, .mc-content ol {
  margin: 0 0 18px 1.4em;
  padding: 0;
}
.mc-content li { margin-bottom: 10px; line-height: 1.9; }
.mc-content strong { color: var(--mc-wood-dark); font-weight: 700; }
.mc-content a { color: var(--mc-grass-dark); text-decoration: underline; }
.mc-content img { max-width: 100%; outline: 3px solid #000; margin: 16px auto; }
.mc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 32px;
  font-size: 15px;
  overflow-x: auto;
  display: block;
}
.mc-content th {
  background: var(--mc-grass-dark);
  color: var(--mc-white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.mc-content td {
  padding: 14px 16px;
  border: 1px solid #E0E0E0;
  background: var(--mc-white);
  vertical-align: top;
  font-size: 15px;
  line-height: 1.7;
}
.mc-content tr:nth-child(even) td { background: #F8F8F8; }

/* ブロック引用 */
.mc-content blockquote {
  background: var(--mc-bg);
  border-left: 6px solid var(--mc-gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 15px;
  color: var(--mc-text-muted);
}

/* アフィリエイトボックス用 */
.mc-content .affiliate-box {
  outline: 3px solid var(--mc-gold);
  background: #FFFDE7;
  padding: 16px;
  margin: 24px 0;
}
.mc-content .affiliate-box__title {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--mc-wood-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mc-gold);
}

/* ---- SNSシェア ---- */
.mc-share {
  margin: 36px 0;
  padding: 16px;
  background: var(--mc-bg);
  outline: 2px solid var(--mc-bg-dark);
}
.mc-share__label {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-text-muted);
  margin-bottom: 10px;
}
.mc-share__buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.mc-share__btn {
  font-family: var(--font-pixel);
  font-size: 7px;
  padding: 8px 14px;
  color: var(--mc-white);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  line-height: 1.6;
}
.mc-share__btn--twitter  { background: #1DA1F2; box-shadow: 3px 3px 0 #0d8bd9; }
.mc-share__btn--facebook { background: #1877F2; box-shadow: 3px 3px 0 #0d5dbf; }
.mc-share__btn--line     { background: #06C755; box-shadow: 3px 3px 0 #059944; }
.mc-share__btn:active { transform: translate(3px,3px); box-shadow: none; }

/* ---- プロフィール ---- */
.mc-author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--mc-white);
  outline: 3px solid #000;
  padding: 20px;
  margin-top: 32px;
}
.mc-author__avatar {
  font-size: 40px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-grass-top);
  outline: 3px solid #000;
}
.mc-author__name {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--mc-wood-dark);
  margin-bottom: 6px;
}
.mc-author__bio { font-size: 11px; color: var(--mc-text-muted); line-height: 1.7; }

/* ---- 関連記事 ---- */
.mc-related { margin-top: 36px; }
.mc-related__title {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--mc-wood-dark);
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 4px solid var(--mc-grass);
}
.mc-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mc-related-card {
  display: block;
  background: var(--mc-white);
  outline: 2px solid #000;
  transition: transform 0.1s;
}
.mc-related-card:active { transform: scale(0.98); }
.mc-related-card__thumb { height: 80px; overflow: hidden; background: var(--mc-grass-light); }
.mc-related-card__img { width: 100%; height: 100%; object-fit: cover; }
.mc-related-card__no-img {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: var(--mc-bg);
}
.mc-related-card__body { padding: 8px 10px 12px; }
.mc-related-card__cat {
  font-family: var(--font-pixel);
  font-size: 6px;
  color: var(--mc-grass-dark);
  margin-bottom: 4px;
}
.mc-related-card__title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mc-related-card__date { font-size: 9px; color: var(--mc-text-muted); margin-top: 4px; }

/* ---- サイドバー ---- */
.mc-sidebar {
  margin-top: 32px;
}
.mc-sidebar > * + * {
  margin-top: 20px;
}

.mc-sidebar-cta {
  background: var(--mc-grass);
  outline: 4px solid var(--mc-grass-dark);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--mc-white);
}
.mc-sidebar-cta__eyebrow {
  font-family: var(--font-pixel);
  font-size: 7px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.mc-sidebar-cta__title {
  font-family: var(--font-pixel);
  font-size: 12px;
  line-height: 1.8;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  margin-bottom: 10px;
}
.mc-sidebar-cta__text {
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.9;
}
.mc-sidebar-cta__note {
  font-size: 9px;
  margin-top: 8px;
  opacity: 0.7;
}

.mc-sidebar-widget {
  background: var(--mc-white);
  outline: 3px solid #000;
  margin-bottom: 20px;
}
.mc-sidebar-widget__title {
  font-family: var(--font-pixel);
  font-size: 8px;
  background: var(--mc-wood-dark);
  color: var(--mc-white);
  padding: 10px 14px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.mc-sidebar-posts { list-style: none; padding: 10px 14px; }
.mc-sidebar-post {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mc-bg-dark);
}
.mc-sidebar-post:last-child { border-bottom: none; }
.mc-sidebar-post__num {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--mc-grass);
  flex-shrink: 0;
  line-height: 1;
}
.mc-sidebar-post__title {
  font-size: 11px;
  line-height: 1.5;
  color: var(--mc-text);
  text-decoration: underline;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mc-sidebar-cats { list-style: none; padding: 10px 14px; }
.mc-sidebar-cats li {
  padding: 6px 0;
  border-bottom: 1px solid var(--mc-bg-dark);
  font-size: 12px;
}
.mc-sidebar-cats li:last-child { border-bottom: none; }
.mc-sidebar-cats a { color: var(--mc-grass-dark); text-decoration: underline; }
.mc-sidebar-cats .children { padding-left: 12px; margin-top: 4px; }

/* =====================================================
   POLICY PAGE
   ===================================================== */
.mc-policy-wrap {
  padding: 32px 0 64px;
  background: #FFFAF0;
  min-height: 60vh;
}

.mc-policy__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 0;
}

.mc-policy__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--mc-text);
  margin: 12px 0 10px;
  border-left: none;
  padding-left: 0;
}
.mc-policy__title::before,
.mc-policy__title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--mc-grass);
}
.mc-policy__title::after { background: var(--mc-gold); }

.mc-policy__header::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--mc-grass) 0%, var(--mc-sky-dark) 50%, var(--mc-gold) 100%);
}

.mc-policy__date {
  font-size: 12px;
  color: var(--mc-text-muted);
  padding-left: 0;
}

.mc-policy__body {
  background: var(--mc-white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(140,110,60,0.10);
}

.mc-policy__contact {
  background: #FFF8EC;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 2;
}

@media (min-width: 600px) {
  .mc-policy__title { font-size: 26px; }
  .mc-policy__body { padding: 36px 32px; }
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.mc-form { margin-top: 24px; }
.mc-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.mc-form__row { margin-bottom: 18px; }
.mc-form__label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.mc-form__req {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  background: #DA0663;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: bold;
}
.mc-form__input,
.mc-form__textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
}
.mc-form__input:focus,
.mc-form__textarea:focus {
  outline: none;
  border-color: #5D9E32;
}
.mc-form__textarea { resize: vertical; }
.mc-form .mc-form__privacy {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
}
.mc-form__submit {
  display: inline-block;
  background: #5D9E32;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.15s;
}
.mc-form__submit:hover { background: #4A8024; }

.mc-form-notice {
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 18px;
}
.mc-form-notice--success {
  background: #EFF8E6;
  border: 2px solid #5D9E32;
  color: #3A6B1A;
}
.mc-form-notice--error {
  background: #FFF3F3;
  border: 2px solid #E53935;
  color: #B71C1C;
}
.mc-form-notice--error ul { margin: 0; padding-left: 18px; }

/* =====================================================
   FEATURE BOX（運営者情報ページ等の方眼ボックス）
   ===================================================== */
.mc-feat-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.mc-feat-box {
  position: relative;
  background-color: #F6F8FC;
  background-image:
    linear-gradient(#E2E8F5 1px, transparent 1px),
    linear-gradient(90deg, #E2E8F5 1px, transparent 1px);
  background-size: 26px 26px;
  border-radius: 24px;
  padding: 28px 24px 32px;
  overflow: hidden;
}
.mc-feat-badge {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.mc-feat-badge--pink  { background: #DA0663; }
.mc-feat-badge--green { background: var(--mc-grass); }
.mc-feat-badge--blue  { background: var(--mc-sky-dark); }

.mc-feat-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--mc-text);
  margin: 0 0 18px;
}
.mc-feat-body {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--mc-text);
}
.mc-feat-body p { margin: 0 0 12px; }
.mc-feat-body p:last-child { margin-bottom: 0; }
.mc-feat-body ul { margin: 0; padding: 0; list-style: none; }
.mc-feat-body li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.mc-feat-body li:last-child { margin-bottom: 0; }
.mc-feat-body li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
}
.mc-feat-body li a {
  color: var(--mc-grass-dark);
  font-weight: 700;
  text-decoration: underline;
}
.mc-feat-body table { width: 100%; margin: 0; }

@media (min-width: 700px) {
  .mc-feat-box { padding: 36px 40px 40px; }
  .mc-feat-title { font-size: 24px; }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.mc-site-footer {
  background: var(--mc-wood-dark);
  border-top: 4px solid #5A3A18;
  color: rgba(255,255,255,0.9);
  padding: 40px 20px;
  text-align: center;
}

.mc-site-footer__logo {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--mc-gold);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

.mc-site-footer__desc {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.mc-site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.mc-site-footer__nav a {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

.mc-site-footer__copy {
  font-family: var(--font-pixel);
  font-size: 7px;
  opacity: 0.4;
}

/* =====================================================
   TABLET (600px+)
   ===================================================== */
@media (min-width: 600px) {
  .sp-only { display: none; }

  .mc-section-title { font-size: 16px; }

  .mc-hero__title  { font-size: 22px; }
  .mc-hero__accent { font-size: 26px; }

  .mc-why__grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }

  .mc-age-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-articles__grid { grid-template-columns: repeat(3, 1fr); }

  /* 記事 featured card */
  .mc-feat-card { display: flex; }
  .mc-feat-card__thumb { width: 280px; flex-shrink: 0; height: auto; }
  .mc-feat-card__no-img { height: 100%; min-height: 180px; }
  .mc-feat-card__title { font-size: 18px; }

  .mc-articles__sub-grid { grid-template-columns: repeat(3, 1fr); }

  /* 記事ページ */
  .mc-article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
  }
  .mc-sidebar {
    margin-top: 0;
    position: sticky;
    top: 80px;
  }
  .mc-related__grid { grid-template-columns: repeat(3, 1fr); }

  .mc-article__title { font-size: 22px; }
}

/* =====================================================
   DESKTOP (900px+)
   ===================================================== */
@media (min-width: 900px) {
  .mc-hero { padding: 60px 40px 80px; min-height: 560px; }
  .mc-hero__title  { font-size: 28px; }
  .mc-hero__accent { font-size: 34px; }
  .mc-section-title { font-size: 18px; }

  .mc-product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
  }

  .mc-cta__title { font-size: 18px; }

  .mc-article-card__thumb { height: 140px; }
  .mc-article-card__title { font-size: 13px; }

  .mc-feat-card__thumb { width: 380px; }
  .mc-feat-card__title { font-size: 20px; }
}

/* =====================================================
   SECTION HEAD (LABEL + TITLE + SUB)
   ===================================================== */
.mc-section-head {
  text-align: center;
  margin-bottom: 28px;
}
.mc-section-label {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--mc-grass);
  letter-spacing: 0.15em;
  background: rgba(93,158,50,0.1);
  border: 2px solid var(--mc-grass);
  padding: 4px 12px;
  margin-bottom: 10px;
}
.mc-section-head .mc-section-title { margin-bottom: 8px; }

/* =====================================================
   HERO BUTTONS ROW
   ===================================================== */
.mc-hero__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.mc-btn--outline-white {
  background: transparent;
  color: var(--mc-white);
  border: 3px solid var(--mc-white);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
  font-family: var(--font-pixel);
  font-size: 10px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.08s;
}
.mc-btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.mc-btn--outline-white:active { transform: translate(4px,4px); box-shadow: none; }
@media (min-width: 480px) {
  .mc-hero__btns { flex-direction: row; }
}

/* =====================================================
   QUICK NAV
   ===================================================== */
.mc-quick-nav {
  background: var(--mc-grass-dark);
  border-bottom: 3px solid #000;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mc-quick-nav .mc-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.mc-quick-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  white-space: nowrap;
}
.mc-quick-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-body);
}
.mc-quick-nav__item:hover {
  background: rgba(255,255,255,0.1);
  color: var(--mc-gold);
}
.mc-quick-nav__icon { font-size: 18px; }
@media (min-width: 600px) {
  .mc-quick-nav__item { padding: 14px 24px; font-size: 12px; }
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.mc-stats {
  background: var(--mc-grass-dark);
  padding: 36px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.mc-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.mc-stats__item {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--mc-white);
}
.mc-stats__item:nth-child(2n) { border-right: none; }
.mc-stats__item:nth-last-child(-n+2) { border-bottom: none; }
.mc-stats__num {
  font-family: var(--font-pixel);
  font-size: 22px;
  color: var(--mc-gold);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  line-height: 1.2;
  margin-bottom: 6px;
}
.mc-stats__unit {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.mc-stats__label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
@media (min-width: 600px) {
  .mc-stats__grid { grid-template-columns: repeat(4, 1fr); }
  .mc-stats__item { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.15); }
  .mc-stats__item:last-child { border-right: none; }
  .mc-stats__num { font-size: 26px; }
}

/* =====================================================
   ARTICLES — セクション上位化スタイル調整
   ===================================================== */
.mc-articles {
  background: var(--mc-bg);
  padding-top: 48px;
  padding-bottom: 56px;
  border-bottom: 3px solid var(--mc-bg-dark);
}
/* カテゴリナビ強化 */
.mc-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--mc-bg-dark);
}
.mc-cat-nav__item {
  font-family: var(--font-pixel);
  font-size: 8px;
  padding: 6px 12px;
  background: var(--mc-bg-dark);
  color: var(--mc-text-muted);
  border: 2px solid transparent;
  transition: all 0.15s;
}
.mc-cat-nav__item:hover,
.mc-cat-nav__item--all {
  background: var(--mc-grass);
  color: var(--mc-white);
  border-color: var(--mc-grass-dark);
  box-shadow: 2px 2px 0 var(--mc-grass-dark);
}


/* =====================================================
   NEW CLEAN HOME — mch- prefix
   シンプル×マイクラ感の融合デザイン
   ===================================================== */

/* --- 変数（継承） --- */
/* --mc-grass: #5D9E32, --mc-grass-dark: #3A6B1A, --mc-gold: #F9A825 */

/* --- コンテナ --- */
.mch-container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.mch-container--narrow { max-width: 700px; }

/* =====================================================
   HERO
   ===================================================== */
.mch-hero {
  background: #fff;
  border-bottom: 3px solid #E8E8E8;
  padding: 40px 0 36px;
}
.mch-hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mch-hero__text { flex: 1; min-width: 260px; }

.mch-hero__tag {
  display: inline-block;
  font-size: 11px;
  color: #5D9E32;
  background: rgba(93,158,50,0.1);
  border: 1.5px solid rgba(93,158,50,0.4);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
  font-weight: bold;
}

.mch-hero__title {
  font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
  color: #1A1A1A;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.mch-hero__title em {
  font-style: normal;
  color: #5D9E32;
}

.mch-hero__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* ピクセルアートブロック */
.mch-hero__blocks { flex-shrink: 0; }
.mch-pixel-art {
  display: grid;
  grid-template-rows: repeat(4, 40px);
  gap: 3px;
}
.mch-pixel-row {
  display: flex;
  gap: 3px;
}
.px {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 2px;
}
.px.g  { background: #5D9E32; box-shadow: inset 0 3px 0 #7DC43D; }
.px.d  { background: #8B5E3C; box-shadow: inset 0 3px 0 #A0714B; }
.px.w  { background: #C68C3C; box-shadow: inset 0 3px 0 #D9A04A; }
.px.s  { background: #8C8C8C; box-shadow: inset 0 3px 0 #A3A3A3; }
.px.di { background: #3BBFCA; box-shadow: inset 0 3px 0 #5AD4DF; }

@media (max-width: 540px) {
  .mch-hero__blocks { display: none; }
  .mch-hero__title { font-size: 20px; }
}
@media (min-width: 768px) {
  .mch-hero__title { font-size: 28px; }
  .mch-hero { padding: 56px 0 48px; }
  .px { width: 52px; height: 52px; }
  .mch-pixel-art { grid-template-rows: repeat(4, 52px); }
}

/* =====================================================
   ボタン（mch）
   ===================================================== */
.mch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  border: 2px solid transparent;
  font-family: 'Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
}
.mch-btn--primary {
  background: #5D9E32;
  color: #fff;
  border-color: #3A6B1A;
  box-shadow: 0 3px 0 #3A6B1A;
}
.mch-btn--primary:hover { background: #4C8A28; transform: translateY(-1px); }
.mch-btn--primary:active { transform: translateY(2px); box-shadow: none; }

.mch-btn--secondary {
  background: #2B7BBF;
  color: #fff;
  border-color: #1A5A8F;
  box-shadow: 0 3px 0 #1A5A8F;
}
.mch-btn--secondary:hover { background: #2269A8; }

.mch-btn--outline {
  background: #fff;
  color: #5D9E32;
  border-color: #5D9E32;
}
.mch-btn--outline:hover { background: rgba(93,158,50,0.06); }

.mch-btn--full { width: 100%; padding: 14px; }

/* =====================================================
   ARTICLES SECTION
   ===================================================== */
.mch-articles {
  padding: 40px 0 48px;
  background: #F7F7F7;
}

/* カテゴリタブ */
.mch-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.mch-tabs::-webkit-scrollbar { display: none; }

.mch-tab {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 0;
  border: 2px solid #D0D0D0;
  background: #fff;
  color: #555;
  text-decoration: none;
  transition: all 0.12s;
  cursor: pointer;
  /* ちょっとだけピクセル感 */
  font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
}
.mch-tab:hover,
.mch-tab--active {
  background: #5D9E32;
  color: #fff;
  border-color: #3A6B1A;
  box-shadow: 2px 2px 0 #3A6B1A;
}

/* フィーチャー記事 */
.mch-feat {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  transition: box-shadow 0.15s, transform 0.15s;
}
.mch-feat:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.mch-feat__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #E8E8E8;
  flex-shrink: 0;
}
.mch-feat__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mch-feat__noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #e8f5e0, #c8e6c0);
}

.mch-feat__body {
  padding: 20px 22px 24px;
}
.mch-feat__new {
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  background: #5D9E32;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.mch-feat__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.mch-feat__excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.mch-feat__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}
.mch-feat__more {
  font-size: 13px;
  font-weight: bold;
  color: #5D9E32;
}

@media (min-width: 640px) {
  .mch-feat {
    flex-direction: row;
    height: 260px;
  }
  .mch-feat__img {
    width: 380px;
    height: 100%;
  }
  .mch-feat__body { padding: 24px 28px; }
  .mch-feat__title { font-size: 20px; }
}

/* バッジ */
.mch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #5D9E32;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
}
.mch-badge--sm {
  font-size: 10px;
  padding: 2px 8px;
}

/* サブ記事グリッド */
.mch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .mch-grid { grid-template-columns: repeat(3, 1fr); }
}

.mch-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  border: 1px solid #EBEBEB;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.mch-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.mch-card__img {
  position: relative;
  height: 110px;
  background: #E8E8E8;
  overflow: hidden;
  flex-shrink: 0;
}
.mch-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mch-card__noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: linear-gradient(135deg, #e8f5e0, #c8e6c0);
}
.mch-card__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mch-card__title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  color: #1A1A1A;
  flex: 1;
  /* 3行クランプ */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mch-card__meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: #999;
}
@media (min-width: 640px) {
  .mch-card__img { height: 130px; }
  .mch-card__title { font-size: 13px; }
}

.mch-empty {
  text-align: center;
  color: #888;
  padding: 40px 0;
}

.mch-more {
  text-align: center;
  padding-top: 8px;
}

/* =====================================================
   RECOMMEND
   ===================================================== */
.mch-recommend {
  padding: 48px 0 56px;
  background: #fff;
}

.mch-sec-head {
  margin-bottom: 28px;
}
.mch-sec-title {
  font-size: 18px;
  font-weight: 900;
  color: #1A1A1A;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 3px solid #5D9E32;
  display: inline-block;
}
.mch-sec-title__en {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #5D9E32;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.mch-rec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .mch-rec-grid { grid-template-columns: repeat(3, 1fr); }
}

.mch-rec-card {
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.mch-rec-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.mch-rec-card--top {
  border-color: #5D9E32;
  box-shadow: 0 4px 0 #3A6B1A;
}
.mch-rec-card__rank {
  position: absolute;
  top: 0; left: 0;
  background: #888;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  border-bottom-right-radius: 8px;
}
.mch-rec-card--top .mch-rec-card__rank { background: #5D9E32; }
.mch-rec-card__rank--2 { background: #2B7BBF; }
.mch-rec-card__rank--3 { background: #C4622D; }

.mch-rec-card__thumb {
  height: 90px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border-bottom: 1px solid #EBEBEB;
}
.mch-rec-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mch-rec-card__cat {
  font-size: 11px;
  color: #5D9E32;
  font-weight: bold;
}
.mch-rec-card__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #1A1A1A;
}
.mch-rec-card__stars {
  font-size: 13px;
  color: #F9A825;
}
.mch-rec-card__stars span {
  font-weight: bold;
  color: #1A1A1A;
  margin-left: 4px;
}
.mch-rec-card__stars em {
  font-style: normal;
  color: #888;
  font-size: 11px;
}
.mch-rec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mch-rec-card__tags li {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(93,158,50,0.1);
  color: #3A6B1A;
  border-radius: 3px;
  font-weight: bold;
}
.mch-rec-card__text {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  flex: 1;
}
.mch-rec-card__note {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

/* =====================================================
   FAQ
   ===================================================== */
.mch-faq {
  padding: 48px 0 64px;
  background: #F7F7F7;
}

.mch-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mch-faq__item {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.12s;
}
.mch-faq__item[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-color: #5D9E32;
}
.mch-faq__q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #1A1A1A;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.mch-faq__q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #5D9E32;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  flex-shrink: 0;
}
.mch-faq__q::-webkit-details-marker { display: none; }
.mch-faq__q::after {
  content: '▼';
  margin-left: auto;
  font-size: 10px;
  color: #5D9E32;
  transition: transform 0.2s;
  flex-shrink: 0;
}
details[open] .mch-faq__q::after { transform: rotate(180deg); }

.mch-faq__a {
  padding: 0 20px 16px 56px;
  font-size: 13px;
  color: #444;
  line-height: 1.75;
  border-top: 1px solid #F0F0F0;
}
.mch-faq__a p { margin-top: 12px; }


/* =====================================================
   MCH GLOBAL OVERRIDES
   新デザイン用のベーシックリセット（#mc-site内）
   ===================================================== */
#mc-site {
  background: #F7F7F7 !important;
  image-rendering: auto !important;
}
body { background: #F7F7F7 !important; }

/* Hero内でブロックが画面外に出ないよう制御 */
.mch-hero {
  overflow: hidden;
}
.mch-hero__inner {
  justify-content: space-between;
}
.mch-pixel-art {
  flex-shrink: 0;
}

/* フィーチャーカードのバッジ位置補正 */
.mch-feat__img .mch-badge {
  z-index: 1;
}

/* FAQのAnswer内padding上書き（#mc-site * { padding:0 } の影響対策） */
.mch-faq__a {
  padding: 0 20px 16px 56px !important;
}
.mch-faq__a p { margin-top: 12px !important; }

/* rec-card body gap */
.mch-rec-card__body {
  padding: 16px !important;
}

/* タブのflex対応 */
.mch-tabs {
  padding-bottom: 4px !important;
}

