@charset "UTF-8";

/* ========================================
   Mouse Stalker - 全ページ対応
   ======================================== */

/* Mouse Stalker用のCSS変数 */
:root {
  --stalker-primary: rgba(34, 220, 253, 0.8);
  --stalker-secondary: rgba(28, 145, 226, 0.6);
  --stalker-accent: rgba(88, 101, 185, 0.4);
  --stalker-white: rgba(255, 255, 255, 0.9);
  --stalker-size-sm: 12px;
  --stalker-size-md: 24px;
  --stalker-size-lg: 40px;
  --stalker-blur: 8px;
  --stalker-transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* メインカーソルストーカー */
.mouse-stalker {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--stalker-size-md);
  height: var(--stalker-size-md);
  background: radial-gradient(circle, 
    var(--stalker-primary) 0%, 
    var(--stalker-secondary) 60%, 
    transparent 100%);
  border: 2px solid var(--stalker-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: var(--stalker-transition);
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
}

/* セカンダリストーカー（遅延追従） */
.mouse-stalker-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--stalker-size-lg);
  height: var(--stalker-size-lg);
  background: radial-gradient(circle, 
    transparent 0%, 
    var(--stalker-accent) 50%, 
    transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
}

/* ホバー状態のバリエーション */
.mouse-stalker.hover-link {
  width: var(--stalker-size-lg);
  height: var(--stalker-size-lg);
  background: radial-gradient(circle, 
    var(--stalker-primary) 0%, 
    transparent 70%);
  border-color: var(--stalker-primary);
  box-shadow: 0 0 var(--stalker-blur) var(--stalker-primary);
}

.mouse-stalker.hover-button {
  width: var(--stalker-size-lg);
  height: var(--stalker-size-lg);
  background: radial-gradient(circle, 
    var(--stalker-secondary) 0%, 
    transparent 70%);
  border-color: var(--stalker-secondary);
  transform: translate(-50%, -50%) scale(1.2);
}

.mouse-stalker.hover-image {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, 
    var(--stalker-accent) 0%, 
    transparent 70%);
  border-color: var(--stalker-accent);
  transform: translate(-50%, -50%) scale(0.8);
}

.mouse-stalker.hover-text {
  width: var(--stalker-size-sm);
  height: var(--stalker-size-sm);
  background: var(--stalker-white);
  border-color: transparent;
  mix-blend-mode: difference;
}

/* フォロワーのホバー状態 */
.mouse-stalker-follower.hover-active {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, 
    transparent 0%, 
    var(--stalker-primary) 30%, 
    transparent 80%);
  border-color: var(--stalker-primary);
}

/* パーティクルトレイル */
.stalker-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--stalker-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  animation: particleTrail 1s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes particleTrail {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 0.6;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

/* 特別エフェクト：クリック時のリップル */
.stalker-ripple {
  position: fixed;
  border: 2px solid var(--stalker-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: rippleEffect 0.6s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

/* スペシャルエリア用スタイル（ヒーローセクション等） */
#topSection .mouse-stalker {
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.6) 40%, 
    transparent 70%);
  border-color: rgba(255, 255, 255, 0.8);
  mix-blend-mode: difference;
}

#topSection .mouse-stalker-follower {
  background: radial-gradient(circle, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

/* パフォーマンス最適化 */
.mouse-stalker,
.mouse-stalker-follower,
.stalker-particle {
  backface-visibility: hidden;
  perspective: 1000px;
}

/* モバイル・タッチデバイス対応 */
@media (hover: none) and (pointer: coarse) {
  .mouse-stalker,
  .mouse-stalker-follower,
  .stalker-particle,
  .stalker-ripple {
    display: none !important;
  }
}

/* アクセシビリティ：モーション削減設定 */
@media (prefers-reduced-motion: reduce) {
  .mouse-stalker,
  .mouse-stalker-follower {
    transition: none !important;
    animation: none !important;
  }
  
  .stalker-particle {
    animation: none !important;
    opacity: 0.3 !important;
  }
  
  .stalker-ripple {
    animation: none !important;
    display: none !important;
  }
}
@keyframes arrowMove {
  0% {
    transform: skew(45deg) translateX(0); }
  100% {
    transform: skew(45deg) translateX(10px); } }

@font-face {
  font-family: 'genshin';
  src: url("../fonts/GenShinGothic-Bold.ttf") format("truetype");
  font-weight: bold; }

@font-face {
  font-family: 'emugo';
  src: url("../fonts/GenEiMGothic2-Heavy.ttf") format("truetype");
  font-weight: black; }

.f-genkaku, .title-wrap h2.title, section#topSection .content .intro h2, section#virtualWork .center .virtual-work-wrap .panel .caption h3, section#supportAchivement .center .support-panel .panel-image .label, section#supportAchivement .center .support-panel .panel-desc .title h3, section#supportAchivement .center .others-link a {
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal; }

.w-genkaku-bo, section#topSection .content .intro h2, section#supportAchivement .center .support-panel .panel-image .label, section#supportAchivement .center .support-panel .panel-desc .title h3, section#supportAchivement .center .others-link a {
  font-weight: 700; }

.w-genkaku-re, section#virtualWork .center .virtual-work-wrap .panel .caption h3 {
  font-weight: 400; }

.f-genshin, section#topSection .content .badge-wrap .badge {
  font-family: 'genshin'; }

.f-emugo, section#topSection .content .badge-wrap .badge .context span.strong {
  font-family: 'emugo'; }

.f-mei {
  font-family: 'メイリオ', Meiryo,sans-serif; }

.grad {
  background: linear-gradient(to right, #22DCFD 0%, #1C91E2 60%, #5865B9 100%); }

@keyframes upToDown {
  0% {
    opacity: 0;
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

.title-wrap {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 60px; }
  .title-wrap::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 2px;
    background: #000;
    bottom: 0;
    left: 0; }
    @media screen and (max-width: 1024px) {
      .title-wrap::before {
        left: 50%;
        transform: translateX(-50%); } }
  .title-wrap h2.title {
    font-size: 30px;
    font-weight: bold;
    margin-left: 60px; }
    @media screen and (max-width: 1024px) {
      .title-wrap h2.title {
        font-size: 24px;
        margin: 0;
        text-align: center; } }
    @media screen and (max-width: 560px) {
      .title-wrap h2.title {
        font-size: 22px; } }

/* タイピングエフェクト用のスタイル */
@keyframes blink-cursor {
  0%, 50% { 
    border-color: #22DCFD; 
    opacity: 1; 
  }
  51%, 100% { 
    border-color: transparent; 
    opacity: 0; 
  }
}

.move_marker_self {
  display: inline-block;
  min-height: 1.2em;
  position: relative;
}

/* タイピング中のカーソルスタイル */
.typing-cursor::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #22DCFD;
  margin-left: 2px;
  animation: blink-cursor 1s infinite;
}

/* 統計数値セクション - 縦バランス最適化 */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: clamp(20px, 4vw, 30px);               /* 視認性の良い間隔 */
  margin-top: 0;
  margin-bottom: clamp(40px, 6vw, 60px);
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;                              /* 幅制限なし */
}

.stat-item {
  text-align: center;
  background: white;
  padding: clamp(16px, 2vw, 20px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  width: clamp(110px, 10vw, 140px);            /* 数値が1行に収まる幅 */
  height: clamp(110px, 10vw, 140px);           /* 正方形を維持 */
  min-width: 110px;                           /* 「500+」が確実に1行になる最小幅 */
  min-height: 110px;                          /* 高さも統一 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  flex-basis: calc(32% - 20px);              /* 間隔を考慮した幅調整 */
  max-width: calc(32% - 20px);               /* 3つ並びを確保 */
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22DCFD 0%, #1C91E2 50%, #5865B9 100%);
  border-radius: 20px 20px 0 0;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: clamp(22px, 3vw, 28px);          /* フォントサイズを大きく */
  font-weight: 800;
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 50%, #5865B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.0;
  margin-bottom: clamp(8px, 1.5vw, 10px);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1;
}

.stat-number .percent,
.stat-number .plus,
.stat-number .unit {
  font-size: 0.6em;
  font-weight: 700;
}

/* ========================================
   hero-stats: テキスト表示版（data-target無し）の見た目最適化
   ======================================== */
.hero-stats .stat-number:not([data-target]) {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media screen and (max-width: 420px) {
  .hero-stats .stat-number:not([data-target]) {
    white-space: normal;
    word-break: keep-all;
  }
}

.stat-label {
  font-size: clamp(9px, 1vw, 11px);             /* ラベルもさらにコンパクト */
  color: #1a202c;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
}

/* カウントアップアニメーション用のスタイル */
.stat-number {
  transition: all 0.3s ease;
}

/* ========================================
   フォント改善（色は変更なし）
   ======================================== */

/* メインフォント */
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif !important;
}

/* 見出しフォント */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* 段落・テキストフォント */
p, span, div, li {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* ========================================
   ヘッダーとフッターメニューの統一
   ======================================== */

/* ========================================
   テキストロゴ（KaisinAI）
   ======================================== */
header#mainHeader .left .logo h1 a {
  width: auto !important; /* 画像前提の固定幅を解除 */
  display: inline-flex !important;
  align-items: center;
  text-decoration: none;
}

.vw-logo-text {
  font-family: 'Plus Jakarta Sans', 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 50%, #5865B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

@media screen and (max-width: 799px) {
  .vw-logo-text {
    font-size: 20px;
  }
}

/* ヘッダーメニューのベーススタイル（参考値として維持） */
#mainNav ul li > a,
#mainNav ul li.cur_parent > span {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.064em;
}

/* フッターメニューをヘッダーと同じスタイルに統一 */
#footerNav > ul > li > a,
#footerNav > ul > li > span {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.064em !important;
  line-height: 1.48 !important;
  font-weight: 600 !important;
}

/* PC時：フッターメニューの項目間隔を均一化（gapベース） */
@media screen and (min-width: 1025px) {
  footer#mainFooter .center nav#footerNav > ul {
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
  }
  footer#mainFooter .center nav#footerNav > ul > li {
    flex: 0 0 auto !important; /* 均等割(flex:1)による見た目の詰まりを防止 */
  }
}

/* モバイル時のフッターメニュー調整 */
@media screen and (max-width: 799px) {
  #footerNav > ul > li > span {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    letter-spacing: 0.064em !important;
    line-height: 50px !important;
    font-weight: 600 !important;
  }
  
  /* aタグ用のモバイルスタイルを追加（renewer.cssのspanスタイルと統一） */
  #footerNav > ul > li > a {
    font-size: 14px !important;
    font-size: 1.4rem !important;
    width: 100% !important;
    display: block !important;
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 20px !important;
    text-decoration: none !important;
    letter-spacing: 0.064em !important;
    font-weight: 600 !important;
  }
}

/* ========================================
   LP（svc_lp_Tmp）微調整：視認性 & CTA崩れ対策
   - WPが自動で<p>等を挿入してもボタンが崩れないようにする
   ======================================== */

/* LP FV：背景に左右されず読めるように（#lp_fv_wrap があるページで適用） */
#lp_fv_wrap .lpfv_copy_wrap h2,
#lp_fv_wrap .lpfv_copy_wrap p {
  color: #111 !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

/* FVコピーの視認性を担保（背景が暗くても読めるように半透明パネルを付与） */
#lp_fv_wrap .lpfv_copy_wrap {
  background: rgba(255, 255, 255, 0.70) !important; /* 透過をさらに薄く（背景がより見える） */
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* 見出しは少しだけコントラストを強める */
#lp_fv_wrap .lpfv_copy_wrap h2 .main_cp {
  color: #111827 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.01em;
  font-weight: 800;
  line-height: 1.2;
}

