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

/* 基本設定 */
body {
    font-family: 'Lato', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
}

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

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #83b545;
    color: white;
    border-color: #83b545;
}

.btn-primary:hover {
    background-color: #6a9237;
    border-color: #6a9237;
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #334155;
    border-color: #f1f5f9;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    border-color: #e2e8f0;
}

.btn-outline {
    background-color: transparent;
    color: #83b545;
    border-color: #83b545;
}

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

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

.btn-full {
    width: 100%;
}

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #83b545;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 40px;
    width: auto;
    max-height: 40px;
    max-width: 60px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
}

.nav-list a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 8px;
    border-radius: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

.nav-list a:hover {
    color: #83b545;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* メインコンテンツ */
main {
    margin-top: 64px;
}

/* ヒーローセクション */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* ヒーロースライダー */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="image1"] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('/images/1.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-bg="image2"] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('/images/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-bg="image3"] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('/images/3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 画像スライド時の白文字とテキストシャドウ */
.hero-title,
.hero-subtitle,
.hero-description {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

/* 画像スライド時のボタンスタイル */
.hero-slide[data-bg="image1"].active ~ .hero-content .btn-outline,
.hero-slide[data-bg="image2"].active ~ .hero-content .btn-outline,
.hero-slide[data-bg="image3"].active ~ .hero-content .btn-outline {
    background-color: transparent !important;
    color: white !important;
    border-color: white !important;
}

.hero-slide[data-bg="image1"].active ~ .hero-content .btn-outline:hover,
.hero-slide[data-bg="image2"].active ~ .hero-content .btn-outline:hover,
.hero-slide[data-bg="image3"].active ~ .hero-content .btn-outline:hover {
    background-color: white !important;
    color: #83b545 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

/* ヒーローナビゲーション */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #333;
    font-size: 18px;
}

.hero-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* ヒーローインジケーター */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active,
.hero-indicator:hover {
    background: white;
    border-color: white;
}

/* スライダーのレスポンシブ対応 */
@media (max-width: 768px) {
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-nav {
        padding: 0 10px;
    }
    
    .hero-indicators {
        bottom: 20px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    font-family: 'Lato', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #4b5563;
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.hero-description {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* 特徴セクション */
.features {
    padding: 80px 0;
    background-color: white;
    margin-bottom: 0;
}

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

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.feature-icon-green {
    background-color: #e8f5e8;
    color: #83b545;
}

.feature-icon-orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.feature-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.feature-icon-purple {
    background-color: #e9d5ff;
    color: #7c3aed;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    color: #4b5563;
    line-height: 1.6;
}

/* 商品セクション */
.products {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.product-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pear-image-bg {
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%);
}

.juice-image-bg {
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
}

.product-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    max-width: 100%;
    max-height: 100%;
}

.product-emoji {
    font-size: 4rem;
    margin-bottom: 8px;
}

.product-label {
    color: white;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 12px;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.product-description {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* CTAセクション */
.cta {
    padding: 80px 0;
    background-color: #83b545;
    color: white;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 32px;
}

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

/* フッター */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 48px 0 0;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.social-link {
    color: #d1d5db;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-social-text {
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 16px 0;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 更新情報セクション */
.news-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.news-item {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-date {
    background-color: #83b545;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Lato', sans-serif;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.news-category-info {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.news-category-product {
    background-color: #fef3c7;
    color: #d97706;
}

.news-category-event {
    background-color: #ede9fe;
    color: #7c3aed;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

/* 梨についてページ */
.pear-intro {
    padding: 80px 0;
    background-color: white;
}

.pear-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.pear-intro-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
}

.pear-image {
    background: linear-gradient(135deg, #fed7aa 0%, #fbbf24 100%);
}

.fruit-icon {
    font-size: 5rem;
    margin-bottom: 16px;
}

/* 品種セクション */
.pear-varieties {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

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

.variety-card:hover {
    transform: translateY(-4px);
}

.variety-image {
    height: 150px;
    background: linear-gradient(135deg, #fed7aa 0%, #fbbf24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.variety-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.variety-season {
    background-color: #83b545;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: 12px;
    right: 12px;
}

.variety-content {
    padding: 24px;
}

.variety-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.variety-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.variety-features {
    list-style: none;
    padding: 0;
}

.variety-features li {
    background-color: #f8fafc;
    padding: 6px 12px;
    margin-bottom: 4px;
    border-radius: 4px;
    font-size: 14px;
    color: #4b5563;
}

/* 栽培カレンダー */
.cultivation-calendar {
    padding: 80px 0;
    background-color: white;
}

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

.calendar-item {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border-left: 4px solid #83b545;
}

.calendar-month {
    font-size: 18px;
    font-weight: 700;
    color: #83b545;
    margin-bottom: 12px;
}

.calendar-work h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.calendar-work p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

/* こだわりセクション */
.cultivation-commitment {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.commitment-item {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #83b545;
    font-size: 1.8rem;
}

.commitment-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.commitment-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

/* 梨ジュースページ */
.juice-intro {
    padding: 80px 0;
    background-color: white;
}

.juice-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.juice-intro-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
}

.juice-image {
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
}

.juice1-image {
    width: 350px;
    height: 350px;
    max-width: 90vw;
    max-height: 400px;
}

.juice-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
    max-height: 100%;
}

.factory-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
    max-height: 100%;
}

.farm-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(1.1) contrast(1.05);
    max-width: 100%;
    max-height: 100%;
}

.juice-icon {
    font-size: 5rem;
    margin-bottom: 16px;
}

/* 商品ラインナップ */
.juice-products {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.juice-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

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

.juice-product-card:hover {
    transform: translateY(-4px);
}

.juice-product-image {
    height: 120px;
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.juice-square-image {
    height: 180px;
    overflow: hidden;
}

.juice-product-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.juice-product-icon {
    font-size: 2.5rem;
}

.juice-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.juice-product-badge {
    background-color: #ef4444;
}

.juice-product-badge.new {
    background-color: #10b981;
}

.juice-product-badge.gift {
    background-color: #8b5cf6;
}

.juice-product-content {
    padding: 24px;
}

.juice-product-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.juice-product-size {
    color: #83b545;
    font-weight: 600;
    margin-bottom: 12px;
}

.juice-product-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.juice-product-features {
    list-style: none;
    padding: 0;
}

.juice-product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #4b5563;
}

.juice-product-features i {
    color: #83b545;
    font-size: 12px;
}

/* 製造工程 */
.juice-process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #83b545;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #83b545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.process-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #83b545;
    font-size: 1.5rem;
}

/* 品質へのこだわり */
.juice-quality {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.quality-item {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.quality-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #83b545;
    font-size: 1.8rem;
}

.quality-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.quality-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

/* 購入案内 */
.juice-purchase {
    padding: 80px 0;
    background-color: white;
}

.purchase-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.purchase-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.purchase-method {
    text-align: center;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.purchase-method-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #83b545;
    font-size: 1.5rem;
}

.purchase-method-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.purchase-method-description {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.purchase-notice {
    background-color: #fef3c7;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.purchase-notice h3 {
    color: #92400e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.purchase-notice ul {
    list-style: none;
    padding: 0;
}

.purchase-notice li {
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.purchase-notice li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* 加工場ページ */
.factory-intro {
    padding: 80px 0;
    background-color: white;
}

.factory-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.factory-intro-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
}

.factory-image {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.factory-real-image {
    width: 400px;
    height: 300px;
    max-width: 90vw;
    max-height: 350px;
}

.factory-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 設備紹介 */
.factory-equipment {
    padding: 80px 0;
    background-color: #f0f0f0;
}

/* 衛生管理 */
.factory-hygiene {
    padding: 80px 0;
    background-color: white;
}

.hygiene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hygiene-item {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hygiene-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #83b545;
    font-size: 1.8rem;
}

.hygiene-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.hygiene-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

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

.equipment-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.equipment-image {
    height: 120px;
    background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-icon {
    font-size: 3rem;
}

.equipment-content {
    padding: 24px;
}

.equipment-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.equipment-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.equipment-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-item {
    font-size: 12px;
    color: #83b545;
    font-weight: 500;
}

/* お客様の声ページ */
.voices-intro {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.voices-intro-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customer-voices {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.voice-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.voice-category {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.voice-category.pear {
    background-color: #f59e0b;
}

.voice-category.juice {
    background-color: #3b82f6;
}

.voice-category.gift {
    background-color: #8b5cf6;
}

.voice-category.visit {
    background-color: #10b981;
}

.voice-category.service {
    background-color: #ef4444;
}

.voice-rating {
    color: #fbbf24;
}

.voice-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.voice-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-product {
    font-size: 12px;
    color: #6b7280;
}

/* 統計情報 */
.customer-stats {
    padding: 80px 0;
    background-color: white;
}

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

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #83b545;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-description {
    font-size: 12px;
    color: #6b7280;
}

/* お声募集 */
.voice-submission {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.submission-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.submission-method {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.submission-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #83b545;
    font-size: 1.5rem;
}

/* FAQページ */
.faq-intro {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.faq-intro-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.faq-category {
    margin-bottom: 48px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-category-title {
    background-color: #83b545;
    color: white;
    padding: 20px 24px;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question span {
    font-weight: 500;
    color: #1f2937;
}

.faq-question i {
    color: #83b545;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

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

/* お問い合わせ誘導 */
.faq-contact {
    padding: 80px 0;
    background-color: white;
}

.contact-prompt {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-prompt-description {
    margin-bottom: 32px;
    line-height: 1.8;
    color: #4b5563;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

/* ページ固有のスタイル */

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, #83b545 0%, #6a9237 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
}

/* About ページ */
.about-intro {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4b5563;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    max-width: 100%;
    max-height: 400px;
    background: linear-gradient(135deg, #e8f5e8 0%, #fed7aa 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #4b5563;
    position: relative;
    overflow: hidden;
}

.pear1-image {
    width: 350px;
    height: 350px;
    max-width: 90vw;
    max-height: 400px;
}

.pear-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(1.3) contrast(1.1);
    max-width: 100%;
    max-height: 100%;
}

.image-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 12px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 14px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: #83b545;
}

.farm-real-image {
    width: 350px;
    height: 350px;
    max-width: 90vw;
    max-height: 400px;
}

.farm-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(1.1) contrast(1.05);
}

.about-features {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.about-feature-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #83b545;
    font-size: 2rem;
}

.about-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.about-feature-description {
    color: #4b5563;
    line-height: 1.6;
}

/* 農園データセクション */
.farm-data {
    padding: 80px 0;
    background-color: white;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.data-item {
    text-align: center;
    padding: 24px;
}

.data-number {
    font-size: 3rem;
    font-weight: 700;
    color: #83b545;
    margin-bottom: 8px;
}

.data-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.data-description {
    color: #4b5563;
    font-size: 14px;
}

/* アクセス情報 */
.access-info {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.access-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.access-icon {
    width: 50px;
    height: 50px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #83b545;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.access-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.access-text p {
    color: #4b5563;
    line-height: 1.6;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #e8f5e8 100%);
    border-radius: 12px;
    min-height: 300px;
}

.map-icon {
    text-align: center;
    color: #4b5563;
}

.map-icon i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: #2563eb;
}

/* お問い合わせフォーム */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-intro-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #1f2937;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #83b545;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ef4444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #83b545;
    border-color: #83b545;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

/* 連絡先情報 */
.contact-info {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-method {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #83b545;
    font-size: 1.5rem;
}

.contact-method-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.contact-method-description {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-method-details {
    margin-bottom: 16px;
}

.contact-method-details p {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 4px;
}

/* FAQ誘導セクション */
.faq-link {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.faq-link-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-link-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.faq-link-description {
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* アクティブ状態のナビゲーション */
.nav-list a.active {
    color: #83b545;
    background-color: #e8f5e8;
}

@media (max-width: 768px) {
    .about-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form {
        padding: 24px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .news-date {
        align-self: center;
    }
}

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

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

    .hero-description {
        font-size: 16px;
    }

    .feature-card,
    .product-content {
        padding: 16px;
    }

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

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

    .about-feature-card,
    .contact-method {
        padding: 24px;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}