@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/




/* ================================================================
   DESKTOP STYLES（PC用スタイル：1200px以上）
   デスクトップとタブレット横向きのデフォルトスタイル
================================================================ */


/*ヘッダー*/

/* SWELLヘッダー透過を下層ページにも反映させる */
body:not(.home) .l-header[data-header-transparent="true"] {
  background-color: transparent !important;
  position: absolute;
  width: 100%;
  z-index: 100;
}

/* 固定ヘッダー（スクロール後）には背景を戻す */
body:not(.home).is-fixed .l-header[data-header-transparent="true"] {
  background-color: #fff !important;
}

.top_title_area {
  height: 300px;
}

.page-id-3 .c-pageTitle{
	font-size:1.75rem;
}

/*============================= トップページ ================================== */
.p-mainVisual__slideTitle {
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  color: #fff;
  border-bottom: 1px solid;
  display: inline-block;
  padding-bottom: 0px;
  width: 500px;

  font-weight: 600;
  font-style: bold;
}

.p-mainVisual__slideTitle {
  position: relative;
  text-align: left;
}

.p-mainVisual__slideText {
  position: relative;
  display: inline-block;
  line-height: 1.6;
  text-align: left;
  color: transparent;
  /* 元テキストを隠す */
}


/* 元のテキストの代わりに3行分再現 */
.p-mainVisual__slideText::before {
  content: "テクノロジーによる";
  white-space: pre;
  display: block;
  color: #000;
  font-family: "M PLUS 1", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  font-style: bold;
  margin-top: 50px;
  line-height: 1rem;
}

.p-mainVisual__slideText::after {
  content: "新しい ”道” を創造する";
  display: block;
  color: #000;
  font-family: "M PLUS 1", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  font-style: bold;
  padding-left: 150px;
}

.c-filterLayer__img {
  opacity: 0.4;
}

.p-mainVisual__img.u-obf-cover {
  object-position: 50% 5%;
  /* または '50% 0%' も同じ効果です */
}

/*セクション見出し*/
.is-style-section_ttl {
  padding: 0em 0.5em !important;
  /*上下 左右の余白*/
  color: #494949 !important;
  /*文字色*/
  background: transparent !important;
  /*背景透明に*/
  font-size: 3rem !important;
  color: #4472C4 !important;
  border-left: solid 20px #4472C4 !important;
  /*左線*/
  margin-bottom: 50px !important;
}

.p-_bottom_space {
  padding-bottom: 0.2rem;
}

/*お知らせリスト*/

/* ====== 行全体の骨格 ====== */
.p-postList.-type-simple {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #E6EBF2;
  /* 一番上の罫線 */
}

.p-postList__item {
  border-bottom: 1px solid #E6EBF2;
  /* 行ごとの区切り線 */
}

.p-postList__link {
  display: flex;
  align-items: center;
  gap: 28px;
  /* 日付と本文の間隔 */
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}

.p-postList__link:hover {
  opacity: .8;
}

/* ====== 左カラム：日付 ====== */
.c-postTimes__posted {
  flex: 0 0 170px;
  /* 左カラムの固定幅（画像に近い幅） */
  font-weight: 700;
  font-size: 18px;
  color: #1C2B4D;
  /* 濃いめの紺 */
  line-height: 1.2;
  white-space: nowrap;
}

/* ====== 右カラム：本文 ====== */
.p-postList__body {
  flex: 1 1 auto;
}

/* メタ（カテゴリなど）を横並びに */
.p-postList__meta {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #5B6577;
}

.p-postList__body {
  display: flex;
}

/* 「カテゴリー」バッジ（丸いピル） */
.p-postList__cat {
  display: inline-block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
  background: #EEF2F7;
  /* デフォルトの薄グレー */
  color: #2E3440;
}

/* ====== カテゴリ別の色（data-cat-idで出し分け） ======
   ※ WordPressのカテゴリーIDに合わせて数字を書き換えてください */
.p-postList__cat[data-cat-id="10"] {
  /* お知らせ */
  background: #E8F2FF;
  color: #0A56C8;
}

.p-postList__cat[data-cat-id="11"] {
  /* リリース */
  background: #F0F6FF;
  color: #1E63E1;
}

.p-postList__cat[data-cat-id="12"] {
  /* メディア */
  background: #EFFAF3;
  color: #2A8F53;
}

.p-postList__cat[data-cat-id="13"] {
  /* イベント */
  background: #EEF5FF;
  color: #2150C3;
}

/* 記事タイトル */
.p-postList__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #1A1F2B;
}

/* ====== 細かな見た目調整 ====== */
.p-postList__times .icon-posted::before,
.p-postList__cat.icon-folder::before {
  content: none;
  /* 余計なアイコン出力があるテーマは無効化 */
}

/* ====== レスポンシブ（スマホで縦並び） ====== */


/* ================================================================
   MOBILE STYLES（モバイル用：768px以下）
   スマートフォンの最適化
================================================================ */

@media (max-width: 640px) {
  .p-postList__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
  }

  .c-postTimes__posted {
    flex: none;
    font-size: 16px;
  }

  .p-postList__title {
    font-size: 15px;
  }
}





/*NEWS*/
/* 親要素 */
.text-btn {
  text-align: center;
  width: 100%;
}

/* 子要素(a要素) */
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  background-color: transparent;
  color: #4472C4;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link-text {
  transition: transform 0.3s ease;
}

.news-link-arrow {
  transition: transform 0.3s ease;
}

.news-link:hover {
  color: #2952a3;
}

.news-link:hover .news-link-text {
  transform: translateX(-4px);
}

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

/* アクティブ時のエフェクト */
.news-link:active {
  transform: scale(0.98);
}

/*=====================ABout================================*/

.about-us-box {
  position: relative;

  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  text-align: left;
  color: #000;
  background: #fff;
  height: 60vh;
}

/* 背景共通スタイル */
.about-us-bg {
  position: absolute;

  width: 900px;
  height: 600px;

  overflow: hidden;
  opacity: 0.4;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.about-us-bg1 img {
  width: 1000px;
  height: auto;
  border-radius: 50% / 30%;
  object-fit: cover;

}

/* 背景1（ベース） */
.about-us-bg1 {
  top: 70%;
  left: 80%;
  width: 600px;
}



/* 背景2（上に少し重ねる） */
.about-us-bg2 {
  top: 90%;
  left: 35%;

  transform: translate(-40%, -45%) rotate(5deg);
  opacity: 1;

}

.about-us-bg2 img {
  width: 500px;
  height: auto;
  border-radius: 50% / 30%;
  object-fit: cover;

}

/* テキスト部分 */
.about-us-content {
  position: relative;
  z-index: 2;

  max-width: 720px;
  margin-left: 5%;
  line-height: 1.9;
}

.about-us-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  width: 900px;
}

.about-us-content p {
  font-size: 1rem;
  margin-bottom: 1.2em;
}

.corp-mission-sec {
  margin-bottom: 0px !important;
}


:root {
  --kv-img: url("https://www.gazillion-demo.mekujiiira.com/wp-content/uploads/2025/11/TOP地球画像.jpg");
  /* ←ここを背景画像URLに変更 */
  --bg-w: 1080px;
  --bg-h: 454px;
}

/* 2×2 グリッド配置 */
.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 40px auto;
}

/* カード共通 */
.kv-card {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
  aspect-ratio: 540 / 227;
  /* 画像の分割比率を維持 */
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-image: var(--kv-img);
  background-repeat: no-repeat;
  background-size: var(--bg-w) var(--bg-h);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* タイトル文字 */
.kv-card>span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #111;
  z-index: 2;
}

/* 半透明オーバーレイで読みやすく */
.kv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}



/* 背景の分割位置 */
.kv-tl {
  background-position: left top;
}

.kv-tr {
  background-position: right top;
}

.kv-bl {
  background-position: left bottom;
}