/* サブコピーも少し柔らかめに */
#lp_fv_wrap .lpfv_copy_wrap h2 .sub_cp {
  letter-spacing: 0.01em;
  font-weight: 800;
  line-height: 1.35;
  color: #1C91E2; /* アクセントカラー */
}

/* FV内で強調したい文言用（HTML側で strong.blue_text などがあれば反映） */
#lp_fv_wrap .lpfv_copy_wrap .blue_text,
#lp_fv_wrap .lpfv_copy_wrap .txt_blue {
  color: #1C91E2 !important;
}

/* CTAボタン：直下セレクタ依存を避けて常にボタン化 */
#lp_fv_wrap .cta_btn_wrap a,
#lpsec_price .cta_btn_wrap a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 200px;
  border-radius: 3em;
  padding: 16px 0;
  font-size: 1.64rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}

#lp_fv_wrap .cta_btn_wrap .btn_matr a,
#lpsec_price .cta_btn_wrap .btn_matr a {
  background: #ff9d00;
  color: #fff;
}

#lp_fv_wrap .cta_btn_wrap .btn_cont a,
#lpsec_price .cta_btn_wrap .btn_cont a {
  background: #fff;
  color: #444;
}

#lp_fv_wrap .cta_btn_wrap a:hover,
#lpsec_price .cta_btn_wrap a:hover {
  transform: translate(0, -2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 799px) {
  #lp_fv_wrap .cta_btn_wrap,
  #lpsec_price .cta_btn_wrap {
    justify-content: center;
    gap: 0 3vw;
    margin-top: 32px;
  }
  #lp_fv_wrap .cta_btn_wrap a,
  #lpsec_price .cta_btn_wrap a {
    width: 40vw !important;
    font-size: 100% !important;
  }
}

/* ========================================
   LP：課題リスト（chk_mark）を“カード＋アイコン”でリッチ化（画像不要）
   - 既存HTML（liテキスト）そのままで効く
   ======================================== */
#lpsec_intro .chk_mark {
  margin-top: 32px;
  gap: 14px 14px;
}

#lpsec_intro .chk_mark.vw-lp-automation-chk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 0;
  padding: 0;
}

#lpsec_intro .chk_mark > li {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 16px 16px 16px 46px;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  line-height: 1.6;
}

#lpsec_intro .chk_mark.vw-lp-automation-chk > li {
  width: auto;
  flex: 1 1 calc(50% - 14px);
  max-width: 440px;
  min-width: 280px;
}

/* 既存のFontAwesomeチェックを置き換え（Material Iconsで表示） */
#lpsec_intro .chk_mark > li::before {
  font-family: 'Material Icons';
  content: 'check_circle';
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 22px;
  color: #1C91E2;
}

/* 4つの課題に合わせてアイコンを変える（HTML変更なし） */
#lpsec_intro .chk_mark > li:nth-child(1)::before { content: 'search'; }
#lpsec_intro .chk_mark > li:nth-child(2)::before { content: 'fact_check'; }
#lpsec_intro .chk_mark > li:nth-child(3)::before { content: 'lock'; }
#lpsec_intro .chk_mark > li:nth-child(4)::before { content: 'autorenew'; }

/* 背景の“デザイン感”を少し足す（控えめなグラデ） */
#lpsec_intro .bubble {
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(34, 220, 253, 0.12), transparent 60%),
    radial-gradient(600px 200px at 90% 0%, rgba(88, 101, 185, 0.10), transparent 60%),
    #fff;
}

/* LP 青フッター（#lp_foot）に「ご相談はこちら」文言を載せる用 */
#lp_foot .vw-lp-foot-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 30px;
  margin: 0 auto 12px;
}

#lp_foot .vw-lp-foot-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto 18px;
  padding: 0 20px;
}

@media screen and (max-width: 799px) {
  #lp_foot .vw-lp-foot-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  #lp_foot .vw-lp-foot-desc {
    font-size: 15px;
    margin-bottom: 14px;
  }
}

/* ========================================
   LP 全体：読みやすさ調整（文字サイズ・行間）
   - LPセクションに限定して、通常ページへ影響させない
   ======================================== */

/* FV 説明文 */
#lp_fv_wrap .lpfv_copy_wrap p {
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.85 !important;
}

/* intro本文（白いカード） */
#lpsec_intro p.lead,
#lpsec_intro .lead_wrap > p {
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.9 !important;
}

/* 課題カード（chk_mark） */
#lpsec_intro .chk_mark > li {
  font-size: clamp(14px, 0.98vw, 16px) !important;
  line-height: 1.7 !important;
}

/* 特徴（feature） */
#lpsec_feature .flex_wrap > li p {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.7 !important;
}

/* 特徴（resolve）説明文 */
#lpsec_resolve ul .inn_wrap p {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.75 !important;
}

/* 流れ（flow）説明文 */
#lpsec_flow ul p {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.75 !important;
}

/* FAQ */
#lpsec_faqs .faqAc-blk dt {
  font-size: clamp(15px, 1.0vw, 18px) !important;
  line-height: 1.55 !important;
}
#lpsec_faqs dd {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.8 !important;
}

/* 「ご相談はこちら」（本文側）説明文 */
#lpsec_price .price_wrap > p.sml_txt {
  font-size: clamp(16px, 1.1vw, 20px) !important;
  line-height: 1.85 !important;
}

@media screen and (max-width: 799px) {
  #lpsec_intro .chk_mark > li {
    padding: 14px 14px 14px 44px;
  }
  #lpsec_intro .chk_mark > li::before {
    left: 12px;
    top: 12px;
  }

  #lpsec_intro .chk_mark.vw-lp-automation-chk > li {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* ========================================
   「こんなお悩み、解決します」セクション改善
   ======================================== */

/* 画像サイズを最適化 */
#theme_sec ul.flex_wrap > li .thumb {
  background: #fff !important;
  padding: 20px !important;
  max-width: 280px !important;
  max-height: 280px !important;
  margin: 0 auto 20px auto !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

#theme_sec ul.flex_wrap > li .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px !important;
}

/* レイアウトを改善 */
#theme_sec ul.flex_wrap > li {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 30px 20px !important;
  margin: 15px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
}

#theme_sec ul.flex_wrap > li:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

/* タイトルのスタイル改善 */
#theme_sec ul.flex_wrap h3 {
  text-align: center !important;
  margin: 20px auto 16px auto !important;
  font-size: 18px !important;
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

#theme_sec ul.flex_wrap h3 {
  position: relative !important;
}

#theme_sec ul.flex_wrap h3::after {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  max-width: 320px !important;
  height: 2px !important;
  background: linear-gradient(to right, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  bottom: -8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 2px !important;
}

/* 最強詳細度による確実な適用 */
html body section#theme_sec div.cont_wrap ul.flex_wrap > li h3 {
  position: relative !important;
}

html body section#theme_sec div.cont_wrap ul.flex_wrap > li h3::after {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  max-width: 320px !important;
  height: 2px !important;
  background: linear-gradient(to right, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  bottom: -8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 2px !important;
}

/* テキストのスタイル改善 */
#theme_sec ul.flex_wrap p {
  padding: 0 16px !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
  margin-top: 16px !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  #theme_sec ul.flex_wrap {
    flex-direction: column !important;
    gap: 20px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }
  
  #theme_sec ul.flex_wrap > li {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 25px 20px !important;
  }
  
  #theme_sec ul.flex_wrap > li .thumb {
    max-width: 220px !important;
    max-height: 220px !important;
    margin-bottom: 16px !important;
  }
}

@media screen and (max-width: 768px) {
  #theme_sec ul.flex_wrap > li .thumb {
    max-width: 180px !important;
    max-height: 180px !important;
    padding: 16px !important;
  }
  
  #theme_sec ul.flex_wrap h3 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    margin: 16px auto 12px auto !important;
  }
  
  #theme_sec ul.flex_wrap p {
    font-size: 13px !important;
    font-size: 1.3rem !important;
    padding: 0 12px !important;
  }
}

/* ========================================
   背景削除用スタイル（統一管理）
   ======================================== */

/* 1. 装飾的なアニメーション要素を無効化 */
#bg_pic,
.circles,
.circles li {
  display: none !important;
}

/* 2. 全ての背景を白色に統一（トップページのみ） */
body.home * {
  background-image: none !important;
  background-color: white !important;
  background: white !important;
}

/* 3. 特定セクションの背景無効化 */
body.home #recruit_sec,
body.home #recruit_sec .cont_wrap,
body.home #recruit_sec .cont_wrap .overcolor,
body.home footer#contactArea,
body.home footer#mainFooter {
  background-image: none !important;
  background-color: white !important;
  background: white !important;
  color: #333 !important;
}

/* 4. フッター背景の完全削除 */
footer#contactArea {
  background-image: none !important;
  background-color: white !important;
  background: white !important;
}

@media screen and (max-width: 560px) {
  footer#contactArea {
    background-image: none !important;
    background-color: white !important;
    background: white !important;
  }
}









.count-complete .stat-number {
  animation: countComplete 0.6s ease-out;
}

@keyframes countComplete {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* 旧いレスポンシブ設定削除（新しい設定に統合済み） */

/* 旧い768pxメディアクエリも統合済み */

/* 極小画面設定も統合済み */

/* サービスグリッドのスタイル - 5つのサービス対応 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 40px 0;
  max-width: 1300px;
  margin: 0 auto;
}

/* 4番目と5番目のカードを下段左側に隣接配置 */
.service-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.service-card:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22DCFD 0%, #1C91E2 50%, #5865B9 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon::after {
  left: 100%;
  animation: serviceIconSparkle 0.8s ease-out;
}

.service-card:hover .service-icon img {
  transform: scale(1.05);
}

.service-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.9), 
    transparent);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 50%, #5865B9 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 220, 253, 0.3);
}

/* サービスグリッドのレスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 30px 20px;
    max-width: 800px;
  }
  
  /* タブレットでは通常の2×3配置にリセット */
  .service-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .service-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 25px;
    padding: 0;
    border-radius: 10px;
  }
  
  .service-icon::after {
    height: 5px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px;
    max-width: 450px;
  }
  
  /* モバイルでは全て通常配置にリセット */
  .service-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .service-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    padding: 0;
    border-radius: 8px;
  }
  
  .service-icon::after {
    height: 4px;
  }
  
  .service-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .service-card p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .service-link {
    padding: 10px 25px;
    font-size: 13px;
  }
}


/* ========================================
   topSectionの高さ問題を完全修正
   ======================================== */

section#topSection {
  /* renewer.cssの固定高さを無効化 */
  height: auto !important;
  min-height: auto !important;
  
  /* 適切なパディング設定 */
  padding: clamp(60px, 8vw, 80px) 0 clamp(40px, 6vw, 60px) 0;
  background: none; 
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* レスポンシブ高さ調整 */
  box-sizing: border-box;
}

/* レスポンシブ高さ調整 */
@media screen and (max-width: 1024px) {
  section#topSection {
    padding: clamp(50px, 7vw, 70px) 0 clamp(30px, 5vw, 50px) 0;
  }
}

@media screen and (max-width: 768px) {
  section#topSection {
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 4vw, 40px) 0;
  }
}

@media screen and (max-width: 560px) {
  section#topSection {
    padding: clamp(30px, 5vw, 50px) 0 clamp(15px, 3vw, 30px) 0;
  }
}

/* ========================================
   セクション間の余白統一
   ======================================== */

