:root {
	--fz-xl: clamp(1.8rem, 5vw, 2.8rem);
	--fz-xl2: clamp(1.8rem, 4.5vw, 2.5rem);
	--fz-xl3: clamp(1.65rem, 4.3vw, 2.3rem);
  --fz-lg: clamp(1.6rem, 4.2vw, 2.15rem);
  --fz-md: clamp(1.3rem, 3.8vw, 1.8rem);
	--fz-mid: clamp(1.25rem, 3.5vw, 1.65rem);
	--fz-mid2: clamp(1.15rem, 3.2vw, 1.5rem);
  --fz-sm: clamp(1.1rem, 3.2vw, 1.4rem);

  --space-xl: clamp(56px, 7vw, 120px);
  --space-lg: clamp(40px, 5vw, 80px);
  --space-md: clamp(20px, 3vw, 32px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-xs: clamp(8px, 1.2vw, 12px);

}
/* =========================
   ページラッパー
========================= */
.l-page {
  padding-block: 60px;
}

/* バリエーション */
.l-page--none {
  padding-block: 0;
}
.l-page--narrow {
  padding-block: 40px;
}
.l-page--wide {
  padding-block: 80px;
}
/* =========================
   コンテナ（共通幅）
========================= */
.l-container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* 幅バリエーション */
.l-container--wide {
  width: min(100%, 1200px);
}
.l-container--bigwide {
  width: min(100%, 1500px);
}

.l-container--narrow {
  width: min(100%, 960px);
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::
	余白調整
   :::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.l-section-sm{
  padding-block: 48px;
}

.l-section{
  padding-block: 80px;
}

.l-section-lg{
  padding-block: 120px;
}
.l-section-fv{
  padding-top: 32px;
  padding-bottom: 56px;
}
.l-section-pageTitle{
  padding-bottom: 30px;
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::
　　背景色
   :::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.bg-linear_main{
	background: linear-gradient(180deg, #f7f9fc 0%, #fefefe 100%);
	box-shadow: 0 12px 16px -8px rgba(0, 0, 0, 0.08);
}
/* =========================
   セクション共通
========================= */
.jobSection {
	margin-top: var(--space-lg);
	margin-bottom: var(--space-lg);
}

.jobSection--fv {
  margin-top: 30px;
  padding-bottom: 0;
}

.jobSection--bg {
  background: #f7f9fc;
}

.jobSection--cta {
  padding: 10px 0;
  text-align: center;
}
.jobSection--fit {
  background: #f7f9fc;
}
.jobSection--plain {
  background: #ffffff;
}

.jobSection--soft {
  background: #f7f9fc;
}
.jobSection__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md);
	box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(29, 79, 145, 0.06);
}

/* =========================
   ページタイトル（共通）
========================= */
.c-pageTitle{
	width: 100%;
	margin-top: var(--space-md);
}

.c-pageTitle__lead{
	position: relative;
	margin: 0;
	font-family: "見出ゴMB31", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: #7a869a;
	padding-left: 26px;

}
.c-pageTitle__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #1d4f91;
  transform: translateY(-50%);
}
.c-pageTitle__main{
	margin-bottom: var(--space-sm);
	font-family: "ゴシックMB101 B", sans-serif;
/*
	font-size: clamp(1.8rem, 5vw, 2.8rem);
*/
	font-size: var(--fz-xl);
	font-weight: 700;
	line-height: 1.3;
	color: #595554;
	padding: 0 10px;
}
/* 動き系 */
.hoverUp { transition: .25s ease; }
.hoverUp:hover { transform: translateY(-3px); }

.hoverSlide { transition: .2s ease; }
.hoverSlide:hover { transform: translateX(4px); }

.fade { transition: opacity .2s ease; }
.fade:hover { opacity: 0.85; }

/* レイアウト系 */
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }

/* リンク共通スタイル */
.linkLine {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}

/* hover動き */
.linkSlide:hover {
  transform: translateX(4px);
  opacity: 0.85;
  border-color: transparent;
}

/* アイコン */
.linkIcon {
  margin-right: 6px;
  vertical-align: middle;
  transition: transform .2s ease;
}

.linkSlide:hover .linkIcon {
  transform: translateX(2px);
}


/* エントリーボタン 共通で使っている青いボタン*/
/* ボタン本体 */
.btn {
	position: relative;
  display: flex;
	justify-content: center;
  align-items: center;
	color: #fff;
  width: 100%;
  min-height: 78px;
/*
  padding: 16px 48px 16px 24px;
*/
  padding: 16px 48px 16px 12px;
  box-sizing: border-box;
	text-align: left;
  border-radius: 8px;
  text-decoration: none;
  line-height: 1.4;
  font-weight: bold;
/*
  transition: background-color .2s, transform .2s, box-shadow .2s;
*/
}
.btn__text{
  display: block;
	width: 100%;
	text-align: center;
	padding-right: 24px;
	box-sizing: border-box;
}
/* メインCTA（青） */
.btn--primary {
  border: 1px solid #6B7FEA;
  background-color: #6B7FEA;
  color: #fff;
  font-size: 1.15em;
  font-family: "見出ゴMB31", sans-serif;

  box-shadow: 0 4px 12px rgba(107,127,234,0.16);
}

