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

:root {
    --pine-green: #2D5016;
    --ecru: #F5F5DC;
    --charcoal: #36454F;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    --font-primary: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Centered content for main sections */
.centered-content {
    text-align: center;
}

.centered-content .hero-content,
.centered-content .corporate-content,
.centered-content .location-content {
    text-align: left;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--pine-green);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--ecru);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-accept,
.cookie-reject,
.cookie-customize {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--pine-green);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #1a3009;
}

.cookie-reject {
    background-color: transparent;
    color: var(--ecru);
    border: 1px solid var(--ecru);
}

.cookie-reject:hover {
    background-color: var(--ecru);
    color: var(--charcoal);
}

.cookie-customize {
    background-color: var(--text-light);
    color: var(--white);
}

.cookie-customize:hover {
    background-color: var(--text-dark);
}

/* Cookie Customization Panel */
.cookie-customization {
    background-color: var(--white);
    color: var(--text-dark);
    border-top: 1px solid var(--ecru);
    padding: 24px;
    margin-top: 20px;
}

.cookie-custom-content h3 {
    margin-bottom: 20px;
    color: var(--pine-green);
    font-size: 18px;
}

.cookie-categories {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-category {
    padding: 16px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.cookie-switch {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.cookie-switch input[type="checkbox"] {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.cookie-switch input:checked + .slider {
    background-color: var(--pine-green);
}

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

.cookie-switch input:disabled + .slider {
    background-color: var(--pine-green);
    opacity: 0.7;
}

.cookie-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.cookie-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

.cookie-custom-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-save,
.cookie-cancel {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-save {
    background-color: var(--pine-green);
    color: var(--white);
}

.cookie-save:hover {
    background-color: #1a3009;
}

.cookie-cancel {
    background-color: var(--text-light);
    color: var(--white);
}

.cookie-cancel:hover {
    background-color: var(--text-dark);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--ecru);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--pine-green);
    line-height: 1.2;
}

.brand-name p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -4px;
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h2 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 32px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: var(--pine-green);
    color: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.cta-button:hover {
    background-color: var(--charcoal);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.3);
}

.hero-img,
.corporate-img,
.location-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-img,
.session-img,
.product-img,
.experience-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.session-img {
    height: 240px;
}

.product-img {
    height: 220px;
}

.experience-img {
    height: 250px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 24px;
}

.about > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature h3 {
    font-size: 24px;
    color: var(--pine-green);
    margin-bottom: 16px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Sessions */
.sessions {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.sessions h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 60px;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.session-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.session-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.session-card h3 {
    font-size: 24px;
    color: var(--pine-green);
    margin-bottom: 16px;
}

.session-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.session-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    background-color: var(--ecru);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--pine-green);
}

/* Products */
.products {
    padding: 80px 0;
    background-color: var(--white);
}

.products h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 20px;
    color: var(--pine-green);
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 16px;
}

.product-button {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: var(--pine-green);
}

/* Corporate */
.corporate {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corporate-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    margin-bottom: 24px;
    line-height: 1.3;
}

.corporate-text p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.corporate-text ul {
    list-style: none;
    margin-bottom: 32px;
}

.corporate-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.corporate-text ul li:before {
    content: "•";
    color: var(--pine-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Membership */
.membership {
    padding: 80px 0;
    background-color: var(--white);
}

.membership h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 60px;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background-color: var(--white);
    border: 2px solid var(--ecru);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.membership-card.premium {
    border-color: var(--pine-green);
    background-color: var(--light-gray);
}

.membership-card h3 {
    font-size: 24px;
    color: var(--pine-green);
    margin-bottom: 16px;
}

.membership-card .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 32px;
}

.membership-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.membership-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.membership-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.membership-card ul li:before {
    content: "✓";
    color: var(--pine-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.membership-button {
    display: inline-block;
    background-color: var(--pine-green);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.membership-button:hover {
    background-color: var(--charcoal);
}

/* Experience */
.experience {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.experience h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 24px;
}

.experience > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.experience-item {
    text-align: center;
}

.experience-item .image-placeholder {
    height: 250px;
    margin-bottom: 20px;
}

.experience-item h3 {
    font-size: 20px;
    color: var(--pine-green);
}

/* Location */
.location {
    padding: 80px 0;
    background-color: var(--white);
}

.location h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--pine-green);
    text-align: center;
    margin-bottom: 60px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-info h3 {
    font-size: 24px;
    color: var(--pine-green);
    margin-bottom: 20px;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.access-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.access-info strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--pine-green);
    color: var(--white);
}

.contact h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-item a {
    color: var(--ecru);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin-bottom: 8px;
    color: rgba(245, 245, 220, 0.8);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
}

.footer-info {
    display: grid;
    gap: 32px;
}

.footer-contact h4,
.footer-location h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--ecru);
    font-weight: 500;
}

.footer-contact p,
.footer-location p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--ecru);
}

.footer-links {
    display: grid;
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--ecru);
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--ecru);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content,
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-text {
        min-width: auto;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .cookie-accept,
    .cookie-reject,
    .cookie-customize {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .cookie-custom-buttons {
        flex-direction: column;
    }
    
    .cookie-save,
    .cookie-cancel {
        width: 100%;
    }
    
    .hero-content,
    .corporate-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-text h2 {
        font-size: 40px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-img,
    .corporate-img,
    .location-img {
        height: 300px;
    }
    
    .session-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0 !important;
    }
}