/* 炭火焼鳥 鳥心 - 静的サイトスタイル（参照: React page.tsx 構成） */
:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --gray-50: #f9fafb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-50: #f0fdf4;
  --green-200: #bbf7d0;
  --green-600: #16a34a;
  --green-800: #166534;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-logo: "Pacifico", serif;
  --container-max: 1280px;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* スキップリンク（キーボード利用者向け・フォーカス時のみ表示） */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--amber-600);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.skip-link:focus {
  clip-path: none;
  clip: auto;
  overflow: visible;
  outline: 3px solid var(--gray-900);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  margin: 0;
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 0.25rem 0;
}

.logo:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
  border-radius: 2px;
}

.header:not(.scrolled) .logo { color: var(--white); }
.header.scrolled .logo { color: var(--amber-600); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  background: none;
  border: none;
  padding: 0.25rem 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-link:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
  border-radius: 2px;
}

.header:not(.scrolled) .nav-link { color: var(--white); }
.header:not(.scrolled) .nav-link:hover { color: #fcd34d; }
.header.scrolled .nav-link { color: var(--gray-700); }
.header.scrolled .nav-link:hover { color: var(--amber-600); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.header:not(.scrolled) .menu-toggle { color: var(--white); }
.header.scrolled .menu-toggle { color: var(--gray-700); }

.menu-toggle .menu-icon-close { display: none; }
.menu-toggle .menu-icon-open { display: block; font-size: 1.5rem; }
.header.menu-open .menu-toggle .menu-icon-close { display: block; font-size: 1.5rem; }
.header.menu-open .menu-toggle .menu-icon-open { display: none; }

.nav-mobile {
  display: none;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.header.menu-open .nav-mobile { display: block; }

.nav-mobile-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  font: inherit;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.nav-mobile-link:hover {
  background: var(--amber-50);
  color: var(--amber-600);
}

.nav-mobile-link-cta {
  background: var(--amber-600);
  color: var(--white);
}

.nav-mobile-link-cta:hover {
  background: var(--amber-700);
  color: var(--white);
}

.nav-mobile-link:focus-visible,
.nav-mobile-link-cta:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: var(--amber-600);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-sm:hover {
  background: var(--amber-700);
  box-shadow: var(--shadow-xl);
}

.btn:focus-visible {
  outline: 2px solid var(--gray-900);
  outline-offset: 2px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  background: var(--amber-600);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-lg:hover {
  background: var(--amber-700);
  box-shadow: var(--shadow-xl);
}

.btn-outline-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.btn-outline-hero:hover {
  background: var(--white);
  color: var(--gray-900);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-logo);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.sm-only { display: block; }
@media (min-width: 640px) { .sm-only { display: none; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.875rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(0.5rem); }
}

/* Sections common */
.section {
  padding: 3rem 0;
}

@media (min-width: 640px) { .section { padding: 4rem 0; } }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

.section-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .section-header { margin-bottom: 3rem; } }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  padding: 0 1rem;
}

.section-lead {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .section-lead { font-size: 1.125rem; } }

.subsection-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin: 0 0 2rem;
}

@media (min-width: 640px) { .subsection-title { font-size: 1.5rem; margin-bottom: 3rem; } }

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.about-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) { .about-image { height: 20rem; } }
@media (min-width: 768px) { .about-image { height: 24rem; } }

.about-subtitle {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .about-subtitle { font-size: 1.5rem; margin-bottom: 1rem; } }

.about-text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (min-width: 640px) { .about-text { font-size: 1rem; margin-bottom: 1rem; } }

.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .about-features { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.feature-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) { .feature-card { padding: 1.5rem; } }

.feature-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .feature-icon-wrap { width: 3rem; height: 3rem; margin-bottom: 1rem; }
}

.feature-icon {
  font-size: 1.25rem;
  color: var(--amber-600);
}

@media (min-width: 640px) { .feature-icon { font-size: 1.5rem; } }

.feature-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .feature-title { font-size: 1.125rem; } }

.feature-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (min-width: 640px) { .feature-desc { font-size: 0.875rem; } }

/* Business */
.business-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .business-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.business-card {
  background: var(--gray-50);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s;
}

.business-card:hover {
  box-shadow: var(--shadow-xl);
}

.business-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 640px) { .business-card img { height: 12rem; } }

.business-card-body {
  padding: 1rem;
}

@media (min-width: 640px) { .business-card-body { padding: 1.5rem; } }

.business-card-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .business-card-head { margin-bottom: 1rem; } }

.business-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: 0.5rem;
  margin-right: 0.75rem;
}

@media (min-width: 640px) {
  .business-icon-wrap { width: 3rem; height: 3rem; margin-right: 1rem; }
}

.business-icon {
  font-size: 1.25rem;
  color: var(--amber-600);
}

@media (min-width: 640px) { .business-icon { font-size: 1.5rem; } }

.business-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .business-card-title { font-size: 1.25rem; } }

