@charset "UTF-8";
/*
 * ======================================
 * site.css — 株式会社 志興業（サイト固有CSS）
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .font-yuji           - 見出し用 Yuji Syuku（習字風）フォント
 * .kz-grad-text        - 金グラデーション文字
 * .kz-eyebrow          - 小さな金の英字ラベル（SERVICE / NEWS 等）
 * .kz-h2 / .kz-sec-head- セクション見出し（習字風・中央）
 * .kz-section(-sm)     - セクション余白（100px / 70px）※design準拠
 * .kz-outro            - 末尾CTAセクション余白（上0・下100px）
 * .kz-w-1080/-narrow(-sm) - コンテンツ幅ヘルパー（1080/940/900px）
 * .kz-bg-*             - 暗色セクション背景（ベタ／放射グラデ）
 * .kz-panel            - 金枠＋薄金グラデの暗色パネル（カード共通の器）
 * .btn-gold / -outline - 金グラデ／金枠ボタン、.kz-btn-row でボタン行
 * .kz-header*          - 2段スティッキーヘッダー（インフォバー＋メイン）
 * .kz-logo*            - 「志」マーク＋金グラデ社名ロゴ
 * .kz-nav / .kz-cta    - ヘッダーナビ／CTA・SNSボタン
 * .kz-mv*              - TOPメインビュー（ロゴ中央＋背景クロスフェード）
 * .kz-page-hero*       - 下層ページヒーロー（放射グラデ＋パンくず）
 * .kz-news*            - お知らせ行リスト
 * .kz-about*           - TOP 私たちについて
 * .kz-strength*        - TOP 選ばれる3つの理由
 * .kz-menu*            - TOP メニュー導線バナー
 * .kz-service*         - 事業内容カード
 * .kz-works* / .kz-filter / .kz-pager - 施工実績一覧・フィルタ・ページャ
 * .kz-gallery          - フォトギャラリー
 * .kz-timeline*        - 1日のスケジュール
 * .kz-reason*          - 求人 4つの魅力
 * .kz-step*            - 選考プロセス
 * .kz-table*           - 定義テーブル（募集要項・会社概要）
 * .kz-article*         - ブログ記事詳細
 * .kz-cta-band*        - お問い合わせCTA帯
 * .kz-footer*          - フッター
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・装飾パターン不足：金グラデーション（テキスト／ボタン／バッジ）と
 *   暗色×金枠パネル、放射グラデ背景、斜め罫テクスチャ。共通は単色ベース
 *   のため専用クラスを追加。
 * ・構造不足：ロゴ（マーク＋グラデ社名）、2段インフォバー付きヘッダー、
 *   ロゴ中央配置のブランドMV。共通header/slideshowでは組めないため追加。
 * ・値の粒度不足：design準拠の 100px セクション余白・2px角丸ボタン。
 */

/* ==========================================================================
   0. ベース・テーマ調整
   ========================================================================== */
body { -webkit-font-smoothing: antialiased; }
body.is-nav-open { overflow: hidden; }

