:root {
  --color-bg: #f5f7fb;
  --color-white: #ffffff;
  --color-main: #0052cc;      /* 濃い青 */
  --color-main-light: #2f7cff;/* 明るめ青 */
  --color-accent: #36c9ff;    /* 水色アクセント */
  --color-text: #222222;
  --color-muted: #67728a;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 10px 30px rgba(15, 35, 95, 0.12);
  --max-width: 1400px;
  --header-height: 64px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: メイリオ, sans-serif;
  color: var(--color-text);
}
html, body {
  overflow-x: hidden;
}

/* ========== HEADER ========== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: #050b19;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 16px 0;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.logo img{
	width: 100%;
	margin-top: 4%;
}

.logo-text {
  font-size: 15px;
}

.global-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

.global-nav a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding-bottom: 2px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-main-light), var(--color-accent));
  transition: width var(--transition);
}

.global-nav a:hover::after {
  width: 100%;
}

.header-service-link {
    margin-left: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid #85deff;
    background: #36c9ff;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

.header-service-link:hover {
  background: rgba(47,124,255,0.12);
}

/* ハンバーガー */

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-main);
  border-radius: 999px;
}

/* バブル背景のベース */
.confetti-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.confetti-dots span {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: lighten; /* 重なっても濃くならない */
  pointer-events: none;
  animation: dotFloat infinite ease-in-out;
}

@keyframes dotFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-12px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}



/* ========== HERO ========== */

.hero {
  position: relative;
  padding: 96px 16px 64px;
  overflow: hidden;
	height: 1000px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 72px;
  line-height: 1.3;
  margin: 12px 0 16px;
}

.hero-tagline {
  font-size: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main-light);
}

.hero-lead {
  font-size: 24px;
  color: var(--color-muted);
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-visual {
  position: relative;
}

/* ========== SECTION 共通 ========== */

.section {
  padding: 80px 16px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-main-light);
  margin-bottom: 4px;

}

.section-title {
  font-size: 32px;
  margin-bottom: 8px;
  position: relative;
	color: #0065cc;
	display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* お好みで調整 */
  width: 100%;  /* ← テキスト幅と完全一致！ */
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-main), var(--color-accent));
}

.section-lead {
  font-size: 24px;
  color: #333;
  margin-top: 28px;
  margin-bottom: 28px;
  line-height: 1.9;
}

/* ========== MISSION ========== */

#mission{
	background: #f2faff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 5%;
}

.mission-item {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 6%;
  box-shadow: 0 8px 22px rgba(15, 35, 95, 0.04);
  border: 1px solid rgba(189,198,223,0.5);
}

.mission-item h3 {
    margin: 0 0 16px;
    font-size: 40px;
    color: var(--color-main);
    text-align: center;
}

.mission-item p {
  margin: 0;
  font-size: 20px;
  color: var(--color-muted);
}

/* ========== CARD 共通 / BUSINESS ========== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  display: block;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 6px 20px rgba(15,35,95,0.04);
  border: 1px solid rgba(189,198,223,0.5);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card h3 {
    margin: 4% 2%;
    font-size: 24px;
}

.card p {
    margin: 0;
    font-size: 18px;
    color: var(--color-muted);
}

/*.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15,35,95,0.12);
  border-color: rgba(54,201,255,0.9);
}*/
.business-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
  overflow: hidden;
}
.business-card .card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-main-light);
}

.card-link-disabled {
  color: #a0a8c0;
}

/* ========== QUALITY ========== */

.section-quality {
  position: relative;
  overflow: hidden;
  background:#f2faff;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 6%;
  margin-top: 5%;
}

.strength-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 8%;
}

.strength-item h3 {
  margin: 4% 2%;
  font-size: 24px;
	text-align: center;
}

.strength-item p {
    margin: 0;
    font-size: 18px;
    color: var(--color-muted);
    line-height: 32px;
}
.strength-item img {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 250px;
    object-fit: cover;
    overflow: hidden;
    margin: 0 auto;
}




/* ========== RECRUIT ========== */

.recruit-grid {
  margin-top: 5%;
	gap:5%;
}
.recruit-card{
	border-radius: 0 !important;
	border: none;
}


