/*
Theme Name: KINUITO Child
Template: twentytwentyfive
Version: 1.0.0
Description: 株式会社KINUITO コーポレートサイト
*/

/* ===================================
   1. リセット & ベーススタイル
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* カラーパレット */
  --primary-color: #2c5f4a;
  --secondary-color: #b87654;
  --accent-color: #8b9d83;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --bg-light: #faf9f7;
  --bg-cream: #f5f3f0;
  --border-color: #e0ddd8;
  --white: #ffffff;
  
  /* タイポグラフィ */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  
  /* スペーシング */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  
  /* トランジション */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* WordPressデフォルトスタイルをリセット */
.page-content-wrapper,
.wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page-content-wrapper > *,
.wp-block-post-content {
  max-width: none !important;
}

/* アンカーリンク用の調整 */
section[id] {
  scroll-margin-top: 100px;
}

/* ===================================
   2. レイアウト - コンテナ
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--spacing-xxl) 0;
}

/* ===================================
   3. ヘッダー
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--primary-color);
  letter-spacing: 2px;
}

.logo:hover {
  color: var(--secondary-color);
}

/* ナビゲーション */
.nav ul,
.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 5px 0;
}

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

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

.lang-switch {
  font-size: 14px;
  color: var(--text-secondary);
}

.lang-link {
  padding: 0 5px;
}

.lang-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* モバイルメニュー */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.mobile-nav-menu li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav-menu a {
  display: block;
}

/* ===================================
   4. ヒーローセクション
   =================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  margin-top: 80px;
  padding: var(--spacing-xxl) 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ページヒーロー */
.page-hero,
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d1b 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 20px 60px;
  margin-top: 80px;
}

.page-hero h1,
.page-header .page-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p,
.page-header .page-subtitle {
  font-family: var(--font-en);
  font-size: 18px;
  opacity: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* ===================================
   5. ボタン
   =================================== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: #234a39;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 20px 50px;
  font-size: 18px;
}

/* ===================================
   6. セクションヘッダー
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-subtitle {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===================================
   7. イントロセクション
   =================================== */
.intro-section {
  background: var(--white);
}

.intro-text {
  font-size: 17px;
  line-height: 2.2;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.intro-text-center {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text-center p {
  font-size: 17px;
  line-height: 2.2;
  color: var(--text-secondary);
}

.text-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  margin-top: 30px;
}

.text-link:hover {
  color: var(--secondary-color);
}

/* イントロセクションのtext-link調整 */
.intro-content .text-link {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: right;
}

/* ===================================
   8. 統計セクション
   =================================== */
.stats-section {
  background: var(--bg-light);
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 15px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================
   9. 事業概要セクション
   =================================== */
.business-overview-section {
  background: var(--white);
}

.business-overview-grid {
  display: grid;
  gap: 40px;
}

.business-card {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.business-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.business-card-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-card-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.business-ratio {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.business-card-content {
  padding: 35px 30px;
}

.business-card-content h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.business-card-content p {
  margin-bottom: 20px;
  line-height: 2;
}

.business-features {
  margin-top: 25px;
  padding-left: 20px;
}

.business-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.business-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ===================================
   10. 強みセクション
   =================================== */
.strengths-section {
  background: var(--bg-cream);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.strength-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.strength-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.strength-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.strength-card p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* ===================================
   11. ニュースセクション
   =================================== */
.news-section {
  background: var(--white);
}

/* ニュース一覧（トップページ用） */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.news-item:hover {
  padding-left: 10px;
}

/* ニュースページ用フィルター */
.news-filter {
  background: var(--bg-light);
  padding: 20px 0;
  margin-bottom: 40px;
  text-align: center;
}

.filter-btn {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 10px 25px;
  border-radius: 25px;
  background: var(--white);
  transition: var(--transition);
  border: 2px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ニュースメタ情報 */
.news-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text-light);
}

/* カテゴリーラベル共通スタイル */
.news-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* カテゴリー別スタイル（日本語版） */
.news-category.category-press-release {
  background-color: #2c5f2d;
  color: white;
}

.news-category.category-award {
  background-color: #d4af37;
  color: white;
}

.news-category.category-product {
  background-color: #1e88e5;
  color: white;
}

.news-category.category-event {
  background-color: #e53935;
  color: white;
}

/* カテゴリー別スタイル（英語版） */
.news-category.category-press-release-en {
  background-color: #2c5f2d;
  color: white;
}

.news-category.category-award-en {
  background-color: #d4af37;
  color: white;
}

.news-category.category-product-en {
  background-color: #1e88e5;
  color: white;
}

.news-category.category-event-en {
  background-color: #e53935;
  color: white;
}

/* ニュースタイトル */
.news-title a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--primary-color);
}

/* ニュース記事カード（一覧ページ用） */
.news-article {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition);
  margin-bottom: 30px;
}

.news-article:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.news-article-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}