.kv-br {
  background-position: right bottom;
}

/* スマホ対応（縦に並べる） */
@media (max-width: 700px) {
  .kv-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 16px;
    margin: 40px auto;
    gap: 16px;
  }
}

/* ========= 色や画像はここで調整 ========= */
:root {
  --footer-bg: #0d2b5a;
  /* 濃い紺 */
  --footer-fg: #ffffff;
  /* 文字色（見出し） */
  --footer-fg-sub: #e9f0ff;
  /* 子リンク */
  --footer-div: rgba(255, 255, 255, .12);
  /* 仕切り線 */
  --footer-hero: url("https://example.com/footer-hero.jpg");
  /* 上辺にうっすら出す画像 */
}

/* ========= フッター全体 ========= */
.l-footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-fg);
}

.l-footer__inner {
  padding: 36px 0 20px;
}

/* 上部に薄く背景画像を被せる（任意） */
.l-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 110px;
  /* 画像を見せる高さ（画像に合わせて調整） */
  background: var(--footer-hero) center/cover no-repeat;
  opacity: .45;
  pointer-events: none;
}

/* ========= メニュー（親を“見出し”、子を“リスト”に） ========= */
.l-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  /* 自動で列数調整 */
  gap: 18px 48px;
}

/* 見出し（= 親メニューの a） */
.l-footer__nav>.menu-item>a {
  display: block;
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--footer-fg);
}

/* 子リスト */
.l-footer__nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-footer__nav .sub-menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--footer-fg-sub);
  text-decoration: none;
  opacity: .95;
}

.l-footer__nav .sub-menu a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* SWELLの既定アイコン/余白を抑える（出ている場合） */
.l-footer__nav .menu-item>a::before,
.l-footer__nav .sub-menu a::before {
  content: none;
}

/* ========= コピーライト ========= */
.copyright {
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--footer-div);
  text-align: center;
  color: var(--footer-fg-sub);
  font-size: 2rem !important;
}

.copyright [lang="en"] {
  margin-right: 4px;
}


/* フッターの縦棒 全パターン除去 */
.l-footer__nav {
  background: none !important;
  /* 背景の縦線（gradient等）を無効化 */
  column-rule: none !important;
  /* 多段組の区切り線を無効化 */
  border: 0 !important;
}

/* li や a に付いた border/背景線/影を無効化 */
.l-footer__nav>li,
.l-footer__nav li,
.l-footer__nav>li>a,
.l-footer__nav .sub-menu>li>a {
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  position: relative;
  /* 擬似要素基準の潰しに必要な場合あり */
}

/* 擬似要素で描く縦線を無効化（よくあるパターン） */
.l-footer__nav>li::before,
.l-footer__nav>li::after,
.l-footer__nav a::before,
.l-footer__nav a::after {
  content: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* “n番目以降に棒” 系（li + li など）もまとめて無効化 */
.l-footer__nav>li+li,
.l-footer__nav .menu-item+.menu-item {
  border-left: 0 !important;
  background-image: none !important;
}


.l-footer__nav .menu-item-212>a {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 0;
}

.l-footer__nav .menu-item-211>a {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 0;
}

.l-footer__nav .menu-item-219>a {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 0;
}

.l-footer__nav .menu-item-228>a {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 0;
}

/* ========= レスポンシブ ========= */
@media (max-width: 768px) {
  .l-footer__inner {
    padding: 28px 0 16px;
  }

  .l-footer__nav {
    gap: 10px 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .l-footer__nav {
    grid-template-columns: 1fr;
  }

  .l-footer::before {
    height: 80px;
  }
}

.u-mb-ctrl.u-mb-0 {
  height: 40vh;
}

.gazo-btm {
  padding-bottom: 0px !important;

}












/*LP*/


/* Reset-ish */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, Helvetica, Arial, sans-serif;
  color: #222;
}

.issue-section {
  padding: 48px 16px 56px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.title_01 {
  font-size: clamp(48px, 8vw, 96px) !important;
  line-height: 1;
  text-align: center;
  margin: 8px 0 16px !important;
  font-weight: 800;
  letter-spacing: .02em !important;
}

.lede {
  text-align: center;
  color: #444;
  font-size: 14px;
  margin: 0 auto 28px;
  max-width: 840px;
}

.cards_01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  margin-top: 12px;
}

.card_01 {
  position: relative;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px 24px 120px;
  min-height: 320px;
  overflow: hidden;
}

.card_01-title {
  font-size: 28px;
  margin: 0 0 8px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .5px;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 16px;
  color: #333;
}

.ticks li {
  position: relative;
  padding-left: 1.6em;
  line-height: 1.6;
}

.ticks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* Decorative images */
.deco {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  pointer-events: none;
}

.deco-img {
  position: absolute;
  bottom: 0;
  max-height: 140px;
  height: auto;
}

/* Student decos */
.student-man {
  left: 8px;
  height: 140px;
}

.student-woman {
  left: 90px;
  height: 110px;
  bottom: 0;
}

/* Academy decos */
.building-cluster {
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  bottom: -6px;
}

.building-single {
  right: 18px;
  height: 120px;
  bottom: -2px;
  opacity: .95;
}

.tree-left {
  left: calc(50% - 110px);
  height: 120px;
  bottom: -8px;
}

.tree-right {
  left: calc(50% + 54px);
  height: 120px;
  bottom: -10px;
}

/* Recruitment decos */
.rec-man {
  left: 18px;
  height: 140px;
}

.rec-woman {
  right: 24px;
  height: 140px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 22px 0;
}

.chip {
  background: #e5e5e5;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid #d8d8d8;
}

.note {
  text-align: center;
  font-size: 12px;
  color: #555;
  max-width: 960px;
  margin: 10px auto 0;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    padding-bottom: 150px;
  }

  .student-woman {
    left: 92px;
  }

  .tree-left {
    left: 22%;
  }

  .tree-right {
    left: auto;
    right: 22%;
  }

  .building-single {
    right: 28px;
  }

  /* cards_01 レスポンシブ */
  .cards_01 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
}

