* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
--primary-green: #16a34a;
--light-green: #4ade80;
--dark-bg: #1e293b;
--light-bg: #f8fafc;
--gray-bg: #f1f5f9;
--text-dark: #0f172a;
--text-light: #64748b;
--border-color: #e2e8f0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}
h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    line-height: 1.3;
}
/* Header Navigation */
/*.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 2rem;
}*/
	/*
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/
.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: var(--primary-green);
}
.nav-cta {
    background: var(--primary-green);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.nav-cta:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}
/* Hero Sext-align: center;ection */
.hero {
    /* margin-top: 80px;*/
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), url('../images/19201280_teatop.webp') center/cover;
    color: white;
    t
}
.hero-content {
    max-width: 900px;
    padding: 2rem;
}
.hero h1 {
    font-size: 3.0rem; /*3.5rem*/
    margin-bottom: 1.5rem;
    color: white;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e2e8f0;
}
.hero-cta {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-bg);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.5);
}
/* Section Container */
.section {
    padding: 5rem 2rem;
}
.section-alt {
    background-color: var(--gray-bg);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 1rem auto 0;
}
/* Questions Grid */
.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.question-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    /* transition: transform 0.3s; */
}
/*.question-card:hover {
    transform: translateY(-5px);
}*/
.question-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}
.question-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.question-text {
    color: var(--text-light);
}
.alert-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}
.alert-box p {
    color: #92400e;
    font-weight: 500;
}
/* Challenges Grid */
.challenges-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));*/
    gap: 1rem;
    margin-bottom: 3rem;
}
.challenge-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
/*.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}*/
.challenge-icon {
	grid-row: 1 / 3;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.challenge-title {
	grid-row: 1 / 2;	
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.challenge-text {
	grid-row: 3 / 2;
    color: var(--text-light);
    line-height: 1.7;
}
/* Table */
.comparison-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
th {
    background: var(--primary-green);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}
td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}
tr:hover {
    background-color: #f8fafc;
}
.check {
    color: var(--primary-green);
    font-size: 1.3rem;
}
.cross {
    color: #dc2626;
    font-size: 1.3rem;
}
/* Checklist */
.checklist {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.checklist-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-green);
    background: var(--light-bg);
    border-radius: 8px;
}
.checklist-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.checklist-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.checklist-content p {
    color: var(--text-light);
    line-height: 1.7;
}
/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.strategy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-green);
}
.strategy-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.strategy-card ul {
    list-style: none;
    padding: 0;
}
.strategy-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}
.strategy-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}
/* Compare Section */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.compare-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}
/* Do/Don't Section */
.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.do-card {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #16a34a;
}
.dont-card {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dc2626 !important;
}
.do-card h3 {
    color: #16a34a !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.dont-card h3 {
    color: #dc2626 !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
/* Timeline */
.timeline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}
.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85));
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}
.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.service-item i {
    font-size: 2rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}
.big-cta {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-bg);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.4);
}
.big-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 222, 128, 0.5);
}
/* Footer */
/*.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}
.footer p {
    color: #94a3b8;
}*/
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2rem;
}
.hero-subtitle {
    font-size: 1rem;
}
.nav-menu {
    display: none;
}
.mobile-menu-btn {
    display: block;
}
.section {
    padding: 3rem 1rem;
}
.section-title {
    font-size: 1.8rem;
}
.questions-grid, .challenges-grid, .strategy-grid, .compare-grid, .do-dont-grid {
    grid-template-columns: 1fr;
}
}

