/* RemixIcon CDN Link - HTMLで読み込み済み */

/* RemixIcon Base Styles - 簡素化 */
[class^="ri-"], [class*=" ri-"] {
    font-family: 'remixicon' !important;
    font-style: normal !important;
    font-weight: normal !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Product Navigation Sidebar Styles */
.product-nav-sidebar {
    position: relative;
    width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* スクロールバーを非表示 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Webkit系ブラウザ（Chrome、Safari）のスクロールバーを非表示 */
.product-nav-sidebar::-webkit-scrollbar {
    display: none;
}

.product-nav-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-category {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.nav-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.nav-category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.nav-category-header:hover {
    background-color: #f3f4f6;
}

.nav-category-content {
    margin-top: 4px;
}

/* 中項目のスタイル */
.nav-subcategory {
    margin-left: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 4px;
}

.nav-subcategory:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nav-subcategory-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    font-weight: 500;
    font-size: 13px;
    color: #4b5563;
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 2px;
}

.nav-subcategory-header:hover {
    background-color: #f9fafb;
}

.nav-subcategory-content {
    margin-top: 2px;
}

/* 小項目のスタイル */
.nav-subcategory .nav-subcategory {
    margin-left: 20px;
}

.nav-subcategory .nav-subcategory-header {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 8px;
}

.nav-product {
    padding: 4px 12px;
    margin-left: 24px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-product:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.nav-product.current {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
    color: #0E1271;
    font-weight: 500;
    border-left: 3px solid #3B82F6;
}

/* ナビゲーション項目のホバー設定を強化 */
.product-nav-sidebar .nav-category-header:hover,
.product-nav-sidebar .nav-subcategory-header:hover {
    background-color: #f9fafb;
    color: #374151;
}

.product-nav-sidebar .nav-category-header,
.product-nav-sidebar .nav-subcategory-header {
    cursor: pointer !important;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 8px 12px;
}

.nav-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #9ca3af;
}








/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Clearfix utility */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

/* お問い合わせページ専用のコンテナ */
.contact-page .container {
    max-width: 1600px;
}

.contact-page .form-container {
    max-width: 1200px;
}

/* Header Styles */
.header {
    background: #0E1271;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 32px;
}

.logo .company-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    margin-top: 12px;
    align-self: flex-end;
}

.nav {
    display: flex;
    align-items: center;
}

    
.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #60A5FA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60A5FA;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.language-btn i {
    font-size: 20px !important;
}

.language-btn .ri-global-line {
    font-size: 22px !important;
}

.language-btn .ri-arrow-down-s-line {
    font-size: 18px !important;
}

.language-btn:hover {
    color: #60A5FA;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 120px;
    display: none;
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lang-option:hover {
    background: #F3F4F6;
}

.contact-btn {
    background: white;
    color: #0E1271;
    padding: 8px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px; /* Header height */
    background: #000000; /* 動画が読み込まれるまでの背景色 */
}

.hero-content{
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  z-index: 10;
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 2 !important;
    background: #000000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    /* 動画の表示を強制 */
    min-width: 100% !important;
    min-height: 100% !important;
}

.hero-fallback-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    background: #000000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#fly-in{
  position: absolute;
  left: clamp(16px, 5vw, 64px);   /* 常に左余白 */
  top: 40%;
  transform: translateY(-50%);   /* 縦中央 */

  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  height: 120px;
  margin: 0;
}




.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    text-align: center;
    line-height: 1.5em;
}

