/*
Theme Name: BusinessPress
Theme URI: https://businesspress.jp/theme/
Author: BusinessPress
Author URI: https://businesspress.jp/
Description: co-labolabo custom theme based on BusinessPress.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: businesspress
*/


/* ============================================
 * CSS カスタムプロパティ
 * ニュートラル基調 + CTA限定のアクセント
 * ============================================ */
:root {
  /* 中間色（ほぼ黒〜温かみのあるオフホワイト） */
  --cl-ink: #0B0B0D;
  --cl-ink-soft: #1A1A1C;
  --cl-paper: #F7F6F2;
  --cl-paper-alt: #EFEDE6;
  --cl-line: #E5E3DC;
  --cl-muted: #6B6B72;
  --cl-muted-soft: #8B8B92;

  /* アクセント: CTA限定 */
  --cl-accent: #D97706;
  --cl-accent-hover: #B45309;

  /* 旧変数との互換（段階的に撤去） */
  --cl-primary: var(--cl-accent);
  --cl-black: var(--cl-ink);
  --cl-white: #fff;
  --cl-gray-dark: #2A2A2E;
  --cl-gray: var(--cl-muted);
  --cl-gray-light: var(--cl-paper);
  --cl-border: var(--cl-line);

  /* レイアウト */
  --cl-max-width: 1200px;
  --cl-max-width-reading: 840px;
  --cl-header-height: 72px;

  /* タイポグラフィ（全ゴシック統一。見出しも含めサンセリフ） */
  --cl-font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --cl-font-serif: var(--cl-font-sans);
  --cl-font-family: var(--cl-font-sans);

  /* セクションの縦リズム（clampで画面幅に応じて拡縮） */
  --cl-section-y: clamp(80px, 11vw, 160px);
}


/* ============================================
 * リセット / ベース
 * ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cl-font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--cl-ink);
  background-color: var(--cl-white);
  padding-top: var(--cl-header-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: var(--cl-ink);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--cl-muted);
}

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


/* ============================================
 * レイアウト共通
 * ============================================ */
.cl-inner {
  max-width: var(--cl-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.cl-section {
  padding-top: var(--cl-section-y);
  padding-bottom: var(--cl-section-y);
}

.cl-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
}

/* ============================================
 * セクションタイトル
 * 和文見出し＋英字eyebrow の2段構成
 *   ::before で英字ラベルを自動付与（要素単位の data-en 不要）
 *   クラス名マッピングで表示文字を切替
 * ============================================ */
.cl-section__title {
  font-family: var(--cl-font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 48px;
  color: var(--cl-ink);
}

.cl-section__header .cl-section__title {
  margin-bottom: 0;
}

.cl-section__title--center {
  text-align: center;
}

/* eyebrow（英字ラベル）の共通スタイル */
.cl-eyebrow {
  display: block;
  font-family: var(--cl-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cl-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cl-section__title--center .cl-eyebrow,
.cl-section__title.cl-section__title--center .cl-eyebrow {
  text-align: center;
}

/* ============================================
 * 共通ボタン
 * 黒ベース＋線＋右スライド下線のホバー
 * ============================================ */
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  padding: 18px 36px;
  border-radius: 2px;
  border: 1px solid var(--cl-ink);
  background-color: transparent;
  color: var(--cl-ink);
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cl-btn::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.35s ease;
}

.cl-btn:hover {
  background-color: var(--cl-ink);
  color: var(--cl-white);
  border-color: var(--cl-ink);
  opacity: 1;
}

.cl-btn:hover::after {
  transform: translateX(6px);
}

/* アクセント色のCTA（最重要箇所のみ） */
.cl-btn--primary {
  background-color: var(--cl-ink);
  border-color: var(--cl-ink);
  color: var(--cl-white);
}

.cl-btn--primary:hover {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
  color: var(--cl-white);
}

.cl-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.cl-message__btn-wrap {
  justify-content: flex-start;
  margin-top: 40px;
}


/* ============================================
 * ダミーテキスト用インラインバッジ
 * ============================================ */
.cl-dummy-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--cl-white);
  background-color: #C92A2A;
  padding: 4px 8px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  letter-spacing: 0.08em;
}

.cl-content {
  /* フルワイドセクション用：max-widthなし */
}


/* ============================================
 * ヘッダー（全ページ共通・固定）
 * ============================================ */
.cl-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--cl-header-height);
  background-color: var(--cl-accent);
  z-index: 1000;
}

