@charset "utf-8";

/* CSS Document */
/* ========== Base ========== */
:root {
  --c-bg: #ffffff;
  --c-text: #0f1a2a;
  --c-muted: #66748a;
  --c-primary: #0058b3;
  /* ロゴの青に寄せる */
  --c-accent: #1a86ff;
  --c-wave: #e9f3fb;
  /* 背景のドット/波っぽい淡い青 */
  --container: 1200px;
}

/* 全体ラッパー：幅1480px以内に収める */
.site-wrap {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

.site_jisseki-wrap {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

/* 文章タイトル */
.site-txt_title {
  font-size: 40px;
  font-weight: 900;
  color: #004086;
}

/* ------------------------- */

/* TOP */
/* Utility */
.container {
  margin-inline: auto;
  padding-inline: 16px
}

.align-right {
  text-align: right
}

.btn-primary {
  display: inline-block;
  padding: .6em 1.2em;
  border-radius: 999px;
  color: #fff;
  background: var(--c-primary);
  font-weight: 700;
}

/* 指定サイズを担保 */
.gnav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.gnav a {
  display: block;
  padding: 10px 0;
  font-weight: 500
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: #eef7ff
}

.hero-bg {
  width: 100%;
  height: 1090px;
  max-height: 1090px;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero-kicker {
  font-size: min(8vw, 64px);
  font-weight: 900;
  margin: 0;
  line-height: 1
}

.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-content: center;
  gap: 8px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 64, 134, 0.3);
  align-items: center;
  /* 左右中央 */
}

.hero-badge {
  position: absolute;
  left: 40px;
  top: 40px
}

.hero-copy {
  font-size: clamp(14px, 2.5vw, 20px);
  background: rgba(15, 26, 42, .6);
  display: inline-block;
  padding: .6em 1em;
  border-radius: 10px
}


/* ========== Sections Common ========== */
.section {
  padding: 72px 0
}
/* ------------------------- */


/* -------------------------
TOP
------------------------- */

/* プライバシーポリシー */
/* テーマ色 */
:root {
  --accent: #0a6fbf;
  /* 見出しの青 */
  --accent-weak: #e8f3ff;
  /* 背景の淡い水色 */
}

/* セクション外観（左右に淡い装飾） */
.policy {
  position: relative;
  padding: 56px 16px 80px;
  background: #fff;
  overflow: hidden;
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(18px 18px at 0 20%, var(--accent-weak) 30%, transparent 31%) left top/140px 140px repeat-y, radial-gradient(18px 18px at 100% 10%, var(--accent-weak) 30%, transparent 31%) right top/160px 160px repeat-y;
  opacity: .7;
}

/* インナー幅と本文タイポ（18px指定） */
.policy-inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  /* 指定の文字サイズ */
  line-height: 1.9;
  color: #0f1a2a;
  letter-spacing: .02em;
}

/* サブタイトル */
.policy-subtitle {
  text-align: center;
  color: #004086;
  font-weight: 700;
  margin: 0 0 20px;
}

/* 見出し・本文 */
.policy h3 {
  font-size: 1.05em;
  /* 本文18pxに対して少し大きめ */
  font-weight: 700;
  color: #0f1a2a;
  margin: 28px 0 6px;
}

.policy p {
  margin: 0 0 16px;
}

/* 箇条書き */
.policy-list {
  margin: 0 0 16px 1.3em;
  padding: 0;
  list-style: disc;
}

.policy-list li {
  margin: 0.2em 0;
}

/* リンク */
.policy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------- */

/* サイトマップ */
/* ベース */
:root {
  --ink: #111;
  --line: #bfbfbf;
  /* 見本の薄い罫線 */
}

/* 余白と最大幅 */
.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding: 28px 24px;
}

/* グリッド（3カラム → 可変） */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 48px 56px;
  /* 縦横の間隔 */
}

/* 各ブロック */
.sitemap-section {
  border-top: 3px solid #000;
  /* ← 黒で見えるように修正 */
  padding-top: 12px;
  min-height: 150px;
}

/* 見出し：左に「›」、太字・小さめ */
.sitemap-head {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  /* ← 見出しは太字 */
  position: relative;
  padding-left: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  /* タイトル直下にライン */
}

.sitemap-head::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* リスト部分 */
.sitemap-list {
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 16px;
  padding: 0;
  list-style: none;
  font-weight: normal;
}

.sitemap-list li {
  margin: 0 0 6px;
  font-weight: normal;
  /* ← リストはノーマル */
}

.sitemap-list a {
  color: #111;
  text-decoration: none;
  font-weight: normal;
  /* ← リンクもノーマル */
}

.sitemap-list a:hover {
  text-decoration: underline;
}

.sitemap-list,
.sitemap-list li,
.sitemap-list a {
  font-weight: normal !important;
}

/* ------------------------- */

/* 採用情報 */
/* ラッパー */
.container_recruit {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 32px) 80px;
}

/* 大見出し ─ 左右の青いパーツ付き */
.page-title {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: .08em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  position: relative;
}

.page-title::before,
.page-title::after {
  content: "";
  display: inline-block;
  width: clamp(14px, 1.8vw, 22px);
  height: clamp(22px, 2.6vw, 30px);
  background: var(--blue);
  transform: skewX(-15deg);
  margin: 0 clamp(14px, 2vw, 22px);
  vertical-align: middle;
}

/* 本文 */
.site-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 1.8;
}

.site-txt_s {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.8;
  color: #000;
}

/* 本文（太字） */
.site-txt_strong {
  font-weight: 700;
  font-size: 18px;
}

/* 本文（太字） */
.site-txt_strong_b {
  font-weight: 700;
  font-size: 18px;
  color: #004086;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

th,
td {
  padding: 16px;
  border: 1px solid #878787;
}

/* 左列（th）は中央寄せ、右列（td）は上寄せ */
th {
  width: 20%;
  background: #004086;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
  /* ★ココがポイント */
  text-align: left;
  white-space: nowrap;
  /* ラベルの折返しを防ぎたい場合 */
}

td {
  vertical-align: top;
}

/* 右カラム 偶数行だけグレー背景 */
tr:nth-child(even) td {
  background: #f2f2f2;
}

/* ========== バナー ========== */
/* ========== Recruit Works========== */
.section {
  padding: 60px 20px;
}

.section_rinen {
  padding: 60px 20px;
  margin-bottom: -120px;
  margin-top: -120px;
}

.inn {
  max-width: 1465px;
  margin: 0 auto;
  margin-top: -200px;
}

.section-title {
  font-size: 179px;
  font-weight: bold;
  color: #004086;
  margin-bottom: -80px;
  margin-left: -15px;
  margin-top: -100px;
}

.section-title_right {
  font-size: 179px;
  font-weight: bold;
  color: #004086;
  margin-bottom: -80px;
  text-align: right;
  margin-top: -100px;
}

.recruit .section-title {
  color: #004086;
  /* RECRUITカラー */
}

.works .section-title {
  color: #004086;
  /* WORKSカラー */
}

.section-lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #004086;
}

.section-lead_center {
  font-size: 24px;
  font-weight: bold;
  color: #004086;
  text-align: center;
  margin-bottom: 50px;
}

.section-lead_title {
  display: block;
  /* ←ブロック化する */
  font-size: 30px;
  font-weight: bold;
  margin-bottom: -28px;
  color: #004086;
  text-align: center;
}


.viewmore {
  text-align: right;
  margin-top: 1em;
  /* 必要に応じて余白を調整 */
}

.viewmore img {
  width: 260px;
  height: auto;
  align: right;
  margin-top: 50px;
  margin-left: 530px;
}

