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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

/* スマホファーストベースのデザイン */

/* サイトヘッダー */
.site-header {
    background: #EEE8E1;
    padding: 15px 0;
}

.logo {
    text-align: center;
}

.logo-img {
    height: 35px;
    width: auto;
}

/* ヒーローセクション */
.hero {
    background-color: #EEE8E1 !important;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B7355;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-name {
    font-size: 1.3em;
    color: #DE5D50;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #A0906B;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #DE5D50, #bd4f44);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 93, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 93, 80, 0.4);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* セクション共通スタイル */
section {
    padding: 50px 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

h2 {
    font-size: 1.8rem;
    color: #8B7355;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

h3 {
    font-size: 1.2rem;
    color: #A0906B;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ベネフィットセクション */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ライフスタイルセクション */
.lifestyle-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.lifestyle-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(135deg, #f9f7f4, #e8e1d8);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #DE5D50;
    margin-top: 10px;
}

.lifestyle-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* 農園ストーリーセクション */
.farm-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.farm-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.farm-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* 定期便ベネフィット */
.benefits-list {
    margin: 0 0 30px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 1.3rem;
    margin-right: 12px;
    color: #8B7355;
    margin-top: 2px;
}

.benefit-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.special-benefits {
    background: linear-gradient(135deg, #f9f7f4, #ede7dd);
    padding: 25px 20px;
    border-radius: 15px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.special-benefit {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bdc3c7;
}

.special-benefit:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.special-benefit h4 {
    color: #8B7355;
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.special-benefit p {
    font-size: 1rem;
    color: #666;
}

/* ターゲット層 */
.target-list {
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.target-checkbox {
    font-size: 1.6rem;
    color: #DE5D50;
    margin-right: 12px;
    flex-shrink: 0;
    line-height: 1;
}

.target-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

/* サービス詳細 */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 1rem;
    color: #666;
}

.service-notes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #A0906B;
    font-size: 1rem;
    line-height: 1.6;
}

/* 特典オファー */
.offer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.offer-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.offer-badge {
    background: #DE5D50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 20px;
}

.offer-item h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.offer-item p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.deadline {
    text-align: center;
    background: #faf6f5;
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid #DE5D50;
}

.deadline h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.deadline-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #DE5D50;
}

.deadline-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* 申し込みフロー */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    background: #8B7355;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
}

.cta-section {
    text-align: center;
}

/* お客様の声 */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-style: italic;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial::before {
    content: '"';
    font-size: 3rem;
    color: #bdc3c7;
    position: absolute;
    top: -5px;
    left: 15px;
}

/* FAQ */
.faq-list {
    margin: 0;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #8B7355;
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    color: #666;
    padding-left: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* 終わりに */
.closing {
    background: linear-gradient(135deg, #8B7355 0%, #A0906B 100%);
    color: white;
}

.closing h2 {
    color: white;
}

.closing-content {
    text-align: center;
    margin: 0 auto;
}

.closing-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.final-cta {
    margin-top: 30px;
}

/* フッター */
footer {
    background: #8B7355;
    color: white;
    padding: 25px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

/* タブレット以上のレスポンシブデザイン */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .site-header {
        padding: 20px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        flex-direction: row;
        gap: 50px;
        text-align: left;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .service-name {
        font-size: 1.4em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        flex-direction: row;
        gap: 30px;
    }
    
    .benefit-item {
        flex: 1;
        padding: 30px 25px;
    }
    
    .benefit-item img {
        height: 200px;
    }
    
    .lifestyle-content,
    .farm-content {
        flex-direction: row;
        gap: 40px;
    }
    
    .lifestyle-text,
    .farm-text {
        flex: 1;
    }
    
    .lifestyle-image,
    .farm-image {
        flex: 1;
    }
    
    .benefits-list {
        max-width: 900px;
        margin: 0 auto 40px;
    }
    
    .target-list {
        max-width: 900px;
    }
    
    .details-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .offer-content {
        flex-direction: row;
        gap: 30px;
    }
    
    .offer-item {
        flex: 1;
    }
    
    .flow-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        flex-direction: row;
        gap: 30px;
    }
    
    .testimonial {
        flex: 1;
    }
    
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .closing-content {
        max-width: 900px;
    }
    
    .closing-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .service-name {
        font-size: 1.5em;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .target-list {
        max-width: 1000px;
    }
    
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .flow-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}