.business-card-body > p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (min-width: 640px) { .business-card-body > p { font-size: 1rem; } }

.menu-box {
  margin-top: 3rem;
  background: var(--amber-50);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .menu-box { margin-top: 4rem; padding: 2rem; }
}

.menu-box-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
}

@media (min-width: 640px) { .menu-box-title { font-size: 1.5rem; margin-bottom: 1.5rem; } }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.menu-item {
  text-align: center;
}

.menu-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .menu-item h4 { font-size: 1rem; } }

.menu-item p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber-600);
}

@media (min-width: 640px) { .menu-item p { font-size: 1rem; } }

.menu-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
}

@media (min-width: 640px) { .menu-note { margin-top: 1rem; font-size: 0.875rem; } }

/* Results / Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { .achievements-grid { gap: 1.5rem; margin-bottom: 4rem; } }
@media (min-width: 768px) {
  .achievements-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 5rem; }
}

.achievement-card {
  text-align: center;
  background: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) { .achievement-card { padding: 1.5rem; } }

.achievement-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--amber-600);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .achievement-number { font-size: 2.25rem; } }
@media (min-width: 768px) { .achievement-number { font-size: 2.5rem; } }

.achievement-unit {
  font-size: 1.25rem;
}

@media (min-width: 640px) { .achievement-unit { font-size: 1.5rem; } }
@media (min-width: 768px) { .achievement-unit { font-size: 1.875rem; } }

.achievement-label {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .achievement-label { font-size: 1rem; margin-bottom: 0.5rem; } }
@media (min-width: 768px) { .achievement-label { font-size: 1.125rem; } }

.achievement-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-600);
}

@media (min-width: 640px) { .achievement-desc { font-size: 0.875rem; } }

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.review-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) { .review-card { padding: 1.5rem; } }

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .review-header { margin-bottom: 1rem; } }

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--amber-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: var(--amber-600);
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .review-avatar { width: 3rem; height: 3rem; margin-right: 1rem; font-size: 1.25rem; }
}

.review-name {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .review-name { font-size: 1rem; } }

.review-stars {
  color: var(--amber-400);
  font-size: 0.75rem;
}

@media (min-width: 640px) { .review-stars { font-size: 0.875rem; } }

.review-text {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (min-width: 640px) { .review-text { font-size: 0.875rem; margin-bottom: 1rem; } }

.review-date {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.media-box {
  margin-top: 3rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .media-box { margin-top: 4rem; padding: 2rem; }
}

.media-box .subsection-title {
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .media-box .subsection-title { margin-bottom: 2rem; } }

.media-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .media-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.media-heading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-600);
}

@media (min-width: 640px) { .media-heading { font-size: 1.125rem; margin-bottom: 1rem; } }

.media-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.media-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-700);
}

@media (min-width: 640px) { .media-list li { font-size: 0.875rem; } }

.media-list li i {
  color: var(--amber-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Recruit */
.recruit-intro {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .recruit-intro { grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 4rem; }
}

.recruit-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) { .recruit-image { height: 20rem; } }
@media (min-width: 768px) { .recruit-image { height: 24rem; } }

.recruit-merits-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .recruit-merits-title { font-size: 1.5rem; margin-bottom: 1.5rem; } }

.merit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .merit-item { margin-bottom: 1rem; } }

.merit-icon-wrap {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--amber-600);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .merit-icon-wrap { width: 2rem; height: 2rem; margin-right: 1rem; font-size: 1rem; }
}

.merit-title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .merit-title { font-size: 1rem; } }

.merit-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-700);
}

@media (min-width: 640px) { .merit-desc { font-size: 0.875rem; } }

.positions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) { .positions { gap: 2rem; } }

.position-card {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) { .position-card { padding: 1.5rem; } }
@media (min-width: 768px) { .position-card { padding: 2rem; } }

@media (min-width: 1024px) {
  .position-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 640px) { .position-card { gap: 2rem; } }

.position-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .position-head { margin-bottom: 1rem; } }

.position-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .position-title { font-size: 1.25rem; } }

.position-badge {
  background: var(--amber-100);
  color: var(--amber-800);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 640px) { .position-badge { padding: 0.25rem 0.75rem; font-size: 0.875rem; } }

.position-salary {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-600);
}

@media (min-width: 640px) { .position-salary { font-size: 1.125rem; margin-bottom: 1rem; } }

.position-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (min-width: 640px) { .position-desc { font-size: 1rem; } }

.position-detail-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .position-detail-title { font-size: 1rem; } }

.position-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.position-list li {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .position-list li { font-size: 0.875rem; } }

.position-list li i {
  color: var(--amber-600);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.recruit-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 640px) { .recruit-cta { margin-top: 3rem; } }

.recruit-cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--gray-600);
  padding: 0 1rem;
}

@media (min-width: 640px) { .recruit-cta-note { margin-top: 1rem; font-size: 0.875rem; } }