.viewmore_2 img {
  width: 260px;
  height: auto;
  align: right;
  margin-top: -110px;
  margin-left: 1180px;
}

.viewmore_left {
  text-align: left;
  margin-top: 1em;
  /* 必要に応じて余白を調整 */
}

.viewmore_left img {
  width: 265px;
  height: auto;
  align: left;
  margin-top: 140px;
}

/* PCでは非表示（スマホだけ表示） */
.sp-photo-only {
  display: none !important;
}

/* ========== 社内環境 ========== */
.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "hero hero"
    "left right";
  gap: var(--gap);
}

/* 画像の共通スタイル */
.env-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.env-hero {
  grid-area: hero;
}

.env-left {
  grid-area: left;
}

.env-right {
  grid-area: right;
}

/* ===== 使用業務ツール ===== */
.tools {
  max-width: 1480px;
  /* 全体は1480px以内 */
  margin: 0 auto;
  padding: clamp(12px, 3vw, 24px);
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.tools-h2 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 0 0 12px;
  color: #0b1d3b;
  font-weight: 700;
}

/* ===== 各ボックス（薄グレーの帯） ===== */
.tools-box {
  background: #e9e9eb;
  padding-bottom: 50px;
  margin-bottom: clamp(14px, 2vw, 18px);
}

/* ===== ロゴのグリッド ===== */
.tools-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  column-gap: 140px;
  max-width: 600px;
  margin-left: 170px;
}

/* ===== 会社概要===== */
.title_aboutus {
  font-size: 20px;
  font-weight: 700;
  color: #004993;
  padding-left: 20px;
  position: relative;
  margin: 0 0 14px 0;
  margin-bottom: 40px;
  margin-top: 100px;
}

/* ■ 左の青い四角 */
.title_aboutus::before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #004993;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 下の青いライン（■の下まで伸ばす） */
.title_aboutus::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  /* ■を含めた全体幅にラインを敷く */
  height: 3px;
  background-color: #004993;
}

:root {
  --main-color: #65c4e7;
  --sub1-color: #c9c9c9;
  --sub2-color: #e1e1e1;
}

.container_1,
.container_2,
.container_3,
.container_5,
.container_7,
.container_8,
.container_9 {
  display: flex;
  position: relative;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
  margin: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}

.column-right {
  position: static;
  text-align: left;
  margin-left: 410px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 1.8;
}

.column-left {
  position: absolute;
  left: 20px;
  text-align: left;
  color: #004086;
  font-weight: bold;
  vertical-align: top;
  font-size: 18px;
  margin-left: 20px;
}

.line_1 {
  display: flex;
  width: 100%;
  height: 2px;
}

.blue-line {
  width: 356px;
  /* 青い部分の長さを指定（例：80px） */
  background: #004086;
}

.gray-line {
  flex: 1;
  /* 残り全部をグレーにする */
  background: #ccc;
}

hr.hr-table {
  background: linear-gradient(to right, var(--main-color), 250px, var(--main-color), 250px, var(--sub2-color));
  height: 3px;
  border: none !important;
}

.banner-box {
  display: flex;
  /* 横並び */
  align-items: top;
  /* 縦位置を中央揃え */
  gap: 12px;
  /* 画像とリンクの間隔 */
  margin: 50px 0;
}

.banner-img {
  border: 1px solid #ccc;
  /* グレー枠線 */
  display: block;
  max-width: 840px;
  /* 必要に応じてサイズ調整 */
  height: auto;
}

/* 事業内容 */
.business {
  margin-top: 100px;
  position: relative;
  margin-bottom: 100px;
}

.business-title {
  font-size: 24px;
  font-weight: bold;
  color: #004086;
  margin-bottom: 65px;
}

.business-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.6;
  border-top: none;
  /* 上の罫線を消す */
  border-left: none;
  border-right: none;
}

.business-table th {
  width: 30%;
  padding: 12px;
  text-align: left;
  color: #004086;
  font-weight: 700;
  border-bottom: 2px solid #004086;
  background-color: #fff;
  border-left: none;
  border-right: none;
}

.business-table td {
  padding: 18px;
  border: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #004086;
  background-color: #fff;
}

/* 行頭の青い四角（■）を実現 */
.business-table th::before {
  content: "■";
  color: #004086;
  margin-right: 8px;
  font-size: 18px;
}

.business-table tr:first-child th,
.business-table tr:first-child td {
  border-top: 1px solid #fff;
  /* 白にして見えなくする */
  background: #fff;
}

.business-table tr:nth-child(even) td {
  background-color: #fff;
}

.business-table th,
.business-table td {
  border-left: none;
  border-right: none;
}

/* ========== Access ========== */
.access {
  margin-bottom: 220px;
}

.access-title {
  font-size: 22px;
  font-weight: 700;
  color: #004086;
  margin-bottom: 16px;
}

/* マップを16:9でレスポンシブに */
.map-embed {
  aspect-ratio: 16 / 9;
  background: #f2f4f8;
  border: 1px solid #e2e6ee;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 画像2カラム */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 20px;
}

.access-fig {
  position: relative;
  margin: 0;
}

.access-fig img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e2e6ee;
  border-radius: 4px;
}

.access-fig figcaption {
  font-size: 18px;
  padding: 4px 8px;
  font-weight: bold;
}

/* 住所・リスト */
.access-addr {
  font-style: normal;
  line-height: 1.9;
  margin: 8px 0 16px;
}

.access-list {
  line-height: 1.9;
}

.access-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 6px;
  color: #0f1a2a;
}

.icon {
  width: 35px;
  height: 35px;
  display: inline-block;
}

/* ========== AIサイネージ ========== */
#AIsg_wrapper,
#page_AISg {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #111;
}

#AIsg_wrapper img,
#page_AISg img {
  max-width: 100%;
  height: auto;
  display: block;
}

#AIsg_wrapper a {
  text-decoration: none;
  color: inherit;
}

/* アクセシビリティ：視覚的非表示（スクリーンリーダー用） */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 1px 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------
  このページ専用の背景固定のiOS対策（必要なら）
  iOSでfixedがカクつく場合は解除
--------------------------------*/
/*
@supports (-webkit-overflow-scrolling: touch) {
  #page_AISg.content_wrapper_AIsg { background-attachment: scroll; }
}
*/
/* 動き弱め設定の端末へ配慮 */
@media (prefers-reduced-motion: reduce) {

  #page_AISg .buttonAI::before,
  #page_AISg .buttonAI::after {
    transition: none;
  }
}

/* ------------------------------
  ヒーロー（上部ビジュアル）
--------------------------------*/
#page_AISg.content_wrapper_AIsg {
  /* 背景画像はHTMLのinline styleで指定済み。
     ここでは位置・サイズだけ念のため定義を補強 */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 420px;
}

#page_AISg .AIsg_copy_group {
  width: min(840px, 92%);
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .7);
}

#page_AISg .page_title_sub_AIsg {
  padding: 160px 0 100px;
}

#page_AISg .AIsig_copy {
  font-family: "Yu Mincho", "Hiragino Mincho Pro", serif;
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

#page_AISg .AIsig_copy2 {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 700;
}

/* ページ内リンク（特徴/導入事例/お問い合わせ） */
#page_AISg .contentpage_link {
  text-align: center;
  padding: 0 16px 40px;
}

#page_AISg .buttonAI {
  display: inline-block;
  min-width: 200px;
  padding: .1em 1em;
  margin: 0 6px 16px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .7);
  transition: .3s ease;
}

#page_AISg .buttonAI:hover {
  background: #fff;
  color: #000;
  text-shadow: none;
}

/* ------------------------------
  メインラッパー＆共通幅
--------------------------------*/
#AIsg_wrapper.content_wrapper {
  background: #000 url(../img/back-1024x582.png) center repeat-y !important;
  background-size: 2500px !important;
}