/* サービスセクションの上部マージン調整 - sectitle_wrapを直接修正 */
section#service_sec {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 根本原因の解決: sectitle_wrapのマージンを上書き */
section#service_sec .sectitle_wrap {
  margin-top: clamp(20px, 3vw, 30px) !important;
  margin-bottom: 60px; /* 下マージンは維持 */
}

/* 全セクションの間隔を統一 */
section + section {
  margin-top: 0 !important;
}

/* レスポンシブでの間隔調整 - sectitle_wrapを直接修正 */
@media screen and (max-width: 768px) {
  section#service_sec .sectitle_wrap {
    margin-top: clamp(16px, 2.5vw, 24px) !important;
  }
}

@media screen and (max-width: 560px) {
  section#service_sec .sectitle_wrap {
    margin-top: clamp(12px, 2vw, 20px) !important;
  }
}

/* ========================================
   gotopボタン - コーポレートブルー・矢印なし
   ======================================== */

.gotop {
  position: fixed;
  bottom: 40px;
  right: 32px;
  z-index: 999;
  display: none;
}

.gotop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  
  /* 透過背景 */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  /* 円形 */
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  /* 影効果 */
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  
  /* アニメーション */
  transition: all 0.3s ease;
  text-decoration: none;
  
  /* 矢印なし */
  color: transparent;
  opacity: 0.9;
  
  /* 山形（上向き三角）のアイコンを疑似要素で作成 */
  position: relative;
}

/* 中央の山形（上向き三角）を青色で */
.gotop a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #1C91E2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ホバー効果 */
.gotop a:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ホバー時に山形の色を少し明るく */
.gotop a:hover::before {
  border-bottom-color: #22DCFD;
}

/* アクティブ状態 */
.gotop a:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* レスポンシブ位置調整 */
@media screen and (max-width: 1024px) {
  .gotop {
    bottom: 36px;
    right: 28px;
  }
}

@media screen and (max-width: 768px) {
  .gotop {
    bottom: 32px;
    right: 24px;
  }
  
  .gotop a {
    width: 44px;
    height: 44px;
  }
  
  /* 山形サイズも調整 */
  .gotop a::before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #1C91E2;
  }
}

@media screen and (max-width: 480px) {
  .gotop {
    bottom: 28px;
    right: 20px;
  }
  
  .gotop a {
    width: 40px;
    height: 40px;
  }
  
  /* 山形サイズをさらに調整 */
  .gotop a::before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #1C91E2;
  }
}

/* 極小画面対応 */
@media screen and (max-width: 375px) {
  .gotop {
    bottom: 24px;
    right: 16px;
  }
  
  .gotop a {
    width: 36px;
    height: 36px;
  }
  
  .gotop a::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #1C91E2;
  }
}

/* ========================================
   最新ニュースコンポーネント - 保守性重視
   ======================================== */

/* 基本スタイル（詳細度: 010） */
.hero-news {
  margin-top: clamp(4px, 0.8vw, 8px);  /* さらに間隔を狭く */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 8px;
  padding: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  max-width: 100%;
}

/* renewer.cssの#topSectionスタイルに確実に勝つ詳細度指定（詳細度: 021） */
section#topSection .hero-news {
  margin-top: clamp(25px, 4vw, 35px);  /* 統計数値とニュースの間隔を適切に */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 8px;
  padding: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  max-width: 100%;
  
  /* renewer.cssの絶対配置の影響を最小化 */
  position: relative;
  z-index: 1;
}

.hero-news:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 220, 253, 0.4);
}

/* ウルトラコンパクトヘッダー */
.news-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.news-icon {
  font-size: 12px;
  opacity: 0.6;
}

.news-title {
  font-size: clamp(11px, 1.3vw, 12px);
  font-weight: 600;
  color: #4a5568;
  margin: 0;
  letter-spacing: 0.01em;
}

/* 高詳細度指定（詳細度: 031） */
section#topSection .hero-news .news-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

section#topSection .hero-news .news-icon {
  font-size: 12px;
  opacity: 0.6;
}

section#topSection .hero-news .news-title {
  font-size: clamp(11px, 1.3vw, 12px);
  font-weight: 600;
  color: #4a5568;
  margin: 0;
  letter-spacing: 0.01em;
}

/* コンテンツ部分 */
.news-content {
  position: relative;
}

.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.news-link:hover {
  color: #1C91E2;
}

.news-link:hover .news-arrow {
  transform: translateX(4px);
  color: #22DCFD;
}

/* ミニマルメタ情報 */
.news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.news-date {
  font-size: 10px;
  color: #718096;
  font-weight: 500;
  font-family: 'Roboto', monospace;
}

.news-badge {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #e2e8f0;
  color: #4a5568;
}

/* 高詳細度指定（詳細度: 031） */
section#topSection .hero-news .news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

section#topSection .hero-news .news-date {
  font-size: 10px;
  color: #718096;
  font-weight: 500;
  font-family: 'Roboto', monospace;
}

section#topSection .hero-news .news-badge {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #e2e8f0;
  color: #4a5568;
}

/* シンプルなバッジカラー */
.news-badge.badge-info {
  background: #bee3f8;
  color: #2b6cb0;
}

.news-badge.badge-update {
  background: #c6f6d5;
  color: #276749;
}

.news-badge.badge-important {
  background: #fed7d7;
  color: #c53030;
}

/* ミニマルニュースタイトル */
.news-text {
  font-size: clamp(11px, 1.6vw, 13px);
    line-height: 1.3;
  color: #2d3748;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding-right: 18px;
  
  /* 1行制限でコンパクトに */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 高詳細度指定（詳細度: 031） */
section#topSection .hero-news .news-text {
  font-size: clamp(11px, 1.6vw, 13px);
  line-height: 1.3;
  color: #2d3748;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding-right: 18px;
  
  /* 1行制限でコンパクトに */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 極小矢印アイコン */
.news-arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  font-size: 10px;
  color: #a0aec0;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* ウルトラコンパクトレスポンシブ */
@media screen and (max-width: 768px) {
  .hero-news {
    margin-top: clamp(3px, 0.6vw, 6px);  /* タブレットでさらに間隔を狭く */
    padding: clamp(6px, 1.5vw, 10px);
    border-radius: 6px;
  }
  
  .news-header {
    margin-bottom: 4px;
  }
  
  .news-meta {
    gap: 4px;
    margin-bottom: 1px;
  }
  
  .news-text {
    padding-right: 14px;
  }
  
  /* 高詳細度レスポンシブ指定（詳細度: 021） */
  section#topSection .hero-news {
    margin-top: clamp(20px, 3vw, 28px);  /* タブレットでも適度な間隔 */
    padding: clamp(6px, 1.5vw, 10px);
    border-radius: 6px;
  }
  
  section#topSection .hero-news .news-header {
    margin-bottom: 4px;
  }
  
  section#topSection .hero-news .news-meta {
    gap: 4px;
    margin-bottom: 1px;
  }
  
  section#topSection .hero-news .news-text {
    padding-right: 14px;
  }
}

@media screen and (max-width: 480px) {
  .hero-news {
    margin-top: 4px;  /* モバイルでさらに間隔を狭く */
    padding: 6px;
    border-radius: 6px;
  }
  
  .news-header {
    gap: 4px;
    margin-bottom: 3px;
  }
  
  .news-icon {
    font-size: 10px;
  }
  
  .news-meta {
    gap: 3px;
    margin-bottom: 1px;
  }
  
  .news-text {
    padding-right: 12px;
  }
  
  /* 高詳細度レスポンシブ指定（詳細度: 021） */
  section#topSection .hero-news {
    margin-top: clamp(15px, 3vw, 22px);  /* モバイルでも適度な間隔 */
    padding: 6px;
    border-radius: 6px;
  }
  
  section#topSection .hero-news .news-header {
    gap: 4px;
    margin-bottom: 3px;
  }
  
  section#topSection .hero-news .news-icon {
    font-size: 10px;
  }
  
  section#topSection .hero-news .news-meta {
    gap: 3px;
    margin-bottom: 1px;
  }
  
  section#topSection .hero-news .news-text {
    padding-right: 12px;
  }
}

/* ========================================
   ヒーローセクション - 技術的に正しい左寄せレイアウト
   ======================================== */
section#topSection .cont_wrap {
  /* renewer.cssの中央配置を完全無効化 */
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  
  /* 技術的に正しいコンテナアプローチ - より左寄せ */
  max-width: 1200px;                               /* 適切なコンテナ幅 */
  margin: 0 auto;                                  /* 中央配置コンテナ */
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(40px, 6vw, 80px);
  padding-left: clamp(20px, 3vw, 50px);           /* より左寄せ */
  padding-right: clamp(100px, 15vw, 250px);       /* 右側動画エリア拡大確保 */
  text-align: left;
  box-sizing: border-box;
  
  /* 将来の画像配置のための設定 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ヒーローコピー - 縦バランス考慮 */
  section#topSection .fv_copy {
  text-align: left;
  margin: 0;
  padding: 0 0 clamp(16px, 2vw, 24px) 0;
  max-width: 60%;  /* 右側40%を画像用に確保 */
  width: 100%;
  }
  
  section#topSection .fv_copy h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.4;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.02em;
}

/* タイピングアニメーション */
.typing-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.typing-animation::after {
  display: none; /* カーソル点滅を完全削除 */
}

/* @keyframes blink-cursor カーソルアニメーション削除により不要 */

/* タイピング中の文字表示制御 */
.typing-animation.typing {
  white-space: nowrap;
  /* border-right: 2px solid #1a202c; カーソル削除 */
}

.typing-animation.typing::after {
  display: none;
  }
  
  section#topSection .fv_copy h3 {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 100%;  /* 親の60%制限内で最大化 */
}

/* デスクトップ大画面 - 確実な3つ並び */
@media screen and (min-width: 1025px) {
  .hero-stats {
    gap: clamp(25px, 3vw, 35px);              /* デスクトップ用視認性良い間隔 */
    max-width: 100%;
    justify-content: flex-start;
  }
  
  .stat-item {
    width: clamp(130px, 11vw, 160px);          /* デスクトップ用ゆとりあるサイズ */
    height: clamp(130px, 11vw, 160px);
    min-width: 130px;
    min-height: 130px;
    flex-basis: calc(31% - 25px);             /* 間隔を考慮 */
    max-width: calc(31% - 25px);              /* 3つ並び確保 */
  }
}

/* タブレット - 縦バランス調整 */
@media screen and (max-width: 1024px) {
  section#topSection .cont_wrap {
    padding-top: clamp(50px, 7vw, 80px);
    padding-bottom: clamp(30px, 5vw, 60px);
    padding-left: clamp(15px, 3vw, 40px);          /* タブレット用左余白（より左寄せ） */
    padding-right: clamp(80px, 12vw, 150px);       /* タブレット用右余白 */
  }
  
  section#topSection .fv_copy {
    max-width: 65%;
  }
  
  section#topSection .fv_copy h2 {
    margin-bottom: clamp(18px, 2.5vw, 28px);
  }
  
  section#topSection .fv_copy h3 {
    margin-bottom: clamp(28px, 3.5vw, 40px);
  }
  
  .hero-stats {
    max-width: none;
    gap: clamp(20px, 4vw, 28px);
    margin-bottom: clamp(30px, 5vw, 50px);
    justify-content: center;  /* タブレットで中央配置 */
  }
  
  .stat-item {
    width: clamp(110px, 12vw, 130px);           /* タブレット3つ並び */
    height: clamp(110px, 12vw, 130px);          /* タブレット3つ並び */
    min-width: 110px;                           /* 数値が1行になる最小幅 */
    min-height: 110px;                          /* 高さ統一 */
    flex-basis: calc(30% - 15px);               /* 中央配置用調整 */
    max-width: calc(30% - 15px);                /* 3つ中央並び確保 */
  }
}

