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

/* 既存CSSの影響を解除 */
#tokusyu h1, #tokusyu h2, #tokusyu h3, #tokusyu h4, #tokusyu h5, #tokusyu h6 {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#tokusyu h1::before, #tokusyu h1::after,
#tokusyu h2::before, #tokusyu h2::after,
#tokusyu h3::before, #tokusyu h3::after,
#tokusyu h4::before, #tokusyu h4::after,
#tokusyu h5::before, #tokusyu h5::after,
#tokusyu h6::before, #tokusyu h6::after {
    content: none !important;
    display: none !important;
}

/* 基本スタイル */
#tokusyu {
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', 'Times New Roman', 'Noto Serif JP', serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

/* Android用の明朝体フォールバック */
#tokusyu .main-text,
#tokusyu p,
#tokusyu h1, #tokusyu h2, #tokusyu h3, #tokusyu h4, #tokusyu h5, #tokusyu h6 {
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', 'Times New Roman', 'Noto Serif JP', serif !important;
}

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

#tokusyu a {
    text-decoration: none;
    color: inherit;
}

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

#tokusyu .section {
    padding: 100px 0;
}

/* ヒーローセクション */
#tokusyu .hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#tokusyu .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

#tokusyu .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#tokusyu .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#tokusyu .hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#tokusyu .hero-message {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#tokusyu .hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #333333;
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#tokusyu .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #000;
}

/* セクションタイトル */
#tokusyu .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 100px !important;
    font-weight: 700;
    color: #333333;
    position: relative;
    padding-bottom: 35px !important;
}

#tokusyu .section-title::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #333333;
}

#tokusyu .subtitle-small {
    display: block;
    font-size: 18px;
    margin-top: 15px;
    color: #666;
    font-weight: 400;
}

/* 津田かぶとは？セクション */
#tokusyu .about-section {
    background: #fff;
}

#tokusyu .about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

#tokusyu .about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#tokusyu .about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 2;
}

#tokusyu .about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#tokusyu .feature-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

#tokusyu .feature-item::before {
    content: "✓";
    color: #2d5f3f;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

#tokusyu .feature-item h4 {
    font-size: 15px;
    color: #333333;
    font-weight: 700;
    margin: 0;
}

#tokusyu .feature-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* 農家さんのストーリーセクション */
#tokusyu .story-section {
    background: #fff;
}

#tokusyu .story-image-hero {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

#tokusyu .story-image-hero img {
    width: 100%;
    height: auto;
}

#tokusyu .story-block {
    margin-bottom: 80px;
}

#tokusyu .story-subtitle {
    font-size: 28px;
    color: #333333;
    margin-bottom: 50px !important;
    font-weight: 700;
    border-left: 5px solid #333333;
    padding-left: 20px;
}

#tokusyu .story-content {
    font-size: 16px;
    line-height: 2;
}

#tokusyu .story-content p {
    margin-bottom: 25px;
}

#tokusyu .farmer-quote {
    background: #f4f4f4;
    padding: 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 16px;
    line-height: 2;
    color: #555;
}

#tokusyu .story-image {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#tokusyu .story-image img {
    width: 100%;
}

#tokusyu .reason-block {
    background: #F4F4F4;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #333;
}

#tokusyu .reason-block .story-content p {
    font-size: 18px;
    line-height: 2.2;
    color: #333;
}

/* 畑・収穫の様子セクション */
#tokusyu .harvest-section {
    background: #f9f9f9;
}

#tokusyu .harvest-video {
    max-width: 800px;
    margin: 0 auto 40px;
}

#tokusyu .harvest-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#tokusyu .video-caption {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    line-height: 1.8;
}

#tokusyu .harvest-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#tokusyu .harvest-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

#tokusyu .harvest-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#tokusyu .caption {
    padding: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* けんちゃん漬のこだわりセクション */
#tokusyu .commitment-section {
    background: #fff;
}

#tokusyu .commitment-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

#tokusyu .commitment-block.reverse {
    grid-template-columns: 1fr 1fr;
}

#tokusyu .commitment-block.reverse .commitment-image {
    order: -1;
}

#tokusyu .commitment-subtitle {
    font-size: 24px;
    color: #333333;
    margin-bottom: 25px;
    font-weight: 700;
}