#AIsg_wrapper .page_contentAIsig,
#AIsg_wrapper .AISg_block {
  width: min(1080px, 92%);
  margin: 0 auto;
  background: #fff;
}

/* セクション見出し画像と余白 */
#AIsg_wrapper .AIsg_title {
  padding: 54px 10px 0;
}

#AIsg_wrapper .AIsg_title_2 {
  padding: 12px 0 0;
}

#AIsg_wrapper .AIsg_img {
  margin-top: 50px;
}

/* 本文テキスト */
#AIsg_wrapper p.AIsg,
#AIsg_wrapper p.AIsg2 {
  margin: 0 auto;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  line-height: 1.8;
  font-size: 16px;
  margin-left: -480px;
}


#AIsg_wrapper p.AIsg {
  padding-top: 10px;
  padding-bottom: 90px;
  width: 1010px;
}

#AIsg_wrapper .AIsg strong,
#AIsg_wrapper .AIsg2 strong {
  font-weight: 700;
}

/* ------------------------------
  導入事例ブロック
--------------------------------*/
#AIsg_wrapper .container_AI {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#AIsg_wrapper .content_AI_01 {
  max-width: 1050px;
  margin: 0 auto;
}

#AIsg_wrapper .row {
  display: flex;
  /* gap: 20px; */
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: 0px;
}

#AIsg_wrapper .row .image_AI_01,
#AIsg_wrapper .row>img {
  width: 496px;
  max-width: 100%;
}

#AIsg_wrapper .image_AI_02 {
  width: 1030px;
  margin-bottom: 20px;
}

#AIsg_wrapper .text_01 {
  max-width: 55%;
}

#AIsg_wrapper .text_01 p {
  margin: 0 0 10px;
  line-height: 1.8;
}

#AIsg_wrapper .text_01 ul {
  margin: 6px 0 16px 1.2em;
  padding: 0;
}

#AIsg_wrapper .text_01 li {
  list-style: disc;
  margin: .2em 0;
}

/* ------------------------------
  お問い合わせ（上部/下部）
--------------------------------*/
#AIsg_wrapper #AIsg_wrapper {
  width: min(960px, 92%);
  margin: 0 auto;
  text-align: center;
  padding-top: 130px;
  height: 550px;
  font-weight: 700;
  background-repeat: no-repeat;
}

#AIsg_wrapper .AIsg_toiawase {
  color: #fff;
  background-color: #fff;
  /* 画像の透明領域向けのベース */
  background-image: url(https://www.logos.co.jp/wp/wp-content/uploads/2024/12/Group-545.png);
}

/* お問い合わせブロックの幅を他と同じにする */
#AIsg_wrapper .AIsg_toiawase,
#AIsg_wrapper .AIsg_toiawase2 {
  width: min(1080px, 92%) !important;
  /* 他セクションと同じ幅 */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-size: cover;
  /* 斜め背景が途切れないように */
  background-position: center;
}

#AIsg_wrapper .AIsg_toiawase2 {
  color: #111;
}

#AIsg_wrapper .contact_01 {
  padding-top: 115px;
}

#AIsg_wrapper .toiawase {
  font-size: 30px;
  font-weight: 700;
  display: inline;
  margin-bottom: 15px;
}

#AIsg_wrapper .toiawase2 {
  font-size: 25px;
  font-weight: 700;
  display: inline;
}

/* ボタン風リンク（電話 / フォーム） */
#AIsg_wrapper .contact-item,
#AIsg_wrapper .contact-itemb,
#AIsg_wrapper .contact-item_1,
#AIsg_wrapper .contact-item_1b {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 418px;
  max-width: 92%;
  margin: 0 auto 15px;
  padding: 10px;
  border: 3px solid currentColor;
  background: transparent;
}

#AIsg_wrapper .contact-item,
/* 上部(白枠) */
#AIsg_wrapper .contact-item_1 {
  color: #fff;
  border-color: #fff;
}

#AIsg_wrapper .contact-itemb,
/* 下部(黒枠) */
#AIsg_wrapper .contact-item_1b {
  color: #111;
  border-color: #111;
}

#AIsg_wrapper .contact-item span,
#AIsg_wrapper .contact-itemb span {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
}

#AIsg_wrapper .contact-item_1 a,
#AIsg_wrapper .contact-item_1b a {
  font-size: 36px;
  font-weight: 700;
}

/* === AIサイネージの画像を白帯いっぱいに広げる・右の空きを解消 === */
/* セクションの白帯は左右パディング無し（画像が端までくるように） */
#AIsg_wrapper .page_contentAIsig,
#AIsg_wrapper .AISg_block {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* タイトル画像/見出し画像/本文中の一枚画像を枠幅いっぱいに */
#AIsg_wrapper .AIsg_title_2 img,
#AIsg_wrapper .AIsg_img img {
  width: 100% !important;
  /* ← ここがポイント */
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* 見出しボックス自体の左右余白もゼロに（微妙なズレ防止） */
#AIsg_wrapper .AIsg_img {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#AIsg_wrapper .AIsg_title,
#AIsg_wrapper .AIsg_title_2 {
  padding-left: 20px !important;
  padding-right: 0 !important;
}

/* 本文 */
.site-txt_aisg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  padding: 0 10px !important;
  margin-left: 10px;
}

/* セクション間の黒いスキマを解消して白で埋める */
#AIsg_wrapper .page_contentAIsig,
#AIsg_wrapper .AISg_block {
  background: #fff;
  padding-bottom: 32px;
  /* 背景を margin より優先させる */
  display: flow-root;
  /* (= BFC) で margin のはみ出し防止。overflow:hidden でも可 */
}

/* 各セクションの最後の要素の余白はゼロにする（保険） */
#AIsg_wrapper .page_contentAIsig>*:last-child,
#AIsg_wrapper .AISg_block>*:last-child {
  margin-bottom: 0;
}

/* お問い合わせ（上部） 背景が全部見えるように高さ確保 */
#AIsg_wrapper .AIsg_toiawase {
  /* 背景の描画 */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  /* 横幅にフィットさせ、画像全体を見せる */
  background-color: #fff;
  /* 高さを出して下の黒い隙間を解消 */
  min-height: 660px;
  /* 足りなければ 600px などに微調整 */
  padding: 28px 16px 140px;
  /* 下を多めに（斜め帯の末端が切れないように） */
  margin-bottom: 0;
  margin-top: -10px;
}

/* 次の白帯（導入事例）との間の余白をゼロに */
#AIsg_wrapper .AIsg_toiawase+.AISg_block {
  margin-top: 0;
}

/* お問い合わせ見出しを中央に */
#AIsg_wrapper .contact_01 {
  display: flex;
  justify-content: center;
  /* 横方向センター */
  align-items: baseline;
  /* フォントサイズ違いのベースラインを揃える */
  gap: .4em;
  /* 「お問い合わせ」と「はこちら」の間隔 */
  text-align: center;
}

/* 下部「お問い合わせ」セクションの背景を白に */
#AIsg_wrapper .AIsg_toiawase2 {
  background-color: #fff !important;
  /* 透け防止 */
  color: #111;
  padding-bottom: 100px;
  /* 文字は黒 */
}

#section3 .contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 横方向センター */
}

#section3 .contact-cta .cta-phone {
  margin-bottom: 20px;
  /* 電話ボタンの下に余白 */
}

#section3 .contact-cta a img {
  display: block;
  /* 行の隙間防止 */
}

/* 事業内容 | WEBサイト制作 */
:root {
  --c-blue: #0b4a86;
  --g-left: #12d1c3;
  --g-right: #0b4a86;
}

