/* =============================================
   大翔技研 採用LP — STEP3 完成版CSS
   カラー / タイポ / レイアウト / アニメーション
   ============================================= */

/* ---------- デザイントークン（カラーパレット） ----------
   ■ コンセプト：「現場の誠実さ × 若さとエネルギー」
   メインカラー  : Navy Blue  #1A3A5C（信頼・プロ感）
   アクセント①  : Vivid Orange #F97316（活気・CTAボタン）
   アクセント②  : Warm Gold  #D97706（強調テキスト）
   背景ベース    : #F8F9FA（軽やかなオフホワイト）
   サブ背景      : #EFF4FA（淡いブルーグレー）
   テキスト主    : #1A1A2E
   テキスト副    : #4A5568
   ボーダー      : #CBD5E0
   ============================================= */

:root {
  --navy:        #1A3A5C;
  --navy-dark:   #0F2440;
  --navy-light:  #2E5480;
  --orange:      #F97316;
  --orange-dark: #EA6500;
  --gold:        #D97706;
  --bg-base:     #F8F9FA;
  --bg-sub:      #EFF4FA;
  --bg-dark:     #0F2440;
  --text-main:   #1A1A2E;
  --text-sub:    #4A5568;
  --text-light:  #718096;
  --border:      #CBD5E0;
  --border-light:#E2E8F0;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(26,58,92,.08);
  --shadow-md:   0 6px 24px rgba(26,58,92,.13);
  --shadow-lg:   0 12px 40px rgba(26,58,92,.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.25s cubic-bezier(.4,0,.2,1);
}

/* ---------- リセット & ベース ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-main);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: .8; }

ul, ol { list-style: none; }

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

address { font-style: normal; }

/* ---------- コンテナ ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- セクション共通 ---------- */
.section-block {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

/* タイトル下線 */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---------- 強調テキスト ---------- */
.em-text {
  font-weight: 700;
  color: var(--gold);
}

.em-text.em-orange {
  color: var(--orange);
}

/* ---------- プレースホルダー（灰色枠）---------- */
.placeholder-16-9,
.placeholder-4-3 {
  position: relative;
  width: 100%;
  background: #B8C4CE;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.placeholder-16-9::before {
  content: "";
  display: block;
  padding-top: calc(9 / 16 * 100%);
}

.placeholder-4-3::before {
  content: "";
  display: block;
  padding-top: calc(3 / 4 * 100%);
}

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 500;
  color: #6B7A8D;
  letter-spacing: .05em;
}

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  gap: 16px;
}

.logo-link {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: .02em;
}

.header-nav {}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-list li a {
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-list li a:hover {
  background: var(--bg-sub);
  color: var(--navy);
  opacity: 1;
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
}

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

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* ハンバーガー → ×変形 */
.hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   FV（ファーストビュー）
   ============================================= */
.section-fv {
  position: relative;
}

.fv-bg {
  position: relative;
  width: 100%;
  background: var(--bg-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 16:9比率確保 */
.fv-ratio {
  display: block;
  padding-top: calc(9 / 16 * 100%);
}

/* 背景テクスチャ（グラデーション） */
.fv-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(15,36,64,.85) 0%,
      rgba(26,58,92,.70) 50%,
      rgba(249,115,22,.25) 100%);
  z-index: 1;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,.015) 2px,
    rgba(255,255,255,.015) 4px
  );
  z-index: 1;
}

.fv-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  z-index: 2;
}

.fv-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  padding: 5px 16px;
  border-radius: 100px;
}

.fv-headline {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.fv-sub {
  font-size: clamp(.875rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* =============================================
   ボタン共通
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.1em;
}

/* 電話ボタン */
.btn-tel {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.btn-tel:hover {
  background: var(--bg-sub);
  border-color: var(--bg-sub);
}

/* フォームへボタン */
.btn-contact {
  background: var(--orange);
  color: var(--white);
}

.btn-contact:hover {
  background: var(--orange-dark);
}

/* 送信ボタン */
.btn-submit {
  background: var(--navy);
  color: var(--white);
  padding: 18px 56px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  min-width: 200px;
}

.btn-submit:hover {
  background: var(--navy-dark);
}

/* CTA ボタン群 */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fv-cta .btn-tel {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}

.fv-cta .btn-tel:hover {
  background: rgba(255,255,255,.25);
}

/* =============================================
   FV下スライダー（CSSアニメーション 無限ループ）
   ============================================= */
.section-slider {
  background: var(--white);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* 各スライドの幅 + gap */
:root {
  --slide-w: 280px;
  --slide-gap: 16px;
  /* 10枚分の合計幅 = (280 + 16) * 10 = 2960px */
  --slider-total: calc((var(--slide-w) + var(--slide-gap)) * 10);
}

.slider-track {
  display: flex;
  gap: var(--slide-gap);
  width: max-content;
  animation: slider-loop 32s linear infinite;
  will-change: transform;
}

/* ホバーで一時停止 */
.slider-viewport:hover .slider-track {
  animation-play-state: paused;
}

@keyframes slider-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--slider-total))); }
}