/* 中間サイズ - 縦バランス調整 */
@media screen and (max-width: 768px) {
  section#topSection .cont_wrap {
    padding-top: clamp(40px, 6vw, 60px);
    padding-bottom: clamp(25px, 4vw, 40px);
    padding-left: clamp(15px, 3vw, 35px);          /* 中間サイズ用左余白（より左寄せ） */
    padding-right: clamp(60px, 10vw, 100px);       /* 中間サイズ用右余白 */
  }
  
  section#topSection .fv_copy {
    max-width: 75%;
  }
  
  section#topSection .fv_copy h2 {
    margin-bottom: clamp(16px, 2vw, 24px);
  }
  
  section#topSection .fv_copy h3 {
    margin-bottom: clamp(24px, 3vw, 32px);
  }
  
  .hero-stats {
    max-width: none;
    gap: clamp(16px, 3.5vw, 24px);
    margin-bottom: clamp(25px, 4vw, 35px);
    justify-content: center;  /* 中間サイズで中央配置 */
  }
  
  .stat-item {
    width: clamp(105px, 14vw, 125px);            /* 中間サイズ3つ並び */
    height: clamp(105px, 14vw, 125px);           /* 中間サイズ3つ並び */
    min-width: 105px;                            /* 数値1行表示の最小幅 */
    min-height: 105px;                           /* 高さ統一 */
    flex-basis: calc(30% - 12px);               /* 中央配置用調整 */
    max-width: calc(30% - 12px);                /* 3つ中央並び確保 */
  }
}

/* スマートフォン - 縦バランス最適化 */
@media screen and (max-width: 560px) {
  section#topSection .cont_wrap {
    margin: 0 auto;
    padding-top: clamp(30px, 8vw, 50px);
    padding-bottom: clamp(20px, 5vw, 30px);
    padding-left: clamp(15px, 4vw, 25px);          /* スマホ用左余白（より左寄せ） */
    padding-right: clamp(15px, 4vw, 25px);         /* スマホ用右余白（動画なし） */
  }
  
  section#topSection .fv_copy {
    max-width: 100%;
    padding: 0 0 clamp(20px, 4vw, 30px) 0;
  }
  
  section#topSection .fv_copy h2 {
    margin-bottom: clamp(14px, 3vw, 20px);
    line-height: 1.35;
  }
  
  section#topSection .fv_copy h3 {
    margin-bottom: clamp(20px, 4vw, 28px);
    line-height: 1.6;
  }
  
  .hero-stats {
    max-width: 100%;
    flex-direction: row;          /* 横並び維持 */
    justify-content: center;      /* 中央配置 */
    flex-wrap: wrap;              /* 必要に応じて折り返し */
    gap: clamp(12px, 3vw, 18px);  /* 適度な間隔 */
    margin-bottom: clamp(20px, 4vw, 30px);
  }
  
  .stat-item {
    width: clamp(100px, 28vw, 120px);            /* スマホで数値1行表示 */
    height: clamp(100px, 28vw, 120px);           /* 正方形維持 */
    min-width: 100px;                            /* 数値1行の最小幅 */
    min-height: 100px;                           /* 高さ統一 */
    flex-basis: calc(30% - 8px);                /* 中央配置用調整 */
    max-width: calc(30% - 8px);                 /* 3つ中央並び確保 */
  }
}
/* 古いスタイルを無効化（新しい左寄せレイアウトと競合するため） */
section#topSection .content .intro,
section#topSection .content .badge-wrap {
  display: none !important;
}

/* ========================================
   全体統一余白システム（ヘッダー除く）
   ======================================== */

/* 全セクション共通の控えめな余白設定 */
main section:not(#topSection) .center,
main section:not(#topSection) .cont_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(0px, 0vw, 60px) !important;
  padding-right: clamp(0px, 0vw, 60px) !important;
  box-sizing: border-box;
}

/* レスポンシブ調整 */
@media screen and (max-width: 1024px) {
  main section:not(#topSection) .center,
  main section:not(#topSection) .cont_wrap {
    padding-left: clamp(0px, 0vw, 45px) !important;
    padding-right: clamp(0px, 0vw, 45px) !important;
  }
}

@media screen and (max-width: 768px) {
  main section:not(#topSection) .center,
  main section:not(#topSection) .cont_wrap {
    padding-left: clamp(0px, 0vw, 35px) !important;
    padding-right: clamp(0px, 0vw, 35px) !important;
  }
}

@media screen and (max-width: 560px) {
  main section:not(#topSection) .center,
  main section:not(#topSection) .cont_wrap {
    padding:0 !important;
  }
}


section#virtualWork {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative; }
  section#virtualWork::before {
    content: '';
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #F3F3F3;
    -webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
    z-index: -1; }
  section#virtualWork .center {
    padding-left: 60px;
    padding-right: 60px; }
    @media screen and (max-width: 1024px) {
      section#virtualWork .center {
        padding: 0 20px; } }
    section#virtualWork .center .virtual-work-wrap {
      display: -webkit-flex;
      display: -ms-flex;
      display: flex; }
      @media screen and (max-width: 1024px) {
        section#virtualWork .center .virtual-work-wrap {
          flex-direction: column; } }
      section#virtualWork .center .virtual-work-wrap .panel {
        flex: 1;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-direction: column; }
        @media screen and (max-width: 1024px) {
          section#virtualWork .center .virtual-work-wrap .panel {
            flex: none;
            width: 100%;
            margin-bottom: 40px; } }
        section#virtualWork .center .virtual-work-wrap .panel:not(:last-child) {
          margin-right: 70px; }
          @media screen and (max-width: 1024px) {
            section#virtualWork .center .virtual-work-wrap .panel:not(:last-child) {
              margin-right: 0; } }
        @media screen and (max-width: 1024px) {
          section#virtualWork .center .virtual-work-wrap .panel .top {
            display: -webkit-flex;
            display: -ms-flex;
            display: flex;
            flex-direction: column-reverse;
            margin-bottom: 20px; } }
        section#virtualWork .center .virtual-work-wrap .panel .panel-img img {
          width: 100%;
          display: block; }
        section#virtualWork .center .virtual-work-wrap .panel .caption {
          text-align: center;
          margin-top: 20px;
          margin-bottom: 20px;
          min-height: 3em; }
          section#virtualWork .center .virtual-work-wrap .panel .caption h3 {
            font-size: 20px; }
            @media screen and (max-width: 1024px) {
              section#virtualWork .center .virtual-work-wrap .panel .caption h3 {
                font-size: 16px; } }
        section#virtualWork .center .virtual-work-wrap .panel .description {
          font-size: 14px; }

section#serviceMenu {
  padding-top: 60px;
  padding-bottom: 60px; }
  section#serviceMenu .center {
    padding-left: 50px;
    padding-right: 50px; }
    @media screen and (max-width: 1024px) {
      section#serviceMenu .center {
        padding: 0 20px; } }
    section#serviceMenu .center .section-desc {
      text-align: center;
      margin-bottom: 80px; }
      section#serviceMenu .center .section-desc p {
        font-size: 14px; }
    section#serviceMenu .center .service-panel-wrap {
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
      margin-bottom: 100px; }
      @media screen and (max-width: 1024px) {
        section#serviceMenu .center .service-panel-wrap {
          flex-direction: column;
          margin-bottom: 50px; } }
      section#serviceMenu .center .service-panel-wrap .panel {
        width: calc(33% - 20px);
        border-radius: 20px;
        background: white;
        padding: 15px;
        box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.1);
        border: solid 1px #ECECEC; }
        @media screen and (max-width: 1024px) {
          section#serviceMenu .center .service-panel-wrap .panel {
            width: 100%; } }
        section#serviceMenu .center .service-panel-wrap .panel:not(:last-child) {
          margin-right: 30px; }
          @media screen and (max-width: 1024px) {
            section#serviceMenu .center .service-panel-wrap .panel:not(:last-child) {
              margin: 0 0 15px; } }
        section#serviceMenu .center .service-panel-wrap .panel .title {
          text-align: center;
          position: relative;
          padding-bottom: 5px;
          margin-bottom: 20px; }
          section#serviceMenu .center .service-panel-wrap .panel .title::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 4px;
            background: #53C0F9;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%); }
        section#serviceMenu .center .service-panel-wrap .panel .wrap {
          display: -webkit-flex;
          display: -ms-flex;
          display: flex;
          margin-bottom: 10px; }
          @media screen and (max-width: 1024px) {
            section#serviceMenu .center .service-panel-wrap .panel .wrap {
              flex-direction: column;
              align-items: center; } }
          section#serviceMenu .center .service-panel-wrap .panel .wrap .p-img {
            width: 100px;
            margin-right: 20px; }
            @media screen and (max-width: 1024px) {
              section#serviceMenu .center .service-panel-wrap .panel .wrap .p-img {
                margin-right: 0;
                margin-bottom: 30px; } }
            section#serviceMenu .center .service-panel-wrap .panel .wrap .p-img img {
              display: block;
              width: 100%; }
          section#serviceMenu .center .service-panel-wrap .panel .wrap .p-content {
            flex: 1; }
            section#serviceMenu .center .service-panel-wrap .panel .wrap .p-content p {
              font-size: 14px; }
        section#serviceMenu .center .service-panel-wrap .panel .morelink {
          text-align: right;
          padding-right: 20px; }
          section#serviceMenu .center .service-panel-wrap .panel .morelink a {
            color: #53C0F9;
            font-size: 14px; }
            section#serviceMenu .center .service-panel-wrap .panel .morelink a:hover::after {
              animation: arrowMove .4s;
              animation-fill-mode: forwards; }
            section#serviceMenu .center .service-panel-wrap .panel .morelink a::after {
              display: inline-block;
              content: '';
              width: 36px;
              height: 8px;
              border-bottom: 1px solid #53C0F9;
              border-right: 1px solid #53C0F9;
              transform: skew(45deg); }
  section#serviceMenu .link-btn a {
    display: block;
    font-size: 14px;
    margin: 0 auto;
    width: 300px;
    border-radius: 30px;
    border: solid 1px #000;
    /* padding: 8px 50px; */
    color: #53C0F9;
    text-align: center;
    padding: 8px 0;
    background: white; }
    section#serviceMenu .link-btn a:hover::after {
      animation: arrowMove .4s;
      animation-fill-mode: forwards; }
    section#serviceMenu .link-btn a::after {
      display: inline-block;
      content: '';
      width: 36px;
      height: 8px;
      border-bottom: 1px solid #53C0F9;
      border-right: 1px solid #53C0F9;
      transform: skew(45deg); }