/* 制作の流れ　ここから */
.flow-wrap {
  display: inline-block;
  text-align: center;
  position: relative;
}

.free-label {
  background-color: #f59f00;
  /* オレンジ */
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  margin-top: 10px;
  display: inline-block;
  width: 560px;
  text-align: center;
}
/* ====== メニュー名　制作実績　ここから====== */
:root {
  --works-blue: #004086;
  /* ボタンと見出しの青 */
}

.works-container {
  max-width: 1480px;
  text-align: center;
  margin-bottom: 150px;
}

.works-heading {
  font-weight: 900;
  color: var(--works-blue);
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 24px 0;
}

/* ====== 制作実績　ここから====== */
.seisaku {
  max-width: 1480px;
  margin: 0 auto;
}

.seisaku__heading {
  font-size: 36px;
  font-weight: 800;
  color: #0b4c8a;
  margin: 0 0 18px;
}


/* 青ラベル */
.results-label {
  position: relative;
  background: #004086;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 18px 26px;
  font-weight: 700;
  font-size: 16px;
}

.results-label::after {
  content: "";
  position: absolute;
  right: -44px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 44px solid #004086;
}

.results-label>span {
  position: relative;
  z-index: 1;
}

/* 右カラム：画像 */
.system-right {
  flex: 1 1 42%;
  min-width: 300px;
}

.system-right img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 60px;
}

/* ====== 制作実績コンテンツ====== */
#top_img {
  text-align: center;
  /* h1 の中身を中央寄せ */
}

#top_img img {
  display: block;
  /* インラインだと余白が出るので block に */
  margin: 0 auto;
  /* 左右を自動で中央揃え */
}

.appbox2 {
  text-align: left;
  /* テキストを中央に */
}

.appbox2 img {
  display: block;
  /* ブロック化（推奨） */
  margin: 0 auto;
  /* 左右中央寄せ */
}

/* ====== 制作実績コンテンツ====== */
/* ====== 制作実績　ここまで====== */
/* ====== 開発フロー_1 / システム提案　ここから====== */
/* --- 開発フロー_1 / システム提案：説明文をノーマルに強制 --- */
section#flow1 .flow1__desc,
#flow1 .flow1__desc,
.flow1 .flow1__desc,
.flow1__text .flow1__desc,
body #flow1 .flow1__desc {
  font-weight: 400 !important;
  font-style: normal !important;
  font-family: "Noto Sans JP", sans-serif !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.flow1 {
  position: relative;
  background: url("img/kaihatuflow_1.png") no-repeat center top;
  height: 820px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 100px;
}

/* 上部テキスト */
.flow1__wrap {
  width: 100%;
  text-align: left;
  margin-top: -10px;
  padding-left: 350px;
  /* 左寄せ位置調整 */
}

.flow1__title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

/* 白いボックス */
.flow1__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  /* ← 念のため追加 */
  z-index: 1;
}

.flow5_4__card {
  width: 1170px !important;
  max-width: none !important;
  padding: 48px 64px;
  margin: 80px auto 0;
  background: #fff;
  border: 5px solid #99B9DB;
  box-sizing: border-box;
}

.flow1_3__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  z-index: 1;
  height: 490px;
}

.flow2_1__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  /* ← 念のため追加 */
  z-index: 1;
  height: 900px;
}

.flow2_2__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  /* ← 念のため追加 */
  z-index: 1;
  height: 650px;
}

.flow2_6__card,
.flow3_4__card,
.flow5_5__card,
.flow4_2__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  overflow: visible;
  z-index: 1 !important;
  height: 480px;
}

.flow2_4__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  overflow: visible;
  z-index: 1 !important;
  height: 510px;
}

.flow3_1__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  z-index: 1;
  height: 670px;
}

.flow3_2__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  z-index: 1;
  height: 720px;
}

.flow3_3__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  z-index: 1;
  height: 610px;
}

.flow4_1__card {
  position: relative;
  max-width: 1180px;
  background: #fff;
  color: #1a2a3a;
  border: 5px solid #99B9DB;
  padding: 48px 64px;
  margin: 80px auto 0;
  position: relative;
  overflow: visible;
  z-index: height;
  height: 580px;
}

/* 内部レイアウト */
/* 通常のカードと逆順カード両方に適用 */
.flow-wrap_sp {
  display: none;
  /* 初期状態：非表示 */
}

.flow1__card-body,
.flow1__card-body--reverse {
  display: flex;
  /* 横並び */
  align-items: flex-start;
  /* 上端に揃える */
  gap: 20px;
  /* テキストと画像の間隔 */
}

/* テキスト部分の幅調整（必要に応じて） */
.flow1__card-text {
  flex: 1;
  /* 画像に合わせてテキスト幅を自動調整 */
}

/* 番号＋タイトルを横並びに */
.flow1__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.flow1__card-no {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.flow1__card-title {
  font-size: 1.6rem;
  color: #004086;
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: -10px;
}

.flow1__card-text p {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 400;
  color: #163152;
}

.flow1__card-figure img {
  height: auto;
  display: block;
  transform: scale(1.2);
}

/* 下の矢印 */
.flow1__next {
  position: absolute;
  left: 50%;
  bottom: -80px;
  /* 下に飛び出す位置（画像サイズに応じて調整） */
  transform: translateX(-50%);
  z-index: 10;
  /* ← 最前面に表示 */
}

.flow1_2__next {
  position: absolute;
  left: 50%;
  bottom: 610px;
  transform: translateX(-50%);
  z-index: 10;
}

.flow1__desc {
  max-width: 1000px;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 400 !important;
  font-style: normal !important;
  color: #fff !important;
  text-shadow: none !important;
}

.flow1__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.flow1__card-body--reverse {
  flex-direction: row-reverse;
}

.flow1__card-text {
  height: 450px;
}

/* 01ブロックの背景画像 */
.flow1 {
  background-image: url('../img/kaihatuflow_1.png');
  background-size: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  padding: 20px;
}

/* --- 開発フロー_2 / システム設計 --- */
.flow2 {
  position: relative;
  background: url("../img/kaihatuflow_2.png") no-repeat center top;
  /* flow2用背景 */
  background-size: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1260px;
  /* flow1との間に余白を追加 */
  padding-top: 100px;
  /* 内側余白でタイトルを背景の上に配置 */
  padding-bottom: 120px;
  /* 下のカードと矢印分の余白 */
  height: auto;
  /* ← 固定高さを解除（重なり防止） */
  z-index: 0;
}

.flow2__wrap {
  width: 95%;
  text-align: left;
  margin-top: -110px;
  padding-left: 350px;
}

.flow2__title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

/* --- 開発フロー_3 / プログラム製造・単体テストフロー --- */
.flow3 {
  position: relative;
  background: url("../img/kaihatuflow_3.png") no-repeat center top;
  /* flow2用背景 */
  background-size: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 70px;
  /* flow1との間に余白を追加 */
  padding-top: 100px;
  /* 内側余白でタイトルを背景の上に配置 */
  padding-bottom: 120px;
  /* 下のカードと矢印分の余白 */
  height: auto;
  /* ← 固定高さを解除（重なり防止） */
  z-index: 0;
  width: 1410px;
}

.flow3__wrap {
  width: 95%;
  text-align: left;
  margin-top: -110px;
  padding-left: 350px;
}

.flow3__title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

/* --- 開発フロー_4 / 結合テストフロー --- */
.flow4 {
  position: relative;
  background: url("../img/kaihatuflow_4.png") no-repeat center top;
  /* flow2用背景 */
  background-size: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 70px;
  /* flow1との間に余白を追加 */
  padding-top: 100px;
  /* 内側余白でタイトルを背景の上に配置 */
  padding-bottom: 120px;
  /* 下のカードと矢印分の余白 */
  height: auto;
  /* ← 固定高さを解除（重なり防止） */
  z-index: 0;
  width: 1410px;
}

.flow4__wrap {
  width: 95%;
  text-align: left;
  margin-top: -110px;
  padding-left: 350px;
}

.flow4__title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

/* --- 開発フロー_5 / 出荷判定・納品フロー --- */
.flow5 {
  position: relative;
  background: url("../img/kaihatuflow_5.png") no-repeat center top;
  /* flow2用背景 */
  background-size: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -70px;
  /* flow1との間に余白を追加 */
  padding-top: 100px;
  /* 内側余白でタイトルを背景の上に配置 */
  padding-bottom: 120px;
  /* 下のカードと矢印分の余白 */
  height: auto;
  /* ← 固定高さを解除（重なり防止） */
  z-index: 0;
}

.flow5__wrap {
  width: 95%;
  text-align: left;
  margin-top: -110px;
  padding-left: 350px;
}

.flow5__title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px;
}