.btn--primary:hover {
  background-color: #4C60C7;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(107,127,234,0.22);
}
.btn--primary--navy{
  border: 1px solid #1f5fa6;
  background-color: #1f5fa6;
  color: #fff;
}
.btn--primary--navy:hover {
  background-color: #3276c2;
}
/* アイコン */
.btn__icon {
	display: inline-block;
}
.btn__iconWrap{
  position: absolute;
  right: 16px;
  top: 50%;
  font-size: 0.95em;
  transform: translateY(-50%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.btn:hover .btn__iconWrap{
/*
  transform: translateY(-50%) translateX(6px) rotate(-90deg);
*/
  transform: translateY(-50%) rotate(-90deg);
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::
	 FVで使っている募集要項と応募ボタン 
	募集要項で使っている施工管理と鉄骨溶接のボタン
*/

.ctaBtns{
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
justify-content: center;
}

.ctaBtns__item{
  flex: 1;
}

.ctaBtns__link{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 56px 0 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;

  transition: all .3s ease;
}

.ctaBtns__text{
	text-align: center;
  flex: 1;
}

.ctaBtns__icon{
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease, color .3s ease;
	pointer-events: none;
}

/* ===== ベース（色なし状態） ===== */

.ctaBtns__link--outline{
  border: 1px solid;
  background: #fff;
}

.ctaBtns__link--primary{
  border: 1px solid;
}

/* ===== hover ===== */

.ctaBtns__link--outline:hover{
  background: #DFE8F7;
}

.ctaBtns__link--primary:hover{
  background: #DFE8F7;
  color: #595554;
}

.ctaBtns__link--primary:hover .ctaBtns__icon{
  background: #595554;
  color: #fff;
}

.ctaBtns__link:hover .ctaBtns__icon{
  transform: translateX(4px);
}

/* ===== テーマ：茶色 ===== */

.theme-brown .ctaBtns__link--primary{
  background: #595554;
  border-color: #595554;
  color: #fff;
}

.theme-brown .ctaBtns__link--outline{
  color: #595554;
  border-color: #595554;
}

.theme-brown .ctaBtns__icon{
  background: #595554;
  color: #fff;
}
.theme-brown .ctaBtns__item:last-child .ctaBtns__icon{
  background: #ffffff;
  color: #595554;
}

/* ===== テーマ：青 ===== */

.theme-blue .ctaBtns__link--primary{
  background: #667eea;
  border-color: #667eea;
  color: #fff;
}

.theme-blue .ctaBtns__link--outline{
  color: #667eea;
  border-color: #667eea;
}

.theme-blue .ctaBtns__icon{
  background: #667eea;
  color: #fff;
}
.theme-blue .ctaBtns__item:last-child .ctaBtns__icon{
  background: #ffffff;
  color: #667eea;
}

.theme-brown .ctaBtns__link--outline:hover{
  background: #DFE8F7;
}

.theme-brown .ctaBtns__link--primary:hover{
  background: #DFE8F7;
  border-color: #595554;
  color: #595554;
}
.theme-blue .ctaBtns__link--outline:hover{
  background: #DFE8F7;
}

.theme-blue .ctaBtns__link--primary:hover{
  background: #DFE8F7;
  border-color: #667eea;
  color: #667eea;
}
.theme-brown .ctaBtns__link--primary:hover .ctaBtns__icon{
  background: #595554;
  color: #fff;
}

.theme-blue .ctaBtns__link--primary:hover .ctaBtns__icon{
  background: #667eea;
  color: #fff;
}
/* ===== テーマ：ネイビー ===== */

.theme-navy .ctaBtns__link--primary{
  background: #1f5fa6;
  border-color: #1f5fa6;
  color: #fff;
}

.theme-navy .ctaBtns__link--outline{
  color: #1f5fa6;
  border-color: #1f5fa6;
}

.theme-navy .ctaBtns__icon{
  background: #1f5fa6;
  color: #fff;
}
.theme-navy .ctaBtns__item:last-child .ctaBtns__icon{
  background: #ffffff;
  color: #1f5fa6;
}
.theme-navy .ctaBtns__link--outline:hover{
  background: #1f5fa6;
  border-color: #1f5fa6;
  color: #fff;

}

.theme-navy .ctaBtns__link--primary:hover{
  background: #fff;
  border-color: #1f5fa6;
  color: #1f5fa6;
}
.theme-navy .ctaBtns__link--primary:hover .ctaBtns__icon{
  background: #1f5fa6;
  color: #fff;
}
.theme-navy .ctaBtns__link--outline:hover .ctaBtns__icon{
  background: #fff;
  color: #1f5fa6;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::
　　共通レイアウト
   :::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.mt-100{
	margin-top: 100px;
}
.mt-80{
	margin-top: 80px;
}
.mt-40{
	margin-top: 40px;
}
.mt-20{
	margin-top: 20px;
}
.mtb-40{
	margin: 40px 0;
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::
　　フォント
   :::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.text {
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: "見出ゴMB31";
}
.text-s{
	font-size: 0.98rem;
}
.text-xs{
	font-size: 0.85rem;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px){
	.ctaBtns{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .ctaBtns__item{
    flex: none;
    width: 100%;
    max-width: none;
  }

  .ctaBtns__link{
    width: 100%;
		box-sizing: border-box;
  }
  .l-container {
		box-sizing: border-box;
	 	margin: 0 auto;
		width: 100%;
    padding: 0 8px;
	}
	.l-page {
    padding-block: 56px;
  }

  .l-section {
    padding-block: 56px;
  }

  .l-section-sm {
    padding-block: 32px;
  }

  .l-section-lg {
    padding-block: 80px;
  }
	.c-pageTitle{
		padding:0;
	}
	.c-pageTitle__main{
		font-size: 1.5rem;
	}
}
@media screen and ( max-width:380px )
{
	.sp-only {
    display: inline;
  }

}
