@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .mcm-header ...            2段バー型ヘッダー（赤ユーティリティ帯＋白メインバー）
 * .mcm-logo ...             Mマーク＋英日テキストのロゴ
 * .mcm-phero / .mcm-crumb   下層ページヒーロー（グラデ背景＋方眼）＋パンくず
 * .mcm-hero ...             TOPメインビュー（写真クロスフェード＋赤左線タイトル）
 * .mcm-shead ...            セクション見出し（Oswald大英字＋赤小見出し）
 * .mcm-btn ...              ボタン（LINE緑／赤メール／ダーク枠線）
 * .mcm-intro ...            TOP導入（大背景数字＋額装写真）
 * .mcm-scard ...            赤トップボーダーのカード（強み・こだわり）
 * .mcm-service ...          サービス紹介カード（画像＋本文＋矢印）
 * .mcm-works ...            施工実績カード（ダーク／ライト）
 * .mcm-message ...          代表挨拶（sticky写真＋本文）
 * .mcm-cta ...              お問い合わせCTA（LINE/WEB/TEL 3カード・ダーク）
 * .mcm-access ...           店舗情報テーブル＋地図プレースホルダー
 * .mcm-footer ...           ダークフッター（CTA帯＋3カラム＋コピーライト）
 * .mcm-point ...            下層の左右交互 画像＋テキスト説明
 * .mcm-support ...          保険・サポートの枠囲みボックス
 * .mcm-brands ...           コーティング取扱ブランド（ダーク）
 * .mcm-coming ...           準備中（点線枠）ボックス
 * .mcm-clean ...            クリーニングの番号付き左右レイアウト
 * .mcm-qa ...               Q&A（Q/Aバッジ）
 * .mcm-worklist ...         施工実績一覧（フィルタ・グリッド・ページネーション）
 * .mcm-entry ...            施工実績詳細（記事＋サイドバー）
 * .mcm-profile ...          会社概要テーブル
 * .mcm-form ...             お問い合わせフォーム
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・装飾パターン不足：Oswald大英字＋赤小見出しの2段セクション見出し（デザイン固有トンマナ）
 * ・構造不足：赤ユーティリティ帯付き2段ヘッダー／LINE・WEB・TELの3カードCTA
 * ・値の粒度不足：clamp()による可変余白・可変フォント（デザインの流動的サイズ）
 */

/* ============================================================
   共通ラッパー・セクション
   ============================================================ */
.mcm-container { width: min(1200px, 92vw); margin: 0 auto; }
.mcm-container--1160 { width: min(1160px, 92vw); }
.mcm-container--1120 { width: min(1120px, 92vw); }
.mcm-container--1080 { width: min(1080px, 92vw); }
.mcm-container--1000 { width: min(1000px, 92vw); }
.mcm-container--980  { width: min(980px, 92vw); }
.mcm-container--920  { width: min(920px, 92vw); }
.mcm-container--900  { width: min(900px, 92vw); }
.mcm-container--880  { width: min(880px, 92vw); }
.mcm-container--760  { width: min(760px, 92vw); }