section#supportAchivement {
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative; }
  section#supportAchivement::before {
    content: '';
    position: absolute;
    top: 70px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #F3F3F3;
    -webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
    z-index: -1; }
    @media screen and (max-width: 1024px) {
      section#supportAchivement::before {
        display: none; } }
  @media screen and (max-width: 1024px) {
    section#supportAchivement .center {
      padding: 0 0px; } }
  section#supportAchivement .center .section-desc {
    text-align: center;
    margin-bottom: 80px; }
    section#supportAchivement .center .section-desc p {
      font-size: 14px; }
  section#supportAchivement .center .support-panel {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    margin-bottom: 100px;
    align-items: center; }
    @media screen and (max-width: 1024px) {
      section#supportAchivement .center .support-panel {
        flex-direction: column; } }
    section#supportAchivement .center .support-panel.rev {
      flex-direction: row-reverse;
      position: relative; }
      @media screen and (max-width: 1024px) {
        section#supportAchivement .center .support-panel.rev {
          flex-direction: column; } }
      section#supportAchivement .center .support-panel.rev::before {
        content: '';
        position: absolute;
        top: 50%;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 500px;
        background-color: #F3F3F3;
        -webkit-transform: skewY(5deg);
        transform: skewY(5deg);
        z-index: -1; }
        @media screen and (max-width: 1024px) {
          section#supportAchivement .center .support-panel.rev::before {
            display: none; } }
      section#supportAchivement .center .support-panel.rev .panel-image {
        margin-left: 30px;
        margin-right: 0; }
        @media screen and (max-width: 1024px) {
          section#supportAchivement .center .support-panel.rev .panel-image {
            margin-left: 0; } }
        section#supportAchivement .center .support-panel.rev .panel-image .label {
          left: unset;
          right: 0; }
    section#supportAchivement .center .support-panel .panel-image {
      width: 500px;
      position: relative;
      margin-right: 30px;
      aspect-ratio: 921/673;
      background: linear-gradient(to right bottom, #22DCFD 1%, #1C91E2 60%, #5865B9 100%);
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
      align-items: center; }
      @media screen and (max-width: 1024px) {
        section#supportAchivement .center .support-panel .panel-image {
          width: 100%;
          margin-right: 0; } }
      section#supportAchivement .center .support-panel .panel-image img {
        width: 100%;
        display: block; }
      section#supportAchivement .center .support-panel .panel-image .label {
        position: absolute;
        background: white;
        left: 0;
        bottom: 60px;
        padding: 10px 30px;
        font-size: 16px; }
    section#supportAchivement .center .support-panel .panel-desc {
      background: white;
      margin-top: 80px;
      width: 500px;
      padding: 20px 30px; }
      @media screen and (max-width: 1024px) {
        section#supportAchivement .center .support-panel .panel-desc {
          width: calc(100% - 38px);
          margin: 0 auto;
          margin-top: 0;
          transform: translateY(-30px); } }
      section#supportAchivement .center .support-panel .panel-desc .title {
        margin-bottom: 30px; }
        section#supportAchivement .center .support-panel .panel-desc .title h3 {
          font-size: 18px; }
      section#supportAchivement .center .support-panel .panel-desc .detail {
        margin-bottom: 20px; }
        section#supportAchivement .center .support-panel .panel-desc .detail p {
          font-size: 14px; }
      section#supportAchivement .center .support-panel .panel-desc .tools {
        font-size: 14px;
        margin-bottom: 40px; }
        section#supportAchivement .center .support-panel .panel-desc .tools span {
          display: inline-block;
          margin-bottom: 5px;
          padding: 0 10px;
          background: #EDEDED; }
      section#supportAchivement .center .support-panel .panel-desc .link-btn {
        text-align: right; }
        section#supportAchivement .center .support-panel .panel-desc .link-btn a {
          background: #53C0F9;
          color: white;
          padding: 10px 50px;
          font-size: 14px;
          border-radius: 30px; }
          section#supportAchivement .center .support-panel .panel-desc .link-btn a:hover::after {
            animation: arrowMove .4s;
            animation-fill-mode: forwards; }
          section#supportAchivement .center .support-panel .panel-desc .link-btn a::after {
            display: inline-block;
            content: '';
            width: 36px;
            height: 8px;
            border-bottom: 1px solid #ffffff;
            border-right: 1px solid #ffffff;
            transform: skew(45deg); }
  section#supportAchivement .center .others-link {
    text-align: center; }
    section#supportAchivement .center .others-link a {
      background: #000000;
      color: white;
      padding: 20px 50px; }
      section#supportAchivement .center .others-link a:hover::after {
        animation: arrowMove .4s;
        animation-fill-mode: forwards; }
      section#supportAchivement .center .others-link a::after {
        display: inline-block;
        content: '';
        width: 36px;
        height: 10px;
        border-bottom: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
        margin-left: 10px;
        transform: skew(45deg); }

section#newsSection {
  padding-top: 80px;
  padding-bottom: 60px; }
  section#newsSection .center {
    padding: 0 10px; }
  section#newsSection .news-wrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto; }
    section#newsSection .news-wrap ul li {
      border-bottom: solid 1px #707070; }
      section#newsSection .news-wrap ul li > a {
        display: block;
        transition: .4s; }
        section#newsSection .news-wrap ul li > a:hover {
          opacity: .6; }
      section#newsSection .news-wrap ul li .news-block {
        padding-top: 20px;
        padding-bottom: 20px; }
        section#newsSection .news-wrap ul li .news-block .news-deco-row {
          margin-bottom: 15px; }
          section#newsSection .news-wrap ul li .news-block .news-deco-row span.date {
            font-size: 14px;
            margin-right: 20px; }
          section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge {
            font-size: 14px;
            color: white;
            padding: 0 10px; }
            section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge.news {
              background: #FF0000; }
            section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge.pre {
              background: #53C0F9; }
        section#newsSection .news-wrap ul li .news-block .news-content-row a {
          font-size: 14px; }
    section#newsSection .news-wrap .morelink {
      margin-top: 40px;
      text-align: right;
      padding-right: 10px; }
      section#newsSection .news-wrap .morelink a {
        color: #53C0F9;
        font-size: 14px; }
        section#newsSection .news-wrap .morelink a:hover::after {
          animation: arrowMove .4s;
          animation-fill-mode: forwards; }
        section#newsSection .news-wrap .morelink a::after {
          display: inline-block;
          content: '';
          width: 36px;
          height: 8px;
          border-bottom: 1px solid #53C0F9;
          border-right: 1px solid #53C0F9;
          transform: skew(45deg);
          margin-left: 10px; }

/* ========================================
   「実績と信頼」セクション改善
   ======================================== */

/* 画像サイズを最適化 */
#casestudy_sec .flex_wrap .thumb {
  width: 400px !important;
  max-width: 400px !important;
  height: 280px !important;
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

#casestudy_sec .flex_wrap .thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.9), 
    transparent);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#casestudy_sec .flex_wrap .thumb:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18) !important;
}

#casestudy_sec .flex_wrap .thumb:hover::after {
  left: 100%;
  animation: topSparkleBeam 0.8s ease-out;
}

@keyframes topSparkleBeam {
  0% { 
    left: -100%; 
    opacity: 0;
    width: 100%;
  }
  50% { 
    opacity: 1;
    width: 150%;
  }
  100% { 
    left: 100%; 
    opacity: 0;
    width: 100%;
  }
}

#casestudy_sec .flex_wrap .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

#casestudy_sec .flex_wrap .thumb:hover img {
  transform: scale(1.05) !important;
}

/* 会社名ラベルのスタイル改善 */
#casestudy_sec .flex_wrap figure .label {
  position: absolute !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  left: 20px !important;
  bottom: 20px !important;
  top: auto !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
  letter-spacing: 0.5px !important;
}

#casestudy_sec .flex_wrap.rev figure .label {
  left: auto !important;
  right: 20px !important;
  bottom: 20px !important;
}

/* 詳細エリアのスタイル改善 */
#casestudy_sec .flex_wrap .sutdy_detail {
  width: 520px !important;
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  margin-top: 60px !important;
  padding: 32px !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

#casestudy_sec .flex_wrap .sutdy_detail:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

/* トップページ支援実績タイトル（一覧ページ風統一スタイル） */
#casestudy_sec .flex_wrap .sutdy_detail h3 {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  border-left: 4px solid #22DCFD !important;
  border-radius: 0 6px 6px 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  padding: 12px 16px !important;
  margin: 0 0 32px !important;
  font-size: 18px !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  position: relative !important;
  line-height: 1.4 !important;
  text-align: left !important;
  transition: all 0.3s ease !important;
}

/* トップページタイトルのホバーエフェクト（一覧ページ風） */
#casestudy_sec .flex_wrap .sutdy_detail h3:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%) !important;
  border-left-color: #1C91E2 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* 最強詳細度による確実な適用（一覧ページ風統一スタイル） */
html body section#casestudy_sec div.cont_wrap div.flex_wrap div.sutdy_detail h3 {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  border-left: 4px solid #22DCFD !important;
  border-radius: 0 6px 6px 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  padding: 12px 16px !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin: 0 0 32px !important;
  text-align: left !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

/* 下線を削除（高詳細度版） */

#casestudy_sec .flex_wrap .sutdy_detail h3::before {
  content: "🏆" !important;
  margin-right: 8px !important;
  font-size: 18px !important;
}

/* 説明文のスタイル改善 */
#casestudy_sec .flex_wrap .sutdy_detail p {
  line-height: 1.6 !important;
  color: #666 !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  margin-bottom: 16px !important;
}

/* ツールタグのスタイル改善 */
#casestudy_sec .flex_wrap .sutdy_detail .tools {
  font-size: 13px !important;
  margin: 24px 0 32px !important;
  font-weight: 600 !important;
  color: #2d3748 !important;
}

#casestudy_sec .flex_wrap .sutdy_detail .tools span {
  display: inline-block !important;
  margin: 4px 8px 4px 0 !important;
  padding: 6px 14px !important;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(203, 213, 224, 0.6) !important;
  color: #2d3748 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  font-size: 12px !important;
}

#casestudy_sec .flex_wrap .sutdy_detail .tools span:hover {
  background: linear-gradient(135deg, #cbd5e0, #a0aec0) !important;
  transform: translateY(-1px) !important;
}

/* ボタンのスタイル改善 */
#casestudy_sec .flex_wrap .link-btn a {
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  color: white !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(34, 220, 253, 0.3) !important;
  border: none !important;
}

#casestudy_sec .flex_wrap .link-btn a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(34, 220, 253, 0.4) !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  #casestudy_sec .flex_wrap .thumb {
    width: 100% !important;
    max-width: 100% !important;
    height: 240px !important;
    margin-bottom: 20px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail {
    width: 100% !important;
    margin-top: 0 !important;
    padding: 28px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail h3 {
    font-size: 18px !important;
    font-size: 1.8rem !important;
    line-height: 1.4 !important;
    margin: 0 0 28px 0 !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail p {
    font-size: 14px !important;
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
  }
  
  #casestudy_sec .flex_wrap figure .label {
    left: 16px !important;
    bottom: 16px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  
  #casestudy_sec .flex_wrap.rev figure .label {
    right: 16px !important;
    left: auto !important;
  }
}

@media screen and (max-width: 768px) {
  #casestudy_sec .flex_wrap .thumb {
    height: 200px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail {
    padding: 24px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail h3 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    line-height: 1.4 !important;
    margin: 0 0 24px 0 !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail p {
    font-size: 13px !important;
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
  }
}

/* ========================================
   Case Studies - 画像内業界名 + トップページ風スタイル（レイアウト維持）
   ======================================== */

/* 一覧ページの業界名ラベルスタイル（画像内オーバーレイ） */
#serchResult .panel .image {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

#serchResult .panel .image .industry-label {
  position: absolute !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  left: 16px !important;
  bottom: 16px !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
  letter-spacing: 0.5px !important;
  z-index: 2 !important;
}

#serchResult .panel .image:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

#serchResult .panel .image img {
  transition: transform 0.3s ease !important;
}

#serchResult .panel .image:hover img {
  transform: scale(1.05) !important;
}

/* 一覧ページのタイトルにトップページ風の装飾を追加 */
#serchResult .panel .under .subtitle h4 a {
  position: relative !important;
  text-decoration: none !important;
  color: #1a202c !important;
  font-weight: 600 !important;
  transition: color 0.3s ease !important;
}

