@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 * 有限会社住まいる工房 サイト固有CSS（site.css）
 * ※ claude-design-output の完成デザインを「正」として、共通main.cssで
 *    再現できないブランド固有の見た目を sk- プレフィックスで実装している。
 *
 * .sk-header*      - スティッキー2段ヘッダー（ロゴ+電話+IG+CTA / ナビ）
 * .sk-mnav*        - モバイルアコーディオンナビ
 * .sk-footcta*     - 黄色のお問い合わせCTA帯
 * .sk-footer*      - オレンジのフッター本体＋地図＋コピーライト
 * .sk-btn*         - ピル型ボタン（primary/white/ghost/tel-outline/sub）
 * .sk-badge* / .sk-label - ラベル系（小ピル / Rampart Oneの大ラベル）
 * .sk-mv*          - TOPメインビジュアル（左テキスト＋右画像）
 * .sk-phero*       - 下層ページヒーロー（クリーム/オレンジ）
 * .sk-sechead      - 中央寄せセクション見出し
 * .sk-cta-card*    - オレンジグラデのCTAカード
 * .sk-news* / .sk-newslist* - お知らせ一覧
 * .sk-reason*      - 選ばれる理由（丸画像＋吹き出し）
 * .sk-scard*       - 事業紹介カード
 * .sk-work-card* / .sk-ba* - 施工実績カード / ビフォーアフター
 * .sk-mediarow* / .sk-menubox* / .sk-kodawari - サービス2カラム行
 * .sk-promise* / .sk-stat* - 強みの約束ブロック / 数字カード
 * .sk-merit* / .sk-msgcard / .sk-flow* - 採用ページ各種
 * .sk-dl*          - 定義リスト表（会社概要・募集要項）
 * .sk-form* / .sk-contact-card* - お問い合わせフォーム
 * .sk-post* / .sk-side* / .sk-pager / .sk-chip* / .sk-prose* - ブログ関連
 * .sk-pagetop      - ページトップボタン
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・値の粒度不足：セクション余白(56/64/72/76px)、フォントサイズ(15.5/23/34/42px)等、
 *   デザインが用いる中間値が共通utilityの刻みに無い → sk-固有値で対応
 * ・装飾パターン不足：Rampart One大ラベル、吹き出し(三角tail)、ビフォーアフター
 *   分割カード、丸画像+吹き出し、斜めストライプ背景 → sk-固有コンポーネントで対応
 * ・構造不足：スティッキー2段ヘッダー、黄+橙の2段フッター → sk-固有で実装
 * ・状態不足：カテゴリ色(緑)、フィルタ/ページャのactive配色 → sk-固有で対応
 */

:root {
  --sk-main: #FF8015;
  --sk-main-d: #E86E00;
  --sk-main-dd: #D95F00;
  --sk-sub: #FFB33A;
  --sk-ink: #3A322C;
  --sk-body: #5F5449;
  --sk-body2: #4A403A;
  --sk-muted: #8A7B6E;
  --sk-brown: #B08247;
  --sk-badge-bg: #FFF0D6;
  --sk-cream: #FFF8F0;
  --sk-cream2: #FFF1E0;
  --sk-cream3: #FFF4E5;
  --sk-icon-bg: #FFF3E4;
  --sk-border: #F1E4D3;
  --sk-dash: #EAD9C2;
  --sk-num: #FFCB7A;
  --sk-input-bg: #FFFDFA;
  --sk-input-border: #EAD9C2;
  --sk-photo-bg: #EFE1CF;
  --sk-after-bg: #FFE9CC;
  --sk-cat-green-bg: #E9F3E7;
  --sk-cat-green: #4E8A46;
  --sk-shadow-card: 0 8px 22px rgba(58,50,44,0.06);
  --sk-shadow-card-lg: 0 12px 28px rgba(58,50,44,0.10);
  --sk-shadow-photo: 0 16px 36px rgba(58,50,44,0.14);
  --sk-shadow-orange: 0 10px 22px rgba(255,128,21,0.30);
}

/* ---------- base overrides ---------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--sk-ink);
  background: #fff;
  letter-spacing: 0.01em;
}
a { color: var(--sk-main); }
a:hover { color: var(--sk-main-d); opacity: 1; }

/* ---------- layout helpers ---------- */
.sk-container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.sk-container--w1500 { max-width: 1500px; }
.sk-container--w1200 { max-width: 1200px; }
.sk-container--w1100 { max-width: 1100px; }
.sk-container--w1080 { max-width: 1080px; }
.sk-container--w1000 { max-width: 1000px; }
.sk-container--w960 { max-width: 960px; }
.sk-container--w900 { max-width: 900px; }

.sk-py-8 { padding-top: 8px; padding-bottom: 8px; }
.sk-py-24 { padding-top: 24px; padding-bottom: 24px; }
.sk-py-36 { padding-top: 36px; padding-bottom: 36px; }
.sk-py-52 { padding-top: 52px; padding-bottom: 52px; }
.sk-py-56 { padding-top: 56px; padding-bottom: 56px; }
.sk-py-64 { padding-top: 64px; padding-bottom: 64px; }
.sk-py-72 { padding-top: 72px; padding-bottom: 72px; }
.sk-py-76 { padding-top: 76px; padding-bottom: 76px; }
.sk-py-80 { padding-top: 80px; padding-bottom: 80px; }
.sk-pt-24 { padding-top: 24px; }
.sk-pt-32 { padding-top: 32px; }
.sk-pt-36 { padding-top: 36px; }
.sk-pb-80 { padding-bottom: 80px; }
.sk-mt-36 { margin-top: 36px; }
.sk-mt-40 { margin-top: 40px; }
.sk-center { text-align: center; }
/* スマホ幅でのみ改行する <br class="sk-br-sp"> */
.sk-br-sp { display: none; }