.news-article-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text-light);
}

.news-article-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-article-excerpt {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.news-article-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.news-article-link:hover {
  color: var(--secondary-color);
}

/* ニュース詳細ページ */
.news-detail-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.news-detail-content p {
  margin-bottom: 1.5rem;
}

.news-detail-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.news-navigation {
  margin-top: 3rem;
  text-align: center;
}

/* ニュース詳細ページのリスト表示 */
.news-detail-content ul {
  list-style-type: disc !important;
  list-style-position: outside;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.news-detail-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  padding-left: 0.5rem;
}

.news-detail-content ol {
  list-style-type: decimal !important;
  list-style-position: outside;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.news-detail-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  padding-left: 0.5rem;
}

/* ネストされたリスト */
.news-detail-content ul ul {
  list-style-type: circle !important;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.news-detail-content ul ul ul {
  list-style-type: square !important;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: var(--primary-color, #2c5f2d);
  color: white;
  border-color: var(--primary-color, #2c5f2d);
}

.pagination .current {
  background-color: var(--primary-color, #2c5f2d);
  color: white;
  border-color: var(--primary-color, #2c5f2d);
}

/* ===================================
   12. CTAバナー
   =================================== */
.cta-banner {
  background: var(--bg-light);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-section {
  background: var(--bg-cream);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}

.cta-section h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* ===================================
   13. コンテンツブロック
   =================================== */
.content-block {
  margin-bottom: 80px;
}

.content-block h2 {
  font-size: clamp(26px, 4vw, 32px);
  color: var(--primary-color);
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.content-block h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 35px 0 20px;
}

.content-block h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 25px 0 15px;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 20px;
  line-height: 2;
}

.content-block ul,
.content-block ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-block li {
  margin-bottom: 12px;
  line-height: 1.9;
  list-style: disc;
  color: var(--text-secondary);
}

/* ===================================
   14. 会社情報テーブル
   =================================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

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

.info-table th {
  width: 200px;
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--bg-light);
  vertical-align: top;
}

.info-table td {
  padding: 20px 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* ===================================
   15. 代表メッセージ
   =================================== */
.ceo-message {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  margin-top: 40px;
}

.ceo-info {
  text-align: center;
}

.ceo-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.ceo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

.ceo-title h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.ceo-title h4 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.ceo-text p {
  margin-bottom: 25px;
  line-height: 2.2;
}

/* ===================================
   16. 企業理念
   =================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.philosophy-item {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 8px;
}

.philosophy-item h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.philosophy-main {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  line-height: 2;
}

.philosophy-list {
  list-style: none;
  padding: 0;
}

.philosophy-list li {
  margin-bottom: 18px;
  padding-left: 25px;
  position: relative;
  line-height: 1.9;
  list-style: none;
}

.philosophy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ===================================
   17. 沿革タイムライン
   =================================== */
.about-history {
  background: var(--white);
  padding: 60px 0;
}

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

.history-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  align-items: flex-start;
}

.timeline-year {
  flex-shrink: 0;
  width: 80px;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  font-family: var(--font-en);
}

.timeline-year::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--white);
  z-index: 3;
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.timeline-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===================================
   18. ページネーション
   =================================== */
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 60px;
}

.page-btn,
.pagination a,
.pagination span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
}

.page-btn:hover,
.pagination a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-btn.active,
.pagination .current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.page-btn.next {
  width: auto;
  padding: 0 20px;
}

/* ===================================
   19. お問い合わせフォーム
   =================================== */
.contact-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
}

.contact-intro p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

/* Contact Form 7スタイル */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group,
.form-row {
  margin-bottom: 30px;
}

.form-group label,
.form-row label,
.wpcf7 label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.required {
  color: #d32f2f;
  margin-left: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea,
.form-group select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-jp);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea,
.wpcf7 textarea {
  resize: vertical;
  min-height: 150px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition);
}