@media (max-width: 640px) {

  /* cards_01 スマートフォン対応 */
  .cards_01 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .card_01 {
    padding: 16px 16px 100px;
    min-height: 280px;
  }

  .card_01-title {
    font-size: 20px;
    margin: 0 0 12px;
  }

  .ticks {
    font-size: 14px;
    gap: 4px;
  }

  .deco {
    height: 100px;
  }

  .deco-img {
    max-height: 100px;
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝news＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* タブ全体の背景色 */
.is-style-default>.c-tabList .c-tabList__button:hover,
.is-style-default>.c-tabList .c-tabList__button[aria-selected=true] {
  background-color: #f2f2f2;
  /* タブバー背景 */
}

/* 非アクティブなタブ */
.swell-block-tab__menu li {
  background-color: #e0e0e0;
  /* 通常時のタブ背景 */
  /* テキスト色 */
  font-size: 37px;
}

.c-tabList__button {
  color: #000000;
}

/* アクティブなタブ（選択中） */
.swell-block-tab__menu li.is-active {
  background-color: #0073aa;
  /* アクティブタブ背景 */

}

.has-black-color {
  color: var(--wp--preset--color--black) !important;
  font-size: 1.5rem;
}

/* ホバー時 */
.swell-block-tab__menu li:hover {
  background-color: #0095d9;
  /* ホバー時の色 */
  color: #fff;
}

/*ボーダー色*/
.is-style-default .c-tabBody {
  border: none;
  margin-top: -1px;
  padding: 1.75rem;
}

.is-style-default>.c-tabList .c-tabList__button {
  padding-bottom: 1.45rem;
  padding-top: 1.75rem;
}

.p-postList.-type-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list .c-tabList {
  border-bottom: 8px solid #4472C4;
}

.news-list .c-tabBody {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}

.news-list {
  padding-left: 6rem;
  padding-right: 6rem;
}

.news-list .p-postList__item {
  border-top: ;
}

.news-list-in-list {
  border-top: 1px solid #fff !important;
}

/*================ スライダーAlliance================*/

/* top-service内のlogo-sliderだけ全幅にする */
/* .top-service セクションを画面いっぱいに広げる */
.swell-block-fullWide__inner.l-container.top-service {
  width: 100vw;
  /* ビューポート全幅に */
  position: relative;
  left: 50%;
  /* コンテナ中央基準で */
  right: 50%;
  margin-left: -50vw;
  /* 左右端まで広げる */
  margin-right: -50vw;
  box-sizing: border-box;
  overflow: visible;
  z-index: 10;
  /* 子要素がはみ出しても表示されるように */
}

.top-service .wp-block-cover {
  overflow: visible !important;
  position: relative;
  z-index: 5;
}

/* top-service内のlogo-sliderだけ全幅にする */
.top-service .logo-slider {
  width: 100vw;
  /* ブラウザ幅いっぱい */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
  z-index: 20;
}

/* ロゴのトラックもはみ出しOK */
.top-service .logo-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  white-space: nowrap;
}

/* SWELLのコンテナがoverflow: hiddenのときに対処 */
.top-service {
  overflow: visible;
}

/* 中の .logo-slider は通常どおり配置（上書き不要） */
.top-service .logo-slider {
  width: 100%;
  /* 親の100vwに合わせる */
}


/* SWELLのコンテナがoverflow: hiddenのときに対処 */
.top-service {
  overflow: visible;
}



.visual-block {

  min-height: 30vh;
}

.l-header .l-container {
  max-width: 1300px;
}

.swell-block-fullWide:last-of-type {
  padding-bottom: 0 !important;
}

.aboutus-sec .l-container {
  padding-bottom: 32px !important;

}

.kv-grid-box {
  padding-top: 0px !important;
}

/*===============About us=================================*/
.our-mission {
  margin-top: 0px !important;
  margin-bottom: 10px;
  padding-bottom: 20px !important;
}

.our-mission p {
  font-size: 1.3rem;

  margin-left: 50px;
}

:root {
  --bg: url("http://gazilliondemo.local/wp-content/uploads/2025/10/pixta_50236526_L-1-scaled.jpg");
  /* ← 2枚目の画像 */
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.split-bg {
  display: flex;
  gap: 24px;
  padding: 48px 24px;
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 縦位置を揃えたい場合 */
  width: 100%;

}

.panel {
  flex: 1 1 0;
  min-height: auto;
  min-width: 380px;
  width: 480px !important;

  padding: 32px;
  color: #10233a;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* 背景を透過っぽく見せる方法：背景レイヤーを別に作る */
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("http://gazilliondemo.local/wp-content/uploads/2025/10/pixta_50236526_L-1-scaled.jpg");
  /* 背景画像 */
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(110%) opacity(0.3);
  /* 背景を淡く */
  z-index: 0;
  /* 背景を一番下に */
}

/* 背景の左右を調整して連続表示 */
.panel-left::before {
  background-position: left center;
}

.panel-right::before {
  background-position: right center;
}

/* 中身の要素は上に配置（透けない） */
.panel>* {
  position: relative;
  z-index: 1;
}

.panel p {
  font-size: 1.2rem;
}

/* タイトルなどお好みの体裁 */
.panel h2 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: #4472C4;
  text-align: center;
  letter-spacing: .02em;
}

.panel span {
  color: #333;
}

.panel-left {
  text-align: center;
}

.panel-right {
  text-align: center;
}

.panel-left img {
  width: 70%;
}

.panel-right img {
  width: 70%;
}



/* --- スマホで縦積みになったら上下で“つながる”ように --- */
@media (max-width: 768px) {
  .split-bg {
    flex-direction: column;
    padding: 24px 16px;
    gap: 16px;
  }

  .panel {
    min-height: 380px;
    background-size: 100% 200%;
    width: 100% !important;
    min-width: auto !important;
  }

  .panel-left {
    background-position: center top;
  }

  .panel-right {
    background-position: center bottom;
  }
}

.comp-profile-list {
  border-collapse: collapse !important;
  width: 1000px;
  margin: 0 auto;

}


/*company profile*/
/* company profile – 下線のみ */
.comp-profile-list,
.comp-profile-list th,
.comp-profile-list td,
.comp-profile-list tr {
  border: none !important;
  /* まずすべての枠線を消す */
  box-shadow: none !important;
  border-right: none !important;
}

.comp-profile-list tr>td:last-child,
.comp-profile-list tr>th:last-child {
  border-right: none !important;
}



.comp-profile-list td {
  padding: 20px 0;
}

.comp-profile-list td:not(:last-child) {
  padding-left: 30px !important;
}

/* Company Profile 表の右線を完全に消す */
.comp-profile-list {
  border-collapse: collapse !important;
  border: none !important;
  border-right: none !important;
  box-shadow: none !important;
  outline: none !important;

}

/* 各セルの線をリセット */
.comp-profile-list th,
.comp-profile-list td,
.comp-profile-list tr {
  border: none !important;
  border-right: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* 下線だけ残す */
.comp-profile-list th,
.comp-profile-list td {
  border-bottom: 2px solid #ddd !important;
  font-size: 1.1rem;
}

.comp-profile-list tr:nth-child(7) th,
.comp-profile-list tr:nth-child(7) td {
  border-bottom: none !important;
}

/* 万一 table wrapper が線を出している場合にも対応 */
.wp-block-table,
.wp-block-table table {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.comp-profile-sec {
  padding-bottom: 0px !important;
}

.comp-profile-list {
  border-top: 3.5px solid #4472C4 !important;
}


/*================================     Service   =======================================*/

.Sevice-sec_colums {
  margin: 10px 100px;
}

.Sevice-sec_colums-text {
  padding-top: 50px;
}

.Sevice-sec_colums-img {
  margin-left: 100px;
  width: 500px;
}

.Sevice-sec_colums-colum {
  height: 250px !important;
}


.kugiri {
  width: 900px !important;
}


.Sevice-sec_colums-img img {
  display: block;
  margin: 0 auto;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  /* 線の色 */
  margin: 20px 0;
  /* 上下の余白 */
}

.service-sec-box {
  margin-top: 80px;
  margin-bottom: 80px;
}

.service-sec-2nd {
  padding-bottom: 400px !important;
}

.l-container {
  padding-top: 0px !important;
}

.top-sec-inner-content {
  margin-left: 100px !important;
  margin-right: 100px !important;
}


/*====================== abc ==========================*/

.abc-1st-sec h2 {
  margin-bottom: 10px !important;

}

.abc-1st-sec_toptext {
  font-size: 2.5rem !important;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
}

.abc-issue {
  color: #333 !important;
}

.abc-issue {
  border-left: solid 20px #898989 !important;
}

.down-yajirusii img {
  z-index: 3;
  top: -200px;
}

/* Service Section */
.service-section,
.se-value-box {
  background-color: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: visible;
}

/* Arrow background image - positioned at the border between sections */
.service-section::before,
.se-value-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -66%);
  width: 300px;
  height: 600px;
  background-image: url('http://gazilliondemo.local/wp-content/uploads/2025/10/した矢印.png');
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

/* Cards Grid */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.card {
  background: white;
  border-radius: 40px;
  padding: 35px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 460px;
  margin-bottom: 30px;
  height: 230px;

}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-title {
  font-size: 40px !important;
  font-weight: 600;
  color: #b8b8b8;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.card-title {
  font-size: 2.5rem !important;
  margin-bottom: 20px !important;
}

.card-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

.service-section {
  position: relative;
  z-index: 0;
  /* 背景用 */
}

.service-section::before {
  z-index: 1;
}

.cards-grid {
  position: relative;
  z-index: 2;
  /* ← これで確実に上に */
}

.serv-clm-img img {
  width: 500px !important;
}

.abc-serv-clm-left {
  padding-left: 50px;
}

.abc-serv-clm-left h3 {
  margin-bottom: 20px;
}

.issue-sec {
  padding-bottom: 0px !important;
}

.message-sec {
  margin-bottom: 0px !important;
}

.message-sec h2 {
  margin-bottom: 10px !important;
}

.abc-message-sec-title {
  font-size: 2.5rem !important;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
}

/*============================

           採用

=====================*/





/*=============================

ニュースページ

===============================*/

.news-filter {
  text-align: center;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #fff;
}

.year-tabs,
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category-tabs {
  border-bottom: 8px solid #4472C4;
  width: 100%;

}

.cat-tab {
  flex: 1;
  /* 均等に幅を取る */
  padding: 12px 0;
  border: none;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-right: 1px solid #333;
  /* タブの区切り線 */
}


.year-tab,
.cat-tab {
  border: none;
  background: #ffff;
  padding: 0.5rem 1rem;

  cursor: pointer;
  transition: all .2s ease;
}

.year-tab.active,
.cat-tab.active {
  background: #f2f2f2;
  color: #333;
}

.year-tab {
  border-right: 1px solid #333;
}


.custom_new-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0 50px;
  text-align: left;
}

.news-item {
  border-bottom: 1px solid #eee;
  padding: 0.2rem 0;

  width: 100%;
}

.news-item a {
  display: flex !important;
  /* 横並びにする */
  align-items: center;
  /* 垂直方向の中央揃え */
  gap: 10px;
  /* 要素間の余白 */
  text-decoration: none;
  /* 下線消す */
  color: inherit;
  font-size: 1.1rem !important;
  margin-left: 50px;
  margin-right: 50px;

}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #333;
}