.slide-item {
  flex: 0 0 var(--slide-w);
  width: var(--slide-w);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

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

/* =============================================
   会社について
   ============================================= */
.section-about {
  background: var(--white);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

.about-text p {
  color: var(--text-sub);
  font-size: .975rem;
  line-height: 1.9;
}

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

.about-text .em-text {
  font-size: 1rem;
  line-height: 1.85;
  display: block;
}

/* =============================================
   こんな人歓迎
   ============================================= */
.section-welcome {
  background: var(--bg-sub);
}

.welcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.welcome-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.welcome-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.welcome-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.welcome-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* =============================================
   仕事内容（ジグザグ）
   ============================================= */
.section-works {
  background: var(--white);
}

.works-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.works-block:last-child {
  margin-bottom: 0;
}

.works-block--reverse {
  direction: rtl;
}

.works-block--reverse > * {
  direction: ltr;
}

.works-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

.works-num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.works-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.5;
}

.works-text p {
  color: var(--text-sub);
  font-size: .975rem;
  line-height: 1.9;
}

.works-text p + p {
  margin-top: 14px;
}

/* =============================================
   CTA セクション
   ============================================= */
.section-cta {
  background: var(--navy);
  padding: 56px 0;
}

.cta-box {
  text-align: center;
}

.cta-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

.section-cta .btn-tel {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}

.section-cta .btn-tel:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* =============================================
   カード共通（入社後の流れ・会社の魅力・メンバー紹介）
   ============================================= */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#members .cards-row {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.flow-card,
.charm-card,
.member-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.flow-card:hover,
.charm-card:hover,
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-step {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.card-step span {
  font-size: .65rem;
  opacity: .7;
  margin-right: 4px;
}

.card-photo {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-title {
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.55;
}

.card-body p {
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.85;
}

.card-body p + p {
  margin-top: 10px;
}

/* =============================================
   入社後の流れ
   ============================================= */
.section-flow {
  background: var(--bg-sub);
}

/* =============================================
   会社の魅力
   ============================================= */
.section-charm {
  background: var(--white);
}

.charm-card .card-body .em-text {
  font-size: .9rem;
  line-height: 1.85;
  display: block;
  margin-top: 10px;
}

/* =============================================
   メンバー紹介
   ============================================= */
.section-members {
  background: var(--bg-sub);
}

.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.member-quote {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.9;
  position: relative;
  padding: 16px 20px;
  background: var(--bg-sub);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
}

/* =============================================
   1日の流れ
   ============================================= */
.section-daily {
  background: var(--white);
}

.daily-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 56px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.daily-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* タイムライン縦線 */
.daily-list::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-light);
}

.daily-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 0;
  position: relative;
}

.daily-time {
  flex: 0 0 80px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  padding-right: 0;
}

.daily-dot {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.daily-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}

.daily-desc {
  flex: 1;
  font-size: .925rem;
  color: var(--text-sub);
  padding-left: 16px;
  line-height: 1.7;
}

/* =============================================
   おわりに
   ============================================= */
.section-closing {
  background: var(--bg-sub);
}

.closing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.closing-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

.closing-text p {
  font-size: .975rem;
  color: var(--text-sub);
  line-height: 1.9;
}

.closing-text p + p {
  margin-top: 18px;
}

/* =============================================
   募集要項
   ============================================= */
.section-requirements {
  background: var(--white);
}

.requirements-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.req-table {
  width: 100%;
  border-collapse: collapse;
}

.req-table tr {
  border-bottom: 1px solid var(--border-light);
}