/* ===== LP FOODS externalized overrides ===== */
:root {
    --primary-green: #2f6b3f;
    --light-green: #a9d38d;
    --dark-bg: #143728;
    --light-bg: #f7fbf5;
    --gray-bg: #edf6ec;
    --text-dark: #203127;
    --text-light: #637465;
    --border-color: #d7e4d5;
    --tea-green-deep: #0f4d37;
    --tea-green-mid: #2f7d53;
    --tea-green-soft: #76a85c;
	--tea-gradient: linear-gradient(135deg, #155e52 0%, #3f8f5a 50%, #8fcf5a 100%);
    /*--tea-gradient: linear-gradient(135deg, #0f4d37 0%, #2f7d53 48%, #76a85c 100%);*/
    --tea-gradient-dark: linear-gradient(135deg,#52b78b /*#143728*/ 30%, #4daf80 /*#24563e*/ 70%);
}
html {
    scroll-padding-top: 96px;
}
body {
    background: #ffffff;
}
.hero {
    /* margin-top: 78px; */
    min-height: 640px;
    background: linear-gradient(rgba(16, 58, 42, 0.78), rgba(16, 58, 42, 0.78)), url('../images/19201280_teatop.webp') center/cover;
}
.hero-subtitle {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.button-theme,
.button-theme:focus,
.button-theme:hover {
    background-image: var(--tea-gradient);
    background-color: #2f6b3f;
    border-color: #2f6b3f;
    color: #ffffff;
}
.header.lpfoods-header,
.header.lpfoods-header.sticky,
.header.lpfoods-header.sticky-autohide {
    background: var(--tea-gradient);
    box-shadow: 0 8px 24px rgba(15, 77, 55, 0.22);
}
.lpfoods-header .container {
    min-height: 78px;
}
.lpfoods-header .header-logo h3 {
    margin-bottom: 0;
}
.lpfoods-header .header-logo img {
    max-height: 46px;
    width: auto;
}
.lpfoods-header .header-menu .nav {
    align-items: center;
    gap: 0.2rem;
}
.lpfoods-header .header-menu .nav-link {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
    padding: 0.7rem 0.85rem;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.lpfoods-header .header-menu .nav-link:hover,
.lpfoods-header .header-menu .nav-link.active {
    color: #ffffff;
    opacity: 1;
}
.lpfoods-header .header-menu-extra .button {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}
.lpfoods-header .header-toggle span,
.lpfoods-header .header-toggle span::before,
.lpfoods-header .header-toggle span::after {
    background: #ffffff;
}
.section-title::after,
th,
.checklist-number,
.timeline-icon {
    background: var(--tea-gradient);
}
.questions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}
.question-card {
    height: 100%;
}
.challenges-grid {
    grid-template-columns: 1fr!important;
}
.challenge-card {
    text-align: left;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
}
.challenge-card .challenge-icon {
    margin-bottom: 0;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6ec;
}
.compare-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
/*
#labels .compare-card h3,
#promotion .do-card h3,
#promotion .dont-card h3 {
    color: var(--primary-green);
}

#promotion .do-card,
#promotion .dont-card {
    background: #f0f9ef;
    border: 2px solid #5c9a63;
	*/
}
#promotion .dont-card ul li,
#promotion .do-card ul li {
    border-bottom-color: #c6dfc2 !important;
}
.timing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.timing-grid > h3 {
    grid-column: 1 / -1;
    margin-bottom: 0 !important;
}
.timing-grid .timeline-item {
    margin-bottom: 0;
    height: 100%;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.cta-section {
        background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85));
}
.services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.footer-shell {
    background: var(--tea-gradient);
    color: #ffffff;
}
.footer-shell .footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}
.footer-shell a,
.footer-shell li,
.footer-shell h3,
.footer-shell p,
.footer-shell .list-unstyled {
    color: #ffffff;
}
.footer-shell .list-dash li::before {
    border-color: rgba(255, 255, 255, 0.55);
}
.footer-body-note {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}
.footer-bottom {
    background: #102c20;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 1199px) {
    .questions-grid {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
    .timing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .lpfoods-header .container {
        min-height: 74px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .lpfoods-header .header-menu-extra {
        margin-left: auto;
        margin-right: 0.75rem;
    }
    .lpfoods-header .header-menu .nav-link {
        color: var(--text-dark);
        padding: 0.7rem 0;
    }
    .lpfoods-header .header-menu .nav {
        gap: 0;
    }
}
@media (max-width: 768px) {
    .hero {
        margin-top:7px;/*72px*/
        min-height: 560px;
    }
    .questions-grid,
    .timing-grid,
    .services-grid,
    .strategy-grid,
    .compare-grid,
    .do-dont-grid {
        grid-template-columns: 1fr;
    }
    .challenge-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .challenge-card .challenge-icon {
        margin: 0 auto;
    }
    .lpfoods-header .header-logo img {
        max-height: 40px;
    }
    .lpfoods-header .header-menu-extra {
        display: none;
    }
    .big-cta {
        width: 100%;
        max-width: 100%;
        padding-inline: 1.5rem;
    }
}
/*謾ｹ陦?*/
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* FDA險ｺ譁ｭ繝√Ε繝ｼ繝? 繧ｹ繧ｿ繧､繝ｫ */
.fda-chart-container {
    background-color: #2d5043; /* 逕ｻ蜒上?閭梧勹濶ｲ */
    color: #ffffff;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.fda-chart-title {
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #ffffff;
    display: inline-block;
    padding: 12px 25px;
    margin-bottom: 30px;
}

.fda-chart-step {
    display: none;
    animation: fda-fadeIn 0.5s;
    min-height: 200px;
}

.fda-chart-step.active {
    display: block;
}

@keyframes fda-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fda-chart-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.6;
}

.fda-chart-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fda-chart-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    min-width: 120px;
}