.recruit-card h3 {
    font-size: 24px;
    text-align: center;
    width: 50%;
    margin: 20px auto;
    background: #333;
    color: #fff;
    padding: 1%;
    opacity: 80%;
}

.recruit-cta-center {
  margin-top: 4%;
  text-align: center;
}

.sekou{
	background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),url("../images/recruit_01.webp");
	background-size: cover;
}
.sekou p{
	color: #333;
}
.eigyou{
	background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),url("../images/recruit_02.webp");
	background-size: cover;
}
.eigyou p{
	color: #333;
}
/* ========== NEWS ========== */

#news {
	background: #f2faff;
}

.news-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 24px;
}

.news-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(189,198,223,0.6);
}

.news-date {
  width: 150px;
  color: var(--color-muted);
}

.news-title {
  flex: 1;
  text-decoration: none;
  color: var(--color-text);
}

.news-title:hover {
  color: var(--color-main);
}

.news-more {
  margin-top: 12px;
  text-align: right;
  font-size: 18px;
}

.news-more a {
  color: var(--color-main-light);
}

/* ========== CONTACT ========== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.contact-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
}

.contact-box h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
}

.contact-tel {
  font-size: 24px;
  font-weight: 700;
}

.contact-note {
  font-size: 18px;
  color: var(--color-muted);
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 18px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition), border var(--transition);
}

.btn.primary {
    background: #0065cc;
    color: #fff;
    box-shadow: 0 3px 5px #aaa;
    padding: 1% 2%;
}

.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.outline {
  background: rgba(255,255,255,0.7);
  border-color: rgba(47,124,255,0.5);
  color: var(--color-main);
}

.btn.outline:hover {
  background: rgba(47,124,255,0.06);
}

/* ========== FOOTER ========== */

.site-footer {
  padding: 24px 16px 10px;
  background: #050b19;
  color: rgba(255,255,255,0.8);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    font-size: 18px;
}

.footer-col h3 {
  margin-top: 0;
  font-size: 24px;
}

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

.footer-col li {
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
	padding: 5%;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 50px auto 0;
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }
}



/* ヒーロー背景の動くオブジェクト */
.hero-bg-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(54,201,255,0.9), rgba(0,82,204,0.1));
  opacity: 0.45;
  filter: blur(1px);
  animation: float 18s ease-in-out infinite alternate;
}

.orbit-1 { width: 280px; height: 280px; top: -80px; left: -60px; }
.orbit-2 { width: 220px; height: 220px; bottom: -60px; right: -40px; animation-delay: 3s; }
.orbit-3 { width: 160px; height: 160px; top: 40%; left: 60%; animation-delay: 6s; }

@keyframes float {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(12px, -18px, 0); }
  100% { transform: translate3d(-10px, 14px, 0); }
}

/* セクションのフェードアップ */
.js-observe {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* スクロールインジケータ */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #7f8fb3;
}

.scroll-line {
  margin-top: 6px;
  width: 2px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(127,143,179,0.3);
  position: relative;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #36c9ff);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(36px); opacity: 0; }
}

/* ヒーロー内のデバイスカード */
.hero-device-card {
  /*position: relative;*/
  width: 100%;
  height: 260px;
  margin: 0 auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(13, 39, 80, 0.18);
  padding: 20px;
  /*overflow: hidden;*/
}

.hero-device-main {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  margin: 0 auto;
  background: linear-gradient(145deg, #f5f7fb, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(120,134,170,0.2);
}

.hero-device-sub {
  position: absolute;
  width: 64px;
  height: 96px;
  border-radius: 500px;
  /*background: linear-gradient(145deg, #e6f2ff, #ffffff);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.15);*/
  opacity: 0.9;
}

.hero-device-sub-1 {
	top: -280px; 
	left: -62px;
	width: 200px;
	height: 200px;
	background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)), url("../images/top_sbg1.webp");
	background-size: cover;
}
.hero-device-sub-2 {
    bottom: -550px;
    right: -180px;
    width: 200px;
    height: 200px;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)), url("../images/top_sbg2.webp");
    background-size: cover;
}
.hero-device-sub-3 {
    bottom: -744px;
    right: 1100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)),url("../images/top_sbg3.webp");
    background-size: cover;
}
.hero-device-sub-4 {
    bottom: 120px;
    right: -2px;
    width: 220px;
    height: 220px;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)), url("../images/top_sbg4.webp");
    background-size: cover;
}
.hero-device-sub-5 {
    bottom: -260px;
    right: 170px;
    width: 250px;
    height: 250px;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)), url("../images/top_sbg5.webp");
    background-size: cover;
}
.hero-device-sub-6 {
    bottom: -480px;
    right: 550px;
    width: 200px;
    height: 200px;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.4)), url("../images/top_sbg6.webp");
    background-size: cover;
}
.hero-device-text {
  margin-top: 18px;
  font-size: 12px;
  text-align: center;
  color: #67728a;
}