.admin-bar .cl-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .cl-header {
    top: 46px;
  }
}

.cl-header__inner {
  max-width: var(--cl-max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cl-header__logo {
  flex-shrink: 0;
}

.cl-header__logo-img {
  height: 36px;
  width: auto;
  /* ロゴ SVG はオレンジ #f08300 塗りなので、ヘッダーのオレンジ背景上で埋もれないよう白抜き化 */
  filter: brightness(0) invert(1);
}

.cl-header__right {
  display: none;
  align-items: center;
  gap: 28px;
}

.cl-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.cl-header__menu {
  display: flex;
  gap: 32px;
}

.cl-header__menu li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cl-white);
  padding: 4px 0;
  position: relative;
}

/* アンダーラインホバー：右方向に伸びる */
.cl-header__menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--cl-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.cl-header__menu li a:hover {
  color: var(--cl-white);
  opacity: 1;
}

.cl-header__menu li a:hover::after {
  transform: scaleX(1);
}

.cl-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cl-header__phone-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

.cl-header__phone-number {
  font-size: 16px;
  font-weight: 500;
  color: var(--cl-white);
  letter-spacing: 0.02em;
  font-family: var(--cl-font-serif);
}

.cl-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--cl-white);
  color: var(--cl-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 12px 24px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.cl-header__cta:hover {
  /* 通常＝白、ホバー＝黒に反転してメリハリを出す */
  background-color: var(--cl-ink);
  color: var(--cl-white);
  opacity: 1;
}

/* ハンバーガー */
.cl-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.cl-header__hamburger-line {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--cl-white);
  transition: transform 0.3s, opacity 0.3s;
}

.cl-header__hamburger.is-active .cl-header__hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cl-header__hamburger.is-active .cl-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.cl-header__hamburger.is-active .cl-header__hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ============================================
 * モバイルメニュー
 * ============================================ */
.cl-mobile-menu {
  position: fixed;
  top: var(--cl-header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--cl-header-height));
  background-color: var(--cl-paper);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 48px 24px;
}

.admin-bar .cl-mobile-menu {
  top: calc(var(--cl-header-height) + 32px);
  height: calc(100vh - var(--cl-header-height) - 32px);
}

@media screen and (max-width: 782px) {
  .admin-bar .cl-mobile-menu {
    top: calc(var(--cl-header-height) + 46px);
    height: calc(100vh - var(--cl-header-height) - 46px);
  }
}

.cl-mobile-menu.is-open {
  transform: translateX(0);
}

.cl-mobile-menu__list {
  margin-bottom: 40px;
}

.cl-mobile-menu__list li {
  border-bottom: 1px solid var(--cl-line);
}

