/* トップページ専用スタイル */
body.home {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}
.entry-header,
.entry-title {display: none;}

/* セクション共通スタイル */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: #97BC62;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #97BC62;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title strong {
    font-weight: 600;
    color: #97BC62;
}

.hero-description {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #97BC62;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #5da636;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 184, 65, 0.3);
    color: white;
}

.btn-secondary {
    background: white;
    color: #333;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #e5e5e5;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #97BC62;
    color: #97BC62;
}
/* style.cssのentry-contentのリンク色を上書き */
body.home .entry-content a {
    color: inherit !important;
}

body.home .entry-content a:hover {
    text-decoration: none !important;
}

/* ボタンの色を明示的に指定 */
body.home .entry-content .btn-primary {
    color: white !important;
}

body.home .entry-content .btn-secondary {
    color: #333 !important;
}

body.home .entry-content .btn-secondary:hover {
    color: #97BC62 !important;
}
body.home .entry-content .btn-cta {
    color: white !important;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #97BC62;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f9fafb;
}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #97BC62;
    color: white;
    font-size: 32px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Product Showcase */
.product-showcase {
    padding: 100px 0;
    background: #fff;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
}

.showcase-content h3 {
    font-size: 38px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.benefit-icon {
    color: #97BC62;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.benefit-text strong {
    color: #333;
    font-weight: 600;
}

/* Clinical Data Section */
.clinical-data {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f9f3 0%, #e8f5e9 100%);
}

.clinical-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.clinical-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.clinical-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.clinical-stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #97BC62;
    line-height: 1;
    margin-bottom: 15px;
}

.clinical-stat-label {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.clinical-details {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.clinical-details h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.clinical-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clinical-points li {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.clinical-points li:last-child {
    border-bottom: none;
}

.clinical-icon {
    color: #97BC62;
    font-size: 24px;
    flex-shrink: 0;
}

.clinical-note {
    margin-top: 30px;
    padding: 20px;
    background: #f9fafb;
    border-left: 4px solid #97BC62;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f9f9f9;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    background: linear-gradient(135deg, #97BC62 0%, #85a854 100%) !important;
    color: white !important;
    padding: 14px 40px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(151, 188, 98, 0.2) !important;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #85a854 0%, #73963d 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(151, 188, 98, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-cta:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(151, 188, 98, 0.2) !important;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    float: right;
    font-size: 24px;
    font-weight: 300;
    color: #97BC62;
    transition: transform 0.3s;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding-left: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    /* ========== ヒーローセクション ========== */
    /* 縦並び＆画像を上に */
    .hero-container {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-image {
        order: 1;  /* 画像を上に */
    }
    
    .hero-content {
        order: 2;  /* コンテンツを下に */
    }
    
    .hero-image img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* ========== その他のセクション ========== */
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .clinical-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    /* ========== ヒーローセクション微調整 ========== */
    .hero-container {
        gap: 30px;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    /* ========== ボタン ========== */
    .hero-buttons {
        flex-direction: column;
    }
    
    /* ========== 統計情報 ========== */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* ========== その他 ========== */
    .clinical-stats {
        grid-template-columns: 1fr;
    }
    
    .clinical-details {
        padding: 30px 20px;
    }
    
    .clinical-stat-number {
        font-size: 36px;
    }
    
    .btn-cta {
        width: 100% !important;
        max-width: 300px !important;
        padding: 12px 30px !important;
        font-size: 15px !important;
    }
}