:root {
  --tm-gap: 8px;
}

.topmenu-img {
  width: 100%;
  margin-bottom: 16px;
}

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

/* 説明文 */
.topmenu-desc {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}

.topmenu-desc li+li {
  margin-top: 4px;
}

/* ======  メニュー名　上部メニュー　ここまで====== */
/* 画像は横いっぱい、比率維持（高さをある程度揃えたい場合はaspect-ratioで統一も可） */
.topmenu-img {
  width: 100%;
  margin-bottom: 16px;
}

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

/* 見出し・説明 */
.topmenu-title {
  font-size: 32px;
  font-weight: 900;
  margin: 8px 0 12px;
  color: #004086;
}

.topmenu-desc {
  list-style: none;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}

.topmenu-desc li+li {
  margin-top: 4px;
}

/* 四角キープ＋準備 */
#page_AISg .buttonAI {
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow .2s ease, background .2s ease, color .2s ease;
}

#page_AISg .buttonAI:hover,
#page_AISg .buttonAI:focus-visible {
  background: #fff;
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .20);
  outline: none;
}

/* ── メインの細い光（シャープ） ── */
#page_AISg .buttonAI::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -40%;
  width: 28%;
  /* 細めのライン */
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 0%, transparent 38%, rgba(255, 255, 255, .25) 44%, rgba(255, 255, 255, .95) 50%, rgba(255, 255, 255, .25) 56%, transparent 62%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1.05s cubic-bezier(.16, .99, .22, 1), opacity .2s ease;
}

#page_AISg .buttonAI:hover::before,
#page_AISg .buttonAI:focus-visible::before {
  transform: translateX(420%) skewX(-18deg);
  opacity: 1;
}

/* ── 後ろに薄い残光（やわらかい尾） ── */
#page_AISg .buttonAI::after {
  content: "";
  position: absolute;
  inset: -55% auto -55% -55%;
  width: 42%;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 0 40%, rgba(255, 255, 255, .15) 50%, transparent 60%);
  filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1.15s cubic-bezier(.16, .99, .22, 1), opacity .15s ease;
}

#page_AISg .buttonAI:hover::after,
#page_AISg .buttonAI:focus-visible::after {
  transform: translateX(430%) skewX(-18deg);
  opacity: .75;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.tools-grid figure {
  margin: 0;
  text-align: center;
}

.tools-grid img {
  display: block;
  width: auto;
  height: auto;
  max-width: 220px;
  /* 必要に応じて調整 */
  max-height: 58px;
  /* 見本の高さ感 */
}

.tools-grid figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* （任意）インナー幅の上限 */
.section.recruit .inner {
  max-width: 1465px;
  margin: 0 auto;
}

/* （任意）インナー幅の上限 */
.section.works .inner {
  max-width: 1465px;
  margin: 0 auto;
}

/* -----------------------------------------
   Works　開発実績　詳細ページ　使用スタイル
------------------------------------------*/
/* 全体の横幅管理 */
.content_wrapper {
  width: 100%;
  background-color: #fff;
}

/* タイトル部分 */
.page_title h2 {
  font-size: 60px;
  padding-top: 60px;
  text-align: center;
  color: #fff;
}

.page_title p {
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 30px;
}

/* ページ本文（レスポンシブ対応） */
.page_content {
  width: min(960px, 95%);
  margin: 0 auto;
}

.page_content h1.jisseki_title {
  color: #004086;
  text-align: center;
  font-size: 23px;
  padding-bottom: 5px;
  margin-bottom: 40px;
  border-bottom: 3px solid #004086;
}

.jisseki_icon {
  float: left;
  padding-right: 40px;
  margin: 20px 0 30px;
  width: 340px;
  /* img に width 指定があるため */
  border-radius: 5px;
  /* 必要なら */
}

/* ボタン（1つ目） */
.jisseki_bot_link {
  display: block;
  width: 350px;
  height: 40px;
  color: #fff;
  background: #004086;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: 380px;
  transition: opacity 0.3s ease;
}

.jisseki_bot_link:hover {
  opacity: 0.4;
}

/* ボタン（2つ目） */
.jisseki_bot_link_2 {
  display: block;
  width: 500px;
  height: 40px;
  color: #fff;
  background: #004086;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin: 20px auto 40px;
  transition: opacity 0.3s ease;
}

.jisseki_bot_link_2:hover {
  opacity: 0.4;
}

.jissekitop-img {
  float: left;
  margin: 20px 40px 30px 20px;
  border-radius: 5px;
}

/* 小見出し（下線） */
.page_content h4 {}

.page_content h2.jisseki_border {
  border-bottom: solid 2px #004086;
  font-size: 16px;
  /* h4 に合わせたサイズにする（必要あれば調整） */
  font-weight: 700;
  /* h4 と同じ太さにする */
  margin: 40px 0 20px;
}

.video_wrapper {
  width: 900px;
  margin: 20px auto;
}

.video_wrapper iframe {
  width: 100%;
  height: 500px;
  display: block;
}

/* PC（デフォルト）はそのまま表で表示 */
.responsive-table th {
  white-space: normal !important;
  word-break: keep-all;
}

h2.jisseki_border,
h4.jisseki_border {
  /* 元の下線デザインをそのままコピペ */
  border-bottom: 3px solid #1e4a8a;
  padding-bottom: 6px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* ===========================
   お名刺ちょうだいロボ
=========================== */
.new_content h3 {
  background-color: #00c0ff;
  margin: 5px 10px;
  border-radius: 50px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  line-height: 45px;
  text-align: center;
}

.pdflink {
  display: block;
  /* inline-block → block に変更 */
  width: fit-content;
  /* 要素の幅を中身だけにする */
  margin: 20px auto 0;
  /* 左右autoで中央寄せ */
  padding: 10px 95px;
  background: #06418e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

#lpmenu {
  text-align: center;
  /* 親レベルで中央寄せ */
}

#lpmenu ul {
  display: inline-flex;
  /* 要素自体を中央寄せしやすくする */
  justify-content: center;
  /* 中の li を中央寄せ */
  gap: 20px;
  /* 項目間の余白 */
  list-style: none;
  padding: 0;
  margin: 0;
  color: #06418e;
  font-weight: bold;
}

#lpmenu ul li a {
  text-decoration: none;
}

.new_content {
  width: 50%;
  height: 420px;
  margin: 20px;
  float: left;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

.new_content img {
  display: block;
  margin: 0 auto;
}

.new_content p {
  text-align: left;
  margin: 10px 30px;
}

#about_content {
  background-color: #eee;
  padding-bottom: 50px;
}