.cl-mobile-menu__list li a {
  display: block;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.cl-mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cl-mobile-menu__phone {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 14px;
  font-family: var(--cl-font-serif);
  letter-spacing: 0.04em;
}

.cl-mobile-menu__cta {
  display: block;
  text-align: center;
  background-color: var(--cl-ink);
  color: var(--cl-white);
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 16px;
  border-radius: 2px;
  font-size: 13px;
}

.cl-mobile-menu__cta:hover {
  color: var(--cl-white);
}


/* ============================================
 * ヒーロースライダー
 * ============================================ */
.cl-hero {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  /* ヒーロー自身に高さを持たせ、中身は100%で追従させる
     （slickが挟む.slick-list/.slick-track/.slick-slide>divで高さが落ちる問題対策） */
  height: 75vh;
  min-height: 480px;
}

/* slickが生成する内包要素をすべてfull heightに */
.cl-hero__slider,
.cl-hero__slider .slick-list,
.cl-hero__slider .slick-track,
.cl-hero__slider .slick-slide,
.cl-hero__slider .slick-slide > div,
.cl-hero__slide {
  height: 100%;
}

/* slick初期化前: 全スライドが縦積みにならないよう1枚目のみ表示 */
.cl-hero__slider:not(.slick-initialized) {
  display: block;
  position: relative;
  overflow: hidden;
}

.cl-hero__slider:not(.slick-initialized) .cl-hero__slide + .cl-hero__slide {
  display: none;
}

.cl-hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* オーバーレイは .cl-hero 内に厳密に収める */
.cl-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.cl-hero__catch {
  color: var(--cl-white);
  font-family: var(--cl-font-sans);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
  padding: 0 clamp(24px, 6vw, 64px) clamp(56px, 8vw, 96px);
  max-width: min(720px, 100%);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* slick ドット */
.cl-hero .slick-dots {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 6vw, 80px);
  left: auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  margin: 0;
  z-index: 3;
}

.cl-hero .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.cl-hero .slick-dots li button {
  width: 28px;
  height: 1px;
  padding: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s;
  border-radius: 0;
}

.cl-hero .slick-dots li.slick-active button {
  background-color: var(--cl-white);
  width: 48px;
}


/* ============================================
 * 最新情報
 * ============================================ */
.cl-news {
  background-color: var(--cl-paper);
}

.cl-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
}

.cl-news__card {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
}

.cl-news__card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--cl-paper-alt);
}

.cl-news__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-news__card-noimage {
  width: 100%;
  height: 100%;
  background-color: var(--cl-paper-alt);
}

.cl-news__card-body {
  padding: 24px 0 0;
}

.cl-news__card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.cl-news__card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cl-muted);
  text-transform: uppercase;
  padding-right: 16px;
  border-right: 1px solid var(--cl-line);
}

.cl-news__card-heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.02em;
}

.cl-news__card-heading a {
  color: var(--cl-ink);
  transition: color 0.25s ease;
}

/* カード全体がクリック可能（a::afterで拡張）。ホバー時はタイトルをアクセントへ */
.cl-news__card:hover .cl-news__card-heading a,
.cl-news__card-heading a:hover {
  color: var(--cl-accent);
  opacity: 1;
}

.cl-news__card-excerpt {
  font-size: 14px;
  color: var(--cl-muted);
  margin: 0 0 12px;
  line-height: 1.8;
}

.cl-news__card-date {
  color: var(--cl-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--cl-font-serif);
}

/* カード全体をクリック可能に */
.cl-news__card-heading a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}


/* ============================================
 * ページヘッダー（下層ページ共通）
 * ============================================ */
.cl-page-header {
  position: relative;
  overflow: hidden;
  background-color: var(--cl-ink);
}

.cl-page-header__image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0.6;
}

.cl-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.cl-page-header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: var(--cl-white);
  font-family: var(--cl-font-serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.14em;
  z-index: 2;
  text-align: center;
}

.cl-page-header__title::before {
  content: attr(data-en);
  display: block;
  font-family: var(--cl-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  text-transform: uppercase;
}


/* ============================================
 * ページネーション
 * ============================================ */
.cl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 80px;
}

.cl-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--cl-line);
  font-size: 14px;
  font-family: var(--cl-font-serif);
  color: var(--cl-ink);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.cl-pagination__item.is-current {
  background-color: var(--cl-ink);
  color: var(--cl-white);
  border-color: var(--cl-ink);
}

.cl-pagination__item:hover:not(.is-current) {
  background-color: var(--cl-paper);
  border-color: var(--cl-ink);
  opacity: 1;
}

