/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本設定 */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: #cd5e3c;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #cd5e3c;
  box-shadow: 0 4px 10px rgba(205, 94, 60, 0.2);
}

.btn:hover {
  background-color: transparent;
  color: #cd5e3c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(205, 94, 60, 0.3);
}

.section-padding {
  padding: 4rem 0;
}

/* セクションタイトルのスタイルを更新 - より際立たせる */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #cd5e3c;
  margin: 1rem auto;
}

/* タイトル下の装飾線を強調 */

/* タイトルを包む新しいコンテナ */
.section-title-container {
  text-align: center;
  margin-bottom: 3rem;
}

/* タイトル前後の装飾要素 */
.section-title-container:before,
.section-title-container:after {
  content: "◆";
  color: #cd5e3c;
  font-size: 1.5rem;
  position: relative;
  top: -0.5rem;
  margin: 0 15px;
  display: inline-block;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

p {
  margin-bottom: 20px;
}

.bg-light {
  background-color: #f8f9fa;
}

/* 背景パターン */
.bg-pattern {
  background-color: #f8f9fa;
  position: relative;
}

.bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cd5e3c' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.bg-pattern > * {
  position: relative;
  z-index: 1;
}

/* ヘッダー */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
}

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

/* ロゴスタイル */
.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 42px;
  width: auto;
}

.logo-image:hover {
  transform: scale(1.05);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* デスクトップナビゲーション */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #cd5e3c;
}

/* モバイルナビゲーション */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 2rem;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* オーバーレイ */
.mobile-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ヒーローセクション */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
   min-height: calc(var(--vh, 1vh) * 100) !important;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  width: 100%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ご挨拶セクション */
.greeting {
  position: relative;
  overflow: hidden;
}

.greeting:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #f9f9f9;
  z-index: -1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.greeting-content {
  max-width: 800px;
  margin: 0 auto;
}

.greeting-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.ceo-signature {
  text-align: right;
  margin-top: 2rem;
  font-weight: 600;
}

/* 経営理念セクション */
.philosophy {
  position: relative;
  overflow: visible; /* ← 影を切らない */
}

.philosophy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.philosophy-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1);
  will-change: transform, box-shadow;
  z-index: 0;
}

@media (hover:hover) and (pointer:fine) {
  .philosophy-card:hover,
  .philosophy-card:focus-within {
    transform: translateY(-5px);
    box-shadow:
      0 6px 12px rgba(205,94,60,0.25),
      0 14px 28px rgba(205,94,60,0.35);
    z-index: 1;
  }
}

.philosophy-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.philosophy-statement {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-statement blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  color: #cd5e3c;
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.philosophy-statement p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* 業務内容セクション */
.services {
  position: relative;
  overflow: visible; /* ← 影を切らない */
}

.services:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cd5e3c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1; /* 背景を背面に固定 */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  /* 初期は控えめな影でもOK */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1); /* ← 影もアニメ */
  will-change: transform, box-shadow;
  z-index: 0;
}

@media (hover:hover) and (pointer:fine) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-5px);
    /* ← #cd5e3c の2段影で“ふわっ” */
    box-shadow:
      0 6px 12px rgba(205,94,60,0.25),
      0 14px 28px rgba(205,94,60,0.35);
    z-index: 1; /* 近隣カードより前面へ */
  }
}

.service-icon { margin-bottom: 1.5rem; }

.service-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* 会社概要セクション */
.company-overview {
  background-color: #fff;
}

.company-info-grid {
  max-width: 800px;
  margin: 0 auto;
}

.company-info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  font-weight: 600;
  color: #cd5e3c;
}

.info-row dd {
  line-height: 1.6;
}

/* 沿革セクション */
.company-history {
  position: relative;
}

.history-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #cd5e3c;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-year {
  background-color: #cd5e3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-left: 2rem;
  flex: 1;
}

.timeline-content h3 {
  color: #cd5e3c;
  margin-bottom: 0.5rem;
}

/* 主な取引先セクション */
.business-partners {
  background-color: #fff;
}