.radio-label:hover {
  border-color: var(--primary-color);
  background: var(--bg-light);
}

.radio-label input[type="radio"] {
  cursor: pointer;
}

.checkbox-group,
.form-checkbox {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"],
.form-checkbox input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.submit-btn,
.wpcf7 input[type="submit"] {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 40px auto 0;
  padding: 18px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-jp);
}

.submit-btn:hover,
.wpcf7 input[type="submit"]:hover {
  background: #234a39;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 74, 0.3);
}

/* Contact Form 7のバリデーション */
.wpcf7-not-valid-tip {
  color: #e53935;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin: 30px 0;
  padding: 20px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #81c784;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* 連絡先情報 */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-method-card {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
}

.contact-method-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin: 20px 0;
}

.contact-address {
  font-size: 16px;
  line-height: 2;
  color: var(--text-primary);
  margin: 20px 0;
}

/* アクセス情報 */
.access-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.map-container {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

.map-placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-color);
}

.access-info h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.office-address {
  margin-bottom: 30px;
}

.access-info h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.access-routes {
  list-style: none;
  padding: 0;
}

.access-routes li {
  padding: 10px 0 10px 25px;
  position: relative;
  list-style: none;
}

.access-routes li::before {
  content: '🚃';
  position: absolute;
  left: 0;
}

/* ===================================
   20. 事業内容ページ専用スタイル
   =================================== */
.business-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 2.2;
  color: var(--text-secondary);
}

.business-detail-section {
  background: var(--bg-light);
  padding: 60px 50px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.business-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.ratio-badge {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin: 40px 0;
}

.brand-visual {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.brand-placeholder {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
}

.brand-concept {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.brand-description {
  margin-bottom: 30px;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.brand-stat-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.brand-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 10px;
}

.brand-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.feature-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
}

.feature-item h4 {
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.oem-intro {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.oem-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.oem-stat-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
}

.oem-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 15px;
}

.oem-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.oem-services h3,
.oem-strengths h3,
.client-types h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 40px 0 30px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.service-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-en);
}

.service-card h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 20px 0 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.strength-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.strength-list li {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  list-style: none;
}

.strength-list strong {
  display: block;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.strength-list p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.client-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
}

.client-item h4 {
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.client-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===================================
   21. 強みページ専用スタイル
   =================================== */
.strength-detail {
  background: var(--bg-light);
  padding: 60px 50px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.strength-detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.strength-icon-large {
  font-size: 64px;
  margin-bottom: 20px;
}

.strength-description {
  font-size: 17px;
  line-height: 2.2;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.technology-cards {
  display: grid;
  gap: 40px;
  margin-top: 50px;
}

.tech-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border-left: 6px solid var(--primary-color);
}

.tech-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tech-subtitle {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.tech-card p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.tech-features {
  list-style: none;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 25px;
}

.tech-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 14px;
  color: var(--text-primary);
  list-style: none;
}

.tech-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sustainability-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.sustainability-stat {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 15px;
}

.sustainability-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.sustainability-card > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.card-description {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  text-align: left;
}

.initiatives-section {
  margin-top: 50px;
}

.initiatives-section h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.initiatives-list {
  list-style: none;
  padding: 0;
}

.initiatives-list li {
  margin-bottom: 25px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  list-style: none;
}

.initiatives-list strong {
  display: block;
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.initiatives-list p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}

.quality-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.quality-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
}

.quality-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.quality-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}