/* =========================================================
   PDF ボタン中央寄せ
========================================================= */
.pdflink {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  padding: 10px 95px;
  background: #06418e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* =========================================================
   appbox（アイコン + 説明）中央寄せ
========================================================= */
.appbox {
  width: 100%;
  margin: 0 auto;
}

.apptext {
  text-align: center;
}

.apptext img {
  display: block;
  margin: 0 auto 20px;
}

/* =========================================================
   YouTube iframe レスポンシブ
========================================================= */
.video_wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================================
   名刺交換台（画像中央寄せ）
========================================================= */
#meishi_daiimg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* -------------------------------
   レイアウト系
------------------------------- */
.content_wrapper,
.page_content {
  width: 100%;
  background-color: #fff;
}

.lpcontent {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}

/* -------------------------------
   見出し h1 / jisseki_title
------------------------------- */
.jisseki_title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* -------------------------------
   jisseki_border（青ライン見出し）
------------------------------- */
.jisseki_border {
  font-size: 22px;
  font-weight: bold;
  color: #00428e;
  border-bottom: 3px solid #06418e;
  padding-bottom: 5px;
  margin: 40px 0 20px;
}

/* -------------------------------
   アイコン画像
------------------------------- */
.jisseki_icon {
  float: left;
  margin: 20px 40px 32px 20px;
  border-radius: 5px;
}

/* -------------------------------
   アプリボックス
------------------------------- */
.appbox {
  width: 500px;
  margin: 0 auto;
  /* ←中央寄せ（float:center の代わり） */
  float: none;
  /* ←float を無効化（必須） */
  text-align: center;
  /* テキスト・h4・p も中央寄せしたい場合 */
}

.apptext img {
  float: none;
  /* ←画像が左に寄っているので解除 */
  margin: 0 auto 20px;
  /* ←中央寄せ＋下に余白 */
  display: block;
  /* ←中央寄せするために必要 */
}

.apptext h4 {
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid #06418e;
}

.apptext p {
  margin-top: 10px;
  line-height: 1.6;
}

/* -------------------------------
   new_content（4つ並ぶ機能概要ボックス）
------------------------------- */
#new_content_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.new_content {
  width: 45%;
  margin-bottom: 40px;
}

.new_content h4 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #000;
}

.new_content img {
  display: block;
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}

.new_content p {
  line-height: 1.6;
}

/* -------------------------------
   名刺交換台の部分
------------------------------- */
#koukandai_box {
  width: 450px;
  margin: 0 auto;
}

.daishi_text {
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0;
}

.daishi_text span {
  font-weight: bold;
  font-size: 20px;
}

/* -------------------------------
   Q&A（accordion）
------------------------------- */
.qalist {
  list-style: none;
  margin-top: 30px;
}

.q_text {
  background: #06418e;
  color: #fff;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
}

.a_text {
  padding: 15px 20px;
  background: #f4f4f4;
  font-size: 15px;
  line-height: 1.7;
}

.qablank {
  height: 20px;
}

/* clearfix（float解除） */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------------
   お問い合わせテーブル
------------------------------ */
table.type {
  max-width: 400px;
  font-size: 12px;
}

table.type th,
table.type td {
  padding: 10px 20px;
  background-color: #efefef;
  line-height: 1.2;
}

/* 黄色ラベル */
table.type th.jisseki_box {
  background-color: #004086;
  color: #fff;
  width: 150px;
}

/* 黄色ラベル → 左側に小さい三角形 */
table.type th.jisseki_box:after {
  border-left-color: #fdc44f;
}

/* a タグは下線なし（テーマ共通）*/
a {
  text-decoration: none;
  color: inherit;
}

table.type2 {
  max-width: 100%;
  font-size: 12px;
}

table.type2 th,
table.type td {
  padding: 10px 20px;
  background-color: #efefef;
  line-height: 1.2;
}

table.type2 th.jisseki_box {
  background-color: #004086;
  color: #fff;
  width: 150px;
}

/* 黄色ラベル → 左側に小さい三角形 */
table.type2 th.jisseki_box:after {
  border-left-color: #fdc44f;
}

/* a タグは下線なし（テーマ共通）*/
a {
  text-decoration: none;
  color: inherit;
}

a.underlink {
  text-decoration: underline;
}

.story-list {
  width: 920px;
  list-style: disc;
  padding-left: 40px;
  margin-top: 30px;
  line-height: 2em;
}

.story-list li {
  width: 460px;
  /* 2カラム */
  float: left;
  padding: 0;
}

.story-list li:last-child {
  margin-bottom: 40px;
}

.two_column h5 {
  background-color: #004086;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.two_column {
  width: 460px;
  padding-left: 10px;
  padding-top: 20px;
  float: left;
}

/* PCでは改行を消す */
.sp-br {
  display: none;
}


/* ===========================================================================
  メディアクエリ
=========================================================================== */


/* =========================================================
   1024px 以下
========================================================= */
@media (max-width: 1024px) {
  .flow1__card-body {
    gap: 20px;
  }

  .flow1__card-title {
    font-size: 1.4rem;
  }

  .flow1__card-text p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   900px 以下
========================================================= */
@media (max-width: 900px) {

  .results-label::after {
    content: none;
  }

  .project-card {
    width: 100%;
  }

  #page_AISg .page_title_sub_AIsg {
    padding: 120px 0 60px;
  }

  #AIsg_wrapper .row {
    flex-direction: column;
  }

  #AIsg_wrapper .text_01 {
    max-width: 100%;
  }

  #AIsg_wrapper .contact-item,
  #AIsg_wrapper .contact-itemb,
  #AIsg_wrapper .contact-item_1,
  #AIsg_wrapper .contact-item_1b {
    /* width: 100%
706.547px
; */
  }

  #AIsg_wrapper p.AIsg,
  #AIsg_wrapper p.AIsg2 {
    padding-left: 0;
    padding-right: 0;
  }

  #AIsg_wrapper {
    --aisg-content-width: 100%;
  }

  #AIsg_wrapper p.AIsg,
  #AIsg_wrapper p.AIsg2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #AIsg_wrapper .AIsg_toiawase {
    min-height: 420px;
    padding-bottom: 90px;
    /* もし横に余白が出る場合は下の1行を有効化して cover に切替 */
    /* background-size: cover; */
  }

  .video_wrapper {
    width: 100%;
  }

  .video_wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 40px 44px;
  }
}

/* =========================================================
   768px ！！以上！！
========================================================= */
@media screen and (min-width: 768px) {
  .banner-box {
    display: block;
    align-items: top;
    gap: 12px;
    margin: 50px 0;
  }

  .system-right {
    flex: 1 1 42%;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    /* ← これで中央寄せ */
  }

  .site-txt_title {
    font-size: 40px;
    font-weight: 900;
    color: #004086;
  }

  .topmenu-desc {
    list-style: none;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: bold;
    text-align: left;
  }

  /* Facebook アイコン（画像のみ） */
  .sns-icon.fb img {
    display: block;
    width: 42px;
    height: auto;
    margin-left: 0px;
  }
}

