@charset "UTF-8";
html{
  scroll-behavior: smooth;
}
/* ===== Loading ===== */
.loader{
  position: fixed;
  inset: 0;
  background: hsl(222, 70%, 29%);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 9999;
  opacity: 1;
  pointer-events: all;
  transition: opacity 520ms ease, visibility 0s linear 520ms;
  visibility: visible;
  min-height: 100vh;   /* 保険 */
  height: 100vh;       /* 既にあってもOK */
  height: 100dvh;      /* ← iPad含む最新ブラウザの「正しい表示高」 */
  height: -webkit-fill-available;
}
.loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner{
  width: min(520px, 86vw);
  display: grid;
  gap: 14px;
  justify-items: center;
  transition: transform 520ms ease, opacity 520ms ease;
  transform: translateY(0);
  opacity: 1;
}
.loader.is-hiding .loader__inner{
  transform: translateY(-10px);
  opacity: 0;
}
/* フェードイン担当（外側） */
.loader__logo{
  width: 140px;
  opacity: 0;
  animation: logoFadeUp 700ms ease forwards;
  animation-delay: 380ms;
}
/* ふわふわ担当（内側） */
.loader__logoFloat{
  animation: floatLogo 3s ease-in-out infinite;
  animation-delay: 1.2s; /* ロゴが出た後にふわっと開始 */
}
/* 白ロゴ化（imgのまま） */
.loader .loader__logoImg{
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.loader__logo img,
.loader__logoSvg{
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
/* 線が伸びる：A要素 */
.loader__line{
  width: 160px;;
  height: 1px;
  border-radius: 999px;
  background: #111;
  opacity: 0.6;
  animation: lineGrow 680ms ease forwards;
  animation-delay: 120ms;
  background: rgba(255,255,255,.55);
   margin: 0 auto;
}
/* 下のメタ表示（控えめに） */
.loader__meta{
  display: grid;
  justify-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-2px);
  animation: metaIn 600ms ease forwards;
  animation-delay: 760ms;
}
.loader__text{
  margin: 0;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #fff;
}
/* 点滅ドット */
.loader__dots{
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.loader__dots span{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  opacity: .25;
  transform: translateY(0);
  animation: dotPulse 900ms ease-in-out infinite;
}
.loader__dots span:nth-child(2){ animation-delay: 150ms; }
.loader__dots span:nth-child(3){ animation-delay: 300ms; }
.loader.is-hiding .loader__dots span{
  animation: none;
}
/* 初回のみローディング*/
.loading-skip .loader{
  display:none;
}
/* Animations */
@keyframes lineGrow{
  from{ width: 0%; 
        opacity: 0;}
  to{ width: 160px;
    opacity: .6; }
}
@keyframes logoFadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes floatLogo{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
@keyframes metaIn{
  from{ opacity: 0; transform: translateY(-2px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes dotPulse{
  0%,100%{ opacity: .25; transform: translateY(0); }
  50%{ opacity: .9; transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce){
  .loader__logo,
  .loader__line,
  .loader__meta,
  .loader__dots span{
    animation: none !important;
  }
  .loader__logo{ opacity: 1; transform: none; }
  .loader__line{ width: min(420px, 76vw); }
  .loader__meta{ opacity: 1; transform: none; }
}
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
p { overflow-wrap: anywhere; word-break: break-word; }
#works, #about, #process, #contact{
  scroll-margin-top: 100px; /* ヘッダー80px + ちょい余白 */
}
body {
 font-family: 'Zen Kaku Gothic New', sans-serif;
 padding-top: 0px;
 color:#2c2c2c;
 margin: 0;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.header{
  width: min(1200px, calc(100% - 32px));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  background: transparent;
  z-index: 1000;
}
.header__nav{
  display: flex;
  align-items: center;
  margin-left: auto;
  order: 2;
}
.header__logo{
  position: static;
  transform: none;
  order: 1;
}
h2, .about__greetingTitle, .access__title {
  font-family: 'Zen Old Mincho', serif;
}
.menu {
  display: none !important; 
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__logo img {
  width: 120px;
  height: auto;
}
nav li {
  text-align: center;
  font-size: 16px;
}
nav li a {
  text-decoration: none;
  color: #59595a;
  font-weight: bold;
}
/* =========================
   Hamburger (SP/Tablet)
   ========================= */
.navToggle{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.navToggle__label{
  font-weight: 600;
  letter-spacing: 0.04em;
}
.navToggle__icon,
.navToggle__icon::before,
.navToggle__icon::after{
  background: currentColor;
}
.navToggle__label--close{ display:none; }
/* 三本線（シンプルに） */
.navToggle__icon{
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
}
.navToggle__icon::before,
.navToggle__icon::after{
  content:"";
  position:absolute;
  left:0;
  width:26px;
  height:2px;
  background: currentColor;
}
.navToggle__icon::before{ top:-8px; }
.navToggle__icon::after { top: 8px; }
.navOverlay{
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.navOpen .navOverlay{
  opacity: 1;
  pointer-events: auto;
}

/* いったん擬似要素は止める */
.navOverlay::before{
  content: none;
}
.spNav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 1200;
  width: min(300px, calc(100vw - 20px));
  padding: 88px 32px 36px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}
body.navOpen .spNav{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.spNav__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 26px;
}
.spNav__list a{
  text-decoration: none;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
}
.spNav__list a::after{
  content:"";
  position:absolute;
  left:0;
  right:auto;
  bottom:-4px;
  width:0%;
  height:1px;
  background:#535353;
  transition: width 0.3s ease;
}
.spNav__list a:hover::after{
  width:100%;
}
.spNav__list a:hover::after{
  width:100%;
}
/* OPEN状態 */
body.navOpen .spNav{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.navOpen{
  overflow: hidden; /* 開いてる間スクロール止める */
}

body.navOpen .navToggle__label--open{ display:none; }
body.navOpen .navToggle__label--close{ display:inline-block; }
/* CLOSEボタン */
.spNav__close{
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;

  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  cursor: pointer;
}
.spNav__close::after{
  content: "×";
  font-size: 16px;
  line-height: 1;
}
body.navOpen .navToggle__icon{
  background: transparent;
}
body.navOpen .navToggle__icon::before{
  top:0;
  transform: rotate(45deg);
}
body.navOpen .navToggle__icon::after{
  top:0;
  transform: rotate(-45deg);
}
.recruit-page .inner,
.recruit-page .page-header-inner{
  width: min(1040px, calc(100% - 88px));
  margin: 0 auto;
}
.recruit-page .narrow{
  width: min(860px, calc(100% - 88px));
  margin: 0 auto;
}
.page-header{
  padding: 120px 0 48px;
  position: relative;
}
.page-header-inner{
  position: relative;
}
.page-en{
  margin: 0;
  font-size: clamp(56px, 12vw, 150px);
  line-height: 0.88;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.035);
  font-weight: 500;
  user-select: none;
  pointer-events: none;
}
.page-title{
  margin: -28px 0 18px;
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.page-lead{
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  color: #666;
}
.recruit-gallery{
  overflow: hidden;
  padding: 10px 0;
  background: #f3f3f3;
  isolation: isolate;
}
.recruit-gallery__track{
  display: flex;
  width: max-content;
  gap: 24px;
  animation: recruitMarquee 38s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.recruit-gallery__group{
  display: flex;
  gap: 24px;
  flex: 0 0 auto;
}
.recruit-gallery__card{
  width: clamp(220px, 25vw, 360px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  flex: 0 0 auto;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.recruit-gallery img{
  display: block;
  width: clamp(220px, 25vw, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 24px;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@keyframes recruitMarquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(calc(-50% - 12px),0,0); }
}

main{
  display: block;
}
/* =========================
  各ページの共通設定)
========================= */
/* Sub Hero 各ページのメインビジュアル*/
/* ===== Sub Hero（共通）===== */
.sub-hero{
  position: relative;
  background: #f5f4f1;
}

/* コンテナ */
.sub-hero__inner{
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  height: clamp(530px, 66vh, 830px);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
/* 左の青い帯（半透明） */
.sub-hero__content{
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(90px, 20vw, 220px);
  height: 100%;

  background: linear-gradient(
    to bottom,
    #2f4fa3,
    #18317c
  );

  opacity: 0.9;
  mix-blend-mode: multiply;

  z-index: 2;
}
/* 画像 */
.sub-hero__image{
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background: #ddd;
}

.sub-hero__image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* 左にほんのり暗いグラデ（文字見やすくする用） */
.sub-hero__image::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 0.1) 35%,
    rgba(0, 0, 0, 0) 50%
    );
}
/* テキスト */
.sub-hero__overlay{
  position: absolute;
  left: clamp(28px, 4vw, 52px);
  bottom: clamp(80px, 12vw, 140px);
  z-index: 3;
  color: #fff;
  max-width: 680px;
  text-shadow: 
  0 2px 8px rgba(0,0,0,0.6),
  0 6px 24px rgba(0,0,0,0.4);
}
.sub-hero__title,
.sub-hero__lead{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  backface-visibility: hidden;
}
.sub-hero__title{
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 0.08em;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.15;
  animation: subHeroFadeUp 1.6s cubic-bezier(.16, 1, .3, 1) .2s both;
}
.sub-hero__lead{
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  line-height: 2;
  letter-spacing: 0.04em;
  animation: subHeroFadeUp 1.6s cubic-bezier(.16, 1, .3, 1) .5s both;
}

@keyframes subHeroFadeUp{
  0%{
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.sub-hero__label{
  display: block;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 48px 20px 56px;
  text-align: center;
  background: #f5f4f1;
}
.sub-hero__label-en{
  margin: 0;
  color: #243b7f;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 150;
  letter-spacing: 0.06em;
}
.sub-hero__label-ja{
  margin: 14px 0 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #222;
}
.sub-hero__label::after{
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 28px auto 0;
  background: #243b7f;
  opacity: 0.35;
}

@keyframes subHeroFadeUp{
  from{
    opacity: 0;
    transform: translateY(24px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
section{
  padding: 96px 0;
}
.sub-hero{
  padding: 0;
}
.section-heading{
  margin-bottom: 40px;
}

.section-en{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #8b8b8b;
}

.section-heading h2{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.recruit-message{
  background: #ffffff;
  padding: 72px 0;
}
.recruit-message .section-title{
  margin-bottom: 28px;
}

.recruit-message .inner{
  position: relative;
  z-index: 1;
}
.recruit-message .message-box{
  background: transparent;
  border: none;
  padding: 8px 0 8px 24px;
  max-width: 860px;
  position: relative;
}
.recruit-message .message-box::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}
.message-box,
.job-card,
.outline-table,
.faq-item,
.contact-box{
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0,0,0,0.08);
}

.message-box{
  padding: 42px;
}

.message-box p{
  margin: 0 0 18px;
}

.message-box p:last-child{
  margin-bottom: 0;
}

.recruit-jobs{
 position: relative;
background:
    linear-gradient(rgba(243,242,239,0.82), rgba(243,242,239,0.82)),
    url("picture_file/recruit/recruit_sab.jpg") center center / cover no-repeat;

}
.recruit-jobs .inner{
  position: relative;
  z-index: 1;
}

.job-grid{
   padding-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: 520px;
  width: 100%;
  padding: 30px 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.job-card h3{
  margin: 0 0 14px;
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.4;
  
}

.job-card p{
  margin: 0;
  color: #666;
  line-height: 1.9;
}
.outline-table{
  padding: 18px 34px;
}

.outline-table dl{
  margin: 0;
}

.outline-table dt,
.outline-table dd{
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.outline-table dt{
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 16px;
}

.outline-table dd{
  margin: 0;
  color: #666;
  font-size: 16px;
}
.salary-group{
  margin-bottom: 18px;
}
.salary-title{
  font-weight: 700;
  color: #666;
  margin-bottom: 6px;
}
.salary-group p{
  line-height: 1.9;
}
.salary-common__title{
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}
.salary-note{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}
.flow-list{
  display: grid;
  gap: 0;
}
.flow-item{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.flow-item:last-child{
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.flow-num{
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #9a9a9a;
}

.flow-body h3{
  margin: 0 0 8px;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
}

.flow-body p{
  margin: 0;
  color: #666;
}

.faq-list{
  display: grid;
  gap: 16px;
}

.faq-item{
  padding: 28px 32px;
}

.faq-item h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-item p{
  margin: 0;
  color: #666;
}

.recruit-contact{
  padding-top: 42px;
  padding-bottom: 110px;
}

.contact-box{
  padding: 52px 40px;
  text-align: center;
}

.contact-en{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #8b8b8b;
}

.contact-box h2{
  margin: 0 0 18px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-box p{
  margin: 0;
  color: #666;
}

.contact-actions{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 24px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: opacity 0.28s ease, transform 0.28s ease;
  text-decoration: none;  
}
.btn:hover{
  opacity: 0.86;
  transform: translateY(-2px);
}

.btn-outline{
  background: transparent;
  color: #1a1a1a;
}
.footer{
  padding:32px 0;
  background: #f3f3f3;
  text-align:center;
}
.footer_inner{
  width: 100%;
  max-width: 1000px;   /* ←ちょい狭めるのがコツ */
  margin: 0 auto;
  padding: 0 20px;     /* ←これ超大事（スマホ余白） */
  text-align: center;
}
.footer_logo{
  font-size:14px;
  letter-spacing:0.08em;
  margin-bottom:10px;
   color:#7c7c7c;
}
.footer_copy{
   margin-top: 16px;
  font-size:12px;
  color:#7c7c7c;
}
.footer_nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
}
.footer_nav a{
  color:#7c7c7c;
  text-decoration:none;
}
.footer_nav li{
  list-style: none;
}


/* =========================
   RecruitのSub Heroを他ページと揃える
   ========================= */

/* recruitページだけ、横幅を他ページに合わせる */
.recruit-page .sub-hero__inner{
  width: min(100%, 1200px) !important;
  margin: 0 auto !important;
  height: clamp(530px, 66vh, 830px) !important;
  padding: 0 !important;
}

.recruit-page .sub-hero__label{
  width: min(100%, 1200px) !important;
  margin: 0 auto !important;
}

/* headerも同じ幅に揃える */
.recruit-page .header{
  width: min(1200px, calc(100% - 32px)) !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
}

/* recruitだけロゴとMENUを消したいならこっちを使う
.recruit-page .header__logo,
.recruit-page .navToggle{
  display: none !important;
}
*/
@media (min-width: 901px) and (max-width: 1024px){
  .sub-hero__inner{
    height: 620px;
  }
  .sub-hero__overlay{
    left: 34px;
    right: 28px;
    bottom: 36px;
    max-width: 430px;
  }
  .sub-hero__title{
    font-size: 3rem;
    line-height: 1.04;
    margin: 0 0 14px;
  }
  .sub-hero__lead{
    font-size: 0.92rem;
    line-height: 1.75;
  }
}
@media (min-width: 768px) and (max-width: 900px){
  .sub-hero__inner{
    height: 500px;
  }
  .sub-hero__overlay{
    left: 30px;
    right: 24px;
    bottom: 40px;
    max-width: 420px;
  }
  .sub-hero__title{
    font-size: 2.8rem;
    line-height: 1.06;
    margin: 0 0 16px;
  }
  .sub-hero__lead{
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
@media (min-width: 768px) and (max-width: 860px){
  .recruit-flow{
    padding: 20px 0;
  }
  .recruit-faq{
    padding: 48px 0;
  }
  .recruit-contact{
    padding: 48px 0;
  }
}

/*各ページのセクションタイトル背景英文字薄グレー*/
.section-bg-text{
  position: absolute;
  left: 0;
  top: 18px;
  z-index: 1;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
/*各ページのセクションタイトル*/
.section-title{
  position: relative;
  z-index: 2;
}
.footer_nav a{
  color:#333;
  text-decoration:none;
}
  @media screen and (min-width: 800px) and (max-width: 900px){
  /* ---------- tablet---------- */
  .sub-hero__inner{
  width: calc(100% - 40px);
  height: clamp(420px, 58vw, 500px);
  }
  .sub-hero__content,
  .sub-hero__image{
  height: 100%;
  min-height: 0;
  }
  .sub-hero__overlay{
    left: 34px;
    right: 28px;
    bottom: 58px;
    max-width: 520px;
  }
  .sub-hero__title{
    font-size: clamp(2.4rem, 5.2vw, 3.4rem);
    line-height: 1.08;
    margin: 0 0 16px;
  }
  .sub-hero__lead{
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
@media (max-width: 860px){
  .recruit-page .header{
    justify-content: space-between !important;
  }
  .recruit-page .header__logo{
    display: none !important;
  }
  .recruit-page .header__nav{
    margin-left: auto !important;
  }
  .recruit-page .navToggle{
    display: inline-flex !important;
  }
}
@media (min-width: 744px) and (max-width: 820px){
  .spNav__list a{
    font-size: 18px;
    line-height: 1.9;
  }
    .recruit-page .sub-hero__inner{
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
    margin: 0 !important;
  }
  .recruit-page .sub-hero__image,
  .recruit-page .sub-hero__content{
    height: 100% !important;
    min-height: 0 !important;
  }
  .recruit-page .sub-hero__overlay{
    position: absolute !important;
    left: 34px !important;
    right: 28px !important;
    bottom: 54px !important;
    max-width: 480px !important;
    z-index: 3 !important;
  }
  .recruit-page .sub-hero__title{
    margin: 0 0 14px !important;
    font-size: clamp(2.1rem, 5vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }
  .recruit-page .sub-hero__lead{
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
  } 
}
@media (min-width: 768px) and (max-width: 799px){
  /* ----------採用までの流れズレ ---------- */
  .flow-item{
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding-left: 16px;
  }
  .flow-num{
    text-align: right;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 767px){

.sub-hero__inner{
  width: 100%;
  grid-template-columns: 88px 1fr; /* 左に細い青帯を残す */
  column-gap: 0; 
  height: 460px;
  bottom: 52px;
}
/* 各ページメイン画像 */
.sub-hero__content,
.sub-hero__image{
  height: 470px;   /* 少し高さを詰める */
  min-height: 470px;
}
.sub-hero__content{
  background: #243b7f;
}
.sub-hero__image{
    margin: 0;
  }
.sub-hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sub-hero__overlay{
  left: 28px;
  right: 18px;
  bottom: 56px;
  max-width: none;
}
.sub-hero__title{
  font-size: clamp(25px, 4.2vw, 28px);
  line-height: 1.08;
  margin: 0 0 20px;
}
.sub-hero__lead{
  font-size: 0.95rem;
  line-height: 1.9;
}
.sub-hero__label{
  width: 100%;
  padding: 28px 16px 22px;
}
.sub-hero__label-en{
  margin: 0;
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.1;
}
.sub-hero__label-ja{
  margin: 10px 0 0;
}
.sub-hero__label::after{
  height: 34px;
  margin: 16px auto 0;
}
  .recruit-gallery__track{
    animation: recruitMarqueeSp 38s linear infinite;
  }
  .recruit-gallery__card{
    width: 220px;
  }
  @keyframes recruitMarqueeSp{
    from{ transform: translate3d(0,0,0); }
    to{ transform: translate3d(-1220px,0,0); }
  }
  .recruit-page .inner,
  .recruit-page .page-header-inner,
  .recruit-page .narrow{
     width: min(100% - 48px, 100%);
  }

  .page-header{
    padding: 88px 0 36px;
  }

  .page-title{
    margin-top: -12px;
  }

  .page-lead{
    font-size: 13px;
    line-height: 1.8;
  }

  .page-lead br{
    display: none;
  }

  .recruit-gallery__track,
  .recruit-gallery__group{
    gap: 14px;
  }

  .recruit-gallery img{
    width: 62vw;
    border-radius: 18px;
  }
  .recruit-message .message-box,
  .job-card,
  .faq-item,
  .contact-box{
    padding: 22px 18px;
  }
  .recruit-message .message-box p,
  .job-card p,
  .faq-item p,
  .contact-box p,
  .flow-body p{
    font-size: 13px;
    line-height: 1.75;
  }
  .flow-body h3{
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 4px;
  }
  .flow-num{
    font-size: 15px;
  }
  section{
    padding: 72px 0;
  }
  .job-grid{
    grid-template-columns: 1fr;
  }
  .job-card{
    min-height: auto;
  }
  .message-box,
  .job-card,
  .faq-item,
  .contact-box{
    padding: 26px 22px;
  }
  .outline-table{
    padding: 12px 22px;
  }
  .recruit-flow .inner{
    width: min(100% - 40px, 100%);
  }
  .flow-item{
    padding: 20px 0;
    padding-left: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .flow-num{
    margin-bottom: 4px;
  }
  .contact-actions{
    flex-direction: column;
  }
  .btn{
    width: 100%;
    min-width: 0;
  }}
/* ---------- ipadmini ---------- */
@media (min-width: 701px) and (max-width: 799px){

  .recruit-flow{
    padding: 48px 0;
  }
  .recruit-faq{
    padding: 48px 0;
  }
  .recruit-message .message-box p,
  .job-card p,
  .faq-item p,
  .contact-box p,
  .flow-body p,
  .outline-table dd {
    font-size: 15px;
    line-height: 1.9;
  }

  .outline-table dt,
  .flow-body h3 {
    font-size: 15px;
    line-height: 1.6;
  }

 .recruit-page .inner,
  .recruit-page .page-header-inner,
  .recruit-page .narrow{
    width: min(100% - 56px, 100%);
  }
  .recruit-gallery{
    padding-inline: 24px;
  }
  .recruit-gallery__track,
  .recruit-gallery__group{
    gap: 16px;
  }
  .recruit-gallery img{
    width: 200px;
    height: 280px;
  }
    .contact-actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .job-grid{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .job-card{
    width: min(100%, 500px);
    margin-inline: auto;
  }
  .contact-actions .btn{
    width: 350px;
  }
  .footer{
    font-size: 12px;
  }
}
  @media (max-width: 480px){
  /* ---------- 全ページ共通---------- */
.recruit-page .sub-hero__inner{
    width: 100% !important;
    max-width: 100% !important;
    height: 460px !important;
    margin: 0 !important;
  }
  .recruit-page .sub-hero__label{
    width: 100% !important;
    max-width: 100% !important;
  }

  /* header */
  .header{
  padding: 0 14px;
}
  .spNav__close{
    top: 18px;
    left: 18px;
    padding: 10px 16px;
  }
  .spNav__list{
    gap: 24px;
  }
  .spNav__list a{
    font-size: 16px;
    line-height: 1.4;
  }
  .recruit-page .sub-hero__overlay{
    left: 22px !important;
    right: 18px !important;
    bottom: 52px !important;
  }
  .recruit-page .sub-hero__title{
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: 1.1;
  }
  .recruit-page .sub-hero__lead{
    font-size: 0.8rem !important;
    line-height: 1.8;
  }
  /* ---------- fontsize---------- */
  .recruit-flow{
      padding: 20px 0;
    }
    .recruit-faq{
      padding: 48px 0;
    }
    .recruit-contact{
      padding: 48px 0;
    }
   .outline-table dd{
    font-size: 13px;
    line-height: 1.8;
    }
    .outline-table dt{
    font-size: 13px;
    }
    .faq-item h3 {
    font-size:16px;
    }
    .flow-body h3{
    font-size:16px;
    }
    .footer{
    font-size: 12px;
  }
  }
    /* 2026513更新 */
  /* =========================
   recruit header はみ出し応急修正
========================= */
.recruit-page .header{
  width: min(100%, 1200px) !important;
  max-width: 1200px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  padding: 0 24px !important;
  overflow: visible !important;
}

.recruit-page .header__logo{
  flex: 0 0 auto !important;
}

.recruit-page .header__nav{
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

.recruit-page .navToggle{
  flex-shrink: 0 !important;
}