.cl-pagination__item--nav {
  border: none;
  font-size: 20px;
}


/* ============================================
 * MESSAGE
 * ============================================ */
.cl-message__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cl-message__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cl-message__content p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--cl-ink-soft);
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}

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


/* ============================================
 * 対応プロジェクト
 * ============================================ */
.cl-projects {
  background-color: var(--cl-ink);
  color: var(--cl-white);
}

.cl-projects .cl-section__title {
  color: var(--cl-white);
}

.cl-projects .cl-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.cl-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* 非リンク要素のためhoverは付けない（静的なカード） */
.cl-projects__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 220px;
  overflow: hidden;
  color: var(--cl-white);
}

.cl-projects__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* オーバーレイ: 下部だけ濃くするグラデ */
.cl-projects__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.cl-projects__card-name {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  color: var(--cl-white);
  letter-spacing: 0.12em;
  padding: 24px;
}

/* プロジェクトセクション内のCTAボタン（詳細はコチラ）
   暗背景に合わせて白塗り → hoverでアクセントオレンジへ */
.cl-projects .cl-btn--primary {
  background-color: var(--cl-white);
  border-color: var(--cl-white);
  color: var(--cl-ink);
}

.cl-projects .cl-btn--primary:hover {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
  color: var(--cl-white);
}


/* ============================================
 * 会社概要（テーブル）
 * ============================================ */
.cl-company__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cl-company__table {
  width: 100%;
  border-collapse: collapse;
}

.cl-company__table th,
.cl-company__table td {
  padding: 20px 8px;
  border-bottom: 1px solid var(--cl-line);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}

.cl-company__table th {
  width: 140px;
  font-weight: 500;
  color: var(--cl-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
  background-color: transparent;
}

.cl-company__table td {
  color: var(--cl-ink-soft);
  letter-spacing: 0.03em;
}

.cl-company__table tr:first-child th,
.cl-company__table tr:first-child td {
  border-top: 1px solid var(--cl-line);
}

/* Google Maps */
.cl-company__map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}


/* ============================================
 * フッター CTA
 * ============================================ */
.cl-footer-cta {
  background-color: var(--cl-paper);
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 24px;
  border-top: 1px solid var(--cl-line);
}

.cl-footer-cta__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cl-muted);
  margin: 0 0 20px;
}

.cl-footer-cta__phone {
  display: inline-block;
  font-family: var(--cl-font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--cl-ink);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.cl-footer-cta__hours {
  font-size: 12px;
  color: var(--cl-muted);
  margin: 0 0 40px;
  letter-spacing: 0.08em;
}

.cl-footer-cta__phone-icon {
  margin-right: 8px;
  font-weight: 400;
}

.cl-footer-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--cl-ink);
  color: var(--cl-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 20px 48px;
  border-radius: 2px;
  text-align: center;
  transition: background-color 0.35s ease;
}

.cl-footer-cta__button::after {
  content: "→";
  transition: transform 0.35s ease;
}

.cl-footer-cta__button:hover {
  background-color: var(--cl-accent);
  color: var(--cl-white);
  opacity: 1;
}

.cl-footer-cta__button:hover::after {
  transform: translateX(6px);
}


/* ============================================
 * フッター
 * ============================================ */
.cl-footer {
  background-color: var(--cl-ink);
  color: var(--cl-white);
  padding: 40px 0 32px;
}

