@charset "UTF-8";

/* ========================================
   Reset / Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* 画面外に隠したドロワー等による横スクロール(はみ出し)を防ぐ。
     clip はスクロールコンテナ化しないので sticky ヘッダーを壊さない */
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;
  color: #111;
  background: #f5f5f5;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
}

.section-inner,
.header-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  position: relative;
}

.section-label {
  font-size: 26px;
  color: #e16f10;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 25px;
  font-weight: 800;
}

section h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.08em;
	font-weight: 800;
  margin-bottom: 56px;
}

.sub-text2{
  font-size: 0.35em; /* ←親のサイズに対して小さく */
  display: inline-block;
  margin-top: 0.7em;
}

section h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
}

section h4 {
  font-size: 18px;
  line-height: 1.4;
}

/* ========================================
   Header
======================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e6e6e6;
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.header-nav a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.site-logo a{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

.logo-img{
height:36px;
width:auto;
}

/* ハンバーガー（デスクトップでは非表示） */
.hamburger{
  display: none;
}

/* ドロワー専用の改行（PC横並びでは改行しない） */
.drawer-br{
  display: none;
}

/* ボタン共通 */

/* ボタンはホバー下線を出さない */
.header-nav li.nav-alba a::after,
.header-nav li.nav-seishain a::after{
  display:none;
}

.header-nav li.nav-alba a,
.header-nav li.nav-seishain a{

display:inline-block;
min-width:130px;       /* 2つのボタンを同じ幅に */
padding:10px 22px;
border-radius:30px;
color:#fff;
font-weight:700;
text-align:center;
box-sizing:border-box;

}


/* アルバイト */

.nav-alba a{

background:#38aee5;
transform:scale(0.9); /* アルバイトボタンだけ少し小さく */

}


/* 正社員 */

.nav-seishain a{

background:#e46a0a;

}

/* ========================================
   First View
======================================== */
/* -----------------
 中央ロゴ
----------------- */
.fv{
  position: relative;
  overflow: hidden;
  padding: 30px 0 30px;
  background: #fff;
}

/* FVだけ左右余白を狭くして横幅いっぱいに */
.fv .section-inner{
  width: min(1600px, calc(100% - 48px));
  container-type: inline-size;
}

.fv-bg{
  position: relative;
  z-index: 5;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-bg img{
  width: 100%;
  height: auto;
  display: block;
}

.fv-fade-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fv-fade-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fv-fade-slide.active{
  opacity: 1;
}

.fv-fade-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transform: scale(1.08);
}

.fv-fade-slide.active img{
  animation: fvSlowZoom 4s ease-out forwards;
}

@keyframes fvSlowZoom{
  0%{
    transform: scale(1);
  }
  100%{
    transform: scale(1.08);
  }
}