.partners-content {
  max-width: 1000px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.partner-category {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-category h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.partner-category ul {
  list-style: none;
}

.partner-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.partner-category li:last-child {
  border-bottom: none;
}

.partners-note {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.note-disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* アクセス情報セクション */
.access-info {
  background-color: #f9f9f9;
}

.access-content {
  max-width: 1000px;
  margin: 0 auto;
}

.access-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.access-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.access-text {
  line-height: 1.6;
}

.business-hours {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 品質管理・認証セクション */
.quality-certifications {
  background-color: #fff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.certification-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cert-icon {
  margin-bottom: 1.5rem;
}

.certification-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ページヘッダー */
.page-header {
  background: linear-gradient(135deg, #cd5e3c, #a04a32);
  color: white;
  text-align: center;
  padding: 6rem 0 4rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* フッター */
footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #cd5e3c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #cd5e3c;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

/* FAQページのスタイル */
.faq-controls {
  background-color: #f8f9fa;
  padding: 2rem 0;
}

.faq-controls-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.search-box {
  margin-bottom: 2rem;
}

.search-input-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
}

.search-input:focus {
  border-color: #cd5e3c;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #cd5e3c;
  background: white;
  color: #cd5e3c;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
  background: #cd5e3c;
  color: white;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.category-tag {
  background: #cd5e3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.question-text {
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
}

.chevron {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.answer-content {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  background-color: transparent;
  color: #cd5e3c;
  border: 2px solid #cd5e3c;
}

.btn-outline:hover {
  background-color: #cd5e3c;
  color: white;
}

/* パンくずナビ */
.breadcrumb {
  background-color: #f8f9fa;
  padding: 1rem 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #cd5e3c;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #666;
}

.breadcrumb-current {
  color: #666;
  font-weight: 500;
}

/* 商品紹介セクション */
.product-intro {
  background-color: #f8f9fa;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-main {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.intro-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.2rem;
}

/* 商品カテゴリーセクション */
.beef-category,
.pork-category,
.chicken-category,
.processed-category {
  position: relative;
}

.category-header {
  text-align: center;
  margin-bottom: 60px;
}

.category-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #cd5e3c;
}

.category-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-3px);
}

.product-item h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.product-item p {
  line-height: 1.6;
  color: #666;
}

/* 加工情報セクション */
.processing-info {
  background-color: #f8f9fa;
}

.processing-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.processing-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.processing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.processing-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.processing-icon {
  margin-bottom: 1.5rem;
}

.processing-item h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.processing-item p {
  line-height: 1.6;
  color: #666;
}

/* 商品CTA */
.product-cta,
.products-cta {
  text-align: center;
}

.product-cta .cta-content h2,
.products-cta .cta-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.product-cta .cta-content p,
.products-cta .cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.product-cta .cta-buttons,
.products-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 取扱商品ページ */
.products-intro {
  background-color: #f8f9fa;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-main {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.intro-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  flex-shrink: 0;
}

.feature-text h3 {
  color: #cd5e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  height: 200px;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-content {
  padding: 2rem;
}

.category-content h3 {
  color: #cd5e3c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-content p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #666;
}

.category-features {
  list-style: none;
  margin-bottom: 2rem;
}

.category-features li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.category-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #cd5e3c;
  font-weight: bold;
}

.category-btn {
  display: inline-block;
  background: #cd5e3c;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.category-btn:hover {
  background: #a04a32;
}

/* 加工サービス */
.services-content {
  max-width: 1000px;
  margin: 0 auto;
}

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-item h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-item p {
  line-height: 1.6;
  color: #666;
}

/* お問い合わせページ */
.contact-form {
  background-color: #fff;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.required {
  color: #cd5e3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #cd5e3c;
}

.form-submit {
  text-align: center;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 直接連絡先セクション */
.direct-contact {
  background-color: #f9f9f9;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.contact-hours {
  color: #666;
  line-height: 1.6;
}

/* 特徴セクション */
.chicken-features,
.offal-features,
.processed-features {
  background-color: #f9f9f9;
}

.features-content,
.offal-features .features-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  line-height: 1.6;
  color: #666;
}

/* 調理方法セクション */
.cooking-methods {
  background-color: #f8f9fa;
}

.cooking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.cooking-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cooking-icon {
  margin-bottom: 1.5rem;
}

.cooking-item h3 {
  color: #cd5e3c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cooking-item p {
  line-height: 1.6;
  color: #666;
}

/* 用途別おすすめセクション */
.usage-recommendations {
  background-color: #fff;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.usage-item {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  text-align: center;
}

.usage-item:hover {
  transform: translateY(-5px);
  border-top: 4px solid #cd5e3c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.usage-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usage-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.usage-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }

  .hamburger-menu {
    display: none;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-text p {
    font-size: 1.3rem;
  }

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

  .page-header h1 {
    font-size: 4rem;
  }

  .intro-content {
    grid-template-columns: 1fr 2fr;
  }

  .info-row {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

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

  .page-header {
    padding: 4rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-image {
    order: -1;
  }

  .intro-features {
    justify-content: center;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-content {
    margin-left: 0;
    margin-top: 1rem;
  }

  .history-timeline::before {
    display: none;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

  .access-locations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .service-card,
  .philosophy-card,
  .certification-card,
  .contact-card,
  .location-card,
  .category-card,
  .product-item,
  .feature-card,
  .processing-item {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .question-text {
    font-size: 1rem;
  }

  .answer-content {
    padding: 0 1rem 1rem;
  }
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* スクロールアニメーション */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 印刷用スタイル */
@media print {
  header,
  .hamburger-menu,
  .mobile-nav,
  .mobile-overlay,
  .cta-buttons,
  footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-padding {
    padding: 1rem 0;
  }

  .page-header {
    background: none !important;
    color: #333 !important;
    padding: 1rem 0;
  }

  .hero {
    background: none !important;
    color: #333 !important;
    min-height: auto;
    padding: 2rem 0;
  }
}
/* 0) 安全網：横スクロール起因の縮尺崩れを潰す */
img, video, canvas, svg { max-width: 100%; height: auto; }
body { overflow-x: hidden; }

/* 1) iOS(WebKit)は常に fixed 無効＋テキスト自動拡大オフ */
@supports (-webkit-touch-callout: none) {
  html, body { -webkit-text-size-adjust: 100% !important; }
  .hero {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 100svh !important;
  }
}

/* 2) タッチ端末は幅に関係なく fixed 無効（保険） */
@media (hover: none) and (pointer: coarse) {
  .hero {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}

/* 3) 横向きで高さが低い端末の保険 */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 100svh !important;
  }
}

/* 4) PCだけパララックスを復活させたい時（任意） */
@media (hover: hover) and (pointer: fine) and (min-width: 1200px) {
  .hero {
    background-attachment: fixed !important;
    min-height: 100vh;
  }
}
/* 経営理念のステートメントもカード風の動きに */
.philosophy-statement {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1);
  will-change: transform, box-shadow;
  z-index: 0;
}

.philosophy-statement:hover,
.philosophy-statement:focus-within {
  transform: translateY(-5px);
  box-shadow:
    0 6px 12px rgba(205,94,60,0.25),
    0 14px 28px rgba(205,94,60,0.35);
  z-index: 1;
}
/* ==== 共通カードスタイル（業務内容・経営理念カード・ステートメント） ==== */
.card-hover {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1);
  will-change: transform, box-shadow;
  z-index: 0;
}

.card-hover:hover,
.card-hover:focus-within {
  transform: translateY(-5px);
  box-shadow:
    0 6px 12px rgba(205,94,60,0.25),
    0 14px 28px rgba(205,94,60,0.35);
  z-index: 1;
}

/* タッチデバイスでの軽い反応（任意） */
@media (hover:none) and (pointer:coarse) {
  .card-hover:active {
    transform: translateY(-3px);
    box-shadow:
      0 6px 12px rgba(205,94,60,0.25),
      0 14px 28px rgba(205,94,60,0.35);
  }
}
/* breadcrumb (minimal) */
.breadcrumb{background:#f8f9fa;padding:1rem 0}
.breadcrumb-nav{display:flex;align-items:center;gap:.5rem;font-size:.9rem}
.breadcrumb-nav a{color:#cd5e3c;text-decoration:none}
.breadcrumb-nav a:hover{text-decoration:underline}
.breadcrumb-separator{color:#666}
.breadcrumb-current{color:#666;font-weight:500}