.cl-footer__inner {
  max-width: var(--cl-max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cl-footer__nav {
  margin-bottom: 16px;
}

.cl-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cl-footer__nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.cl-footer__nav-link:hover {
  color: var(--cl-white);
  opacity: 1;
}

.cl-footer__copyright {
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================
 * フロントページ: 最新情報ヘッダー
 * ============================================ */
.cl-home-news__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.cl-home-news__title {
  font-family: var(--cl-font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--cl-ink);
  text-align: center;
}


/* ============================================
 * フロントページ: Instagram
 * ============================================ */
.cl-insta {
  background-color: var(--cl-paper);
}

.cl-insta__title {
  font-family: var(--cl-font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 48px;
  color: var(--cl-ink);
  text-align: center;
  text-transform: capitalize;
}

.cl-insta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--cl-line);
  border: 1px solid var(--cl-line);
}

.cl-insta__item {
  aspect-ratio: 1 / 1;
  background-color: var(--cl-paper-alt);
}


/* ============================================
 * レスポンシブ: タブレット (782px以上)
 * ============================================ */
@media screen and (min-width: 782px) {

  :root {
    --cl-header-height: 84px;
  }

  body {
    font-size: 16px;
  }

  .cl-header__nav {
    display: flex;
  }

  .cl-header__right {
    display: flex;
  }

  .cl-header__hamburger {
    display: none;
  }

  .cl-mobile-menu {
    display: none;
  }

  /* ヒーロー: 高さアップ */
  .cl-hero {
    height: 80vh;
    min-height: 560px;
  }

  /* ニュースカード: 2列 */
  .cl-news__list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Instagram: 5列 */
  .cl-insta__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* プロジェクト: 2列 */
  .cl-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cl-projects__card {
    height: 260px;
  }

  /* メッセージ: 横並び */
  .cl-message__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .cl-message__image {
    flex: 0 0 48%;
  }

  .cl-message__content {
    flex: 1;
  }

  /* 会社概要: 横並び */
  .cl-company__wrapper {
    flex-direction: row;
    gap: 60px;
  }

  .cl-company__table {
    flex: 1;
  }

  .cl-company__map {
    flex: 1;
  }

  .cl-company__table th {
    width: 160px;
  }

  /* ページヘッダー: 高さアップ */
  .cl-page-header__image {
    height: 340px;
  }
}


/* ============================================
 * レスポンシブ: デスクトップ (980px以上)
 * ============================================ */
@media screen and (min-width: 980px) {

  .cl-hero {
    height: 85vh;
    min-height: 640px;
  }

  /* ニュースカード: 3列 */
  .cl-news__list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* プロジェクト: 3列 */
  .cl-projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cl-projects__card {
    height: 280px;
  }

  /* ページヘッダー */
  .cl-page-header__image {
    height: 400px;
  }
}


/* ============================================
 * 下層ページ共通: PC用改行
 * ============================================ */
.cl-br-pc {
  display: none;
}


/* ============================================
 * 事業内容ページ
 * ============================================ */

/* リード文 */
.cl-services-lead {
  padding-bottom: 0;
}

.cl-services-lead__text {
  font-size: 16px;
  line-height: 2.1;
  color: var(--cl-ink-soft);
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  letter-spacing: 0.04em;
}

/* サービスカード（画像 + テキスト 交互レイアウト） */
.cl-services__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.cl-services__item:last-child {
  margin-bottom: 0;
}

.cl-services__item-image {
  overflow: hidden;
}

/* サービスカードは非リンクのためhoverエフェクトなし */
.cl-services__item-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.cl-services__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cl-services__item-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cl-line);
  color: var(--cl-ink);
  letter-spacing: 0.06em;
  position: relative;
}

/* 見出し下線の頭に小さなアクセント */
.cl-services__item-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 1px;
  background-color: var(--cl-accent);
}

.cl-services__item-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--cl-ink-soft);
  margin: 0;
  letter-spacing: 0.04em;
}


/* ============================================
 * 会社概要ページ
 * ============================================ */
.cl-company-page__wrapper {
  max-width: var(--cl-max-width-reading);
  margin: 0 auto;
}

/* アクセスマップ */
.cl-access {
  background-color: var(--cl-paper);
}

.cl-access__map {
  margin-bottom: 32px;
}

.cl-access__map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.cl-access__info {
  text-align: center;
}