.inspection-process {
  margin-top: 50px;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px;
  font-family: var(--font-en);
}

.process-step h4 {
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.process-arrow {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

.production-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.capability-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
}

.capability-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.capability-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin: 20px 0;
}

.capability-detail p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.production-network {
  margin-top: 50px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.network-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary-color);
}

.network-item h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.network-item p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.advantages {
  list-style: none;
  padding: 0;
}

.advantages li {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  list-style: none;
}

/* ===================================
   22. 実績ページ専用スタイル
   =================================== */
.works-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.works-stat-card {
  background: var(--bg-light);
  padding: 40px 35px;
  border-radius: 12px;
  text-align: center;
}

.works-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 15px;
}

.works-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.works-stat-card p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  text-align: left;
}

.works-categories {
  margin-top: 50px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.category-card {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 12px;
}

.category-card h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-type {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.category-details {
  list-style: none;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  margin: 20px 0;
}

.category-details li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 14px;
  color: var(--text-primary);
  list-style: none;
}

.category-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.category-description {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}

.global-map-section {
  margin: 40px 0 60px;
}

.map-content {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-radius: 12px;
}

.map-content h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.map-content p {
  font-size: 16px;
  color: var(--text-secondary);
}

.global-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.global-stat-item {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 12px;
}

.global-region {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.global-details {
  list-style: none;
  padding: 0;
}

.global-details li {
  padding: 10px 0 10px 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  list-style: none;
}

.global-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.awards-timeline {
  margin-top: 40px;
}

.award-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 2px solid var(--border-color);
}

.award-item:last-child {
  border-bottom: none;
}

.award-year {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  height: fit-content;
}

.award-content h4 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.award-org {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.award-content p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
}

.testimonials {
  display: grid;
  gap: 35px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
}

.testimonial-header {
  margin-bottom: 25px;
}

.client-type {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.client-role {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* ===================================
   23. 採用情報ページ専用スタイル
   =================================== */

/* 働く魅力セクション */
.recruit-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-light);
  padding: 40px 35px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  text-align: left;
}

/* 募集職種セクション */
.job-listings {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.job-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.job-header {
  background:  var(--primary-color);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.job-header h3 {
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.job-type {
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.job-content {
  padding: 35px 30px;
}

.job-content h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 25px 0 15px;
  font-weight: 600;
}

.job-content h4:first-child {
  margin-top: 0;
}

.job-content p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.job-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.job-content ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  list-style: none;
}

.job-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

/* 社員の声セクション */
.employee-voices {
  display: grid;
  gap: 35px;
  margin-top: 40px;
}

.voice-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  transition: var(--transition);
}

.voice-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.voice-header {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 25px;
}

.voice-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.voice-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text-light);
  font-size: 32px;
}

.voice-info h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.voice-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.voice-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   24. IR情報ページ専用スタイル
   =================================== */

/* 株価情報ハイライト */
.ir-highlight {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  padding: 50px 40px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.stock-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stock-info-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stock-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stock-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.stock-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 8px;
}

.stock-change {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-en);
}

.stock-change.positive {
  color: #2e7d32;
}

.stock-change.negative {
  color: #c62828;
}

/* 財務ハイライト */
.financial-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.financial-card {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.financial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.financial-card h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.financial-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-en);
  margin-bottom: 12px;
}

.financial-growth {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-en);
}

.financial-growth.positive {
  color: #2e7d32;
}

