/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #2c5f2d;
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1e4620;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #2c5f2d;
}

.btn-line {
    background-color: #06c755;
}

.btn-line:hover {
    background-color: #05a847;
}

/* Hero section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c5f2d 0%, #4a8c4b 50%, #2c5f2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 100px 20px 60px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-points {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05rem;
}

/* Section styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
    font-size: 2rem;
}

.bg-light {
    background-color: #f5f7f5;
}

.bg-dark {
    background-color: #2c3e2d;
    color: white;
}

.bg-dark h2 {
    color: white;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #2c5f2d;
    font-size: 1.2rem;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Price section */
.price-box {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto 50px;
    border: 3px solid #2c5f2d;
}

.price-main {
    margin-bottom: 10px;
}

.price-number {
    font-size: 4rem;
    font-weight: bold;
    color: #2c5f2d;
}

.price-unit {
    font-size: 1.3rem;
    color: #2c5f2d;
    font-weight: bold;
}

.price-note {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price-details {
    list-style: none;
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
}

.price-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    padding-left: 24px;
    position: relative;
}

.price-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

/* Truck price */
.truck-price {
    max-width: 800px;
    margin: 0 auto;
}

.truck-price h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-size: 1.3rem;
}

.truck-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.truck-table th {
    background: #2c5f2d;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.95rem;
}

.truck-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.truck-table tr:last-child td {
    border-bottom: none;
}

.truck-table tr:nth-child(even) {
    background: #f9faf9;
}

/* Recommend section */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.recommend-card {
    background: #f5f7f5;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    border-left: 4px solid #2c5f2d;
}

.recommend-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.recommend-card p {
    font-size: 0.95rem;
    color: #444;
}

/* FAQ section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-q {
    background: #2c5f2d;
    color: white;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 1rem;
}

.faq-a {
    padding: 16px 20px;
    color: #444;
    line-height: 1.8;
}

/* Access section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map {
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-info h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
}

.access-info p {
    line-height: 1.8;
    color: #444;
}

/* Contact section */
.contact-lead {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #1a2e1b;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #999;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .price-box {
        padding: 30px 20px;
    }

    .price-number {
        font-size: 3rem;
    }

    .truck-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .truck-table th,
    .truck-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .access-content {
        grid-template-columns: 1fr;
    }

    .map {
        height: 280px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}