.cl-access__info p {
  font-size: 14px;
  color: var(--cl-ink-soft);
  margin: 0 0 8px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

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


/* ============================================
 * お問い合わせページ
 * ============================================ */

.cl-contact-lead {
  padding-bottom: 0;
}

.cl-contact-lead__text {
  font-size: 16px;
  line-height: 2.1;
  color: var(--cl-ink-soft);
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  letter-spacing: 0.04em;
}

.cl-contact-form__wrapper {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
 * Contact Form 7 本体
 * ============================================ */
.wpcf7 {
  width: 100%;
  margin-inline: auto;
}

.wpcf7 * {
  box-sizing: border-box;
}

.wpcf7-form {
  width: 100%;
  margin-inline: auto;
}

.contactFormInner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contactFormItem {
  display: flex;
  flex-shrink: 0;
  gap: 0;
}

.contactFormItemTitle {
  width: 220px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 必須 / 任意バッジ */
.contactFormItemRequired,
.contactFormItemOptional {
  font-size: 10px;
  padding: 5px 8px 7px;
  border-radius: 2px;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.contactFormItemRequired {
  background-color: var(--cl-ink);
  color: var(--cl-white);
}

.contactFormItemOptional {
  background-color: transparent;
  color: var(--cl-muted);
  border: 1px solid var(--cl-line);
}

.contactFormItemContent {
  flex-grow: 1;
  width: 100%;
  position: relative;
}

.contactFormItemContent .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #C92A2A;
  margin-top: 4px;
  display: block;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  height: 100%;
}

.wpcf7 input {
  width: 100%;
  box-sizing: border-box;
}

.wpcf7 input:not([type="radio"]):not([type="checkbox"]) {
  appearance: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="password"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cl-line);
  border-radius: 2px;
  background-color: var(--cl-white);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-family: var(--cl-font-sans);
  color: var(--cl-ink);
  appearance: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--cl-muted-soft);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--cl-ink);
  box-shadow: 0 0 0 2px rgba(11, 11, 13, 0.08);
}

.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

.wpcf7 select {
  appearance: auto;
  cursor: pointer;
}

/* ============================================
 * 送信ボタン
 * ============================================ */