.financial-growth.negative {
  color: #c62828;
}

.financial-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  text-align: left;
}

/* 事業別売上構成 */
.segment-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.segment-chart {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
}

.chart-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-description h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 25px 0 15px;
  font-weight: 700;
}

.segment-description h3:first-child {
  margin-top: 0;
}

.segment-description p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* IR資料ライブラリ */
.ir-documents {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.document-category h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
}

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

.document-list li {
  margin-bottom: 15px;
  list-style: none;
}

.document-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.document-link:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.document-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.document-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.document-date {
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-en);
}

.document-size {
  font-size: 12px;
  color: var(--text-light);
  padding: 4px 12px;
  background: var(--white);
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-en);
}

/* 株主還元方針 */
.shareholder-return {
  margin-top: 30px;
}

.policy-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-secondary);
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 40px;
}

.dividend-info h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}

/* 株主総会 */
.agm-info h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}

/* IR連絡先 */
.ir-contact-info {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.ir-contact-info p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.ir-contact-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* ===================================
   25. プライバシーポリシーページ専用スタイル
   =================================== */

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 16px;
  line-height: 2.2;
  color: var(--text-secondary);
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 50px;
  border-left: 4px solid var(--primary-color);
}

.privacy-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 50px 0 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
}

.privacy-content h3:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.privacy-content ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 20px 0 30px 0;
}

.privacy-content ul li {
  padding: 0 0 0 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  list-style: none;
}

.privacy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.privacy-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.contact-info-box {
  background: var(--bg-light);
  padding: 35px 40px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.contact-info-box p {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 15px;
}

.contact-info-box strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

.policy-footer {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-cream);
  border-radius: 8px;
  text-align: center;
}

.policy-footer p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 14px;
}

