/* CSS Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1a1b3a;
    background-color: #f5f1eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(26, 27, 58, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    color: #1a1b3a;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e0d5 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #1a1b3a;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #e55555;
}

.hero-img, .content-img, .gear-img, .about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-button {
    background-color: #9caf88;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
}

.secondary-button:hover {
    background-color: #8a9e76;
}

.gear-img {
    height: 200px;
    object-fit: cover;
}

.hero-image, .guide-image, .niche-image, .seo-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    border: 2px dashed #999;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #1a1b3a;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
}

/* Guides Section */
.guides {
    padding: 4rem 0;
    background-color: #f5f1eb;
    text-align: center;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guide-text ul {
    list-style: none;
    padding-left: 0;
}

.guide-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.guide-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9caf88;
    font-weight: bold;
}

/* Niche Ideas Section */
.niche-ideas {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.niche-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* SEO Section */
.seo-section {
    padding: 4rem 0;
    background-color: #f5f1eb;
    text-align: center;
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.checklist-preview {
    margin-top: 1.5rem;
}

.check-item {
    padding: 0.5rem 0;
    color: #9caf88;
    font-weight: 500;
}

/* Gear Section */
.gear {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gear-item {
    text-align: center;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
}

.gear-item .placeholder-image {
    height: 200px;
    margin-bottom: 1rem;
}

.gear-item h3 {
    color: #1a1b3a;
    margin-bottom: 0.5rem;
}

.gear-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: #1a1b3a;
    color: white;
}

.products h2 {
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    background-color: white;
    color: #1a1b3a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.product-item h3 {
    margin-bottom: 1rem;
    color: #1a1b3a;
}

.product-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.product-button {
    background-color: #9caf88;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
}

.product-button:hover {
    background-color: #8a9e76;
}

.product-button.premium {
    background-color: #ff6b6b;
}

.product-button.premium:hover {
    background-color: #e55555;
}

.product-button.coaching {
    background-color: #1a1b3a;
}

.product-button.coaching:hover {
    background-color: #2a2b4a;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #f5f1eb;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
}

.testimonial-image .placeholder-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: #9caf88;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #1a1b3a;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #1a1b3a;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: #ccc;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1b3a;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: #9caf88;
    color: white;
}

.cookie-accept:hover {
    background-color: #8a9e76;
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid #666;
}

.cookie-decline:hover {
    background-color: #333;
}

.cookie-customize {
    background-color: #ff6b6b;
    color: white;
}

.cookie-customize:hover {
    background-color: #e55555;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #1a1b3a;
}

.cookie-modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #1a1b3a;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: #1a1b3a;
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.2s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #9caf88;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #9caf88;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-save {
    background-color: #9caf88;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.cookie-save:hover {
    background-color: #8a9e76;
}

.cookie-policy-link {
    color: #9caf88;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1b3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9caf88;
}

.submit-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    width: 100%;
}

.submit-button:hover {
    background-color: #e55555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1b3a;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-accept {
    background-color: #9caf88;
    color: white;
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-settings {
    background-color: #ff6b6b;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper,
    .guide-content,
    .niche-content,
    .seo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        align-items: center;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cookie-save {
        width: 100%;
    }
}