/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description: Child theme for Lightning
Author:
Tags:
Version: 1.0.0
*/

/* =====================================================
 * ライフアップジョブ｜お知らせ
 * PC / Tablet / Mobile 完全対応
 * 営業感ゼロ・法務サイト最適設計
 * ===================================================== */

/* ---------- 共通 ---------- */
.lifeup-news {
  max-width: 1000px;
  margin: 64px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.lifeup-news__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 4px solid #2f7ed8; /* 信頼感ブルー */
}

.lifeup-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lifeup-news__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

.lifeup-news__item:last-child {
  border-bottom: none;
}

.lifeup-news__date {
  font-size: 13px;
  color: #777;
  white-space: nowrap;
}

.lifeup-news__link {
  color: #222;
  text-decoration: none;
  line-height: 1.6;
}

.lifeup-news__link:hover {
  text-decoration: underline;
}

/* ---------- Tablet（1024px以下） ---------- */
@media screen and (max-width: 1024px) {

  .lifeup-news {
    margin-top: 48px;
  }

  .lifeup-news__title {
    font-size: 18px;
  }

  .lifeup-news__item {
    gap: 12px;
  }

  .lifeup-news__link {
    font-size: 14.5px;
  }
}

/* ---------- Mobile（767px以下） ---------- */
@media screen and (max-width: 767px) {

  .lifeup-news {
    margin-top: 32px;
    padding: 0 16px;
  }

  .lifeup-news__title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .lifeup-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 0;
  }

  .lifeup-news__date {
    font-size: 12px;
  }

  .lifeup-news__link {
    font-size: 14px;
  }
}

/* =====================================================
 * モバイル ハンバーガーメニュー（三本線）完全非表示
 * Lightning対応
 * ===================================================== */

/* 三本線ボタン */
@media screen and (max-width: 767px) {
  .vk-mobile-nav-toggle,
  .menu-toggle,
  .navbar-toggle,
  .vk-menu-acc-btn {
    display: none !important;
  }
}

/* =====================================================
 * Lightning モバイル 三本線（ハンバーガー）完全強制削除
 * ===================================================== */
@media screen and (max-width: 767px) {

  /* ヘッダーボタン本体 */
  .site-header .navbar-toggle,
  .site-header .menu-toggle,
  .site-header .vk-mobile-nav-toggle,
  .site-header .vk-menu-acc-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* ナビ自体も無効化（誤タップ防止） */
  .site-header .header-nav,
  .site-header .global-nav {
    display: none !important;
  }
}

/* =====================================================
 * WordPress 管理バー（三本線）完全非表示（モバイル）
 * ===================================================== */
@media screen and (max-width: 782px) {
  #wpadminbar {
    display: none !important;
  }

  html {
    margin-top: 0 !important;
  }
}