.policy-footer p:last-child {
  margin-top: 25px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

/* ===================================
   26. フッター
   =================================== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 220px 220px 220px;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  min-width: 180px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul:not(.social-links):not(.social-links-horizontal),
.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  list-style: none;
  margin-bottom: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

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

.footer-section a:hover::after {
  width: 100%;
}

/* SNSアイコン（修正版：横並び・ホバー時動かない） */
.social-links,
.social-links-horizontal {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li,
.social-links-horizontal li {
  list-style: none;
  margin-bottom: 0;
}

.social-links a,
.social-links-horizontal a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.social-links a:hover,
.social-links-horizontal a:hover {
  opacity: 0.7;
}

.social-links-horizontal a::after {
  display: none;
}

.social-icon {
  font-size: 18px;
  display: inline-block;
  min-width: 24px;
}

.social-icon-img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* ===================================
   27. ユーティリティクラス
   =================================== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

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

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

/* ローディング */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

/* プレースホルダー画像 */
.image-placeholder {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  min-height: 200px;
  border-radius: 8px;
}

/* ===================================
   28. レスポンシブデザイン
   =================================== */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .header-content {
    padding: 0 30px;
  }
  
  .nav ul {
    gap: 25px;
  }
  
  .ceo-message {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .brand-showcase,
  .access-section {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .award-item {
    grid-template-columns: 100px 1fr;
    gap: 30px;
  }

  .segment-info {
    grid-template-columns: 1fr;
  }
}

/* タブレット（900px以下） - メニュー調整 */
@media (min-width: 769px) and (max-width: 900px) {
  .nav ul {
    gap: 0.8rem;
  }
  
  .nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (min-width: 769px) and (max-width: 850px) {
  .nav ul {
    gap: 0.5rem;
  }
  
  .nav a {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }
}

/* モバイル（768px以下） */
@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
    height: 70px;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero {
    margin-top: 70px;
    padding: var(--spacing-xl) 20px;
  }
  
  .page-hero,
  .page-header {
    margin-top: 70px;
    padding: 60px 20px 40px;
  }
  
  .page-hero h1,
  .page-header .page-title {
    font-size: 2rem;
  }
  
  .page-hero p,
  .page-header .page-subtitle {
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wpcf7 .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 30px 25px;
  }
  
  .business-detail-section,
  .strength-detail {
    padding: 40px 25px;
  }
  
  .business-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .history-timeline {
    padding-left: 0;
  }
  
  .history-timeline::before {
    left: 35px;
  }
  
  .timeline-item {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .timeline-year {
    width: 70px;
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  .timeline-year::after {
    width: 18px;
    height: 18px;
    right: -7px;
  }
  
  .timeline-content h4 {
    font-size: 1.1rem;
  }
  
  .timeline-content p {
    font-size: 0.9rem;
  }
  
  .social-links-horizontal {
    justify-content: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .intro-text-center {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .award-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .award-year {
    width: 100px;
    margin: 0 auto;
  }

  .recruit-benefits {
    grid-template-columns: 1fr;
  }
  
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .voice-header {
    flex-direction: column;
    text-align: center;
  }

  .ir-highlight {
    padding: 40px 25px;
  }
  
  .stock-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .document-link {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .document-size {
    align-self: flex-start;
  }

　.privacy-intro {
    padding: 25px 20px;
  }
  
  .contact-info-box {
    padding: 25px 20px;
  }
  
  .policy-footer {
    padding: 30px 20px;
  }

  .wp-block-columns {
    flex-direction: column;
  }

  .wp-block-columns .wp-block-column {
    flex-basis: 100%;
    width: 100%;
  }

  .brand-stats {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
}
/* 小型タブレット（600px以下） */
@media (max-width: 600px) {
  .history-timeline::before {
    display: none;
  }
  
  .timeline-item {
    display: block;
    margin-bottom: 50px;
    padding-left: 0;
  }
  
  .timeline-year {
    width: auto;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .timeline-year::after {
    display: none;
  }
  
  .timeline-content {
    padding-top: 0;
    padding-left: 0;
  }
}

/* モバイル（480px以下） */
@media (max-width: 480px) {
  .page-hero h1,
  .page-header .page-title {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid,
  .strengths-grid,
  .contact-methods,
  .works-stats,
  .category-grid,
  .global-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .info-table th {
    width: 120px;
    font-size: 14px;
  }
  
  .info-table th,
  .info-table td {
    padding: 15px 10px;
  }
  
  .timeline-item {
    margin-bottom: 40px;
  }
  
  .timeline-year {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .timeline-content h4 {
    font-size: 1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
  }
  
  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px; /* iOSズーム防止 */
  }
  
  .submit-btn,
  .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 15px 30px;
  }
  
  .contact-method-card {
    padding: 20px;
  }
  
  .contact-number {
    font-size: 1.3rem;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
  
  .social-icon-img {
    width: 24px;
    height: 24px;
  }

    .benefit-card {
    padding: 30px 25px;
  }
  
  .job-content {
    padding: 25px 20px;
  }
  
  .voice-card {
    padding: 30px 20px;
  }

  .stock-info-grid,
  .financial-highlights {
    grid-template-columns: 1fr;
  }
  
  .ir-contact-info {
    padding: 20px;
  }

  .privacy-content h3 {
    font-size: 20px;
    margin: 40px 0 20px;
  }
  
  .privacy-intro,
  .contact-info-box {
    padding: 20px 15px;
  }
  
  .map-container {
    height: 250px;
  }
}

/* 小型モバイル（360px以下） */
@media (max-width: 360px) {
  .timeline-year {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .timeline-content h4 {
    font-size: 0.95rem;
  }
  
  .timeline-content p {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* ===================================
   29. 印刷スタイル
   =================================== */
@media print {
  .header,
  .footer,
  .mobile-menu-btn,
  .hero-actions,
  .section-cta,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.6;
  }
  
  .page-hero,
  .page-header {
    margin-top: 0;
    padding: 20px;
  }
  
  .section {
    padding: 20px 0;
  }
}