.req-table tr:last-child {
  border-bottom: none;
}

.req-label {
  padding: 20px 28px;
  width: 160px;
  vertical-align: top;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-sub);
  white-space: nowrap;
}

.req-detail {
  padding: 20px 28px;
  vertical-align: top;
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.9;
}

/* =============================================
   応募フォーム
   ============================================= */
.section-contact {
  background: var(--bg-dark);
}

.section-contact .section-header .section-label {
  color: var(--orange);
}

.section-contact .section-title {
  color: var(--white);
}

.section-contact .section-title::after {
  background: var(--orange);
}

.contact-lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

/* honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.badge-required {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
}

.badge-optional {
  font-size: .7rem;
  font-weight: 500;
  padding: 2px 8px;
  background: var(--border-light);
  color: var(--text-light);
  border-radius: 100px;
}

.form-input,
.form-textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 400;
  color: var(--text-main);
  background: var(--bg-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,.12);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  display: block;
  margin-top: 5px;
  font-size: .775rem;
  color: var(--text-light);
}

.form-submit {
  text-align: center;
  margin-top: 36px;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--navy-dark);
  padding: 48px 0 28px;
  text-align: center;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  margin-bottom: 20px;
}

.footer-company {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-address {
  font-size: .825rem;
  margin-bottom: 4px;
}

.footer-tel a {
  font-size: .9rem;
  color: var(--orange);
  font-weight: 700;
}

.footer-copy {
  font-size: .75rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  margin-top: 20px;
}

/* =============================================
   スクロールフェードインアニメーション
   ============================================= */
.fade-in-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   レスポンシブ（768px以下）
   ============================================= */
@media (max-width: 768px) {

  /* ヘッダー */
  .header-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 16px 0;
    display: none;
    z-index: 199;
  }

  .header-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 90%;
    margin: 0 auto;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    padding: 14px 16px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border-light);
  }

  .nav-list li:last-child a {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  /* セクション余白 */
  .section-block {
    padding: 56px 0;
  }

  /* こんな方歓迎：カード内余白を縮小してテキストを横に収める */
  .welcome-item {
    padding: 20px 8px;
  }

  .welcome-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .welcome-text {
    font-size: .8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* FV */
  .fv-headline {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
  }

  .fv-sub {
    font-size: .75rem;
  }

  .fv-eyebrow {
    font-size: .65rem;
  }

  /* スライダー */
  :root {
    --slide-w: 200px;
  }

  /* 会社について */
  .about-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 仕事内容：写真→文章（固定） */
  .works-block,
  .works-block--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
    margin-bottom: 48px;
  }

  .works-block > .works-photo,
  .works-block--reverse > .works-photo {
    order: -1;
  }

  .works-block > .works-text,
  .works-block--reverse > .works-text {
    order: 1;
  }

  /* カード（3列→1列）：写真→文章（固定） */
  .cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-card,
  .charm-card,
  .member-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  /* 1日の流れ */
  .daily-card {
    padding: 28px 20px;
  }

  .daily-list::before {
    left: 64px;
  }

  .daily-time {
    flex: 0 0 56px;
    font-size: .8rem;
  }

  /* おわりに */
  .closing-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 募集要項：縦積み */
  .req-table,
  .req-table tbody,
  .req-table tr,
  .req-table th,
  .req-table td {
    display: block;
    width: 100%;
  }

  .req-label {
    width: 100%;
    white-space: normal;
    padding: 14px 20px 6px;
  }

  .req-detail {
    padding: 6px 20px 18px;
  }

  /* フォーム */
  .contact-form {
    padding: 32px 20px;
  }

  /* CTA ボタン縦並び */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    font-size: .85rem;
    padding: 11px 20px;
  }

  /* アニメーション：モバイルは距離を短く */
  .fade-in-section {
    transform: translateY(16px);
  }
}

@media (max-width: 480px) {
  .fv-ratio {
    padding-top: 120%; /* スマホ：コンテンツが収まる高さに */
  }

  .daily-list::before {
    display: none;
  }

  .daily-item {
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .daily-dot {
    display: none;
  }

  .daily-time {
    flex: 0 0 auto;
    text-align: left;
    font-size: .85rem;
    min-width: 52px;
  }

  .daily-desc {
    padding-left: 8px;
  }
}