.news-date {
  color: #333;
  margin-right: 50px;
  font-size: 1rem;
  font-weight: 500 !important;
}

.news-cat {
  display: inline-block;
  font-size: 1rem;
  color: #333;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin-right: 50px;
  width: 130px;
  font-weight: 500;
}

/* --- ニュースカテゴリの色分け --- */
.news-cat.press {
  background: #DEEBF7;
  color: #000;
}

.news-cat.info {
  background: #BDD7EE;
  color: #000;
}

.news-cat.media {
  background: #9DC3E6;
  color: #000;
}

.news-cat.event {
  background: #2E75B6;
  color: #fff;
}


.news-title {
  font-size: 1.1rem !important;
  font-weight: 500;
  color: #222;
  transition: color 0.2s ease;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.news-item:hover {
  color: #0073aa;
}




/* ========================  お問い合わせ  ======================== */


/* ========================
   コンテナ・基本レイアウト
   ======================== */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.contact-boxes {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-box {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
  box-sizing: border-box;
}

/* ========================
     フォーム行（横並び）
     ======================== */
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.form-row p {
  display: flex;
  align-items: center;
  margin: 0 0 1rem 0;
}

.form-row label {
  width: 120px;
  flex-shrink: 0;
  font-weight: bold;
  margin-right: 1rem;
}

/* ========================
     フォームフィールド
     ======================== */
.form-field {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Contact Form 7のラッパーを横並び化 */
.form-field .wpcf7-form-control-wrap {
  display: flex;
  flex: 1;
}

.form-field .wpcf7-form-control {
  display: block;
  width: 400px;
  box-sizing: border-box;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-field .wpcf7-form-control-wrap {
  width: 400px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-field_low {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
}

/* テキストエリアを常に全幅に */
.form-field textarea,
.form-row-full textarea,
.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  box-sizing: border-box;
  display: block;
}

/* ========================
     フォーム行（縦並び・全幅）
     ======================== */
.contact-full {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-row-full {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-row-full p {
  display: flex;
  align-items: center;
  margin: 0 0 1rem 0;
}

.form-row-full label {
  width: 120px;
  flex-shrink: 0;
  font-weight: bold;
  margin-right: 0;
  margin-bottom: 0.5rem;
}

.form-row-full input,
.form-row-full textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.form-row-full input[type="text"],
.form-field input[type="text"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-row-full p {
  display: flex !important;
  align-items: center;
  margin: 0 0 1rem 0;

}

.form-row-full label {
  width: 120px;
  flex-shrink: 0;
  font-weight: bold;
  margin-right: 0;
  margin-bottom: 0.5rem;
}

/* ========================
     テキスト・リンク
     ======================== */
.form-row-text {
  margin-left: 8.5rem;
}

.form-row-text a {
  margin: 0 4px;
  text-decoration: underline;
  color: #0073aa;
  display: inline !important;
}

.box2 p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ========================
     送信ボタン
     ======================== */
.form-submit {
  text-align: center;
  margin-top: 2rem;
  width: 100%;
}

.form-submit p {
  margin-left: 8rem;
}

.form-submit input[type="submit"] {
  background: #0d2b5a;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.form-submit input[type="submit"]:hover {
  background-color: #555;
}

.alliance-h2 {
  font-size: 2rem !important;
  margin-top: 50px !important;
  margin-bottom: 20px !important;
  border-left: solid 20px #ffffff;
  /*左線（実線 太さ 色）*/
  padding: 0em 0.5em !important;
  left: -34px;
}

.top-service-text {
  padding-top: 50px !important;
}



/* ==============================
     ロゴスライダー（ブラウザ右端から自然に流入ver）
  ============================== */
.logo-slider-wrapper {
  position: relative;
  width: 100vw;
  /* ビューポート全幅 */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  /* セクション中央から全画面幅に拡張 */
  overflow: hidden;

}

.logo-slider {
  position: relative;
  width: 100%;
  height: auto;

}

.logo-track {
  display: flex;
  width: max-content;
  height: 110px;
  animation: logoScroll 40s linear infinite;
  background-color: transparent !important;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  /* Flexbox を有効にする */
  justify-content: center;
  /* 水平方向の中央揃え */
  align-items: center;
  /* 垂直方向の中央揃え */
  padding: 0 2rem;
  background-color: #ffffff;
  border: 5px solid #f5f5f5;
  margin-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-item img {
  height: 60px;
  width: 200px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.logo-item img:hover {
  opacity: 1;
}

@keyframes logoScroll {
  0% {
    transform: translateX(100vw);
    /* 画面右の外からスタート */
  }

  100% {
    transform: translateX(-100%);
    /* 左端の外へ抜ける */
  }
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ==============================
     ロゴギャラリー（常に4列表示）
  ============================== */
.logo-gallery-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0;
}

.logo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* ← 4列固定 */
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-gallery-item {
  flex: 0 0 auto;
  display: flex;
  /* Flexbox*/
  background-color: #fff;
  width: 300px;
  height: 110px;
  border: 2px solid #f9f9f9f9;
}

.logo-gallery-item img {

  width: auto;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.logo-gallery-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* 画面が狭くなっても4列維持 */
@media (max-width: 768px) {
  .logo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .logo-gallery-item img {
    height: 40px;
	  width:50%;
  }
}

.recruit-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-bottom: 2rem;
  color: #333;
}

.l-mainContent__inner>.post_content {
  margin-bottom: 0px;
}

.recurit-box {
  width: 1000px !important;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .recurit-box {
    width: 100% !important;
  }
}

.recuit-2nd-sec .l-container {
  margin-bottom: 100px !important;
}

.recruit-section {
  margin-bottom: 40px;
  padding: 0px 30px 5px 35px;
  border-left: 11px solid #5a9fd4;
  background-color: #fff;
}

.recruit-section-gray {
  background-color: #f5f5f5;
  border-left-color: #888888;
  margin-bottom: 50px !important;
}

.recruit-section-title {
  font-size: 24px !important;
  font-weight: 700;
  color: #4472C4;
  margin-bottom: 10px !important;
  padding-top: 10px;
}

.recruit-mission {
  margin-top: 15px;
}

.recruit-mission-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #5a9fd4;
  margin-bottom: 10px;
  padding: 5px 15px;
  background-color: #e8f1f9;
  border-radius: 25px;
  letter-spacing: 0.05em;
}

.recruit-mission-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  margin-top: 10px;
}

.recruit-flow-box {
  width: 1000px !important;
  margin: 0 auto;
}

.recruit-note {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.recruit-flow-intro {
  margin-bottom: 50px;
  line-height: 1.9;
}

.recruit-flow-intro p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.9;
}




/* STEP共通 */
.recruit-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 28px 35px;
  border-radius: 6px;
  font-weight: 500;
}

/* ステップごとの背景色はそのまま */
.step-1 {
  background-color: #DEEBF7;
}

.step-2 {
  background-color: #BDD7EE;
}

.step-3 {
  background-color: #9DC3E6;
}

.step-4 {
  background-color: #2E75B6;
}

.step-5 {
  background-color: #1F4E79;
}

/* 丸数字 */
.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.step-1 .step-number {
  color: #DEEBF7;
}

.step-2 .step-number {
  color: #BDD7EE;
}

.step-3 .step-number {
  color: #9DC3E6;
}

.step-4 .step-number {
  color: #2E75B6;
}

.step-5 .step-number {
  color: #1F4E79;
}

/* 内容 */
.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* タイトル行 */
.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 50%;
}

/* タイトル */
.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  margin-left: 50px;
  width: 250px;
}

/* 説明文 */
.step-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin: 8px 0 0 0;
  padding-left: 5px;
  width: 70%;
}

/* ダーク背景時の文字色 */
.step-4 .step-title,
.step-4 .step-text,
.step-5 .step-title,
.step-5 .step-text {
  color: #fff !important;
}

/* 区切り線 */
.step-separator-box {
  display: flex;
  justify-content: center;
}

.step-separator {
  text-align: left;
  padding: 15px 0;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  width: 350px;
  margin-left: 400px;
}



.form-submit-sp {
  display: none !important;

}







/* ================================


投稿ページのデザイン


===================================*/

body.single #content.l-container {
  max-width: 1200px !important;
}

.single .l-content.l-container {
  margin-bottom: 0px;
  /* ここに必要な余白の値を設定してください */
  /* 例: 30px, 50px, 80px など */
}

#main_content_single {
  width: 1200px !important;
  padding-top: 96px;
}

.l-mainContent .l-mainContent__inner {
  max-width: 1200px !important;
  margin-left: auto;
  /* 中央寄せのため */
  margin-right: auto;
  /* 中央寄せのため */
}

.l-mainContent__inner {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#top_title_area_single,
.l-topTitleArea {
  position: relative !important;
  width: 100vw;
  /* ビューポートの幅全体を使用 */
  position: relative;
  /* 子要素の絶対配置の基準となる */
  left: 50%;
  /* ヒーローエリアの左端を画面中央に移動 */
  transform: translateX(-50%);
  /* ヒーローエリア自体を左に50%移動して中央揃えにする */

  min-height: 300px;
  /* ヒーローエリアの最小高さを設定 (必要に応じて調整) */
  display: flex;
  /* タイトルを垂直・水平中央寄せにするため */
  align-items: center;
  /* 垂直中央寄せ */
  justify-content: center;
  /* 水平中央寄せ */
  overflow: hidden;
  /* 内部の画像がはみ出さないようにクリップ */
  margin-bottom: 30px;/
}

/* 画像に黒のオーバーレイをかけるための擬似要素 */
#top_title_area_single::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgb(0, 0, 0, 0.3) !important;
  /* 不透明度も調整 */
  z-index: 1 !important;
}

/* ヒーローエリアの背景画像 */

/* ヒーロー画像自体にグレースケールを適用 */
.l-topTitleArea__img_single {
  /* 既存の画像スタイル (position, top, left, width, height, object-fit, z-index) は維持 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* マスクの下に画像を配置 */

  /* ここにグレースケールを適用 */
  filter: grayscale(60%) !important;
  /* 強制的に適用 */
  opacity: 0.4 !important;

}

/* タイトルを含むボディ部分 */
.l-topTitleArea__body_single.l-container_single {
  position: relative;
  /* 画像の上に表示されるように */
  z-index: 2 !important;
  /* 画像より高いz-index */
  padding: 20px 20px 20px 0px;
  /* タイトル周りの余白 */
  text-align: center;
  /* タイトルを中央寄せ */
  width: 100%;
  /* コンテナ幅いっぱいに */
  max-width: 1200px;
  /* 必要に応じて最大幅を設定 */
  box-sizing: border-box;
  /* paddingを含めて幅を計算 */
}


.c-Title_single {
  color: #fff !important;
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 2px solid #fff;
  width: 300px;
  text-align: left;
}

.c-pageTitle {
  color: #fff !important;
  width: 100%;
  font-size: 2rem;
  border-bottom: 2px solid #fff;
  width: 300px;
}

.c-pageTitle_single {
  color: #333;
  font-size: 2rem;
  border-bottom: 2px solid #4e71b2;
}

.custom-post-type-label {
  padding: 0em 0.5em !important;
  color: #494949 !important;
  font-weight: 700;
  background: transparent !important;
  font-size: 3rem !important;
  color: #4472C4 !important;
  border-left: solid 20px #4472C4 !important;
  margin-bottom: 80px !important;

  /* ここからフル幅にはみ出すためのスタイル */
  position: relative;
  /* 親要素が基準でなくても、自身が基準となる */
  width: 1200px;
  /* 希望の幅 */
  max-width: 100vw;
  /* ビューポートの幅を超えないように（安全策） */
  left: 50%;
  /* 左端を親要素の中央に移動 */
  transform: translateX(-50%);
  /* 要素自体を左に50%移動して中央揃え */
  box-sizing: border-box;
  /* paddingを含めて幅を計算 */
}

.news-date_single {
  font-size: 1rem;
}



.c-gnav .sub-menu {
  border: 3px solid #4472C4;
}

.abc-btn {
  text-align: left;
  width: 100%;
}

.abc-btn a {
  font-size: 1rem;
}


.c-pagination.-post {
  margin-top: 30px;
  /* 上に余白 */
  margin-bottom: 30px;
  /* 下に余白 */
  text-align: center;
  /* 中央寄せ */
  font-size: 1.1em;
}

.c-pagination.-post span,
.c-pagination.-post a {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  background-color: #fff;
}

.c-pagination.-post .current {
  background-color: #0073aa;
  /* 現在のページの背景色 */
  color: #fff;
  /* 現在のページの文字色 */
  border-color: #0073aa;
}

.c-pagination.-post a:hover {
  background-color: #eee;
}


.single-page-bottom {
  margin-top: 100px;
}

/* style.css に追加するCSS例 */
.post-featured-image-wrapper {
  margin-top: 20px;
  /* h2タグとの間に余白 */
  margin-bottom: 30px;
  /* 本文との間に余白 */
  text-align: center;
  /* 画像を中央寄せ */
}

.post-featured-image-wrapper img.content-featured-image {
  max-width: 100%;
  /* 親要素の幅を超えないように */
  height: auto;
  /* アスペクト比を維持 */
  display: block;
  /* 中央寄せのためにブロック要素に */
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  /* 角を丸くする例 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 影を追加する例 */
}


/* 投稿ページ内のh2見出しに装飾 */
.single .post_content h2 {
  padding: 0em 0.5em !important;
  color: #333 !important;
  background: transparent !important;
  font-size: 2rem !important;
  border-left: solid 20px #4472C4 !important;
  margin-bottom: 50px !important;
}

/* 投稿ページ内のh3見出しに装飾 */
.single .post_content h3 {
  padding: 0em 0.5em !important;
  color: #333 !important;
  background: transparent !important;
  font-size: 1.5rem !important;

  border-left: solid 20px #4472C4 !important;
  margin-bottom: 50px !important;
}


/* カスタム記事順ナビゲーション全体 */
.custom-post-numbered-navigation {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.custom-post-numbered-navigation h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

/* 番号リスト */
.post-numbers-list {
  list-style: none;
  /* リストの点を削除 */
  padding: 0;
  margin: 0;
  display: flex;
  /* 横並びにする */
  flex-wrap: wrap;
  /* 画面幅が狭い場合に折り返す */
  justify-content: center;
  /* 中央寄せ */
  gap: 10px;
  /* 項目間の隙間 */
}

.post-numbers-list li {
  margin: 0;
}

.post-numbers-list a {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  transition: background-color 0.3s ease;
  min-width: 38px;
  /* 番号が1桁でも2桁でも幅を揃える */
}

.post-numbers-list a:hover {
  background-color: #eee;
  border-color: #aaa;
}

/* 現在の投稿の番号をハイライト */
.post-numbers-list a.current-post-number {
  background-color: #0073aa;
  /* アクティブなページの背景色 */
  color: #fff;
  /* アクティブなページの文字色 */
  border-color: #0073aa;
  font-weight: bold;
  cursor: default;
  /* クリックできないように見せる */
}

.post-numbers-list a.current-post-number:hover {
  background-color: #0073aa;
  /* ホバーしても色を変えない */
}



/* リード文エリアの装飾 */
.lead-text-area {
  background-color: #f7f7f7;
  /* 薄いグレーの背景色 */
  padding: 25px 30px;
  /* 上下左右の余白 */
  margin-bottom: 30px;
  /* リード文エリアの下に余白 */
  border-radius: 8px;
  /* 角を少し丸くする */
  line-height: 1.8;
  /* 行間を広げて読みやすく */
  font-size: 1.1em;
  /* フォントサイズを少し大きく */
  color: #444;
  /* 文字色 */
}

/* リード文エリア内のPタグやリストなどにも必要に応じてスタイルを調整 */
.lead-text-area p {
  margin-bottom: 1em;
  /* Pタグ間の余白 */
}



.l-fixHeader__gnav {
  color: #333;
}














/*=============================

レスポンシブ

===============================*/






/* ================================================================
   TABLET STYLES（タブレット用：769px～1199px）
   タブレット縦向きの最適化
================================================================ */

@media (max-width: 1200px) {
  .flow-container {
    width: 90%;
  }

  .features-grid {
    flex-direction: column;
  }
}

















/* ================= レスポンシブ対応 ================= */



/* ========================
     レスポンシブ対応（768px以下）
     ======================== */



@media (max-width: 768px) {

  .sp-br {
    display: block !important;
  }

  /*============================= トップページ ================================== */
  .p-mainVisual__slideTitle {

    font-size: 2rem;
    color: #fff;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 30px;
    width: 100%;

    font-weight: 600;
    font-style: bold;
  }

  .p-mainVisual__slideTitle {
    position: relative;
    text-align: left;
  }

  .p-mainVisual__slideText {
    position: relative;
    display: inline-block;
    line-height: 1.6;
    text-align: left;
    color: transparent;
    /* 元テキストを隠す */
  }


  /* 元のテキストの代わりに3行分再現 */
  .p-mainVisual__slideText::before {
    content: "Aテクノロジーによる";
    white-space: pre;
    display: block;
    color: #000;
    font-family: "M PLUS 1", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: bold;

  }

  .p-mainVisual__slideText::after {
    content: "新しい ”道” を創造する";
    display: block;
    color: #000;
    font-family: "M PLUS 1", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: bold;
    padding-left: 50px;
  }



  .top-sec-inner-content {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .top-sec-inner-content p {}

  /*セクション見出し*/
  .is-style-section_ttl {
    padding: 0em 0.5em !important;
    /*上下 左右の余白*/
    color: #494949 !important;
    /*文字色*/
    background: transparent !important;
    /*背景透明に*/
    font-size: 2rem !important;
    color: #4472C4 !important;
    border-left: solid 20px #4472C4 !important;
    /*左線*/
    margin-bottom: 50px !important;
  }

  .p-_bottom_space {
    padding-bottom: 20px;
  }

  /*お知らせリスト*/

  /* ====== 行全体の骨格 ====== */
  .p-postList.-type-simple {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #E6EBF2;
    /* 一番上の罫線 */
  }

  .p-postList__item {
    border-bottom: 1px solid #E6EBF2;
    /* 行ごとの区切り線 */
  }

  .p-postList__link {
    display: flex;
    align-items: center;
    gap: 28px;
    /* 日付と本文の間隔 */
    padding: 16px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity .2s ease;
  }

  .p-postList__link:hover {
    opacity: .8;
  }

  /* ====== 左カラム：日付 ====== */
  .c-postTimes__posted {
    flex: 0 0 170px;
    /* 左カラムの固定幅（画像に近い幅） */
    font-weight: 700;
    font-size: 18px;
    color: #1C2B4D;
    /* 濃いめの紺 */
    line-height: 1.2;
    white-space: nowrap;
  }

  /* ====== 右カラム：本文 ====== */
  .p-postList__body {
    flex: 1 1 auto;
  }

  /* メタ（カテゴリなど）を横並びに */
  .p-postList__meta {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #5B6577;
  }

  .p-postList__body {
    display: flex;
  }

  /* 「カテゴリー」バッジ（丸いピル） */
  .p-postList__cat {
    display: inline-block;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    line-height: 1;
    background: #EEF2F7;
    /* デフォルトの薄グレー */
    color: #2E3440;
  }

  /*=====================ABout================================*/

  .about-us-box {
    position: relative;

    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 80px;
    text-align: left;
    color: #000;
    background: #fff;
    height: 60vh;
  }

  /* 背景共通スタイル */
  .about-us-bg {
    position: absolute;

    width: 900px;
    height: 600px;

    overflow: hidden;
    opacity: 0.4;
    z-index: 1;
    transform: translate(-50%, -50%);
  }

  .about-us-bg1 img {
    width: 1000px;
    height: auto;
    border-radius: 50% / 30%;
    object-fit: cover;

  }

  /* 背景1（ベース） */
  .about-us-bg1 {
    top: 70%;
    left: 80%;
    width: 600px;
  }



  /* 背景2（上に少し重ねる） */
  .about-us-bg2 {
    top: 90%;
    left: 35%;

    transform: translate(-40%, -45%) rotate(5deg);
    opacity: 1;

  }

  .about-us-bg2 img {
    width: 500px;
    height: auto;
    border-radius: 50% / 30%;
    object-fit: cover;

  }

  /* テキスト部分 */
  .about-us-content {

    width: 100%;
    margin-left: 0px;
    line-height: 1.9;
  }

  .about-us-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: 100%;
  }

  .about-us-content p {
    font-size: 1rem;
    margin-bottom: 1.2em;
  }

  .corp-mission-sec {
    margin-bottom: 0px !important;
  }


  :root {
    --kv-img: url("http://gazilliondemo.local/wp-content/uploads/2025/10/top1-1.png");
    /* ←ここを背景画像URLに変更 */
    --bg-w: 1080px;
    --bg-h: 454px;
  }

  /* 2×2 グリッド配置 */
  .kv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 40px auto;
  }

  /* カード共通 */
  .kv-card {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
    aspect-ratio: 540 / 227;
    /* 画像の分割比率を維持 */
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-image: var(--kv-img);
    background-repeat: no-repeat;
    background-size: var(--bg-w) var(--bg-h);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .kv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* タイトル文字 */
  .kv-card>span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #111;
    z-index: 2;
  }

  /* 半透明オーバーレイで読みやすく */
  .kv-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
  }



  /* 背景の分割位置 */
  .kv-tl {
    background-position: left top;
  }

  .kv-tr {
    background-position: right top;
  }

  .kv-bl {
    background-position: left bottom;
  }

  .kv-br {
    background-position: right bottom;
  }




























  /*===============================================*/

  .our-mission p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 0px;
  }

  :root {
    --bg: url("http://gazilliondemo.local/wp-content/uploads/2025/10/pixta_50236526_L-1-scaled.jpg");
    /* ← 2枚目の画像 */
  }

  * {
    box-sizing: border-box
  }

  body {
    margin: 0;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    background: #ffffff;
  }

  .split-bg {
    flex-direction: column;
    padding: 24px 16px;
    gap: 16px;
  }

  .panel {
    min-height: 400px;
    background-size: 100% 200%;
    width: 100% !important;
    min-width: auto !important;
  }

  .panel-left {
    background-position: center top;
  }

  .panel-right {
    background-position: center bottom;
  }

  /* 背景を透過っぽく見せる方法：背景レイヤーを別に作る */
  .panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("http://gazilliondemo.local/wp-content/uploads/2025/10/pixta_50236526_L-1-scaled.jpg");
    /* 背景画像 */
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(110%) opacity(0.3);
    /* 背景を淡く */
    z-index: 0;
    /* 背景を一番下に */
  }

  /* 背景の左右を調整して連続表示 */
  .panel-left::before {
    background-position: left center;
  }

  .panel-right::before {
    background-position: right center;
  }

  /* 中身の要素は上に配置（透けない） */
  .panel>* {
    position: relative;
    z-index: 1;
  }

  .panel p {
    font-size: 1.2rem;
  }

  /* タイトルなどお好みの体裁 */
  .panel h2 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.4;
    color: #4472C4;
    text-align: center;
    letter-spacing: .02em;
  }

  .panel span {
    color: #333;
  }

  .panel-left {
    text-align: center;
  }

  .panel-right {
    text-align: center;
  }

  .panel-left img {
    width: 70%;
  }

  .panel-right img {
    width: 70%;
  }




  /*==================================-company profile=====================================-*/

  .aboutus-1nd-columns-left p {
    font-size: 1rem !important;
  }

  /* company profile – 下線のみ */
  .comp-profile-list,
  .comp-profile-list th,
  .comp-profile-list td,
  .comp-profile-list tr {
    border: none !important;
    /* まずすべての枠線を消す */
    box-shadow: none !important;
    border-right: none !important;
    font-size: 1rem !important;
  }

  .comp-profile-list tr>td:last-child,
  .comp-profile-list tr>th:last-child {
    border-right: none !important;
  }



  .comp-profile-list td {
    padding: 20px 0;
  }

  .comp-profile-list td:not(:last-child) {
    padding-left: 30px !important;
  }

  /* Company Profile 表の右線を完全に消す */
  .comp-profile-list {
    width: 100%;
  }

  /* 各セルの線をリセット */
  .comp-profile-list th,
  .comp-profile-list td,
  .comp-profile-list tr {
    border: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* 下線だけ残す */
  .comp-profile-list th,
  .comp-profile-list td {
    border-bottom: 2px solid #ddd !important;
    font-size: 1.1rem;
  }

  .comp-profile-list tr:nth-child(7) th,
  .comp-profile-list tr:nth-child(7) td {
    border-bottom: none !important;
  }

  /* 万一 table wrapper が線を出している場合にも対応 */
  .wp-block-table,
  .wp-block-table table {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .comp-profile-sec {
    padding-bottom: 0px !important;
  }




















  /*================================     Service   =======================================*/
  #top_title_area_single,
  .l-topTitleArea {
    margin-bottom: 0px;
  }

  .Sevice-sec {

    padding-bottom: 0px !important;
  }

  .Sevice-sec_colums {
    margin: 10px 0px;
  }

  .Sevice-sec_colums-text {
    padding-top: 50px;
  }

  .Sevice-sec_colums-img {
    margin-left: 0px;
    width: 500px;
  }

  .Sevice-sec_colums-colum {
    height: auto !important;
    display: block;
  }


  .kugiri {
    width: 900px !important;
  }


  .Sevice-sec_colums-img img {
    display: block;
    margin: 0 auto;
  }

  .divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    /* 線の色 */
    margin: 20px 0;
    /* 上下の余白 */
  }

  .service-sec-box {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .service-sec-2nd {
    padding-bottom: 50px !important;
  }

  .l-container {
    padding-top: 0px !important;
  }




  /*================================     Recruit   =======================================*/

  .recruit-flow-step {
    flex-direction: column;
    gap: 15px;
    padding: 20px 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .step-content {
    padding-top: 0;
  }

  .step-title {
    font-size: 15px;
  }

  .step-text {
    font-size: 13px;
  }

  .section-title {
    font-size: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .title-sub {
    font-size: 18px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-content {
    flex-direction: column;
    gap: 40px;
  }

  .service-image {
    flex: 0 0 100%;
  }

  .service-section::before {
    display: none;
  }

  .issue-section {
    padding: 40px 0 60px;
  }

  .service-section {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #e8eef5 40%, #dce5f0 100%);
    padding: 60px 0 80px;
  }


  /* コンテナ */
  .contact-wrapper {
    padding: 0rem;
  }

  /* ボックスレイアウト */
  .contact-boxes {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-box {
    padding: o.5rem;
  }

  .contact-box p {
    font-size: 1rem !important;
  }

  /* フォーム行 */
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .form-row p {
    display: block !important;
    align-items: center;
    width: 100%;

  }

  .form-row label {
    width: 100%;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }

  /* フォームフィールド */
  .form-field {
    width: 100%;
  }

  .form-field_low {
    padding-left: 0px;
    padding-right: 0px;
  }

  .form-field .wpcf7-form-control,
  .form-field .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 100%;
  }

  .form-field input,
  .form-field select {
    width: 100%;
  }

  /* テキストエリア */
  .form-field textarea,
  .form-row-full textarea,
  .wpcf7-form-control.wpcf7-textarea {
    width: 100% !important;
    min-height: 150px;
  }

  /* 全幅フォーム */
  .contact-full {
    padding: 1rem;

  }

  .form-row-full label {
    width: 20%;
    margin-bottom: 0.5rem;
  }

  .form-row-full p {
    display: block !important;

  }


  /* テキスト・リンク */
  .form-row-text {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 1rem !important;
  }

  /* 送信ボタン */



  .form-submit input[type="submit"] {
    display: none !important;
  }

  .form-submit p {
    margin-left: 0px !important;
  }

  .form-submit-sp {
    display: block !important;
  }

  .form-submit-sp input[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 16px;
    color: #fff;
    background-color: #333;
  }

  .form-submit-sp input[type="submit"]:hover {
    background-color: #555;
  }

  .form-submit-sp p {
    font-size: 0.75rem !important;

  }



  /*=============================

ニュースページ

===============================*/

  .news-filter {
    text-align: center;
    max-width: 100%;
    margin: 2rem auto;
    background-color: #fff;
  }

  .year-tabs,
  .category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .category-tabs {
    border-bottom: 8px solid #4472C4;
    width: 100%;

  }

  .cat-tab {
    flex: 1;
    /* 均等に幅を取る */
    padding: 12px 0;
    border: none;
    background: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    border-right: 1px solid #333;
    /* タブの区切り線 */
  }


  .year-tab,
  .cat-tab {
    border: none;
    background: #ffff;
    padding: 0.5rem 0.5rem;

    cursor: pointer;
    transition: all .2s ease;
  }

  .year-tab.active,
  .cat-tab.active {
    background: #f2f2f2;
    color: #333;
  }

  .year-tab {
    border-right: 1px solid #333;
  }


  .custom_new-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin: 0 50px;
    text-align: left;
  }

  .news-item {
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;

    width: 100%;
  }

  .news-item a {
    display: block !important;
    /* 横並びにする */
    align-items: center;
    /* 垂直方向の中央揃え */
    gap: 10px;
    /* 要素間の余白 */
    text-decoration: none;
    /* 下線消す */
    color: inherit;
    font-size: 1.1rem !important;
    margin-left: 5px;
    margin-right: 5px;

  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #333;
    width: 300px;
  }

  .news-date {
    color: #333;
    margin-right: 5px;
    font-size: 0.8rem;
    font-weight: 500 !important;
  }

  .news-cat {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    margin-right: 5px;
    width: 120px;
    font-weight: 500;
  }

  .news-title {
    font-size: 0.9rem !important;
    font-weight: 500;
    color: #222;
    transition: color 0.2s ease;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    text-align: left;
  }

  .news-item:hover {
    color: #0073aa;
  }


  .logo-gallery {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
  }
	
	.logo-gallery-item {
		width:100%;
	}

  .logo-gallery-item img {
    height: auto;
	  width:100%;
	  
  }





  /*============================

           採用

=====================*/


  /* Recruit Page Styles */
  .recruit-intro {
    margin-bottom: 50px;
    padding: 20px 0;
    line-height: 1.8;
  }

  .recruit-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: bold;
    color: #333;
  }

  .recurit-box {
    width: 100% !important;
    margin: 0 auto;

  }

  .recuit-2nd-sec .l-container {
    margin-bottom: 100px !important;
  }


  .recruit-section {
    margin-bottom: 20px;
    padding: 0px 15px 5px 15px;
    border-left: 11px solid #5a9fd4;
    background-color: #ffffff;

  }

  .recruit-section-gray {
    background-color: #f5f5f5;
    border-left-color: #888888;

    margin-bottom: 50px, !important;
  }

  .recruit-section-title {
    font-size: 24px !important;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 10px !important;
    padding-top: 10px;
  }

  .recruit-mission {
    margin-top: 15px;
  }

  .recruit-mission-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #5a9fd4;
    margin-bottom: 10px;
    padding: 5px 15px;
    background-color: #e8f1f9;
    border-radius: 25px;
    letter-spacing: 0.05em;
  }


  .recruit-mission-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
    margin-top: 10px;
  }


  .recruit-note {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Responsive Design */

  /* Recruit Flow Styles */
  .recruit-flow-intro {
    margin-bottom: 50px;
    line-height: 1.9;
  }

  .recruit-flow-intro p {
    font-size: 1.1remabove;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.9;
  }

  .recruit-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
  }

  .recruit-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 35px;
    margin-bottom: 0;
    border-radius: 6px;
    color: white;
    font-weight: 500;
  }


  .recruit-flow-box {
    width: 100% !important;
    margin: 0 auto;
  }

  .recruit-flow-intro {
    margin-bottom: 50px;
    line-height: 1.9;
  }

  .recruit-flow-intro p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.9;
  }


  /* 丸数字 */
  .step-number {
    width: 40px;
    height: 40px;

  }


  /* タイトル行 */
  .step-header {

    width: 100%;
  }

  /* タイトル */
  .step-title {
    font-size: 1.4rem;
    font-weight: 700;

    margin-left: 10px;

  }

  /* 説明文 */
  .step-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin: 8px 0 0 0;
    padding-left: 5px;
    width: 100%;
  }

  .step-separator {

    font-size: 1rem;

    margin-left: 50px;
  }


  /*====================== abc ==========================*/

  .abc-1st-sec h2 {
    margin-bottom: 10px !important;
  }

  .abc-1st-sec_toptext {
    font-size: 2rem !important;
    margin-top: 10px !important;
    margin-bottom: 40px !important;
  }

  .abc-issue {
    color: #333 !important;
  }

  .down-yajirusii img {
    z-index: 3;
    top: -200px;
  }

  /* Service Section */
  .service-section,
  .se-value-box {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: visible;
  }

  /* Arrow background image - positioned at the border between sections */
  .service-section::before,
  .se-value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -66%);
    width: 300px;
    height: 600px;
    background-image: url('http://gazilliondemo.local/wp-content/uploads/2025/10/した矢印.png');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
  }

  /* Cards Grid */
  .cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
  }

  .card {
    background: white;
    border-radius: 40px;
    padding: 35px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 460px;
    margin-bottom: 30px;
    height: 230px;

  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .card-title {
    font-size: 40px !important;
    font-weight: 600;
    color: #b8b8b8;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }

  .card-title {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
  }

  .service-section {
    position: relative;
    z-index: 0;
    /* 背景用 */
  }

  .service-section::before {
    z-index: 1;
  }

  .cards-grid {
    position: relative;
    z-index: 2;
    /* ← これで確実に上に */
  }

  .serv-clm-img img {
    width: 500px !important;
  }

  .abc-serv-clm-left {
    padding-left: 0px;
  }

  .issue-sec {
    padding-bottom: 0px !important;
  }

  .message-sec {
    margin-bottom: 50px !important;
  }

  .message-sec h2 {
    margin-bottom: 10px !important;
  }

  .abc-message-sec-title {
    font-size: 2rem !important;
    margin-top: 10px !important;
    margin-bottom: 40px !important;
  }










}


@media (min-width: 600px) {
  .l-topTitleArea {
    min-height: 300px;
    padding: 1em 0;
  }
}

/* ================= 投稿ページ (Single) Responsive (Added) ================= */
@media (max-width: 768px) {
  #top_title_area_single {
    min-height: 300px !important;
    margin-bottom: 0px !important;
    width: 100vw;
  }

  .l-mainContent__inner {
    padding-top: 2em;
  }

  /* タイトルを含むボディ部分 */
  .l-topTitleArea__body_single.l-container_single {
    position: relative;
    /* 画像の上に表示されるように */
    z-index: 2 !important;
    /* 画像より高いz-index */
    padding-left: var(--swl-pad_container, 0);
    padding-right: var(--swl-pad_container, 0);
    /* タイトル周りの余白 */
    text-align: center;
    /* タイトルを中央寄せ */
    width: 100%;
    /* コンテナ幅いっぱいに */
    /* 必要に応じて最大幅を設定 */
    box-sizing: border-box;
    /* paddingを含めて幅を計算 */
  }


  #main_content_single {
    width: 100% !important;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 4em;
  }

  .c-Title_single {
    font-size: 2rem !important;
    width: 300px !important;
    line-height: 1.4;

  }

  .c-pageTitle_single {
    font-size: 1.5rem !important;
  }

  .custom-post-type-label {
    font-size: 2rem !important;
    margin-bottom: 40px !important;
    border-left-width: 10px !important;
    padding: 0em 0.5em !important;
    border-left: solid 20px #4472C4 !important;
    margin-bottom: 80px !important;

    /* ここからフル幅にはみ出すためのスタイル */
    position: relative;
    /* 親要素が基準でなくても、自身が基準となる */
    width: 100%;
    /* 希望の幅 */
    max-width: 100vw;
    /* ビューポートの幅を超えないように（安全策） */
    left: 0%;
    /* 左端を親要素の中央に移動 */
    transform: translateX(0%);
    /* 要素自体を左に50%移動して中央揃え */
    box-sizing: border-box;
    /* paddingを含めて幅を計算 */
    line-height: 1.4;
  }

  .single .post_content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
    border-left-width: 10px !important;
  }

  .single .post_content h3 {
    font-size: 1.3rem !important;
    margin-bottom: 30px !important;
    border-left-width: 10px !important;
  }

  .lead-text-area {
    padding: 15px 15px !important;
    font-size: 1rem !important;
  }

  .post-numbers-list {
    gap: 5px !important;
  }

  .post-numbers-list a {
    padding: 6px 8px !important;
    min-width: 30px !important;
    font-size: 0.9rem !important;
  }

  .single-page-bottom {
    margin-top: 50px !important;
  }
}