/* 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;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

.logo h1 a {
    color: #2c5f2d;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #7cb342;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact a {
    font-size: 14px;
    color: #666;
}

.phone {
    font-weight: 600;
    color: #2c5f2d !important;
}

/* Buttons */
.btn-primary {
    background-color: #7cb342;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #689f38;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #7cb342;
    padding: 10px 25px;
    border: 2px solid #7cb342;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #7cb342;
    color: #fff;
}

.btn-hero {
    display: inline-block;
    background-color: #7cb342;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #689f38;
}

.btn-submit {
    background-color: #7cb342;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #689f38;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #7cb342;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.badge {
    padding: 20px;
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: #7cb342;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.about-content h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: #7cb342;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #2c5f2d;
}

.service-card p {
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.service-link {
    display: block;
    padding: 15px 20px;
    color: #7cb342;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #689f38;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    text-align: center;
}

.process-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #7cb342;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

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

.feature-item {
    display: flex;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.feature-item p {
    line-height: 1.8;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 14px;
    color: #999;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-areas h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.areas-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.areas-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.areas-list {
    margin-top: 20px;
}

.areas-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

.form-group textarea {
    resize: vertical;
}

.required {
    color: #e53935;
}

.btn-submit {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #2c5f2d;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-column a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom a {
    color: #fff;
    margin: 0 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f2d;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-customize {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-customize:hover {
    background-color: #fff;
    color: #2c5f2d;
}

.btn-accept {
    background-color: #7cb342;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #689f38;
}

/* Page Header */
.page-header {
    background-color: #2c5f2d;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #7cb342;
}

.service-detail-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.8;
}

.price-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #7cb342;
    margin: 20px 0;
    font-weight: 600;
    color: #2c5f2d;
}

/* Additional Services */
.additional-services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.additional-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.additional-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.additional-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.additional-card p {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: #7cb342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Company Info */
.company-info {
    padding: 80px 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.company-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.company-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.mv-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.mv-card p {
    line-height: 1.8;
    color: #666;
}

/* Company Values */
.company-values {
    padding: 80px 0;
}

.company-values h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

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

.choose-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.choose-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.choose-item p {
    line-height: 1.8;
    color: #666;
}

/* Company Details */
.company-details {
    padding: 80px 0;
}

.company-details h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

.details-table {
    max-width: 900px;
    margin: 0 auto;
}

.details-table table {
    width: 100%;
    border-collapse: collapse;
}

.details-table th,
.details-table td {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.details-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2c5f2d;
    width: 200px;
}

.details-table td {
    line-height: 1.8;
}

/* Contact Page */
.contact-page-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.contact-phone {
    font-size: 28px;
    font-weight: 700;
    color: #7cb342;
    margin: 10px 0;
}

.contact-email {
    font-size: 18px;
    color: #7cb342;
    margin: 10px 0;
}

.contact-hours {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.contact-access {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.branch-list {
    padding-left: 0;
}

.branch-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.success-message {
    text-align: center;
    padding: 60px;
    background-color: #f0f8f0;
    border-radius: 10px;
}

.success-message h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 18px;
    margin-bottom: 30px;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c5f2d;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.faq-item p {
    line-height: 1.8;
    color: #666;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-date {
    text-align: right;
    color: #999;
    margin-bottom: 40px;
}

.policy-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c5f2d;
}

.policy-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #7cb342;
}

.policy-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-text ul,
.policy-text ol {
    margin: 20px 0;
    padding-left: 40px;
}

.policy-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-text ul li {
    list-style: disc;
}

.policy-text ol li {
    list-style: decimal;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #7cb342;
    margin: 20px 0;
    line-height: 1.8;
}

.policy-footer {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .about-grid,
    .service-detail-grid,
    .company-grid,
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid,
    .choose-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-image {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .badges-grid,
    .mv-grid,
    .values-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}