/* ======================================
   グローバルナビ（共通）
   ====================================== */

.global-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-nav ul li {
  position: relative;
}

.global-nav a {
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  display: block;
}

/* ======================================
   ▼ サブメニュー（初期は非表示）
   ====================================== */

.global-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 80;
    top: calc(var(--header-height) + 12px);
}

/* ======================================
   ▼ PC：フル幅ドロップダウン
   ====================================== */
@media (min-width: 769px) {

  /* li 自体は相対位置を外す（フル幅にするため） */
  .global-nav ul li {
    position: static;
  }

.global-nav .sub-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100vw;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    border-radius: 0;
	padding: 20px 0;
    top: calc(var(--header-height) + 32px); 
}

  /* PC：ホバー時に開く */
  .global-nav .has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* PCのサブメニューのリンク */
  .global-nav .sub-menu li a {
    color: #333;
    font-size: 20px;
    padding: 8px 0;
    white-space: nowrap;
  }

  .global-nav .sub-menu li a:hover {
    text-decoration: none;
  }
}

/* ======================================
   ▼ SP：ハンバーガー内（タップで展開）
   ====================================== */
@media (max-width: 768px) {

  /* ▼ を追加 */
  .global-nav .has-sub > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
  }

  /* SPでは縦積みで static 展開 */
  .global-nav .sub-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    padding: 6px 0 6px 16px;
    background: transparent;
    box-shadow: none;
    border: 0;
    display: block;
  }

  /* open で展開 */
  .global-nav .has-sub.open > .sub-menu {
    opacity: 1;
    visibility: visible;
  }

  .global-nav .sub-menu li a {
    color: #333;
    padding: 6px 0;
  }
	
.footer-inner {
    display: block;
}
.footer-col li {
    margin-bottom: 4%;
}
	
}




/* QUALITY セクションのバブル */
.quality-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 1px rgba(207,216,238,0.7);
  animation: bubbleUp 8s linear infinite;
}

.bubble-1 { width: 36px; height: 36px; left: 10%; bottom: -60px; animation-delay: 1s; }
.bubble-2 { width: 22px; height: 22px; left: 60%; bottom: -60px; animation-delay: 6s; }
.bubble-3 { width: 28px; height: 28px; right: 8%; bottom: -60px; animation-delay: 2s; }
.bubble-4 { width: 28px; height: 28px; right: 20%; bottom: -60px; animation-delay: 0s; }
.bubble-5 { width: 55px; height: 55px; right: 44%; bottom: -60px; animation-delay: 4s; }
.bubble-6 { width: 100px; height: 100px; right: 22%; bottom: -120px; animation-delay: 03s; }
.bubble-7 { width: 25px; height: 25px; right: 2%; bottom: -60px; animation-delay: 2s; }
.bubble-8 { width: 60px; height: 60px; right: 60%; bottom: -60px; animation-delay: 8s; }
.bubble-9 { width: 50px; height: 50px; right: 14%; bottom: -60px; animation-delay: 7s; }





@keyframes bubbleUp {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-260px); opacity: 0; }
}


/* BUSINESS セクションを 2列固定にする */
.business-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}






/* =========================================
   SP用ナビの表示制御（クリーン版）
   ========================================= */
