/* ===========================================
   components.css
   UIコンポーネント（header、card、button等）
   =========================================== */

/* === Skip Link（アクセシビリティ） === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 250, 247, 0.95);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

.site-logo a {
  color: inherit;
}

.global-nav ul {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.global-nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  color: var(--color-text);
}

.global-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.global-nav a:hover {
  opacity: 1;
}

.global-nav a:hover::after {
  width: 100%;
}

/* === ハンバーガーメニュー === */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 24px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

.hero-title {
  font-size: clamp(48px, 9vw, 96px);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 600px;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card a {
  display: block;
  color: inherit;
}

.card a:hover {
  opacity: 1;
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: var(--space-3);
}

.card-meta {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   News List
   ============================================ */

.news-list {
  max-width: 880px;
  margin: 0 auto;
}

.news-item {
  border-bottom: 1px solid var(--color-border);
}

.news-item a {
  display: grid;
  grid-template-columns: 100px 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 16px;
  transition: background 0.3s ease;
  color: inherit;
}

.news-item a:hover {
  background: rgba(217, 119, 6, 0.05);
  opacity: 1;
}

.news-item time {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-text-muted);
}

.news-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  border-radius: 100px;
  text-align: center;
}

.news-item h3 {
  font-size: 16px;
  font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--color-primary);
  color: white;
  padding: var(--space-6) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer-grid h4 {
  font-size: 14px;
  margin-bottom: 16px;
  color: white;
}

.footer-grid ul {
  font-size: 13px;
  line-height: 2;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: white;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb {
  font-size: 13px;
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--color-text-muted);
}

/* ============================================
   Fade In Animation
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .site-header .container {
    height: 60px;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 100px 32px 32px;
    transition: right 0.3s ease;
    z-index: 150;
  }

  .global-nav.is-open {
    right: 0;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-item a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/* ============================================
   Page Hero（一覧ページ用）
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  margin: var(--space-2) 0 var(--space-3);
  letter-spacing: 0.05em;
}

.page-hero-desc {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.8;
}

/* ============================================
   Shop Archive Card（店舗一覧カード）
   ============================================ */

.shop-archive-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.shop-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.shop-archive-card a {
  display: block;
  color: inherit;
}

.shop-archive-card a:hover {
  opacity: 1;
}

.shop-archive-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.shop-archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-archive-card:hover .shop-archive-img img {
  transform: scale(1.05);
}

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 24px;
}

.shop-archive-body {
  padding: var(--space-3);
}

.shop-archive-title {
  font-size: 24px;
  margin: 8px 0 16px;
}

.shop-archive-address,
.shop-archive-hours {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.shop-archive-excerpt {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

.shop-archive-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   Shop Single（店舗詳細）
   ============================================ */

.shop-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--color-primary);
  color: white;
  overflow: hidden;
  min-height: 400px;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.shop-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, transparent 100%);
}

.shop-hero-content {
  position: relative;
  z-index: 1;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  margin: var(--space-2) 0 var(--space-2);
  letter-spacing: 0.05em;
}

.shop-hero-address {
  font-size: 16px;
  opacity: 0.9;
}

/* === Shop Info Layout === */

.shop-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-3);
}

.shop-info-side {
  position: sticky;
  top: 100px;
  align-self: start;
}

.shop-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.shop-info-card-title {
  font-size: 18px;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
}

.shop-section-title {
  font-size: 28px;
  margin-bottom: var(--space-3);
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
}

.shop-content {
  font-size: 16px;
  line-height: 1.9;
}

.shop-content p {
  margin-bottom: 1em;
}

/* === Shop Info Table === */

.shop-info-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-info-table th,
.shop-info-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
}

.shop-info-table th {
  width: 80px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.shop-info-table tr:last-child th,
.shop-info-table tr:last-child td {
  border-bottom: none;
}

.shop-info-table a {
  color: var(--color-accent);
  font-weight: 600;
}

/* === Features List === */

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-2);
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 8px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  font-size: 14px;
  border: 1px solid var(--color-border);
}

/* === Map Embed === */

.map-embed {
  margin-top: var(--space-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* === Pagination === */

.pagination {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--color-border);
  font-size: 14px;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  opacity: 1;
}

.pagination .page-numbers.current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* === Responsive === */

@media (max-width: 768px) {
  .shop-info-grid {
    grid-template-columns: 1fr;
  }

  .shop-info-side {
    position: static;
  }

  .shop-archive-img {
    height: 200px;
  }

  .page-hero,
  .shop-hero {
    padding: 120px 0 60px;
  }
}

/* ============================================
   Category Archive（商品カテゴリー一覧）
   ============================================ */

.category-archive-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.category-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-archive-card a {
  display: block;
  color: inherit;
}

.category-archive-card a:hover {
  opacity: 1;
}

.category-archive-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.category-archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-archive-card:hover .category-archive-img img {
  transform: scale(1.05);
}

.category-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
}

.category-archive-body {
  padding: var(--space-3);
}

.category-archive-title {
  font-size: 22px;
  margin: 8px 0 12px;
}

.category-archive-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.category-archive-link {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   Category Single（商品カテゴリー詳細）
   ============================================ */

.category-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-3);
}

