@charset "utf-8";

/* --------------------------------------------
   採用ページ共通レイアウト
-------------------------------------------- */
body {
  font-family: sans-serif;
  margin: 0;
  background:#fff !important;
}

/* --------------------------------------------
   ヘッダー構成
-------------------------------------------- */
/* ========== ヘッダー全体 ========== */
.recruit-header {
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 20px 30px;
  top: 0;
  z-index: 1000;
}
.recruit-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ========== 左側：ロゴ＋テキスト ========== */
.recruit-logo {
  display: flex;
  align-items: center;
}
.recruit-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.recruit-title {
  margin-left: 30px;
  line-height: 0.2;
}
.recruit-title .main {
  font-size: 1.1em;
  font-weight: bold;
  color: #007acc;
}
.recruit-title .sub {
  font-size: 0.85em;
  color: #555;
}


/* アクション（PC表示時） */
/* ========== 右側：電話／応募／ハンバーガー ========== */
.recruit-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-btn {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  padding: 8px 18px;
  border: 1px solid #007acc;
  border-radius: 999px;
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
  gap: 6px;
}
.phone-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.apply-btn {
  font-size: 1em;
  background: #007acc;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

:root { --menu-anim: .6s; } /* 0.4s → キビキビ / 0.8s → ゆっくり */

.hamburger {
  font-size: 2em;
  background: none;
  border: none;
  color: #007acc;
  cursor: pointer;
  line-height: 1;
}

/* ハンバーガー（PCでも表示） */
.hamburger {
  font-size: 2em;
  background: none;
  border: none;
  color: #007acc;
  cursor: pointer;
  line-height: 1;
  display: block;
}

/* ナビゲーションメニュー */
/* ========== ナビゲーション ========== */
.recruit-nav {
    position: fixed;
    inset: 0;                 /* top/right/bottom/left: 0 の省略 */
    z-index: 10;
    background: #007acc;      /* 青空色（好みで #007acc に） */
    padding: max(16px, env(safe-area-inset-top)) 20px 24px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity var(--menu-anim) ease,
                transform var(--menu-anim) ease,
                visibility 0s linear var(--menu-anim); /* 終わってから隠す */
    pointer-events: none; /* 触れないように */
}
.recruit-nav.open {
  opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity var(--menu-anim) ease,
                transform var(--menu-anim) ease;
    pointer-events: auto;
}
.recruit-nav ul {
    /* 縦並び＆中央寄せ */
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 72px 0 0;
    padding: 0;
    place-items: center;  
}
.recruit-nav li a {
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 14px 8px;
    border-radius: 10px;
    text-align: center;
}


/* --------------------------------------------------
   セクションタイトル（採用ページ用・中央揃え）
-------------------------------------------------- */
.recruit-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.recruit-section-title .en {
  font-size: 2.2em;
  font-weight: bold;
  color: #007acc;
  margin: 0;
}
.recruit-section-title .ja {
  font-size: 1em;
  color: #555;
  margin: 0;
}

/* --------------------------------------------------
   採用追加セクション（背景白で統一）
-------------------------------------------------- */
.recruit-section {
  background: #fff;
  padding: 6rem 2rem;
  margin: 8rem auto;
  max-width: 960px;
  
}
.recruit-section h2 {
  font-size: 1.8em;
  color: #007acc;
  margin-bottom: 1rem;
  text-align: center;
}
.recruit-section p {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
.recruit-section .button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #007acc;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
/* --------------------------------------------------
   採用トップバナー：キャッチコピーのフォントサイズ調整
-------------------------------------------------- */
.recruit-banner-text h1 {
  font-size: 1.6em; /* ← ここを小さく調整（例: 1.5em や 1.8em） */
  margin: 0;
  padding: 0;
}

.recruit-subtext {
  margin-top: 1rem;
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
/* --------------------------------------------------
   セクションタイトル（採用ページ用・中央揃え）
-------------------------------------------------- */
.recruit-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.recruit-section-title .en {
  font-size: 2.2em;
  font-weight: bold;
  color: #007acc;
  margin: 0;
}
.recruit-section-title .ja {
  font-size: 1em;
  color: #555;
  margin: 0;
}

/* --------------------------------------------------
   アバウトアスセクション（背景スクロール付き）
-------------------------------------------------- */
.about-us-section {
  padding: 80px 20px;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* 沿革リスト */
.history-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.history-list li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.2em;
}

.history-list li::before {
  content: "●";
  color: #007bcd;
  position: absolute;
  left: 0;
}

/* --------------------------------------------------
   スクロール写真ストリップ（縦長600x2900px対応）
-------------------------------------------------- */
.about-photos {
  display: flex;
  gap: 20px;
}

.photo-strip {
  width: 240px;                   /* 表示幅を調整（好みで220〜240px） */
  height: 600px;                  /* 表示される高さ */
  background-size: 100% auto;     /* 横幅にフィット・縦長画像 */
  background-repeat: repeat-y;
  animation: scroll-vertical 120s linear infinite;
  will-change: background-position;

  /* スクロール時の上下フェード（任意） */
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* 個別画像指定（600×2900px） */
.strip1 {
  background-image: url('/images/vertical-photo-strip.png'); /* 実際の画像に差し替え */
  animation-direction: normal;
}

.strip2 {
  background-image: url('/images/vertical-photo-strip2.png'); /* 実際の画像に差し替え */
  animation-direction: reverse;
}

/* アニメーション定義 */
@keyframes scroll-vertical {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

/* --------------------------------------------------
   アバウトアス（下段）：沿革＋縦スクロール写真
-------------------------------------------------- */
.about-lower {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.history-content {
  flex: 1;
  max-width: 480px;
}
.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.history-list li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 1em;
  position: relative;
}
.history-list li::before {
  content: "●";
  color: #007bcd;
  position: absolute;
  left: 0;
}
/* --------------------------------------------------
   代表メッセージセクション
-------------------------------------------------- */
.message-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.message-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.message-photo img {
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.message-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: left;
}

.signature {
  margin-top: 1.5em;
  font-weight: bold;
  text-align: right;
}

/* レスポンシブ対応：スマホでは縦並び */
@media screen and (max-width: 768px) {
  .message-content {
    flex-direction: column;
    text-align: center;
  }

  .message-text {
    text-align: center;
  }

  .signature {
    text-align: center;
  }
}

/* --------------------------------------------------
   福利厚生セクション（BENEFITS）
-------------------------------------------------- */
.benefits-section {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-item img {
  width: 100%;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #007acc;
}

.benefit-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

@media (min-width: 900px){
  .benefits-list{
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* ←必ず4列 */
    gap: 24px; /* すこし狭めてもOK */
  }
  .benefit-item{ min-width: 0; } /* 中身がはみ出すのを防ぐ保険 */
}
/* --------------------------------------------------
   応募から入社までの流れセクション
-------------------------------------------------- */
.recruit-selection {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.selection-flow {
  display: flex;
  flex-wrap: nowrap;         /* ✅ 折り返しを防ぐ */
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;               /* ✅ 画面幅いっぱい使う */
  max-width: none;           /* ✅ 制限を解除（または100%でもOK） */
  margin: 0 auto;
}

.selection-flow .step {
  width: 220px;               /* ✅ 固定で4枚並べるにはこれくらい */
  min-height: 260px;          /* ✅ 高さをそろえる */
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  box-sizing: border-box;
}
.selection-flow .step:hover {
  transform: translateY(-5px);
}

.selection-flow img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.selection-flow h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #007acc;
}

.selection-flow p {
  font-size: 0.95rem;
  color: #444;
}

/* --------------------------------------------------
   FAQセクション
-------------------------------------------------- */
.faq-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  color: #007acc;
}

.faq-question::after {
  content: "+";
  right: 0;
  top: 0;
  font-size: 1.4em;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  display: none;
  transition: all 0.3s ease;
}

.faq-answer.show {
  display: block!important;
}
/* --------------------------------------------------
   FAQセクション（見た目調整）
-------------------------------------------------- */
.faq-section {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
}

/* 各QAボックス */
.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* 質問ボタン部分 */
.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  font-weight: bold;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Qアイコン */
.faq-question::before {
  content: "Q";
  display: inline-block;
  background-color: #e60033; /* 赤（公式カラー） */
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin-right: 12px;
}

/* 回答部分 */
.faq-answer {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  display: none; /* JavaScriptで切り替え */
}

/* 展開中の表示 */
.faq-question.active + .faq-answer {
  display: block;
}

/* トグル記号（+/-）右側に追加する場合のオプション：未使用ならOK */
.faq-question::after {
  content: "＋";
  margin-left: auto;
  font-size: 1.2rem;
  color: #333;
  transition: transform 0.3s;
}
.faq-question.active::after {
  content: "−";
}

/* --------------------------------------------------
   応募から入社までの流れ（矢印表示）
-------------------------------------------------- */
.selection-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  text-align: center;
}

.selection-flow .step {
  width: 200px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.selection-flow .step-arrow {
  font-size: 28px;
  color: #005bac; /* セクションタイトルと同じ青色 */
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  margin-top: 100px; /* ↓矢印を下げる調整 */
}

.selection-flow .step-arrow-responsive{
  display :none;
}

/* --------------------------------------------
   レスポンシブ対応
-------------------------------------------- */
@media screen and (max-width: 1024px) {
  .recruit-header {
    padding: 15px 20px;
  }

  .recruit-logo img {
    height: 36px;
  }

  .recruit-title .main {
    font-size: 1em;
  }

  .recruit-title .sub {
    font-size: 0.75em;
  }

  .recruit-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .phone-btn, .apply-btn{
    display: none;
  }

  .recruit-nav{ 
    z-index: 10000;
  }

  .recruit-nav.open {
    display: grid;
  }

  .recruit-nav ul {
    display :flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .recruit-nav.open .phone-btn,
  .recruit-nav.open .apply-btn {
    display: block;
    margin: 10px 0;
  }

   .selection-flow{
    display: grid;                           /* flex → grid に切替 */
    grid-template-columns: 1fr 40px 1fr;     /* 左カード | 矢印 | 右カード */
    column-gap: 24px;
    row-gap: 24px;
    justify-items: center;
    align-items: stretch;
  }

  /* カードはセル幅に合わせて広がる */
  .selection-flow .step{
    width: 100%;
    max-width: 360px;        /* お好みで上限 */
    min-height: 260px;
    box-sizing: border-box;
  }

  /* ▼ 位置指定（:nth-child(... of .class) で“そのクラスだけ”を数える） */
  /* Steps：上段 左/右、下段 左/右 */
  .selection-flow .step:nth-child(1 of .step){ grid-column:1; grid-row:1; }
  .selection-flow .step:nth-child(2 of .step){ grid-column:3; grid-row:1; }
  .selection-flow .step:nth-child(3 of .step){ grid-column:1; grid-row:2; }
  .selection-flow .step:nth-child(4 of .step){ grid-column:3; grid-row:2; }

  /* Arrows：上段の間／下段の間。真ん中の（2個目）は非表示 */
  .selection-flow .step-arrow{
    display:flex; align-items:center; justify-content:center;
  }
  .selection-flow .step-arrow:nth-child(1 of .step-arrow){ grid-column:2; grid-row:1; }
  .selection-flow .step-arrow:nth-child(2 of .step-arrow){ display:none; } /* 行間の矢印は消す */
  .selection-flow .step-arrow:nth-child(3 of .step-arrow){ grid-column:2; grid-row:2; }


}

@media (max-width: 900px) {
  .selection-flow {
    display: flex;            /* ★ grid を確実に解除する */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;  }

  .selection-flow .step {
    width: 45%; /* 2列表示に */
    margin-bottom: 20px;
  }

  

.about-content{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
  }

  .about-photos {
    max-width: 100%;
  }

  .message-content{
    flex-direction: column;   /* 縦並び */
    align-items: center;      /* 子要素を中央に */
    justify-content: center;
    gap: 24px;
    text-align: center;       /* セクション内の文字も中央に */
  }

  .selection-flow{
    flex-direction: column;   /* 縦並び */
    align-items: center;      /* 子要素を中央に */
    justify-content: center;
    gap: 24px;
    text-align: center;   
  }

  .selection-flow .step-arrow {
    display :none;
  }

  .selection-flow .step-arrow-responsive{
    font-size: 28px;
    color: #005bac; /* セクションタイトルと同じ青色 */
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .selection-flow .step {
    width: 100%; /* スマホでは1列に */
  }

  .faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  font-weight: bold;
  font-size: 0.7rem;
  text-align: left;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.recruit-section {
  background: #fff;
  padding: 6rem 2rem;
  margin: 0 auto;
  max-width: 960px;
  
}

}


/* --------------------------------------------
   セクション・カード表示
-------------------------------------------- */
.section {
  max-width: 1280px;
  margin: 8rem auto; /* セクションの上下余白を統一 */
  padding: 6rem 2rem; /* 左右と上下の内側余白を広く */
  background: #fff;
  border: 2px dashed #aaa;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* セクション間のスペース（.section を使っている場合） */
.section + .section {
  margin-top: 10rem;
}
.job-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: #f9f9f9;
  border: 2px solid #007acc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  min-height: 240px;
}
.job-card:hover {
  transform: translateY(-5px);
}
.job-card h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #007acc;
}
.job-card p {
  font-size: 0.95em;
  color: #333;
}

/* --------------------------------------------
   リクルートバナー
-------------------------------------------- */
.recruit-banner {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  margin-bottom: 10rem;
  opacity: 0;
  transform: scale(1.05);
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.recruit-banner.show {
  opacity: 1;
  transform: scale(1);
}
.recruit-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5em;
  text-align: center;
  /* -text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);*/
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .recruit-banner {
    height: 400px;
    margin-bottom: 3rem;
  }
  .recruit-banner-text {
    font-size: 0.9em;
    padding: 0 10px;
  }
}
/* --------------------------------------------------
   募集要項（REQUIREMENTS）セクション
-------------------------------------------------- */
.job-guidelines-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.job-guidelines {
  margin-top: 2rem;
}

.job-guidelines-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem; /* 小さめ */
  line-height: 1.6;
}

.job-guidelines-table th,
.job-guidelines-table td {
  border-bottom: 1px solid #ccc;
  padding: 0.8em 1em;
  vertical-align: top;
}

/* 補足（赤丸チェック） */
.job-note {
  margin-top: 0.6em;
  font-size: 0.75rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.job-guidelines-table th {
  text-align: left;
  width: 20%;
  color: #333;
  white-space: nowrap;
}

.job-guidelines-table td {
  width: 80%;
  color: #333;
}

.job-highlight-box {
  background-color: #f0f8ff; /* 薄い水色 */
  padding: 1.5em;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: left;
  color: #000; /* 黒に統一 */
}

.job-highlight-box h4 {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #000; /* 黒に統一 */
	font-weight: normal;
  margin-top: 1em;
  margin-bottom: 0.2em;
  line-height: 1.8;
}

.job-highlight-box h4 img {
  margin-right: 0.5em;
  height: 1em;
  width: auto;
}

.job-highlight-box p {
  margin: 0 0 1em 0;
  line-height: 1.8;
  color: #000;
  text-align: left;
}

/* レスポンシブ対応：スマホでは縦並び */
@media screen and (max-width: 768px) {
  .job-guidelines-table th,
  .job-guidelines-table td {
    display: block;
    width: 100%;
  }
}

/* --------------------------------------------
   フッター
-------------------------------------------- */
.site-footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
  font-size: 0.95em;
  color: #555;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 0;
}
.footer-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* --------------------------------------------
   フェードイン
-------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* --------------------------------------------------
   下からふわっと登場するアニメーション(タイトルテキスト)
-------------------------------------------------- */
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}
:root { --menu-anim: .6s; } /* お好みで */

/* --------------------------------------------------
   スクロールでロゴと右側アクションを縮小（滑らか対応）
-------------------------------------------------- */
@media screen and (min-width: 601px) {
  /* ロゴ */
  .recruit-logo img,
  .recruit-logo a img {
    height: 48px;
    transition: height 0.3s ease;
  }

  .recruit-header.shrink .recruit-logo img,
  .recruit-header.shrink .recruit-logo a img {
    height: 36px;
  }

  /* アクションエリア全体を統一して縮小 */
  .recruit-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
.actions-scale{
  display: flex;
  align-items: center;
  gap :12px;
    transition: transform var(--menu-anim,.6s) ease;
    transform-origin: top right;
  }
  .recruit-header.shrink .actions-scale{
    transform: scale(.92);
  }

  /* 個別にフォントサイズ変更するのは避けて、全体をスケールに任せる */
  .recruit-actions .phone-btn,
  .recruit-actions .apply-btn,
  .recruit-actions .hamburger {
    transition: opacity 0.3s ease;
  }
    .recruit-actions .hamburger {
      position :static !important;
  }



}

  @media screen and (max-width: 380px) {
    .recruit-title .main{
      font-size :10px;
    }

    .recruit-title .sub{
      font-size: 9px;
    }
  }
/* 色をスムーズに */
.hamburger { transition: color var(--menu-anim, .4s) ease; }

/* 開いている間は白に（scrolled より後ろに書く） */
.nav-open .site-header .hamburger { color:#fff; }

/* もし三本線を <span> で描いているなら線も白へ */
.nav-open .hamburger span { background:#fff; }

/* もしSVGアイコンなら */
.hamburger svg { fill: currentColor; }