/*
.fv{
  position: relative;
  overflow: hidden;
  padding: 0px 0;
}

/* 5段の背景画像 */
/*.fv-marquee{
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  overflow: hidden;transform: scale(0.94);
  transform-origin: center;
}

.fv-marquee::after{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.25);

  z-index:1;
  pointer-events:none;
}

.fv-marquee-row{
  overflow: hidden;
  min-height: 0;
}

.fv-marquee-track{
  display: flex;
  width: max-content;
  height: 100%;
  animation: fvRowScroll 20s linear infinite;
}

.fv-marquee-set{
  display: flex;
  flex: 0 0 auto;
  height: 100%;
}

.fv-marquee-set img{
  display: block;
  width: 320px;
  height: 100%; 
  object-fit: cover;
  flex: 0 0 auto;
}

/* 全段 右→左 */
/*@keyframes fvRowScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* 少しだけ段ごとに速度差を付けると自然 */
/*.row-01 .fv-marquee-track{ animation-duration: 20s; }
.row-02 .fv-marquee-track{ animation-duration: 22s; }
.row-03 .fv-marquee-track{ animation-duration: 18s; }
.row-04 .fv-marquee-track{ animation-duration: 24s; }
.row-05 .fv-marquee-track{ animation-duration: 21s; }

/* fv.png を前面 */
/*.fv-bg{
  position: relative;
  z-index: 1;
  width: 100%;
}

.fv-bg img{
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト最前面 */
.fv-inner{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fv-en-wrap{
  width:100vw;
  position:relative;
  left:50%;
  transform:translateX(-50%);
  overflow:hidden;
}

.fv-en-track{
  display: flex;
  width: max-content;
  animation: fvMarquee 40s linear infinite;
	margin-bottom: 50px;
}

.fv-en{
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  opacity: 0.1;
  padding-right: 2rem; /* 2本の間の余白 */
}

@keyframes fvMarquee{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

.fv-label {
  font-size: 16px;
  letter-spacing: 0.4em;
  color: #111;
  font-weight: 800;
  margin-bottom: 14px;
}

.fv h2 {
  font-size: clamp(50px, 12cqw, 170px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 700;
  white-space: nowrap;

  /* 文字は左揃えのまま、ボックスだけ画面中央に配置 */
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

/* 登場アニメ：行ごとにゆっくりブラー＋フェードアップ（シネマティック）
   ＋ 最後に光の帯がサッと走る「きらりーん」 */
.fv-line {
  display: block;

  /* 光の帯を文字の上だけに通すため、文字を背景グラデで塗る */
  background: linear-gradient(
    135deg,               /* 斜め：左上→右下方向 */
    #111 0%, #111 45%,
    #fff 50%,            /* ← この明るい帯が走る */
    #111 55%, #111 100%
  );
  background-size: 220% 220%;
  background-position: -20% -20%;   /* 初期：帯は左上の外に待機 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #111;                   /* 非対応ブラウザ向けフォールバック */

  /* 初期状態（登場前） */
  opacity: 0;
  filter: blur(20px);
  transform: translateY(40px);

  /* 1つ目：登場アニメ／2つ目：きらりーん */
  animation:
    fvLineBlurUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) both,
    fvShine 0.5s ease-out both;
}

/* 登場は上の行から順番に。きらりーんは全行そろった後(約4s)に一斉に1回 */
.fv-line:nth-child(1) { animation-delay: 0.3s, 3.4s; }
.fv-line:nth-child(2) { animation-delay: 0.9s, 3.4s; }
.fv-line:nth-child(3) { animation-delay: 1.5s, 3.4s; }
.fv-line:nth-child(4) { animation-delay: 2.1s, 3.4s; }

@keyframes fvLineBlurUp {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* 光の帯を左上→右下へ通す */
@keyframes fvShine {
  0%   { background-position: -20% -20%; }
  100% { background-position: 120% 120%; }
}

/* アニメーションを控えたいユーザー向け（OS設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  .fv-line {
    opacity: 1;
    filter: none;
    transform: none;
    background-position: 120% 120%;
    animation: none;
  }
}

.fv-divider {
  border: none;
  border-top: 1px solid #111;
  margin-top: 36px;
}

.fv-inner > p:nth-of-type(4) {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #666;
  margin-bottom: 26px;
}

.fv-movie {
  width: min(720px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 1px solid #d9d9d9;
  background: #fff;
  display: grid;
  place-items: center;
  color: #777;
}

/* ========================================
   About
======================================== */
.about {
  padding: 20px 0 80px;
  background: #fff;
}

.about .section-inner {
  text-align: center;
}

.about h2 {
  font-size: clamp(42px, 6vw, 96px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 10px;
  padding-right: 10px;
  text-wrap: balance;
}

.about-lead {
  margin-top: 100px;
  margin-bottom: 130px;
	margin-left: 100px;
	margin-right: 100px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0em;
	text-align: left;
}

.about-entry-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.about-entry-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8d8d8;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-entry-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.about-text {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 42px 40px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.about-text p + p {
  margin-top: 10px;
}

/* about 写真3枚（左1枚＋右2枚積み） */
.about-photos{
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 10px;
  /* 左photo1を大きく、右photo2/photo3は均等高さで積む（積むと左と同じ高さ） */
  aspect-ratio: 2.34 / 1;
}

.about-photo-main{
  min-height: 0;
}

.about-photo-side{
  display: grid;
  grid-template-rows: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

.about-photos img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
  .about-photos{
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-photo-side{
    grid-template-rows: auto auto;
    gap: 8px;
    overflow: visible;
  }
  .about-photos img{
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

/* =========================
メッセージ
========================= */
.message {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.message .section-inner {
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto;
}

.message .section-label {
  margin-top: 25px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e16f10;
}

/*.message h2 {
  margin: 0 0 56px;
  text-align: center;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #111;
}*/

.message-layout {
  position: relative;
  min-height: 760px;
}

.message-photo {
  position: absolute;
  left: 0;
  bottom: 110px;
  width: calc(38% + 40px);
  max-width: 500px;
  z-index: 2;
}

.message-photo img {
  display: block;
  width: 100%;
  height: auto;
 /*padding-left: 20px;*/
}

.message-box {
  width: 62%;
  margin-left: auto;
  min-height: 760px;
  border: 1px solid #c9c9c9;
  background: transparent;
}

.message-box-inner {
  padding: 130px 95px 78px 95px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.message-copy {
  margin: 0 0 42px;
  font-size: clamp(35px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #111;
}

.message-text {
  max-width: 640px;
  text-align: left;
}

.message-text p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: #2a2a2a;
}

.message-text p + p {
  margin-top: 2px;
}

.message-sign {
  margin-top: 0;
  padding-top: 18px;
  text-align: right;
}

.message-sign-role {
  display: inline-block;
  margin: 0 18px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  vertical-align: baseline;
}

.message-sign-name {
  display: inline-block;
  margin: 0;
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #222;
  vertical-align: baseline;
}

.message-sign-en {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #d56a00;
}

/* ========================================
   Benefits Overall
======================================== */
.benefits {
  padding: 0px 0;
  background: #fff;
}

.benefits{
  position: relative;
  overflow: hidden;
}

.benefits-side-text{
    position: absolute;
    top: -1px;
    left: -78px;
    width: 220px;
    height: auto;
    opacity: 0.65;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.benefits .section-inner,
.benefits .benefit-block{
  position: relative;
  z-index: 1;
}

.benefits .section-inner{
  text-align: center;
}

/* benefitsの閉じタグ補完（構造正常化）に伴う表示互換。
   旧・入れ子構造では下記セクションが .benefits .section-inner の
   position/z-index/text-align を継承していたため、見た目維持のため明示指定。 */
.message .section-inner,
.interview-section .section-inner,
.recruit-entry .section-inner,
.company .section-inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

.benefits-en {
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.12;
  text-transform: uppercase;
  line-height: 1;
}

.benefits .section-label {
  margin-top: 25px;
}

.section-sub-label {
  margin-top: 6px;
  margin-bottom: 22px;
  color: #d56a00;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.benefits-lead {
  margin-top: 24px;
  margin-bottom: 42px;
  font-size: 18px;
  font-weight: 500;
}

.benefit-block {
  margin: 60px auto;
  padding: 54px 0 56px;
  width: calc(100% - 80px);
  color: #fff;
  overflow: hidden;
}

.benefit-block .section-inner {
  position: relative;
}

.benefit-block h3,
.benefit-block h4,
.benefit-block p,
.benefit-block li {
  position: relative;
  z-index: 2;
}

.benefit-block h3{
  display:flex;
  align-items:flex-end; /* ←これが重要 */
  gap:20px;

  margin-bottom:24px;
  letter-spacing:0.06em;
}

.benefit-block h3 .num{
  font-size:90px;
  font-weight:900;
  line-height:1;
}
.benefit-block-01 {
  background: #ef4a4a;
}

.benefit-block-01{
position:relative;
}
/* 背景テキスト */
.benefit-block-01 .bg-text{
position:absolute;
top:-118px;
right:-30px; /* ←ここ重要 */
font-size:140px;
font-weight:900;
color:#e53e46;
pointer-events:none;
}

.benefit-block-02 {
  background: #1ba8df;
}

.benefit-block-03 {
  background: #39b54a;
}

.benefit-block-04 {
  background: #d7bc07;
}

.benefit-comment{
  background: #e84545;
  border-radius: 999px;
  padding: 30px 60px;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(176, 35, 35, 0.9);
  margin: 40px auto 0;
}

.benefit-comment p{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: left;
}

.benefit-comment .benefit-comment-lead,
.benefit-comment2 .benefit-comment-lead,
.benefit-comment3 .benefit-comment-lead,
.strength-comment .benefit-comment-lead{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-comment3{
  background: #319b3a;
  border-radius: 999px;
  padding: 30px 60px;
  text-align: center;
  box-shadow: 8px 8px 0 #17843b;
  margin: 40px auto 0;
}

.benefit-comment3 p{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: left;
}

.benefit-comment2{
  background: #0e9fd8;
  border-radius: 999px;
  padding: 30px 60px;
  text-align: center;
  box-shadow: 8px 8px 0 #0b7f9e;
  margin: 40px auto 0;
}

.benefit-comment2 p{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: left;
}

/* ========================================
   Benefit 01
======================================== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.number-item {
  background: rgba(255,255,255,0.92);
  border: 3px solid rgba(255,255,255,0.35);
  color: #222;
  text-align: center;
  padding: 14px 10px 12px;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.number-item{
box-shadow:4px 4px 0 rgba(0,0,0,0.2);
text-align:center;
}

.number-item{
position:relative;
overflow:hidden;
}

/* 左下アイコン */
.number-item .item-icon{
position:absolute;
left:16px;
bottom:10px;

width:40px;  /* サイズ */
height:auto;

pointer-events:none;
}

.number-item .label {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}

.number-item .label{
display:inline-block;
padding:4px 12px;
margin-bottom:14px;
background:#7f7f8f;
color:#fff;
border-radius:16px;
font-size:12px;
font-weight:800;
letter-spacing:0.02em;
}

.number-item .value {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  color: #ef4a4a;
}

.value .unit{
font-size:0.4em;
color:#000;
margin-left:6px;
vertical-align:baseline;
}

/* 500px以下：数字を少し詰めて「万円」の折り返し（円だけ改行）を防ぐ */
@media (max-width: 500px){
  .value.value-tight{
    white-space: nowrap;      /* 数字と単位を1行に固定 */
    letter-spacing: -0.03em;  /* 数字の字間をほんの少し詰める */
  }
  .value.value-tight .unit{
    margin-left: 3px;         /* 単位前の余白も少し詰める */
  }
}

.benefit-block-01 .section-inner > p:last-child,
.benefit-block-01 .section-inner > p:nth-last-child(2),
.benefit-block-01 .section-inner > p:nth-last-child(3) {
  max-width: 860px;
}

/* ========================================
   Benefit 02
======================================== */
.benefit-block-02 h3{
  justify-content: flex-end;
  text-align: right;
}

.benefit-block-02{
  position: relative;
}

/* 左寄せ版 */
.benefit-block-02 .bg-text-benefits{
  position: absolute;
  top: -60px;
  left: -30px;  /* ←左寄せ */

  font-size: 140px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;

  color: #0e9fd8;

  text-align: left;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

/* =========================
福利厚生カードエリア
========================= */
.benefit-columns{
  margin-top: 34px;
}

.benefit-group + .benefit-group{
  margin-top: 48px;
}

.benefit-group-title{
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 16px 20px;
  background: #1f87ad;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.benefit-block-03 .benefit-group-title{
  background: #2a9a3a;
  margin-top: 40px;
  font-size: 26px;
}

.benefit-card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 22px;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card-grid > .benefit-card{
  min-width: 0;
}

.benefit-card{
  min-height: 82px;
  padding: 18px 16px 16px;
  background: #efefef;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(26, 96, 124, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-card-main{
  margin: 0;
  color: #2e9fdd;
  font-size: clamp(21px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.benefit-card-sub{
  margin: 6px 0 0;
  color: #111;
  font-size: clamp(13px, 1.2vw, 13px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* 文字数が多いカード対策 */
.benefit-card .benefit-card-main,
.benefit-card .benefit-card-sub{
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 「（キックボクシングジム：」が長くコロン後改行だと1行に収まらないため、
   500px以下ではこのカードのみフォントをviewport連動で少し縮めて1行に収める */
@media (max-width: 500px){
  .benefit-card-sub--fit{
    font-size: clamp(8px, 2.6vw, 11px);
    white-space: nowrap;   /* コロン前を1行固定（br の改行は有効） */
  }
}

/* ========================================
   Benefit 03
======================================== */
.benefit-block-03{
  position: relative;
}

.benefit-block-03 .bg-text-career{
  position: absolute;
  top: -60px;
  right: -30px;
  z-index: 0;

  font-size: 140px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0em;

  color: #17843b;
  opacity: 0.15;

  text-align: right;

  pointer-events: none;
  user-select: none;
}

.salary-up{
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
  text-align:left;
  margin-top:10px;
  margin-bottom:20px;
  font-weight:800;
}

/*.career-flow{
  margin-top:0px;
  text-align:center;
  position: relative;
  z-index: 2;
}

.career-flow img{
  display: block;
  margin: 0 auto;
}*/

/* ========================================
   CAREER GRAPH
======================================== */
.career-flow{
  position: relative;
}

.career-flow .scroll{
  overflow: visible;
}
.career-flow .scroll::-webkit-scrollbar{
  height: 5px;
}
.career-flow .scroll::-webkit-scrollbar-track{
  background: #f5f5f5;
}
.career-flow .scroll::-webkit-scrollbar-thumb{
  background: #111;
}

/* スクロールヒント（スマホで横スクロールになった時だけ表示） */
.career-scroll-hint{
  display: none; /* PCでは非表示。スクロールになるスマホ幅でのみ表示 */
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% - 120px); /* SPの .scroll の padding-top 分を除いた高さ */
  width: 72px;
  z-index: 4;
  pointer-events: none;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  transition: opacity .3s ease;
}

.career-scroll-hint-text{
  display: none; /* テキストは出さず矢印だけ表示 */
}

.career-scroll-hint-arw{
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  line-height: 1;
  margin-left: 2px;
  letter-spacing: -0.15em;
  animation: careerHintBounce 1.1s ease-in-out infinite;
}

/* 端まで見たらJSで .is-hidden を付けてフェードアウト */
.career-scroll-hint.is-hidden{
  opacity: 0;
}

@keyframes careerHintBounce{
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

.career-promo{
  position: absolute;
  top: 80px;
  left: 24px;
  margin: 0;
  z-index: 3;

  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
}

.sp-only-br{
  display: none;
}

@media (max-width: 768px){
  .sp-only-br{
    display: inline;
  }
}

/* 500px以下のみ改行（マネージャー年収などの狭幅専用） */
.sp500-only-br{
  display: none;
}
@media (max-width: 500px){
  .sp500-only-br{
    display: inline;
  }
}

/* PCのみ改行（スマホでは無効） */
.pc-only-br{
  display: inline;
}

@media (max-width: 768px){
  .pc-only-br{
    display: none;
  }
}

.career-label .sp-only-br{
  display: inline;
}

.career-promo .num{
  display: inline-block;
  color: #ffeb00;
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1;
  vertical-align: -0.05em;
}

.career-columns{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;

  width: 100%;
  margin-top: 60px;
}

/* =========================
   各カラム
========================= */
.career-item{
  position: relative;

  width: 19%;
  min-width: 170px;
}

/* 上の丸 */
.career-rank{
  position: absolute;
  top: -165px; /* ←上に移動 */
  left: 50%;

  transform: translateX(-50%);

  width: 150px;
  height: 150px;
  border-radius: 50%;

  background: #6f6f6f;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;

  z-index: 2;
}

/* 本体 */
.career-box{
  background: #9ad800;
  padding: 18px 16px 22px;
  position: relative;
}

/* 年収 */
.career-year{
  margin: 0 0 6px;

  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

/* 金額 */
.career-box h3{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  margin: 0;

  color: #fff;
  font-size: 42px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.career-box h3 span{
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em; /* 親の字詰め(-0.04em)を解除して「万円〜」を読みやすく */
}

/* 点線 */
.career-line{
  width: 100%;
  margin: 14px 0 16px;

  border-bottom: 3px dotted #fff;
}

/* 白ラベル */
.career-label{
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 40px;

  margin-top: 8px;
  padding: 0 10px;

  background: #f5f5f5;
  border-radius: 6px;

  color: #79b300;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

/* ＋ */
.career-plus{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 28px;
  height: 28px;

  margin: 6px auto;

  border-radius: 50%;

  background: #fff;

  color: #84c300;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;

  /* 「+」グリフを少し上に寄せて○の中央に光学的に合わせる */
  padding-bottom: 4px;
	padding-left: 0px;
  box-sizing: border-box;
}

/* =========================
   高さ調整
========================= */
.career-item:nth-child(1) .career-box{
  min-height: 190px;
}

.career-item:nth-child(2) .career-box{
  min-height: 280px;
}

.career-item:nth-child(3) .career-box{
  min-height: 410px;
}

.career-item:nth-child(4) .career-box{
  min-height: 500px;
}

.career-item:nth-child(5) .career-box{
  min-height: 610px;
}

/* =========================
   Tablet (769px〜1024px)
========================= */
@media (max-width: 1024px) and (min-width: 769px){

  .career-promo{
    top: 80px;
    left: 24px;
    font-size: 32px;
  }

  .career-columns{
    gap: 6px;
    margin-top: 40px;
  }

  .career-item{
    min-width: 0;
    width: 20%;
  }

  .career-rank{
    width: 110px;
    height: 110px;
    top: -120px;
    font-size: 15px;
  }

  .career-box{
    padding: 14px 10px 18px;
  }

  .career-year{
    font-size: 13px;
  }

  .career-box h3{
    font-size: 30px;
    gap: 2px;
  }

  .career-box h3 span{
    font-size: 12px;
    padding-bottom: 2px;
  }

  .career-label{
    font-size: 12px;
    min-height: 36px;
    padding: 0 6px;
  }

  .career-item:nth-child(1) .career-box{
    min-height: 150px;
  }

  .career-item:nth-child(2) .career-box{
    min-height: 220px;
  }

  .career-item:nth-child(3) .career-box{
    min-height: 320px;
  }

  .career-item:nth-child(4) .career-box{
    min-height: 390px;
  }

  .career-item:nth-child(5) .career-box{
    min-height: 470px;
  }
}

/* =========================
   SP
========================= */
@media (max-width: 768px){

  .career-promo{
    position: absolute;
    top: 0;
    left: 16px;
    margin: 0;
    padding-left: 0;
    text-align: left;
    font-size: 32px;
    z-index: 3;
    pointer-events: none;
  }

  .career-flow .scroll{
    overflow: auto;
    padding-top: 120px;
    padding-bottom: 12px;
  }

  /* 横スクロールになるこの幅でだけスクロールヒントを表示 */
  .career-scroll-hint{
    display: flex;
  }

  .career-columns{
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
    width: 760px;
  }

  .career-item{
    width: 144px;
    min-width: 144px;
    max-width: none;
    flex: 0 0 144px;
  }

  .career-rank{
    width: 110px;
    height: 110px;

    top: -120px;

    font-size: 14px;
  }

  .career-box{
    padding: 14px 8px 18px;
  }

  .career-box h3{
    font-size: 28px;
    gap: 2px;
  }

  .career-box h3 span{
    font-size: 12px;
    padding-bottom: 2px;
  }

  .career-label{
    font-size: 12px;
    min-height: 36px;
    padding: 0 6px;
  }

  .career-item:nth-child(1) .career-box{
    min-height: 150px;
  }
  .career-item:nth-child(2) .career-box{
    min-height: 220px;
  }
  .career-item:nth-child(3) .career-box{
    min-height: 320px;
  }
  .career-item:nth-child(4) .career-box{
    min-height: 390px;
  }
  .career-item:nth-child(5) .career-box{
    min-height: 470px;
  }
}



.benefit-block-03 h4{
  margin: 56px 0 34px;
  font-size: clamp(30px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.staff-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

/* カード全体 */
.staff-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #efefef;
  padding: 30px 20px;
  box-shadow: 6px 6px 0 rgba(26, 96, 124, 0.45);
}

/* 画像 */
.staff-image{
  width: 80%; /* ←あなたの設定そのまま */
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.staff-image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* テキスト */
.staff-text{
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.staff-text h5{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.staff-text h5::before{
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 3.5px;
  background: #39b54a;
  flex: 0 0 14px;
}

.staff-text p{
  margin: 0;
  color: #333;
   font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.staff-text p + p{
  margin-top: 4px;
}

/* ========================================
   Benefit 04
======================================== */
.benefit-block-04{
  background: #c6a62b;
  position: relative;
  overflow: hidden;
}

/* 背景テキスト */
.benefit-block-04 .bg-text-strength{
position: absolute;
  top: -60px;
  left: -30px;  /* ←左寄せ */
  font-size: 140px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;

  color: rgba(0,0,0,0.15);

  text-align: left;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

/* タイトル */
.benefit-block-04 h3{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  color: #fff;
  margin-bottom: 60px;
}

.benefit-block-04 h3 .num{
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
}

/* =========================
   グリッド
========================= */
.strength-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* カード */
.strength-item{
  background: #eee;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);

  /* カード内の3要素(タイトル/画像/説明)を親グリッドの行に揃える(subgrid) */
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0; /* 親のgap(40px)を内部に引き継がせない */
}

/* タイトル */
.strength-item h4{
  font-size: 25px;
  font-weight: 700;
  color: #8a6d13;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* アイコン */
.strength-icon img.icon-large{
  width: 135px;
  height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.strength-icon{
display: flex;
  justify-content: center;
  align-items: center; /* アイコンのサイズ差があっても行内で中央に揃える */
	margin-bottom: 30px;
}

.strength-icon img{
  width: 95px;
  height: auto;
}

/* テキスト */
.strength-item p{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #333;
  text-align: left;
}

/* =========================
   下のコメント
========================= */
.strength-comment{
  background: #b99724;
  border-radius: 999px;
  padding: 30px 60px;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.strength-comment p{
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: left;
}

/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 900px){

  .strength-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-block-04 h3,
  .benefit-block-01 h3,
  .benefit-block-02 h3,
  .benefit-block-03 h3{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .benefit-block-04 h3 .num,
  .benefit-block-01 h3 .num,
  .benefit-block-02 h3 .num,
  .benefit-block-03 h3 .num{
    font-size: 60px;
  }

  .benefit-block-02 h3 .num,
  .benefit-block-04 h3 .num{
    order: -1;
  }

  .strength-comment{
    border-radius: 40px;
    padding: 24px;
  }

  .strength-item{
    padding: 30px 20px;
  }
}

/* ========================================
   INTERVIEW
======================================== */
.interview{
  padding: 140px 0;
  background: #f6f6f6;
}

.interview-section{
  padding: 140px 0;
  background: #fff;
}

.interview .section-inner,
.interview-section .section-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* -----------------
 見出し
----------------- */
.interview .section-label{
  margin: 0 0 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #d97706;
  letter-spacing: .08em;
}

/*.interview h2{
  margin: 0;
  text-align: center;
  font-size: clamp(34px,4vw,56px);
  font-weight: 900;
  line-height: 1.3;
  color: #111;
}*/

.interview-lead{
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.interview-lead p{
  display: inline-block;
  margin-top: 80px;
  margin-bottom: 80px;
	margin-left: 80px;
	margin-right: 80px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
}

.interview-section .interview-lead p,
.recruit-entry .interview-lead p,
.benefits .interview-lead p{
  margin-top: 0;
}

/* -----------------
 インタビューギャラリー（横並び5枚）
----------------- */
.interview-gallery{
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
	
}

.interview-gallery-item{
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.interview-gallery-item img{
  transition: transform .3s ease, filter .3s ease;
}

.interview-gallery-item:hover img{
  transform: scale(1.04);
}

.interview-gallery-item:not(.is-active) img{
  filter: brightness(.5);
}

.interview-gallery-item.is-active img{
  filter: brightness(1.15);
}

.interview-gallery-item img{
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

/* #03 は元写真が引き気味で人物が小さいため、頭のサイズ・高さを他と揃えるよう枠内で少し拡大 */
.interview-gallery-item[data-person="3"] img{
  transform: translateY(4%) scale(1.12);
  transform-origin: center center;
}

.interview-gallery-item[data-person="3"]:hover img{
  transform: translateY(4%) scale(1.16);
}

.interview-gallery-item figcaption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 100%);
}

.interview-gallery-item .ig-num{
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .02em;
}

.interview-gallery-item .ig-body{
  display: block;
  margin-top: 8px;
  padding-left: 12px;
  border-left: 3px solid #fff;
}

.interview-gallery-item .ig-group{
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}

.interview-gallery-item .ig-name{
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ドットインジケーターはSPのみ表示（PCでは非表示） */
.gallery-dots{
  display: none;
}

@media (max-width: 768px){
  /* 縦長になるのを防ぐため、横スクロール（スワイプ）に変更 */
  .interview-gallery{
    display: flex;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;   /* iOSで滑らかにスクロール */
    scroll-snap-type: x mandatory;        /* カードがピタッと止まる */
    scroll-padding-left: 0;
    scrollbar-width: none;                /* Firefox：バー非表示（ドットで代替） */
  }
  /* スクロールバーを隠す（Chrome / Safari / Edge） */
  .interview-gallery::-webkit-scrollbar{
    display: none;
  }

  /* スクロール位置インジケーター（ドット） */
  .gallery-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }
  .gallery-dot{
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
  }
  .gallery-dot.is-active{
    background: #111;
    transform: scale(1.25);
  }
  .interview-gallery-item{
    flex: 0 0 78%;          /* 1枚を画面の約78%幅に。次のカードがちらっと見える */
    scroll-snap-align: start;
  }
  .interview-gallery-item img{
    height: 360px;
  }
  .interview-gallery-item[data-person="1"] img,
  .interview-gallery-item[data-person="2"] img{
    object-position: top;
  }
}

/* -----------------
 インタビュー枠
----------------- */
.interview-card{
  margin-top: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 60px;
}

/* クリックで切り替え：アクティブなカードだけ表示 */
.interview-card[data-person]{
  display: none;
}
.interview-card[data-person].is-active{
  display: block;
}

/* -----------------
 前へ／次へナビ
----------------- */
.interview-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.interview-nav-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 1.5px solid #e46a0a;
  border-radius: 999px;
  background: #fff;
  color: #e46a0a;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}

.interview-nav-btn:hover{
  background: #e46a0a;
  color: #fff;
}

.interview-nav-btn .arw{
  font-size: 20px;
  line-height: 1;
}

.interview-nav-btn:disabled{
  opacity: 0;
  pointer-events: none;
}

/* -----------------
 上部プロフィール
----------------- */
.interview-head{
  scroll-margin-top: 90px; /* 前へ/次へでスクロール時、固定ヘッダーに隠れないように */
  margin-bottom: 20px;
}

.interview-number{
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.interview-number .hash{
  font-size: 24px;
  font-weight: 700;
  color: #d97706;
}

.interview-number .num{
  font-size: 24px;
  font-weight: 700;
  color: #d97706;
}

.interview-role{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  line-height: 1.7;
  text-align: left;
}

.interview-name{
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.interview-name .jp{
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  text-align: left;
}

.interview-name .en{
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* -----------------
 メイン写真
----------------- */
.interview-mainimg{
  margin-bottom: 80px;
}

.interview-mainimg img{
  width: 100%;
  display: block;
}

.interview-main-image{
  margin-bottom: 40px;
}

.interview-main-image img{
  width: 100%;
  display: block;
}

/* -----------------
 2カラム本文
----------------- */
.interview-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.interview-col{
  display: flex;
  flex-direction: column;
  gap: 45px;
  text-align: left;
}

/* 右カラム先頭の空プレースホルダー（画像コメントアウト中）を消して
   左右カラムの先頭見出しの高さを揃える */
.interview-col .top-image{
  display: none;
}

.interview-block h4{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 25px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.interview-block h4::before{
  content: "";
  width: 18px;
  height: 18px;
  background: #d97706;
  flex: 0 0 18px;
}

.interview-block p{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 	1.1;
  color: #222;
}

/* 小画像 */
.interview-subimg{
  margin-top: 10px;
}

.interview-subimg img{
  width: 100%;
  display: block;
}

/* -----------------
 下部写真
----------------- */
.interview-bottomimg{
  margin: 10px 0 55px;
}

.interview-bottomimg img{
  width: 100%;
  display: block;
}

.interview-bottom-image{
  margin: 10px 0 40px;
}

.interview-bottom-image img{
  width: 100%;
  display: block;
}

/* -----------------
 最後のコメント
----------------- */
.interview-last h4{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 38px;
  font-weight: 900;
  color: #111;
}

.interview-last h4::before{
  content: "";
  width: 18px;
  height: 18px;
  background: #d97706;
  flex: 0 0 18px;
}

.interview-last p{
  margin: 0;
  font-size: 17px;
  line-height: 2.1;
  color: #222;
  text-align: left;
}

/* QAブロック */
.qa-block{
  text-align: left;
}

.qa-block h4{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.qa-block h4::before{
  content: "";
  width: 18px;
  height: 18px;
  background: #d97706;
  flex: 0 0 18px;
}

.qa-block p{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: #2a2a2a;
  text-align: left;
}

/* -----------------
 SP
----------------- */
@media (max-width: 768px){

  .interview{
    padding: 90px 0;
  }

  .interview .section-inner{
    padding: 0 20px;
  }

  .interview h2{
    font-size: 32px;
  }

  .interview-lead p{
    font-size: 18px;
    line-height: 1.9;
	margin-left: 10px;
    margin-right: 10px;
  }

  .interview-card{
    padding: 28px;
    margin-top: 50px;
  }

  .interview-number .hash{
    font-size: 26px;
  }

  .interview-number .num{
    font-size: 48px;
  }

  .interview-name .jp{
    font-size: 34px;
  }

  .interview-name .en{
    font-size: 18px;
  }

  .interview-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .interview-block h4,
  .interview-last h4{
    font-size: 24px;
    gap: 10px;
  }

  .interview-block h4::before,
  .interview-last h4::before{
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  .interview-block p,
  .interview-last p{
    font-size: 14px;
    line-height: 1.9;
  }
}

/* ========================================
   Recruit Entry
======================================== */
.recruit-entry {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.recruit-entry-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.recruit-entry-links p {
  margin: 0;
  flex: 1 1 300px;   /* 2つのボタンを等分（同じ基準幅で伸縮） */
  min-width: 0;      /* 超狭幅でも文字幅に引っ張られず等分を維持 */
  max-width: 320px;  /* 広い画面で大きくなりすぎないように上限 */
}

.recruit-entry-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;       /* 等分された親(p)いっぱいに広げて両ボタンを同じ幅に */
  min-width: 0;      /* 縮小時にはみ出さないようにする */
  padding: 20px 30px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.recruit-entry-links p:first-child a {
  background: #e46a0a;
}

.recruit-entry-links p:last-child a {
  background: #38aee5;
}

.recruit-entry-links a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* 「アルバイトはこちらから」だけ全体的に少し小さく（お試し） */
#entry-alba a {
  transform: scale(0.88);
}
#entry-alba a:hover {
  transform: scale(0.88) translateY(-2px);
}

.recruit-entry-image{
  width: 100%;
  margin-top: 56px;
  line-height: 0;
}

.recruit-entry-image img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
会社概要
========================= */
.company {
  padding: 120px 0;
  background: #ffffff;
}

.company .section-inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
}

.company .section-label {
  margin-top: 25px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e16f10;
}

/*.company h2 {
  margin: 0 0 56px;
  text-align: center;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #111;
}*/

.company-table {
  border-top: 1px solid #e3b78e;
}

.company-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid #e3b78e;
  align-items: center; /* データを項目欄の縦中央に揃える */
}

.company-head {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  color: #111;
  text-align: center;
  white-space: nowrap;
}

.company-data {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #222;
  text-align: left;
}

.company-data p {
  margin: 0;
}

.company-data p + p {
  margin-top: 10px;
}

.company-row-value {
  align-items: start;
}

.company-row-address {
  align-items: start; /* 地図があり縦に長いので上揃えのまま */
}

/* データは上揃えのまま、項目名(head)だけ縦中央に揃える */
.company-row-value .company-head,
.company-row-address .company-head {
  align-self: center;
}

.company-row-address .company-data {
  padding-top: 2px;
}

.company-address-text {
  margin-bottom: 18px;
}

.company-map-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
}

.company-map-image img {
  display: block;
  width: 100%;
  height: auto;
}

.company-map-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 182px;
  min-height: 46px;
  padding: 10px 24px;
  border: 1.5px solid #222;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #111;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.company-map-link a:hover {
  background: #111;
  color: #fff;
}

.company-data a {
  color: #222;
  text-decoration: none;
  word-break: break-all;
}

.company-data a:hover {
  opacity: 0.7;
}

/* ===============================
フッターロゴ
=============================== */

.footer-logo{

position:relative;
height:0;

}

.footer-logo img{

position:absolute;
left:50%;
transform:translateX(-50%);

top:-110px;

width:200px;
height:auto;

z-index:10;

}


/* ===============================
フッター
=============================== */

footer{

background:#111;
color:#fff;

padding-top:140px;
padding-bottom:40px;

}

.footer-inner{

display:flex;
justify-content:space-between;
max-width:1100px;
margin:auto;

}

.footer-nav ul{

text-align:right;

}

.footer-nav li{

margin-bottom:10px;

}

/* ========================================
   Footer
======================================== */
.footer-area {
  margin-top: 0;
  background: #1a1a1a;
}

.footer-top-bg {
  height: 124px;
  background: #1a1a1a;
}

.footer-main {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  padding: 50px 0 18px;
}

.footer-logo {
  position: absolute;
  top: -98px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 10;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-info,
.footer-nav {
  width: 340px;
}

.footer-info h2 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-info p {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.footer-copy {
  margin: 44px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

/* ========================================
   Responsive — Tablet（1024px以下）
======================================== */
/* ヘッダーメニューは1110px以下でハンバーガーに切り替え（それ以下だと改行するため） */
@media screen and (max-width: 1126px) {

  /* --- Header --- */
  .header-inner {
    padding: 14px 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .site-logo {
    min-width: 0;
  }

  /* --- ハンバーガーボタン --- */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* ×に変形 */
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* --- ドロワーメニュー --- */
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 100px 32px 40px;
    transition: right 0.3s ease;
    z-index: 150;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-nav li {
    border-bottom: 1px solid #e6e6e6;
  }

  .header-nav a {
    display: block;
    padding: 18px 0;
    font-size: 15px;
  }

  .header-nav a::after {
    display: none;
  }

  /* ドロワー時は「オーゼットカンパニーに／ついて」で改行 */
  .drawer-br {
    display: inline;
  }

  .header-nav li.nav-alba,
  .header-nav li.nav-seishain {
    border-bottom: none;
    margin-top: 10px;
    text-align: center;
  }

  .header-nav li.nav-alba a,
  .header-nav li.nav-seishain a {
    display: block;
    text-align: center;
    padding: 14px 22px;
  }

  /* オーバーレイ */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    /* ドロワー(.header-nav)はheader(z-index:100)の子なので、
       overlayをheaderより下・本文より上に置かないとリンクを覆ってしまう */
    z-index: 90;
  }

  .nav-overlay.is-open {
    display: block;
  }
} /* end 1110px header */

@media screen and (max-width: 1024px) {

  /* --- Message --- */
  .message {
    padding: 84px 0 90px;
  }

  .message .section-inner {
    width: min(100% - 32px, 100%);
  }

  .message h2 {
    margin-bottom: 38px;
  }

  .message-layout {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .message-photo {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .message-box {
    width: 100%;
    min-height: 0;
  }

  .message-box-inner {
    min-height: 0;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 24px 32px;
  }

  .message-copy {
    margin-bottom: 26px;
	margin-top: 26px;
    font-size: 30px;
  }

  .message-text {
    max-width: 100%;
  }

  .message-text p {
    font-size: 14px;
    line-height: 1.95;
  }

  .message-sign {
    margin-top: 0;
    padding-top: 18px;
  }

  .message-sign-role,
  .message-sign-name {
    display: block;
  }

  .message-sign-role {
    margin: 0 0 6px;
  }

  .message-sign-en {
    margin-top: 8px;
    font-size: 16px;
  }

  /* --- Benefits --- */
  .benefit-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    min-height: 88px;
  }

  .benefit-card-main {
    font-size: 18px;
    word-break: break-all;
  }

  .benefit-block h3 {
    gap: 10px;
  }

  .benefit-block h3 .num {
    font-size: 50px;
  }

  .benefit-group + .benefit-group {
    margin-top: 34px;
  }

  .benefit-group-title {
    margin-bottom: 18px;
    padding: 14px 16px;
    font-size: 26px;
  }

  /* --- Staff --- */
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .benefit-block-03 h4 {
    margin: 40px 0 24px;
  }

  .staff-image {
    max-width: 320px;
  }

  .staff-text {
    max-width: 500px;
  }

  .staff-text p {
    font-size: 13px;
  }

  /* --- Grid layouts --- */
  .message-profile,
  .benefit-columns,
  .interview-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-flow {
    grid-template-columns: 1fr 1fr;
  }

  .career-flow div:not(:last-child)::after {
    display: none;
  }

  /* --- Company --- */
  .company {
    padding: 80px 0;
  }

  .company .section-inner {
    width: min(100% - 32px, 100%);
  }

  .company h2 {
    margin-bottom: 38px;
  }

  .company-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 0;
  }

  .company-head {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }

  .company-data {
    font-size: 16px;
    line-height: 1.9;
  }

  .company-map-image {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .company-map-link a {
    min-width: 160px;
    min-height: 42px;
    font-size: 14px;
  }

  .company-table dl {
    grid-template-columns: 1fr;
  }

  .company-table dt {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .company-table dd {
    padding-top: 0;
  }

  /* --- Footer --- */
  .footer-area {
    margin-top: 0;
    padding-top: 0;
    background-color: #1a1a1a;
  }

  .footer-top-bg {
    height: 90px;
  }

  .footer-main {
    padding: 50px 0 24px;
  }

  .footer-logo {
    width: 140px;
    top: -41px;
  }

  .footer-inner {
    width: min(100% - 32px, 100%);
    flex-direction: column;
    gap: 28px;
	margin: 0 auto 0 50px;
  }

  .footer-info,
  .footer-nav {
    width: 100%;
  }

  .footer-nav ul {
    text-align: left;
  }

  .footer-copy {
    margin-top: 32px;
  }

  /* --- Interview Section --- */
  .interview-section {
    padding: 90px 0;
  }

  .interview-section .section-inner {
    padding: 0 20px;
  }

  .interview-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .interview-card {
    padding: 28px;
  }

  .qa-block h4 {
    font-size: 20px;
  }

  /* --- iframe --- */
  .company-map-image iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

} /* end 1024px */

/* ========================================
   Responsive — SP（700px以下）
======================================== */
@media screen and (max-width: 700px) {

  /* --- 吹き出し共通 --- */
  .benefit-comment,
  .benefit-comment2,
  .benefit-comment3 {
    border-radius: 40px;
    padding: 24px;
  }

  .about-lead {
    font-size: 24px;
  }
}
	
/* ========================================
   Responsive — SP（599px以下）
======================================== */
@media screen and (max-width: 599px) {

  body {
    line-height: 1.75;
  }

  /* スマホではセクションタイトルを少し小さく */
  section h2 {
    font-size: 32px;
  }

  .staff-text {
    max-width: 320px;
  }

  .section-inner,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, 100%);
  }

  /* --- About --- */
  .about-lead {
    max-width: none;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
    font-size: 24px;
  }

  /* --- FV --- */
  .fv {
    padding: 30px 0 20px;
  }

  /* スマホでは見出しを少し大きく・行間も広げる */
  .fv h2 {
    font-size: clamp(40px, 14.5cqw, 170px);
    line-height: 1.25;
  }

  .fv-marquee {
    transform: scale(0.9);
  }

  .fv-bg {
    width: 115%;
    margin-left: -7.5%;
  }

  .fv-bg-slider {
    width: calc(100% - 28px);
    margin-bottom: 30px;
  }

  /* --- Company --- */
  .company-head {
    white-space: normal;
  }

  /* --- Sections padding --- */
  /*.about,*/
  .message,
  .interview,
  .recruit-entry,
  .company {
    padding: 50px 0;
  }

  /*.benefits {
    padding: 50px 0;
  }*/

  .benefit-block {
    width: calc(100% - 32px);
    padding: 40px 10px 42px;
  }

  .about-text,
  .message-profile,
  .company-table,
  .interview-card,
  .benefit-column {
    padding: 22px 18px;
  }

  /* --- Benefits --- */
  .benefit-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-card {
    min-height: auto;
    padding: 12px 8px;
    box-shadow: 4px 4px 0 rgba(26, 96, 124, 0.35);
  }

  .benefit-card-main {
    font-size: 15px;
  }

  .benefit-card-sub {
    font-size: 11px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .career-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* --- Links / Buttons --- */
  .about-entry-links a,
  .recruit-entry-links a,
  .company-map a {
    width: 100%;
    min-width: 0;
  }

  /* --- Interview --- */
  .interview-image {
    width: 100%;
  }

  /* --- Recruit --- */
  .recruit-entry {
    padding: 54px 0 62px;
  }

  /* --- Interview Section（SP） --- */
  .interview-section {
    padding: 50px 0;
  }

  .interview-section .section-inner{
    padding: 0;
  }

  .interview-card {
    margin-left: 2px;
    margin-right: 2px;
    padding: 20px 16px;
  }

  .qa-block h4 {
    font-size: 18px;
    gap: 10px;
  }

  .qa-block h4::before {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  /* --- Footer --- */
  .footer-inner {
    gap: 22px;
  }

  .about h2 {
    padding-left: 8px;
    padding-right: 8px;
    /* 400px以上は従来通り44px、それより狭い機種だけ少し縮めて折り返しを防ぐ */
    font-size: clamp(34px, 11vw, 44px);
  }

  /* 「会社になるねん。」を1行で固定し、「ん。」だけの折り返しを防ぐ */
  .about h2 .nowrap-line {
    white-space: nowrap;
  }

} /* end 599px */

/* 画面幅がギリギリになったらロゴテキストを隠して画像だけ表示 */
@media screen and (max-width: 420px) {
  .site-logo a span {
    display: none;
  }
}

/* =========================
スマホ用 追従CTAボタン
（採用情報セクションのボタンデザインを踏襲）
========================= */
.sp-fixed-cta {
  display: none; /* PCでは非表示 */
}

@media screen and (max-width: 768px) {
  .sp-fixed-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    gap: 10px;
    justify-content: center;
    padding: 8px 28px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
  }

  .sp-fixed-cta a {
    flex: 1 1 0;
    max-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .sp-fixed-cta a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .sp-fixed-cta-fulltime {
    background: #e46a0a; /* 正社員：採用情報ボタンと同色（オレンジ） */
  }

  .sp-fixed-cta-alba {
    background: #38aee5; /* アルバイト：採用情報ボタンと同色（ブルー） */
  }

  /* 追従ボタンに本文が隠れないよう余白を確保 */
  body {
    padding-bottom: 76px;
  }
}