.category-info-side {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.category-thumb {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.category-thumb img {
  width: 100%;
  height: auto;
}

.featured-products {
  background: var(--color-bg-alt);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: 16px;
  line-height: 2;
}

.featured-products p {
  margin-bottom: 0;
}

/* === Shop List in Sidebar === */

.shop-list {
  list-style: none;
  padding: 0;
}

.shop-list li {
  border-bottom: 1px solid var(--color-border);
}

.shop-list li:last-child {
  border-bottom: none;
}

.shop-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.shop-list a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.shop-list-arrow {
  color: var(--color-accent);
  font-weight: 600;
}

/* === Category CTA Card === */

.category-cta-card {
  background: var(--color-primary);
  color: white;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.category-cta-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.category-cta-card p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: var(--space-2);
}

/* === Responsive === */

@media (max-width: 768px) {
  .category-info-grid {
    grid-template-columns: 1fr;
  }

  .category-info-side {
    position: static;
  }

  .category-archive-img {
    height: 180px;
  }
}

/* ============================================
   News Filter（カテゴリーフィルター）
   ============================================ */

.news-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.news-filter-list a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  font-weight: 500;
}

.news-filter-list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  opacity: 1;
}

.news-filter-list a.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* ============================================
   Single Post（お知らせ詳細）
   ============================================ */

.single-post-hero {
  background: var(--color-bg-alt);
  padding: 160px 0 60px;
  text-align: center;
}

.single-post-meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-3);
}

.single-post-meta time {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.single-post-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.single-post-thumb {
  margin: var(--space-4) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.single-post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post-content {
  font-size: 16px;
  line-height: 2;
  margin-top: var(--space-4);
}

.single-post-content p {
  margin-bottom: 1.5em;
}

.single-post-content h2,
.single-post-content h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
}

.single-post-content h2 {
  font-size: 24px;
}

.single-post-content h3 {
  font-size: 20px;
}

.single-post-content ul,
.single-post-content ol {
  margin: 1em 0 1em 2em;
  padding-left: 0;
}

.single-post-content ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}

.single-post-content ol li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
}

.single-post-content blockquote {
  background: var(--color-bg-alt);
  padding: var(--space-3);
  border-left: 4px solid var(--color-accent);
  margin: 1.5em 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.single-post-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.single-post-content img {
  border-radius: var(--radius-md);
  margin: 1em 0;
}

/* === Single Post Navigation === */

.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.single-post-nav a {
  display: block;
  padding: var(--space-3);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.single-post-nav a:hover {
  background: var(--color-accent);
  color: white;
  opacity: 1;
}

.single-post-nav-next {
  text-align: right;
}

.nav-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.single-post-nav a:hover .nav-label {
  color: rgba(255, 255, 255, 0.8);
}

.nav-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .single-post-nav {
    grid-template-columns: 1fr;
  }

  .single-post-nav-next {
    text-align: left;
  }
}

/* ============================================
   About / Recruit Pages
   ============================================ */

.about-section {
  margin-bottom: var(--space-6);
}

.about-section:last-child {
  margin-bottom: 0;
}

/* === 代表挨拶 === */

.about-greeting p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 1.2em;
}

.about-greeting-sign {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  margin-top: var(--space-3);
}

/* === 企業情報テーブル === */

.about-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--color-primary);
}

.about-table th,
.about-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.7;
}

.about-table th {
  width: 30%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-table th,
  .about-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .about-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
}

/* === 沿革 === */

.history-list {
  list-style: none;
  padding: 0;
  border-left: 3px solid var(--color-accent);
  margin-left: 16px;
}

.history-list li {
  position: relative;
  padding-left: var(--space-4);
  padding-bottom: var(--space-4);
}

.history-list li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 4px;
  width: 17px;
  height: 17px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid white;
}

.history-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.history-event strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.history-event p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === 採用：募集職種 === */

.recruit-jobs {
  display: grid;
  gap: var(--space-3);
}

.recruit-job-card {
  background: white;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.recruit-job-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.recruit-job-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.recruit-job-place {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* === 採用：待遇 === */

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/* === 採用CTA === */

.recruit-cta {
  background: var(--color-primary);
  color: white;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  text-align: center;
}

.recruit-cta h3 {
  font-size: 24px;
  margin-bottom: var(--space-2);
}

.recruit-cta p {
  margin-bottom: var(--space-2);
  opacity: 0.9;
}

.recruit-tel {
  font-size: 24px !important;
  font-weight: 600;
  margin: var(--space-3) 0 !important;
}

.recruit-cta .btn {
  background: var(--color-accent);
}

/* ============================================
   Contact Page / Form
   ============================================ */

.contact-tel-card {
  background: var(--color-primary);
  color: white;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-tel-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-tel-hours {
  font-size: 14px;
  opacity: 0.9;
}

/* === Contact Form === */

.contact-form .form-row {
  margin-bottom: var(--space-3);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-form .required {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: var(--font-sans);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form .form-submit {
  text-align: center;
  margin-top: var(--space-4);
}

.contact-form .wpcf7-submit {
  background: var(--color-accent);
  color: white;
  padding: 16px 64px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.contact-form .wpcf7-submit:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wpcf7-not-valid-tip {
  color: var(--color-error);
  font-size: 13px;
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: var(--radius-md);
  padding: 16px !important;
  margin-top: var(--space-3) !important;
}