#serchResult .panel .under .subtitle h4 a::before {
  content: "🏆" !important;
  margin-right: 8px !important;
  font-size: 16px !important;
}

/* 一覧ページタイトルのホバーエフェクト */
section#serchResult .center .panel-wrap .panel .under .content .subtitle h4:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%) !important;
  border-left-color: #1C91E2 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

#serchResult .panel .under .subtitle h4 a:hover {
  color: #1C91E2 !important;
}

/* 一覧ページのツールタグスタイル改善 */
#serchResult .panel .tool-wrap .tools .tool {
  display: inline-block !important;
  margin: 4px 8px 4px 0 !important;
  padding: 6px 14px !important;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(203, 213, 224, 0.6) !important;
  color: #2d3748 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  font-size: 12px !important;
}

#serchResult .panel .tool-wrap .tools .tool:hover {
  background: linear-gradient(135deg, #cbd5e0, #a0aec0) !important;
  transform: translateY(-1px) !important;
}

/* 一覧ページのボタンスタイル改善 */
#serchResult .panel .btn-wrap .link-btn {
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  color: white !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(34, 220, 253, 0.3) !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
}

#serchResult .panel .btn-wrap .link-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(34, 220, 253, 0.4) !important;
}

#serchResult .panel .btn-wrap .link-btn .arrow {
  margin-left: 8px !important;
  transition: transform 0.3s ease !important;
}

#serchResult .panel .btn-wrap .link-btn:hover .arrow {
  transform: translateX(4px) !important;
}

/* 一覧ページのパネル全体の改善 */
#serchResult .panel {
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
}

#serchResult .panel:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

/* 詳細ページの業界名ラベルスタイル */
#introSection .wrap .image {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

#introSection .wrap .image .industry-label {
  position: absolute !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  left: 20px !important;
  bottom: 20px !important;
  padding: 16px 28px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
  color: #333 !important;
  letter-spacing: 0.5px !important;
  z-index: 2 !important;
}

#introSection .wrap .image:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

#introSection .wrap .image img {
  transition: transform 0.3s ease !important;
}

#introSection .wrap .image:hover img {
  transform: scale(1.02) !important;
}

/* 詳細ページのタイトルにトップページ風の装飾を追加 */
#introSection .text .panel .description .subtitle {
  position: relative !important;
  margin-bottom: 32px !important;
}

#introSection .text .panel .description .subtitle::before {
  content: "🏆" !important;
  margin-right: 8px !important;
  font-size: 20px !important;
}

/* 詳細ページタイトルのホバーエフェクト（一覧ページ風） */
section#introSection .center .wrap .text .panel .description .subtitle:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%) !important;
  border-left-color: #1C91E2 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* 詳細ページのツールタグスタイル改善 */
#introSection .text .panel .tool-wrap .tools .tool {
  display: inline-block !important;
  margin: 4px 8px 4px 0 !important;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(203, 213, 224, 0.6) !important;
  color: #2d3748 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  font-size: 13px !important;
}

#introSection .text .panel .tool-wrap .tools .tool:hover {
  background: linear-gradient(135deg, #cbd5e0, #a0aec0) !important;
  transform: translateY(-1px) !important;
}

/* 詳細ページのパネル改善 */
#introSection .text .panel {
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  transition: all 0.3s ease !important;
  padding: 32px !important;
}

#introSection .text .panel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

/* 詳細ページのタイトルスタイル改善 */
#introSection .text .title {
  color: #1a202c !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

/* 詳細ページの説明文スタイル改善 */
#introSection .text .panel .description .content p {
  line-height: 1.6 !important;
  color: #666 !important;
  font-size: 15px !important;
  margin-bottom: 20px !important;
}

/* ========================================
   支援実績 - 画像オーバーレイスタイル（透過黒+白文字）
   ======================================== */

/* 一覧ページ・詳細ページ・トップページ共通の画像オーバーレイスタイル */
#serchResult .panel .image,
#introSection .wrap .image,
#casestudy_sec .flex_wrap .thumb {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

/* オーバーレイコンテナ */
.image-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%) !important;
  padding: 20px 16px 16px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* 業界名テキスト */
.industry-name {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
  margin: 0 !important;
  letter-spacing: 0.5px !important;
}

/* 一覧ページ専用調整 */
#serchResult .panel .image .image-overlay {
  padding: 16px 12px 12px !important;
}

#serchResult .panel .image .industry-name {
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* 詳細ページ専用調整 */
#introSection .wrap .image .image-overlay {
  padding: 24px 20px 20px !important;
}

#introSection .wrap .image .industry-name {
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* トップページ支援実績セクション専用調整 */
#casestudy_sec .flex_wrap .thumb .image-overlay {
  padding: 18px 14px 14px !important;
}

#casestudy_sec .flex_wrap .thumb .industry-name {
  font-size: 15px !important;
  font-weight: 500 !important;
}

/* ホバーエフェクト */
#serchResult .panel:hover .image-overlay,
#introSection .wrap:hover .image-overlay,
#casestudy_sec .flex_wrap:hover .image-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%) !important;
}

#serchResult .panel:hover .industry-name,
#introSection .wrap:hover .industry-name {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* 画像の基本スタイル */
#serchResult .panel .image img,
#introSection .wrap .image img,
#casestudy_sec .flex_wrap .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .image-overlay {
    padding: 12px 10px 10px !important;
  }
  
  .industry-name {
    font-size: 13px !important;
  }
  
  #serchResult .panel .image .industry-name {
    font-size: 12px !important;
  }
  
  #introSection .wrap .image .industry-name {
    font-size: 15px !important;
  }
  
  #casestudy_sec .flex_wrap .thumb .industry-name {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 480px) {
  .image-overlay {
    padding: 10px 8px 8px !important;
  }
  
  .industry-name {
    font-size: 12px !important;
  }
  
  #serchResult .panel .image .industry-name {
    font-size: 11px !important;
  }
  
  #introSection .wrap .image .industry-name {
    font-size: 14px !important;
  }
  
  #casestudy_sec .flex_wrap .thumb .industry-name {
    font-size: 12px !important;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  #serchResult .panel .image .industry-label {
    left: 12px !important;
    bottom: 12px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
  }
  
  #introSection .wrap .image .industry-label {
    left: 16px !important;
    bottom: 16px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

/* ========================================
   Case Studies画像ホバー時のbrightness効果を無効化
   ======================================== */

/* 一覧ページのbrightness効果を無効化 (case-list.cssを上書き) */
section#serchResult .center .panel-wrap .panel:hover .image img {
  filter: none !important;
  transform: scale(1.05) !important;
}

/* 詳細ページのbrightness効果を無効化 (case.cssを上書き) */
section#introSection .center .wrap .image:hover img {
  filter: none !important;
  transform: scale(1.02) !important;
}

/* ========================================
   「その他の実績一覧」ボタンと採用セクション間のスペース調整
   ======================================== */

/* 「その他の実績一覧」ボタン下に適切なスペースを追加 */
#casestudy_sec .mores_list {
  margin-bottom: clamp(40px, 6vw, 60px) !important;
}

/* 採用セクション上部のスペース調整 */
#recruit_sec {
  margin-top: clamp(20px, 4vw, 40px) !important;
}

/* スマホ専用の追加スペース調整 */
@media screen and (max-width: 768px) {
  #casestudy_sec .mores_list {
    margin-bottom: clamp(32px, 5vw, 48px) !important;
  }
  
  #recruit_sec {
    margin-top: clamp(16px, 3vw, 32px) !important;
  }
}

@media screen and (max-width: 560px) {
  #casestudy_sec .mores_list {
    margin-bottom: clamp(24px, 4vw, 36px) !important;
  }
  
  #recruit_sec {
    margin-top: clamp(12px, 2vw, 24px) !important;
  }
}

/* ========================================
   ヘッダーサービスメニューサムネイル表示システム
   ======================================== */

/* ヘッダーメニュー用サムネイル付きリスト */
#mainNav .service-menu-with-thumbnails {
  width: 440px !important;
  padding: 24px !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

#mainNav .service-menu-with-thumbnails > li {
  border-bottom: 1px solid #f1f5f9 !important;
  margin: 0 !important;
}

#mainNav .service-menu-with-thumbnails > li:last-child {
  border-bottom: none !important;
}

#mainNav .service-menu-with-thumbnails > li > a {
  display: flex !important;
  align-items: center !important;
  padding: 14px 0 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
}

#mainNav .service-menu-with-thumbnails > li > a:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  transform: translateX(4px) !important;
  padding-left: 8px !important;
}

#mainNav .service-menu-with-thumbnails > li > a::after {
  display: none !important;
}

/* サムネイル画像部分（画像切れ防止重視） */
.service-menu-thumbnail {
  width: 80px; /* 幅を拡張 */
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #f8fafc; /* フォールバック背景 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* 光エフェクト用 */
}

/* 光エフェクト用の疑似要素 */
.service-menu-thumbnail::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.9), 
    transparent);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.service-menu-thumbnail img {
  width: 95%; /* 両サイドに余白を確保 */
  height: 95%; /* 上下にも余白を確保 */
  object-fit: contain; /* 画像切れ防止：containに変更 */
  object-position: center;
  transition: transform 0.3s ease;
  background: white; /* 画像の背景を白に */
}

/* ホバー時の光エフェクトアニメーション */
#mainNav .service-menu-with-thumbnails > li > a:hover .service-menu-thumbnail::after {
  left: 100%;
  animation: serviceMenuSparkle 0.8s ease-out;
}

#mainNav .service-menu-with-thumbnails > li > a:hover .service-menu-thumbnail img {
  transform: scale(1.05); /* 光エフェクトと連動してスケーリング */
}

/* テキスト部分 */
.service-menu-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.3;
  margin: 0;
}

.service-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

#mainNav .service-menu-with-thumbnails > li > a:hover .service-title {
  color: #2563eb;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  #mainNav .service-menu-with-thumbnails {
    width: 420px !important; /* 幅を少し拡張 */
    padding: 20px !important;
  }
  
  .service-menu-thumbnail {
    width: 75px; /* 幅を拡張 */
    height: 45px;
    margin-right: 14px;
  }
  
  .service-title {
    font-size: 14px;
  }
  
  .service-desc {
    font-size: 11px;
  }
}

@media screen and (max-width: 799px) {
  #mainNav .service-menu-with-thumbnails {
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 12px !important;
  }
  
  #mainNav .service-menu-with-thumbnails > li > a {
    padding: 10px 0 !important;
  }
  
  .service-menu-thumbnail {
    width: 60px; /* 幅を拡張 */
    height: 38px;
    margin-right: 12px;
  }
  
  .service-title {
    font-size: 13px;
  }
  
  .service-desc {
    font-size: 10px;
  }
}

/* ========================================
   ボタンデザイン統一（落ち着いたグラデーション）
   ======================================== */

/* 統一ボタンスタイル（青系グラデーション） */
.unified-button,
.service-link,
.link-btn a,
#casestudy_sec .flex_wrap .link-btn a,
#recruit_sec .cont_wrap .link-btn a,
.contact-link,
section#serviceMenu .link-btn a,
section#supportAchivement .center .support-panel .panel-desc .link-btn a {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2c5282 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3) !important;
  border: none !important;
  text-align: center !important;
}

/* 「その他の実績一覧」ボタンは従来の色を維持 */
.mores_list > a {
  display: inline-block !important;
  padding: 12px 32px !important;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(74, 85, 104, 0.3) !important;
  border: none !important;
  text-align: center !important;
}

