@charset "UTF-8";

/* --- 1. 変数設定 --- */
:root {
  /* 変更：インダストリアル・ブルー（信頼・冷静・無骨） */
  --primary: #00509d;       /* 作業着のような深い青 */
  --primary-hover: #003f7d;
  --accent: #00a8cc;        /* 溶接の火花のようなシアン（差し色） */
  
  --dark: #0a0a0a;          /* 限りなく黒に近い */
  --gray: #1f1f1f;          /* アスファルト色 */
  --light-gray: #e0e0e0;    /* コンクリート色 */
  
  --text: #e0e0e0;          /* 基本文字色は白系（ダークモード基調） */
  --text-on-light: #111111;
  
  --font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: "Oswald", sans-serif; /* インパクトのある英語フォント */
  
  --container-width: 1200px;
  --header-height: 80px;
}

/* --- 2. リセット & 基本 --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--dark);
  font-family: var(--font-main);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { width: 100%; height: auto; vertical-align: bottom; }
ul { list-style: none; }

/* --- 3. 共通クラス --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.narrow { max-width: 800px; }

.bg-black { background: var(--dark); color: var(--text); }
.bg-gray { background: var(--gray); }
.bg-white { background: #fff; color: var(--text-on-light); }
.bg-blue { background: var(--primary); color: #fff; }

/* 見出しの装飾（インダストリアル） */
.section-title {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 10px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 40px;
  line-height: 1;
}

/* --- 4. ヘッダー --- */
.header {
  height: var(--header-height);
  position: fixed;
  width: 100%;
  background: rgba(10, 10, 10, 0.98); /* よりソリッドな黒に */
  z-index: 1000;
  top: 0; left: 0;
  border-bottom: 1px solid #222;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5); /* わずかに影を落とす */
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}

/* ロゴ調整 */
.header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.header-logo-img, .custom-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* ナビゲーション（洗練されたホバーエフェクトへ） */
.header-nav { margin-left: auto; margin-right: 40px; height: 100%; }
.header-nav ul { display: flex; gap: 40px; height: 100%; align-items: center; }

.header-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  position: relative;
  padding: 0 10px;
}

/* ホバー時に下から伸びる青いライン */
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nav .jp {
  font-size: 14px;
  font-weight: 900;
  color: #ccc;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  transition: 0.3s;
}
.header-nav .en {
  font-family: var(--font-en);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: 0.3s;
}

.header-nav a:hover .jp { color: #fff; }
.header-nav a:hover .en { color: var(--primary); }

/* PC用CTA（右端の2つのボタン） */
.header-cta { 
  display: flex;
  height: 100%; 
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden; /* スライドアニメーション用 */
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-btn .text {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  transition: 0.3s;
}
.cta-btn .sub {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.8;
  transition: 0.3s;
}

/* 募集要項ボタン（青ベース） */
.cta-btn.btn-recruit-pc {
  background: var(--primary);
  color: #fff;
}
.cta-btn.btn-recruit-pc .cta-bg {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--primary-hover); /* ホバーで暗い青がスライドしてくる */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.cta-btn.btn-recruit-pc:hover .cta-bg {
  transform: translateX(100%);
}

/* お問い合わせボタン（黒ベース） */
.cta-btn.btn-contact-pc {
  background: #111;
  color: #ccc;
  border-left: 1px solid #222;
}
.cta-btn.btn-contact-pc .text { color: #aaa; }
.cta-btn.btn-contact-pc:hover { background: #000; }
.cta-btn.btn-contact-pc:hover .text { color: #fff; }
.cta-btn.btn-contact-pc:hover .sub { color: var(--primary); }

.sp-cta-box { display: none; }
.hamburger { display: none; }

/* --- 5. ボタン --- */
.btn-solid {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 50px;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid var(--primary);
}
.btn-solid:hover { background: transparent; color: var(--primary); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 15px 50px;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--dark); }



/* --- 6. Footer --- */
.footer {
  padding-top: 80px;
  border-top: 5px solid var(--primary); /* 上部にキーカラーのライン */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

/* ロゴ・住所エリア */
.footer-text-logo {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.footer-address {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}

/* リンクエリア */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-link-col a {
  font-size: 15px;
  color: #ccc;
  font-weight: bold;
  position: relative;
}
.footer-link-col a:hover {
  color: var(--primary);
  padding-left: 10px; /* ホバーで右に動く */
}
.footer-link-col a::before {
  content: '>';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  color: var(--primary);
}
.footer-link-col a:hover::before {
  opacity: 1;
  left: -15px;
}

/* アクションエリア */
.footer-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.action-msg {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-cta-btn {
  width: 100%;
  text-align: center;
  max-width: 250px;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

/* コピーライト */
.footer-bottom {
  background: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  color: #666;
  border-top: 1px solid #222;
}










/* --- 7. スマホ対応 --- */
@media (max-width: 900px) {
  .header-cta, .header-nav { display: none; }
  .section-title { font-size: 2rem; border-left: 6px solid var(--primary); }
  .container { padding: 0 15px; }


  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .footer-links {
    justify-content: center;
    gap: 40px;
  }
  .footer-action {
    align-items: center;
    text-align: center;
  }
}