.recruit-note {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  color: var(--gray-600);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.contact-info-card {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-info-card { padding: 2rem; margin-bottom: 2rem; }
}

.contact-info-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .contact-info-title { font-size: 1.5rem; margin-bottom: 1.5rem; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .contact-info-item { margin-bottom: 1.5rem; } }

.contact-info-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--amber-600);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .contact-info-icon { width: 2rem; height: 2rem; margin-right: 1rem; font-size: 1rem; }
}

.contact-info-label {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

@media (min-width: 640px) { .contact-info-label { font-size: 1rem; } }

.contact-info-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-700);
}

.contact-info-text a {
  color: var(--amber-600);
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) { .contact-info-text { font-size: 0.875rem; } }

.contact-info-text p {
  margin: 0 0 0.25rem;
}

.contact-info-closed {
  color: var(--red-600);
  margin-top: 0.25rem;
}

.contact-map-wrap {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-map-wrap iframe {
  display: block;
}

@media (min-width: 640px) {
  .contact-map-wrap iframe { height: 300px; }
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

@media (min-width: 640px) { .contact-form-wrap { padding: 2rem; } }

.contact-form-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

@media (min-width: 640px) { .contact-form-title { font-size: 1.5rem; margin-bottom: 1.5rem; } }

.contact-form .form-group {
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .contact-form .form-group { margin-bottom: 1.5rem; } }

.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .contact-form label { font-size: 0.875rem; } }

.required {
  color: var(--red-500);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--amber-600);
  border-color: transparent;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 0.875rem; padding: 0.75rem 1rem; }
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-char-count {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  display: none;
}

@media (min-width: 640px) { .form-status { font-size: 0.875rem; padding: 1rem; } }

.form-status.success {
  display: block;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
}

.form-status.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-status .status-icon {
  margin-right: 0.5rem;
}

.form-status.success .status-icon {
  color: var(--green-600);
}

.form-status.error .status-icon {
  color: #b91c1c;
}

.form-status.success,
.form-status.error {
  display: flex;
  align-items: center;
}

.form-btn-loading,
.form-btn-loading-text {
  display: none;
}

.form-btn-icon,
.form-btn-text {
  display: inline;
}

#form-submit-btn.loading .form-btn-icon,
#form-submit-btn.loading .form-btn-text {
  display: none;
}

#form-submit-btn.loading .form-btn-loading,
#form-submit-btn.loading .form-btn-loading-text {
  display: inline;
}

.form-btn-loading {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
}

.footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

@media (min-width: 768px) {
  .footer .container { padding-top: 3rem; padding-bottom: 3rem; }
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.footer-logo {
  margin: 0 0 0.75rem;
  font-family: var(--font-logo);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--amber-400);
}

@media (min-width: 640px) { .footer-logo { font-size: 1.25rem; margin-bottom: 1rem; } }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-300);
}

@media (min-width: 640px) { .footer-info-item { font-size: 0.875rem; } }

.footer-info-item a {
  color: inherit;
  text-decoration: none;
}

.footer-info-item a:hover {
  color: var(--amber-400);
}

.footer-info-item i {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-info-item i { width: 1.25rem; height: 1.25rem; }
}

.footer-closed {
  color: var(--red-400);
}

.footer-menu-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-400);
}

@media (min-width: 640px) { .footer-menu-title { font-size: 1.125rem; margin-bottom: 1rem; } }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: block;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.75rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.2s;
}

@media (min-width: 640px) { .footer-link { font-size: 0.875rem; } }

.footer-link:hover {
  color: var(--amber-400);
}

.footer-link:focus-visible {
  outline: 2px solid var(--amber-400);
  outline-offset: 2px;
}

.link-cta:focus-visible {
  outline: 2px solid var(--amber-600);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .footer-social { margin-bottom: 1rem; } }

.footer-social-link {
  color: var(--gray-300);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 640px) {
  .footer-social-link { width: 2rem; height: 2rem; }
}

.footer-social-link:hover {
  color: var(--amber-400);
}

.footer-social-link i {
  font-size: 1.25rem;
}

@media (min-width: 640px) { .footer-social-link i { font-size: 1.5rem; } }

.footer-access {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}

@media (min-width: 640px) { .footer-access { font-size: 0.875rem; } }

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) { .footer-bottom { margin-top: 2rem; padding-top: 2rem; } }

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}

@media (min-width: 640px) { .footer-bottom p { font-size: 0.875rem; } }

.footer-credit {
  color: var(--amber-400);
  text-decoration: none;
}

.footer-credit:hover {
  color: #fcd34d;
}

/* FAQ */
.faq-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 1rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-q {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.faq-a {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
  padding-left: 0;
}

.faq-cta {
  text-align: center;
  margin: 0;
}

.link-cta {
  color: var(--amber-600);
  font-weight: 500;
  text-decoration: none;
}

.link-cta:hover {
  text-decoration: underline;
}

.footer-operator {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}