#tokusyu .commitment-text {
    font-size: 16px;
    line-height: 2;
}

#tokusyu .commitment-text p {
    margin-bottom: 20px;
}

#tokusyu .commitment-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#tokusyu .commitment-message {
    background: #F4F4F4;
    color: #333;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
}

#tokusyu .commitment-message .commitment-subtitle {
    color: #333;
    margin-bottom: 30px;
}

#tokusyu .commitment-text-center p {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 25px;
    color: #333;
}

#tokusyu .commitment-quote {
    font-size: 18px;
    font-weight: 400;
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    line-height: 2;
    color: #333;
    font-style: italic;
}

/* 商品ラインナップセクション */
#tokusyu .products-section {
    background: #fff;
}

#tokusyu .products-intro {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 60px;
    color: #555;
}

#tokusyu .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    grid-auto-flow: row !important;
    align-items: stretch !important;
}

#tokusyu .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    min-width: 0 !important;
}

#tokusyu .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#tokusyu .product-image {
    width: 100% !important;
    flex-shrink: 0 !important;
}

#tokusyu .product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block !important;
}

#tokusyu .product-info {
    padding: 30px;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

#tokusyu .product-name {
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 700;
}

#tokusyu .product-catch {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

#tokusyu .product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

#tokusyu .product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #333333;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

#tokusyu .product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: #000;
}

/* CTAセクション */
#tokusyu .cta-section {
    background: #F4F4F4;
    text-align: center;
    color: #333;
}

#tokusyu .cta-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

#tokusyu .cta-content {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 50px;
    color: #333;
}

#tokusyu .cta-content p {
    margin-bottom: 25px;
}

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

#tokusyu .cta-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

#tokusyu .cta-btn.primary {
    background: #333333;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#tokusyu .cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #000;
}

#tokusyu .cta-btn.secondary {
    background: #fff;
    color: #2d5f3f;
    border: 2px solid #fff;
}

#tokusyu .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

/* フッター */
#tokusyu .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

#tokusyu .footer p {
    font-size: 14px;
}

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

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

/* レスポンシブデザイン */
@media (max-width: 1000px) {
    #tokusyu .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    #tokusyu .harvest-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #tokusyu .section {
        padding: 60px 0;
    }

    #tokusyu .hero-title {
        font-size: 32px;
    }

    #tokusyu .hero-subtitle {
        font-size: 18px;
    }

    #tokusyu .hero-message {
        font-size: 16px;
    }

    #tokusyu .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    #tokusyu .subtitle-small {
        font-size: 16px;
    }

    /* 津田かぶとは？ */
    #tokusyu .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    /* ストーリーセクション */
    #tokusyu .story-subtitle {
        font-size: 22px;
    }

    #tokusyu .reason-block {
        padding: 40px 25px;
    }

    /* 畑セクション */
    #tokusyu .harvest-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #tokusyu .harvest-item img {
        height: 250px;
    }

    /* こだわりセクション */
    #tokusyu .commitment-block {
        grid-template-columns: 1fr !important;
        gap: 40px;
        display: flex !important;
        flex-direction: column !important;
    }

    #tokusyu .commitment-block .commitment-content {
        order: 1;
    }

    #tokusyu .commitment-block .commitment-image {
        order: 2;
    }

    #tokusyu .commitment-block.reverse .commitment-content {
        order: 1;
    }

    #tokusyu .commitment-block.reverse .commitment-image {
        order: 2;
    }

    #tokusyu .commitment-message {
        padding: 50px 30px;
    }

    /* 商品セクション */
    #tokusyu .products-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* CTA */
    #tokusyu .cta-title {
        font-size: 32px;
    }

    #tokusyu .cta-content {
        font-size: 16px;
    }

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

    #tokusyu .cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

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

    #tokusyu .hero-title {
        font-size: 28px;
    }

    #tokusyu .hero-subtitle {
        font-size: 16px;
    }

    #tokusyu .hero-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    #tokusyu .section-title {
        font-size: 24px;
    }

    #tokusyu .story-subtitle {
        font-size: 20px;
    }

    #tokusyu .commitment-subtitle {
        font-size: 20px;
    }

    #tokusyu .cta-title {
        font-size: 28px;
    }
}