/* ホバー効果（青系ボタン） */
.unified-button:hover,
.service-link:hover,
.link-btn a:hover,
#casestudy_sec .flex_wrap .link-btn a:hover,
#recruit_sec .cont_wrap .link-btn a:hover,
.contact-link:hover,
section#serviceMenu .link-btn a:hover,
section#supportAchivement .center .support-panel .panel-desc .link-btn a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(66, 153, 225, 0.4) !important;
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 50%, #2a4365 100%) !important;
}

/* 「その他の実績一覧」ボタンのホバー効果（グレー系維持） */
.mores_list > a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(74, 85, 104, 0.4) !important;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #171923 100%) !important;
}

/* 特別なスタイルが必要なボタン（お問い合わせなど） */
.contact-link,
footer#contactArea .contact-link {
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
}


/* 採用情報ボタン */
#recruit_sec .cont_wrap .link-btn a {
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
}

/* その他の実績一覧ボタン（グレー系維持、詳細設定は上記で定義済み） */

/* アロー付きボタンのアロー調整 */
.link-btn a::after,
#casestudy_sec .flex_wrap .link-btn a::after,
#recruit_sec .cont_wrap .link-btn a::after,
.mores_list > a::after,
section#serviceMenu .link-btn a::after,
section#supportAchivement .center .support-panel .panel-desc .link-btn a::after {
  border-bottom: 1px solid #ffffff !important;
  border-right: 1px solid #ffffff !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .unified-button,
  .service-link,
  .link-btn a,
  #casestudy_sec .flex_wrap .link-btn a,
  #recruit_sec .cont_wrap .link-btn a,
  .contact-link,
  .cta_btn_wrap > div > a {
    padding: 10px 20px !important;
    font-size: 13px !important;
  }
  
  .contact-link,
  footer#contactArea .contact-link {
    padding: 14px 28px !important;
    font-size: 15px !important;
  }
  
  #recruit_sec .cont_wrap .link-btn a {
    padding: 14px 32px !important;
    font-size: 15px !important;
  }
  
  /* 「その他の実績一覧」ボタンのレスポンシブ */
  .mores_list > a {
    padding: 10px 28px !important;
    font-size: 14px !important;
  }
}

/* ========================================
   PC版 数値セクションサイズ調整（競合削除済み）
   ======================================== */
/* 
注意：以前のPC版用CSSは3つ並びレイアウトと競合するため削除
新しいレスポンシブ設計が適用されます
*/

/* ========================================
   ニュースセクション "more" ボタン改善
   ======================================== */

/* ニュースセクションのmoreリンクを元のスタイルに戻す */
/* ニュースセクションのmoreリンク - 正常な表示 */
#news_sec .morelink {
  margin-top: 30px !important;
  text-align: center !important;
  padding: 0 !important;
}

#news_sec .morelink a {
  display: inline-block !important;
  background: rgba(150, 150, 150, 0.8) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* ホバー時のエフェクト */
#news_sec .morelink a:hover {
  background: rgba(120, 120, 120, 0.9) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  color: #ffffff !important;
}

/* ========================================
   moreボタンの矢印アニメーション（シンプル版）
   ======================================== */

/* ニュースセクションのmoreリンクに矢印 */
#news_sec .morelink a::after {
  content: ' →' !important;
  display: inline !important;
  margin-left: 4px !important;
  font-size: 14px !important;
  font-weight: normal !important;
  transition: transform 0.3s ease !important;
  color: #ffffff !important;
  opacity: 0.9 !important;
}

#news_sec .morelink a:hover::after {
  transform: translateX(3px) !important;
  opacity: 1 !important;
}

/* すべての古い青い矢印スタイルを完全無効化 - 強力な上書き */
section#newsSection .news-wrap .morelink a::after,
section#newsSection .morelink a::after,
#newsSection .news-wrap .morelink a::after,
#newsSection .morelink a::after,
.news-wrap .morelink a::after,
.morelink a::after,
*[id*="news"] .morelink a::after,
*[class*="news"] .morelink a::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  border-bottom: none !important;
  border-right: none !important;
  border-left: none !important;
  border-top: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  animation: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* 新しいmoreボタンだけを表示 */
#news_sec .morelink a::after {
  display: inline !important;
  content: ' →' !important;
  margin-left: 4px !important;
  font-size: 14px !important;
  font-weight: normal !important;
  transition: transform 0.3s ease !important;
  color: #ffffff !important;
  opacity: 0.9 !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  border: none !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

/* ========================================
   ニュースバッジの色をmoreボタンと統一
   ======================================== */

/* ニュースページ全般のバッジスタイル統一 */
section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge,
.news-deco-row span.badge,
.type-wrap span.type-tag,
span.badge,
span.type-tag {
  background: rgba(150, 150, 150, 0.8) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 4px 12px !important;
  border-radius: 12px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

/* ホバー時の効果 */
section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge:hover,
.news-deco-row span.badge:hover,
.type-wrap span.type-tag:hover,
span.badge:hover,
span.type-tag:hover {
  background: rgba(120, 120, 120, 0.9) !important;
}

/* 特定のバッジタイプも統一（news, pre など） */
section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge.news,
section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge.pre,
.badge.news,
.badge.pre,
.type-tag.news,
.type-tag.pre {
  background: rgba(150, 150, 150, 0.8) !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 799px) {
  #news_sec .morelink a {
    font-size: 13px !important;
    padding: 8px 16px !important;
  }
  
  #news_sec .morelink a::after {
    font-size: 13px !important;
  }
  
  /* バッジのモバイル対応 */
  section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge,
  .news-deco-row span.badge,
  .type-wrap span.type-tag,
  span.badge,
  span.type-tag {
    font-size: 12px !important;
    padding: 3px 10px !important;
  }
}

@media screen and (max-width: 480px) {
  #news_sec .morelink a {
    font-size: 12px !important;
    padding: 8px 14px !important;
  }
  
  #news_sec .morelink a::after {
    font-size: 12px !important;
  }
  
  /* バッジの小画面対応 */
  section#newsSection .news-wrap ul li .news-block .news-deco-row span.badge,
  .news-deco-row span.badge,
  .type-wrap span.type-tag,
  span.badge,
  span.type-tag {
    font-size: 11px !important;
    padding: 2px 8px !important;
  }
}

/* ========================================
   支援実績ページのデザイン統一（実績と信頼セクションと同じ）
   ======================================== */

/* 支援実績一覧ページ */
section#serchResult .center .panel-wrap .panel {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 15px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  overflow: hidden !important;
}

section#serchResult .center .panel-wrap .panel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

/* 画像エリアの改善 */
section#serchResult .center .panel-wrap .panel .image {
  aspect-ratio: 16/10 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
}

section#serchResult .center .panel-wrap .panel .image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

section#serchResult .center .panel-wrap .panel:hover .image img {
  transform: scale(1.05) !important;
}

/* コンテンツエリアの統一 */
section#serchResult .center .panel-wrap .panel .under {
  padding: 30px 24px !important;
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
}

section#serchResult .center .panel-wrap .panel .under .content {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  border: none !important;
}

/* タイトルの統一 */
section#serchResult .center .panel-wrap .panel .under .content .title h3 {
  font-size: 18px !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #1a202c !important;
  margin: 0 0 8px 0 !important;
  background: linear-gradient(90deg, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  background-size: 100% 3px !important;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  padding-bottom: 8px !important;
}

/* サブタイトルの統一（トップページと同じ余白に調整） */
section#serchResult .center .panel-wrap .panel .under .content .subtitle h4 {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin: 0 0 32px 0 !important;
  line-height: 1.4 !important;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  border-left: 4px solid #22DCFD !important;
  border-radius: 0 6px 6px 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
}

/* 説明文の統一 */
section#serchResult .center .panel-wrap .panel .under .content .description p {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
  margin: 0 !important;
}

/* ツールタグの統一 */
section#serchResult .center .panel-wrap .panel .under .tool-wrap {
  margin-bottom: 24px !important;
}

section#serchResult .center .panel-wrap .panel .under .tool-wrap p.label {
  font-size: 13px !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  color: #2d3748 !important;
}

section#serchResult .center .panel-wrap .panel .under .tool-wrap .tools .tool {
  display: inline-block !important;
  margin: 4px 8px 4px 0 !important;
  padding: 6px 14px !important;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(203, 213, 224, 0.6) !important;
  color: #2d3748 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  font-size: 12px !important;
}

section#serchResult .center .panel-wrap .panel .under .tool-wrap .tools .tool:hover {
  background: linear-gradient(135deg, #cbd5e0, #a0aec0) !important;
  transform: translateY(-1px) !important;
}

/* ボタンの統一 */
section#serchResult .center .panel-wrap .panel .under .btn-wrap a.link-btn {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2c5282 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3) !important;
  border: none !important;
  text-align: center !important;
  max-width: none !important;
  margin: 0 !important;
}

section#serchResult .center .panel-wrap .panel .under .btn-wrap a.link-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(66, 153, 225, 0.4) !important;
  opacity: 1 !important;
}

section#serchResult .center .panel-wrap .panel .under .btn-wrap a.link-btn::after {
  display: none !important;
}

/* グリッドレイアウトの改善 */
section#serchResult .center .panel-wrap {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 30px !important;
  padding: 0 !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  section#serchResult .center .panel-wrap {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 25px !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under {
    padding: 25px 20px !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under .content .title h3 {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under .content .description p {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 768px) {
  section#serchResult .center .panel-wrap {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under {
    padding: 20px 16px !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under .content .title h3 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
  
  section#serchResult .center .panel-wrap .panel .under .content .description p {
    font-size: 13px !important;
    font-size: 1.3rem !important;
  }
}

/* ========================================
   支援実績詳細ページのデザイン統一
   ======================================== */

/* introSectionの改善 */
section#introSection .center .wrap .image {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

section#introSection .center .wrap .image:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18) !important;
}

section#introSection .center .wrap .image img {
  border-radius: 16px !important;
  transition: transform 0.3s ease !important;
}

section#introSection .center .wrap .image:hover img {
  transform: scale(1.02) !important;
}

section#introSection .center .wrap .text h2.title {
  font-size: 18px !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #1a202c !important;
  margin-bottom: 20px !important;
  text-align: left !important;
  background: linear-gradient(90deg, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  background-size: 100% 3px !important;
  background-position: bottom !important;
  background-repeat: no-repeat !important;
  padding-bottom: 8px !important;
}

section#introSection .center .wrap .text .panel {
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  padding: 32px !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  transition: all 0.3s ease !important;
}

section#introSection .center .wrap .text .panel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

section#introSection .center .wrap .text .panel .description {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  border: none !important;
}

section#introSection .center .wrap .text .panel .description .subtitle {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin-bottom: 32px !important;
  line-height: 1.4 !important;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  border-left: 4px solid #22DCFD !important;
  border-radius: 0 6px 6px 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
}

/* タブレット・モバイル用のタイトルスタイル調整 */
@media screen and (max-width: 768px) {
  section#serchResult .center .panel-wrap .panel .under .content .subtitle h4 {
    margin-bottom: 28px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
  }
  
  section#introSection .center .wrap .text .panel .description .subtitle {
    margin-bottom: 28px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail h3 {
    padding: 10px 12px !important;
    font-size: 16px !important;
  }
}

@media screen and (max-width: 480px) {
  section#serchResult .center .panel-wrap .panel .under .content .subtitle h4 {
    margin-bottom: 24px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
  }
  
  section#introSection .center .wrap .text .panel .description .subtitle {
    margin-bottom: 24px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
  }
  
  #casestudy_sec .flex_wrap .sutdy_detail h3 {
    padding: 8px 10px !important;
    font-size: 15px !important;
  }
}

section#introSection .center .wrap .text .panel .description .content p {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
  margin: 0 !important;
}