/* アイコンスタイルの強化 */
.btn i {
    font-size: 16px !important;
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    margin-left: 8px !important;
    font-family: 'remixicon' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.btn:hover i {
    transform: translateX(2px) !important;
}

/* Remixiconフォントの確実な読み込み */
@font-face {
    font-family: 'remixicon';
    src: url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.woff') format('woff'),
         url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* RemixIconの基本スタイル */
.ri-arrow-right-line:before { content: "\ea6c"; }
.ri-arrow-left-line:before { content: "\ea64"; }
.ri-arrow-down-s-line:before { content: "\ea5e"; }
.ri-global-line:before { content: "\ed0a"; }
.ri-menu-line:before { content: "\ef5e"; }
.ri-phone-line:before { content: "\f0a2"; }
.ri-mail-line:before { content: "\eea7"; }
.ri-wechat-line:before { content: "\f1a7"; }
.ri-calendar-line:before { content: "\eb4a"; }
.ri-map-pin-line:before { content: "\ef3a"; }
.ri-home-line:before { content: "\ed1a"; }
.ri-time-line:before { content: "\f0d8"; }
.ri-check-line:before { content: "\eb7b"; }

/* アイコンのフォールバックスタイル - 削除（上記のスタイルに統合済み） */

.btn-primary {
    background: #2563EB !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 13px 25px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 50px !important;
    min-width: 138.69px !important;
}

.btn-primary:hover {
    background: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.btn-outline {
    background: transparent !important;
    color: #22D3EE !important;
    border: 2px solid #22D3EE !important;
    border-radius: 9999px !important;
    padding: 13px 25px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 50px !important;
    min-width: 138.69px !important;
}

.btn-outline:hover {
    background: #22D3EE !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* 白背景ボタン（联系我们） */
.btn-white {
    background: #FFFFFF;
    color: #0E1271;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    text-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    font-size: 16px;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0px 8px 12px -2px rgba(0, 0, 0, 0.15), 0px 4px 8px -4px rgba(0, 0, 0, 0.1);
}

/* 青背景ボタン（查看产品） - Figmaデザイン準拠 */
.btn-blue {
    background: #2563EB !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 13px 25px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 50px !important;
    min-width: 138.69px !important;
}

.btn-blue:hover {
    background: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.btn-blue i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

.btn-blue:hover i {
    transform: translateX(2px) !important;
}

/* 白枠ボタン（了解公司概要） - Figmaデザイン準拠 */
.btn-white-border {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    border-radius: 9999px !important;
    padding: 18px 34px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 60px !important;
    min-width: 200px !important;
    white-space: nowrap !important;
}

.btn-white-border:hover {
    background: #FFFFFF !important;
    color: #0E1271 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* 紫グラデーションボタン（了解详情） - Figmaデザイン準拠 */
.btn-purple-gradient {
    background: linear-gradient(90deg, rgba(37, 99, 235, 1) 0%, rgba(147, 51, 234, 1) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 13px 25px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 50px !important;
    min-width: 138.69px !important;
}

.btn-purple-gradient:hover {
    background: linear-gradient(90deg, rgba(29, 78, 216, 1) 0%, rgba(124, 58, 237, 1) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}


/* New Products Section */
.new-products {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Carousel - Figma Design Based */
.products-carousel {
    position: relative;
    max-width: 1232px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.product-slide .product-content {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.product-slide .product-image {
    position: relative;
    width: 616px;
    height: 500px;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-slide .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.product-slide .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.product-slide .new-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-slide .product-info {
    width: 616px;
    height: 500px;
    background: #F9FAFB;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-slide .product-category {
    display: inline-block;
    background: transparent;
    color: #2563EB;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5%;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-slide .product-name {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.2em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-slide .product-description {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.625em;
    margin-bottom: 24px;
    max-width: 520px;
}

.product-slide .product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    max-width: 520px;
}

.product-slide .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5em;
}

.product-slide .product-features i {
    color: #2563EB;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-slide .product-detail-btn {
    margin-top: 0;
    align-self: flex-start;
    width: 200px !important;
    height: 50px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.carousel-btn i {
    font-size: 20px;
    color: #1F2937;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 15px;
    height: 15px;
    background: #2563EB;
}

/* Legacy carousel styles - keeping for compatibility */
.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 400px;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), transparent);
}

.new-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #EF4444;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

.product-info {
    padding: 40px 24px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.product-category {
    color: #2563EB;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374151;
}

.product-features i {
    color: #2563EB;
    margin-right: 12px;
    font-size: 18px;
}

.product-detail-btn {
    width: 200px;
    text-align: center;
    justify-content: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563EB;
    transform: scale(1.25);
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: #F8FAFC;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    position: relative;
    will-change: transform, opacity;
    transform: translateY(100px);
    opacity: 0;
}

.category-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 100%);
    transition: background 0.4s ease;
}


.category-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(239, 246, 255, 1) 50%, rgba(250, 245, 255, 1) 75%, rgba(253, 242, 248, 1) 100%);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 24px;
}

.category-description {
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-products {
    list-style: none;
    margin-bottom: 24px;
}

.category-products li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #475569;
    font-size: 14px;
}

.category-products i {
    color: #2563EB;
    margin-right: 8px;
    font-size: 16px;
}

/* Exhibition Info Section */
.exhibition-info {
    padding: 60px 0;
    background: linear-gradient(166deg, rgba(239, 246, 255, 1) 0%, rgba(250, 245, 255, 1) 50%, rgba(253, 242, 248, 1) 100%);
    color: #1E293B;
}

.exhibition-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    min-height: 400px;
    width: 100%;
}

.exhibitions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-column: 1;
    grid-row: 1;
}

.exhibition-image {
    position: sticky;
    top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    grid-column: 2;
    grid-row: 1;
}

.tenjikai-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tenjikai-img:hover {
    transform: scale(1.02);
}

.exhibition-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.exhibition-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exhibition-item-full {
    width: 100%;
}

.exhibition-item:hover {
    background: #F9FAFB;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.exhibition-content {
    flex: 1;
}

.exhibition-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.exhibition-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.exhibition-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748B;
}

.exhibition-detail i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-family: 'remixicon' !important;
    font-style: normal !important;
    font-weight: normal !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

.exhibition-detail:nth-child(1) i {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.exhibition-detail:nth-child(2) i {
    background: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.exhibition-detail:nth-child(3) i {
    background: rgba(236, 72, 153, 0.2);
    color: #EC4899;
}

/* 展示会セクションの特定アイコンスタイル */
.exhibition-detail .ri-calendar-line,
.exhibition-detail .ri-map-pin-line,
.exhibition-detail .ri-home-line {
    font-family: 'remixicon' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    vertical-align: middle !important;
    speak: none !important;
    text-decoration: none !important;
    text-rendering: auto !important;
    font-size: 16px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Statistics Section */
.statistics {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.statistics .container {
    position: relative;
    z-index: 2;
    will-change: transform;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.statistics-bg-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    filter: brightness(0.6);
    will-change: transform;
    position: absolute;
    top: -15%;
    left: 0;
    transform: translateY(0px);
    transition: transform 0.1s ease-out;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.statistics .section-title {
    color: white;
    margin-bottom: 16px;
    font-size: 3.5rem;
    font-weight: 800;
}

.statistics .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 24px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: white;
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 16px 0;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 6px;
    font-weight: 500;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.statistics-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.statistics-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.statistics-cta .btn-outline:hover {
    background: white;
    color: #1E293B;
    border: 2px solid white;
}

/* Recruitment Section */
.recruitment {
    padding: 80px 0;
    background: #F8FAFC;
}

.recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.recruitment-image {
    position: relative;
}

.recruitment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.recruitment-info {
    padding: 0 24px;
}

.recruitment-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}

.recruitment-description {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
}

.recruitment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #DBEAFE;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2563EB;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.875rem;
    color: #64748B;
}

/* Floating Contact styles are in css/floating-contact.css */

/* Footer */
.footer {
    background: #0E1271;
    color: white;
    padding: 48px 0 24px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #93C5FD;
}

.footer-company {
    max-width: 400px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
}

.company-info {
    margin-bottom: 16px;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.company-description {
    color: white;
    line-height: 1.6;
    font-size: 0.875rem;
}

.company-address {
    margin-bottom: 16px;
}

.address-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.address-link:hover {
    color: white;
}

.address-link i {
    margin-top: 2px;
    flex-shrink: 0;
    color: white;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.social-link:hover {
    color: white;
}

/* フッターのWeChatボタンのホバー効果を無効化 */
.social-link.wechat-btn:hover {
    color: white !important;
    background: none !important;
}

/* フッターのセクションタイトルリンクを白色に */
.footer-section h4 a {
    color: white !important;
    text-decoration: none !important;
}

.footer-section h4 a:hover {
    color: #93C5FD !important;
}

/* フッターのすべてのリンクを白色に統一 */
.footer-section ul li a {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-section ul li a:hover {
    color: #93C5FD !important;
}

/* フッターのソーシャルリンク（メール・WeChat）も統一 */
.footer .social-link {
    color: white !important;
    transition: color 0.3s ease !important;
}

.footer .social-link:hover {
    color: #93C5FD !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.copyright {
    color: white;
    font-size: 0.875rem;
}

.legal-info {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-info span {
    color: rgba(255, 255, 255, 0.7);
}
.legal-info span a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

/* フッターのレスポンシブ対応 */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .legal-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== 採用ページ専用スタイル ===== */

/* パンくずリスト */
.breadcrumb {
    background: #f8fafc;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #1d4ed8;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #94a3b8;
}

.breadcrumb-current {
    color: #1e293b;
    font-weight: 500;
}

/* 採用ヒーローセクション */
.career-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.career-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.career-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    z-index: -1;
}

.career-hero .container {
    position: relative;
    height: 100%;
    width: 100%;
}

.career-hero .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: absolute;
    bottom: -300px;
    right: 20px;
}

.career-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.career-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.career-hero .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 会社の魅力セクション */
.company-benefits {
    padding: 80px 0;
    background: linear-gradient(166deg, rgba(239, 246, 255, 1) 0%, rgba(250, 245, 255, 1) 50%, rgba(253, 242, 248, 1) 100%);
    color: #1E293B;
    position: relative;
    overflow: hidden;
}

.company-benefits .section-title {
    font-size: 2.5rem !important;
}

.job-listings .section-title {
    font-size: 2.5rem !important;
}

.application-process .section-title {
    font-size: 2.5rem !important;
}

.company-benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.company-benefits .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    white-space: nowrap;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: #2563eb;
}

.benefit-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 職場環境セクション */
.workplace-environment {
    padding: 80px 0;
    background: #f8fafc;
}

.workplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.workplace-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.workplace-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.workplace-image {
    height: 200px;
    overflow: hidden;
}

.workplace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workplace-card:hover .workplace-image img {
    transform: scale(1.05);
}

.workplace-content {
    padding: 24px;
}

.workplace-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.workplace-description {
    color: #64748b;
    line-height: 1.6;
}

/* 求人一覧セクション */
.job-listings {
    padding: 80px 0;
    background: white;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.job-header {
    margin-bottom: 24px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.job-tag.department {
    background: #dbeafe;
    color: #1e40af;
}

.job-tag.type {
    background: #dcfce7;
    color: #166534;
}

.job-details {
    margin-bottom: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-info {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.job-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.job-requirements h4,
.job-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.job-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #64748b;
}

.job-requirements i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
}

.job-apply-btn {
    margin-top: auto;
    margin-bottom: 0;
    width: auto !important;
    max-width: 200px !important;
    align-self: center !important;
}

/* 応募プロセスセクション */
.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

/* Neuromorphism Section */
.neuromorphism-section {
    padding: 80px 0 120px 0 !important;
    background: #f8fafc !important;
    margin-bottom: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}

.neuromorphism-card {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neuromorphism-title {
    text-align: center;
    color: #64748b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

/* CTAセクション */
.career-cta {
    padding: 80px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #2563eb;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .career-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .career-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .benefits-grid,
    .workplace-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 採用ページ用アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease-out;
}

/* スクロールアニメーション用のfade-in-upクラス */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーローテキストのシネマティックアニメーション */
@keyframes switch {
    0% { 
        opacity: 0;
        filter: blur(20px); 
        transform: scale(12);
    }
    5% { 
        opacity: 1;
        filter: blur(0); 
        transform: scale(1);
    }
    25% { 
        opacity: 1;
        filter: blur(0); 
        transform: scale(0.9);
    }
    30% { 
        opacity: 0;
        filter: blur(10px); 
        transform: scale(0.1);
    }
    80% { 
        opacity: 0;
    }
    100% { 
        opacity: 0;
    }
}

/* WeChatボタン専用のホバー効果 */
.footer .social-link.wechat-btn {
    color: white !important;
    background: transparent !important;
    border: none !important;
}

.footer .social-link.wechat-btn:hover {
    color: #93C5FD !important;
    background: transparent !important;
    border: none !important;
}

.footer .social-link.wechat-btn i {
    color: white !important;
    transition: color 0.3s ease !important;
}

.footer .social-link.wechat-btn:hover i {
    color: #93C5FD !important;
}

/* フッターの住所リンクも統一 */
.footer .address-link {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer .address-link:hover {
    color: #93C5FD !important;
}

.footer .address-link i {
    color: white !important;
    transition: color 0.3s ease !important;
}

.footer .address-link:hover i {
    color: #93C5FD !important;
}

/* 小カテゴリのリンク状態とホバー効果を削除 */
.nav-subcategory-header {
    cursor: default !important;
    color: inherit !important;
    text-decoration: none !important;
}

.nav-subcategory-header:hover {
    color: inherit !important;
    background: none !important;
    text-decoration: none !important;
}

/* 製品タイトルのフォントサイズを大きく */
.product-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
}

/* 特長・用途セクションのタイトルに左縦線を追加 */
.product-features-section .section-title,
.product-applications-section .section-title {
    position: relative;
    padding-left: 20px;
}

.product-features-section .section-title::before,
.product-applications-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: #2563EB;
    border-radius: 2px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1E40AF;
    padding-top: 24px;
    text-align: center;
}

.copyright {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.legal-info {
    color: white;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.legal-info span {
    margin: 0 8px;
}


/* Animations */




/* スクロールアニメーション */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* アニメーション削除 - パフォーマンス向上 */

/* Company Pages Styles */
.breadcrumb {
    background: #F8FAFC;
    padding: 12px 0;
    margin-top: 64px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
}

.breadcrumb-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #2563EB;
}

.breadcrumb-current {
    color: #1F2937;
    font-weight: 500;
}

.main-content {
    padding: 48px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.company-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.card-description {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    display: flex;
    align-items: center;
    color: #2563EB;
    font-size: 14px;
    font-weight: 500;
}

.card-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.company-card:hover .card-link i {
    transform: translateX(4px);
}

.company-info-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
}

.info-header {
    text-align: center;
    margin-bottom: 48px;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.info-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #DBEAFE;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 24px;
    color: #2563EB;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.feature-description {
    color: #6B7280;
    line-height: 1.6;
}

.contact-info-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    color: #4B5563;
    line-height: 1.6;
}

.contact-item strong {
    color: #1F2937;
}

/* Philosophy Page Styles */
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-divider {
    width: 64px;
    height: 4px;
    background: #0E1271;
    margin-bottom: 24px;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 20px;
    color: white;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.value-description {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Company Pages Styles */
.breadcrumb {
    background: #F8FAFC;
    padding: 12px 0;
    margin-top: 64px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
}

.breadcrumb-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #2563EB;
}

.breadcrumb-current {
    color: #1F2937;
    font-weight: 500;
}

.main-content {
    padding: 48px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.company-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.card-description {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    display: flex;
    align-items: center;
    color: #2563EB;
    font-size: 14px;
    font-weight: 500;
}

.card-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.company-card:hover .card-link i {
    transform: translateX(4px);
}

.company-info-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
}

.info-header {
    text-align: center;
    margin-bottom: 48px;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.info-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #DBEAFE;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 24px;
    color: #2563EB;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.feature-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Philosophy Page Styles */
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-divider {
    width: 64px;
    height: 4px;
    background: #0E1271;
    margin-bottom: 24px;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

/* Strategy Page Styles */
.strategy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-section {
    margin-bottom: 48px;
}

.strategy-item {
    margin-bottom: 48px;
}

.strategy-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
}

.strategy-text {
    order: 1;
}

.strategy-image {
    order: 2;
}

.strategy-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

.strategy-image-center {
    text-align: center;
    margin: 24px 0;
}

.strategy-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.midterm-plan-section {
    margin-top: 64px;
}

.section-header {
    margin-bottom: 32px;
}

.midterm-plan-content {
    margin-bottom: 32px;
}

.midterm-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.midterm-image {
    text-align: center;
}

/* Profile Page Styles */
.profile-content {
    max-width: 1000px;
    margin: 0 auto;
}

.company-table-section {
    margin-bottom: 64px;
}

.company-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.company-table td {
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.company-table tr:last-child td {
    border-bottom: none;
}

.table-label {
    background: #F9FAFB;
    font-weight: 600;
    color: #1F2937;
    width: 200px;
    vertical-align: top;
}

.table-value {
    color: #4B5563;
    line-height: 1.6;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-main {
    font-weight: 500;
}

.address-phone {
    font-size: 0.875rem;
    color: #6B7280;
}

.address-link {
    font-size: 0.875rem;
    color: #2563EB;
    cursor: pointer;
}

.business-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.business-main {
    font-weight: 500;
}

.business-list {
    margin-left: 16px;
    color: #6B7280;
}

.about-section {
    margin-bottom: 64px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.about-image {
    margin-bottom: 16px;
}

.about-img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
}

.about-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.about-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.download-btn {
    background: #2563EB;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #1D4ED8;
}

/* Neuromorphism Styles */
.neuromorphism-section {
    background: #F3F4F6;
    padding: 64px 0 0 0;
    margin-top: 64px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.neuromorphism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.neuromorphism-card {
    background: #F3F4F6;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: inset -8px -8px 16px rgba(255, 255, 255, 0.8), inset 8px 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.neuromorphism-card:hover {
    box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.8), inset 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.neuromorphism-card.active {
    box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.8), inset 4px 4px 8px rgba(0, 0, 0, 0.1);
    background: #E5E7EB;
}

.neuromorphism-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.neuromorphism-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Contact Form Styles */
.contact-form-section {
    margin-bottom: 64px;
}

/* お問い合わせページのサブタイトル */
.main-content .page-subtitle {
    line-height: 1.8;
    max-width: 1000px;
}

/* 注意事項とWeChatのコンテナ */
.notice-wechat-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: end;
    margin-top: 32px;
    background: linear-gradient(166deg, rgba(239, 246, 255, 1) 0%, rgba(250, 245, 255, 1) 50%, rgba(253, 242, 248, 1) 100%);
    border-radius: 20px;
    padding: 48px;
}

/* Contact page specific adjustments */
.contact-page .notice-wechat-container {
    max-width: 1200px;
    margin: 32px auto 0;
}

/* Thanks page specific adjustments */
.thanks-page .notice-wechat-container {
    max-width: 1400px;
    margin: 32px auto 0;
}

.thanks-page .action-buttons {
    margin-top: 48px;
}

/* 注意事項の背景を青に */
.form-notice {
    background: #EBF8FF;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    height: 240px;
}

/* WeChat連絡カード */
.wechat-contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.wechat-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #07C160;
}

.wechat-icon {
    width: 64px;
    height: 64px;
    background: #EBF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.wechat-icon i {
    font-size: 32px;
    color: #2563EB;
    transition: all 0.3s ease;
}

.wechat-contact-card:hover .wechat-icon {
    background: #07C160;
    transform: scale(1.1);
}

.wechat-contact-card:hover .wechat-icon i {
    color: white;
}

.wechat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.wechat-info {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

.contact-methods-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
    text-align: center;
}

/* 送信ボタンのスタイル（Figmaデザイン適用） */
.submit-btn {
    background: #2563EB !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 17px 33px !important;
    width: 162.02px !important;
    height: 58px !important;
    min-width: 162.02px !important;
    max-width: 162.02px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.submit-btn:hover {
    background: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.submit-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    text-align: center;
}

.form-divider {
    display: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required-badge {
    background: #F44336;
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
}

.optional-badge {
    background: #9CA3AF;
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
}

.char-count {
    font-size: 0.75rem;
    color: #6B7280;
    margin-left: auto;
}

.form-input, .form-textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 4px;
}

.inquiry-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inquiry-type-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-type-option:hover {
    border-color: #2563EB;
    background: #EBF8FF;
}

.inquiry-type-option input[type="radio"] {
    margin-right: 12px;
}

.option-content {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.option-description {
    font-size: 0.875rem;
    color: #6B7280;
}

.form-submit {
    text-align: center;
    margin-top: 16px;
}

.submit-btn {
    background: #0E1271;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(14, 18, 113, 0.3);
}

.submit-btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 18, 113, 0.4);
}

.form-notice {
    background: #EBF8FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.notice-icon {
    width: 24px;
    height: 24px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.notice-icon i {
    color: white;
    font-size: 14px;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-weight: 600;
    color: #1E40AF;
    margin-bottom: 8px;
}

.notice-list {
    list-style: none;
    color: #1E40AF;
    font-size: 0.875rem;
    line-height: 1.6;
}

.notice-list li {
    margin-bottom: 4px;
}

.other-contact-section {
    margin-top: 64px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: #EBF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.method-icon i {
    font-size: 24px;
    color: #2563EB;
}

.method-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.method-info {
    color: #6B7280;
}

/* Thanks Page Styles */
.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 48px;
    text-align: center;
    margin-bottom: 48px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.success-icon i {
    font-size: 32px;
    color: #059669;
}

.thanks-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.thanks-divider {
    width: 80px;
    height: 4px;
    background: #0E1271;
    margin: 0 auto 32px;
}

.thanks-message {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 48px;
}

.process-section {
    background: #EBF8FF;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
}

.notice-section {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    text-align: left;
}

.notice-section .notice-icon {
    background: #F59E0B;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-section .notice-icon i {
    color: white;
}

.notice-section .notice-title {
    color: #92400E;
    font-weight: 600;
    margin-bottom: 8px;
}

.notice-section .notice-list {
    color: #92400E;
    font-size: 0.875rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0E1271;
    color: white;
    box-shadow: 0 4px 16px rgba(14, 18, 113, 0.3);
}

.btn-primary:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 18, 113, 0.4);
}

.btn-secondary {
    background: white;
    color: #0E1271;
    border: 2px solid #0E1271;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #0E1271;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 18, 113, 0.4);
}

.btn-wechat {
    background: #10B981;
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-wechat:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.additional-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #EBF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 24px;
    color: #2563EB;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.contact-description {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0E1271;
    margin-bottom: 4px;
}

.contact-hours {
    font-size: 0.875rem;
    color: #6B7280;
}

/* ボタンのレスポンシブ対応 */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-white {
        padding: 6px 20px;
        font-size: 14px;
    }
    
    .btn-blue {
        padding: 10px 20px;
    }
    
    .btn-white-border {
        padding: 14px 28px;
    }
    
    .btn-purple-gradient {
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-white {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .btn-blue {
        padding: 8px 16px;
    }
    
    .btn-white-border {
        padding: 12px 24px;
    }
    
    .btn-purple-gradient {
        padding: 8px 24px;
    }
}

/* Main Content */
.main-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    clear: both;
    overflow: hidden;
}

.main-content .container {
    flex: 1;
}

/* Product Detail Page Styles */
.main {
    padding: 40px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-content-left {
    min-width: 0;
}

.product-content-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
}

.product-image-section {
    width: 100%;
    max-width: 400px;
}

.product-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.product-category {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2563EB;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-description {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Product Sections */
.product-overview-section,
.product-features-section,
.product-applications-section {
    margin-bottom: 40px;
}

.product-options-section {
    margin-bottom: 40px;
}

/* Tab Navigation Styles */
.product-tab-navigation {
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.tab-buttons {
    display: flex;
    gap: 0;
}

.tab-button {
    background: #e5e7eb;
    border: none !important;
    padding: 12px 24px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    margin-right: 2px;
}

.tab-button:hover {
    background: #d1d5db;
    color: #374151;
    border-bottom-color: #3B82F6;
}

.tab-button.active {
    background: #2563EB;
    color: #ffffff;
    border-bottom-color: #2563EB;
}

.tab-button:focus {
    outline: none !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    box-shadow: none !important;
}

.tab-button:focus:hover {
    border-bottom-color: #3B82F6 !important;
}

.tab-button:focus.active {
    border-bottom-color: #2563EB !important;
}

.tab-content {
    margin-top: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Full width sections */
.full-width {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Product overview full section */
.product-overview-full-section .section-title {
    position: relative;
    padding-left: 20px;
}

.product-overview-full-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: #2563EB;
    border-radius: 2px;
}

/* Overview features list */
.overview-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.overview-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
}

.overview-feature-bullet {
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.overview-feature-item p {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Applications table */
.applications-table {
    margin-top: 20px;
}

.applications-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.applications-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.applications-table .spec-category {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
    width: 200px;
    min-width: 200px;
    text-align: center;
}

/* 表の中の●のスタイルを製品概要の〇と統一 */
.applications-table .spec-value {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    padding-left: 20px;
}

.applications-table .spec-value::before {
    content: '';
    display: none;
}

.applications-table tr:last-child td {
    border-bottom: none;
}

/* Options section title styling */
.product-options-section .section-title {
    position: relative;
    padding-left: 20px;
}

.product-options-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: #2563EB;
    border-radius: 2px;
}

/* Options list styling */
.product-options-section .options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.product-options-section .option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
}

.product-options-section .option-bullet {
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.product-options-section .option-item p {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Overview contact section */
.overview-contact-section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Sidebar ECCS Image */
.sidebar-eccs-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.sidebar-eccs-image:hover {
    transform: scale(1.05);
}

.eccs-sidebar-img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.eccs-sidebar-img:hover {
    transform: scale(1.05);
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.overview-content p {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.features-list,
.applications-list,
.options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item,
.application-item,
.option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-bullet,
.application-bullet {
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-item p,
.application-item p {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

/* Product Features and Applications Section Titles */
.product-features-section .section-title,
.product-applications-section .section-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 16px;
    margin-top: 32px;
}

/* Product Content Grid */
.product-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
    clear: both;
    overflow: hidden;
}

.product-content-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.product-content-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
}

.product-image-section {
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 400px;
}

.product-main-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    background-color: transparent;
    background-image: none;
    mix-blend-mode: normal;
}

.product-features-section,
.product-applications-section {
    margin: 20px 0;
}

.section-title {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    text-align: left;
}

.features-list,
.applications-list {
    margin-top: 10px;
}

.feature-item,
.application-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
}

.feature-bullet,
.application-bullet {
    width: 10px;
    height: 10px;
    background-color: #2563EB;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* 特徴と用途の間隔を統一 */
.features-list .feature-item,
.applications-list .application-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
}

.features-list .feature-bullet,
.applications-list .application-bullet {
    width: 10px;
    height: 10px;
    background-color: #2563EB;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* 特徴セクションの○から文字の間隔を狭くする（○の位置は変更せず） */
.features-list .feature-bullet {
    margin-right: 10px;
}

/* 箇条書きの行間とフォント調整 */
.feature-item,
.application-item {
    margin-bottom: 4px !important;
}

.features-list .feature-item,
.applications-list .application-item {
    margin-bottom: 4px !important;
}

.feature-item p,
.application-item p {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-contact-section {
    text-align: center;
    margin: 40px 0;
}

/* Related News Section */
.related-news-section {
    margin-bottom: 40px;
}

.news-item {
    background: #f8fafc;
    border-left: 4px solid #2563EB;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 0 8px 8px 0;
}

.news-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

.news-category {
    font-size: 12px;
    color: #2563EB;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2962FF;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.3);
    min-width: 280px;
    justify-content: center;
}

.contact-button:hover {
    background: #1e53e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.4);
}

.contact-button i {
    font-size: 20px;
    color: white;
}

.product-search-section {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    flex: 1;
    min-width: 300px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Almarai', sans-serif;
    font-size: 18px;
    color: #666666;
    background: white;
}

.search-input::placeholder {
    color: #666666;
}

.search-button {
    padding: 15px 30px;
    background: #0E1271;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #1a1f7a;
}

.product-list-link {
    padding: 12px 25px;
    border: 1px solid #000000;
    border-radius: 25px;
    color: #000000;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-list-link:hover {
    background: #000000;
    color: white;
}

.category-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-text {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.related-info-section {
    background: #E6E7F1;
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-link {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.related-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-image {
    width: 124px;
    height: 124px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h3 {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin-bottom: 8px;
}

.related-content p {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Product Navigation Sidebar */
.product-nav-sidebar {
    width: 300px;
    background: white;
    padding: 20px 0;
    margin: 0;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-nav-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-category,
.nav-subcategory {
    margin-bottom: 4px;
}

.nav-category-header,
.nav-subcategory-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Almarai', sans-serif;
}

.nav-category-header {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    font-weight: 600;
    font-size: 13px;
}

.nav-subcategory-header {
    padding-left: 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.nav-category-header:hover,
.nav-subcategory-header:hover {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
}

.nav-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #0E1271;
}

.nav-category-content,
.nav-subcategory-content {
    margin-left: 0;
}

.nav-product {
    padding: 4px 12px;
    margin-left: 24px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-product:hover {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    color: #000000;
}



/* Responsive Design */
@media (max-width: 992px) {
    .exhibition-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .exhibitions-list {
        gap: 20px;
    }
    
    .exhibition-image {
        position: static;
        order: -1;
    }
    
    .tenjikai-img {
        max-width: 300px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: 70vh;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-unit {
        font-size: 1rem;
    }
    
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recruitment-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-contact {
        right: 20px;
    }
    
    .floating-contact-panel {
        width: 300px;
        right: 0;
        max-height: 350px;
    }
    
    /* Product Detail Page Responsive */
    .product-title {
        font-size: 24px;
    }
    
    .product-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .product-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-content-right {
        order: -1;
    }
    
    .search-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-form {
        min-width: auto;
    }
    
    .category-links {
        grid-template-columns: 1fr;
    }
    
    .related-links {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .product-image-section {
        max-width: 100%;
        margin: 40px 0;
    }
    
    /* Main Content Responsive */
    .main-content {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Product Detail Layout Responsive */
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .product-content-right {
        order: -1;
    }
    
    .product-image-section {
        max-width: 100%;
    }
    
    /* Product Navigation Sidebar Responsive */
    .product-nav-sidebar {
        width: 100%;
        order: 2;
    }
    
    .product-nav-container {
        padding: 0 10px;
    }
    
    .nav-subcategory-link {
        padding: 6px 0 6px 15px;
    }
    
    .nav-product-link {
        padding: 4px 0 4px 30px;
    }
    
    .contact-option i {
        font-size: 20px;
    }
    
    .qr-code-img {
        width: 140px;
        height: 140px;
    }
    
    /* 注意事項とWeChatカードのレスポンシブ調整 */
    .form-notice {
        padding: 20px 16px;
        height: 200px;
    }
    
    .wechat-contact-card {
        padding: 20px 16px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .product-info {
        padding: 24px 16px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .exhibition-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .floating-contact {
        right: 16px;
    }
    
    .floating-contact-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .floating-contact-panel {
        width: 280px;
        right: 0;
        max-height: 300px;
    }
    
    .contact-panel-header {
        padding: 8px 16px;
    }
    
    .contact-panel-header h3 {
        font-size: 1rem;
    }
    
    .contact-panel-content {
        padding: 16px;
    }
    
    .contact-option {
        padding: 10px;
        font-size: 0.875rem;
        gap: 12px;
    }
    
    .contact-option i {
        font-size: 18px;
    }
    
    .qr-code-panel {
        padding: 16px;
    }
    
    .qr-code-img {
        width: 120px;
        height: 120px;
    }
    
    .qr-code-title {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .company-info-section {
        padding: 32px 24px;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .philosophy-content {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
    
    /* 製品分類セクションのレスポンシブ対応 */
    .category-image {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 100%);
        transition: background 0.4s ease;
    }
    
    .category-card:hover .category-image {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(239, 246, 255, 1) 50%, rgba(250, 245, 255, 1) 75%, rgba(253, 242, 248, 1) 100%);
    }
    
    /* 白枠ボタンのレスポンシブ対応 */
    .btn-white-border {
        min-width: 180px !important;
        font-size: 15px !important;
    }
    
    /* Company Pages Responsive */
    .page-title {
        font-size: 2.5rem;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .company-info-section {
        padding: 32px 24px;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .info-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .philosophy-content {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .strategy-text {
        order: 2;
    }
    
    .strategy-image {
        order: 1;
    }
    
    /* Products Carousel Responsive */
    .product-slide .product-content {
        flex-direction: column;
        height: auto;
    }
    
    .product-slide .product-image {
        width: 100%;
        height: 300px;
    }
    
    .product-slide .product-info {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
    
    .product-slide .product-category {
        margin-bottom: 6px;
    }
    
    .product-slide .product-name {
        font-size: 30px;
        margin-top: 0;
        white-space: nowrap;
        line-height: 1.2em;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-slide .product-description {
        font-size: 13px;
    }
    
    /* 注意事項とWeChatのタブレット対応 */
    .notice-wechat-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .wechat-contact-card {
        padding: 28px 32px;
        height: 280px;
    }
    
    .wechat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }
    
    .wechat-icon i {
        font-size: 30px;
    }
    
    .wechat-title {
        font-size: 1.125rem;
        margin-bottom: 7px;
    }
    
    .wechat-info {
        font-size: 0.8rem;
    }
    
    .contact-methods-title {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .notice-wechat-container {
        padding: 40px 28px;
    }
    
    .form-notice {
        padding: 28px 18px;
        height: 280px;
    }
    
    .product-slide .product-features li {
        font-size: 12px;
    }
    
    .product-slide .product-features i {
        font-size: 13px;
    }
    
    .product-slide .product-detail-btn {
        width: 180px !important;
        height: 45px !important;
        min-width: 180px !important;
        max-width: 180px !important;
        font-size: 14px !important;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .neuromorphism-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .inquiry-type-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .additional-contact {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding-left: 32px;
        max-width: 100%;
        width: 100%;
        margin-left: -50px;
        margin-top: 30px;
        box-sizing: border-box;
        overflow: hidden;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        max-width: 90%;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        margin-top: 8px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        padding: 0 16px;
        box-sizing: border-box;
        justify-content: flex-start;
    }
    
    .btn {
        max-width: 180px;
        padding: 12px 20px;
        font-size: 13px;
        box-sizing: border-box;
        flex: 0 1 auto;
        min-width: 140px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .company-info-section {
        padding: 24px 16px;
    }
    
    .info-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
    
    .neuromorphism-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
    }
    
    .neuromorphism-card {
        padding: 16px;
    }
    
    .form-container {
        padding: 24px 16px;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .submit-btn {
        padding: 12px 32px;
        font-size: 0.875rem;
    }
    
    .thanks-card {
        padding: 32px 24px;
    }
    
    .thanks-title {
        font-size: 1.75rem;
    }
    
    .process-section {
        padding: 24px 16px;
    }
    
    .contact-card {
        padding: 24px 16px;
    }
    
    /* Exhibition Info Section - Mobile Layout */
    .exhibition-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .exhibitions-list {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .exhibition-image {
        order: 1;
        position: static;
        text-align: center;
        width: 100%;
    }
    
    .exhibition-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    
    .exhibition-details {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .exhibition-detail {
        justify-content: flex-start;
        align-items: center;
    }
    
    /* Recruitment Section - Mobile Layout */
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recruitment-info {
        padding: 0;
    }
    
    .recruitment-title {
        font-size: 2.5rem;
    }
    
    .recruitment-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        margin-right: 16px;
        flex-shrink: 0;
    }
    
    .feature-content {
        flex: 1;
        text-align: left;
    }
    
    /* New Products Section - Mobile Layout */
    .product-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .product-image {
        order: 1;
        grid-row: 1;
        min-height: 300px;
    }
    
    .product-info {
        order: 2;
        grid-row: 2;
        padding: 24px 16px;
    }
    
    .product-name {
        font-size: 1.75rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .company-info-section {
        padding: 20px 12px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
/* セクションタイトル中央配置 - 強力版 */
.section-header { 
    text-align: center !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
.section-title { 
    text-align: center !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}
.section-subtitle { 
    text-align: center !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 特定セクションの中央配置強化 */
.product-categories .section-header,
.new-products .section-header,
.exhibition-info .section-header,
.statistics .section-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-categories .section-title,
.new-products .section-title,
.exhibition-info .section-title,
.statistics .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: static !important;
}

.product-categories .section-subtitle,
.new-products .section-subtitle,
.exhibition-info .section-subtitle,
.statistics .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* より強力な中央配置 - 最後に適用 */
#categories .section-title,
#products .section-title,
#exhibitions .section-title,
#statistics .section-title {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: static !important;
    display: block !important;
    width: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}


    
    .subsection-title {
        font-size: 1.125rem;
    }
    
    /* 製品分類セクションのモバイル対応 */
    .category-image {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 100%);
        transition: background 0.4s ease;
    }
    
    .category-card:hover .category-image {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(239, 246, 255, 1) 50%, rgba(250, 245, 255, 1) 75%, rgba(253, 242, 248, 1) 100%);
    }
    
    /* 白枠ボタンのモバイル対応 */
    .btn-white-border {
        min-width: 160px !important;
        font-size: 14px !important;
        padding: 16px 28px !important;
    }
    
    .neuromorphism-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 8px;
    }
    
    .product-slide .product-category {
        margin-bottom: 4px;
    }
    
    .product-slide .product-name {
        font-size: 26px;
        margin-top: 0;
    }
    
    /* 注意事項とWeChatのモバイル対応 */
    .notice-wechat-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .wechat-contact-card {
        padding: 24px 24px;
        height: 240px;
    }
    
    .wechat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }
    
    .wechat-icon i {
        font-size: 28px;
    }
    
    .wechat-title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .wechat-info {
        font-size: 0.8rem;
        white-space: nowrap;
        line-height: 1.2em;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .contact-methods-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .notice-wechat-container {
        padding: 32px 24px;
    }
    
    .form-notice {
        padding: 20px 16px;
        height: 240px;
    }
    
    .product-slide .product-description {
        font-size: 12px;
    }
    
    .product-slide .product-features li {
        font-size: 11px;
    }
    
    .product-slide .product-features i {
        font-size: 12px;
    }
    
    .product-slide .product-detail-btn {
        width: 160px !important;
        height: 40px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        font-size: 13px !important;
    }
    
    .neuromorphism-card {
        padding: 12px;
    }
    
    .neuromorphism-title {
        font-size: 1rem;
    }
    
    .neuromorphism-subtitle {
        font-size: 0.75rem;
    }
    
    .form-container {
        padding: 20px 12px;
    }
    
    .form-title {
        font-size: 1.125rem;
    }
    
    .submit-btn {
        padding: 10px 24px;
        font-size: 0.875rem;
    }
    
    .thanks-card {
        padding: 24px 16px;
    }
    
    .thanks-title {
        font-size: 1.5rem;
    }
    
    .process-section {
        padding: 20px 12px;
    }
    
    .contact-card {
        padding: 20px 12px;
    }
    
    /* 注意事項とWeChatカードのレスポンシブ調整 */
    .form-notice {
        padding: 16px 12px;
        height: 180px;
    }
    
    .wechat-contact-card {
        padding: 16px 12px;
        height: 180px;
    }
    
    /* Exhibition Info Section - Small Mobile Layout */
    .exhibition-info {
        padding: 40px 0;
    }
    
    .exhibition-content-wrapper {
        gap: 24px;
        align-items: center;
    }
    
    .exhibition-item {
        padding: 16px;
        text-align: left;
        align-items: flex-start;
    }
    
    .exhibition-name {
        font-size: 1.25rem;
        text-align: left;
    }
    
    .exhibition-detail {
        font-size: 0.875rem;
        justify-content: flex-start;
        align-items: center;
    }
    
    /* Recruitment Section - Small Mobile Layout */
    .recruitment {
        padding: 60px 0;
    }
    
    .recruitment-content {
        gap: 32px;
    }
    
    .recruitment-title {
        font-size: 2rem;
    }
    
    .recruitment-features {
        gap: 16px;
    }
    
    .feature-item {
        gap: 12px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .feature-content {
        flex: 1;
        text-align: left;
    }
    
    .feature-content h3 {
        font-size: 1rem;
        text-align: left;
    }
    
    .feature-content p {
        font-size: 0.8rem;
        text-align: left;
    }
    
    /* New Products Section - Small Mobile Layout */
    .product-image {
        min-height: 250px;
    }
    
    .product-info {
        padding: 20px 12px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-features {
        margin-bottom: 24px;
    }
    
    .product-features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .product-detail-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding-left: 24px;
        width: 100%;
        margin-left: 0px;
        margin-top: 60px;
        box-sizing: border-box;
        overflow: hidden;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        max-width: 95%;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        margin-top: 6px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .btn {
        flex: 1;
        max-width: 160px;
        min-width: 120px;
        padding: 10px 16px;
        font-size: 12px;
        box-sizing: border-box;
        text-align: center;
    }
}

/* Page Title Line */
.title-line {
    width: 1200px;
    height: 1px;
    background-color: #000;
    margin: 10px auto 0;
    max-width: 100%;
}

/* Reduce spacing after title line */
.page-header {
    margin-bottom: 0px;
    margin-top: -40px;
}

@media (max-width: 1200px) {
    .title-line {
        width: 100%;
        margin: 10px 0 0;
    }
}

/* Product Categories Sections Styles */
.product-categories-sections {
    margin-top: 40px;
}

.categories-container {
    width: 100%;
}

/* 大項目：背景グレー */
.main-category-section {
    margin-bottom: 60px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.main-category-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 30px 0;
    padding: 0;
}

/* 中項目：左に青い線 */
.category-section {
    margin-bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-left: 0;
}

.category-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.title-bar {
    width: 4px;
    height: 32px;
    background: #3B82F6;
    margin-right: 16px;
    border-radius: 2px;
}

.category-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* 小項目：枠線（左から100） */
.sub-category {
    margin-bottom: 30px;
    margin-left: 100px;
}

.sub-category-button {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sub-category-button:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sub-sub-category {
    margin-left: 20px;
    margin-bottom: 30px;
}

.sub-sub-category-button {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-sub-category-button:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* 製品：3カラム（左から100） */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
    margin-left: 100px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.4s ease;
}

.product-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    transition: transform 0.4s ease;
    max-width: none;
    min-width: 100%;
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(239, 246, 255, 1) 50%, rgba(250, 245, 255, 1) 75%, rgba(253, 242, 248, 1) 100%);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.product-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.product-subtitle {
    font-size: 14px;
    color: #2563EB;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name i {
    color: #3B82F6 !important;
    font-size: 18px !important;
    margin-left: 8px !important;
    font-family: 'remixicon', 'RemixIcon' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    vertical-align: middle !important;
    speak: none !important;
    text-decoration: none !important;
    text-rendering: auto !important;
}

.product-name i:before {
    font-family: 'remixicon', 'RemixIcon', 'remixicon-alt', sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    vertical-align: middle !important;
    speak: none !important;
    text-decoration: none !important;
    text-rendering: auto !important;
}

/* Photo Section Styles */
.photo-section {
    padding: 80px 0;
    background: #f8fafc;
}

.photo-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.photo-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.photo-section .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

/* Main Showcase */
.main-showcase {
    margin-bottom: 60px;
}

.showcase-item.large {
    max-width: 800px;
    margin: 0 auto;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-image:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.showcase-info p {
    font-size: 16px;
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.showcase-tag {
    display: inline-block;
    background: #3B82F6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.gallery-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Application Cases */
.application-cases {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cases-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 50px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-item {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 30px;
}

.case-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.case-content p {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-features li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

/* Section Title with Line Styles */
.section-title-with-line {
    position: relative;
    padding-left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.section-title-with-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #3B82F6;
    border-radius: 2px;
}

/* Application Category Box Styles */
.application-category-box {
    background: #f8f9fa;
    padding: 12px 20px;
    margin: 15px 0;
    position: relative;
    border-radius: 4px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.application-category-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #f8f9fa;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

/* Video Sub-tab Styles */
.video-sub-tab-navigation {
    margin-bottom: 30px;
}

.video-sub-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.video-sub-tab-button {
    background: none;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.video-sub-tab-button:hover {
    color: #3B82F6;
    background-color: #f8fafc;
    border-bottom-color: #3B82F6 !important;
}

.video-sub-tab-button.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6 !important;
    background-color: #f8fafc;
}

.video-sub-tab-button:focus {
    outline: none !important;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    box-shadow: none !important;
}

.video-sub-tab-button:focus:hover {
    border-bottom-color: #3B82F6 !important;
}

.video-sub-tab-button:focus.active {
    border-bottom-color: #3B82F6 !important;
}

.video-sub-tab-content {
    margin-top: 20px;
}

.video-sub-tab-panel {
    display: none;
}

.video-sub-tab-panel.active {
    display: block;
}

.video-description {
    margin-top: 20px;
}

.video-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 10px 0;
}

.video-description p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Basic Info Sub-tab Styles */
.basic-info-sub-tab-navigation {
    margin-bottom: 30px;
}

.basic-info-sub-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.basic-info-sub-tab-button {
    background: none;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.basic-info-sub-tab-button:hover {
    color: #3B82F6;
    background-color: #f8fafc;
    border-bottom-color: #3B82F6 !important;
}

.basic-info-sub-tab-button.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6 !important;
    background-color: #f8fafc;
}

.basic-info-sub-tab-button:focus {
    outline: none !important;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    box-shadow: none !important;
}

.basic-info-sub-tab-button:focus:hover {
    border-bottom-color: #3B82F6 !important;
}

.basic-info-sub-tab-button:focus.active {
    border-bottom-color: #3B82F6 !important;
}

.basic-info-sub-tab-content {
    margin-top: 20px;
}

.basic-info-sub-tab-panel {
    display: none;
}

.basic-info-sub-tab-panel.active {
    display: block;
}

/* Technology Sub-tab Styles */
.technology-sub-tab-navigation {
    margin-bottom: 30px;
}

.technology-sub-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.technology-sub-tab-button {
    background: none;
    border: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.technology-sub-tab-button:hover {
    color: #3B82F6;
    background-color: #f8fafc;
    border-bottom-color: #3B82F6 !important;
}

.technology-sub-tab-button.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6 !important;
    background-color: #f8fafc;
}

.technology-sub-tab-button:focus {
    outline: none !important;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    box-shadow: none !important;
}

.technology-sub-tab-button:focus:hover {
    border-bottom-color: #3B82F6 !important;
}

.technology-sub-tab-button:focus.active {
    border-bottom-color: #3B82F6 !important;
}

.technology-sub-tab-content {
    margin-top: 20px;
}

.technology-sub-tab-panel {
    display: none;
}

.technology-sub-tab-panel.active {
    display: block;
}

/* Application Sub-tab Styles */
.application-sub-tab-navigation {
    margin-bottom: 30px;
}

.application-sub-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.application-sub-tab-button {
    background: none;
    border: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.application-sub-tab-button:hover {
    color: #3B82F6;
    background-color: #f8fafc;
    border-bottom-color: #3B82F6 !important;
}

.application-sub-tab-button.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6 !important;
    background-color: #f8fafc;
}

.application-sub-tab-button:focus {
    outline: none !important;
    border-top: 1px solid #d1d5db !important;
    border-left: 1px solid #d1d5db !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 3px solid transparent !important;
    box-shadow: none !important;
}

.application-sub-tab-button:focus:hover {
    border-bottom-color: #3B82F6 !important;
}

.application-sub-tab-button:focus.active {
    border-bottom-color: #3B82F6 !important;
}

.application-sub-tab-content {
    margin-top: 20px;
}

.application-sub-tab-panel {
    display: none;
}

.application-sub-tab-panel.active {
    display: block;
}

/* TOP Cards Section Styles */
.top-cards-section {
    padding: 80px 0;
    background: white;
}

.top-cards-section .categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.top-cards-section .category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.top-cards-section .category-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.top-cards-section .category-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.4s ease;
}

.top-cards-section .category-card:hover .category-image {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(239, 246, 255, 1) 50%, rgba(250, 245, 255, 1) 75%, rgba(253, 242, 248, 1) 100%);
}

.top-cards-section .category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    transition: transform 0.4s ease;
}

.top-cards-section .category-card:hover .category-image img {
    transform: scale(1.05);
}

.top-cards-section .category-content {
    padding: 30px;
    text-align: center;
}

.top-cards-section .category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.top-cards-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-cards-section .btn-blue {
    background: #3B82F6;
    color: white;
}

.top-cards-section .btn-blue:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sub-category,
    .products-grid {
        margin-left: 50px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .main-category-section {
        padding: 20px;
    }
    
    .main-category-title h2 {
        font-size: 28px;
    }
    
    .category-title h3 {
        font-size: 20px;
    }
    
    .sub-category,
    .products-grid {
        margin-left: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .design-cards-section {
        padding: 60px 0;
    }
    
    .design-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .top-cards-section .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-category-section {
        padding: 16px;
    }
    
    .main-category-title h2 {
        font-size: 24px;
    }
    
    .category-title h3 {
        font-size: 18px;
    }
    
    .title-bar {
        height: 28px;
        width: 3px;
    }
    
    .sub-category,
    .products-grid {
        margin-left: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-image img {
        padding: 8px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .sub-category-button {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .photo-section {
        padding: 60px 0;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .top-cards-section {
        padding: 60px 0;
    }
    
    .top-cards-section .category-content {
        padding: 20px;
    }
    
    .top-cards-section .category-title {
        font-size: 20px;
    }
    
    .design-cards-section {
        padding: 40px 0;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-category-section {
        padding: 12px;
    }
    
    .main-category-title h2 {
        font-size: 20px;
    }
    
    .category-title h3 {
        font-size: 16px;
    }
    
    .title-bar {
        height: 24px;
        width: 3px;
    }
    
    .sub-category,
    .products-grid {
        margin-left: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-image img {
        padding: 6px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .sub-category-button {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .photo-section {
        padding: 40px 0;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
        font-size: 14px;
    }
    
    /* Product Detail Page Mobile */
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .product-search-section {
        padding: 20px;
    }
    
    .related-info-section {
        padding: 20px;
    }
    
    .contact-button {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 240px;
    }
    
    .contact-button i {
        font-size: 18px;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Product Navigation Sidebar Mobile */
    .product-nav-sidebar {
        padding: 15px 0;
    }
    
    .product-nav-container {
        padding: 0 5px;
    }
    
    .nav-subcategory-link {
        padding: 6px 0 6px 10px;
    }
    
    .nav-product-link {
        padding: 4px 0 4px 20px;
    }
    
    .nav-category-link,
    .nav-subcategory-link,
    .nav-product-link span {
        font-size: 14px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 200px;
    }
    
    .contact-button i {
        font-size: 16px;
    }
}

/* Recruitment Section */
.recruitment {
    padding: 80px 0;
    background: linear-gradient(166deg, rgba(239, 246, 255, 1) 0%, rgba(250, 245, 255, 1) 50%, rgba(253, 242, 248, 1) 100%);
    color: #1E293B;
}

.recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recruitment-image {
    text-align: center;
}

.recruitment-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.recruitment-info {
    padding: 0 20px;
}

.recruitment-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.recruitment-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 40px;
}

.recruitment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    min-height: auto;
}

.feature-item:hover {
    transform: none;
    box-shadow: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon i {
    font-size: 20px;
    color: #2563eb;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.feature-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Recruitment Section */
@media (max-width: 1024px) {
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recruitment-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recruitment-title {
        font-size: 3rem;
    }
    
    .recruitment-image img {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .recruitment {
        padding: 60px 0;
    }
    
    .recruitment-info {
        padding: 0 10px;
    }
    
    .recruitment-title {
        font-size: 2rem;
    }
    
    .recruitment-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 16px;
        min-height: 100px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .career-hero .hero-content {
        position: static;
        text-align: center;
        margin: 0 auto;
        padding: 20px;
        max-width: 100%;
    }
    
    .career-hero .hero-title {
        font-size: 2.5rem;
    }
}

/* 電話ボタンのスタイル - 全ページ共通 */
.phone-btn {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fdf2f8;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
    min-height: auto;
    gap: 12px;
}

.phone-btn:hover {
    background: #fce7f3;
    border-color: #f9a8d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-btn i {
    font-size: 24px;
    color: #ec4899;
}

.phone-btn span {
    font-weight: 500;
    color: #374151;
}

.phone-btn .phone-number {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: inherit;
}


/* スマホ用ヘッダー調整 */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;            /* 余白を少し削る */
  }

  .header-content {
    height: auto;               /* ← 高さ固定を解除 */
    padding: 8px 0;
    align-items: flex-start;    /* 上揃えにしてはみ出し防止 */
  }

  /* ロゴ：縦並びにして幅を抑える */
  .logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .logo-img {
    height: 28px;
    width: auto;
  }

  .logo .company-name {
    font-size: 0.75rem;
    margin-top: 0;
    white-space: normal;        /* 折り返しを許可 */
    max-width: 70vw;           /* 長い社名でも横にはみ出さないように */
  }

  /* PC ナビは非表示、ハンバーガーだけ出す */
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;          /* 右端に寄せる */
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;             /* つぶれて変形しないように */
  }
    
  .nav {
    position: absolute;         /* ヘッダーの下に“ぶら下がる”感じ */
    top: 64px;                  /* ヘッダーの高さに合わせる */
    left: 0;
    right: 0;
    background: #ffffff;        /* 今のデザインに合わせて白のまま */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px 20px;

    /* 閉じている状態 */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    z-index: 999;               /* ヘッダーの下・コンテンツの上に出す */
  }

  /* 開いたとき：高さは“中身に任せる”＋上限だけ決める */
  .nav.nav-open {
    max-height: 600px;          /* ここはメニューが収まるくらいの十分大きな値 */
    opacity: 1;
    pointer-events: auto;
  }
    
  .nav-inner {
  display: flex;
  flex-direction: column;
}
    
  .nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

  /* ナビ内リンクの並びを縦に変更 */
  .nav-link,
  .contact-btn,
  .language-selector {
    display: block;
    padding: 12px 20px;
    text-align: left;
    width: 100%;
  }

  .language-selector {
    position: static;
  }

  .language-dropdown {
    position: static;
    display: none;
  }
    

  
  /* 白背景ボタン（联系我们） */
.btn-white {
    background: #2563EB;
    color: #fff;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    text-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    font-size: 16px;
    text-align: center;
}

.btn-white:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0px 8px 12px -2px rgba(0, 0, 0, 0.15), 0px 4px 8px -4px rgba(0, 0, 0, 0.1);
}

/* 青背景ボタン（查看产品） - Figmaデザイン準拠 */
.btn-blue {
    background: #2563EB !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 13px 25px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 50px !important;
    min-width: 138.69px !important;
}

.btn-blue:hover {
    background: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.btn-blue i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

.btn-blue:hover i {
    transform: translateX(2px) !important;
}

/* 白枠ボタン（了解公司概要） - Figmaデザイン準拠 */
.btn-white-border {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    border-radius: 9999px !important;
    padding: 18px 34px !important;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5em !important;
    text-align: center !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    width: auto !important;
    height: 60px !important;
    min-width: 200px !important;
    white-space: nowrap !important;
}

.btn-white-border:hover {
    background: #FFFFFF !important;
    color: #0E1271 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15), 0px 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}
}

/* スマホ時のハンバーガーメニュー内 言語ボタンを見やすくする */
@media (max-width: 768px) {

  /* 言語エリア全体を横いっぱいに */
  .nav .language-selector {
    width: 100%;
    padding: 8px 16px;
  }

  /* 上のトグルボタン（「中文 ▼」のところ） */
  .nav .language-btn {
    width: 100%;
    justify-content: flex-start;
    background: #e5e7eb;        /* はっきりしたグレー背景 */
    color: #111827;             /* 濃い文字色 */
    border-radius: 8px;
    font-size: 14px;
  }

  .nav .language-btn i {
    color: #111827;
  }

  /* ドロップダウン自体を、モバイルでは常にリストとして表示 */
  .nav .language-dropdown {
    position: static;
    display: block;             /* PCの display:none を上書き */
    background: transparent;
    box-shadow: none;
    margin-top: 8px;
    padding: 0;
  }

  /* 各言語のボタン（中文 / 日本語 / English）を大きめのタップ領域に */
  .nav .lang-option,
  .nav .lang-option:link,
  .nav .lang-option:visited {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 6px;
    font-size: 14px;
    text-align: left;
    color: #111827;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
  }

  .nav .lang-option:last-child {
    margin-bottom: 0;
  }

  .nav .lang-option:hover {
    background: #e5e7eb;
  }
    
  /* ナビ内の言語エリアを全幅 & 上下に余白 */
  .nav .language-selector {
    position: static;      /* PC の position: relative をリセットしておく */
    width: 100%;
    margin-top: 8px;
    padding: 0 16px 8px;
  }

  /* 「中文 ▼」のトグルボタンはモバイルでは非表示 */
  .nav .language-btn {
    display: none;
  }

  /* ドロップダウンを“常に表示のリスト”にする */
  .nav .language-dropdown {
    position: static;
    display: block;        /* PC の display: none を上書き */
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }

  /* 各言語リンクをボタン風に縦並びに */
  .nav .lang-option,
  .nav .lang-option:link,
  .nav .lang-option:visited {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 6px;
    font-size: 14px;
    text-align: left;
    color: #111827;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
  }

  .nav .lang-option:last-child {
    margin-bottom: 0;
  }

  .nav .lang-option:hover {
    background: #e5e7eb;
  }
}

/* モバイル用：ハンバーガーメニューをフルスクリーン化して途中で切れないようにする */
@media (max-width: 768px) {

  /* まずデフォルトでは非表示 */
  .nav {
    display: none;
  }

  /* ハンバーガー開いたときだけ表示 */
  .header.is-nav-open .nav {
    display: flex;
  }

  /* フルスクリーンのオーバーレイメニューにする */
  .header.is-nav-open .nav {
    position: fixed;
    top: 64px;         /* ヘッダーの高さ分だけ下からスタート */
    left: 0;
    right: 0;
    bottom: 0;         /* 画面下まで */
    background: #fff;  /* 好きな色に変更可（今のヘッダーと同じ） */
    flex-direction: column;
    padding: 16px 20px 32px;
    gap: 12px;
    overflow-y: auto;  /* ← ここが一番大事：中身が多いときにスクロール */
    z-index: 9999;
  }

  /* メニュー内の各リンクを縦並び＆タップしやすく */
  .header.is-nav-open .nav-link,
  .header.is-nav-open .contact-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  /* 言語セクションはそのまま下に並ぶように */
  .header.is-nav-open .language-selector {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  /* すでに「3言語を最初から見せる」CSS を入れているなら、そのままでOK */
}


/* スマホ時にヘッダーが画面からはみ出さないようにする */
@media (max-width: 768px) {

  /* ヘッダー全体は画面幅にフィット */
  .header {
    width: 100%;
    overflow-x: hidden;
  }

  /* ヘッダー内のコンテナも 100% に固定（max-width を打ち消す） */
  .header .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 12px;   /* 左右だけ少し余白 */
    box-sizing: border-box;
  }

  /* 中身：左にロゴ・会社名、右にハンバーガー */
  .header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;      /* 高さ固定を解除 */
    padding: 8px 0;
  }

  /* ロゴブロックは「ボタンを除いた残り全部」を使う */
  .header .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header .logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: calc(100% - 48px); 
    /* 右側の 48px はハンバーガーボタン＋余白用 */
  }

  .header .logo-img {
    height: 28px;
    width: auto;
  }

  /* ★ここが重要：会社名は折り返しOK＋小さめにする */
  .header .logo .company-name {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 0;
    white-space: normal;      /* ← nowrap を上書き */
    word-break: break-word;   /* 長い単語でも途中で折る */
  }

  /* ハンバーガーボタンは右端に固定幅で表示 */
  .mobile-menu-btn {
    display: block;
    flex: 0 0 auto;   /* 縮ませない・はみ出させない */
    margin-left: 8px;
    font-size: 22px;
    line-height: 1;
  }

  /* スマホでは通常ナビは非表示（ハンバーガー開閉用） */
  .nav {
    display: none;
  }
}


/* スマホ時：ヘッダーにスクロールバーが出ないようにする最終調整 */
@media (max-width: 768px) {

  /* ページ全体で横スクロールを出さない */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* ヘッダー自体は 100% 幅＆中身ははみ出させない */
  .header {
    width: 100%;
    height: auto;
    overflow: visible;          /* ヘッダー自身にスクロールバーを出さない */
  }

  /* ヘッダー内のコンテナは「パディング込みで」100% に収める */
  .header .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 12px;            /* 左右の余白だけ少し残す */
    box-sizing: border-box;     /* パディング込みで 100% にする */
  }

  /* 中身の並び：左にロゴ＋社名、右にハンバーガー */
  .header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;               /* 高さ固定を解除 */
    padding: 8px 0;
  }

  /* ロゴブロックは「ボタンを除いた残り幅」を使う */
  .header .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header .logo-link {
    display: flex;
    flex-direction: column;     /* ロゴの下に社名 */
    gap: 4px;
    max-width: calc(100% - 48px); /* 右側 48px をハンバーガー用に確保 */
  }

  .header .logo-img {
    height: 28px;
    width: auto;
  }

  /* 社名は折り返しOKにして、横にはみ出させない */
  .header .logo .company-name {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 0;
    white-space: normal;
    word-break: break-word;
  }

  /* ハンバーガーボタンは固定幅で右端に */
  .mobile-menu-btn {
    display: block;
    flex: 0 0 auto;    /* 縮まない＆はみ出さない */
    margin-left: 8px;
    font-size: 22px;
    line-height: 1;
  }
    
/* 言語選択を横並び化 */
  .nav .language-dropdown {
    display: flex !important;
    flex-direction: wrap;
    justify-content: center;
    flex-wrap: wrap;            /* ← 画面幅が足りないとき自動で折り返し */
    gap: 8px;
    width: 100%;
    padding: 0;
    margin-top: 8px;
    background: transparent;
    box-shadow: none;
  }

  .nav .lang-option {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111;
    font-size: 14px;
    text-align: center;
    width: auto;           /* ← ボタン幅を小さく */
  }

  .nav .lang-option:hover {
    background: #f3f4f6;
  }

  /* PCと違いモバイルではドロップダウンボタンは消す */
  .nav .language-btn {
    display: none;
  }
}


html { scroll-behavior: smooth; }
        body { 
            font-family: 'Noto Sans', sans-serif; 
            line-height: 1.6; 
            color: #333; 
            overflow-x: hidden; 
            margin: 0;
        }
        
        /* Header Critical Styles */
        .header {
            background: #0E1271;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            height: 64px;
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 0px;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
        }
        .logo-img {
            height: 40px;
            width: auto;
            margin-right: 12px;
        }
        .company-name {
            font-size: 18px;
            font-weight: 600;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .language-btn, .contact-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Critical Styles */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 64px;
            background: #000000;
        }
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .hero-bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            background: #000000;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Basic Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
