/*
Theme Name: Smart Agri
Theme URI: https://example.com/smart-agri
Author: Smart Agriculture Team
Author URI: https://example.com
Description: スマート農業普及推進プラットフォームのカスタムテーマ。農業者、企業、研究機関をつなぐ情報共有プラットフォームです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smart-agri
Tags: agriculture, platform, community, custom-post-types, responsive-design
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #42210b;
    background-color: #fbf9f4 !important;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 120px);
}

/* Top Header Bar - Figma Design Compliant */
.top-header-figma {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 120px;
    background: #E6AE25;
    overflow: visible; /* Changed from hidden to visible */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Higher than sidebar */
}

.header-bg-vector {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Links - WordPress Menu Integration */
.header-nav-figma {
    position: relative;
    z-index: 10;
    flex: 1;
}

.nav-menu-figma {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-figma li {
    position: relative;
}

.nav-link-figma {
    color: #42210b;
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-link-figma:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Left Title - WordPress Site Info */
.header-center-figma {
    position: relative;
    z-index: 10;
    flex: 1;
    text-align: left;
}

.main-title-figma {
    color: #42210b;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    margin: 0 0 0.3rem 0;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.site-title-link {
    color: inherit;
    text-decoration: none;
}

.site-title-link:hover {
    text-decoration: none;
}

.main-subtitle-figma {
    color: #42210b;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Right Controls - Accessibility & Contact */
.header-controls-figma {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin-left: 2rem;
}

.font-size-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.font-size-label-figma {
    color: #42210b;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.font-size-buttons {
    display: flex;
    gap: 0.5rem;
}

.font-size-btn-figma {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #42210b;
    border-radius: 6px;
    color: #42210b;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.font-size-btn-figma:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.font-size-btn-figma.active {
    background: #42210b;
    color: white;
    border-color: #42210b;
    box-shadow: 0 4px 8px rgba(66, 33, 11, 0.3);
}

/* Contact Section - Figma Specs */
.contact-section {
    position: relative;
}

.contact-btn-figma {
    position: relative;
    z-index: 2;
    display: block;
    transition: all 0.3s ease;
}

.contact-btn-figma:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-image {
    width: auto;
    height: 45px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    position: relative;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-start;
}

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #42210b;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.main-subtitle {
    font-size: 1rem;
    color: #42210b;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.header-nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-link {
    color: #42210b;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header-nav-link:hover {
    text-decoration: underline;
    transform: translateY(-2px);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

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

.font-size-label {
    color: #42210b;
    font-weight: 700;
    font-size: 2.25rem;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.font-size-btn {
    background: white;
    border: none;
    color: #42210b;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 2.5rem;
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.font-size-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.font-size-btn.active {
    background: #42210b;
    color: white;
}

.contact-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Zen Maru Gothic', sans-serif;
    min-width: 200px;
}

.contact-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 2rem;
    background: white;
    border: 2px solid #42210b;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 20;
}

.menu-toggle {
    background: #42210b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.mobile-nav-link {
    color: #42210b;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    background: #f0f0f0;
}

.mobile-menu.active .mobile-nav {
    display: flex;
}

/* Hero Section - Figma Design */
.hero-nav-menu-figma {
    position: relative;
    width: 100%;
    max-width: 380px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 260px;
    margin-left: 3.5rem;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    width: 380px;
}

.nav-menu-item.green {
    background-color: #53834f;
    color: white;
}

.nav-menu-item.yellow {
    background-color: #e6ae25;
    color: #ffffff;
}

.nav-menu-item.light-yellow {
    background-color: #FFFECD;
    color: #53834f;
}

.nav-menu-item:hover {
    transform: translateX(12px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-menu-item.green:hover {
    background-color: #4a7546;
    box-shadow: 0 8px 25px rgba(83, 131, 79, 0.3);
}

.nav-menu-item.yellow:hover {
    background-color: #d4a017;
    box-shadow: 0 8px 25px rgba(230, 174, 37, 0.3);
}

.nav-menu-item.light-yellow:hover {
    background-color: #fffdb8;
    color: #4a7546;
    box-shadow: 0 8px 25px rgba(255, 254, 205, 0.4);
}

.nav-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu-item:hover::before {
    left: 100%;
}

.nav-menu-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    flex: 1;
}

.nav-menu-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-image: url('assets/images/top/nav-menu-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-indent: -9999px;
    overflow: hidden;
}

/* Arrow styles are now handled by background-image */

.nav-menu-item:hover .nav-menu-arrow {
    transform: translateX(3px) scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Section Animations */
.hero-nav-menu-figma {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-illustrations-figma {
    animation: slideInRight 1s ease-out 0.6s both;
}

.news-section-figma {
    animation: fadeInUp 1s ease-out 0.9s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-logo-illustration {
    position: absolute;
    right: 5%;
    top: 80px;
    width: 20%;
    max-width: 300px;
    height: auto;
    z-index: 4;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.logo-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-vector-illustration {
    position: absolute;
    right: 6%;
    top: 80px;
    width: 18%;
    max-width: 250px;
    height: auto;
    z-index: 2;
    animation: fadeInRight 1s ease-out 1s both;
}

.vector-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-vector1-illustration {
    position: absolute;
    right: 2%;
    top: 250px;
    width: 22%;
    max-width: 300px;
    height: auto;
    z-index: 2;
    animation: fadeInRight 1s ease-out 1.2s both;
}

.figma-vector2-illustration {
    position: absolute;
    right: 1%;
    top: 2%;
    width: 20%;
    max-width: 300px;
    height: auto;
    z-index: 2;
    animation: fadeInLeft 1s ease-out 1.4s both;
}

.vector2-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vector1-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* News Section - Screenshot Design */
.news-section-screenshot {
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 50%;
    max-width: 600px;
    height: auto;
    background: white;
    z-index: 5;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.news-container-screenshot {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-header-screenshot {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #53834f;
}

.news-title-screenshot {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #53834f;
    margin: 0;
    letter-spacing: 0.2em;
}

.news-divider-screenshot {
    width: 2px;
    height: 2rem;
    background-color: #53834f;
}

.news-date-screenshot {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #53834f;
    letter-spacing: 0.05em;
}

.news-list-screenshot {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.news-item-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.news-item-screenshot:hover {
    background: #f0f8f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.15);
}

.news-item-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #53834f;
    text-align: center;
}

.news-item-tag {
    background: linear-gradient(135deg, #e6ae25 0%, #f4c430 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(230, 174, 37, 0.3);
    white-space: nowrap;
}

.news-item-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #42210b;
    line-height: 1.4;
    text-align: center;
    flex: 1;
}

.news-footer-screenshot {
    text-align: left;
}

.news-link-screenshot {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #42210b;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.news-link-screenshot:hover {
    text-decoration: underline;
    color: #53834f;
}

.news-decorative-lines-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-line-vertical-screenshot {
    position: absolute;
    left: 50%;
    top: 20%;
    width: 2px;
    height: 50px;
    background: #53834f;
    transform: translateX(-50%);
}

.news-line-horizontal-screenshot {
    position: absolute;
    left: 20%;
    bottom: 30%;
    width: 60px;
    height: 2px;
    background: #53834f;
}

/* Right Sidebar - Screenshot Design */
.right-sidebar-screenshot {
    position: absolute;
    right: 2%;
    top: 20%;
    width: 60px;
    height: 200px;
    z-index: 4;
}

.sidebar-banner-screenshot {
    background: #e6ae25;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.sidebar-text-screenshot {
    color: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.sidebar-arrow-screenshot {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e6ae25;
}

/* Map and CTA Section - Screenshot Design */
.map-cta-section-screenshot {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    margin: 3rem 0;
    background: #f5f3f0;
    display: block;
}

.container-screenshot {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 0 3rem;
}

.map-section-screenshot {
    flex: 0 0 auto;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.fukushima-map-screenshot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-region-screenshot {
    height: 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.region-1-screenshot {
    background: #e6ae25;
}

.region-2-screenshot {
    background: #53834f;
}

.region-3-screenshot {
    background: #2e7d32;
}

.cta-section-screenshot {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content-screenshot {
    background: transparent;
    padding: 0;
}

.cta-title-screenshot {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #42210b;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.cta-description-screenshot {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #42210b;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.cta-button-screenshot {
    background: #53834f;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.3);
    display: inline-block;
    letter-spacing: 0.05em;
}

.cta-button-screenshot:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.4);
}

/* Map and CTA Section - Figma Design */
.map-cta-section-figma {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    margin: 3rem 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.container-figma-cta {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 3rem;
}

/* Map Section - Figma */
.map-section-figma {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fukushima-map-image {
    width: 340px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* CTA Text Section - Figma */
.cta-text-section-figma {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Map CTA Text - 茶色テキスト */
.map-cta-text-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #42210B !important;
    margin: 0;
    line-height: 50px;
    letter-spacing: 4.8px;
    text-align: left;
}

/* CTA Button - Figma Design */
.cta-button-container-figma {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-cta-illustrations-figma {
    display: none;
}

.cta-button-figma {
    background: #53834f;
    color: white;
    border: none;
    padding: 18px 80px;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 56.997px;
    letter-spacing: 3.6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 631px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button-figma:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

/* Image Carousel Section - Figma Design */
.carousel-section-figma {
    position: relative;
    width: 100%;
    padding: 4rem 0 0 0;
    overflow: hidden;
}

.carousel-wrapper-figma {
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-nav-figma {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: #42210b;
    border: 2px solid #e0e0e0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-nav-figma.prev-figma {
    left: 2rem;
}

.carousel-nav-figma.next-figma {
    right: 2rem;
}

.carousel-nav-figma:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-images-figma {
    display: flex;
    gap: 1.5rem;
    overflow: visible;
    position: relative;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item-figma {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: calc((100% - 3rem) / 3);
}

.carousel-image-figma {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: block;
}

.carousel-image-figma:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.news-container-figma {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.news-header-figma {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #53834f;
}

.news-divider-figma {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #53834f 0%, #81C784 100%);
    border-radius: 2px;
}

.news-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 46.368px;
    color: #53834f;
    margin: 0;
    letter-spacing: 9.2735px;
}

.news-date-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 25.76px;
    color: #53834f;
    letter-spacing: 1.288px;
}

.news-list-figma {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.news-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.news-item-figma:hover {
    background: #f0f8f0;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(83, 131, 79, 0.15);
}

.news-item-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #53834f;
    text-align: center;
    order: 1;
}

.news-item-tag {
    background: linear-gradient(135deg, #e6ae25 0%, #f4c430 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(230, 174, 37, 0.3);
    order: 2;
    white-space: nowrap;
}

.news-item-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #42210b;
    line-height: 1.4;
    text-align: center;
    order: 3;
    flex: 1;
}

.news-footer {
    text-align: center;
}

.news-link-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20.608px;
    color: #42210b;
    text-decoration: none;
    letter-spacing: 2.0608px;
    transition: all 0.3s ease;
}

.news-link-figma:hover {
    text-decoration: underline;
    color: #53834f;
}

/* Decorative Lines from Figma */
.news-decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-line-vertical {
    position: absolute;
    left: 50%;
    top: 20%;
    width: 2px;
    height: 60px;
    background: #53834f;
    transform: translateX(-50%);
}

.news-line-horizontal {
    position: absolute;
    left: 20%;
    bottom: 30%;
    width: 80px;
    height: 2px;
    background: #53834f;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 50px;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.hero-title-section {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 99;
}

.hero-title-image {
    max-width: 800px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero-logo-img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(3px 3px 0px #42210b);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 0px #42210b;
    font-weight: 600;
}

/* Left Navigation */
.left-navigation {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-button {
    background-color: #53834f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-button::after {
    content: '→';
    font-size: 1rem;
    font-weight: bold;
}

.nav-button.orange {
    background-color: #e6ae25;
}

.nav-button.yellow {
    background-color: #f4d03f;
    color: #42210b;
}

.nav-button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Illustrations */
.hero-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Figma Design Assets */
.figma-main-illustration {
    position: absolute;
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-logo-illustration {
    position: absolute;
    right: 10%;
    top: 5%;
    width: 200px;
    height: 100px;
    z-index: 4;
}

.logo-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-vector-illustration {
    position: absolute;
    right: 15%;
    top: 10%;
    width: 150px;
    height: 80px;
    z-index: 2;
}

.vector-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figma-vector1-illustration {
    position: absolute;
    left: 5%;
    top: 10%;
    width: 200px;
    height: 100px;
    z-index: 2;
}

.vector1-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.farmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8b4513 0%, #a0522d 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.farmer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #8b4513;
    border-radius: 50%;
}

.farmer::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #53834f;
    border-radius: 20px;
}

.drone-illustration {
    position: absolute;
    right: 25%;
    top: 15%;
    width: 60px;
    height: 40px;
}

.drone {
    width: 100%;
    height: 100%;
    background: #53834f;
    border-radius: 50%;
    position: relative;
}

.drone::before,
.drone::after {
    content: '';
    position: absolute;
    background: #53834f;
    border-radius: 50%;
}

.drone::before {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
}

.drone::after {
    width: 20px;
    height: 20px;
    top: -10px;
    right: -10px;
}

.greenhouse-illustration {
    position: absolute;
    right: 5%;
    top: 40%;
    width: 80px;
    height: 60px;
}

.greenhouse {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 10px;
    position: relative;
}

.greenhouse::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(45deg, #87ceeb 0%, #b0e0e6 100%);
    border-radius: 10px 10px 0 0;
}

.tractor-illustration {
    position: absolute;
    right: 10%;
    bottom: 20%;
    width: 100px;
    height: 60px;
}

.tractor {
    width: 100%;
    height: 100%;
    background: #dc143c;
    border-radius: 10px;
    position: relative;
}

.tractor::before,
.tractor::after {
    content: '';
    position: absolute;
    background: #333;
    border-radius: 50%;
}

.tractor::before {
    width: 30px;
    height: 30px;
    bottom: -15px;
    left: 10px;
}

.tractor::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: 10px;
}

/* Right Sidebar */
.right-sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    width: 60px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    position: relative;
}

.sidebar-item.green {
    background-color: #53834f;
}

.sidebar-item.yellow {
    background-color: #e6ae25;
}

.sidebar-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.sidebar-icon {
    position: absolute;
    bottom: 10px;
    font-size: 1.2rem;
}

/* News Section */
.news-section {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 4;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.news-container {
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    min-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.news-divider {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    margin-bottom: 10px;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-list {
    margin-bottom: 15px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.news-tag {
    background-color: #e6ae25;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.news-text {
    color: #666;
    flex: 1;
}

.news-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-link:hover {
    color: #004499;
}

.robot-mower {
    width: 80px;
    height: 60px;
}

.mower {
    width: 100%;
    height: 100%;
    background: #90ee90;
    border-radius: 20px;
    position: relative;
}

.mower::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #53834f;
    border-radius: 50%;
}

.mower::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: #333;
    border-radius: 50%;
}

/* Map and Call to Action Section */
.map-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fukushima-map {
    flex: 1;
    position: relative;
    width: 300px;
    height: 200px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-region {
    position: absolute;
    border-radius: 8px;
}

.region-1 {
    top: 20%;
    left: 10%;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, #e6ae25 0%, #f4d03f 100%);
}

.region-2 {
    top: 10%;
    right: 15%;
    width: 35%;
    height: 45%;
    background: linear-gradient(135deg, #53834f 0%, #6b9b68 100%);
}

.region-3 {
    bottom: 15%;
    right: 5%;
    width: 25%;
    height: 30%;
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 100%);
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #42210b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Image Carousel Section */
.carousel-section {
    padding: 4rem 0;
    background: #ffffff;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-nav {
    background: #42210b;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: #2d1508;
    transform: scale(1.1);
}

.carousel-images {
    flex: 1;
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.carousel-item {
    flex: 1;
    min-width: 300px;
}

.carousel-image {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-image:hover {
    transform: translateY(-5px);
}

.robot-mower-image {
    background: linear-gradient(135deg, #90ee90 0%, #98fb98 100%);
}

.tractor-image {
    background: linear-gradient(135deg, #dc143c 0%, #ff6b6b 100%);
}

.drone-image {
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 100%);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
}

.image-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Font Size Controls */
.font-size-btn.active {
    background-color: #e6ae25;
    color: #42210b;
}

.font-size-btn:hover {
    background-color: #d4a020;
    transform: scale(1.05);
}

/* Enhanced Navigation Buttons */
.nav-button {
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-button:hover::before {
    left: 100%;
}

/* Enhanced News Section */
.news-container {
    position: relative;
    overflow: hidden;
}

.news-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Responsive Design for Figma Header */
@media (max-width: 1200px) {
    .top-header-figma {
        height: 120px;
        padding: 0 15px;
    }
    
    .main-title-figma {
        font-size: 32px;
        white-space: nowrap;
    }
    
    .main-subtitle-figma {
        font-size: 14px;
        white-space: nowrap;
    }
    
    .nav-link-figma {
        font-size: 20px;
    }
    
    .contact-section {
        width: 300px;
    }
    
    .contact-image {
        height: 50px;
    }
}

/* タブレット・中間サイズ対応（1000px前後） */
@media (max-width: 1100px) {
    .top-header-figma {
        height: auto;
        min-height: 110px;
        padding: 10px 15px;
    }
    
    .header-content {
        height: auto;
        min-height: 110px;
        padding: 10px 15px;
        gap: 1rem;
    }
    
    .header-nav-figma {
        flex: 1;
        max-width: none;
    }
    
    .nav-menu-figma {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-nav {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .nav-link-figma {
        font-size: 16px;
        padding: 0.4rem 0.8rem;
        white-space: normal;
    }
    
    .header-center-figma {
        flex: 0 0 auto;
    }
    
    .main-title-figma {
        font-size: 26px;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .main-subtitle-figma {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .header-controls-figma {
        flex: 0 0 auto;
        margin-left: 1rem;
        gap: 0.75rem;
    }
    
    .font-size-section {
        gap: 0.4rem;
    }
    
    .font-size-label-figma {
        font-size: 13px;
    }
    
    .font-size-btn-figma {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .contact-section {
        width: 220px;
    }
    
    .contact-image {
        height: 40px;
    }
    
    /* ヒーローセクション調整 */
    .hero-section-figma {
        height: 100vh;
        min-height: 750px;
        padding: 0 3%;
    }
    
    .hero-title-section {
        padding: 1.5rem;
    }
    
    .hero-title-figma {
        font-size: 46px;
        line-height: 1.2;
    }
    
    .hero-subtitle-figma {
        font-size: 18px;
    }
    
    .figma-main-illustration {
        max-width: 480px;
    }
    
    .nav-menu-container {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .header-content {
        height: 120px;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .header-nav {
        gap: 0.75rem;
    }
    
    .nav-link-figma {
        font-size: 16px;
        padding: 0.4rem 0.8rem;
    }
    
    .main-title-figma {
        font-size: 26px;
        white-space: nowrap;
    }
    
    .main-subtitle-figma {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .font-size-section {
        gap: 0.5rem;
    }
    
    .font-size-label-figma {
        font-size: 14px;
    }
    
    .font-size-btn-figma {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .contact-section {
        width: 220px;
    }
    
    .contact-image {
        height: 38px;
    }
    
    /* ヒーローセクション調整 */
    .hero-section-figma {
        height: auto;
        min-height: 700px;
        padding: 2rem 2%;
    }
    
    .hero-title-figma {
        font-size: 42px;
    }
    
    .hero-subtitle-figma {
        font-size: 18px;
    }
    
    .figma-main-illustration {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .top-header-figma {
        flex-direction: column;
        height: auto;
        padding: 1rem 15px;
        gap: 1rem;
    }
    
    .header-nav-figma {
        order: 2;
        width: 100%;
    }
    
    .nav-menu-figma {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-center-figma {
        position: static;
        transform: none;
        order: 1;
        margin: 0;
    }
    
    .main-title-figma {
        font-size: 28px;
        margin-bottom: 0.25rem;
        white-space: nowrap;
    }
    
    .main-subtitle-figma {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .header-controls-figma {
        order: 3;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 50%;
    }
    
    .font-size-section {
        flex-direction: row;
        gap: 1rem;
    }
    
    .font-size-label-figma {
        font-size: 16px;
    }
    
    .font-size-btn-figma {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    
    .contact-section {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-image {
        height: 40px;
    }
    
    .nav-link-figma {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .top-header-figma {
        padding: 0.75rem 10px;
    }
    
    .main-title-figma {
        font-size: 24px;
        white-space: nowrap;
    }
    
    .main-subtitle-figma {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .nav-link-figma {
        font-size: 16px;
    }
    
    .font-size-btn-figma {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .contact-btn-figma {
        font-size: 16px;
    }
    
    .contact-section {
        height: 70px;
    }
    
    .contact-image {
        height: 35px;
    }
    
    .contact-btn-figma {
        top: 12px;
        left: 55px;
    }
    
    .header-bg-image {
        width: 100%;
        height: auto;
    }
    
    .contact-bg-vector {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .contact-icon-figma {
        width: 40px;
        height: 28px;
    }

    .figma-logo-illustration {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 1rem auto;
    }
    
    .figma-vector-illustration,
    .figma-vector1-illustration,
    .figma-vector2-illustration {
        display: none;
    }
    
    .news-section-figma {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 800px;
        height: auto;
        margin: 3rem auto;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
    }
    
    .news-list-figma {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-item-figma {
        flex-direction: row;
        align-items: center;
        text-align: center;
    }
    
    .news-item-date,
    .news-item-text {
        text-align: center;
    }
    
    .news-decorative-lines {
        display: none;
    }
    
    /* Screenshot Design Responsive */
    .news-section-screenshot {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
        padding: 1.5rem;
    }
    
    .news-list-screenshot {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-item-screenshot {
        flex-direction: row;
        align-items: center;
        text-align: center;
    }
    
    .news-item-date,
    .news-item-text {
        text-align: center;
    }
    
    .right-sidebar-screenshot {
        display: none;
    }
    
    .map-cta-section-screenshot {
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .container-screenshot {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-section-screenshot,
    .cta-section-screenshot {
        max-width: 100%;
    }
    
    .news-title-figma {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .news-date-figma {
        font-size: 18px;
    }
    
    .news-item-date {
        font-size: 18px;
        min-width: 100px;
    }
    
    .news-item-tag {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .news-item-text {
        font-size: 18px;
    }
    
    .news-link-figma {
        font-size: 16px;
    }
    
    .nav-menu-item {
        padding: 10px 12px;
    }
    
    .nav-menu-text {
        font-size: 12px;
    }
    
    .nav-menu-arrow {
        width: 28px;
        height: 28px;
    }
}

/* Font Size Classes - Global Application with Horizontal Scroll */

/* Enable horizontal scroll when text size increases */
html {
    overflow-x: auto;
    scroll-behavior: smooth;
}

body {
    overflow-x: auto;
    transition: font-size 0.3s ease;
    min-width: 100vw;
}

/* Font Size Classes - Browser Zoom Style (全体拡大) */

/* Small Size - 90% zoom */
body.font-size-small {
    zoom: 0.9;
    min-height: 100vh;
}

/* Ensure header doesn't clip content when zoomed */
body.font-size-small .top-header-figma {
    overflow: visible !important;
    min-width: 100%;
}

/* Firefox用 - zoomをサポートしていないブラウザのみtransformを使用 */
@supports not (zoom: 1) {
    body.font-size-small {
        -moz-transform: scale(0.9);
        -moz-transform-origin: 0 0;
        transform: scale(0.9);
        transform-origin: 0 0;
        transform-style: preserve-3d;
    }
}

/* Medium Size - 100% (default) */
body.font-size-medium {
    zoom: 1;
}

body.font-size-medium .top-header-figma {
    overflow: visible !important;
}

/* Firefox用 */
@supports not (zoom: 1) {
    body.font-size-medium {
        -moz-transform: scale(1);
        -moz-transform-origin: 0 0;
        transform: scale(1);
        transform-origin: 0 0;
    }
}

/* Large Size - 120% zoom */
body.font-size-large {
    zoom: 1.2;
}

body.font-size-large .top-header-figma {
    overflow: visible !important;
    min-width: 100%;
}

/* Firefox用 - zoomをサポートしていないブラウザのみtransformを使用 */
@supports not (zoom: 1) {
    body.font-size-large {
        -moz-transform: scale(1.2);
        -moz-transform-origin: 0 0;
        transform: scale(1.2);
        transform-origin: 0 0;
        transform-style: preserve-3d;
    }
}

/* Header adjustments for zoom to prevent cut-off */
body.font-size-large .nav-menu-figma {
    flex-wrap: nowrap !important;
}

body.font-size-large .nav-link-figma {
    white-space: nowrap !important;
}

body.font-size-large .font-size-section,
body.font-size-large .contact-section {
    flex-shrink: 0 !important;
}


/* Fixed positioned elements - reset zoom and ensure fixed positioning */
body.font-size-small .fixed-right-sidebar,
body.font-size-medium .fixed-right-sidebar,
body.font-size-large .fixed-right-sidebar {
    zoom: 1 !important;
    -moz-transform: scale(1) translateZ(0) !important;
    transform: scale(1) translateZ(0) !important;
    position: fixed !important;
    top: 120px !important;
    right: -18px !important;
    z-index: 10000 !important;
    will-change: transform !important;
}

/* Back to top button - reset zoom and ensure fixed positioning */
body.font-size-small .back-to-top,
body.font-size-medium .back-to-top,
body.font-size-large .back-to-top {
    zoom: 1 !important;
    -moz-transform: scale(1) translateZ(0) !important;
    transform: scale(1) translateZ(0) !important;
    position: fixed !important;
    bottom: 50px !important;
    right: 20px !important;
    z-index: 10000 !important;
    will-change: transform !important;
}

/* Fill background to cover any gaps caused by zoom */
html {
    background-color: #ffffff;
    min-height: 100vh;
    height: 100%;
}

html:has(body.font-size-small) {
    overflow-x: hidden;
    min-height: 100vh;
}

html:has(body.font-size-medium) {
    overflow-x: hidden;
    min-height: 100vh;
}

html:has(body.font-size-large) {
    overflow-x: auto !important;
    min-height: 100vh;
}

body.font-size-small,
body.font-size-medium {
    position: relative;
    background-color: #ffffff;
    overflow-x: hidden !important;
}

body.font-size-large {
    position: relative;
    background-color: #ffffff;
}

/* Prevent right-side gap by ensuring full width coverage */
body.font-size-small::after,
body.font-size-medium::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: -1;
    pointer-events: none;
}


body.font-size-small .main-content {
    min-height: calc(100vh - 120px) !important;
    overflow-x: hidden !important;
}

body.font-size-medium .main-content {
    overflow-x: hidden !important;
}

/* Mobile nav overlay should also stay at normal size */
body.font-size-small .mobile-nav-overlay,
body.font-size-medium .mobile-nav-overlay,
body.font-size-large .mobile-nav-overlay {
    zoom: 1 !important;
    -moz-transform: scale(1) !important;
    -moz-transform-origin: 0 0 !important;
    transform: scale(1) !important;
    transform-origin: 0 0 !important;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo-img {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-title {
    font-size: 1.5rem;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
    }
    
    .nav-button {
        min-width: 120px;
        font-size: 0.7rem;
        padding: 8px 12px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .fukushima-map {
        width: 200px;
        height: 120px;
    }
}

/* Hero Section - Figma Design */
.hero-section-figma {
    position: relative;
    width: 100%;
    height: 1100px;
    min-height: 1100px;
    overflow: hidden;
    background: linear-gradient(180deg, #78d6ff 0%, #fbf9f4 100%);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 2rem;
    padding: 2rem;
    align-items: start;
}

/* Main Illustrations - Figma */
.hero-illustrations-figma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.farmer-illustration {
    position: absolute;
    top: 0;
    left: 60px;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    object-fit: contain;
    z-index: 12;
}

.greenhouse-illustration {
    position: absolute;
    bottom: 0;
    left: 270px;
    width: 250px;
    height: 300px;
    object-fit: contain;
    z-index: 11;
}

/* Logo Illustration */
.figma-logo-illustration {
    position: absolute;
    right: 0;
    top: 0;
    width: 413px;
    height: 266px;
    z-index: 4;
}

.logo-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Vector Decorations */
/* Cloud 1 - Top left corner */
.figma-vector-illustration.cloud-1 {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 250px;
    height: 100px;
    z-index: 5;
}

.vector-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Cloud 2 - Top right corner */
.figma-vector1-illustration.cloud-2 {
    position: absolute;
    top: 150px;
    left: -20px;
    width: 160px;
    height: 90px;
    z-index: 5;
}

.vector1-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Cloud 3 - Bottom left corner */
.figma-vector2-illustration.cloud-3 {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 150px;
    height: 125px;
    z-index: 5;
}

.vector2-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Cloud 4 - Bottom right corner */
.figma-vector3-illustration.cloud-4 {
    position: absolute;
    z-index: 5;
    width: 240px;
    height: auto;
    top: 20%;
    right: -8%;
}

.vector3-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* News Section - Figma Exact Design */
.news-section-exact {
    position: relative;
    max-width: 800px;
    background: #ffffff;
    display: flex;
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
    gap: 2rem;
    overflow: visible;
}

.news-container-exact {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 3rem;
}

/* News Section Illustrations */
.news-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-illustration {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* News Left Section */
.news-left-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 120px;
    padding-top: 0.5rem;
    align-items: center;
}

/* News Title - Exact Position */
.news-title-exact {
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #53834f;
    letter-spacing: 0.2em;
    margin: 0;
    display: block;
    line-height: 1.2;
    text-align: center;
}

/* News Link */
.news-link-exact {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #42210b;
    text-decoration: none;
    letter-spacing: 0.15em;
    border-bottom: 1.5px solid #42210b;
    padding-bottom: 3px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.news-link-exact:hover {
    color: #53834f;
    border-bottom-color: #53834f;
}

/* News Items Container */
.news-items-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
    padding-top: 0.3rem;
}

/* News Items Container - Figma Design */
.news-items-container-figma {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.news-items-container-figma .news-card-item-figma {
    background: white;
    border: 1px solid #42210B;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-items-container-figma .news-card-item-figma:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(66, 33, 11, 0.15);
}

.news-items-container-figma .news-card-link-figma {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-items-container-figma .news-card-header-figma {
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid #E0E0E0;
}

.news-items-container-figma .news-type-label-figma {
    text-align: center;
}

.news-items-container-figma .news-type-main {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #231815;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.news-items-container-figma .news-type-sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #231815;
    letter-spacing: 0.1em;
}

.news-items-container-figma .news-card-body-figma {
    padding: 20px;
    position: relative;
    padding-left: 35px;
}

.news-items-container-figma .news-card-body-figma::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #231815;
}

.news-items-container-figma .news-card-date-figma {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #231815;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.news-items-container-figma .news-card-title-figma {
    font-size: 13px;
    font-weight: 700;
    color: #231815;
    line-height: 1.5;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.news-items-container-figma .news-card-tags-figma {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.news-items-container-figma .news-tag-figma {
    display: inline-block;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    background-color: white;
    color: #231815;
    border: 1px solid #231815;
    border-radius: 5px;
    letter-spacing: 0.05em;
}

/* News Item - Exact Position */
.news-item-1, .news-item-2, .news-item-3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
}

.news-item-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.news-item-link:hover {
    opacity: 0.8;
}

.news-item-link:hover .news-item-text-1,
.news-item-link:hover .news-item-text-2,
.news-item-link:hover .news-item-text-3 {
    text-decoration: underline;
}

.news-item-date-1, .news-item-date-2, .news-item-date-3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #53834f;
    letter-spacing: 0.03em;
    white-space: nowrap;
    min-width: 95px;
}

.news-item-tag-1, .news-item-tag-2, .news-item-tag-3 {
    background: #E6AE25;
    color: white;
    padding: 5px 14px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(230, 174, 37, 0.25);
}

.news-item-text-1, .news-item-text-2, .news-item-text-3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #42210b;
    letter-spacing: 0.03em;
    line-height: 1.6;
    flex: 1;
}

/* Illustrations positioning */
.news-tractor {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 170px;
    height: auto;
    z-index: 10;
}

.news-robot {
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 180px;
    height: auto;
    z-index: 10;
}


/* Decorative Lines - Removed for better layout */
.news-line-vertical-exact,
.news-line-horizontal-exact {
    display: none;
}


/* Map and CTA Section - Fixed (Below News) */
.map-cta-section-fixed {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 1rem;
    width: 100%;
    max-width: 500px;
    z-index: 5;
}

.container-fixed {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    align-items: flex-end;
}

.map-section-fixed {
    flex: 1;
    max-width: 200px;
}

.fukushima-map-fixed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-region-fixed {
    height: 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.region-1-fixed {
    background: #e6ae25;
}

.region-2-fixed {
    background: #53834f;
}

.region-3-fixed {
    background: #2e7d32;
}

.cta-section-fixed {
    flex: 2;
    max-width: 300px;
}

.cta-content-fixed {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.cta-title-fixed {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #42210b;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

.cta-description-fixed {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #42210b;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
}

.cta-button-fixed {
    background: #53834f;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.3);
}

.cta-button-fixed:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.4);
}

/* News Section Styles - Figma */
.news-container-figma {
    width: 100%;
    max-width: 1228px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.news-header-figma {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #53834f;
}

.news-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #53834f;
    margin: 0;
    letter-spacing: 0.2em;
}

.news-divider-figma {
    width: 2px;
    height: 2rem;
    background-color: #53834f;
}

.news-date-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #53834f;
    letter-spacing: 0.05em;
}

.news-list-figma {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.news-item-figma {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.news-item-figma:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-footer-figma {
    text-align: left;
}

.news-link-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #42210b;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.news-link-figma:hover {
    text-decoration: underline;
    color: #53834f;
}

.news-decorative-lines-figma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-line-vertical-figma {
    position: absolute;
    left: 50%;
    top: 20%;
    width: 2px;
    height: 50px;
    background: #53834f;
    transform: translateX(-50%);
}

.news-line-horizontal-figma {
    position: absolute;
    left: 20%;
    bottom: 30%;
    width: 60px;
    height: 2px;
    background: #53834f;
}

/* Right Sidebar Styles - Figma */
.sidebar-banner-figma {
    background: #e6ae25;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.sidebar-text-figma {
    color: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.sidebar-arrow-figma {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e6ae25;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #E6AE25;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    display: none; /* Hide on desktop */
}

/* Show mobile nav only on mobile devices */
@media (max-width: 768px) {
    .mobile-nav-overlay {
        display: block;
    }
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #D4A574;
    border-bottom: 2px solid rgba(66, 33, 11, 0.1);
}

.mobile-nav-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #42210B;
    margin: 0;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.close-icon {
    font-size: 32px;
    color: #42210B;
    line-height: 1;
}

.mobile-nav-menu {
    padding: 0;
}

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

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #42210B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.mobile-menu-list li a::after {
    content: '›';
    font-size: 24px;
    color: #42210B;
}

/* Overlay backdrop */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none; /* Hide on desktop */
}

/* Show backdrop only on mobile devices */
@media (max-width: 768px) {
    .mobile-nav-backdrop {
        display: block;
    }
}

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

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive Design - Figma */
@media (max-width: 768px) {
    /* Header Adjustments for Mobile */
    .top-header-figma {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        height: auto;
        gap: 1rem;
    }
    
    .header-center-figma {
        flex: 1;
        order: 1;
        margin: 0;
        padding: 0;
        min-width: 0;
        overflow: hidden;
    }
    
    .main-title-figma {
        font-size: 16px;
        margin: 0;
        padding: 0;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .site-title-link {
        color: #42210B;
        text-decoration: none;
    }
    
    .main-subtitle-figma {
        display: none;
    }
    
    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    .header-controls-figma {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
        flex-shrink: 0;
    }
    
    /* Hide font size controls and contact button on mobile */
    .font-size-section,
    .contact-section {
        display: none;
    }
    
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        padding: 0.5rem;
    }
    
    /* Hide fixed sidebar on mobile */
    .fixed-right-sidebar {
        display: none;
    }
    
    .hero-section-figma {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 0;
        gap: 0;
        background: linear-gradient(180deg, #87CEEB 0%, #B8E6F5 50%, #E0F6FF 75%, #F0F8FF 100%);
        position: relative;
        overflow: visible;
    }

    /* Hide front-page navigation menu on mobile */
    .hero-nav-menu-figma {
        display: none !important;
    }

    /* Hero Section - Mobile */
    .hero-title-section {
        position: relative;
        top: initial;
        left: initial;
        transform: initial;
        width: 100%;
        order: 1;
        text-align: center;
        padding: 1.5rem 1rem 1rem;
        z-index: 99;
        background: none;
    }

    .hero-title-image {
        max-width: 300px;
        width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Illustrations Section */
    .hero-illustrations-figma {
        order: 2;
        position: static;
        width: 100%;
        height: 300px;
        min-height: 300px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: none;
        padding: 0 1rem 1.5rem;
        overflow: visible;
    }

    .figma-main-illustration {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        padding-bottom: 0;
    }

    .farmer-illustration {
        max-width: 280px;
        width: 100%;
        height: auto;
        z-index: 11;
        top: 0;
        left: 50%;
    }

    .greenhouse-illustration {
        display: none;
    }

    /* Show Clouds on Mobile - positioned relative to hero-section-figma */
    .hero-section-figma .figma-vector-illustration,
    .hero-section-figma .figma-vector1-illustration,
    .hero-section-figma .figma-vector2-illustration,
    .hero-section-figma .figma-vector3-illustration {
        display: block;
        position: absolute;
        z-index: 5;
    }

    .hero-section-figma .figma-vector-illustration.cloud-1 {
        top: -30%;
        left: 5%;
        width: 160px;
        height: auto;
        animation: float 6s ease-in-out infinite;
    }

    .hero-section-figma .figma-vector1-illustration.cloud-2 {
        top: 15%;
        left: auto;
        right: -2%;
        width: 120px;
        height: auto;
        animation: float 7s ease-in-out infinite 1s;
    }

    .hero-section-figma .figma-vector2-illustration.cloud-3 {
        top: 5%;
        left: -5%;
        right: auto;
        width: 100px;
        height: auto;
        animation: float 8s ease-in-out infinite 2s;
    }

    .hero-section-figma .figma-vector3-illustration.cloud-4 {
        display: none;
    }

    .vector-illustration,
    .vector1-illustration,
    .vector2-illustration,
    .vector3-illustration {
        width: 100%;
        height: auto;
        opacity: 0.85;
    }

    /* Cloud floating animation */
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-12px);
        }
    }

    /* News Section - Mobile */
    .news-section-exact {
        position: relative;
        height: auto;
        padding: 1rem 1rem 2rem;
        background: white;
        margin: -70px auto 0;
        max-width: calc(100% - 40px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        z-index: 99;
    }
    
    .news-container-exact {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .news-left-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin: 0 auto;
    }

    .news-title-exact {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 700;
        font-size: 26px;
        letter-spacing: 5.2px;
        color: #53834f;
        margin: 0;
    }

    .news-link-exact {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 12px;
        padding: 0;
        background: transparent;
        border: none;
        color: #42210B;
        text-decoration: underline;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .news-link-exact:hover {
        opacity: 0.7;
    }

    .news-items-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .news-items-container-figma {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .news-items-container-figma .news-card-header-figma {
        padding: 12px 15px;
    }
    
    .news-items-container-figma .news-type-main {
        font-size: 15px;
    }
    
    .news-items-container-figma .news-type-sub {
        font-size: 10px;
    }
    
    .news-items-container-figma .news-card-body-figma {
        padding: 15px;
        padding-left: 30px;
    }
    
    .news-items-container-figma .news-card-body-figma::before {
        left: 10px;
        top: 15px;
        bottom: 15px;
    }
    
    .news-items-container-figma .news-card-item-figma {
        border-radius: 12px;
    }
    
    .news-items-container-figma .news-card-title-figma {
        font-size: 12px;
    }

    /* Individual news items for mobile */
    .news-item-1,
    .news-item-2,
    .news-item-3,
    .news-item-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        padding: 0.75rem 0;
        background: white;
        border-bottom: 1px solid #E5E5E5;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .news-item-1:last-child,
    .news-item-2:last-child,
    .news-item-3:last-child,
    .news-item-link:last-child {
        border-bottom: none;
    }

    .news-item-link:hover {
        background: #FAFAFA;
    }

    .news-item-date-1,
    .news-item-date-2,
    .news-item-date-3 {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 12px;
        color: #53834f;
        margin: 0;
        flex-shrink: 0;
        white-space: nowrap;
        line-height: 1.2;
    }

    .news-item-tag-1,
    .news-item-tag-2,
    .news-item-tag-3 {
        display: inline-block;
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 10px;
        padding: 0.2rem 0.5rem;
        background: #E6AE25;
        color: white;
        border-radius: 3px;
        white-space: nowrap;
        margin: 0;
        flex-shrink: 0;
        line-height: 1.2;
    }

    .news-item-text-1,
    .news-item-text-2,
    .news-item-text-3 {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 13px;
        line-height: 1.3;
        color: #42210B;
        margin: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .news-line-vertical-exact,
    .news-line-horizontal-exact,
    .news-illustrations {
        display: none;
    }
    
    /* Hide Carousel/Slider on Mobile */
    .carousel-section-figma {
        display: none !important;
    }
    
    /* Map and CTA Section - Mobile */
    .map-cta-section-figma {
        order: 4;
        padding: 2.5rem 0 2rem;
        margin: 0;
        background: #F5F5F5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .container-figma-cta {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }
    
    .map-section-figma {
        width: auto;
        max-width: 100px;
        flex-shrink: 0;
    }

    .fukushima-map-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .cta-text-section-figma {
        text-align: center;
        flex: 1;
        padding-top: 0.3rem;
    }

    .map-cta-text-figma {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        line-height: 1.6;
        color: #42210B;
        padding: 0;
        margin: 0 auto
    }

    .cta-button-container-figma {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0.3rem;
        margin-bottom: 0.5rem;
        padding: 0 4rem;
    }

    .cta-button-figma {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        padding: 0.6rem 1.8rem;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 2px 8px rgba(107, 142, 111, 0.3);
        letter-spacing: 0.3px;
        white-space: nowrap;
        text-align: center;
    }

    .cta-button-figma:hover {
        background: #5a7c5e;
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(107, 142, 111, 0.4);
    }
    
    /* Show illustrations on mobile */
    .map-cta-illustrations-figma {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        width: 100%;
        padding: 1.5rem 1.5rem 0;
        gap: 2rem;
    }
    
    .map-cta-illustration-item {
        flex: 0 0 auto;
        width: 30%;
        max-width: 100px;
    }
    
    .map-cta-illustration-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
}

/* Smart Agriculture Technologies Section */
.smart-agri-tech-section {
    background: #d4a574;
    padding: 4rem 2rem;
    width: 100%;
}

.smart-agri-tech-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #8b4513;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.section-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.dot {
    width: 8px;
    height: 8px;
    background: #20b2aa;
    border-radius: 50%;
}

.section-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #8b4513;
    margin: 0;
    line-height: 1.5;
}

/* Search/Filter Section */
.search-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.filter-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: #53834f;
}

.dropdown-arrow {
    position: absolute;
    right: 1rem;
    color: #53834f;
    font-size: 0.8rem;
    pointer-events: none;
}

.search-button-container {
    text-align: center;
}

.search-button {
    background: #53834f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.3);
}

.search-button:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.4);
}

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

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

.tech-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tech-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.tech-card-content {
    padding: 1.5rem;
}

.tech-card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #8b4513;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.tech-card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #8b4513;
    margin: 0;
    line-height: 1.5;
}

/* View All Link */
.view-all-container {
    text-align: right;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #8b4513;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-link:hover {
    color: #53834f;
    transform: translateX(5px);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover .arrow {
    transform: translateX(3px);
}

/* Responsive Design for Smart Agri Tech Section */
@media (max-width: 768px) {
    .smart-agri-tech-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .filter-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .tech-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .view-all-container {
        text-align: center;
    }
}

/* Farmer Case Studies Section */
.farmer-case-studies-section {
    background: #6B8E6F;
    padding: 4rem 2rem;
    width: 100%;
}

.farmer-case-studies-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Case Studies Header */
.case-studies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-line {
    width: 100%;
    height: 3px;
    background: #ffd700;
    margin-bottom: 2rem;
}

.case-studies-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.case-studies-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.case-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.case-studies-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.case-studies-sub-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Case Studies Filter Section */
.case-studies-filter-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.case-filter-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.case-filter-group {
    flex: 1;
    min-width: 200px;
}

.case-filter-label {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.case-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.case-filter-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.case-filter-input:focus {
    outline: none;
    border-color: #ffd700;
}

.case-dropdown-arrow {
    position: absolute;
    right: 1rem;
    color: #ffd700;
    font-size: 0.8rem;
    pointer-events: none;
}

.case-search-button-container {
    text-align: center;
}

.case-search-button {
    background: #E6AE25;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.case-search-button:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

.case-search-icon {
    font-size: 1.2rem;
}

/* Case Studies Image Section */
.case-studies-image-section {
    margin-bottom: 3rem;
}

.case-studies-main-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.case-studies-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.image-content {
    max-width: 600px;
}

.image-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.image-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Case View All Button */
.case-view-all-container {
    text-align: center;
}

.case-view-all-button {
    background: #E6AE25;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.case-view-all-button:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

/* ========================================
   Farmer Case Studies Section - Figma Version
   ======================================== */
.farmer-case-studies-section-figma {
    background: #6B8E6F;
    padding: 4rem 2rem;
    width: 100%;
}

.case-container-figma {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.case-header-figma {
    text-align: center;
    margin-bottom: 3rem;
}

.case-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.case-dots-figma {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.case-dots-figma .case-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.case-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.6;
}

.case-sub-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.6;
}

/* Search Form */
.case-search-form-figma {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.case-filter-row-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-filter-group-figma {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-filter-label-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.case-select-figma {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-select-figma:hover {
    border-color: #E6AE25;
}

.case-select-figma:focus {
    outline: none;
    border-color: #E6AE25;
    box-shadow: 0 0 0 3px rgba(230, 174, 37, 0.2);
}

.case-search-button-container-figma {
    text-align: center;
}

.case-search-button-figma {
    background: #E6AE25;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.case-search-button-figma:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

.search-icon-figma {
    font-size: 1.1rem;
}

/* Image Section */
.case-image-section-figma {
    margin-bottom: 3rem;
}

.case-main-image-figma {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.case-main-image-figma:hover {
    transform: translateY(-4px);
}

.case-main-image-figma img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* View All Button */
.case-view-all-container-figma {
    text-align: center;
}

.case-view-all-link-figma {
    display: inline-block;
    background: #E6AE25;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.case-view-all-link-figma:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .farmer-case-studies-section-figma {
        padding: 3rem 1rem;
    }
    
    .case-title-figma {
        font-size: 2rem;
    }
    
    .case-filter-row-figma {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-main-image-figma {
        height: 300px;
    }
}

/* ========================================
   Machinery Manufacturers Section - Figma Version
   ======================================== */
.machinery-manufacturers-section-figma {
    background: #F5F5DC;
    padding: 4rem 2rem;
    width: 100%;
}

.manufacturer-container-figma {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.manufacturer-header-figma {
    text-align: center;
    margin-bottom: 3rem;
}

.manufacturer-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.manufacturer-dots-figma {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.manufacturer-dots-figma .manufacturer-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.manufacturer-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #42210B;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.6;
}

.manufacturer-sub-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #42210B;
    margin: 0;
    line-height: 1.6;
}

/* Search Form */
.manufacturer-search-form-figma {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.manufacturer-filter-row-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.manufacturer-filter-group-figma {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.manufacturer-filter-label-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #42210B;
}

.manufacturer-select-figma {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manufacturer-select-figma:hover {
    border-color: #E6AE25;
}

.manufacturer-select-figma:focus {
    outline: none;
    border-color: #E6AE25;
    box-shadow: 0 0 0 3px rgba(230, 174, 37, 0.2);
}

.manufacturer-search-button-container-figma {
    text-align: center;
}

.manufacturer-search-button-figma {
    background: #E6AE25;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.manufacturer-search-button-figma:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

/* Manufacturer Cards */
.manufacturer-cards-container-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.manufacturer-card-figma {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manufacturer-card-figma:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.manufacturer-card-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.manufacturer-card-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.manufacturer-contact-info-figma {
    margin-bottom: 1.5rem;
}

.contact-item-figma {
    margin-bottom: 0.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.contact-label-figma {
    font-weight: 600;
    color: #42210B;
}

.contact-value-figma {
    color: #666;
}

.manufacturer-tags-figma {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.manufacturer-tag-figma {
    background: #F5F5DC;
    color: #42210B;
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

/* View All Button */
.manufacturer-view-all-container-figma {
    text-align: center;
}

.manufacturer-view-all-link-figma {
    display: inline-block;
    background: #E6AE25;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.manufacturer-view-all-link-figma:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .manufacturer-cards-container-figma {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .machinery-manufacturers-section-figma {
        padding: 3rem 1rem;
    }
    
    .manufacturer-title-figma {
        font-size: 2rem;
    }
    
    .manufacturer-filter-row-figma {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .manufacturer-cards-container-figma {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   Support Systems Section - Figma Version
   ======================================== */
.support-systems-section-figma {
    background: #FFF9E6;
    padding: 4rem 2rem;
    width: 100%;
}

.support-container-figma {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.support-header-figma {
    text-align: center;
    margin-bottom: 3rem;
}

.support-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.support-dots-figma {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.support-dots-figma .support-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.support-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #42210B;
    margin: 1rem 0 0 0;
    line-height: 1.6;
}

.support-sub-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #42210B;
    margin: 0.5rem 0 0 0;
    line-height: 1.6;
}

/* Illustration */
.support-illustration-figma {
    text-align: center;
    margin-bottom: 3rem;
}

.support-systems-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* CTA Button */
.support-cta-figma {
    text-align: center;
}

.support-button-image-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.support-button-image-link:hover {
    transform: translateY(-4px);
}

.support-button-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .support-systems-section-figma {
        padding: 3rem 1rem;
    }
    
    .support-title-figma {
        font-size: 2rem;
    }
    
    .support-systems-image {
        max-width: 400px;
    }
    
    .support-button-image {
        max-width: 300px;
    }
}

/* Responsive Design for Case Studies Section */
@media (max-width: 768px) {
    .farmer-case-studies-section {
        padding: 2rem 1rem;
    }
    
    .case-studies-title {
        font-size: 2rem;
    }
    
    .case-filter-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-filter-group {
        min-width: auto;
    }
    
    .case-studies-main-image {
        height: 300px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-title {
        font-size: 1.5rem;
    }
}

/* Technology Demonstration Results Section */
.tech-demo-results-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    width: 100%;
}

.tech-demo-results-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Demo Results Header */
.demo-results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-results-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.demo-results-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.demo-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.demo-results-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Demo Results Filter Section */
.demo-results-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.demo-filter-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demo-filter-group {
    flex: 1;
    min-width: 200px;
}

.demo-filter-label {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.demo-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.demo-filter-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.demo-filter-input:focus {
    outline: none;
    border-color: #53834f;
}

.demo-dropdown-arrow {
    position: absolute;
    right: 1rem;
    color: #53834f;
    font-size: 0.8rem;
    pointer-events: none;
}

.demo-search-button-container {
    text-align: center;
}

.demo-search-button {
    background: #53834f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.3);
}

.demo-search-button:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.4);
}

.demo-search-icon {
    font-size: 1.2rem;
}

/* Demo Results Image Section */
.demo-results-image-section {
    margin-bottom: 3rem;
}

.demo-results-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-results-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laptop-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dashboard-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.dashboard-body {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.dashboard-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-section, .field-data-section, .statistics-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.chart-title, .field-title, .stats-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.line-chart {
    height: 60px;
    background: linear-gradient(45deg, #4a90e2, #7ed321);
    border-radius: 4px;
    position: relative;
}

.line-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 80px;
}

.field-grid::before {
    content: '';
    grid-column: 1 / -1;
    background: #7ed321;
    border-radius: 2px;
}

.bar-chart {
    height: 80px;
    background: linear-gradient(90deg, #4a90e2, #7ed321, #f5a623);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.stats-icons {
    display: flex;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.stat-icon {
    font-size: 0.8rem;
}

.stat-value {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
}

/* Demo View All Button */
.demo-view-all-container {
    text-align: center;
}

.demo-view-all-button {
    background: #53834f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.3);
}

.demo-view-all-button:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 131, 79, 0.4);
}

/* Responsive Design for Demo Results Section */
@media (max-width: 768px) {
    .tech-demo-results-section {
        padding: 2rem 1rem;
    }
    
    .demo-results-title {
        font-size: 2rem;
    }
    
    .demo-filter-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .demo-filter-group {
        min-width: auto;
    }
    
    .demo-results-main-image {
        height: 400px;
    }
    
    .laptop-overlay {
        width: 90%;
        height: 80%;
        padding: 1rem;
    }
    
    .dashboard-body {
        flex-direction: column;
    }
    
    .stats-icons {
        justify-content: center;
    }
}

/* Test Results Information Section */
.test-results-info-section {
    background: #4a90e2;
    padding: 4rem 2rem;
    width: 100%;
    position: relative;
}

.test-results-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Test Results Header */
.test-results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.test-results-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.test-results-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.test-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.test-results-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.test-results-sub-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Test Results Illustration */
.test-results-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    min-height: 300px;
}

/* Whiteboard */
.whiteboard-container {
    position: relative;
}

.whiteboard {
    width: 300px;
    height: 200px;
    background: white;
    border: 8px solid #8b4513;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pie-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #4a90e2 0deg 72deg,
        #7ed321 72deg 144deg,
        #f5a623 144deg 216deg,
        #e74c3c 216deg 288deg,
        #9b59b6 288deg 360deg
    );
}

.pie-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.segment-1 {
    background: repeating-linear-gradient(45deg, #4a90e2, #4a90e2 2px, #6bb6ff 2px, #6bb6ff 4px);
}

.segment-2 {
    background: radial-gradient(circle, #7ed321 20%, #9ee85a 100%);
}

.segment-3 {
    background: repeating-linear-gradient(90deg, #f5a623, #f5a623 2px, #ffb84d 2px, #ffb84d 4px);
}

.segment-4 {
    background: repeating-linear-gradient(135deg, #e74c3c, #e74c3c 2px, #ff6b6b 2px, #ff6b6b 4px);
}

.segment-5 {
    background: repeating-linear-gradient(0deg, #9b59b6, #9b59b6 2px, #bb7ddb 2px, #bb7ddb 4px);
}

.chart-labels {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.info-illustration {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: contain;
}

.info-illustration-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    z-index: 10;
}

.info-illustration-2 {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 140px;
    z-index: 15;
}

.cta-link {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    width: 100%;
    max-width: 600px;
    height: 140px;
}

.cta-link:hover {
    transform: translateX(-50%) scale(1.05);
    opacity: 1.0;
}

.cta-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Farmer Character */
.farmer-character {
    position: relative;
    z-index: 2;
}

.farmer-body {
    position: relative;
    width: 150px;
    height: 200px;
}

.farmer-hat {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: #ffd700;
    border-radius: 50% 50% 0 0;
    z-index: 3;
}

.farmer-face {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fdbcb4;
    border-radius: 50%;
    z-index: 2;
}

.farmer-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}

.eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.left-eye {
    left: 8px;
}

.right-eye {
    right: 8px;
}

.farmer-smile {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.farmer-shirt {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: #ff69b4;
    border-radius: 8px 8px 0 0;
    z-index: 1;
}

.farmer-overalls {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: #7ed321;
    border-radius: 8px;
    z-index: 1;
}

.pocket {
    position: absolute;
    width: 20px;
    height: 25px;
    background: #6bbd3a;
    border-radius: 4px;
    top: 10px;
}

.left-pocket {
    left: 15px;
}

.right-pocket {
    right: 15px;
}

.farmer-arm {
    position: absolute;
    width: 20px;
    height: 40px;
    background: #fdbcb4;
    border-radius: 10px;
}

.right-arm {
    top: 90px;
    right: -10px;
    transform: rotate(15deg);
}

.left-arm {
    top: 90px;
    left: -10px;
    transform: rotate(-15deg);
}

.pointer-stick {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 40px;
    height: 4px;
    background: #8b4513;
    border-radius: 2px;
    transform: rotate(45deg);
}

.papers {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 15px;
    height: 20px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Test Results CTA */
.test-results-cta {
    text-align: center;
    margin-top: 3rem;
}

.test-results-button {
    background: white;
    color: #333;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    text-align: left;
}

.test-results-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.button-text {
    flex: 1;
    line-height: 1.4;
}

.button-arrow {
    color: #7ed321;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Design for Test Results Section */
@media (max-width: 768px) {
    .test-results-info-section {
        padding: 3rem 1.5rem;
    }
    
    .test-results-header {
        margin-bottom: 2rem;
    }
    
    .test-results-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .test-results-dots {
        gap: 0.4rem;
        margin: 1rem 0 1.5rem 0;
    }
    
    .test-dot {
        width: 10px;
        height: 10px;
    }
    
    .test-results-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .test-results-sub-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .test-results-illustration {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
        margin-bottom: 0px;
        min-height: auto;
    }
    
    .chart-labels {
        height: 300px;
    }
    
    .info-illustration-1 {
        max-height: 200px;
    }
    
    .info-illustration-2 {
        max-height: 100px;
        bottom: -20px;
    }
    
    .cta-link {
        bottom: 90px;
        max-width: 90%;
    }
    
    .cta-link img {
        max-width: 100%;
        height: auto;
    }
    
    .whiteboard {
        width: 240px;
        height: 160px;
    }
    
    .pie-chart {
        width: 100px;
        height: 100px;
    }
    
    .farmer-body {
        width: 140px;
        height: 180px;
    }
    
    .test-results-button {
        padding: 1rem 1.5rem;
        font-size: 15px;
        max-width: 90%;
    }
}

/* Agricultural Machinery Manufacturers Section */
.machinery-manufacturers-section {
    background: #f4a460;
    padding: 4rem 2rem;
    width: 100%;
}

.machinery-manufacturers-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Manufacturers Header */
.manufacturers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.manufacturers-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.manufacturers-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.manufacturer-dot {
    width: 8px;
    height: 8px;
    background: #7ed321;
    border-radius: 50%;
}

.manufacturers-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.manufacturers-sub-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Manufacturers Filter Section */
.manufacturers-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.manufacturer-filter-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.manufacturer-filter-group {
    flex: 1;
    min-width: 200px;
}

.manufacturer-filter-label {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.manufacturer-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.manufacturer-filter-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.manufacturer-filter-input:focus {
    outline: none;
    border-color: #7ed321;
}

.manufacturer-dropdown-arrow {
    position: absolute;
    right: 1rem;
    color: #7ed321;
    font-size: 0.8rem;
    pointer-events: none;
}

.manufacturer-search-button-container {
    text-align: center;
}

.manufacturer-search-button {
    background: #7ed321;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(126, 211, 33, 0.3);
}

.manufacturer-search-button:hover {
    background: #6bbd2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.manufacturer-search-icon {
    font-size: 1.2rem;
}

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

.manufacturer-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.manufacturer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.manufacturer-card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.manufacturer-card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.manufacturer-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.contact-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    min-width: 100px;
}

.contact-value {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #666;
}

.manufacturer-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.manufacturer-tag {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.3rem 0.8rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: #333;
}

/* Manufacturer View All Button */
.manufacturer-view-all-container {
    text-align: center;
}

.manufacturer-view-all-button {
    background: #7ed321;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 211, 33, 0.3);
}

.manufacturer-view-all-button:hover {
    background: #6bbd2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

/* Responsive Design for Manufacturers Section */
@media (max-width: 768px) {
    .machinery-manufacturers-section {
        padding: 2rem 1rem;
    }
    
    .manufacturers-title {
        font-size: 2rem;
    }
    
    .manufacturer-filter-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .manufacturer-filter-group {
        min-width: auto;
    }
    
    .manufacturer-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .manufacturer-tags {
        justify-content: center;
    }
}

/* Support Systems Introduction Section */
.support-systems-section {
    background: #556b2f;
    padding: 4rem 2rem;
    width: 100%;
    position: relative;
}

.support-systems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd700;
}

.support-systems-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Support Systems Header */
.support-systems-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-systems-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.support-systems-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.support-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.support-systems-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.support-systems-sub-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Support Systems Illustration */
.support-systems-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

/* Woman Character */
.woman-character {
    position: relative;
    z-index: 2;
}

.woman-body {
    position: relative;
    width: 150px;
    height: 200px;
}

.woman-hair {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 50px;
    background: #8b4513;
    border-radius: 50% 50% 0 0;
    z-index: 3;
}

.woman-face {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fdbcb4;
    border-radius: 50%;
    z-index: 2;
}

.woman-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}

.woman-eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.left-eye {
    left: 8px;
}

.right-eye {
    right: 8px;
}

.woman-smile {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.woman-shirt {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: white;
    border-radius: 8px 8px 0 0;
    z-index: 1;
}

.woman-blazer {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 70px;
    background: #ffd700;
    border-radius: 8px;
    z-index: 2;
}

.woman-arm {
    position: absolute;
    width: 20px;
    height: 40px;
    background: #fdbcb4;
    border-radius: 10px;
}

.right-arm {
    top: 90px;
    right: -10px;
    transform: rotate(15deg);
}

.left-arm {
    top: 90px;
    left: -10px;
    transform: rotate(-15deg);
}

.pointing-finger {
    position: absolute;
    top: 15px;
    right: -15px;
    width: 8px;
    height: 20px;
    background: #fdbcb4;
    border-radius: 4px;
    transform: rotate(45deg);
}

.laptop {
    position: absolute;
    top: 15px;
    left: -25px;
    width: 30px;
    height: 20px;
    background: #c0c0c0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.laptop::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #333;
    border-radius: 2px;
}

.laptop::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #c0c0c0;
    border-radius: 50%;
}

/* Support Systems CTA */
.support-systems-cta {
    text-align: center;
    margin-top: 3rem;
}

.support-systems-button {
    background: #ffd700;
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.support-systems-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
}

.button-text {
    flex: 1;
    line-height: 1.4;
}

.button-arrow {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Design for Support Systems Section */
@media (max-width: 768px) {
    .support-systems-section {
        padding: 2rem 1rem;
    }
    
    .support-systems-title {
        font-size: 2rem;
    }
    
    .woman-body {
        width: 120px;
        height: 160px;
    }
    
    .support-systems-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Member Registration Section */
.member-registration-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    width: 100%;
}

/* 古い会員登録CSS削除 - トップページではtop-プレフィックス付きクラスを使用 */

/* Smart Agriculture Fukushima Consultation Corner Section */
.consultation-corner-section {
    background: #FFFECD;
    padding: 4rem 2rem;
    width: 100%;
}

.consultation-corner-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Consultation Header */
.consultation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consultation-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.consultation-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.consultation-dot {
    width: 8px;
    height: 8px;
    background: #53834F;
    border-radius: 50%;
}

.consultation-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #42210B;
    margin: 0;
    line-height: 1.5;
    margin: 0 auto;
}

/* Q&A Illustration */
.consultation-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

.qa-illustration-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.qa-characters {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.character-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Farmer Characters */
.farmer-character {
    position: relative;
    width: 120px;
    height: 150px;
    margin-bottom: 1rem;
}

.farmer-hat {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #d2b48c;
    border-radius: 50% 50% 0 0;
    z-index: 3;
}

.female-hat {
    background: #ff69b4;
}

.farmer-face {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fdbcb4;
    border-radius: 50%;
    z-index: 2;
}

.farmer-eyes {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
}

.eye {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

.left-eye {
    left: 6px;
}

.right-eye {
    right: 6px;
}

.farmer-smile {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.farmer-shirt {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #ff69b4;
    border-radius: 6px 6px 0 0;
    z-index: 1;
}

.female-shirt {
    background: #7ed321;
}

.farmer-overalls {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 50px;
    background: #7ed321;
    border-radius: 6px;
    z-index: 1;
}

.farmer-pants {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 50px;
    background: #808080;
    border-radius: 6px;
    z-index: 1;
}

.farmer-boots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: #8b4513;
    border-radius: 0 0 25px 25px;
    z-index: 1;
}

.farmer-arm {
    position: absolute;
    width: 15px;
    height: 30px;
    background: #fdbcb4;
    border-radius: 8px;
}

.right-arm {
    top: 70px;
    right: -5px;
    transform: rotate(15deg);
}

.waving-hand {
    position: absolute;
    top: 10px;
    right: -8px;
    width: 8px;
    height: 15px;
    background: #fdbcb4;
    border-radius: 4px;
    transform: rotate(45deg);
}

.farmer-hands {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
}

.hand {
    position: absolute;
    width: 12px;
    height: 15px;
    background: #fdbcb4;
    border-radius: 6px;
}

.left-hand {
    left: 10px;
}

.right-hand {
    right: 10px;
}

/* Speech Bubbles */
.speech-bubble {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.q-bubble {
    background: #4a90e2;
}

.a-bubble {
    background: #7ed321;
}

.bubble-letter {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
}

/* CTA Section */
.consultation-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.cta-message {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #42210B;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.qa-ask-button {
    background: #E6AE25;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 174, 37, 0.3);
    min-width: 180px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qa-ask-button:hover {
    background: #d49a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.4);
}

.qa-list-button {
    background: #53834F;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(83, 131, 79, 0.3);
    min-width: 180px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qa-list-button:hover {
    background: #456f42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.4);
}

.login-button {
    background: #5a7c56;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(90, 124, 86, 0.3);
    min-width: 160px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-button:hover {
    background: #4a6b47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 124, 86, 0.4);
}

.register-button {
    background: #e6ae25;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 174, 37, 0.3);
    min-width: 160px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-button:hover {
    background: #d49a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.4);
}

/* Responsive Design for Consultation Corner Section */
@media (max-width: 768px) {
    .consultation-corner-section {
        padding: 2rem 1rem;
    }
    
    .consultation-title {
        font-size: 2rem;
    }
    
    .qa-illustration-image {
        max-width: 400px;
    }
    
    .cta-box {
        padding: 2rem;
        max-width: 100%;
    }
    
    .cta-message {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .qa-ask-button,
    .qa-list-button,
    .login-button,
    .register-button {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
    }
}

/* Initiative Report Section */
.report-view-all-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #5a7c56;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(90, 124, 86, 0.3);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.report-view-all-button:hover {
    background: #4a6b47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 124, 86, 0.4);
    color: white;
}

/* Initiative Report Section */
.initiative-report-section {
    background: #4a90e2;
    padding: 5rem 2rem 4rem 2rem;
    width: 100%;
    overflow: visible !important;
    position: relative;
}

.initiative-report-section .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible !important;
    position: relative;
}

/* Report Header */
.report-header {
    text-align: center;
    margin-bottom: 3rem;
}

.report-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.report-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.report-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.report-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.report-sub-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Report Cards Container */
.report-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 30px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Report Cards */
.report-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Card Category */
.card-category {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.category-label {
    display: inline-block;
    padding: 0.6rem 1.5rem 0.8rem;
    border-radius: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    position: relative;
}

.forum-category .category-label {
    background: #ff8c00;
}

.event-category .category-label {
    background: #4caf50;
}

.machinery-category .category-label {
    background: #8d4e00;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

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

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

.card-image-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin: 1rem 0 1rem 0;
    line-height: 1.4;
    text-align: center;
}

.card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    text-align: left;
}

.card-link {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    display: inline-block;
}

.card-link:hover {
    opacity: 0.7;
}

/* Report View All Button */
.report-view-all-container {
    text-align: center;
}

.report-view-all-button {
    background: #556b2f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
}

.report-view-all-button:hover {
    background: #4a7546;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.4);
}

/* Responsive Design for Initiative Report Section */
@media (max-width: 768px) {
    .initiative-report-section {
        padding: 2rem 1rem;
    }
    
    .report-title {
        font-size: 2rem;
    }
    
    .report-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 30px;
        max-width: 400px;
    }
    
    .report-card {
        padding-top: 20px;
    }
    
    .card-image {
        height: 150px;
    }
    
    .card-category {
        top: 0.5rem;
        left: 0.5rem;
        transform: none;
    }
    
    .category-label {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* News and Events Section */
.news-events-section {
    background: #fcfaf5;
    padding: 4rem 2rem;
    width: 100%;
}

.news-events-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* News Events Header */
.news-events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-events-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #53834f;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.news-events-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.news-events-dot {
    width: 8px;
    height: 8px;
    background: #e6ae25;
    border-radius: 50%;
}

.news-events-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #42210b;
    margin: 0;
    line-height: 1.5;
}

/* News Cards Container */
.news-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #333;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Category Header */
.category-header {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 2px solid #333;
}

.category-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.category-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* News Card with Image */
.news-card.with-image .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card.with-image .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card.with-image:hover .news-image img {
    transform: scale(1.05);
}

/* Text Only News Cards */
.news-card.text-only {
    display: flex;
    flex-direction: column;
    min-height: 350px;
}


.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.news-tag {
    background: #f0f0f0;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
}

/* News View All Button */
.news-view-all-container {
    text-align: center;
}

.news-view-all-button {
    display: inline-block;
    background: #556b2f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
    text-decoration: none;
}

.news-view-all-button:hover {
    background: #4a7546;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    position: relative;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

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

.envelope-icon {
    font-size: 3rem;
    color: #8b4513;
}

.contact-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.contact-button {
    background: white;
    color: #333;
    border: 2px solid #333;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
}

.contact-button:hover {
    background: #333;
    color: white;
}

.contact-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   Footer Contact CTA Section
   ======================================== */

.footer-contact-cta {
    position: relative;
    padding: 80px 0px 0px 0px;
    background: transparent;
    margin-bottom: -120px;
    z-index: 1;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cta-box {
    background: white;
    border-radius: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.contact-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-content {
    flex: 1;
    text-align: center;
}

.contact-cta-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #231815;
    margin: 0 0 15px 0;
    letter-spacing: 9px;
    line-height: 1.2;
}

.contact-cta-button {
    display: inline-block;
    padding: 10px 50px;
    border: 1px solid #231815;
    background: white;
    color: #231815;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 15px 0;
    border-radius: 4px;
}

.contact-cta-button:hover {
    background: #231815;
    color: white;
}

.contact-cta-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #231815;
    margin: 15px 0 0;
    letter-spacing: 1px;
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed !important;
    bottom: 50px !important;
    right: 50px !important;
    z-index: 10000 !important;
    will-change: transform;
    transform: translateZ(0);
}

.back-to-top-button {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: none;
    background: #42210b;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Kulim Park', 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 1.3px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.arrow-up {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
    pointer-events: none;
}

.top-text,
.return-text {
    font-size: 22px;
    line-height: 1.2;
    pointer-events: none;
}

/* ========================================
   Footer Main Section
   ======================================== */

.main-footer {
    background: #e6ae25;
    padding: 200px 0 100px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    justify-content: space-between;
}

.footer-brand {
    flex: 0 0 auto;
    padding: 0;
    text-align: left;
}

.footer-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #42210b;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0;
}

.footer-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #42210b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0;
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: flex-start;
    flex: 1;
}

.footer-column {
    flex: 0 0 auto;
}

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

.footer-list li {
    margin-bottom: 16px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-link {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #42210b;
    text-decoration: none;
    text-align: left;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.95;
    letter-spacing: 0;
}

.footer-link:hover {
    color: #53834f;
    text-decoration: underline;
}

/* ========================================
   Footer Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .footer-links {
        gap: 40px;
    }
    
    .footer-link {
        font-size: 20px;
    }
    
    .back-to-top-button {
        width: 115px;
        height: 115px;
        font-size: 22px;
    }
    
    .arrow-up {
        font-size: 26px;
    }
    
    .top-text,
    .return-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-contact-cta {
        padding: 50px 0 100px;
    }
    
    .contact-cta-container {
        padding: 0 20px;
    }
    
    .contact-cta-box {
        padding: 40px 30px;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    
    .contact-icon {
        width: 110px;
        height: 110px;
        flex-shrink: 0;
    }
    
    .contact-content {
        flex: 1;
        text-align: center;
    }
    
    .contact-cta-title {
        font-size: 36px;
        letter-spacing: 5px;
        margin: 0 0 12px 0;
    }
    
    .contact-cta-button {
        font-size: 16px;
        padding: 8px 35px;
        margin: 0 0 12px 0;
    }
    
    .contact-cta-text {
        font-size: 15px;
        margin: 0;
    }
    
    .main-footer {
        padding: 100px 0 40px;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-title {
        font-size: 2.5rem;
        margin: 0 0 0.5rem 0;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 1rem;
        width: 100%;
        justify-items: top;
        padding-right: 0;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-list {
        margin: 0;
        padding: 0;
    }
    
    .footer-list li {
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 10px;
        text-align: left;
        display: block;
    }
    
    .back-to-top {
        bottom: 30px;
        right: 30px;
    }
    
    .back-to-top-button {
        width: 92px;
        height: 92px;
        font-size: 19px;
    }
    
    .arrow-up {
        font-size: 24px;
    }
    
    .top-text,
    .return-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-contact-cta {
        padding: 40px 0 80px;
    }
    
    .contact-cta-container {
        padding: 0 15px;
    }
    
    .contact-cta-box {
        padding: 40px 30px;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        border-radius: 24px;
    }
    
    .contact-icon {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }
    
    .contact-content {
        flex: 1;
        text-align: center;
    }
    
    .contact-cta-title {
        font-size: 32px;
        letter-spacing: 4px;
        margin: 0 0 12px 0;
    }
    
    .contact-cta-button {
        font-size: 14px;
        padding: 6px 30px;
        margin: 0 0 12px 0;
        display: inline-block;
    }
    
    .contact-cta-text {
        font-size: 14px;
        margin: 0;
    }
    
    .main-footer {
        padding: 80px 0 40px;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-content {
        gap: 2.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-title {
        font-size: 2.2rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-list {
        margin: 0;
        padding: 0;
    }
    
    .footer-link {
        font-size: 10px;
        text-align: left;
        display: block;
    }
    
    .footer-list li {
        margin-bottom: 0.8rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-button {
        width: 77px;
        height: 77px;
        font-size: 16px;
    }
    
    .arrow-up {
        font-size: 20px;
    }
    
    .top-text,
    .return-text {
        font-size: 14px;
    }
}

/* Responsive Design for Final Sections */
@media (max-width: 768px) {
    .news-events-section {
        padding: 2rem 1rem;
    }
    
    .news-events-title {
        font-size: 2rem;
    }
    
    .news-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .news-image {
        height: 150px;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .main-footer {
        padding: 80px 0 40px;
    }
    
    .footer-container {
        padding: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-title {
        font-size: 2.5rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-list {
        margin: 0;
        padding: 0;
    }
    
    .footer-list li {
        margin-bottom: 0.8rem;
    }
    
    .footer-link {
        font-size: 10px;
        text-align: left;
    }
}

/* Fixed Right Sidebar */
.fixed-right-sidebar {
    position: fixed !important;
    top: 120px !important;
    right: -18px !important;
    width: 75px;
    height: calc(100vh - 120px);
    z-index: 10000 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0px;
    gap: 12px;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.sidebar-image-container {
    width: 38px;
    height: auto;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.sidebar-image-container:hover {
    transform: scale(1.08);
}

.sidebar-image-link {
    display: block;
    text-decoration: none;
}

.sidebar-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}

.sidebar-image:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* CSS-based Sidebar Buttons */
.sidebar-button-container {
    width: 38px;
    height: auto;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.sidebar-button-container:hover {
    transform: scale(1.08);
}

.sidebar-css-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 180px;
    padding: 16px 4px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-css-button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transform: translateX(-2px);
}

/* My Page Button - Green Gradient */
.sidebar-mypage-button {
    background: linear-gradient(135deg, #53834F 0%, #6b8e6f 100%);
}

.sidebar-mypage-button:hover {
    background: linear-gradient(135deg, #6b8e6f 0%, #53834F 100%);
}

/* Logout Button - Orange Gradient */
.sidebar-logout-button {
    background: linear-gradient(135deg, #E6AE25 0%, #f0bc3d 100%);
}

.sidebar-logout-button:hover {
    background: linear-gradient(135deg, #f0bc3d 0%, #E6AE25 100%);
}

/* Button Text Styling */
.sidebar-button-text {
    color: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* Shine effect on hover */
.sidebar-css-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.sidebar-css-button:hover::before {
    opacity: 1;
    left: 100%;
}

@media (max-width: 768px) {
    .main-content {
        margin-right: 0;
    }
    
    .fixed-right-sidebar {
        display: none;
    }
}

/* ========================================
   Site Usage Notice Section Styles
   ======================================== */

/* Site Usage Notice Section */
.site-usage-notice-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.site-usage-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-usage-notice-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.site-usage-notice-title {
    background-color: #42210b;
    color: white;
    font-size: 49px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 9.9px;
    margin: 0;
    line-height: 1.2;
}

.site-usage-notice-content {
    max-width: 1350px;
    margin: 0 auto;
}

.notice-item {
    margin-bottom: 50px;
    padding: 0 20px;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item-title {
    color: #42210b;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 8px;
    line-height: 1.2;
}

.notice-item-content {
    margin-left: 20px;
}

.notice-item-content p {
    color: #42210b;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 15px;
    letter-spacing: 3.2px;
}

.notice-item-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Site Usage Notice */
@media (max-width: 768px) {
    .site-usage-notice-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .site-usage-notice-title {
        font-size: 36px;
        padding: 15px 30px;
        letter-spacing: 7px;
    }
    
    .notice-item-title {
        font-size: 28px;
        letter-spacing: 5.6px;
    }
    
    .notice-item-content p {
        font-size: 18px;
        letter-spacing: 2.4px;
    }
    
    .notice-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .site-usage-notice-title {
        font-size: 28px;
        padding: 12px 20px;
        letter-spacing: 5.6px;
    }
    
    .notice-item-title {
        font-size: 24px;
        letter-spacing: 4.8px;
    }
    
    .notice-item-content p {
        font-size: 15px;
        letter-spacing: 2px;
    }
}

/* ========================================
   Operating Entity Section Styles
   ======================================== */

/* Operating Entity Section */
.operating-entity-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-top: 0;
}

.operating-entity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.operating-entity-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.operating-entity-title {
    background-color: #42210b;
    color: white;
    font-size: 49px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 9.9px;
    margin: 0;
    line-height: 1.2;
}

.operating-entity-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 100px;
}

.entity-info {
    margin-bottom: 40px;
}

.entity-info p {
    color: #42210b;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.entity-name {
    margin-bottom: 15px !important;
}

.entity-address,
.entity-department {
    font-weight: 900 !important;
}

.entity-contact {
    margin-top: 30px;
}

.entity-contact p {
    color: #42210b;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.entity-tel,
.entity-fax {
    margin-bottom: 10px !important;
}

/* Responsive Design for Operating Entity */
@media (max-width: 768px) {
    .operating-entity-section {
        padding: 60px 0;
    }
    
    .operating-entity-title {
        font-size: 36px;
        padding: 15px 30px;
        letter-spacing: 7px;
    }
    
    .operating-entity-content {
        padding: 0 20px;
    }
    
    .entity-info p,
    .entity-contact p {
        font-size: 20px;
        letter-spacing: 5.6px;
    }
}

@media (max-width: 480px) {
    .operating-entity-title {
        font-size: 28px;
        padding: 12px 20px;
        letter-spacing: 5.6px;
    }
    
    .entity-info p,
    .entity-contact p {
        font-size: 18px;
        letter-spacing: 4.8px;
    }
}

/* ========================================
   TOP PAGE ONLY - Sections CSS
   ======================================== */

/* TOP PAGE - Farmer Case Studies Section */
.top-farmer-case-section {
    background: #53834F;
    padding: 4rem 2rem;
    width: 100%;
}

.top-case-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-case-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-case-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.top-case-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.top-case-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.top-case-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.top-case-search-form {
    background: #53834F;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.top-case-filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.top-case-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.top-case-filter-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.top-case-select {
    padding: 0.75rem 3.5rem 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: none;
}

.top-case-filter-group::after {
    content: '▼';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 46px;
    background: #E6AE25;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 0 8px 8px 0;
    pointer-events: none;
    font-size: 14px;
}

.top-case-select:hover {
    border-color: #E6AE25;
}

.top-case-select:focus {
    outline: none;
    border-color: #E6AE25;
    box-shadow: 0 0 0 3px rgba(230, 174, 37, 0.2);
}

.top-case-search-button-container {
    text-align: center;
}

.top-case-search-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
    box-shadow: none;
}

.top-case-search-button:focus {
    outline: none;
    box-shadow: none;
}

.top-case-search-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Case Search Button Image */
.top-case-search-button-img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-search-icon {
    font-size: 1.1rem;
}

/* トップページ - 農業者の導入事例セクション */
/* case-study-archive-styles.css のスタイルを使用 */
.top-case-section .case-cards-container-archive {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.top-case-view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.top-case-view-all-link {
    display: inline-block;
    background: #E6AE25;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 174, 37, 0.3);
}

.top-case-view-all-link:hover {
    background: #D69D1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 174, 37, 0.4);
}

.top-case-view-all-link-sp {
    display: none;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* SPビュー（スマートフォン）のレスポンシブ対応 */
@media screen and (max-width: 768px) {
    /* 記事カードをSPビューで非表示 */
    .top-farmer-case-section .case-cards-container-archive {
        display: none;
    }
    
    .top-case-header {
        margin-bottom: 2rem;
    }
    
    .top-case-title {
        font-size: 1.8rem;
    }
    
    .top-case-description {
        font-size: 0.95rem;
    }
    
    /* 検索フォームのレスポンシブ */
    .top-case-filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* 一覧を見るボタン - SPビュー */
    .top-case-view-all-link-pc {
        display: none;
    }
    
    .top-case-view-all-link-sp {
        display: inline-block;
    }
    
    .top-case-view-all-link-sp img {
        width: 200px;
        height: auto;
        display: block;
    }
}

.top-case-view-all-link-sp img {
    width: 200px;
    height: auto;
    display: block;
}

/* TOP PAGE - Machinery Manufacturers Section */
.top-machinery-section {
    background: #E6AE25;
    padding: 5rem 2rem;
    width: 100%;
}

.top-machinery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-machinery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-machinery-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.top-machinery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top-machinery-dot {
    width: 10px;
    height: 10px;
    background: #5a7c56;
    border-radius: 50%;
}

.top-machinery-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #42210B;
    margin: 1rem 0 0 0;
    line-height: 1.5;
}

.top-machinery-search-form {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.top-machinery-filter-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.top-machinery-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.top-machinery-filter-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #42210B;
    letter-spacing: 0.05em;
}

.top-machinery-select {
    padding: 0.8rem 3.5rem 0.8rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: none;
}

.top-machinery-filter-group::after {
    content: '▼';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: #5a7c56;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 0 8px 8px 0;
    pointer-events: none;
    font-size: 14px;
}

.top-machinery-select:hover {
    border-color: #5a7c56;
}

.top-machinery-select:focus {
    outline: none;
    border-color: #5a7c56;
    box-shadow: 0 0 0 3px rgba(90, 124, 86, 0.2);
}

.top-machinery-search-button-container {
    text-align: center;
}

.top-machinery-search-button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none !important;
    box-shadow: none !important;
}

.top-machinery-search-button:focus {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.top-machinery-search-button:active {
    background: transparent !important;
}

.top-machinery-search-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Machinery Search Button Image */
.top-machinery-search-button-img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-machinery-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.top-machinery-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.top-machinery-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.top-machinery-card-link:hover .top-machinery-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.top-machinery-card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #42210B;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.top-machinery-card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.top-machinery-contact-info {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.top-contact-item {
    margin-bottom: 0.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
}

.top-contact-label {
    font-weight: 600;
    color: #42210B;
}

.top-contact-value {
    color: #666;
}

.top-machinery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.top-machinery-tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.top-machinery-view-all-container {
    text-align: center;
}

.top-machinery-view-all-link {
    display: inline-block;
    background: #5a7c56;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(90, 124, 86, 0.3);
}

.top-machinery-view-all-link:hover {
    background: #4a6547;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 101, 71, 0.4);
}

.top-machinery-view-all-link-sp {
    display: none;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.top-machinery-view-all-link-sp img {
    width: 200px;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .top-machinery-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-machinery-section {
        padding: 3rem 1.5rem;
    }
    
    .top-machinery-header {
        margin-bottom: 2rem;
    }
    
    .top-machinery-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .top-machinery-dots {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .top-machinery-dot {
        width: 10px;
        height: 10px;
    }
    
    .top-machinery-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .top-machinery-search-form {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .top-machinery-filter-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-machinery-filter-label {
        font-size: 18px;
    }
    
    .top-machinery-filter-group {
        position: relative;
    }
    
    .top-machinery-filter-group::after {
        content: '▼';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
        background: #5a7c56;
        color: white;
        text-align: center;
        line-height: 45px;
        border-radius: 0 8px 8px 0;
        pointer-events: none;
        font-size: 12px;
    }
    
    .top-machinery-select {
        padding: 0.75rem 3.5rem 0.75rem 1rem;
        font-size: 14px;
        border-radius: 8px;
        background-image: none;
    }
    
    .top-machinery-search-button-img {
        width: 250px;
    }
    
    .top-machinery-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-machinery-view-all-container {
        margin-top: 2rem;
        text-align: right;
    }
}

/* TOP PAGE - Support Systems Section */
.top-support-section {
    background: #53834F;
    padding: 5rem 2rem;
    width: 100%;
}

.top-support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-support-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.top-support-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top-support-dot {
    width: 10px;
    height: 10px;
    background: #E6AE25;
    border-radius: 50%;
}

.top-support-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 1rem 0 0 0;
    line-height: 1.5;
}

.top-support-illustration {
    text-align: center;
    margin: 3rem 0;
}

.top-support-systems-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.top-support-cta {
    text-align: center;
}

.top-support-button-image-link {
    display: inline-block;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.top-support-button-image-link:focus {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.top-support-button-image-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Support Button Image */
.top-support-button-image-link-img {
    display: block;
    width: 500px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-support-arrow {
    display: none;
}

.top-support-button-image {
    display: none;
}

/* Responsive for TOP PAGE sections */
@media (max-width: 992px) {
    .top-machinery-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-farmer-case-section,
    .top-machinery-section,
    .top-support-section {
        padding: 3rem 1.5rem;
    }
    
    .top-case-header,
    .top-machinery-header {
        margin-bottom: 2rem;
    }
    
    .top-case-title,
    .top-machinery-title,
    .top-support-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .top-case-dots,
    .top-machinery-dots {
        gap: 0.4rem;
        margin: 1rem 0 1.5rem;
    }
    
    .top-case-dot,
    .top-machinery-dot {
        width: 10px;
        height: 10px;
    }
    
    .top-case-description,
    .top-machinery-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .top-case-search-form,
    .top-machinery-search-form {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        background: transparent;
        max-width: 100%;
    }
    
    .top-case-filter-row,
    .top-machinery-filter-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-case-filter-label,
    .top-machinery-filter-label {
        font-size: 18px;
    }
    
    .top-case-select,
    .top-machinery-select {
        padding: 15px 35px 12px 15px;
        font-size: 14px;
        border-radius: 8px;
        position: relative;
        background-color: white;
        background-image: none;
    }
    
    .top-case-filter-group,
    .top-machinery-filter-group {
        position: relative;
    }
    
    .top-case-filter-group::after {
        content: '▼';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 47px;
        background: #E6AE25;
        color: white;
        text-align: center;
        line-height: 45px;
        border-radius: 0 8px 8px 0;
        pointer-events: none;
        font-size: 12px;
    }
    
    .top-machinery-filter-group::after {
        content: '▼';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
        background: #5a7c56;
        color: white;
        text-align: center;
        line-height: 45px;
        border-radius: 0 8px 8px 0;
        pointer-events: none;
        font-size: 12px;
    }
    
    .top-case-search-button-img {
        width: 250px;
    }
    
    .top-case-main-image {
        display: none;
    }
    
    .top-case-view-all-container {
        text-align: right !important;
        margin-top: 2rem;
    }
    
    .top-case-view-all-link-pc {
        display: none !important;
    }
    
    .top-case-view-all-link-sp {
        display: inline-block !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .top-case-view-all-link-sp:hover {
        opacity: 0.8;
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
    }
    
    .top-machinery-cards-container {
        display: none;
    }
    
    .top-machinery-view-all-container {
        text-align: right !important;
        margin-top: 2rem;
    }
    
    .top-machinery-view-all-link-pc {
        display: none !important;
    }
    
    .top-machinery-view-all-link-sp {
        display: inline-block !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .top-machinery-view-all-link-sp:hover {
        opacity: 0.8;
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
    }
    
    .top-machinery-search-button-img {
        width: 250px;
    }
    
    .top-support-systems-image {
        max-width: 300px;
    }
    
    .top-support-button-image-link {
        padding: 0 !important;
        background: transparent !important;
    }
    
    .top-support-button-image-link-img {
        width: 100%;
        max-width: 280px;
    }
    
    .top-report-view-all-container {
        text-align: right !important;
        margin-top: 2rem;
    }
    
    .top-report-view-all-button-pc {
        display: none !important;
    }
    
    .top-report-view-all-button-sp {
        display: inline-block !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .top-report-view-all-button-sp:hover {
        opacity: 0.8;
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
    }
    
    .top-report-view-all-button-sp img {
        width: 200px;
        height: auto;
    }
    
    .top-news-view-all-container {
        text-align: right !important;
        margin-top: 2rem;
    }
    
    .top-news-view-all-button-pc {
        display: none !important;
    }
    
    .top-news-view-all-button-sp {
        display: inline-block !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .top-news-view-all-button-sp:hover {
        opacity: 0.8;
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
    }
    
    .top-news-view-all-button-sp img {
        width: 200px;
        height: auto;
    }
}

/* TOP PAGE - Smart Agriculture Technologies Section */
.top-smart-agri-tech-section {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #e6ae25;
    overflow: hidden;
}

.top-tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-tech-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-tech-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.top-tech-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top-tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #53834F;
}

.top-tech-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    color: #42210B;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.top-tech-search-form {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.top-tech-filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.top-tech-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.top-tech-filter-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: white;
    letter-spacing: 0.05em;
}

.top-tech-select {
    width: 100%;
    padding: 0.8rem 3.5rem 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: white;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: none;
}

.top-tech-filter-group::after {
    content: '▼';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: #5a7c56;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 0 8px 8px 0;
    pointer-events: none;
    font-size: 14px;
}

.top-tech-select:hover {
    border-color: #5a7c56;
}

.top-tech-select:focus {
    outline: none;
    border-color: #5a7c56;
    box-shadow: 0 0 0 3px rgba(90, 124, 86, 0.2);
}

.top-tech-search-button-container {
    text-align: center;
}

.top-tech-search-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
    box-shadow: none;
}

.top-tech-search-button:focus {
    outline: none;
    box-shadow: none;
}

.top-tech-search-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Search Button Image */
.top-tech-search-button-img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-search-icon {
    font-size: 18px;
}

.top-tech-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.top-tech-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.top-tech-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top-tech-card-link:hover .top-tech-card {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.top-tech-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.top-tech-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-tech-placeholder-image,
.top-tech-placeholder-image-1,
.top-tech-placeholder-image-2,
.top-tech-placeholder-image-3 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6ae25 0%, #d69d1e 100%);
}

.top-tech-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-tech-card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.top-tech-card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.top-tech-view-all-container {
    text-align: right;
    padding-right: 0;
    margin-top: 2rem;
}

.top-tech-view-all-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-tech-view-all-link:hover {
    opacity: 0.9;
}

/* View All Button Image */
.top-tech-view-all-button-img {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-tech-view-all-link:hover .top-tech-view-all-button-img {
    transform: translateY(-2px);
    opacity: 0.9;
}

.top-tech-arrow {
    font-size: 22px;
    font-weight: 700;
    color: #5a7c56;
    transition: all 0.3s ease;
}

.top-tech-view-all-link:hover .top-tech-arrow {
    transform: translateX(5px);
    color: #4a6547;
}

@media (max-width: 992px) {
    .top-tech-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-tech-view-all-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-smart-agri-tech-section {
        padding: 3rem 1.5rem;
    }
    
    .top-tech-header {
        margin-bottom: 2rem;
    }
    
    .top-tech-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .top-tech-dots {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .top-tech-dot {
        width: 10px;
        height: 10px;
    }
    
    .top-tech-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .top-tech-search-form {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .top-tech-filter-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-tech-filter-label {
        font-size: 18px;
    }
    
    .top-tech-filter-group {
        position: relative;
    }
    
    .top-tech-filter-group::after {
        content: '▼';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
        background: #5a7c56;
        color: white;
        text-align: center;
        line-height: 45px;
        border-radius: 0 8px 8px 0;
        pointer-events: none;
        font-size: 12px;
    }
    
    .top-tech-select {
        padding: 0.75rem 3.5rem 0.75rem 1rem;
        font-size: 14px;
        border-radius: 8px;
        background-image: none;
    }
    
    .top-tech-search-button-img {
        width: 250px;
    }
    
    .top-tech-cards-container {
        display: none;
    }
    
    .top-tech-view-all-container {
        text-align: right;
        margin-top: 2rem;
    }
}

/* TOP PAGE - Initiative Report Section */
.top-initiative-report-section {
    background: #508BB2;
    padding: 5rem 2rem 4rem 2rem;
    width: 100%;
    overflow: visible !important;
    position: relative;
}

.top-report-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible !important;
    position: relative;
}

.top-report-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-report-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.top-report-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.top-report-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.top-report-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.top-report-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 30px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.top-report-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.top-report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.top-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    transform: none;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

.top-category-label {
    display: inline-block;
    padding: 0.6rem 1.5rem 0.8rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    position: relative;
    opacity: 1;
}

.forum-category .top-category-label {
    background: #ff8c00 !important;
    opacity: 1 !important;
}

.event-category .top-category-label {
    background: #4caf50 !important;
    opacity: 1 !important;
}

.machinery-category .top-category-label {
    background: #8d4e00 !important;
    opacity: 1 !important;
}

.top-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

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

.top-report-card:hover .top-card-image img {
    transform: scale(1.05);
}

.top-card-image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.top-card-content {
    padding: 2rem 1.5rem 1.5rem;
}

.top-card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.top-card-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.top-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.top-card-link:hover {
    color: #357abd;
    gap: 0.75rem;
}

.top-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.top-card-link:hover::after {
    transform: translateX(3px);
}

.top-report-view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.top-report-view-all-button {
    display: inline-block;
    background: #5a7c56;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(90, 124, 86, 0.3);
    border-radius:8px;
}

.top-report-view-all-button:hover {
    background: #4a6547;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 101, 71, 0.4);
}

.top-report-view-all-button-sp {
    display: none;
}

@media (max-width: 992px) {
    .top-report-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-initiative-report-section {
        padding: 3rem 1rem;
    }
    
    .top-report-title {
        font-size: 2rem;
    }
    
    .top-report-cards-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 20px;
    }
}

/* TOP PAGE - News and Events Section */
.top-news-events-section {
    background: #faf8f5;
    padding: 5rem 2rem;
    width: 100%;
}

.top-news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-news-events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-news-events-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #53834F;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.top-news-events-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.top-news-events-dot {
    width: 8px;
    height: 8px;
    background: #e6ae25;
    border-radius: 50%;
}

.top-news-events-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #42210B;
    margin: 0;
    line-height: 1.5;
}

.top-news-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* TOP PAGE - News Cards - Figma Design */
.top-news-cards-container-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.top-news-card-figma {
    background: white;
    border: 1px solid #42210B;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.top-news-card-figma:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(66, 33, 11, 0.15);
}

.top-news-card-link-figma {
    display: block;
    text-decoration: none;
    color: inherit;
}

.top-news-card-header-figma {
    background: white;
    padding: 20px 25px;
    border-bottom: 1px solid #E0E0E0;
}

.top-news-type-label-figma {
    text-align: center;
}

.top-news-type-main {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #231815;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.top-news-type-sub {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #231815;
    letter-spacing: 0.1em;
}

.top-news-card-body-figma {
    padding: 25px;
    position: relative;
    padding-left: 40px;
}

.top-news-card-body-figma::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 25px;
    bottom: 25px;
    width: 1px;
    background: #231815;
}

.top-news-card-date-figma {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #231815;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.top-news-card-title-figma {
    font-size: 14px;
    font-weight: 700;
    color: #231815;
    line-height: 1.5;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.top-news-card-tags-figma {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.top-news-tag-figma {
    display: inline-block;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    background-color: white;
    color: #231815;
    border: 1px solid #231815;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.top-news-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.top-news-card {
    background: white;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
    border: none;
}

.top-news-card-link:hover .top-news-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.top-news-card.with-image {
    grid-column: span 1;
}

.top-news-image {
    width: calc(100% - 3rem);
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    margin: 1.5rem 1.5rem 0;
}

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

.top-news-card-link:hover .top-news-image img {
    transform: scale(1.05);
}

.top-news-image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.top-category-header {
    background: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    margin: 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.top-category-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210B;
    margin: 0 0 0.8rem 0;
    line-height: 1.2;
}

.top-category-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #999;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.top-news-content {
    padding: 1.5rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-news-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.9rem;
    color: #42210B;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.top-news-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #42210B;
    margin: 0 0 1.2rem 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.top-news-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: white;
    color: #42210B;
    border-radius: 14px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #d0d0d0;
}

.top-news-card-link:hover .top-news-tag {
    background: #53834F;
    color: white;
    border-color: #53834F;
}

.top-news-view-all-container {
    text-align: center;
}

.top-news-view-all-button {
    display: inline-block;
    background: #53834F;
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(83, 131, 79, 0.3);
}

.top-news-view-all-button:hover {
    background: #42723E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 101, 71, 0.4);
}

.top-news-view-all-button-sp {
    display: none;
}

@media (max-width: 992px) {
    .top-news-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-news-events-section {
        padding: 3rem 1rem;
    }
    
    .top-news-events-title {
        font-size: 2rem;
    }
    
    .top-news-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   TOP PAGE - Member Registration Section
   ======================================== */

.top-member-registration-section-figma {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    background: #f5f5f5;
    overflow: hidden;
}

.top-registration-container-figma {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.top-registration-header-figma {
    text-align: center;
    margin-bottom: 4rem;
}

.top-registration-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #42210b;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.top-registration-dots-figma {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top-registration-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e6ae25;
}

.top-registration-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #42210b;
    line-height: 1.5;
    margin: 0 0 0.3rem 0;
}

/* Member Types Container */
.top-member-types-container-figma {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Member Card */
.top-member-card-figma {
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.top-member-card-figma:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.top-general-member-figma {
    background: #5a7c56;
}

.top-corporate-member-figma {
    background: #e6ae25;
}

/* Member Header */
.top-member-header-figma {
    text-align: center;
    margin-bottom: 2rem;
}

.top-member-title-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: white;
    margin: 0;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    position: relative;
}

.top-member-title-figma::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: white;
}

.top-general-member-figma .top-member-title-figma {
    background: #5a7c56;
}

.top-corporate-member-figma .top-member-title-figma {
    background: #e6ae25;
}

/* Member Description */
.top-member-description-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #FFF138;
    line-height: 1.6;
    text-align: center;
    margin: 1.5rem 0;
    letter-spacing: 0.02em;
}

/* Divider */
.top-member-divider-figma {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.8) 0,
        rgba(255, 255, 255, 0.8) 8px,
        transparent 8px,
        transparent 16px
    );
    margin: 2.5rem 0;
}

/* Member Question */
.top-member-question-figma {
    background: white;
    border-radius: 30px;
    padding: 1.2rem 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-question-text-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #e6ae25;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

/* General Member Question Text Color */
.top-general-member-figma .top-question-text-figma {
    color: #5a7c56;
}

/* Member Checklist */
.top-member-checklist-figma {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.top-checklist-item-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 0;
    letter-spacing: 0.01em;
}

/* Member Image */
.top-member-image-figma {
    margin: 2.5rem 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.top-member-image-figma img {
    width: 100%;
    height: auto;
    display: block;
}

/* Member CTA */
.top-member-cta-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2.5rem;
}

.top-member-cta-text-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
}

.top-member-button-figma {
    display: inline-block;
    padding: 0;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    letter-spacing: 4.8px;
    width: 340px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
}

.top-general-button-figma {
    background: #fff138;
    color: #53834f;
}

.top-general-button-figma:hover {
    background: #f0e600;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

.top-corporate-button-figma {
    background: #fff138;
    color: #53834f;
}

.top-corporate-button-figma:hover {
    background: #f0e600;
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .top-member-types-container-figma {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-registration-title-figma {
        font-size: 28px;
    }
    
    .top-registration-description-figma,
    .top-registration-sub-description-figma {
        font-size: 14px;
    }
    
    .top-member-card-figma {
        padding: 2rem;
    }
    
    .top-member-title-figma {
        font-size: 20px;
        padding: 0.6rem 1.5rem;
    }
    
    .top-member-description-figma {
        font-size: 13px;
    }
    
    .top-question-text-figma {
        font-size: 14px;
    }
    
    .top-checklist-item-figma {
        font-size: 13px;
    }
    
    .top-member-cta-text-figma {
        font-size: 14px;
    }
    
    .top-member-button-figma {
        font-size: 16px;
        width: 250px;
        height: 50px;
        letter-spacing: 2.4px;
        line-height: 44px;
    }
    
    .top-news-cards-container-figma {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-news-card-header-figma {
        padding: 15px 20px;
    }
    
    .top-news-type-main {
        font-size: 16px;
    }
    
    .top-news-type-sub {
        font-size: 11px;
    }
    
    .top-news-card-body-figma {
        padding: 20px;
        padding-left: 35px;
    }
    
    .top-news-card-body-figma::before {
        left: 12px;
        top: 20px;
        bottom: 20px;
    }
    
    .top-news-card-figma {
        border-radius: 12px;
    }
    
    .top-news-card-title-figma {
        font-size: 13px;
    }
}

/* Archive Smart Agri Tech Page */
.tech-archive-hero-section {
    background: #53834F;
    padding: 4rem 2rem;
    text-align: center;
}

.tech-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-archive-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05em;
}

.tech-archive-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}

.tech-archive-dots .tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E6AE25;
    display: block;
}

/* Search/Filter Section */
.tech-archive-search-section {
    background: #FBF9F4;
    padding: 4rem 2rem;
}

.tech-search-form-figma {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-filter-row-figma {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-filter-group-figma {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.tech-filter-label-figma {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #42210B;
    letter-spacing: 0.05em;
}

.tech-select-figma {
    width: 100%;
    padding: 1rem 4rem 1rem 1rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    color: #666;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 55px;
}

.tech-select-figma:focus {
    outline: none;
    border-color: #5a7c56;
}

.tech-filter-group-figma::after {
    content: '▼';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55px;
    height: 55px;
    background: #5a7c56;
    color: white;
    text-align: center;
    line-height: 55px;
    font-size: 14px;
    pointer-events: none;
    border-radius: 0 4px 4px 0;
}

/* Search Button */
.tech-search-button-container-figma {
    text-align: center;
}

.tech-search-button-figma {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.tech-search-button-figma:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.tech-search-button-img-figma {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* Clear Filter Link */
.tech-clear-filter-container {
    text-align: center;
    margin-top: 2rem;
}

.tech-clear-filter-link {
    color: #5a7c56;
    text-decoration: underline;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.9rem;
}

.tech-clear-filter-link:hover {
    color: #4a6c46;
}

/* Results Section */
.tech-archive-results-section {
    background: white;
    padding: 4rem 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .tech-filter-row-figma {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech-archive-hero-section {
        padding: 3rem 1rem;
    }

    .tech-archive-title {
        font-size: 1.8rem;
    }

    .tech-archive-search-section {
        padding: 3rem 1rem;
    }

    .tech-search-button-img-figma {
        width: 100%;
        max-width: 300px;
    }
}

/* Hide entry title on user profile pages */
.um-page-user .entry-title,
.um-profile .entry-title,
body[class*="user-"] .entry-title {
    display: none;
}

/* Hide entry title on login page */
.page-login .entry-title,
body[class*="login"] .entry-title,
.um-page-login .entry-title {
    display: none !important;
}

/* Hide register links and prompts on login page */
.page-login .um-col-alt-b,
.page-login .um-col-alt a[href*="register"],
.um-page-login .um-col-alt-b,
.um-page-login .um-col-alt a[href*="register"] {
    display: none !important;
}