/* ===========================
   リセット・基本設定
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #0A0A0A;
  --color-white: #FAFAF8;
  --color-accent: #4A8569;
  --color-text: #0A0A0A;
  --color-text-light: #6B6961;
  --color-bg: #F5F4F0;
  --color-border: #E8E7E2;
  --font-base: 'Noto Sans JP', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.8;
  font-size: 16px;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   ヘッダー
=========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
  animation: headerReveal 3.2s ease forwards;
}

@keyframes headerReveal {
  0%, 88%  { opacity: 0; pointer-events: none; }
  100%     { opacity: 1; pointer-events: auto; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

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

.logo-name {
  font-family: var(--font-base);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* デスクトップナビ */
.nav-list {
  display: flex;
  gap: 36px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
}

.nav-active {
  color: var(--color-accent) !important;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

/* ===========================
   ハンバーガーボタン（モバイルのみ）
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   ナビオーバーレイ（モバイル用・全画面）
=========================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay .nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.nav-overlay .nav-list a {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.2em;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.nav-overlay .nav-list a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* ===========================
   ヒーロー
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background: url('hero.jpg') center 40% / cover no-repeat;
  background-color: #1a1a1a;
  animation: heroPan 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
}

@keyframes heroPan {
  0%   { transform: scale(1.0)  translate( 1.5%,  0%);   background-position: 45% 38%; }
  40%  { transform: scale(1.07) translate( 0%,    0.8%);  background-position: 50% 42%; }
  100% { transform: scale(1.13) translate(-2%,    1.5%);  background-position: 56% 46%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 40px 24px;
  opacity: 0;
  animation: fadeUp 0.8s 2.8s ease forwards;
}

.hero-tagline {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 28px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 40px;
}

.hero-intro-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 3;
  animation: introOverlay 3s ease forwards;
  pointer-events: none;
}

.hero-intro-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  animation: introLogo 3s ease forwards;
}

.hero-intro-logo img {
  width: clamp(180px, 25vw, 300px);
  height: auto;
}

@keyframes introOverlay {
  0%   { opacity: 1; }
  55%  { opacity: 1; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes introLogo {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  55%  { opacity: 1; }
  75%  { opacity: 0; }
  100% { opacity: 0; }
}


.btn-primary {
  display: inline-block;
  padding: 14px 44px;
  background: #ffffff;
  color: var(--color-black);
  border: 1px solid #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-radius: 2px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.22em;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.6s 3s ease forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   セクション共通
=========================== */
.section {
  padding: 96px 0;
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 16px;
}

.section-line {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto;
  border-radius: 1px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-text .about-catchcopy {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  line-height: 1.4;
}

.about-text .about-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.0;
  margin-bottom: 36px;
  color: var(--color-text);
}

.about-text .about-ceo {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.08em;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: right;
}


/* ===========================
   事業内容
=========================== */
.services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  background: var(--color-black);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.service-img--photo {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.service-img--bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.bar-logo {
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-body {
  padding: 28px;
  flex: 1;
}

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.service-dept {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 2px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}

.service-meta {
  min-height: 64px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 12px;
}


.sns-btn {
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.sns-btn--instagram {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.sns-btn--instagram:hover {
  opacity: 0.65;
}

.sns-btn--instagram .sns-icon i {
  font-size: 28px;
  color: #3a3a3a;
  display: block;
}

/* ===========================
   カード内アイコングリッド
=========================== */
.card-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 20px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.cf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  text-align: center;
  border-radius: 6px;
  transition: background var(--transition);
}

.cf-item:hover {
  background: var(--color-bg);
}

.cf-item i {
  font-size: 28px;
  color: var(--color-black);
  opacity: 0.8;
}

.cf-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* ===========================
   お問い合わせ
=========================== */
.about-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 56px 0 48px;
}

.company-table {
  max-width: 760px;
  margin: 0 auto;
}

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

.contact-intro {
  margin-top: 16px;
  color: var(--color-text-light);
  font-size: 15px;
}

.contact-note {
  margin-top: 10px;
  color: var(--color-text-light);
  font-size: 13px;
  letter-spacing: 0.02em;
}


.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.info-list li {
  display: flex;
  gap: 24px;
  font-size: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.info-label {
  font-weight: 700;
  color: var(--color-black);
  min-width: 140px;
  flex-shrink: 0;
  font-size: 14px;
}

.info-value {
  color: var(--color-text);
  line-height: 1.8;
}

.map-container {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* フォーム */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.required {
  font-size: 11px;
  background: var(--color-accent);
  color: white;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

/* ===========================
   フッター
=========================== */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}


.footer-logo .logo-name {
  color: var(--color-white);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===========================
   採用ページ ヒーロー
=========================== */
.page-hero-tagline {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 18px 0 10px;
}

/* ===========================
   採用 - 数字で魅せる
=========================== */
.recruit-stats {
  background: var(--color-bg);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--color-border);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stat-number {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.stat-number em {
  font-style: normal;
  display: inline-block;
  font-size: clamp(42px, 6vw, 68px);
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===========================
   採用 - 入社までの流れ
=========================== */
.recruit-steps {
  background: var(--color-bg);
}

.steps-list {
  max-width: 680px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 44px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.step-item:last-child::before {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-item:last-child .step-num {
  background: var(--color-accent);
}

.step-content {
  padding-top: 12px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===========================
   採用 - FAQ
=========================== */
.recruit-faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--color-accent);
}

.faq-q i {
  font-size: 12px;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.open {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  padding: 0 4px;
}

/* ===========================
   採用ページ ヒーロー（本体）
=========================== */
.page-hero {
  position: relative;
  padding-top: 70px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: #2A5240;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 60px 24px 40px;
}

.page-hero-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.page-hero-title {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ===========================
   採用メッセージ
=========================== */
.recruit-message {
  background: var(--color-bg);
}

.message-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.message-lead {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.6;
}

.message-box p:last-child {
  color: var(--color-text-light);
  line-height: 1.9;
  font-size: 15px;
}

/* ===========================
   求人カード
=========================== */
.recruit-jobs {
  background: var(--color-white);
}

.job-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.job-header {
  background: #2A5240;
  padding: 36px 40px;
  color: var(--color-white);
}

.job-tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.job-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  margin-bottom: 6px;
}

.job-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.job-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.job-section {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
}

.job-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.job-section-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.job-salary {
  font-size: 16px !important;
  color: var(--color-text) !important;
}

.job-salary strong {
  font-size: 20px;
  color: var(--color-black);
}

.job-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.job-detail-list li {
  font-size: 14px;
  color: var(--color-text-light);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.job-detail-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 11px;
  top: 3px;
}

.job-note {
  font-size: 12px !important;
  color: #999 !important;
  margin-top: 6px;
}

/* こんな方大歓迎グリッド */
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.welcome-item {
  text-align: center;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 16px 8px;
}

.welcome-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
  color: var(--color-black);
}

.welcome-item p {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
  margin: 0 !important;
}

/* 応募ボタン */
.job-apply {
  background: var(--color-bg);
  padding: 32px 40px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.job-apply p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.apply-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-apply-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #2A5240;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.06em;
  transition: background var(--transition), transform var(--transition);
}

.btn-apply-tel:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 18px;
}

.btn-apply-form {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 2px solid var(--color-black);
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-apply-form:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ===========================
   働き方セクション
=========================== */
.recruit-style {
  background: var(--color-bg);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.style-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.style-icon {
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.style-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.style-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================
   スクロールアニメーション
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }
  .welcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .style-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number em {
    font-size: 42px;
  }
  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .contact-form {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .contact-intro {
    font-size: 13px;
  }

  .hero-tagline {
    font-size: 36px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }

  .section {
    padding: 64px 0;
  }
  .job-header {
    padding: 28px 24px;
  }
  .job-body {
    padding: 24px;
  }
  .job-apply {
    padding: 24px;
  }
  .job-grid {
    grid-template-columns: 1fr;
  }
  .welcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .style-grid {
    grid-template-columns: 1fr 1fr;
  }
}