.sk-band { position: relative; overflow: hidden; }
.sk-band--cream { background: linear-gradient(#FFF8F0 0%, #FFF1E0 100%); }
.sk-band--soft { background: #FFF8F0; }
.sk-band--orange { background: #FF8015; color: #fff; }
.sk-band--stripe {
  background: linear-gradient(90deg,
    #fff 25%, #FFF4E5 25%, #FFF4E5 50%,
    #fff 50%, #fff 75%, #FFF4E5 75%, #FFF4E5) 0 0 / 100px 100px #fff;
}

/* decorative blobs */
.sk-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.sk-blob--tr { top: -50px; right: -40px; width: 200px; height: 200px; background: var(--sk-sub); opacity: 0.45; }
.sk-blob--bl { bottom: -60px; left: -40px; width: 200px; height: 200px; background: var(--sk-main); opacity: 0.1; }
.sk-blob--ghost { top: -40px; right: -30px; width: 220px; height: 220px; background: rgba(255,255,255,0.16); }

/* ---------- buttons ---------- */
.sk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1.3;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.sk-btn svg { flex-shrink: 0; }
.sk-btn:hover { transform: translateY(-2px); opacity: 1; }
.sk-btn--primary { background: var(--sk-main); color: #fff; box-shadow: var(--sk-shadow-orange); }
.sk-btn--primary:hover { background: var(--sk-main-d); color: #fff; }
.sk-btn--white { background: #fff; color: var(--sk-main); font-weight: 900; box-shadow: 0 6px 14px rgba(0,0,0,0.12); }
.sk-btn--white:hover { color: var(--sk-main-d); }
.sk-btn--ghost { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }
.sk-btn--ghost:hover { background: rgba(255,255,255,0.30); color: #fff; }
.sk-btn--tel-outline { background: #fff; color: var(--sk-main); border-color: #FFD9AE; font-weight: 900; font-size: 17px; }
.sk-btn--tel-outline:hover { color: var(--sk-main-d); }
.sk-btn--sub { background: var(--sk-sub); color: var(--sk-ink); font-weight: 900; font-size: 19px; }
.sk-btn--sub:hover { color: var(--sk-ink); }
.sk-btn--lg { font-size: 18px; font-weight: 900; padding: 16px 26px; }
.sk-btn--xl { font-size: 20px; font-weight: 900; padding: 16px 30px; }
.sk-btn--wide { padding: 17px 30px; font-size: 17px; }
.sk-btn--block { width: 100%; }
.sk-btn__mini { font-size: 13px; font-weight: 500; opacity: 0.85; }

.sk-link { color: var(--sk-main); font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap; transition: opacity .2s ease; }
.sk-link:hover { opacity: 0.75; color: var(--sk-main); }
.sk-link--sm { font-size: 14px; }

/* ---------- badges / labels ---------- */
.sk-badge {
  display: inline-block; background: var(--sk-badge-bg); color: var(--sk-main-d);
  font-size: 13px; font-weight: 700; padding: 7px 15px; border-radius: 999px;
}
.sk-badge--white { background: #fff; color: var(--sk-main); box-shadow: 0 3px 10px rgba(255,128,21,0.14); }
.sk-badge--ghost { background: rgba(255,255,255,0.22); color: #fff; }
.sk-badge--onstripe { background: #fff; color: var(--sk-main-d); }
.sk-badge--pill { font-size: 11px; padding: 3px 12px; }

.sk-label {
  display: inline-block; background: var(--sk-badge-bg); color: var(--sk-main-d);
  font-family: "Rampart One", "Noto Sans JP", cursive; font-weight: 400;
  font-size: 55px; line-height: 1.1; padding: 2px 22px; border-radius: 999px;
}

/* ---------- section head ---------- */
.sk-sechead { text-align: center; margin-bottom: 48px; }
.sk-sechead .sk-label { margin-bottom: 14px; }
.sk-sechead .sk-badge { margin-bottom: 14px; }
.sk-sechead__title { font-size: 32px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); margin-bottom: 16px; }
.sk-sechead__lead { max-width: 760px; margin: 0 auto; font-size: 15px; line-height: 2; color: var(--sk-body); }

/* ---------- header ---------- */
.sk-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-bottom: 1px solid #F1E4D3;
}
.sk-header__top {
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sk-header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.sk-header__logo img { height: 52px; width: auto; display: block; }
.sk-header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.sk-header__logo-name { font-size: 19px; font-weight: 900; color: var(--sk-ink); letter-spacing: 0.02em; }
.sk-header__logo-sub { font-size: 11px; font-weight: 500; color: var(--sk-brown); }
.sk-header__actions { display: flex; align-items: center; gap: 16px; }
.sk-header__tel { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.1; }
.sk-header__tel-label { font-size: 11px; font-weight: 700; color: var(--sk-brown); }
.sk-header__tel-num { display: inline-flex; align-items: center; gap: 6px; font-size: 24px; font-weight: 900; color: var(--sk-main); letter-spacing: 0.01em; }
.sk-header__tel-num svg { flex-shrink: 0; }
.sk-header__tel-note { font-size: 10px; color: var(--sk-muted); }
.sk-header__ig { width: 44px; height: 44px; border-radius: 14px; background: var(--sk-icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sk-header__cta { background: var(--sk-main); color: #fff; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px; text-decoration: none; box-shadow: 0 6px 16px rgba(255,128,21,0.32); white-space: nowrap; transition: background-color .2s ease; }
.sk-header__cta:hover { background: var(--sk-main-d); color: #fff; }
.sk-burger { display: none; width: 48px; height: 48px; border: none; background: var(--sk-icon-bg); border-radius: 14px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0; }
.sk-burger__line { width: 22px; height: 2px; background: var(--sk-main); border-radius: 2px; display: block; transition: transform .25s ease, opacity .25s ease; }
.sk-burger.is-open .sk-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sk-burger.is-open .sk-burger__line:nth-child(2) { opacity: 0; }
.sk-burger.is-open .sk-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sk-header__nav { border-top: 1px solid #F6ECDD; background: #fff; }
.sk-header__nav-list { max-width: 1200px; margin: 0 auto; padding: 0 20px; list-style: none; display: flex; justify-content: center; }
.sk-header__nav-item { display: flex; align-items: center; }
.sk-header__nav-item + .sk-header__nav-item { border-left: 2px dotted #E7CFB2; }
.sk-header__nav-link { display: block; padding: 16px 40px; font-size: 15px; font-weight: 700; text-decoration: none; color: var(--sk-body2); border-bottom: 3px solid transparent; transition: color .15s, border-color .15s; }
.sk-header__nav-link:hover { color: var(--sk-main); }
.sk-header__nav-link.is-current { color: var(--sk-main); border-bottom-color: var(--sk-main); }

/* mobile nav */
.sk-mnav { overflow: hidden; transition: max-height .3s ease; max-height: 0; background: #fff; position: sticky; top: 73px; z-index: 89; }
.sk-mnav.is-open { max-height: 560px; border-top: 1px solid #F6ECDD; box-shadow: 0 12px 20px rgba(58,50,44,0.08); }
.sk-mnav__list { list-style: none; margin: 0; padding: 8px 20px 20px; display: flex; flex-direction: column; gap: 2px; }
.sk-mnav__link { display: block; padding: 15px 12px; font-size: 16px; font-weight: 700; text-decoration: none; color: var(--sk-body2); border-bottom: 1px solid #F6ECDD; }
.sk-mnav__link.is-current { color: var(--sk-main); }
.sk-mnav__link--tel { color: var(--sk-main); }

/* ---------- footer CTA (yellow) ---------- */
.sk-footcta { position: relative; overflow: hidden; background: var(--sk-sub); }
/* テキスト＋ボタンを縦積みの中央配置に */
.sk-footcta__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 56px 20px; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 28px; }
.sk-footcta__lead { max-width: 720px; }
.sk-footcta__title { margin: 0 0 10px; font-size: 30px; font-weight: 900; color: var(--sk-ink); line-height: 1.5; }
.sk-footcta__sub { margin: 0; font-size: 16px; font-weight: 700; color: #6B4A1E; }
.sk-footcta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sk-footcta__illust { position: absolute; bottom: 0; width: 300px; height: auto; z-index: 1; pointer-events: none; }
.sk-footcta__illust--left { left: 20px; }
.sk-footcta__illust--right { right: 20px; }
.sk-footcta__blob { position: absolute; bottom: -30px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255, 255, 255, .3); z-index: 0; pointer-events: none; }
/* 背後の円はイラストと対で見せるため、同じだけ内側へ */
.sk-footcta__blob--left { left: 20px; }
.sk-footcta__blob--right { right: 20px; }
@media (max-width: 1600px) { .sk-footcta__illust, .sk-footcta__blob { display: none; } }

/* ---------- footer (orange) ---------- */
.sk-footer { background: var(--sk-main); color: #fff; }
.sk-footer__body { max-width: 1100px; margin: 0 auto; padding: 56px 20px 32px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; }
.sk-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
/* ヘッダーと同じ透過PNG。brightness(0)で全ピクセルを黒に潰してからinvert(1)で白へ。
   透過は保持されるため、オレンジ背景に白ロゴだけが乗る */
.sk-footer__logo { height: 56px; width: auto; display: block; filter: brightness(0) invert(1); }
.sk-footer__brand-name { font-size: 19px; font-weight: 900; color: #fff; line-height: 1.4; }
.sk-footer__brand-sub { font-size: 12px; color: #fff; }
.sk-footer__info { margin: 0 0 4px; font-size: 14px; line-height: 1.9; color: #fff; }
.sk-footer__sns { display: flex; gap: 12px; margin-top: 14px; }
.sk-footer__sns-btn { width: 44px; height: 44px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; }
.sk-footer__links { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; column-gap: 22px; row-gap: 10px; }
.sk-footer__links a { font-size: 13px; font-weight: 500; color: #fff; text-decoration: none; }
.sk-footer__links a:hover { color: #fff; text-decoration: underline; }
.sk-footer__map-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.sk-footer__map { border-radius: 16px; overflow: hidden; border: 4px solid rgba(255,255,255,0.08); }
.sk-footer__map iframe { display: block; border: 0; width: 100%; }
.sk-footer__bottom { border-top: 1px solid rgba(255,255,255,0.25); }
.sk-footer__copyright { max-width: 1100px; margin: 0 auto; padding: 18px 20px; font-size: 12px; color: #fff; }

/* ---------- MV (top hero) ---------- */
.sk-mv { position: relative; overflow: hidden; background: linear-gradient(#FFF8F0 0%, #FFF1E0 100%); }
.sk-mv__blob-tr { position: absolute; top: -70px; right: -60px; width: 280px; height: 280px; background: var(--sk-sub); border-radius: 50%; opacity: 0.5; }
.sk-mv__blob-bl { position: absolute; bottom: -90px; left: -60px; width: 240px; height: 240px; background: var(--sk-main); border-radius: 50%; opacity: 0.12; }
.sk-mv__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 64px 20px 72px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.sk-mv__badge { margin-bottom: 22px; }
.sk-mv__title { margin: 0 0 22px; font-size: 38px; line-height: 1.5; font-weight: 900; letter-spacing: 0.01em; color: var(--sk-ink); }
.sk-mv__title em { font-style: normal; color: var(--sk-main); }
.sk-mv__lead { margin: 0 0 32px; font-size: 16px; line-height: 2; color: var(--sk-body); max-width: 560px; }
/* 2つのボタンを同じ幅（大きい方に合わせる）にする */
.sk-mv__btns { display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 14px; }
.sk-mv__btns .sk-btn { width: 100%; }
.sk-mv__note { margin: 18px 0 0; font-size: 13px; color: var(--sk-muted); }
.sk-mv__note a { font-weight: 700; text-decoration: underline; }
/* min-width:0 必須：gridアイテムの既定 min-width:auto のままだと、CMSスライダー内の
   Swiper が「コンテナ幅を測る→スライドに幅を書き込む→その幅が列のmin-contentを押し広げる」
   という無限ループに入り、列幅が 2^25px まで暴走してMVが崩れる */
.sk-mv__visual { position: relative; min-width: 0; }
.sk-mv__photo-frame { position: relative; min-width: 0; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 50px rgba(58,50,44,0.18); }
/* メインビュー：CMSスライダー（内部Swiper）。#slideshow に明示的な高さを持たせ、中身は height:100% で追従させる */
#slideshow { position: relative; width: 100%; max-width: 100%; min-width: 0; height: 400px; overflow: hidden; background-color: var(--sk-photo-bg); }
/* CMSが差し込む入れ子（#cms-slider-1-1-area > .slider_wrapper > .main_slider__outer > .main_slider）を
   親幅・親高さに固定する。差し替え前の静止画マークアップにもそのまま効く */
#slideshow > div,
#slideshow .slider_wrapper,
#slideshow .main_slider__outer,
#slideshow .main_slider { width: 100%; max-width: 100%; height: 100%; }
#slideshow .swiper-wrapper { max-width: 100%; height: 100%; }
#slideshow .swiper-slide { width: 100%; max-width: 100%; height: 100%; }
#slideshow .main_slider__inner { width: 100%; height: 100%; }
#slideshow .main_slider__inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-mv__float { position: absolute; top: -18px; left: -18px; width: 76px; height: 76px; background: var(--sk-sub); border-radius: 50%; z-index: -1; animation: skFloat 5s ease-in-out infinite; }
.sk-mv__line { position: absolute; left: 0; bottom: 0; width: 100%; height: 60px; background-repeat: repeat-x; background-position: left bottom; background-size: auto 60px; opacity: 0.9; pointer-events: none; }
@keyframes skFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- page hero (subpage) ---------- */
.sk-phero { position: relative; overflow: hidden; background: linear-gradient(#FFF8F0, #FFF1E0); }
.sk-phero--orange { background: linear-gradient(135deg, #FF8015, #FFB33A); color: #fff; }
.sk-phero__inner { position: relative; }
.sk-phero__title { margin: 0 0 14px; font-size: 36px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-phero--orange .sk-phero__title { color: #fff; }
.sk-phero__lead { margin: 0; font-size: 15.5px; line-height: 2; color: var(--sk-body); max-width: 900px; }
.sk-phero--orange .sk-phero__lead { color: rgba(255,255,255,0.96); }
/* 街並みイラストは画面幅いっぱいに横リピート（max-width で切らない） */
.sk-phero__line { position: relative; width: 100%; margin: 24px 0 0; height: 56px; background-repeat: repeat-x; background-position: left bottom; background-size: auto 56px; opacity: 0.92; pointer-events: none; }

.sk-crumb { font-size: 12px; color: var(--sk-muted); margin-bottom: 18px; }
.sk-crumb a { color: var(--sk-muted); text-decoration: none; }
.sk-crumb a:hover { color: var(--sk-main); }
.sk-phero--orange .sk-crumb, .sk-phero--orange .sk-crumb a { color: rgba(255,255,255,0.85); }

/* ---------- CTA card (gradient) ---------- */
.sk-cta-card {
  background: linear-gradient(135deg, #FF8015, #FFB33A);
  border-radius: 28px; padding: 48px 44px; color: #fff;
  box-shadow: 0 20px 44px rgba(255,128,21,0.28);
}
.sk-cta-card--split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; }
.sk-cta-card--center { text-align: center; }
.sk-cta-card__title { margin: 0 0 16px; font-size: 26px; font-weight: 900; line-height: 1.6; color: #fff; }
.sk-cta-card__title--sm { font-size: 23px; margin-bottom: 10px; }
.sk-cta-card__text { margin: 0; font-size: 15px; line-height: 2; opacity: 0.97; }
.sk-cta-card__note { margin: 0 0 26px; font-size: 15px; font-weight: 700; opacity: 0.96; }
.sk-cta-card__actions { display: flex; flex-direction: column; gap: 12px; }
.sk-cta-card--center .sk-cta-card__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }

/* ---------- news list (top) ---------- */
.sk-newshead { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.sk-dot-title { margin: 0; font-size: 26px; font-weight: 900; display: flex; align-items: center; gap: 12px; color: var(--sk-ink); }
.sk-dot-title::before { content: ""; width: 14px; height: 14px; background: var(--sk-sub); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.sk-newslist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--sk-border); }
.sk-newslist__item { border-bottom: 1px solid var(--sk-border); }
.sk-newslist__link { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 18px 6px; text-decoration: none; color: var(--sk-ink); transition: background-color .2s ease; }
.sk-newslist__link:hover { background: #FFFBF5; color: var(--sk-ink); }
.sk-newslist__date { font-size: 13px; color: var(--sk-muted); width: 96px; font-variant-numeric: tabular-nums; }
.sk-newslist__title { flex: 1 1 0; min-width: 200px; font-size: 15px; font-weight: 500; }
.sk-cat { display: inline-block; background: var(--sk-badge-bg); color: var(--sk-main-d); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 999px; white-space: nowrap; }
.sk-cat--green { background: var(--sk-cat-green-bg); color: var(--sk-cat-green); }

/* ---------- greeting (about) row ---------- */
.sk-greet { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.sk-greet__photo-wrap { position: relative; }
.sk-greet__photo { aspect-ratio: 4 / 5; border-radius: 24px; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; box-shadow: 0 18px 40px rgba(58,50,44,0.14); }
.sk-greet__accent { position: absolute; bottom: -16px; right: -16px; width: 88px; height: 88px; background: var(--sk-main); border-radius: 50%; opacity: 0.16; }
.sk-greet .sk-label { margin-bottom: 20px; }
.sk-greet__title { margin: 0 0 24px; font-size: 30px; font-weight: 900; line-height: 1.6; color: var(--sk-ink); }
.sk-greet__p { margin: 0 0 18px; font-size: 15.5px; line-height: 2.1; color: var(--sk-body); }
.sk-greet__p:last-of-type { margin-bottom: 28px; }

/* left-aligned section head with side link */
.sk-newshead.sk-lead-inline { margin-bottom: 40px; }
.sk-lead-inline .sk-label { display: inline-block; margin-bottom: 14px; }
.sk-lead-inline__title { font-size: 32px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); margin: 0; }
.sk-lead-inline__lead { margin: 12px 0 0; max-width: 620px; font-size: 15px; line-height: 1.9; color: var(--sk-body); }

/* ---------- reason (bubble) ---------- */
.sk-reason-list { display: flex; flex-direction: column; gap: 40px; }
.sk-reason { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: center; }
.sk-reason--rev { grid-template-columns: 1fr 240px; }
.sk-reason__circle { width: 240px; height: 240px; border-radius: 50%; border: 2px solid #EAD3B8; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; justify-self: center; flex-shrink: 0; }
.sk-reason__circle img { width: 82%; height: 82%; object-fit: contain; }
.sk-reason--rev .sk-reason__circle { order: 2; }
.sk-reason__bubble { position: relative; background: #FFF8F0; border: 1px solid var(--sk-border); border-radius: 20px; padding: 32px 34px; box-shadow: 0 8px 22px rgba(58,50,44,0.06); }
.sk-reason--rev .sk-reason__bubble { order: 1; }
.sk-reason__bubble::after { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-top: 26px solid transparent; border-bottom: 26px solid transparent; }
.sk-reason .sk-reason__bubble::after { left: -27px; border-right: 30px solid #FFF8F0; }
.sk-reason--rev .sk-reason__bubble::after { right: -27px; left: auto; border-left: 30px solid #FFF8F0; }
/* 「ポイント 01」等：クリーム色の吹き出し上で #FFB33A の文字は視認性が低いため、オレンジのピルに */
.sk-reason__num {
  display: inline-block; margin-bottom: 14px;
  font-size: 18px; font-weight: 900; line-height: 1; letter-spacing: 0.08em;
  color: #fff; background: linear-gradient(135deg, var(--sk-main-dd), var(--sk-main-d));
  padding: 9px 20px; border-radius: 999px; box-shadow: var(--sk-shadow-orange);
}
.sk-reason__title { margin: 0 0 14px; font-size: 24px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-reason__text { margin: 0; font-size: 15px; line-height: 2; color: var(--sk-body); }

/* ---------- service cards (bnr) ---------- */
.sk-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sk-grid3--g24 { gap: 24px; }
.sk-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.sk-scard { text-decoration: none; color: inherit; display: block; background: #fff; border: 1px solid var(--sk-border); border-radius: 22px; overflow: hidden; box-shadow: var(--sk-shadow-card-lg); transition: transform .25s ease, box-shadow .25s ease; }
.sk-scard:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(58,50,44,0.14); color: inherit; }
.sk-scard__img { aspect-ratio: 16 / 10; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; }
.sk-scard__body { padding: 26px 24px; }
/* 「事業 01」等：白背景に #FFB33A では視認性が低いため、.sk-reason__num と揃えたオレンジのピルに */
.sk-scard__num {
  display: inline-block; margin-bottom: 12px;
  font-size: 15px; font-weight: 900; line-height: 1; letter-spacing: 0.08em;
  color: #fff; background: linear-gradient(135deg, var(--sk-main-dd), var(--sk-main-d));
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--sk-shadow-orange);
}
.sk-scard__title { margin: 0 0 10px; font-size: 20px; font-weight: 900; color: var(--sk-ink); }
.sk-scard__text { margin: 0 0 16px; font-size: 13.5px; line-height: 1.9; color: var(--sk-body); }
.sk-scard__more { font-size: 14px; font-weight: 700; color: var(--sk-main-d); }

/* ---------- work cards + before/after ---------- */
.sk-work-card { text-decoration: none; color: inherit; display: block; background: #fff; border: 1px solid var(--sk-border); border-radius: 20px; overflow: hidden; box-shadow: var(--sk-shadow-card); transition: transform .25s ease, box-shadow .25s ease; }
.sk-work-card:hover { transform: translateY(-4px); box-shadow: var(--sk-shadow-card-lg); color: inherit; }
.sk-work-card--lg { border-radius: 22px; box-shadow: 0 10px 26px rgba(58,50,44,0.06); }
.sk-work-card__body { padding: 20px; }
.sk-work-card__body > .sk-badge { margin-bottom: 10px; }
.sk-work-card--lg .sk-work-card__body { padding: 24px 26px; }
.sk-work-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sk-work-card__owner { font-size: 12px; color: var(--sk-muted); }
.sk-work-card__title { margin: 0 0 8px; font-size: 17px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-work-card--lg .sk-work-card__title { font-size: 20px; margin-bottom: 12px; }
.sk-work-card__text { margin: 0; font-size: 13px; line-height: 1.8; color: var(--sk-body); }
.sk-work-card--lg .sk-work-card__text { font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
.sk-work-card__dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 13px; border-top: 1px dashed var(--sk-dash); padding-top: 14px; }
.sk-work-card__dl dt { color: var(--sk-brown); font-weight: 700; }
.sk-work-card__dl dd { margin: 0; color: var(--sk-body2); }

/* 施工実績サムネイル：アフター画像1枚のみ。Before/Afterは記事詳細（entry2.php）で見せる */
.sk-work-card__thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background-color: var(--sk-after-bg); background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #B0741E; }
.sk-work-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-work-card__thumb .sk-ba__tag { top: 10px; left: 10px; }
.sk-work-card--lg .sk-work-card__thumb .sk-ba__tag { font-size: 11px; padding: 3px 10px; }
.sk-work-card__date { font-size: 12px; color: var(--sk-muted); font-variant-numeric: tabular-nums; margin-left: auto; }

.sk-ba { display: flex; position: relative; }
.sk-ba__half { flex: 1 1 0; aspect-ratio: 1 / 1; position: relative; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--sk-brown); }
.sk-ba--43 .sk-ba__half { aspect-ratio: 4 / 3; }
.sk-ba__half--after { background-color: var(--sk-after-bg); color: #B0741E; }
.sk-ba__tag { position: absolute; top: 8px; left: 8px; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 6px; z-index: 1; }
.sk-ba--lg .sk-ba__tag { top: 10px; left: 10px; font-size: 11px; padding: 3px 10px; }
.sk-ba__tag--before { background: var(--sk-muted); }
.sk-ba__tag--after { background: var(--sk-main); }

/* ---------- service media rows ---------- */
.sk-svc-block { padding: 56px 0; border-bottom: 1px dashed #EAD9C2; }
.sk-svc-block:last-child { border-bottom: none; }
.sk-mediarow { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.sk-mediarow__photo { aspect-ratio: 4 / 3; border-radius: 22px; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; box-shadow: var(--sk-shadow-photo); }
.sk-mediarow--rev .sk-mediarow__media { order: 2; }
.sk-mediarow--rev .sk-mediarow__body { order: 1; }
.sk-svc__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sk-svc__num { font-size: 34px; font-weight: 900; color: var(--sk-num); line-height: 1; }
.sk-svc__title { margin: 0 0 10px; font-size: 28px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-svc__catch { margin: 0 0 16px; font-size: 20px; line-height: 1.9; font-weight: 700; color: var(--sk-main-d); }
.sk-svc__text { margin: 0 0 22px; font-size: 14.5px; line-height: 2; color: var(--sk-body); }
.sk-menubox { background: #FFF8F0; border-radius: 16px; padding: 20px 22px; margin-bottom: 20px; }
.sk-menubox__label { font-size: 13px; font-weight: 700; color: var(--sk-brown); margin-bottom: 10px; }
.sk-menubox__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sk-menubox__list li { background: #fff; border: 1px solid var(--sk-border); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 999px; }
.sk-kodawari { display: flex; gap: 12px; align-items: flex-start; }
.sk-kodawari__mark { width: 26px; height: 26px; border-radius: 50%; background: var(--sk-main); color: #fff; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.sk-kodawari__text { margin: 0; font-size: 14.5px; line-height: 1.9; color: var(--sk-body2); }
.sk-kodawari__text strong { color: var(--sk-ink); }

/* ---------- strength: promise + stats ---------- */
.sk-promise-list { display: flex; flex-direction: column; gap: 44px; }
.sk-promise { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: center; }
.sk-promise--rev { grid-template-columns: 1fr 220px; }
.sk-promise__circle { width: 220px; height: 220px; border-radius: 50%; background: #fff; border: 2px solid var(--sk-border); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 10px 26px rgba(58,50,44,0.06); justify-self: center; }
.sk-promise__circle img { width: 78%; height: 78%; object-fit: contain; }
.sk-promise--rev .sk-promise__circle { order: 2; }
.sk-promise__body { position: relative; padding-top: 26px; }
.sk-promise--rev .sk-promise__body { order: 1; }
.sk-promise__tag { position: absolute; top: 0; left: 34px; z-index: 2; background: var(--sk-main); color: #fff; font-size: 20px; font-weight: 900; padding: 9px 26px; border-radius: 12px; box-shadow: 0 6px 14px rgba(255,128,21,0.28); display: inline-flex; align-items: center; gap: 8px; }
.sk-promise__tag em { font-style: normal; font-size: 24px; }
.sk-promise__box { background: #FFF8F0; border-radius: 22px; padding: 44px 40px 36px; }
.sk-promise__title { margin: 0 0 16px; font-size: 23px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-promise__text { margin: 0; font-size: 15px; line-height: 2.05; color: var(--sk-body); }

.sk-stat { background: #fff; border-radius: 20px; padding: 30px 20px; border: 1px solid var(--sk-border); text-align: center; }
.sk-stat__icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; background: var(--sk-icon-bg); display: flex; align-items: center; justify-content: center; }
.sk-stat__icon .material-symbols-rounded { font-size: 30px; color: var(--sk-main); }
.sk-stat__label { font-size: 14px; font-weight: 700; color: var(--sk-brown); margin-bottom: 6px; }
.sk-stat__num { font-size: 40px; font-weight: 900; color: var(--sk-main); line-height: 1.1; }
.sk-stat__num small { font-size: 18px; }

/* ---------- recruit ---------- */
.sk-merit { background: #fff; border: 1px solid var(--sk-border); border-radius: 22px; padding: 34px 28px; box-shadow: var(--sk-shadow-card); }
/* イラスト（正方形の透過PNG）。TOPの .sk-reason__circle と同じ丸フレームで統一 */
.sk-merit__icon { width: 180px; height: 180px; margin: 0 auto 18px; border-radius: 50%; border: 2px solid #EAD3B8; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sk-merit__icon img { width: 92%; height: 92%; object-fit: contain; display: block; }
/* 番号は見出し内にインラインで並べる（サイズは見出しと同じ、色は従来のまま） */
.sk-merit__num { font-size: 19px; font-weight: 900; color: var(--sk-num); margin-right: 10px; }
.sk-merit__title { margin: 0 0 12px; font-size: 19px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); text-align: center; }
.sk-merit__text { margin: 0; font-size: 14px; line-height: 1.9; color: var(--sk-body); }
.sk-msgcard { background: #fff; border-radius: 24px; padding: 44px 42px; border: 1px solid var(--sk-border); box-shadow: var(--sk-shadow-card); }
/* 代表写真を左に置くバリアント（company.php の .sk-about__photo と同じ見せ方） */
.sk-msgcard--photo { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: center; }
.sk-msgcard__photo { aspect-ratio: 4 / 5; border-radius: 20px; background: var(--sk-icon-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sk-msgcard__photo img { width: 62%; height: auto; object-fit: contain; display: block; }
.sk-msgcard__label { font-size: 13px; font-weight: 700; color: var(--sk-brown); margin-bottom: 10px; }
.sk-msgcard__lead { margin: 0 0 16px; font-size: 18px; font-weight: 900; line-height: 1.7; color: var(--sk-ink); }
.sk-msgcard__text { margin: 0; font-size: 15px; line-height: 2.1; color: var(--sk-body); }
.sk-flow { background: #fff; border-radius: 20px; padding: 30px 26px; box-shadow: 0 10px 24px rgba(0,0,0,0.1); }
.sk-flow__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sk-flow__num { width: 44px; height: 44px; border-radius: 50%; background: var(--sk-main); color: #fff; font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sk-flow__icon { width: 44px; height: 44px; border-radius: 14px; background: var(--sk-icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sk-flow__title { margin: 0 0 8px; font-size: 17px; font-weight: 900; color: var(--sk-ink); }
.sk-flow__text { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--sk-body); }

/* ---------- definition list table ---------- */
.sk-dl { margin: 0; border: 1px solid var(--sk-border); border-radius: 20px; overflow: hidden; background: #fff; }
.sk-dl__row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--sk-border); }
.sk-dl__row:last-child { border-bottom: none; }
/* align-self:start だと dt が自身の内容分の高さになり、dd が2行以上のとき
   背景色が行の高さに満たない。stretch で行全体を塗る */
.sk-dl__row dt { background: #FFF8F0; padding: 16px 22px; font-size: 14px; font-weight: 700; color: var(--sk-brown); align-self: stretch; }
.sk-dl__row dd { margin: 0; padding: 16px 22px; font-size: 14.5px; line-height: 1.8; color: var(--sk-ink); }
.sk-dl--roomy .sk-dl__row dt, .sk-dl--roomy .sk-dl__row dd { padding: 18px 22px; }
.sk-dl--roomy .sk-dl__row dd { line-height: 1.9; }

/* ---------- company: greeting + contact ---------- */
.sk-about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: start; }
.sk-about__photo { aspect-ratio: 4 / 5; border-radius: 24px; background: var(--sk-icon-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; box-shadow: var(--sk-shadow-photo); overflow: hidden; }
.sk-about__photo img { width: 56%; height: auto; object-fit: contain; }
.sk-about__caption { font-size: 14px; font-weight: 700; color: var(--sk-brown); }
.sk-about .sk-label { margin-bottom: 20px; }
.sk-about__title { margin: 0 0 22px; font-size: 26px; font-weight: 900; line-height: 1.6; color: var(--sk-ink); }
.sk-about__p { margin: 0 0 16px; font-size: 15px; line-height: 2.1; color: var(--sk-body); }
.sk-about__sign { margin: 22px 0 0; font-size: 15px; font-weight: 900; color: var(--sk-ink); }

.sk-works-note { text-align: center; margin: 40px 0 0; font-size: 13px; color: var(--sk-muted); }
.sk-flow-heading { margin: 0 0 40px; font-size: 26px; font-weight: 900; text-align: center; color: #fff; }
.sk-flow-note { margin: 14px 0 0; font-size: 13px; color: #fff; }
.sk-anchor { scroll-margin-top: 120px; }
.sk-sechead--tight { margin-bottom: 14px; }

.sk-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0 44px; }
.sk-contact-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 2px solid #FFD9AE; border-radius: 20px; padding: 24px 26px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.sk-contact-card:hover { transform: translateY(-3px); box-shadow: var(--sk-shadow-card); }
.sk-contact-card__icon { width: 52px; height: 52px; border-radius: 16px; background: var(--sk-icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sk-contact-card__label { display: block; font-size: 12px; font-weight: 700; color: var(--sk-brown); }
.sk-contact-card__num { display: block; font-size: 26px; font-weight: 900; color: var(--sk-main); line-height: 1.2; }
.sk-contact-card__big { display: block; font-size: 19px; font-weight: 900; color: var(--sk-ink); line-height: 1.3; }
.sk-contact-card__note { display: block; font-size: 12px; color: var(--sk-muted); }

/* ---------- form ---------- */
.sk-form { background: #fff; border: 1px solid var(--sk-border); border-radius: 24px; padding: 40px; box-shadow: var(--sk-shadow-card); }
.sk-form__inner { display: flex; flex-direction: column; gap: 22px; }
.sk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sk-field { display: block; }
.sk-field__label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--sk-ink); }
.sk-field__req { color: var(--sk-main); font-size: 12px; }
.sk-input { width: 100%; padding: 14px 16px; font-size: 15px; border: 1.5px solid var(--sk-input-border); border-radius: 12px; background: var(--sk-input-bg); font-family: inherit; color: var(--sk-ink); }
.sk-input:focus { outline: none; border-color: var(--sk-main); }
textarea.sk-input { resize: vertical; }
.sk-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.sk-check { display: flex; align-items: center; gap: 8px; background: #FFF8F0; border: 1.5px solid var(--sk-input-border); border-radius: 12px; padding: 11px 18px; font-size: 14px; font-weight: 500; cursor: pointer; }
.sk-check input { width: 17px; height: 17px; accent-color: var(--sk-main); }
.sk-form__submit { align-self: center; background: var(--sk-main); color: #fff; font-weight: 900; font-size: 17px; padding: 16px 48px; border: none; border-radius: 999px; cursor: pointer; box-shadow: var(--sk-shadow-orange); transition: transform .2s ease, background-color .2s ease; }
.sk-form__submit:hover { transform: translateY(-2px); background: var(--sk-main-d); }
.sk-embed { border-radius: 20px; overflow: hidden; border: 1px solid var(--sk-border); }
.sk-embed iframe { display: block; border: 0; width: 100%; }

/* --------------------------------------------------------------------------
   CMSお問い合わせフォーム（cms_ajax）の見た目調整
   CMS側の mail-form.css は実行時に <link> が body へ挿入され、site.css より
   後ろに来る。同スコアではCMS側が勝つため !important で上書きする。
   design_pattern は 1 / 2 のどちらでも効くよう両方を指定。
   -------------------------------------------------------------------------- */
/* -- 送信ボタン：サイト共通のプライマリボタン（.sk-btn--primary）に合わせて中央配置 */
.form-contents .submit-btn,
.form-pattern-1 .submit-btn,
.form-pattern-2 .submit-btn {
  display: block !important;
  width: auto !important;
  min-width: 280px !important;
  max-width: 100% !important;
  margin: 36px auto 0 !important;
  padding: 16px 48px !important;
  background: var(--sk-main) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  box-shadow: var(--sk-shadow-orange) !important;
  cursor: pointer !important;
  transition: transform .2s ease, background-color .2s ease !important;
}
.form-contents .submit-btn:hover,
.form-pattern-1 .submit-btn:hover,
.form-pattern-2 .submit-btn:hover {
  background: var(--sk-main-d) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
/* メールアイコン（::before のマスク画像）はホバー時も白のまま */
.form-contents .submit-btn::before,
.form-pattern-1 .submit-btn::before,
.form-pattern-2 .submit-btn::before,
.form-pattern-1 .submit-btn:hover::before,
.form-pattern-2 .submit-btn:hover::before {
  background-color: #fff !important;
}

/* -- 「必須」ラベル：CMS既定の赤(#ff4f4f)からサイトのオレンジへ */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before,
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  content: '必須' !important;
  color: #fff !important;
  background: var(--sk-main-dd) !important;
  padding: 5px 8px !important;
  margin-right: 5px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  position: relative !important;
  top: -2px !important;
}

/* ---------- thanks（フォーム送信完了ページ） ---------- */
.sk-thanks { background: #fff; border: 1px solid var(--sk-border); border-radius: 24px; padding: 56px 44px; box-shadow: var(--sk-shadow-card); text-align: center; }
.sk-thanks__icon { display: inline-flex; align-items: center; justify-content: center; width: 76px; height: 76px; margin-bottom: 24px; border-radius: 50%; background: var(--sk-badge-bg); }
.sk-thanks__lead { margin: 0 0 18px; font-size: 26px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-thanks__text { margin: 0 0 32px; font-size: 15.5px; line-height: 2.1; color: var(--sk-body); }
.sk-thanks__note { margin: 0 0 36px; padding: 22px 26px; background: var(--sk-cream); border-radius: 16px; text-align: left; }
.sk-thanks__note p { margin: 0 0 10px; font-size: 13.5px; line-height: 1.9; color: var(--sk-body); }
.sk-thanks__note-last { margin-bottom: 0 !important; }
.sk-thanks__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- blog (cms) ---------- */
.sk-cms { display: grid; grid-template-columns: 1fr 300px; gap: 44px; }
.sk-post { display: grid; grid-template-columns: 180px 1fr; gap: 22px; background: #fff; border: 1px solid var(--sk-border); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 6px 18px rgba(58,50,44,0.05); transition: transform .2s ease, box-shadow .2s ease; }
.sk-post:hover { transform: translateY(-3px); box-shadow: var(--sk-shadow-card); color: inherit; }
/* サムネイルはカード（li）の高さいっぱいに伸ばす。
   aspect-ratio を指定すると grid の normal 配置が stretch ではなく start になり、画像の下に余白ができる */
.sk-post__thumb { align-self: stretch; min-height: 160px; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 700; }
.sk-post__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-post__thumb--news { background: linear-gradient(135deg, #FFC98C, #FF9F45); }
.sk-post__thumb--work { background: linear-gradient(135deg, #5B7C8A, #3E5A66); }
.sk-post__thumb--work2 { background: linear-gradient(135deg, #7A8A5B, #556238); }
.sk-post__thumb--info { background: linear-gradient(135deg, #8A6E4B, #5E4A30); }
.sk-post__body { padding: 20px 22px 20px 0; }
.sk-post__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sk-post__date { font-size: 12px; color: var(--sk-muted); font-variant-numeric: tabular-nums; }
.sk-post__title { margin: 0 0 8px; font-size: 18px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-post__excerpt { margin: 0; font-size: 13.5px; line-height: 1.8; color: var(--sk-body); }
.sk-postlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }

.sk-pager { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.sk-pager__item { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; background: var(--sk-icon-bg); color: var(--sk-brown); transition: background-color .2s ease, color .2s ease; }
.sk-pager__item:hover { background: #FFE7C6; color: var(--sk-main-d); }
.sk-pager__item.is-current { background: var(--sk-main); color: #fff; }

.sk-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.sk-chip { display: inline-block; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 999px; background: var(--sk-icon-bg); color: var(--sk-brown); text-decoration: none; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.sk-chip:hover { background: #FFE7C6; color: var(--sk-main-d); }
.sk-chip.is-active { background: var(--sk-main); color: #fff; }

.sk-side { display: flex; flex-direction: column; gap: 28px; }
.sk-side__card { border: 1px solid var(--sk-border); border-radius: 18px; padding: 24px 22px; background: #fff; }
.sk-side__card--cream { background: #FFF8F0; }
.sk-side__title { margin: 0 0 16px; font-size: 15px; font-weight: 900; display: flex; align-items: center; gap: 8px; color: var(--sk-ink); }
.sk-side__title::before { content: ""; width: 10px; height: 10px; background: var(--sk-sub); border-radius: 50%; }
.sk-side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sk-side__list--gap { gap: 14px; }
.sk-side__cat { display: flex; justify-content: space-between; padding: 10px 4px; font-size: 14px; text-decoration: none; color: var(--sk-body2); border-bottom: 1px solid var(--sk-border); }
.sk-side__cat:hover { color: var(--sk-main); }
.sk-side__cat span:last-child { color: var(--sk-brown); }
.sk-side__arch { display: block; padding: 9px 4px; font-size: 14px; text-decoration: none; color: var(--sk-body2); border-bottom: 1px solid var(--sk-border); }
.sk-side__arch:hover { color: var(--sk-main); }
.sk-side__recent { text-decoration: none; color: var(--sk-body2); }
.sk-side__recent:hover { color: var(--sk-main); }
.sk-side__recent-date { display: block; font-size: 11px; color: var(--sk-muted); margin-bottom: 2px; }
.sk-side__recent-title { display: block; font-size: 13.5px; font-weight: 500; line-height: 1.5; }

/* ---------- article (entry) ---------- */
.sk-article__title { margin: 0 0 24px; font-size: 30px; font-weight: 900; line-height: 1.5; color: var(--sk-ink); }
.sk-article__hero { aspect-ratio: 16 / 9; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 700; margin-bottom: 36px; box-shadow: 0 14px 34px rgba(58,50,44,0.14); background: linear-gradient(135deg, #5B7C8A, #3E5A66); background-size: cover; background-position: center; }
.sk-prose { font-size: 15.5px; line-height: 2.1; color: var(--sk-body2); }
.sk-prose p { margin: 0 0 24px; }
.sk-prose h2 { margin: 36px 0 16px; font-size: 22px; font-weight: 900; padding-left: 16px; border-left: 5px solid var(--sk-main); line-height: 1.5; color: var(--sk-ink); }
.sk-prose__info { background: #FFF8F0; border-radius: 18px; padding: 26px 28px; }
.sk-prose__info dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; font-size: 14.5px; }
.sk-prose__info dt { color: var(--sk-brown); font-weight: 700; }
.sk-prose__info dd { margin: 0; }
.sk-ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 24px; }
.sk-ba-pair__cell { aspect-ratio: 4 / 3; border-radius: 14px; position: relative; background-color: var(--sk-photo-bg); background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--sk-brown); }
.sk-ba-pair__cell--after { background-color: var(--sk-after-bg); color: #B0741E; }
.sk-ba-pair__tag { position: absolute; top: 8px; left: 8px; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 6px; }
.sk-article__cta { background: linear-gradient(135deg, #FF8015, #FFB33A); border-radius: 22px; padding: 34px 32px; margin-top: 44px; text-align: center; color: #fff; }
.sk-article__cta-title { margin: 0 0 20px; font-size: 18px; font-weight: 900; line-height: 1.6; }
.sk-article__cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sk-article__nav { display: flex; justify-content: space-between; margin-top: 36px; font-size: 14px; font-weight: 700; gap: 12px; }
.sk-article__nav a { text-decoration: none; }
.sk-article__nav a.is-back { color: var(--sk-muted); }

/* ---------- page top button ---------- */
.sk-pagetop { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--sk-main); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 16px rgba(255,128,21,0.35); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, background-color .2s ease; z-index: 80; }
.sk-pagetop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sk-pagetop:hover { background: var(--sk-main-d); }

/* ---------- scroll reveal (progressive enhancement) ---------- */
.sk-js [data-sk-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.sk-js [data-sk-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .sk-js [data-sk-reveal] { opacity: 1; transform: none; transition: none; }
  .sk-mv__float { animation: none; }
}

/* ==========================================================================
   Responsive（デザイン出力のブレイクポイントに準拠：860 / 900 / 760 / 639）
   ========================================================================== */
@media (max-width: 900px) {
  .sk-mv__inner { grid-template-columns: 1fr; gap: 28px; }
  .sk-mv__title { font-size: 34px; }
  /* 1カラム化する幅では 見出し → スライド画像 → リード → ボタン の順に積む。
     テキスト側ラッパーを display:contents にして子を直接グリッドアイテム化し、order で並べ替える */
  .sk-mv__text { display: contents; }
  .sk-mv__title { order: 1; margin-bottom: 0; }
  .sk-mv__visual { order: 2; }
  .sk-mv__lead { order: 3; margin-bottom: 0; }
  .sk-mv__btns { order: 4; justify-self: start; }
  /* 1カラム化で横幅が広がるため、MV画像（4:3〜3:2）が潰れないよう高さを引き上げる */
  #slideshow { height: 62vw; max-height: 560px; }
  .sk-greet { grid-template-columns: 1fr; gap: 36px; }
  .sk-cta-card--split { grid-template-columns: 1fr; gap: 28px; }
  .sk-grid3 { grid-template-columns: 1fr; }
  .sk-about { grid-template-columns: 1fr; gap: 32px; }
  .sk-cms { grid-template-columns: 1fr; }
  .sk-reason__bubble::after { display: none; }
}
@media (max-width: 860px) {
  .sk-header__nav { display: none; }
  .sk-header__tel-label, .sk-header__tel-note { display: none; }
  .sk-header__cta { display: none; }
  .sk-burger { display: flex; }
  .sk-mnav { top: 73px; }
}
@media (max-width: 760px) {
  .sk-grid2 { grid-template-columns: 1fr; }
  .sk-mediarow { grid-template-columns: 1fr; gap: 28px; }
  .sk-mediarow--rev .sk-mediarow__media { order: 0; }
  .sk-mediarow--rev .sk-mediarow__body { order: 0; }
  .sk-promise, .sk-promise--rev { grid-template-columns: 1fr; gap: 24px; }
  .sk-promise--rev .sk-promise__circle { order: 0; }
  .sk-promise--rev .sk-promise__body { order: 0; }
  .sk-reason, .sk-reason--rev { grid-template-columns: 1fr; gap: 20px; }
  .sk-reason--rev .sk-reason__circle { order: 0; }
  .sk-reason--rev .sk-reason__bubble { order: 0; }
  .sk-footer__body { grid-template-columns: 1fr; gap: 32px; }
  .sk-dl__row { grid-template-columns: 1fr; }
  .sk-dl__row dt { border-bottom: 1px solid var(--sk-border); }
  .sk-form__row { grid-template-columns: 1fr; }
  .sk-contact-grid { grid-template-columns: 1fr; }
  .sk-ba-pair { grid-template-columns: 1fr; }
  .sk-msgcard--photo { grid-template-columns: 1fr; gap: 24px; }
  .sk-msgcard__photo { max-width: 240px; margin: 0 auto; width: 100%; }
  .sk-post { grid-template-columns: 1fr; }
  /* 1カラム化するので、ここでは比率固定に戻す */
  .sk-post__thumb { aspect-ratio: 16 / 9; min-height: 0; }
  .sk-post__body { padding: 0 20px 20px; }
}
@media (max-width: 639px) {
  /* スマホ幅のみの改行 */
  .sk-br-sp { display: inline; }

  /* 長文の説明文は中央寄せだと行頭が揃わず読みにくいため左寄せに */
  .sk-sechead__lead,
  .sk-cta-card__text,
  .sk-cta-card--center .sk-cta-card__text,
  .sk-thanks__text,
  .sk-works-note { text-align: left; }

  /* ヘッダー：電話番号とInstagramはハンバーガーメニュー内に集約するため非表示 */
  .sk-header__tel,
  .sk-header__ig { display: none; }

  /* 下端の街並みライン（60px）に画像フレームが重ならないよう padding-bottom を確保 */
  .sk-mv__inner { padding: 44px 20px 72px; }
  /* 3行（改行位置どおり）で収まるよう、最長行「お部屋の居心地を変えていく。」基準で可変 */
  .sk-mv__title { font-size: clamp(18px, 6vw, 29px); }
  #slideshow { height: 68vw; min-height: 220px; max-height: none; }
  .sk-mv__btns { display: grid; grid-auto-flow: row; justify-self: stretch; }
  .sk-footcta__title { font-size: 23px; }
  .sk-phero__title { font-size: 28px; }
  .sk-sechead__title { font-size: 26px; }
  .sk-label { font-size: 28px; }
  .sk-cta-card { padding: 36px 26px; }
  .sk-form { padding: 28px 22px; }
  .sk-thanks { padding: 36px 22px; }
  .sk-thanks__lead { font-size: 21px; }
  .sk-thanks__note { padding: 18px 18px; }
  .sk-header__logo img { height: 44px; }
  .sk-header__logo-name { font-size: 17px; }
  .sk-header__tel-num { font-size: 20px; }
  .sk-svc__title, .sk-greet__title { font-size: 24px; }
  /* 代表挨拶の写真：1カラムだと全幅で縦に伸びすぎるため縮小。
     margin:0 auto だけだと stretch が効かず中身の幅0で潰れるので width:100% を併記 */
  .sk-greet__photo-wrap { width: 100%; max-width: 240px; margin: 0 auto; }
  /* フッターナビ：ヘッダーのモバイルメニューと重複するため非表示 */
  .sk-footer__links { display: none; }
}