::selection { background: rgba(203, 162, 74, 0.35); color: #fff; }

.font-yuji { font-family: "Yuji Syuku", serif; font-weight: 400; }

.kz-grad-text {
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 45%, #b8912f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kz-muted  { color: #c8cbc1; }
.kz-faint  { color: #9fa298; }

/* セクション余白（design準拠：100px / 70px） */
.kz-section     { padding: 100px 0; }
.kz-section--sm { padding: 70px 0 40px; }
@media (max-width: 896px) {
  .kz-section     { padding: 64px 0; }
  .kz-section--sm { padding: 48px 0 30px; }
}

/* 暗色セクション背景 */
.kz-bg-1 {
  background: #0e1015;
  border-top: 1px solid rgba(203, 162, 74, 0.16);
  border-bottom: 1px solid rgba(203, 162, 74, 0.16);
}
.kz-bg-1--noline-b { border-bottom: none; }
.kz-bg-radial-tr  { background: radial-gradient(90% 120% at 100% 0%, #14171d 0%, #0c0e12 70%); }
.kz-bg-radial-tl  { background: radial-gradient(100% 120% at 0% 0%, #14171d 0%, #0c0e12 70%); }

/* コンテンツ幅ヘルパー */
.kz-w-1080 { max-width: 1080px; margin-left: auto; margin-right: auto; }
.kz-narrow { max-width: 940px; margin-left: auto; margin-right: auto; }
.kz-narrow-sm { max-width: 900px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   1. 見出し・ラベル
   ========================================================================== */
.kz-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #cba24a;
  margin: 0;
}
.kz-eyebrow--lg { font-size: 13px; letter-spacing: 0.35em; }
/* 各セクションの英字ラベル（ABOUT US / OUR STRENGTH / NEWS 等）は非表示 */
.kz-eyebrow,
.kz-news-sec__head-en { display: none; }

.kz-h2 {
  margin: 12px 0 0;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: #f5f5f5;
}
.kz-sec-head { text-align: center; margin-bottom: 56px; }
@media (max-width: 640px) { .kz-sec-head { margin-bottom: 40px; } }

/* ==========================================================================
   2. パネル・ボタン
   ========================================================================== */
.kz-panel {
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(203, 162, 74, 0.05), rgba(203, 162, 74, 0));
}
.kz-panel--pad { padding: 40px; }
@media (max-width: 640px) { .kz-panel--pad { padding: 26px; } }

.btn-gold,
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  line-height: 1.4;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn-gold {
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 50%, #b8912f);
  color: #0c0e12;
}
.btn-gold:hover {
  color: #0c0e12;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(203, 162, 74, 0.28);
  opacity: 1;
}
.btn-gold-outline {
  border: 1px solid #cba24a;
  color: #e6c76a;
  background: transparent;
}
.btn-gold-outline:hover {
  background: rgba(203, 162, 74, 0.1);
  color: #fdf2b8;
  transform: translateY(-2px);
  opacity: 1;
}
.btn-gold--lg,
.btn-gold-outline.btn-gold--lg { padding: 16px 40px; }

.kz-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.kz-btn-row--center { justify-content: center; }

/* ==========================================================================
   3. ヘッダー
   ========================================================================== */
.kz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(203, 162, 74, 0.28);
}
.kz-header__topbar {
  background: linear-gradient(90deg, rgba(203, 162, 74, 0.1), rgba(203, 162, 74, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.kz-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 28px;
  font-size: 13px;
  color: #b9bcb2;
}
.kz-header__lead { letter-spacing: 0.18em; }
.kz-header__toptel { color: #e6c76a; text-decoration: none; letter-spacing: 0.08em; font-weight: 600; }
.kz-header__toptel:hover { color: #fdf2b8; opacity: 1; }

.kz-header__main {
  height: auto;
  max-width: 1280px;
  padding: 12px 28px;
}

/* ロゴ */
.kz-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.kz-logo:hover { opacity: 1; }
.header__logo img { height: 75px; width: auto; display: block; }
.kz-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #cba24a;
  color: #e6c76a;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.kz-logo__name {
  white-space: nowrap;
  font-size: 26px;
  letter-spacing: 0.12em;
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 45%, #b8912f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kz-logo__mark--lg { width: 44px; height: 44px; font-size: 24px; }
.kz-logo__name--lg { font-size: 30px; }

/* PCナビ */
.kz-nav { gap: 2px; }
.kz-nav .header__nav-item a {
  flex-direction: row;
  padding: 8px 14px;
  color: #eceee6;
  font-size: 15px;
  letter-spacing: 0.08em;
}
/* 下線はホバー時・アクティブ時とも中央基点で左右対称に伸びる（中央配置）
   base(main.css)の left:10%／left:50%+translate 混在を打ち消し、
   left:50% + translateX(-50%) に統一する。 */
.kz-nav .header__nav-item a::after {
  background: linear-gradient(90deg, #fdf2b8, #b8912f);
  height: 2px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.kz-nav .header__nav-item a:hover::after { left: 50%; width: 80%; transform: translateX(-50%); }
.kz-nav .header__nav-item--current a { color: #e6c76a; }
.kz-nav .header__nav-item--current a::after { left: 50%; width: 70%; transform: translateX(-50%); }

/* 右側 CTA + SNS */
.kz-header__right { gap: 12px; height: auto; }
.kz-cta {
  padding: 10px 20px;
  border-radius: 2px;
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 50%, #b8912f);
  color: #0c0e12;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: transform .3s ease, box-shadow .3s ease;
}
.kz-cta:hover { color: #0c0e12; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(203, 162, 74, 0.3); opacity: 1; }
.kz-cta--line { background: #06c755; color: #fff; }
.kz-cta--line:hover { color: #fff; }
.kz-cta--block { display: block; text-align: center; width: 100%; max-width: 320px; margin: 0 auto; }

.kz-sns { display: flex; align-items: center; gap: 8px; }
.kz-sns__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(203, 162, 74, 0.5);
  color: #cba24a;
  text-decoration: none;
  font-size: 15px;
  transition: background .3s ease, color .3s ease;
}
.kz-sns__link:hover { background: rgba(203, 162, 74, 0.15); color: #fdf2b8; opacity: 1; }

/* ヘッダー レスポンシブ */
@media (max-width: 1100px) {
  .kz-header__main { padding: 10px 18px; }
}
@media (max-width: 700px) {
  .kz-header__lead { display: none; }
  .kz-header__topbar-inner { justify-content: flex-end; padding: 4px 18px; }
}
@media (max-width: 640px) {
  .kz-header__topbar { display: none; }
  .kz-logo__mark { width: 34px; height: 34px; font-size: 19px; }
  .kz-logo__name { font-size: 22px; }
  .header__logo img { height: 56px; }
  .kz-header__main { padding: 10px 14px 10px 14px; }
}

/* ハンバーガー / SPナビ 上書き（暗色×金） */
.nav-toggle { background: rgba(12, 14, 18, 0.65); border: 1px solid rgba(203, 162, 74, 0.4); }
.nav-toggle__line { background: #e6c76a; }
.sp-nav {
  background: linear-gradient(140deg, rgba(12, 14, 18, 0.98), rgba(8, 9, 12, 0.99));
  border-left: 1px solid rgba(203, 162, 74, 0.2);
}
.sp-nav__item { border-color: rgba(203, 162, 74, 0.18) !important; }
.sp-nav__item:first-child { border-top-color: rgba(203, 162, 74, 0.18) !important; }
.sp-nav__link { color: #f5f5f5; }
.sp-nav__link::after { color: #cba24a; }
.sp-nav__link:hover { background: rgba(203, 162, 74, 0.08); color: #fdf2b8; }
.sp-nav__bottom { display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   4. TOP メインビュー
   ========================================================================== */
.kz-mv {
  position: relative;
  overflow: hidden;
  background: #0c0e12;
}
/* 背景スライドショー（CMSスライダー差し替え対応の外枠）
   本番ではCMSスライダー（内部Swiper）に差し替え。生成時は静止画1枚。
   Swiper JSは初期化せず、CSSクラス名（.swiper-slide 等）のみ流用する。
   高さはレスポンシブで明示指定し、CMSスライダー（height:100%）が追従する。 */
#slideshow {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 660px;
  overflow: hidden;
  background: #0c0e12;
}
#slideshow .swiper-slide,
#slideshow .main_slider__inner {
  width: 100%;
  height: 100%;
}
#slideshow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kz-mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 50% 40%, rgba(12, 14, 18, 0.72) 0%, rgba(12, 14, 18, 0.9) 100%);
}
.kz-mv__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(115deg, rgba(203, 162, 74, 0.05) 0 2px, transparent 2px 60px);
  opacity: 0.5;
  pointer-events: none;
}
.kz-mv__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: kzFadeUp 1s ease both;
}
.kz-mv__logo {
  width: min(560px, 82vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.6));
}
.kz-mv__title {
  margin: 0;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.25;
  letter-spacing: 0.1em;
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 45%, #b8912f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* PC時は改行無効。スマホ時のみ改行＋フォントサイズ調整 */
.kz-mv__title br { display: none; }
@media (max-width: 640px) {
  .kz-mv__title { font-size: clamp(35px, 6vw, 76px); }
  .kz-mv__title br { display: inline; }
}
.kz-mv__lead {
  max-width: 750px;
  margin: 26px 0 0;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
  color: #c8cbc1;
}
.kz-mv__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
@media (max-width: 640px) { #slideshow { height: 560px; } }

@keyframes kzFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kzFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ==========================================================================
   5. 下層ページヒーロー
   ========================================================================== */
.kz-page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 28px 70px;
  text-align: center;
  background:
    linear-gradient(rgba(12, 14, 18, 0.72), rgba(12, 14, 18, 0.82)),
    url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28388/page-hero.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(203, 162, 74, 0.2);
}
.kz-page-hero__title {
  margin: 14px 0 0;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: 0.1em;
  color: #f5f5f5;
}
.kz-page-hero__lead {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 2;
  color: #c8cbc1;
}
@media (max-width: 640px) {
  .kz-page-hero__lead { text-align: left; margin-left: 0; margin-right: 0; }
}
.kz-page-hero__title--sm { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: 0.06em; }
.kz-breadcrumb { margin-top: 18px; font-size: 13px; color: #7c7f76; }
.kz-breadcrumb a { color: #9fa298; text-decoration: none; }
.kz-breadcrumb a:hover { color: #cba24a; opacity: 1; }
/* 斜め罫テクスチャ（ヒーロー等に重ねる） */
.kz-lines-deco {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(203, 162, 74, 0.05) 0 2px, transparent 2px 60px);
  opacity: 0.5;
  pointer-events: none;
}

/* ==========================================================================
   6. お知らせ（行リスト）
   ========================================================================== */
.kz-news { display: flex; flex-direction: column; width: 100%; }
.kz-news__item {
  display: grid;
  grid-template-columns: 130px 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #dfe2d8;
  transition: background .3s ease;
}
.kz-news__item:hover { background: rgba(203, 162, 74, 0.05); color: #fff; opacity: 1; }
.kz-news__date { font-size: 14px; color: #9fa298; letter-spacing: 0.06em; }
.kz-news__cat {
  justify-self: start;
  padding: 4px 12px;
  border: 1px solid rgba(203, 162, 74, 0.5);
  border-radius: 2px;
  font-size: 12px;
  color: #cba24a;
  letter-spacing: 0.08em;
}
.kz-news__title { font-size: 15px; line-height: 1.6; min-width: 0; }

/* CMS差し替え後：出力エリア(span)がインラインで幅が縮み、タイトルが早く折り返す
   のを防ぐため、ブロック・幅100%にして一覧が親幅いっぱいに広がるようにする。 */
#cms-blog-entry-list-1-area,
#cms-blog-entry-list-area,
#ok-blog-list { display: block; width: 100%; }

/* お知らせ（カテゴリなし）：日付＋タイトルの2列に。
   TOPはCMS出力のためカテゴリを非表示にし、一覧はダミーからcatを削除済み。 */
#cms-blog-entry-list-1-area .kz-news__cat { display: none; }
#cms-blog-list .kz-news__item,
#cms-blog-entry-list-1-area .kz-news__item { grid-template-columns: 130px 1fr; }
@media (max-width: 768px) {
  #cms-blog-list .kz-news__item,
  #cms-blog-entry-list-1-area .kz-news__item { grid-template-columns: 96px 1fr; }
}
.kz-news__more { align-self: flex-end; margin-top: 20px; font-size: 14px; text-decoration: none; letter-spacing: 0.1em; color: #e6c76a; }
.kz-news__more:hover { color: #fdf2b8; opacity: 1; }

/* 月別アーカイブ（お知らせ一覧の右サイドバー） */
.kz-archive { background: #16181e; border: 1px solid rgba(203, 162, 74, 0.22); border-radius: 6px; padding: 24px 22px; }
.kz-archive__title { margin: 0 0 14px; padding-bottom: 12px; font-family: "Yuji Syuku", serif; font-size: 18px; letter-spacing: 0.06em; color: #e6c76a; border-bottom: 1px solid rgba(203, 162, 74, 0.2); }
.kz-archive__list { list-style: none; margin: 0; padding: 0; }
.kz-archive__list li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.kz-archive__list li:last-child { border-bottom: none; }
.kz-archive__list a { display: block; padding: 11px 4px; font-size: 14px; color: #dfe2d8; text-decoration: none; transition: color .3s ease, padding-left .3s ease; }
.kz-archive__list a::before { content: "＞"; margin-right: 8px; font-size: 11px; color: #cba24a; }
.kz-archive__list a:hover { color: #e6c76a; padding-left: 8px; opacity: 1; }

/* TOP お知らせセクション（左見出し＋右一覧） */
.kz-news-sec { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.kz-news-sec__head-en { margin-top: 6px; font-size: 12px; letter-spacing: 0.3em; color: #7c7f76; }
.kz-news-sec__title { font-family: "Yuji Syuku", serif; font-size: 30px; letter-spacing: 0.1em; color: #e6c76a; }
.kz-news-sec__more { display: inline-flex; margin-top: 26px; padding: 12px 26px; font-size: 14px; letter-spacing: 0.08em; }

@media (max-width: 768px) {
  .kz-news-sec { grid-template-columns: 1fr; gap: 24px; }
  .kz-news__item { grid-template-columns: 96px 1fr; row-gap: 6px; }
  .kz-news__cat { grid-row: 1; grid-column: 2; }
  .kz-news__title { grid-column: 1 / -1; }
}

/* ==========================================================================
   7. TOP 私たちについて
   ========================================================================== */
.kz-about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.kz-about__img {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(203, 162, 74, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.kz-about__img img { width: 100%; height: 100%; object-fit: cover; }
.kz-about__title { margin: 10px 0 24px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.4; letter-spacing: 0.06em; color: #f5f5f5; }
.kz-about p { margin: 0 0 18px; font-size: 16px; line-height: 2.1; color: #c8cbc1; }
.kz-link-arrow { font-size: 15px; text-decoration: none; letter-spacing: 0.1em; color: #e6c76a; }
.kz-link-arrow:hover { color: #fdf2b8; opacity: 1; }
@media (max-width: 896px) { .kz-about { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   8. TOP 選ばれる理由
   ========================================================================== */
.kz-strength-list { display: flex; flex-direction: column; gap: 30px; }
.kz-strength {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
}
.kz-strength__img { aspect-ratio: 16 / 10; border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-strength__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kz-strength:hover .kz-strength__img img { transform: scale(1.05); }
.kz-strength__no { font-family: "Yuji Syuku", serif; font-size: 46px; color: rgba(203, 162, 74, 0.4); line-height: 1; }
.kz-badge {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 5px 14px;
  border-radius: 2px;
  background: linear-gradient(100deg, #fdf2b8, #b8912f);
  color: #0c0e12;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.kz-strength__title { margin: 0 0 16px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.4; color: #f5f5f5; }
.kz-strength__body { margin: 0; font-size: 15px; line-height: 2; color: #c8cbc1; }
@media (max-width: 896px) {
  .kz-strength { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
}

/* ==========================================================================
   9. TOP メニュー導線バナー
   ========================================================================== */
.kz-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kz-menu__item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.25);
  text-decoration: none;
  background: #16181e;
  /* 正方形（四隅そのまま）→ ホバーでダイヤ（菱形）に変形 */
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: clip-path .55s cubic-bezier(.4, 0, .2, 1);
}
.kz-menu__item:hover {
  opacity: 1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.kz-menu__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kz-menu__item:hover img { transform: scale(1.08); }
.kz-menu__mask {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.1) 60%);
  transition: background .55s ease;
}
/* ホバー時はゴールドの色味を重ねる */
.kz-menu__item:hover .kz-menu__mask {
  background: linear-gradient(135deg, rgba(203, 162, 74, 0.58) 0%, rgba(150, 110, 26, 0.58) 100%);
}
.kz-menu__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px;
  text-align: left;
  transition: top .55s cubic-bezier(.4, 0, .2, 1), transform .55s cubic-bezier(.4, 0, .2, 1), text-align .55s ease;
}
/* ダイヤ変形時はキャプションを中央（最も広い位置）へ */
.kz-menu__item:hover .kz-menu__cap {
  top: 50%; bottom: auto; padding-bottom: 26px;
  transform: translateY(-50%);
  text-align: center;
}
.kz-menu__ja { display: block; font-family: "Yuji Syuku", serif; font-size: 28px; letter-spacing: 0.08em; color: #f5f5f5; }
.kz-menu__en { display: block; margin-top: 6px; font-size: 12px; letter-spacing: 0.2em; color: #cba24a; transition: color .55s ease; }
/* ホバー時はマスクが金色になり金文字が同化するため白に */
.kz-menu__item:hover .kz-menu__en { color: #fff; }
@media (max-width: 896px) { .kz-menu { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ==========================================================================
   10. 事業内容（サービス）
   ========================================================================== */
.kz-service-list { display: flex; flex-direction: column; gap: 34px; }
.kz-service { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; padding: 40px; }
.kz-service__img { aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kz-service:hover .kz-service__img img { transform: scale(1.05); }
.kz-service__meta { display: flex; align-items: baseline; gap: 14px; }
.kz-service__no { font-family: "Yuji Syuku", serif; font-size: 40px; color: rgba(203, 162, 74, 0.4); line-height: 1; }
.kz-service__en { font-size: 12px; letter-spacing: 0.25em; color: #cba24a; }
.kz-service__title { margin: 10px 0 8px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.4; color: #f5f5f5; }
.kz-service__desc { margin: 6px 0 20px; font-size: 15px; line-height: 2; color: #c8cbc1; }
.kz-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.kz-tags li { padding: 7px 15px; border: 1px solid rgba(203, 162, 74, 0.35); border-radius: 2px; font-size: 13px; color: #dfe2d8; }
.kz-badge--sm { margin: 0 0 14px; padding: 4px 12px; font-size: 12px; }
@media (max-width: 896px) {
  .kz-service { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .kz-service--reverse .kz-service__img { order: -1; }
}

/* 末尾CTA（上余白なし・下100px） */
.kz-outro { padding: 0 0 100px; }
@media (max-width: 896px) { .kz-outro { padding: 0 0 64px; } }

/* 汎用CTAパネル（サービス・求人末尾） */
.kz-cta-panel {
  padding: 56px;
  border-radius: 6px;
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, #1a1d24, #0c0e12);
  border: 1px solid rgba(203, 162, 74, 0.28);
}
.kz-cta-panel__title { margin: 0 0 14px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(26px, 3vw, 38px); letter-spacing: 0.06em; color: #f5f5f5; }
.kz-cta-panel__text { margin: 0 0 28px; font-size: 15px; line-height: 2; color: #c8cbc1; }
/* CTAパネルの2ボタンを大きい方の幅に揃える（中央配置・等幅） */
.kz-cta-panel .kz-btn-row {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  width: max-content;
  max-width: 100%;
}
@media (max-width: 640px) {
  .kz-cta-panel { padding: 36px 24px; }
  .kz-cta-panel .kz-btn-row { grid-auto-flow: row; width: 100%; }
}

/* ==========================================================================
   11. 施工実績 一覧
   ========================================================================== */
.kz-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.kz-filter__btn {
  padding: 8px 18px;
  border: 1px solid rgba(203, 162, 74, 0.35);
  border-radius: 2px;
  font-size: 13px;
  color: #dfe2d8;
  letter-spacing: 0.06em;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
.kz-filter__btn:hover,
.kz-filter__btn.is-active { background: linear-gradient(100deg, #fdf2b8, #b8912f); color: #0c0e12; border-color: transparent; opacity: 1; }

.kz-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kz-work {
  display: block;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  background: #0e1015;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.kz-work:hover { transform: translateY(-4px); border-color: rgba(203, 162, 74, 0.45); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); opacity: 1; }
.kz-work__img { aspect-ratio: 4 / 3; overflow: hidden; background: #16181e; }
.kz-work__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kz-work:hover .kz-work__img img { transform: scale(1.06); }
.kz-work__body { padding: 20px; }
.kz-work__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.kz-work__cat { padding: 3px 11px; border: 1px solid rgba(203, 162, 74, 0.5); border-radius: 2px; font-size: 11px; color: #cba24a; }
.kz-work__date { font-size: 12px; color: #9fa298; }
.kz-work__title { font-size: 16px; line-height: 1.6; color: #eceee6; }
@media (max-width: 896px) { .kz-works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kz-works { grid-template-columns: 1fr; } }

/* ページャ */
.kz-pager { display: flex; gap: 8px; justify-content: center; margin-top: 56px; }
.kz-pager a, .kz-pager span {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
}
.kz-pager a { border: 1px solid rgba(203, 162, 74, 0.35); color: #dfe2d8; transition: background .3s ease, color .3s ease; }
.kz-pager a:hover { background: rgba(203, 162, 74, 0.12); color: #fdf2b8; opacity: 1; }
.kz-pager .is-current { background: linear-gradient(100deg, #fdf2b8, #b8912f); color: #0c0e12; font-weight: 700; }

/* ==========================================================================
   12. フォトギャラリー
   ========================================================================== */
.kz-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
/* ギャラリーCMS差し替え時：出力の span を透過させ、中の <a> を直接グリッド項目にする */
.kz-gallery > #cms-image-1-area { display: contents; }
.kz-gallery__item {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 4px;
  overflow: hidden;
  background: #16181e;
  display: block;
}
.kz-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kz-gallery__item:hover img { transform: scale(1.08); }
.kz-gallery__item:hover { opacity: 1; }
@media (max-width: 896px) { .kz-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .kz-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   13. 求人：4つの魅力
   ========================================================================== */
.kz-hero-badge {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 2px;
  background: linear-gradient(100deg, #fdf2b8, #b8912f);
  color: #0c0e12;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.kz-recruit-hero {
  padding: 110px 28px 100px;
  background:
    linear-gradient(rgba(12, 14, 18, 0.72), rgba(12, 14, 18, 0.82)),
    url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28388/recruit-page-hero.jpg") center / cover no-repeat;
}
.kz-recruit-hero__content { position: relative; z-index: 2; }
/* ヒーローの2ボタンを大きい方の幅に揃える（中央配置・等幅） */
.kz-recruit-hero .kz-btn-row {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  width: max-content;
  max-width: 100%;
}
@media (max-width: 640px) {
  .kz-recruit-hero .kz-btn-row { grid-auto-flow: row; width: 100%; }
}
.kz-recruit-hero__title {
  margin: 26px 0 0;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .kz-recruit-hero__title { font-size: clamp(34px, 5.4vw, 72px); }
}
.kz-recruit-hero__lead { max-width: 720px; margin: 28px auto 0; font-size: 16px; line-height: 2.1; color: #c8cbc1; }

.kz-reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.kz-reason { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 32px; }
.kz-reason__no {
  font-family: "Yuji Syuku", serif;
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(100deg, #fdf2b8, #b8912f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kz-reason__title { margin: 0 0 12px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.5; color: #f5f5f5; }
.kz-reason__body { margin: 0; font-size: 14px; line-height: 2; color: #c8cbc1; }
@media (max-width: 896px) { .kz-reasons { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .kz-reason { gap: 16px; padding: 22px 20px; }
  .kz-reason__no { font-size: 38px; }
  .kz-reason__title { font-size: 17px; line-height: 1.5; }
  .kz-reason__body { font-size: 13.5px; line-height: 1.9; }
}

/* ==========================================================================
   14. 求人：1日のスケジュール（タイムライン）
   ========================================================================== */
.kz-timeline { display: flex; flex-direction: column; }
.kz-timeline__row { display: grid; grid-template-columns: 100px 1fr; gap: 28px; }
.kz-timeline__time { text-align: right; padding-top: 4px; font-family: "Yuji Syuku", serif; font-size: 24px; color: #e6c76a; }
.kz-timeline__main { position: relative; padding: 0 0 40px 34px; border-left: 2px solid rgba(203, 162, 74, 0.3); }
.kz-timeline__row:last-child .kz-timeline__main { padding-bottom: 8px; }
.kz-timeline__dot {
  position: absolute; left: -9px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(100deg, #fdf2b8, #b8912f);
  border: 3px solid #0c0e12;
}
.kz-timeline__inner { display: grid; grid-template-columns: 1fr 200px; gap: 20px; align-items: center; }
.kz-timeline__title { margin: 0 0 8px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: 20px; color: #f5f5f5; }
.kz-timeline__text { margin: 0; font-size: 14px; line-height: 1.9; color: #c8cbc1; }
.kz-timeline__img { aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-timeline__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .kz-timeline__row { grid-template-columns: 72px 1fr; gap: 14px; }
  .kz-timeline__time { font-size: 18px; }
  .kz-timeline__inner { grid-template-columns: 1fr; }
  .kz-timeline__img { max-width: 240px; }
}

/* ==========================================================================
   15. 求人：選考プロセス
   ========================================================================== */
.kz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kz-step {
  padding: 40px 28px;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(160deg, rgba(203, 162, 74, 0.06), rgba(203, 162, 74, 0));
}
.kz-step__circle {
  width: 76px; height: 76px; margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #cba24a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.kz-step__label { font-size: 10px; letter-spacing: 0.2em; color: #cba24a; }
.kz-step__num { font-family: "Yuji Syuku", serif; font-size: 30px; color: #e6c76a; line-height: 1; }
.kz-step__title { margin: 0 0 12px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: 20px; color: #f5f5f5; }
.kz-step__text { margin: 0; font-size: 14px; line-height: 1.9; color: #c8cbc1; }
@media (max-width: 896px) { .kz-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ==========================================================================
   16. 定義テーブル（募集要項・会社概要）
   ========================================================================== */
.kz-table { border: 1px solid rgba(203, 162, 74, 0.22); border-radius: 6px; overflow: hidden; }
.kz-table__row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.kz-table__row:last-child { border-bottom: none; }
.kz-table__th { padding: 22px 26px; background: rgba(203, 162, 74, 0.06); font-family: "Yuji Syuku", serif; font-size: 16px; color: #e6c76a; letter-spacing: 0.04em; }
.kz-table__td { padding: 22px 26px; font-size: 15px; line-height: 1.9; color: #dfe2d8; }
@media (max-width: 640px) {
  .kz-table__row { grid-template-columns: 1fr; }
  .kz-table__th { padding: 16px 20px 8px; }
  .kz-table__td { padding: 8px 20px 18px; }
}

/* 代表挨拶（会社概要） */
.kz-message { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.kz-message__img { aspect-ratio: 3 / 4; border: 1px solid rgba(203, 162, 74, 0.25); border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-message__img img { width: 100%; height: 100%; object-fit: cover; }
.kz-message__title { margin: 10px 0 24px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.4; color: #f5f5f5; }
.kz-message p { margin: 0 0 18px; font-size: 16px; line-height: 2.1; color: #c8cbc1; }
.kz-message__sign { font-family: "Yuji Syuku", serif; font-size: 22px; letter-spacing: 0.08em; color: #f5f5f5; }
@media (max-width: 896px) { .kz-message { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   17. ブログ記事詳細
   ========================================================================== */
.kz-article { max-width: 860px; margin: 0 auto; padding: 70px 28px 40px; }
/* 2カラム（記事詳細＋月別アーカイブ）内ではメイン列いっぱいに */
.main-side__main .kz-article { max-width: none; margin: 0; padding: 0; }
.kz-article__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.kz-article__date { font-size: 14px; color: #9fa298; }
.kz-article__cat { padding: 4px 12px; border: 1px solid rgba(203, 162, 74, 0.5); border-radius: 2px; font-size: 12px; color: #cba24a; }
.kz-article__title {
  margin: 0 0 30px;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.5;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.25);
  color: #f5f5f5;
}
.kz-article__thumb { aspect-ratio: 16 / 9; margin-bottom: 34px; border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-article__thumb img { width: 100%; height: 100%; object-fit: cover; }
.kz-article__body { font-size: 16px; line-height: 2.2; color: #d3d6cc; }
.kz-article__body p { margin: 0 0 22px; }
.kz-article__body p:last-child { margin-bottom: 0; }
.kz-article__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 34px 0 40px; }
.kz-article__shots div { aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: #16181e; }
.kz-article__shots img { width: 100%; height: 100%; object-fit: cover; }
.kz-article__back { text-align: center; margin-top: 50px; }

/* ==========================================================================
   18. お問い合わせCTA帯
   ========================================================================== */
.kz-cta-band { background: radial-gradient(120% 140% at 50% 0%, #14171d 0%, #0c0e12 70%); }
.kz-panel--center { padding: 56px; }
.kz-panel--center .kz-btn-row { justify-content: center; }
.kz-cta-band__title { margin: 12px 0 14px; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: 0.06em; color: #f5f5f5; }
.kz-cta-band__text { margin: 0 0 24px; font-size: 15px; line-height: 2; color: #c8cbc1; }
.kz-cta-band__tel { margin: 0 0 28px; font-size: clamp(30px, 4vw, 44px); letter-spacing: 0.04em; }
.kz-cta-band__tel a { color: #e6c76a; text-decoration: none; }
.kz-cta-band__tel a:hover { color: #fdf2b8; opacity: 1; }
@media (max-width: 640px) { .kz-panel--center { padding: 34px 22px; } }

/* ==========================================================================
   18-2. お問い合わせフォーム（CMSフォーム差し替え対応）
   要素セレクタ（input/select/textarea）でも指定し、CMSフォーム差し替え後も
   同じ見た目が効くようにする。
   ========================================================================== */
.kz-form__lead { margin: 18px 0 0; font-size: 15px; line-height: 2; color: #c8cbc1; }
.kz-form__lead a { color: #e6c76a; text-decoration: none; }
.kz-form__lead a:hover { color: #fdf2b8; opacity: 1; }

.kz-form { margin-top: 40px; }
.kz-form__row { margin-bottom: 26px; }
.kz-form__label {
  display: block;
  margin-bottom: 10px;
  font-family: "Yuji Syuku", serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #e6c76a;
}
.kz-form__req {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  background: rgba(203, 162, 74, 0.14);
  border: 1px solid rgba(203, 162, 74, 0.4);
  font-family: sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #cba24a;
  vertical-align: middle;
}
.kz-form input,
.kz-form select,
.kz-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #16181e;
  border: 1px solid rgba(203, 162, 74, 0.22);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.7;
  color: #eceee6;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.kz-form textarea { resize: vertical; min-height: 150px; }
.kz-form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #cba24a 50%), linear-gradient(135deg, #cba24a 50%, transparent 50%); background-position: right 20px center, right 14px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.kz-form input::placeholder,
.kz-form textarea::placeholder { color: #7d8177; }
.kz-form input:focus,
.kz-form select:focus,
.kz-form textarea:focus {
  outline: none;
  border-color: #cba24a;
  box-shadow: 0 0 0 3px rgba(203, 162, 74, 0.16);
}
.kz-form__submit { margin-top: 36px; text-align: center; }
.kz-form__submit .btn-gold { width: 100%; max-width: 320px; }

/* --------------------------------------------------------------------------
   CMSフォーム（.form-pattern-1）差し替え後のスタイル上書き
   CMS側CSSに勝つため !important を付与し、ダークテーマ×金アクセントに合わせる。
   -------------------------------------------------------------------------- */
/* フォーム全体：白背景→サイトのダーク面（透過）／文字は明るく */
.form-pattern-1 { background: transparent !important; }
.form-pattern-1,
.form-pattern-1 dl dt,
.form-pattern-1 dl dd { color: #eceee6 !important; }

/* 必須マーク：赤いチップ→サイトの金系チップ「必須」 */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  content: '必須' !important;
  color: #cba24a !important;
  background: rgba(203, 162, 74, 0.14) !important;
  border: 1px solid rgba(203, 162, 74, 0.4) !important;
  border-radius: 2px !important;
  padding: 2px 8px !important;
  margin-left: 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

/* 行の区切り線：サイトの金系ディバイダーに */
.form-pattern-1 dl dd:not(.pattern-exclusion) {
  border-bottom: 1px solid rgba(203, 162, 74, 0.18) !important;
}

/* 入力欄・テキストエリア：ダーク面＋金枠に */
.form-pattern-1 dd:not(.pattern-exclusion) input[type="text"],
.form-pattern-1 dd:not(.pattern-exclusion) input[type="tel"],
.form-pattern-1 dd:not(.pattern-exclusion) input[type="email"],
.form-pattern-1 dd:not(.pattern-exclusion) select,
.form-pattern-1 dd:not(.pattern-exclusion) .textarea {
  background: #16181e !important;
  border: 1px solid rgba(203, 162, 74, 0.22) !important;
  border-radius: 5px !important;
  color: #eceee6 !important;
}

/* 送信ボタン：サイトの金グラデボタン（.btn-gold）に揃え、中央配置 */
.form-pattern-1 .submit-btn,
.kz-form .submit-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 260px !important;
  margin: 36px auto 0 !important;
  padding: 16px 40px !important;
  border: none !important;
  border-radius: 2px !important;
  background: linear-gradient(100deg, #fdf2b8, #e6c76a 50%, #b8912f) !important;
  color: #0c0e12 !important;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}
.form-pattern-1 .submit-btn:hover,
.kz-form .submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 26px rgba(203, 162, 74, 0.28) !important;
  opacity: 1 !important;
}
/* 送信ボタン内の装飾（矢印等）：白→サイトに合う黒 */
.form-pattern-1 .submit-btn::before,
.form-pattern-1 .submit-btn:hover::before {
  background-color: #0c0e12 !important;
}

/* --------------------------------------------------------------------------
   サンクスページ（thanks.php）
   -------------------------------------------------------------------------- */
.kz-thanks { text-align: center; padding: 20px 0; }
.kz-thanks__icon { font-size: 64px; color: #e6c76a; line-height: 1; margin-bottom: 24px; }
.kz-thanks__title { margin: 0 0 26px; font-family: "Yuji Syuku", serif; font-weight: 400; font-size: clamp(24px, 3.2vw, 38px); color: #f5f5f5; letter-spacing: 0.04em; }
.kz-thanks__text { margin: 0 0 26px; font-size: 16px; line-height: 2.1; color: #c8cbc1; }
.kz-thanks__note { margin: 0 0 40px; font-size: 13px; line-height: 1.9; color: #9fa298; }
.kz-thanks__note a { color: #e6c76a; text-decoration: none; }
.kz-thanks__note a:hover { color: #fdf2b8; opacity: 1; }
.kz-thanks__btns { display: flex; justify-content: center; }

/* ==========================================================================
   19. フッター
   ========================================================================== */
.kz-footer { background: #08090c; border-top: 1px solid rgba(203, 162, 74, 0.28); color: #cfd2c8; }
.kz-footer__body { max-width: 1280px; margin: 0 auto; padding: 64px 28px 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.kz-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.kz-footer__logo-img { height: 60px; width: auto; display: block; }
.kz-footer__lead { margin: 0 0 24px; font-size: 15px; line-height: 1.9; color: #a7aa9f; }
.kz-footer__info { font-size: 15px; line-height: 1.9; color: #cfd2c8; }
.kz-footer__info p { margin: 0; }
/* フッターの2ボタンを大きい方の幅に揃える（均等幅） */
.kz-footer__btns {
  margin-top: 26px;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  width: max-content;
  max-width: 100%;
}
@media (max-width: 640px) {
  .kz-footer__btns { grid-auto-flow: row; width: 100%; }
}
.kz-footer__sns { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.kz-footer__sns-link { padding: 8px 16px; border: 1px solid rgba(203, 162, 74, 0.4); border-radius: 4px; color: #cba24a; text-decoration: none; font-size: 13px; letter-spacing: 0.06em; transition: background .3s ease, color .3s ease; }
.kz-footer__sns-link:hover { background: rgba(203, 162, 74, 0.12); color: #fdf2b8; opacity: 1; }
.kz-footer__col--map { display: flex; flex-direction: column; }
.kz-footer__map-title { font-family: "Yuji Syuku", serif; font-size: 18px; letter-spacing: 0.1em; color: #e6c76a; margin-bottom: 14px; }
.kz-footer__map { flex: 1; min-height: 300px; border: 1px solid rgba(203, 162, 74, 0.28); border-radius: 4px; overflow: hidden; }
.kz-footer__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; filter: grayscale(0.3) contrast(1.1); }
.kz-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.kz-footer__bottom-inner { max-width: 1280px; margin: 0 auto; padding: 20px 28px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.kz-footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.kz-footer__nav a { color: #9fa298; text-decoration: none; font-size: 13px; }
.kz-footer__nav a:hover { color: #cba24a; opacity: 1; }
@media (max-width: 640px) { .kz-footer__nav { display: none; } }
.kz-footer__copy { margin: 0; font-size: 13px; color: #7c7f76; }
@media (max-width: 896px) {
  .kz-footer__body { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .kz-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ==========================================================================
   20. ページトップボタン（暗色×金）
   ========================================================================== */
.page-top__link { background: linear-gradient(100deg, #fdf2b8, #b8912f); color: #0c0e12; }
.page-top__link:hover { opacity: 0.85; }