@media (max-width: 768px) {
	
/*******TOP********/
.hero-inner {
    gap: 0px;
}
.hero-copy h1 {
    font-size: 34px;
    line-height: 1.3;
    margin: 18% 0;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    margin-top: 10%;
    /* text-align: center; */
    padding: 3%;
}

.hero-lead {
    font-size: 18px;
}
.section-title {
    font-size: 24px;
    margin-bottom: 8px;
    position: relative;
    color: #0065cc;
    display: inline-block;
}
	
.section-lead {
    font-size: 18px;
    color: #333;
    margin-top: 28px;
    margin-bottom: 28px;
    line-height: 1.9;
	padding: 16px;
	padding: 16px;
}
	
	
.hero-device-sub-1 {
	top: -175px; 
	left: -48px;
	width: 200px;
	height: 200px;
	z-index: -1;
}
.hero-device-sub-2 {
    bottom: -550px;
    right: -75px;
    width: 200px;
    height: 200px;
	z-index: -1;
}
.hero-device-sub-3 {
    bottom: -1050px;
    right: 80px;
    width: 400px;
    height: 400px;
	z-index: -1;
	
}
.hero-device-sub-4 {
    bottom: 120px;
    right: -2px;
    width: 220px;
    height: 220px;
	z-index: -1;
}
.hero-device-sub-5 {
	display: none;
}
.hero-device-sub-6 {
    bottom: -480px;
    right: 550px;
    width: 200px;
    height: 200px;
	z-index: -1;
}
	

/* QUALITY セクションの重なり順を最前面にして、要素がはみ出しても見えるようにする */
.section-quality {
  position: relative;
  z-index: 2;
  overflow: visible;
	padding-bottom: 250px;
}

/* バブル背景は一段奥に下げる（テキストより背面へ） */
.section-quality .quality-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 中身（カード）はさらに前面に */
.section-quality .section-inner {
  position: relative;
  z-index: 3;
}

.section-recruit {
  position: relative;
  z-index: 1;
}
	
.btn.primary {
    padding: 4% 8%;
}
.recruit-cta-center {
    margin-top: 20%;
}
.news-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    font-size: 18px;
}
.news-date {
    width: 120px;
    color: var(--color-muted);
}
.news-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(189,198,223,0.6);
}	
	
	
	
	
/*******TOP********/
	
	
.site-header {
	padding: 4px 0 ;
}
.section {
  padding: 20px 0px;
}
.btn.primary {
    padding: 1% 5%;
}
.btn {
    font-size: 16px;
}
	
	.logo img{
		width: 70%;
	}
	
	.footer-col .logo img{
		width: 100%;
		margin-bottom: 36px;
	}
	
	
	
  /* ハンバーガーを表示 */
  .nav-toggle {
    display: flex;
  }

  /* サービスサイトボタンはSPでは非表示 */
  .header-service-link {
    display: none;
  }

  /* ナビ本体：デフォルトは画面外に隠す */
  .global-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(249,250,251,0.98);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 40;
  }

  .global-nav ul {
    flex-direction: column;
    padding: 12px 16px 24px;
    gap: 12px;
	  background: #0065cc;
	  margin-top: 8px;
  }

  /* nav-open が付いたときだけ表示 */
  .site-header.nav-open .global-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
	background: #000;
  }
	
  .business-grid {
    grid-template-columns: 1fr !important;
  }
	.footer-copy{
		display: none;
	}
	
  /* QUALITY セクションを普通の縦並びブロックに戻す */
  .section-quality {
    position: relative !important;
    z-index: 1 !important;
    padding-top: 40px !important;
    padding-bottom: 60px !important;  /* 下にしっかり余白 */
    margin: 0 !important;
    overflow: visible !important;
  }

  /* QUALITY 内のレイアウト系指定をリセット */
  .section-quality .section-inner,
  .section-quality .strength-grid,
  .section-quality .strength-item {
    position: static !important;
    transform: none !important;
    margin: 0 auto 24px !important;
  }

  .section-quality .strength-grid {
    display: block !important;
  }

  /* RECRUIT 側のマイナス余白・重なりをリセット */
  .section-recruit,
  #recruit {
    position: relative !important;
    z-index: 0 !important;
    margin-top: 0 !important;
    padding-top: 40px !important;
  }
}