/* =========================================================
   768px 以下
========================================================= */
@media screen and (max-width: 768px) {

  .viewmore_2 img {
    width: 265px !important;
    height: auto !important;
    align: left !important;
    margin-top: -30px !important;
    margin-left: 440px !important;
    margin-bottom: 60px !important;
  }

  .business-table th {
    width: 100%;
    padding: 12px;
    text-align: left;
    color: #004086;
    font-weight: 700;
    border-bottom: 0px !important;
    background-color: #fff;
    border-left: none;
    border-right: none;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 0px;
  }

  td {
    margin-left: 0;
    background-color: #fff;
  }

  .banner-img {
    border: 1px solid #ccc;
    display: block;
    width: 50%;
    height: auto;
  }

  .gray-line {
    flex: 1;
    background: #004086;
  }

  .column-right {
    position: static;
    text-align: left;
    margin-left: 40px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.8;
    margin-top: 50px;
  }

  .container_1 {
    flex-direction: column;
  }

  .column-left,
  .column-right {
    width: 100%;
  }

  .AIsg_toiawase2 {
    width: min(1080px, 100%) !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
  }

  #AIsg_wrapper .page_contentAIsig,
  #AIsg_wrapper .AISg_block {
    width: 100% !important;
    margin: 0 auto;
    background: #fff;
  }

  #AIsg_wrapper .AIsg_toiawase {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-color: #fff;
    min-height: 660px;
    padding: 28px 16px 140px;
    margin-bottom: 0;
  }

  #AIsg_wrapper .AIsg_toiawase,
  #AIsg_wrapper .AIsg_toiawase2 {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    padding-bottom: 60px;
  }

  #AIsg_wrapper .contact_01 {
    padding-top: 90px;
  }

  #AIsg_wrapper .content_AI_01 {
    width: 95% !important;
    margin: 0 auto;
  }

  #page_AISg.content_wrapper_AIsg {
    background-image: url(../img/AI_touch_img_768.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 670px;
    margin-top: -15px;
  }

  #page_AISg .AIsig_copy {
    font-family: "Yu Mincho", "Hiragino Mincho Pro", serif;
    color: #fff;
    font-size: 33px;
    line-height: 1.0;
    font-weight: 700;
    text-align: left;
    margin-top: -30px;
  }

  #page_AISg .AIsig_copy2 {
    display: inline-block;
    margin-top: 0px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
  }

  #page_AISg .contentpage_link {
    text-align: center;
    padding: 0 16px 10px;
    margin-top: 280px;
  }

  #page_AISg .buttonAI {
    display: inline-block;
    min-width: 220px;
    padding: .3em 1em;
    margin: 0 6px 16px;
    border: 2px solid #fff;
    font-size: 18px;
    color: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7);
    transition: .3s ease;
  }

  .viewmore_left img {
    width: 260px !important;
    height: auto !important;
    align: left !important;
    margin-top: 40px !important;
    margin-left: 460px !important;
  }

  .section.recruit .inner {
    max-width: 1465px;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: -100px;
  }


  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* 1列に */
  .tools-grid img {
    max-height: 64px;
  }

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

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

  .jisseki_icon {
    float: center;
    padding-right: 0px !important;
    margin: 0px 0 0px;
    width: 340px;
    /* img に width 指定があるため */
    border-radius: 5px;
    /* 必要なら */
  }

  .jisseki_bot_link {
    display: block;
    width: 350px;
    height: 40px;
    color: #fff;
    background: #004086;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    margin: 20px auto 40px;
    transition: opacity 0.3s ease;
  }

  #page_roborecvol1 {
    height: 180px;
    background-size: cover;
  }

  .page_title h2 {
    font-size: 36px;
    padding-top: 40px;
  }

  .page_content img {
    float: none !important;
    margin: 20px auto;
    display: block;
    width: 50% !important;
    height: auto;
  }

  .jisseki_bot_link,
  .jisseki_bot_link_2 {
    width: 90%;
    max-width: 350px;
  }

  /* タイトルなど中央寄せ */
  .section-lead_center {
    text-align: center;
  }

  /* flow1カード：縦並びに変更 */
  .flow1__card-body,
  .flow1__card-body--reverse {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  /* テキスト */
  .flow1__card-text {
    width: 100%;
  }

  /* 画像 */
  .flow1__card-figure {
    width: 100%;
    text-align: center;
  }

  /* カード間の矢印を縮小 */
  .flow1__next {
    width: 30px;
    margin: 10px auto;
    display: block;
  }

  /* flowの上部画像 */
  .flow-wrap img {
    width: 100%;
    height: auto;
  }

  /* 全体の余白 */
  .section,
  .flow1__wrap {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  /* 強調文字を少し小さく */
  .site-txt_strong {
    font-size: 1rem;
    font-weight: 600;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .flow2 {
    margin-top: 100px;
    padding: 60px 0;
    background-size: contain;
    background-position: center top;
  }

  .flow2__wrap {
    padding-left: 24px;
  }

  .flow3 {
    margin-top: 100px;
    padding: 60px 0;
    background-size: contain;
    background-position: center top;
  }

  .flow3__wrap {
    padding-left: 24px;
  }

  .flow1 {
    height: auto;
    background-position: center top;
    padding-bottom: 60px;
  }

  .flow1__wrap {
    padding-left: 24px;
    margin-top: 0;
  }

  .flow1__desc {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .flow1__card {
    max-width: 92%;
    padding: 24px 20px;
  }

  .flow1__card-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow1__card-no {
    width: 90px;
  }

  .flow1__card-title {
    font-size: 1.3rem;
  }

  .flow1__card-figure img {
    transform: none;
  }

  .flow1__next {
    width: 60px;
    bottom: -20px;
  }

  .env-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "left"
      "right";
  }

  .sp-photo-only {
    display: block;
    max-width: 710px;
    flex: 1 1 40%;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  }

  .banner-sp-img {
    display: block;
    width: auto;
    /* ← 元の大きさのまま */
    max-width: 100%;
    /* ← 画面からはみ出さない安全策 */
    margin: 0 auto;
  }

  .viewmore img {
    width: 260px;
    height: auto;
    align: right;
    margin-top: 50px;
    margin-left: 470px;
  }

  /* new_content：1カラム化 */
  .new_content {
    width: 100%;
    text-align: center;
  }

  /* メニュー縦並び */
  #lpmenu ul {
    flex-direction: column;
    align-items: center;
  }

  /* PDF ボタン縮小 */
  .pdflink {
    width: auto;
    padding: 10px 40px;
  }

  /* アイコンの余白調整 */
  .apptext img {
    margin: 0 auto 15px;
  }

  table.type2 {
    font-size: 14px;
    /* 小さい画面では少し読みやすく */
    border: none;
  }

  table.type2 th,
  table.type2 td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  table.type2 th.jisseki_box {
    width: 100%;
    border-radius: 5px 5px 0 0;
    /* 見栄え改善 */
  }

  /* th → td の後に並ぶので三角形は非表示 */
  table.type2 th.jisseki_box:after {
    display: none;
  }

  table.type2 tr {
    margin-bottom: 15px;
    /* 行同士の余白 */
    display: block;
  }

  .card-icon {
    margin-bottom: 8px;
    justify-content: flex-start;
    /* 左に寄せる */
  }

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

  .card-desc {
    font-size: 14px;
  }

  .contact-btn {
    /* display: block; */
    width: 100%;
    margin: 32px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  /* 画像＋ホバー演出 */
  .contact-btn img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform .4s ease, filter .4s ease;
  }

  /* 浮遊＋明るさ */
  .contact-btn:hover img {
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(0, 255, 255, .6));
    animation: floatY .6s ease-in-out infinite alternate;
  }

  /* 上下にゆらぐ */
  @keyframes floatY {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-6px);
    }
  }

  /* シャイン演出 */
  .contact-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .6) 50%, transparent 100%);
    transform: skewX(-20deg);
  }

  .contact-btn:hover::after {
    animation: shine .8s ease;
  }

  @keyframes shine {
    100% {
      left: 125%;
    }
  }

  .hero-bg {
    width: 100%;
    height: auto;
    /* ← これ必須！ */
    display: block;
    object-fit: cover;
    /* ← 必要なら */
  }

  .gnav ul {
    display: none
  }


  .banner-title {
    font-size: 22px;
  }

  .banner-sub {
    font-size: 14px;
  }

  /* ===============================
   レスポンシブ対応CSS
   =============================== */
  /* 基本調整 */
  body {
    font-size: 16px;
    line-height: 1.7;
  }

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

  /* flow1 全体のレイアウト */
  .flow1__card-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }

  .flow1__card-body--reverse {
    flex-direction: row-reverse;
  }

  .flow1__card-text {
    flex: 1;
  }

  .flow1__card-figure {
    flex: 1;
    text-align: center;
  }


  /* view more ボタン */
  .viewmore img {
    width: 260px;
    height: auto;
    margin-top: 0;
  }

  .banner-title_bot {
    font-size: 30px;
    line-height: 1.3;
    text-align: left;
    margin-top: 150px;
  }

  /* new_content：1カラム化 */
  .new_content {
    width: 100%;
    text-align: center;
  }

  /* メニュー縦並び */
  #lpmenu ul {
    flex-direction: column;
    align-items: center;
  }

  /* PDF ボタン縮小 */
  .pdflink {
    width: auto;
    padding: 10px 40px;
  }

  /* appbox アイコンの余白 */
  .apptext img {
    margin: 0 auto 15px;
  }

  table.responsive-table,
  table.responsive-table tbody,
  table.responsive-table tr,
  table.responsive-table th,
  table.responsive-table td {
    display: block;
    width: 100%;
  }

  table.responsive-table {
    border: none !important;
  }

  table.responsive-table tr {
    margin-bottom: 20px;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 10px;
  }

  table.responsive-table th {
    background: #004086;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
  }

  table.responsive-table td {
    border: none;
    padding: 15px;
    line-height: 1.6em;
    border-left: none !important;
  }

  /* スマホは1列なので適度に間隔を縮める（任意） */
  .tools-grid {
    gap: 16px;
    align-items: center;
    justify-items: center;
    margin-left: auto;
  }
}