.mcm-sec        { padding: clamp(64px, 9vw, 108px) 0; background: #fff; }
.mcm-sec--lg    { padding: clamp(64px, 9vw, 110px) 0; }
.mcm-sec--sm    { padding: clamp(56px, 8vw, 96px) 0; }
.mcm-sec--xs    { padding: clamp(48px, 6vw, 80px) 0; }
.mcm-sec--gray  { background: #F4F4F5; border-top: 1px solid #E7E7E9; border-bottom: 1px solid #E7E7E9; }
.mcm-sec--gray-soft { background: #F4F4F5; }
.mcm-sec--dark  { background: #17181C; }
.mcm-sec--red   { background: #C30D23; }

/* ============================================================
   セクション見出し（Oswald大英字＋赤小見出し）
   ============================================================ */
.mcm-shead { margin-bottom: clamp(34px, 5vw, 56px); }
.mcm-shead--sm { margin-bottom: clamp(24px, 3vw, 36px); }
.mcm-shead--center { text-align: center; }
.mcm-shead__en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #17181C;
  line-height: 1.03;
}
.mcm-shead__ja {
  margin: 11px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  color: #C30D23;
  letter-spacing: .08em;
  line-height: 1.55;
}
.mcm-shead__desc {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: 14.5px;
  line-height: 2.0;
  color: #54555c;
  text-align: center; text-wrap: balance; word-break: keep-all;
}
.mcm-shead--center .mcm-shead__desc { margin-left: auto; margin-right: auto; }
/* ダーク背景用 */
.mcm-shead--dark .mcm-shead__en { color: #fff; }
.mcm-shead--dark .mcm-shead__ja { color: #ff4d63; }
.mcm-shead--dark .mcm-shead__desc { color: #9a9ba1; }
/* 赤背景用 */
.mcm-shead--on-red .mcm-shead__en { color: #fff; }
.mcm-shead--on-red .mcm-shead__ja { color: #fff; }
.mcm-shead--on-red .mcm-shead__desc { color: rgba(255,255,255,.9); }

/* リード見出し（下層冒頭の中央大テキスト） */
.mcm-lead { text-align: center; }
.mcm-lead__label {
  font-family: "Oswald", sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: #C30D23;
}
.mcm-lead__title {
  margin: 20px auto 0;
  max-width: 30em;
  font-size: clamp(19px, 2.9vw, 32px);
  font-weight: 700; line-height: 1.65; letter-spacing: .01em; color: #17181C;
  text-align: center; text-wrap: balance; word-break: keep-all;
}
.mcm-lead__title--narrow { max-width: 24em; }
.mcm-lead__title--mid { max-width: 26em; }
.mcm-lead__title .accent { color: #C30D23; }
.mcm-lead__text {
  margin: 26px auto 0;
  max-width: 42em;
  font-size: 15px; line-height: 2.05; color: #54555c;
  text-align: center; text-wrap: balance; word-break: keep-all;
}
.mcm-nowrap { white-space: nowrap; }
/* スマホ専用改行（PCでは改行しない） */
.mcm-sp-br { display: none; }

/* 2カラム導入（左=画像／右=ラベル＋見出し＋本文） */
.mcm-lead2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.mcm-lead2__img { aspect-ratio: 4/3; min-height: 260px; background-position: center; background-size: cover; border-radius: 4px; box-shadow: 0 24px 48px -22px rgba(0,0,0,.35); }
.mcm-lead2__title { margin: 18px 0 0; font-size: clamp(21px, 3vw, 32px); font-weight: 700; line-height: 1.65; letter-spacing: .02em; color: #17181C; }
.mcm-lead2__title .accent { color: #C30D23; }
.mcm-lead2__text { margin: 24px 0 0; font-size: 15px; line-height: 2.05; color: #54555c; }

/* CMSブログ空状態（記事未投稿時） */
.mcm-empty { grid-column: 1 / -1; margin: 0; text-align: center; padding: 48px 20px; font-size: 14px; line-height: 1.9; color: #9a9ba1; }

/* ============================================================
   ボタン
   ============================================================ */
.mcm-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700;
  padding: 16px 28px; border-radius: 4px;
  text-decoration: none; transition: opacity .3s ease, background .3s ease;
  border: none; cursor: pointer;
}
.mcm-btn:hover { opacity: .88; }
.mcm-btn--line { background: #06C755; color: #fff; }
.mcm-btn--red  { background: #C30D23; color: #fff; }
.mcm-btn--outline-dark {
  background: transparent; color: #fff;
  border: 1px solid #3a3b40; font-size: 13.5px; padding: 14px 24px; white-space: nowrap;
}
.mcm-btn--outline-dark .arrow { color: #ff4d63; }
.mcm-btn--outline {
  background: transparent; color: #17181C;
  border: 1px solid #E2E2E4; font-size: 13.5px; padding: 14px 24px;
}
.mcm-btn--outline .arrow { color: #C30D23; }

/* ============================================================
   ヘッダー（2段バー・sticky）
   ============================================================ */
.mcm-header { position: sticky; top: 0; z-index: 100; width: 100%; background: #fff; }
.mcm-header.is-scrolled { box-shadow: 0 2px 10px rgba(0,0,0,.06); }

.mcm-header__util { background: #C30D23; color: #fbdadf; }
.mcm-header__util-inner {
  width: min(1440px, 95vw); margin: 0 auto; height: 38px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mcm-header__util-brand {
  font-family: "Oswald", sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: #fff; white-space: nowrap;
}
.mcm-header__util-info { display: flex; align-items: center; gap: 18px; font-size: 12px; white-space: nowrap; color: #fff; }
.mcm-header__util-item { display: inline-flex; gap: 7px; }
.mcm-header__util-label { color: #f4b3bc; }
.mcm-header__util-sep { width: 1px; height: 12px; background: rgba(255,255,255,.35); }
.mcm-header__util-map { display: inline-flex; align-items: center; gap: 5px; color: #fff; text-decoration: none; }
.mcm-header__util-map i { font-size: 11px; }

.mcm-header__main { background: #17181C; }
.mcm-header__main-inner {
  width: min(1440px, 95vw); margin: 0 auto; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.mcm-logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.mcm-logo__img { height: 44px; width: auto; display: block; }

/* デスクトップ群（ナビ＋電話＋CTA） */
.mcm-header__desktop { display: flex; align-items: center; gap: 22px; }
.mcm-header__nav { display: flex; align-items: center; gap: 20px; }
.mcm-header__nav-item {
  position: relative; display: flex; flex-direction: column; align-items: center; text-decoration: none;
  font-size: 13px; font-weight: 500; color: #fff; white-space: nowrap; padding: 4px 0;
}
.mcm-header__nav-item::after {
  content: ""; position: absolute; bottom: -10px; left: 0; right: 0; height: 3px;
  background: #C30D23; opacity: 0; transition: opacity .25s ease;
}
.mcm-header__nav-item:hover::after { opacity: .45; }
.mcm-header__nav-item.is-current::after { opacity: 1; }

.mcm-header__actions { display: flex; align-items: center; gap: 10px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18); }
.mcm-header__tel { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; flex: none; white-space: nowrap; }
.mcm-header__tel-label { font-size: 9.5px; letter-spacing: .1em; color: #a9aab0; white-space: nowrap; }
.mcm-header__tel-num { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 19px; color: #fff; letter-spacing: .01em; white-space: nowrap; }
.mcm-header__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #C30D23; color: #fff; font-size: 13px; font-weight: 700;
  padding: 12px 16px; border-radius: 4px; text-decoration: none; white-space: nowrap;
  transition: background .3s ease;
}
.mcm-header__cta:hover { background: #a50a1d; }

/* モバイルハンバーガー（バー内・ダーク角ボタン） */
.mcm-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; background: #C30D23; border: none; border-radius: 4px; cursor: pointer; padding: 0 12px;
}
.mcm-burger__line { height: 2px; background: #fff; display: block; transition: transform .3s ease, opacity .3s ease; }
.mcm-burger.is-active .mcm-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mcm-burger.is-active .mcm-burger__line:nth-child(2) { opacity: 0; }
.mcm-burger.is-active .mcm-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー（白いスライドダウン） */
.mcm-menu { display: none; border-bottom: 1px solid #E2E2E4; background: #fff; }
.mcm-menu.is-open { display: block; }
.mcm-menu__nav { display: flex; flex-direction: column; }
.mcm-menu__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6vw; border-bottom: 1px solid #EFEFF1; text-decoration: none;
  font-size: 15px; font-weight: 500; color: #17181C;
}
.mcm-menu__item.is-current { color: #C30D23; }
.mcm-menu__arrow { font-family: "Oswald", sans-serif; color: #C30D23; }
.mcm-menu__foot { padding: 18px 6vw 24px; display: flex; flex-direction: column; gap: 12px; }
.mcm-menu__tel {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid #E2E2E4; border-radius: 4px; padding: 14px; text-decoration: none;
}
.mcm-menu__tel i { color: #C30D23; font-size: 15px; }
.mcm-menu__tel span { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 20px; color: #17181C; }
.mcm-menu__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #C30D23; color: #fff; font-size: 15px; font-weight: 700; padding: 15px; border-radius: 4px; text-decoration: none;
}

/* 中間幅：詰まり防止で段階的に縮小 */
@media (max-width: 1360px) {
  .mcm-header__main-inner { gap: 16px; }
  .mcm-header__desktop { gap: 16px; }
  .mcm-header__nav { gap: 14px; }
}
@media (max-width: 1300px) {
  .mcm-header__desktop { gap: 12px; }
  .mcm-header__nav { gap: 11px; }
  .mcm-header__nav-item { font-size: 12.5px; }
  .mcm-logo__img { height: 38px; }
  .mcm-header__tel-num { font-size: 17px; }
  .mcm-header__actions { gap: 8px; padding-left: 12px; }
}

/* 1080〜1200px：お問い合わせボタンのはみ出し防止でさらに詰める */
@media (max-width: 1200px) {
  .mcm-header__desktop { gap: 10px; }
  .mcm-header__nav { gap: 8px; }
  .mcm-header__nav-item { font-size: 12px; }
  .mcm-logo__img { height: 32px; }
  .mcm-header__tel-label { display: none; }
  .mcm-header__tel-num { font-size: 16px; }
  .mcm-header__cta { font-size: 12px; padding: 10px 12px; }
  .mcm-header__actions { gap: 8px; padding-left: 10px; }
}

@media (max-width: 1080px) {
  .mcm-header__desktop { display: none; }
  .mcm-burger { display: flex; }
  .mcm-header__util-inner, .mcm-header__main-inner { width: 92vw; }
  .mcm-header__main-inner { height: 64px; }
  /* ハンバーガーで導線を確保できるためフッターMENUは非表示（詳細度を上げて確実に効かせる） */
  .mcm-footer__col.mcm-footer__col--menu { display: none; }
}
@media (max-width: 520px) {
  .mcm-header__util-brand { display: none; }
  .mcm-header__util-info { gap: 12px; font-size: 11px; }
  .mcm-logo__img { height: 34px; }
}

/* ============================================================
   下層ページヒーロー ＋ パンくず
   ============================================================ */
.mcm-phero { position: relative; height: clamp(240px, 34vw, 340px); overflow: hidden; background: linear-gradient(120deg, #16181e, #2b2e38 60%, #3b3f4a); }
.mcm-phero--teal  { background: linear-gradient(120deg, #0e3540, #155e6c 58%, #2a8894); }
.mcm-phero--slate { background: linear-gradient(120deg, #1c2530, #2c3a44 58%, #3d525e); }
.mcm-phero--photo { background-color: #17181C; background-position: center; background-size: cover; background-repeat: no-repeat; }
.mcm-phero--pos-down { background-position: center 67%; }
.mcm-phero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.mcm-phero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,14,.72), rgba(10,11,14,.25)); }
.mcm-phero__inner {
  position: relative; height: 100%; width: min(1200px, 92vw); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}
.mcm-phero__en {
  font-family: "Oswald", sans-serif; font-size: clamp(12px, 1.4vw, 15px); font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: #ff4d63; margin-bottom: 14px;
}
.mcm-phero__title {
  margin: 0; font-size: clamp(26px, 3.8vw, 42px); font-weight: 700; color: #fff;
  letter-spacing: .03em; line-height: 1.4;
  border-left: 5px solid #C30D23; padding-left: clamp(16px, 1.8vw, 24px);
}
.mcm-crumb { background: #fff; border-bottom: 1px solid #E7E7E9; }
.mcm-crumb__inner { width: min(1200px, 92vw); margin: 0 auto; height: 48px; display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.mcm-crumb__inner a { color: #7B7C81; text-decoration: none; }
.mcm-crumb__sep { color: #c4c5ca; }
.mcm-crumb__current { color: #17181C; font-weight: 500; }

/* ============================================================
   TOP メインビュー（ヒーロー）
   ============================================================ */
.mcm-hero { position: relative; width: 100%; height: clamp(520px, 89vh, 760px); overflow: hidden; background: #17181C; }
/* CMSスライダー層（背景・最下層）。CMSは #main_slider(Swiper) を span に注入する。
   既定は --swiper-wrapper-height:100vh のためヒーロー枠に合わない → 100%に上書きして追従させる。 */
.mcm-hero__slider { position: absolute; inset: 0; z-index: 0; }
.mcm-hero__slider #cms-slider-1-1-area { position: absolute; inset: 0; height: 100%; }
.mcm-hero__slider #main_slider.slider_wrapper { --swiper-wrapper-height: 100%; height: 100%; }
.mcm-hero__slider #main_slider .main_slider__outer,
.mcm-hero__slider #main_slider .main_slider,
.mcm-hero__slider #main_slider .swiper-wrapper,
.mcm-hero__slider #main_slider .swiper-slide,
.mcm-hero__slider #main_slider .main_slider__inner { height: 100%; }
.mcm-hero__slider #main_slider .main_slider__inner img { width: 100%; height: 100%; object-fit: cover; }
/* 静止画フォールバック（差し替え前の互換用の img も念のため） */
.mcm-hero__slider > img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 静止画フォールバック（差し替え前の互換用） */
.mcm-hero__slide { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0; transition: opacity 1.1s ease; z-index: 0; }
.mcm-hero__slide.is-active { opacity: 1; }
.mcm-hero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,11,14,.6) 0%, rgba(10,11,14,.28) 42%, rgba(10,11,14,0) 78%); pointer-events: none; }
.mcm-hero__inner {
  position: relative; z-index: 2; height: 100%; width: min(1200px, 92vw); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}
.mcm-hero__label {
  font-family: "Oswald", sans-serif; font-size: clamp(12px, 1.4vw, 15px); font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: #ff4d63; margin-bottom: 22px;
}
.mcm-hero__title {
  margin: 0; max-width: 20em; font-size: clamp(26px, 4.4vw, 52px); font-weight: 700;
  line-height: 1.42; letter-spacing: .01em; color: #fff;
  border-left: 5px solid #C30D23; padding-left: clamp(18px, 2vw, 28px);
}
.mcm-hero__sub { margin: 26px 0 0; max-width: 34em; font-size: clamp(14px, 1.6vw, 18px); line-height: 1.95; color: rgba(255,255,255,.85); padding-left: clamp(23px, 2.3vw, 33px); }
.mcm-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; padding-left: clamp(23px, 2.3vw, 33px); }
.mcm-hero__dots { position: absolute; bottom: 24px; left: calc(50% - min(600px, 46vw)); display: flex; gap: 9px; z-index: 2; }
.mcm-hero__dot { width: 20px; height: 3px; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; transition: all .4s; }
.mcm-hero__dot.is-active { width: 38px; background: #C30D23; }

/* ============================================================
   TOP 導入セクション
   ============================================================ */
.mcm-intro { position: relative; overflow: hidden; }
.mcm-intro__bignum {
  position: absolute; top: clamp(40px, 6vw, 80px); right: -2vw;
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: clamp(90px, 15vw, 200px);
  line-height: .8; color: #F4F4F5; letter-spacing: -.02em; pointer-events: none; user-select: none;
}
.mcm-intro__grid {
  position: relative; width: min(1120px, 92vw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 72px); align-items: center;
}
.mcm-intro__figure { position: relative; padding: 14px 0 14px 14px; }
.mcm-intro__figure::before { content: ""; position: absolute; top: 0; left: 0; width: clamp(90px,12vw,140px); height: clamp(90px,12vw,140px); border-top: 3px solid #C30D23; border-left: 3px solid #C30D23; }
.mcm-intro__figure::after { content: ""; position: absolute; bottom: 0; right: -14px; width: clamp(90px,12vw,140px); height: clamp(90px,12vw,140px); border-bottom: 3px solid #17181C; border-right: 3px solid #17181C; }
.mcm-intro__img { position: relative; aspect-ratio: 5/4; border-radius: 4px; overflow: hidden; background-position: center; background-size: cover; box-shadow: 0 24px 48px -20px rgba(0,0,0,.35); }
.mcm-intro__tag {
  position: absolute; bottom: 30px; left: -14px; background: #C30D23; color: #fff;
  font-family: "Oswald", sans-serif; font-weight: 500; font-size: clamp(11px,1.3vw,13px);
  letter-spacing: .18em; text-transform: uppercase; padding: 9px 16px; border-radius: 3px; z-index: 1;
}
.mcm-intro__en { display: block; font-family: "Oswald", sans-serif; font-size: clamp(30px,4.2vw,48px); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #17181C; line-height: 1.03; }
.mcm-intro__catch { margin: 22px 0 0; font-size: clamp(20px,2.7vw,30px); font-weight: 700; line-height: 1.7; letter-spacing: .02em; color: #17181C; }
.mcm-intro__text { margin: 24px 0 0; max-width: 34em; font-size: 15px; line-height: 2.1; color: #54555c; }

/* ============================================================
   赤トップボーダーカード（強み・こだわり）
   ============================================================ */
.mcm-cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.mcm-scard {
  background: #fff; border: 1px solid #E2E2E4; border-top: 3px solid #C30D23; border-radius: 4px;
  padding: 36px 30px 34px; display: flex; flex-direction: column; gap: 16px;
}
.mcm-scard__head { display: flex; align-items: baseline; gap: 12px; }
.mcm-scard__num { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 44px; line-height: 1; color: #C30D23; }
.mcm-scard__en { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #b6b7bc; }
.mcm-scard__title { margin: 0; font-size: 19px; font-weight: 700; color: #17181C; line-height: 1.5; }
.mcm-scard__text { margin: 0; font-size: 14px; line-height: 1.95; color: #54555c; }
/* こだわり（コーティング）簡易版：番号大＋タイトル＋本文 */
.mcm-scard--simple { padding: 34px 28px; gap: 14px; }
.mcm-scard--simple .mcm-scard__num { font-size: 40px; }
.mcm-scard--simple .mcm-scard__title { font-size: 18px; }

/* ============================================================
   TOP サービス紹介カード
   ============================================================ */
.mcm-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.mcm-service {
  display: flex; flex-direction: column; background: #fff; border: 1px solid #E2E2E4;
  border-radius: 4px; overflow: hidden; text-decoration: none;
}
.mcm-service:hover .mcm-service__img { transform: scale(1.05); }
.mcm-service__thumb { position: relative; height: 190px; overflow: hidden; }
.mcm-service__img { position: absolute; inset: 0; background-position: center; background-size: cover; transition: transform .5s ease; }
.mcm-service__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.34)); }
.mcm-service__en {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-family: "Oswald", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.mcm-service__body { padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.mcm-service__title { margin: 0; font-size: 18.5px; font-weight: 700; color: #17181C; }
.mcm-service__text { margin: 0; font-size: 13.5px; line-height: 1.9; color: #54555c; flex: 1; }
.mcm-service__more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #C30D23; }

/* ============================================================
   TOP 施工実績（ダーク）
   ============================================================ */
.mcm-works-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: clamp(30px, 4vw, 48px); }
.mcm-works-head__desc { margin: 14px 0 0; font-size: 14px; line-height: 1.9; color: #9a9ba1; max-width: 48em; }
.mcm-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.mcm-work {
  display: flex; flex-direction: column; background: #1f2027; border: 1px solid #2f3038;
  border-radius: 4px; overflow: hidden; text-decoration: none; transition: border-color .3s ease;
}
.mcm-work:hover { border-color: #C30D23; }
.mcm-work__thumb { position: relative; height: 180px; background-position: center; background-size: cover; }
.mcm-work__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 9px; }
.mcm-work__cat { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: #fff; background: #C30D23; padding: 4px 9px; border-radius: 3px; }
.mcm-work__title { margin: 0; font-size: 15.5px; font-weight: 700; color: #fff; line-height: 1.6; }
.mcm-work__date { font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .1em; color: #71727a; }

/* ============================================================
   TOP 代表挨拶（Message）
   ============================================================ */
.mcm-message { display: grid; grid-template-columns: minmax(260px, 40%) 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.mcm-message__photo { position: sticky; top: 100px; aspect-ratio: 4/3; background-position: center; background-size: cover; border-radius: 4px; min-height: 260px; }
.mcm-message__en { display: block; font-family: "Oswald", sans-serif; font-size: clamp(30px,4.2vw,48px); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #17181C; line-height: 1.03; }
.mcm-message__ja { margin: 11px 0 24px; font-size: clamp(14px,1.5vw,16px); font-weight: 700; color: #C30D23; letter-spacing: .08em; line-height: 1.6; }
.mcm-message__body { display: flex; flex-direction: column; gap: 15px; font-size: 14px; line-height: 2.0; color: #54555c; }
.mcm-message__body p { margin: 0; }
.mcm-message__body p.strong { font-weight: 700; color: #17181C; }
.mcm-message__sign { margin-top: 28px; padding-top: 22px; border-top: 1px solid #E2E2E4; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mcm-message__sign-role { font-size: 12px; color: #7B7C81; }
.mcm-message__sign-name { font-size: 19px; font-weight: 700; color: #17181C; letter-spacing: .06em; }

/* ============================================================
   お問い合わせ CTA（ダーク・3カード）
   ============================================================ */
.mcm-cta { width: 100%; background: #17181C; padding: clamp(60px, 8vw, 96px) 0; }
.mcm-cta__inner { width: min(1120px, 92vw); margin: 0 auto; }
.mcm-cta__head { text-align: center; margin-bottom: clamp(34px, 5vw, 52px); }
.mcm-cta__en { display: block; font-family: "Oswald", sans-serif; font-size: clamp(30px,4.2vw,48px); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #fff; line-height: 1.03; }
.mcm-cta__lead { margin: 14px auto 0; max-width: 38em; font-size: clamp(15px,1.9vw,19px); font-weight: 700; color: #ffffff; line-height: 1.75; letter-spacing: .03em; text-align: center; text-wrap: balance; word-break: keep-all; }
.mcm-cta__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.mcm-cta__card { display: flex; flex-direction: column; gap: 16px; background: #1f2027; border: 1px solid #40424b; border-radius: 4px; padding: 30px 26px 28px; text-decoration: none; transition: transform .3s ease, border-color .3s ease; }
.mcm-cta__card:hover { border-color: #55575f; }
.mcm-cta__card:hover { transform: translateY(-4px); }
.mcm-cta__card--line { border-top: 3px solid #06C755; }
.mcm-cta__card--web  { border-top: 3px solid #C30D23; }
.mcm-cta__card--tel  { border-top: 3px solid #7B7C81; }
.mcm-cta__badge { align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 12px; border-radius: 4px; color: #fff; }
.mcm-cta__badge--line { background: #06C755; }
.mcm-cta__badge--web  { background: #C30D23; }
.mcm-cta__badge--tel  { background: #6b6c72; }
.mcm-cta__card-head { display: flex; align-items: center; gap: 12px; }
.mcm-cta__icon { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 4px; color: #fff; font-size: 22px; }
.mcm-cta__icon--line { background: #06C755; }
.mcm-cta__icon--web  { background: #C30D23; }
.mcm-cta__icon--tel  { background: #7B7C81; }
.mcm-cta__card-title { font-size: 19px; font-weight: 700; color: #fff; }
.mcm-cta__card-text { margin: 0; font-size: 13.5px; line-height: 1.9; color: #a9aab0; }
.mcm-cta__card-more { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #fff; }
.mcm-cta__arrow--line { color: #06C755; }
.mcm-cta__arrow--web  { color: #C30D23; }
.mcm-cta__card-tel { margin-top: auto; font-family: "Oswald", sans-serif; font-weight: 600; font-size: 25px; color: #fff; letter-spacing: .01em; }

/* ============================================================
   TOP アクセス／会社概要 共通のマッププレースホルダー
   ============================================================ */
.mcm-access { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 48px); }
.mcm-access__rows { display: flex; flex-direction: column; }
.mcm-access__row { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid #E2E2E4; }
.mcm-access__row-label { flex: none; width: 6.5em; font-size: 13px; font-weight: 700; color: #7B7C81; }
.mcm-access__row-val { font-size: 14px; line-height: 1.7; color: #17181C; }

.mcm-map { display: block; text-decoration: none; }
.mcm-map__box {
  position: relative; height: 100%; min-height: 300px; border-radius: 4px; overflow: hidden;
  background: linear-gradient(135deg, #dfe0e3, #c9cace);
}
.mcm-map__box::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(#cfd0d4 1px, transparent 1px), linear-gradient(90deg, #cfd0d4 1px, transparent 1px);
  background-size: 30px 30px;
}
.mcm-map__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.mcm-map__pin i { font-size: 30px; color: #C30D23; }
.mcm-map__pin-addr { font-size: 13px; letter-spacing: .06em; color: #54555c; font-weight: 700; }
.mcm-map__pin-en { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8b8c92; }
.mcm-map__box--tall { height: clamp(280px, 38vw, 420px); min-height: 0; }

/* Googleマップ埋め込み（iframe） */
.mcm-map__frame { position: relative; border-radius: 4px; overflow: hidden; }
.mcm-map__frame--tall { height: clamp(280px, 38vw, 420px); }
.mcm-map__frame--fill { height: 100%; min-height: 300px; }
.mcm-map__iframe { display: block; width: 100%; height: 100%; min-height: inherit; border: 0; }

/* 会社概要リード（テーブルとの間隔） */
.mcm-company-lead { margin-bottom: clamp(40px, 5vw, 64px); }

/* ============================================================
   フッター
   ============================================================ */
.mcm-footer { width: 100%; background: #101115; color: #c4c5ca; border-top: 1px solid #33343c; }
.mcm-footer__cta { border-bottom: 1px solid #2a2b31; }
.mcm-footer__cta-inner { width: min(1200px, 92vw); margin: 0 auto; padding: 36px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.mcm-footer__cta-lead { display: flex; flex-direction: column; gap: 6px; }
.mcm-footer__cta-en { font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: #C30D23; }
.mcm-footer__cta-title { font-size: 18px; font-weight: 700; color: #fff; }
.mcm-footer__cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.mcm-footer__cta-tel { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.mcm-footer__cta-tel-label { font-size: 10.5px; letter-spacing: .1em; color: #8f9096; }
.mcm-footer__cta-tel-num { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 26px; color: #fff; letter-spacing: .01em; }
.mcm-footer__cta-mail { display: inline-flex; align-items: center; gap: 8px; background: #C30D23; color: #fff; font-size: 15px; font-weight: 700; padding: 15px 26px; border-radius: 4px; text-decoration: none; transition: background .3s ease; }
.mcm-footer__cta-mail:hover { background: #a50a1d; }

.mcm-footer__body { width: min(1200px, 92vw); margin: 0 auto; padding: 48px 0 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.mcm-footer__col { display: flex; flex-direction: column; gap: 14px; }
.mcm-footer__col--info { gap: 16px; }
.mcm-footer__logo { display: flex; align-items: center; gap: 11px; }
.mcm-footer__logo-img { height: 40px; width: auto; display: block; }
.mcm-footer__logo-mark { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #C30D23; color: #fff; font-family: "Oswald", sans-serif; font-weight: 600; font-size: 20px; border-radius: 4px; }
.mcm-footer__logo-en { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: .03em; color: #fff; }
.mcm-footer__addr { margin: 0; font-size: 13px; line-height: 1.95; color: #9a9ba1; }
.mcm-footer__hours { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: #9a9ba1; }
.mcm-footer__col-title { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #8f9096; }
.mcm-footer__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; }
.mcm-footer__menu a { font-size: 13.5px; color: #c4c5ca; text-decoration: none; transition: color .3s ease; }
.mcm-footer__menu a:hover { color: #fff; }
.mcm-footer__map { border-radius: 4px; overflow: hidden; }
.mcm-footer__map-iframe { display: block; width: 100%; height: 150px; border: 0; }
.mcm-footer__map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; color: #c4c5ca; text-decoration: none; transition: color .3s ease; }
.mcm-footer__map-link i { font-size: 12px; color: #C30D23; }
.mcm-footer__map-link:hover { color: #fff; }
.mcm-footer__bottom { border-top: 1px solid #2a2b31; }
.mcm-footer__bottom span { display: block; width: min(1200px, 92vw); margin: 0 auto; padding: 18px 0; text-align: center; font-size: 11.5px; color: #71727a; }

/* ============================================================
   下層：左右交互 画像＋テキスト（板金 3ポイント）
   ============================================================ */
.mcm-points { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.mcm-point { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 52px); align-items: center; }
.mcm-point__img { position: relative; aspect-ratio: 4/3; min-height: 230px; background-position: center; background-size: cover; border-radius: 4px; }
.mcm-point--reverse .mcm-point__img { order: 2; }
.mcm-point__num { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 40px; line-height: 1; color: #C30D23; }
.mcm-point__title { margin: 14px 0 14px; font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; color: #17181C; line-height: 1.5; }
.mcm-point__text { margin: 0; font-size: 14.5px; line-height: 2.0; color: #54555c; }
.mcm-point__badge { display: inline-block; margin-top: 16px; font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: .08em; color: #7B7C81; border: 1px solid #d5d5d8; border-radius: 4px; padding: 7px 14px; }

/* サポート枠（保険・代車） */
.mcm-support { border: 1px solid #E2E2E4; border-top: 3px solid #C30D23; border-radius: 4px; padding: clamp(25px, 5vw, 52px); }
.mcm-support__en { display: block; font-family: "Oswald", sans-serif; font-size: clamp(28px,3.8vw,44px); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #17181C; line-height: 1.03; }
.mcm-support__ja { margin: 11px 0 12px; font-size: clamp(14px,1.5vw,16px); font-weight: 700; color: #C30D23; line-height: 1.55; letter-spacing: .08em; }
.mcm-support__text { margin: 0 0 30px; font-size: 14.5px; line-height: 2.0; color: #54555c; max-width: 44em; }
.mcm-support__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.mcm-support__card { background: #F4F4F5; border-radius: 4px; padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; }
.mcm-support__card-head { display: flex; align-items: center; gap: 11px; }
.mcm-support__card-head::before { content: ""; flex: none; width: 4px; height: 20px; background: #C30D23; border-radius: 2px; }
.mcm-support__card-title { font-size: 16px; font-weight: 700; color: #17181C; }
.mcm-support__card-text { font-size: 13px; line-height: 1.85; color: #54555c; }

/* ============================================================
   コーティング：ブランド（ダーク）・準備中
   ============================================================ */
.mcm-brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.mcm-brand { position: relative; background: #fff; border-top: 3px solid #C30D23; border-radius: 6px; padding: 40px 24px 30px; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; box-shadow: 0 16px 34px -20px rgba(0,0,0,.45); transition: transform .3s ease, box-shadow .3s ease; }
.mcm-brand:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -20px rgba(0,0,0,.55); }
.mcm-brand__badge { position: absolute; top: 12px; right: 12px; font-family: "Oswald", sans-serif; font-size: 9.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: #C30D23; background: rgba(195,13,35,.08); padding: 3px 8px; border-radius: 3px; }
.mcm-brand__name { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 28px; letter-spacing: .06em; line-height: 1.15; color: #17181C; margin-top: 4px; }
.mcm-brand__note { font-size: 13px; letter-spacing: .02em; color: #54555c; }

.mcm-coming { border: 1px dashed #cfcfd3; border-radius: 4px; padding: clamp(40px, 6vw, 64px); text-align: center; background: #FAFAFA; }
.mcm-coming__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: #7B7C81; background: #eeeef0; border-radius: 4px; padding: 6px 12px; }
.mcm-coming__text { margin: 20px auto 0; max-width: 34em; font-size: 15px; line-height: 2.0; color: #54555c; }

/* ============================================================
   クリーニング：番号付き左右レイアウト
   ============================================================ */
.mcm-clean { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 5vw, 64px); align-items: center; }
.mcm-clean__figure { position: relative; }
.mcm-clean__img { position: relative; aspect-ratio: 4/3; min-height: 240px; background-position: center; background-size: cover; border-radius: 4px; box-shadow: 0 24px 48px -22px rgba(0,0,0,.4); }
.mcm-clean__bignum { position: absolute; left: -6px; bottom: -22px; font-family: "Oswald", sans-serif; font-weight: 600; font-size: clamp(64px,9vw,104px); line-height: .8; color: #F1F1F2; letter-spacing: -.02em; z-index: -1; }
.mcm-clean__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mcm-clean__num { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 22px; color: #C30D23; letter-spacing: .02em; }
.mcm-clean__line { height: 1px; background: #E2E2E4; width: 64px; }
.mcm-clean__en { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #b6b7bc; }
.mcm-clean__title { margin: 0 0 18px; font-size: clamp(21px,2.6vw,27px); font-weight: 700; color: #17181C; line-height: 1.5; }
.mcm-clean__catch { margin: 0 0 20px; padding: 14px 0 14px 18px; border-left: 3px solid #C30D23; font-size: 15px; font-weight: 700; color: #17181C; line-height: 1.7; }
.mcm-clean__text { margin: 0; font-size: 14.5px; line-height: 2.0; color: #54555c; }
/* 反転（02） */
.mcm-clean--reverse .mcm-clean__figure { order: 2; }
.mcm-clean--reverse .mcm-clean__bignum { left: auto; right: -6px; color: #e6e6e8; }

/* ============================================================
   Q&A（Q/Aバッジ）
   ============================================================ */
.mcm-qa { display: flex; flex-direction: column; gap: 14px; }
.mcm-qa__item { border: 1px solid #E2E2E4; border-radius: 4px; overflow: hidden; }
.mcm-qa__q { display: flex; gap: 14px; padding: 20px 22px; background: #F4F4F5; align-items: flex-start; }
.mcm-qa__a { display: flex; gap: 14px; padding: 20px 22px; align-items: flex-start; }
.mcm-qa__mark { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 20px; line-height: 1.2; }
.mcm-qa__q .mcm-qa__mark { color: #C30D23; }
.mcm-qa__a .mcm-qa__mark { color: #7B7C81; }
.mcm-qa__q-text { font-size: 15.5px; font-weight: 700; color: #17181C; line-height: 1.6; }
.mcm-qa__a-text { font-size: 14px; color: #54555c; line-height: 2.0; }

/* ============================================================
   施工実績 一覧（works.php）
   ============================================================ */
.mcm-worklist__desc { margin: 0 0 24px; font-size: 14px; line-height: 1.9; color: #54555c; }
.mcm-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.mcm-filter__btn { display: inline-block; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 4px; cursor: pointer; border: 1px solid #E2E2E4; background: #fff; color: #54555c; text-decoration: none; transition: all .25s ease; }
.mcm-filter__btn:hover { border-color: #C30D23; color: #C30D23; }
.mcm-filter__btn.is-active { border-color: #C30D23; background: #C30D23; color: #fff; }
.mcm-worklist__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.mcm-wcard { display: flex; flex-direction: column; border: 1px solid #E2E2E4; border-radius: 4px; overflow: hidden; text-decoration: none; background: #fff; transition: box-shadow .3s ease, transform .3s ease; }
.mcm-wcard:hover { box-shadow: 0 12px 26px -14px rgba(0,0,0,.3); transform: translateY(-3px); }
.mcm-wcard__thumb { position: relative; height: 170px; overflow: hidden; background: #f0f0f2 center/cover no-repeat; }
.mcm-wcard__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mcm-wcard__after { position: absolute; top: 9px; left: 9px; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; color: #17181C; background: #fff; padding: 3px 7px; border-radius: 3px; }

/* CMSブログ出力（span内に mcm-wcard を複数注入）→ グリッド配置 */
#cms-blog-entry-list-1-area { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
#cms-blog-entry-list-2-area { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
/* CMS出力が空（未登録）のときにテンプレートのプレースホルダ文字が出ないよう保険 */
#cms-blog-entry-list-1-area:empty::before,
#cms-blog-entry-list-2-area:empty::before { content: ""; }
.mcm-wcard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; }
.mcm-wcard__meta { display: flex; align-items: center; gap: 10px; }
.mcm-wcard__cat { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; color: #fff; background: #C30D23; padding: 3px 8px; border-radius: 3px; }
.mcm-wcard__date { font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .08em; color: #a3a4a9; }
.mcm-wcard__title { margin: 0; font-size: 15px; font-weight: 700; color: #17181C; line-height: 1.6; }
.mcm-wcard__text { margin: 0; font-size: 12.5px; line-height: 1.85; color: #71727a; }

.mcm-pager { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.mcm-pager__item { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border: 1px solid #E2E2E4; color: #17181C; font-family: "Oswald", sans-serif; font-weight: 500; border-radius: 4px; text-decoration: none; }
.mcm-pager__item.is-current { background: #C30D23; border-color: #C30D23; color: #fff; }

/* ============================================================
   施工実績 詳細（entry.php）
   ============================================================ */
.mcm-entry { display: flex; flex-wrap: wrap; gap: clamp(32px, 4vw, 56px); align-items: flex-start; }
.mcm-entry__main { flex: 1 1 520px; min-width: 0; }
.mcm-entry__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mcm-entry__cat { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: #fff; background: #C30D23; padding: 4px 11px; border-radius: 3px; }
.mcm-entry__date { font-family: "Oswald", sans-serif; font-size: 13px; letter-spacing: .08em; color: #a3a4a9; }
.mcm-entry__title { margin: 0 0 28px; font-size: clamp(22px,3vw,32px); font-weight: 700; color: #17181C; line-height: 1.55; letter-spacing: .01em; }
.mcm-entry__ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.mcm-entry__ba-item { position: relative; aspect-ratio: 4/3; background-position: center; background-size: cover; border-radius: 4px; }
.mcm-entry__ba-label { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 4px 10px; border-radius: 3px; }
.mcm-entry__ba-label--before { color: #fff; background: rgba(0,0,0,.5); }
.mcm-entry__ba-label--after { color: #17181C; background: #fff; }
.mcm-entry__spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: #E2E2E4; border: 1px solid #E2E2E4; border-radius: 4px; overflow: hidden; margin-bottom: 36px; }
.mcm-entry__spec-item { background: #fff; padding: 18px 20px; }
.mcm-entry__spec-label { display: block; font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #a3a4a9; margin-bottom: 6px; }
.mcm-entry__spec-val { font-size: 14.5px; font-weight: 700; color: #17181C; }
.mcm-entry__blocks { display: flex; flex-direction: column; gap: 26px; }
.mcm-entry__h2 { margin: 0 0 14px; font-size: 19px; font-weight: 700; color: #17181C; border-left: 4px solid #C30D23; padding-left: 14px; line-height: 1.5; }
.mcm-entry__p { margin: 0; font-size: 14.5px; line-height: 2.05; color: #54555c; }
.mcm-entry__back { display: flex; width: fit-content; align-items: center; justify-content: center; gap: 8px; margin: 40px auto 0; border: 1px solid #E2E2E4; color: #17181C; font-size: 13.5px; font-weight: 700; padding: 14px 24px; border-radius: 4px; text-decoration: none; transition: background .25s ease; }
.mcm-entry__back:hover { background: #F4F4F5; }
.mcm-entry__back .arrow { color: #C30D23; }

/* 記事詳細（CMS出力） */
.mcm-entry__figure { margin: 0 0 28px; border-radius: 4px; overflow: hidden; }
.mcm-entry__figure:empty { display: none; }
.mcm-entry__img { display: block; width: 100%; height: auto; }
.mcm-entry__content { font-size: 14.5px; line-height: 2.05; color: #54555c; }
.mcm-entry__content p { margin: 0 0 1.4em; }
.mcm-entry__content h2 { margin: 1.6em 0 .7em; font-size: 19px; font-weight: 700; color: #17181C; border-left: 4px solid #C30D23; padding-left: 14px; line-height: 1.5; }
.mcm-entry__content h3 { margin: 1.4em 0 .6em; font-size: 16px; font-weight: 700; color: #17181C; }
.mcm-entry__content img { max-width: 100%; height: auto; border-radius: 4px; margin: .6em 0; }
.mcm-entry__content a { color: #C30D23; }
.mcm-entry__content ul, .mcm-entry__content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.mcm-entry__pager { margin-top: 32px; }
.mcm-entry__pager a { color: #17181C; text-decoration: none; font-weight: 700; }
.mcm-entry__pager:empty { display: none; }

/* サイド：一覧に戻るボタン */
.mcm-aside__back { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; border: 1px solid #E2E2E4; color: #17181C; font-size: 13.5px; font-weight: 700; padding: 13px; border-radius: 4px; text-decoration: none; transition: background .25s ease; }
.mcm-aside__back:hover { background: #F4F4F5; }
.mcm-aside__back .arrow { color: #C30D23; }

.mcm-entry__aside { flex: 1 1 260px; max-width: 300px; display: flex; flex-direction: column; gap: 28px; }
.mcm-aside__title { margin: 0 0 14px; font-size: 14px; font-weight: 700; color: #17181C; padding-bottom: 12px; border-bottom: 2px solid #17181C; }
.mcm-aside__cats { display: flex; flex-direction: column; }
.mcm-aside__cat { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid #EFEFF1; text-decoration: none; font-size: 13.5px; color: #17181C; }
.mcm-aside__cat-count { font-family: "Oswald", sans-serif; font-size: 12px; color: #a3a4a9; }
.mcm-aside__recent { display: flex; flex-direction: column; gap: 14px; }
.mcm-aside__recent-item { display: flex; gap: 12px; text-decoration: none; align-items: center; }
.mcm-aside__recent-thumb { flex: none; width: 56px; height: 44px; border-radius: 3px; background-position: center; background-size: cover; }
.mcm-aside__recent-info { display: flex; flex-direction: column; gap: 4px; }
.mcm-aside__recent-title { font-size: 12.5px; font-weight: 500; color: #17181C; line-height: 1.5; }
.mcm-aside__recent-date { font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .06em; color: #a3a4a9; }

/* ============================================================
   会社概要 プロフィールテーブル ＋ お問い合わせフォーム
   ============================================================ */
.mcm-profile { border-top: 2px solid #17181C; }
.mcm-profile__row { display: grid; grid-template-columns: minmax(110px, 200px) 1fr; border-bottom: 1px solid #E2E2E4; }
.mcm-profile__th { background: #F4F4F5; padding: 20px 24px; font-size: 14px; font-weight: 700; color: #17181C; }
.mcm-profile__td { padding: 20px 24px; font-size: 14.5px; line-height: 1.8; color: #3a3b40; }

.mcm-form { display: flex; flex-direction: column; gap: 22px; }
.mcm-form__done { display: none; border: 1px solid #C30D23; border-radius: 4px; padding: 32px; text-align: center; background: #fdf2f3; margin-bottom: 24px; }
.mcm-form__done-title { margin: 0; font-size: 15px; font-weight: 700; color: #C30D23; }
.mcm-form__done-text { margin: 10px 0 0; font-size: 13.5px; color: #54555c; line-height: 1.9; }
.mcm-form__field { display: flex; flex-direction: column; gap: 9px; }
.mcm-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.mcm-form__label { font-size: 13.5px; font-weight: 700; color: #17181C; }
.mcm-form__req { color: #C30D23; margin-left: 6px; font-size: 11px; }
.mcm-form__input, .mcm-form__textarea, .mcm-form__select {
  font-family: inherit; font-size: 14.5px; padding: 14px 16px;
  border: 1px solid #d5d5d8; border-radius: 4px; background: #fff; color: #17181C; width: 100%;
}
.mcm-form__input:focus, .mcm-form__textarea:focus, .mcm-form__select:focus { outline: none; border-color: #C30D23; }
.mcm-form__textarea { resize: vertical; }
.mcm-form__submit {
  align-self: center; display: inline-flex; align-items: center; gap: 9px;
  background: #C30D23; color: #fff; font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 16px 48px; border: none; border-radius: 4px; cursor: pointer; margin-top: 6px; transition: background .3s ease;
}
.mcm-form__submit:hover { background: #a50a1d; }

/* ============================================================
   ページトップボタン（共通page-top上書き）
   ============================================================ */
.page-top__link { background: #C30D23; }

/* ============================================================
   レスポンシブ微調整
   ============================================================ */
@media (max-width: 767px) {
  .mcm-hero__dots { left: 5vw; }
  .mcm-entry__ba { grid-template-columns: 1fr; }
  .mcm-entry__aside { max-width: 100%; }
  .mcm-profile__row { grid-template-columns: 1fr; }
  .mcm-profile__th { padding: 14px 18px; }
  .mcm-profile__td { padding: 14px 18px; }
  .mcm-works-head { align-items: flex-start; }
  .mcm-message { grid-template-columns: 1fr; }
  .mcm-message__photo { position: static; }
  /* SPのメインビュー暗幕：縦グラデ（上を暗く） */
  .mcm-hero__shade { background: linear-gradient(180deg, rgba(10,11,14,.74) 0%, rgba(10,11,14,.4) 50%, rgba(10,11,14,.14) 100%); }
  /* SPのカードパディング調整 */
  .mcm-scard { padding: 26px 20px 24px; gap: 12px; }
  .mcm-scard--simple { padding: 24px 20px; }
  /* SPのカードタイトルを統一（強み／こだわり 同デザイン） */
  .mcm-scard__title { font-size: 17px; }
  /* 準備中ボックス：SPは余白控えめ・本文は左揃えで少し小さく */
  .mcm-coming { padding: 32px 22px; }
  .mcm-coming__text { text-align: left; font-size: 13.5px; margin-top: 16px; }
  /* CTAバッジはSPで右寄せ＋小さめ */
  .mcm-cta__badge { align-self: flex-end; font-size: 10.5px; padding: 4px 9px; letter-spacing: .04em; }
  /* CTAカードのアイコン＋見出しはSPで中央揃え */
  .mcm-cta__card-head { justify-content: center; }
  /* CTAカードの「もっと見る」リンクもSPで中央揃え */
  .mcm-cta__card-more { align-self: center; justify-content: center; }
  /* SP専用改行を有効化 */
  .mcm-sp-br { display: inline; }
  /* PC専用改行はSPで無効化 */
  .mcm-pc-br { display: none; }
  /* SPでは nowrap を解除して枠外への飛び出しを防ぐ */
  .mcm-nowrap { white-space: normal; }
  /* リード本文はSPで左揃え（center/balance/keep-allを解除） */
  .mcm-lead__text { text-align: left; word-break: normal; text-wrap: unset; }
  .mcm-lead__title, .mcm-shead__desc, .mcm-cta__lead { text-wrap: normal; }
  /* 左右交互レイアウトは縦積み時に画像を上へ揃える */
  .mcm-point--reverse .mcm-point__img { order: 0; }
  .mcm-clean--reverse .mcm-clean__figure { order: 0; }
  /* クリーニングの大背景数字がはみ出さないように */
  .mcm-clean { overflow: hidden; }
  /* CTAリード・見出しの左右余白確保 */
  .mcm-cta__inner, .mcm-footer__cta-inner { text-align: center; }
}