/* ツールラップの統一 */
section#introSection .center .wrap .text .tool-wrap span.index {
  font-size: 13px !important;
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  color: #2d3748 !important;
}

section#introSection .center .wrap .text .tool-wrap .tools .tool {
  display: inline-block !important;
  margin: 4px 8px 4px 0 !important;
  padding: 6px 14px !important;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(203, 213, 224, 0.6) !important;
  color: #2d3748 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  font-size: 12px !important;
}

section#introSection .center .wrap .text .tool-wrap .tools .tool:hover {
  background: linear-gradient(135deg, #cbd5e0, #a0aec0) !important;
  transform: translateY(-1px) !important;
}

/* secondSectionの改善 */
section#secondSection .center .first h2.title {
  font-size: 18px !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #1a202c !important;
  margin-bottom: 20px !important;
  padding-bottom: 8px !important;
}

section#secondSection .center .first .description p {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
}

section#secondSection .center .second .text-wrap {
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  padding: 32px !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  transition: all 0.3s ease !important;
}

section#secondSection .center .second .text-wrap:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

/* secondSectionの画像に角丸を追加 */
section#secondSection .center .second .image {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

section#secondSection .center .second .image:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18) !important;
}

section#secondSection .center .second .image img {
  border-radius: 16px !important;
  transition: transform 0.3s ease !important;
}

section#secondSection .center .second .image:hover img {
  transform: scale(1.02) !important;
}

section#secondSection .center .second .text-wrap h3.subtitle {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  color: #2d3748 !important;
  margin-bottom: 16px !important;
  line-height: 1.4 !important;
}

section#secondSection .center .second .text-wrap p {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
}

/* thirdSectionの改善 */
section#thirdSection .center .wrap .panel h3.index {
  background: linear-gradient(135deg, #22DCFD 0%, #1C91E2 60%, #5865B9 100%) !important;
  border-radius: 12px 12px 0 0 !important;
  color: white !important;
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  letter-spacing: 0.5px !important;
}

section#thirdSection .center .wrap .panel .content {
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  border-top: none !important;
  padding: 32px !important;
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

section#thirdSection .center .wrap .panel .content p {
  font-size: 14px !important;
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
}

/* レスポンシブ対応（詳細ページ） */
@media screen and (max-width: 1024px) {
  section#introSection .center .wrap .text h2.title,
  section#secondSection .center .first h2.title {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
  
  section#introSection .center .wrap .text .panel .description .content p,
  section#secondSection .center .first .description p,
  section#secondSection .center .second .text-wrap p,
  section#thirdSection .center .wrap .panel .content p {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 768px) {
  section#introSection .center .wrap .text h2.title,
  section#secondSection .center .first h2.title {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
  
  section#introSection .center .wrap .text .panel .description .content p,
  section#secondSection .center .first .description p,
  section#secondSection .center .second .text-wrap p,
  section#thirdSection .center .wrap .panel .content p {
    font-size: 13px !important;
    font-size: 1.3rem !important;
  }
  
  section#introSection .center .wrap .text .panel,
  section#secondSection .center .second .text-wrap,
  section#thirdSection .center .wrap .panel .content {
    padding: 24px !important;
  }
  
  /* モバイルでの画像角丸調整 */
  section#introSection .center .wrap .image,
  section#secondSection .center .second .image {
    border-radius: 12px !important;
  }
  
  section#introSection .center .wrap .image img,
  section#secondSection .center .second .image img {
    border-radius: 12px !important;
  }
}

/* ========================================
   検索フィルターの見やすさ改善（控えめなデザイン）
   ======================================== */

/* ボトム検索セクションの軽微な改善 */
section#bottomSearch {
  background: #f8fafc !important;
  padding: 60px 0 !important;
}

section#bottomSearch form > .center h2.title {
  font-size: 24px !important;
  font-size: 2.4rem !important;
  font-weight: 600 !important;
  color: #1a202c !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}

/* 検索パネルの軽微な改善 */
section#bottomSearch form .under {
  background: #f8fafc !important;
  padding: 40px 0 60px !important;
}

section#bottomSearch form .under > .center .search-wrap {
  gap: 30px !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  overflow: visible !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  margin-top: 15px !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .box {
  background: white !important;
  padding: 30px 24px !important;
  padding-top: 50px !important;
}

/* タイトルバッジの突出デザイン（枠から半分上にはみ出る） */
section#bottomSearch form .under > .center .search-wrap .search-panel .title {
  width: 140px !important;
  padding: 10px 20px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid white !important;
  position: absolute !important;
  top: -5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 100 !important;
  white-space: nowrap !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .title.title-tag {
  background: #8B5CF6 !important;
  color: white !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .title.title-industry {
  background: #06B6D4 !important;
  color: white !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .title.title-service {
  background: #EF4444 !important;
  color: white !important;
}

/* チェックボックスとラベルの控えめな改善 */
section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap {
  gap: 8px !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key {
  margin: 0 !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key input[type="checkbox"] {
  display: none !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label {
  display: inline-block !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  padding: 8px 16px !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 12px !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label::before {
  display: none !important;
}

section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label::after {
  display: none !important;
}

/* ホバー効果（控えめ） */
section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label:hover {
  background: #e2e8f0 !important;
  border-color: #cbd5e0 !important;
  transform: translateY(-1px) !important;
}

/* チェック時のスタイル（控えめ） */
section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key input[type="checkbox"]:checked + label {
  background: #3b82f6 !important;
  color: white !important;
  border-color: #3b82f6 !important;
  transform: translateY(-1px) !important;
}

/* タグパネル別のアクセントカラー（控えめ） */
.search-panel:nth-child(1) .key input[type="checkbox"]:checked + label {
  background: #8B5CF6 !important;
  border-color: #8B5CF6 !important;
}

.search-panel:nth-child(2) .key input[type="checkbox"]:checked + label {
  background: #06B6D4 !important;
  border-color: #06B6D4 !important;
}

.search-panel:nth-child(3) .key input[type="checkbox"]:checked + label {
  background: #EF4444 !important;
  border-color: #EF4444 !important;
}

/* 検索ボタンの控えめな改善 */
section#bottomSearch form .under .submit-wrap {
  margin-top: 60px !important;
  text-align: center !important;
}

section#bottomSearch form .under .submit-wrap button.submit-btn {
  background: #3b82f6 !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 32px !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
  min-width: 160px !important;
}

section#bottomSearch form .under .submit-wrap button.submit-btn:hover {
  background: #2563eb !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

/* レスポンシブ対応（控えめ） */
@media screen and (max-width: 1024px) {
  section#bottomSearch form > .center h2.title {
    font-size: 22px !important;
    font-size: 2.2rem !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap {
    gap: 25px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .box {
    padding: 25px 20px !important;
    padding-top: 45px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel {
    margin-top: 14px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .title {
    width: 120px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    top: -4px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label {
    padding: 7px 14px !important;
    font-size: 11px !important;
    border-radius: 14px !important;
  }
}

@media screen and (max-width: 768px) {
  section#bottomSearch {
    padding: 40px 0 !important;
  }
  
  section#bottomSearch form > .center h2.title {
    font-size: 20px !important;
    font-size: 2.0rem !important;
    margin-bottom: 25px !important;
  }
  
  section#bottomSearch form .under {
    padding: 30px 0 50px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap {
    gap: 20px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .box {
    padding: 20px 16px !important;
    padding-top: 40px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel {
    margin-top: 15px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .title {
    width: 110px !important;
    padding: 5px 10px !important;
    font-size: 10px !important;
    top: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap {
    gap: 6px !important;
  }
  
  section#bottomSearch form .under > .center .search-wrap .search-panel .key-wrap .key label {
    padding: 6px 12px !important;
    font-size: 10px !important;
    border-radius: 12px !important;
  }
  
  section#bottomSearch form .under .submit-wrap {
    margin-top: 50px !important;
  }
  
  section#bottomSearch form .under .submit-wrap button.submit-btn {
    padding: 10px 28px !important;
    font-size: 13px !important;
    min-width: 140px !important;
  }
}

/* ========================================
   IT導入補助金セクションを非表示
   ======================================== */

/* IT導入補助金セクション（HTMLで確認）の非表示 */
article.bunner_wrap,
.bunner_wrap,
*[class*="bunner_wrap"],
img[src*="hojo_2023"],
img[src*="hojo"],
img[alt*="IT補助金"],
img[alt*="IT導入補助金"],
img[alt*="IT導入支援事業者"],
figure:has(img[src*="hojo"]),
article:has(img[src*="hojo"]) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 汎用的なIT導入補助金セクションの非表示 */
*[class*="subsidy"],
*[id*="subsidy"],
*[class*="it-support"],
*[id*="it-support"],
div:has-text("IT導入補助金"),
div:has-text("最大150万円補助"),
div:has-text("IT導入支援事業者"),
section:has-text("IT導入補助金"),
.wp-block-group:has-text("IT導入補助金"),
.wp-block-cover:has-text("IT導入補助金") {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 青い背景セクションで補助金関連の要素を非表示 */
[style*="background-color: #4A90E2"],
[style*="background: linear-gradient"],
[style*="background-color: rgb(74, 144, 226)"],
.wp-block-cover[style*="blue"] {
  display: none !important;
}

/* 汎用的な補助金セクション非表示 */
div[class*="subsidy-section"],
div[class*="grant-section"],
section[class*="subsidy"],
section[class*="grant"],
.subsidy-banner,
.grant-banner,
.it-subsidy,
.it-grant {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* サービスメニューのリンクにも矢印アニメーション */
section#serviceMenu .center .service-panel-wrap .panel .morelink a::after {
  display: inline-block !important;
  content: '' !important;
  width: 36px !important;
  height: 8px !important;
  border-bottom: 1px solid #53C0F9 !important;
  border-right: 1px solid #53C0F9 !important;
  transform: skew(45deg) !important;
  margin-left: 10px !important;
  transition: all 0.3s ease !important;
}

section#serviceMenu .center .service-panel-wrap .panel .morelink a:hover::after {
  animation: arrowMove 0.4s !important;
  animation-fill-mode: forwards !important;
}

/* サービスメニューのlink-btnにも矢印アニメーション */
section#serviceMenu .link-btn a::after {
  display: inline-block !important;
  content: '' !important;
  width: 36px !important;
  height: 8px !important;
  border-bottom: 1px solid #53C0F9 !important;
  border-right: 1px solid #53C0F9 !important;
  transform: skew(45deg) !important;
  margin-left: 10px !important;
  transition: all 0.3s ease !important;
}

section#serviceMenu .link-btn a:hover::after {
  animation: arrowMove 0.4s !important;
  animation-fill-mode: forwards !important;
}

/* arrowMoveアニメーションの定義 */
@keyframes arrowMove {
  0% {
    transform: skew(45deg) translateX(0);
  }
  100% {
    transform: skew(45deg) translateX(10px);
  }
}

/* サービスアイコンのキラキラアニメーション */
@keyframes serviceIconSparkle {
  0% { 
    left: -100%; 
    opacity: 0;
    width: 100%;
  }
  50% { 
    opacity: 1;
    width: 120%;
  }
  100% { 
    left: 100%; 
    opacity: 0;
    width: 100%;
  }
}

/* サービスメニューサムネイル用光エフェクトアニメーション */
@keyframes serviceMenuSparkle {
  0% { 
    left: -100%; 
    opacity: 0;
    width: 100%;
  }
  50% { 
    opacity: 1;
    width: 120%;
  }
  100% { 
    left: 100%; 
    opacity: 0;
    width: 100%;
  }
}