/* =========================================================
   600px 以下
========================================================= */
@media (max-width: 600px) {
  .wrap {
    padding: 20px 16px
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #page_AISg .AIsig_copy {
    font-size: 18px;
  }

  #page_AISg .AIsig_copy2 {
    font-size: 18px;
  }

  #page_AISg .buttonAI {
    min-width: 160px;
    font-size: 16px;
  }

  #AIsg_wrapper .contact-item span,
  #AIsg_wrapper .contact-itemb span {
    font-size: 22px;
  }

  #AIsg_wrapper .contact-item_1 a,
  #AIsg_wrapper .contact-item_1b a {
    font-size: 26px;
  }
}

/* =========================================================
   480px ！！以上！！（スマホ小）
========================================================= */
@media (min-width: 480px) {
  .flow-wrap {
    display: block !important;
  }

  .flow-wrap_sp {
    display: none !important;
  }
}

/* =========================================================
   480px 以下（スマホ小）
========================================================= */
@media (max-width: 480px) {
  .flow-wrap {
    display: none !important;
  }

  .flow-wrap_sp {
    display: block !important;
  }
}

/* =========================================================
   375px 以下（スマホ小）
========================================================= */
@media (max-width: 375px) {

  .section_rinen {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 20px !important;
    margin-top: -120px;
  }

  .banner-box {
    display: block;
    align-items: top;
    gap: 12px;
    margin: 50px 0;
  }

  .title_aboutus {
    font-size: 20px;
    font-weight: 700;
    color: #004993;
    padding-left: 30px;
    position: relative;
    margin: 0 0 14px 0;
    margin-bottom: 40px;
    margin-top: 100px;
  }

  .banner-img {
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: auto;
  }

  .column-left {
    position: absolute;
    left: 20px;
    text-align: left;
    color: #004086;
    font-weight: bold;
    vertical-align: top;
    font-size: 18px;
    margin-left: -20px;
  }

  .column-right {
    position: static;
    text-align: left;
    margin-left: 0px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.8;
    margin-top: 50px;
  }

  .section_rinen {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: -120px;
    margin-top: -120px;
  }

  .section-lead_center {
    font-size: 20px;
    font-weight: bold;
    color: #004086;
    text-align: left;
    margin-bottom: 50px;
  }

  .section-lead_title {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: -28px;
    color: #004086;
    text-align: center;
  }

  #section3 .contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 59%;
  }

  .site-txt_aisg {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    padding: 0 0px !important;
    margin-left: 6px;
  }

  #AIsg_wrapper .contact_01 {
    padding-top: 155px;
    width: 330px;
  }

  #AIsg_wrapper img,
  #page_AISg img {
    max-width: 170%;
    height: auto;
    display: block;
  }

  #page_AISg .AIsig_copy2 {
    font-size: 30px;
    margin-top: -30px;
  }

  #page_AISg .buttonAI {
    min-width: 160px;
    font-size: 20px;
    width: 237px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-weight: bold;
  }

  #page_AISg .AIsig_copy {
    font-family: "Yu Mincho", "Hiragino Mincho Pro", serif;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    text-align: left;
    margin-top: -70px;
  }

  .works-container {
    max-width: 1480px;
    text-align: center;
    margin-bottom: 0px;
  }

  .contact-btn {
    width: 100%;
    /* ← これは絶対に 100% のまま */
    margin: 32px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .contact-btn img {
    max-width: 110%;
    height: auto;
    transition: transform .4s ease, filter .4s ease;
  }

  /* 内側のボタンを大きく見せる */
  .contact-btn a {
    max-width: 115% !important;
    display: inline-block;
    transform: scale(1.15);
    /* ← 115%に拡大、調整可 */
    transform-origin: center;
  }

  .system-right img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 0px;
  }
  .section,
  .flow1__wrap {
    width: 90%;
  }

  .topmenu-desc {
    list-style: none;
    font-size: 17px;
    line-height: 1.6;
    font-weight: bold;
  }

  .sp-br_sys {
    display: none;
  }

  .hero-bg {
    height: 372px;
    /* 高さを指定する場合 */
    background-size: cover;
    /* 縦横比を保ったまま全体をカバー */
    background-position: center;
    /* 中央に寄せる */
    background-repeat: no-repeat;
  }

  .viewmore img {
    width: 260px;
    height: auto;
    margin-top: -10px;
    margin-left: 60px;
    margin-bottom: 90px;
  }

  .banner-sub_top {
    font-size: 14px !important;
    text-align: left !important;
  }

  .section-lead {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 10px;
  }

  #AIsg_wrapper .contact_01 Specificity: (1, 1, 0) {
    padding-top: 55px !important;
  }
  .section-lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .flow1__wrap {
    margin-top: -70px !important;
  }

  .section.works {
    margin-top: -70px !important;
  }

  .section.recruit {
    margin-top: 120px !important;
  }

  .works .section-lead {
    text-align: left;
  }

  .viewmore_left img {
    width: 265px !important;
    height: auto !important;
    align: left !important;
    margin-top: 20px !important;
    margin-left: 70px !important;
    margin-bottom: 80px !important;
  }

  .viewmore_2 img {
    width: 265px !important;
    height: auto !important;
    align: left !important;
    margin-top: -30px !important;
    margin-left: 70px !important;
    margin-bottom: -60px !important;
  }

  .page_title h2 {
    font-size: 28px;
  }

  .lpcontent {
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
  }

  .new_content img {
    width: 100%;
    height: auto;
  }

  #lpmenu ul {
    gap: 10px;
  }

  .pdflink {
    padding: 10px 20px;
  }

  .new_content img {
    width: 100%;
    height: auto;
  }

  #lpmenu ul {
    gap: 10px;
  }

  .pdflink {
    padding: 10px 20px;
  }

  .two_column {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
    float: left;
  }
}