.fda-chart-btn:hover {
    background-color: #ffffff;
    color: #2d5043;
}

.fda-chart-result {
    padding: 20px;
    border-radius: 6px;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* 結果の色分け */
.fda-chart-res-blue { border: 2px solid #3498db; color: #ffffff; } /* 珈琲・一般 */
.fda-chart-res-yellow {  border: 2px solid #f1c40f; color: #ffffff;  } /* 健康食品・FCE */
.fda-chart-res-green { border: 2px solid #2ecc71; color: #ffffff; }  /* TEA */


.fda-chart-warning::before { content: ""; }
.fda-chart-leaf::before { content: ""; }

.fda-chart-footer-note {
    margin-top: 40px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 20px;
    text-align: left;
    line-height: 1.7;
    background-color: rgba(255,255,255,0.05);
}

.fda-chart-reset {
    margin-top: 25px;
    font-size: 0.9rem;
    padding: 10px 25px;
    opacity: 0.8;
    border-style: dashed;
}

@media (max-width: 480px) {
    .fda-chart-title { font-size: 1.2rem; }
    .fda-chart-question { font-size: 1.1rem; }
    .fda-chart-btn { width: 100%; padding: 12px; }
}

	  /* お茶の種類別 FDA対応比較表 */
.fda-table-wrapper {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;/* スマホで横スクロール可能に */
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fda-table {
    width: 100%;
    min-width: 800px; /* スマホでも表の形を崩さないための最小幅 */
    border-collapse: collapse;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.fda-table th {
    /* 画像の緑グラデーションを再現 */
    background: linear-gradient(90deg, #56ab2f, #a8e063);
    color: #ffffff;
    padding: 15px 10px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

.fda-table td {
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    color: #333;
}

.fda-table td:first-child {
    text-align: left;
    background-color: #f9f9f9;
    font-weight: bold;
    padding-left: 20px;
}

.fda-table .tea-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: #666;
    margin-top: 4px;
}

/* 記号の装飾 */
.fda-symbol-ok {
    color: #2d8c3c;
    font-size: 1.4rem;
    font-weight: bold;
}

.fda-symbol-ng {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: bold;
}

/* PC等での見栄え調整 */
@media screen and (min-width: 1024px) {
    .fda-table {
        font-size: 15px;
    }
}