.wpcf7 .contactFormItem.submitWrapper {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin-top: 32px;
  margin-inline: auto;
  padding: 0 40px;
  height: 56px;
  border-radius: 2px;
  border: 1px solid var(--cl-ink);
  background-color: var(--cl-ink);
  color: var(--cl-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  cursor: pointer;
  position: relative;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.wpcf7 .contactFormItem.submitWrapper:focus-within {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
}

@media (hover: hover) {
  .wpcf7 .contactFormItem.submitWrapper:hover {
    background-color: var(--cl-accent);
    border-color: var(--cl-accent);
  }
  .wpcf7 .contactFormItem.submitWrapper:hover .material-symbols-rounded {
    transform: translateX(8px);
  }
}

@media (hover: none) {
  .wpcf7 .contactFormItem.submitWrapper:active {
    opacity: 0.7;
  }
}

.wpcf7 .contactFormItem.submitWrapper.submitting {
  opacity: 0.7;
  cursor: wait;
}

.wpcf7 .contactFormItemButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.wpcf7 .contactFormItemButton input[type="submit"] {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.wpcf7 .contactFormItem.submitWrapper .contactFormItemText {
  pointer-events: none;
}

.wpcf7 .submitWrapper .contactFormItemText,
.wpcf7 .submitWrapper .material-symbols-rounded {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  pointer-events: none;
}

.wpcf7 .submitWrapper .material-symbols-rounded {
  font-size: 22px;
  font-weight: 300;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

/* ============================================
 * レスポンスメッセージ / スピナー
 * ============================================ */
.wpcf7-response-output {
  display: block;
  font-size: 14px;
  margin: 16px 0 0;
  padding: 0;
  border: none;
  color: var(--cl-ink-soft);
}

.wpcf7 .invalid .wpcf7-response-output {
  color: #C92A2A;
}

.wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 782px) {
  .contactFormItemTitle {
    width: 140px;
    font-size: 13px;
    gap: 8px;
  }

  .contactFormItemRequired,
  .contactFormItemOptional {
    font-size: 9px;
    padding: 4px 6px 6px;
  }
}

/* 電話セクション */
.cl-contact-phone {
  background-color: var(--cl-paper);
}

.cl-contact-phone__wrapper {
  text-align: center;
}

.cl-contact-phone__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cl-muted);
  margin: 0 0 20px;
}

.cl-contact-phone__number {
  display: inline-block;
  font-family: var(--cl-font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--cl-ink);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.cl-contact-phone__icon {
  margin-right: 8px;
  font-weight: 400;
}

.cl-contact-phone__hours {
  font-size: 12px;
  color: var(--cl-muted);
  margin: 0;
  letter-spacing: 0.08em;
}


/* ============================================
 * レスポンシブ: タブレット (782px以上) - 下層ページ
 * ============================================ */
@media screen and (min-width: 782px) {

  .cl-br-pc {
    display: inline;
  }

  /* 事業内容: 横並びレイアウト */
  .cl-services__item {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
  }

  .cl-services__item--reverse {
    flex-direction: row-reverse;
  }

  .cl-services__item-image {
    flex: 0 0 48%;
  }

  .cl-services__item-image img {
    height: 320px;
  }

  .cl-services__item-body {
    flex: 1;
  }

  .cl-access__map-embed {
    height: 440px;
  }
}


/* ============================================
 * レスポンシブ: デスクトップ (980px以上) - 下層ページ
 * ============================================ */
@media screen and (min-width: 980px) {

  .cl-services__item-image img {
    height: 380px;
  }

  .cl-access__map-embed {
    height: 480px;
  }
}

/* ============================================
 * プライバシーポリシーページ
 * ============================================ */
.cl-privacy-policy__body {
  max-width: var(--cl-max-width-reading);
  margin: 0 auto;
}

.cl-privacy-policy__lead {
  margin: 0 0 48px;
  line-height: 2;
  color: var(--cl-ink-soft);
}

.cl-privacy-policy__title {
  font-family: var(--cl-font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cl-line);
  color: var(--cl-ink);
  position: relative;
}

.cl-privacy-policy__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 1px;
  background-color: var(--cl-accent);
}

.cl-privacy-policy__lead + .cl-privacy-policy__title {
  margin-top: 0;
}

.cl-privacy-policy p {
  font-size: 15px;
  line-height: 2;
  color: var(--cl-ink-soft);
  margin: 0 0 16px;
  letter-spacing: 0.03em;
}

.cl-privacy-policy__list {
  margin: 12px 0 16px;
  padding-left: 24px;
  list-style: disc;
  color: var(--cl-ink-soft);
}

.cl-privacy-policy__list--ordered {
  list-style: decimal;
}

.cl-privacy-policy__list li {
  margin-bottom: 8px;
  line-height: 1.9;
}

.cl-privacy-policy__revision {
  margin-top: 56px;
  text-align: right;
  font-size: 13px;
  color: var(--cl-muted);
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .cl-privacy-policy__title {
    font-size: 24px;
  }
}


/* ============================================
 * スクロールイン演出
 * IntersectionObserver で .is-visible を付与して
 * 下からふわっと表示。JS は co-labolabo.js。
 * ============================================ */
.cl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.cl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 子要素をずらして順番に表示（カードグリッド等） */
.cl-reveal--stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cl-reveal--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.cl-reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.cl-reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.cl-reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.cl-reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.cl-reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.cl-reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.cl-reveal--stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.cl-reveal--stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.cl-reveal--stagger.is-visible > *:nth-child(9) { transition-delay: 0.64s; }
.cl-reveal--stagger.is-visible > *:nth-child(10) { transition-delay: 0.72s; }

/* OS のモーション軽減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .cl-reveal,
  .cl-reveal--stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
