        /* styles.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:  'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo img {
            height: 40px;
        }

        .main-nav {
            position: absolute;
            right: 2rem;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            width: 40px;
            height: 40px;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
            display: block;
            border-radius: 2px;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: #474747;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 2rem 0;
            gap: 2rem;
            z-index: 999;
            list-style: none;
            margin: 0;
        }

        .nav-menu li {
            margin: 0;
            list-style: none;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
            font-size: 1.1rem;
            white-space: nowrap;
            display: block;
            padding: 0.5rem;
        }

        .main-nav a:hover {
            opacity: 0.8;
        }

        .instagram-link {
            font-size: 1.2rem !important;
        }

        /* Mobile Navigation - removed media query to show hamburger on all devices */
        .nav-menu.active {
            left: 0;
        }

        /* Main Content */
        .main-content {
            min-height: calc(100vh - 120px);
            padding: 2rem 0;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .page-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #474747;
            font-weight: bold;
        }

        .faq-intro {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .faq-intro p {
            font-size: 1.1rem;
            color: #666;
        }

        /* Category Navigation */
        .faq-categories {
            margin-bottom: 2rem;
        }

        .category-nav ul {
            display: flex;
            list-style: none;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            max-width: 1000px;
        }

        .category-btn {
            padding: 0.8rem 1.2rem;
            background: white;
            color: #474747;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: 2px solid #474747;
            font-weight: 500;
            white-space: nowrap;
            flex-shrink: 0;
            min-width: auto;
            font-size: 0.95rem;
        }

        .category-btn:hover,
        .category-btn.active {
            background: #474747;
            color: white;
        }

        /* FAQ Sections */
        .faq-sections {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-section {
            display: none;
            padding: 2rem;
        }

        .faq-section.active {
            display: block;
        }

        .faq-section h2 {
            font-size: 1.8rem;
            color: #474747;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #474747;
        }

        /* FAQ Items */
        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 1rem;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 0;
            text-align: left;
            font-size: 1.1rem;
            color: #474747;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .faq-question:hover {
            color: #4a7c59;
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 0 0 1rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 0 1.5rem 1rem;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.8;
            border-left: 3px solid #474747;
            padding-left: 1rem;
        }

        /* Contact Section */
        .contact-section {
            margin-top: 3rem;
            padding: 2rem;
            background: #7d7979;
            color: white;
            border-radius: 10px;
            text-align: center;
        }

        .contact-section h3 {
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }

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

        .contact-item {
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
        }

        .contact-item strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
           color: #474747;
        }

        .contact-item p {
            line-height: 1.6;
          color: #474747;
        }
/* CTA Section */
.cta-section {
    text-align: center;
    margin: 80px 0 0px 0px;
}

.cta-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.cta-section h3.desktop-text,
.cta-section h3.mobile-text {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-button {
    margin: 0;
}

.contact-info-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 120px;
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: normal;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-btn:after {
    content: '>';
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-info-btn:hover {
    background-color: #333;
    color: #fff;
}

.contact-info-btn:hover:after {
    transform: translateX(5px);
}
/* デスクトップ・モバイル用テキスト表示切り替え */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}


        /* Footer */
        footer {
            background-color: #474747;
            color: white;
            padding: 2rem;
            margin-top: 3rem;
        }

        footer img {
            height: 60px;
            flex-shrink: 0;
        }

        footer > div {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center; 
        }

        footer .inner {
            border: 2px solid white;
            padding: 1.2rem 2rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        footer .inner::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 0%;
            bottom: 0%;
            width: 1px;
            background-color: white;
            transform: translateX(-50%);
        }

        footer .inner > div:first-child {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        footer address {
            flex: 1;
            font-style: normal;
            line-height: 1.5;
            font-size: 0.9rem;
            font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', serif;
            text-align: left; 
        }

        footer address p {
            margin-bottom: 0.3rem;
        }

        footer nav ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 1rem;
        }

        footer nav a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        footer nav a:hover {
            opacity: 0.8;
        }

        footer small {
            font-size: 0.85rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Mobile specific styles */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .faq-intro {
                padding: 1.5rem;
            }

            .faq-section {
                padding: 1rem;
            }

            .faq-question {
                font-size: 0.95rem;
            }

             .category-nav ul {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
                justify-items: center;
                width: 100%;
                max-width: 100%;
            }

            .category-nav ul li {
                margin: 0;
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .category-btn {
                padding: 0.7rem 0.8rem;
                font-size: 0.85rem;
                margin: 0;
                display: block;
                white-space: nowrap;
                width: 100%;
                max-width: 140px;
                text-align: center;
                box-sizing: border-box;
            }

            .contact-section {
                padding: 1.5rem;
            }
 .contact-section h3{
               font-size: 1rem;
            }

            .contact-item {
                padding: 1rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
          
           .cta-section {
    text-align:center;
    margin: 80px 0 0px 0px;
}

    .cta-section h3 {
        margin-left: 0;
      font-size: 18px;
    }
  
   .cta-section h3.desktop-text {
        display: none;
    }
    
    .cta-section h3.mobile-text {
        display: block;
    }

    .contact-info-btn {
        padding: 14px 80px;
        font-size: 15px;
    }


            footer {
                padding: 1rem;
            }

            footer .inner {
                border: 1px solid white;
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 1.5rem;
                margin-bottom: 1.5rem;
            }

            footer .inner::after {
                display: none;
            }

            footer .inner > div:first-child {
                flex: none;
                justify-content: center;
            }

            footer address {
                flex: none;
            }

            footer nav ul {
                justify-content: center;
                gap: 1rem;
                font-size: 0.85rem;
            }

            footer nav a {
                font-size: 0.85rem;
            }
          
            /* モバイル表示：mobile-text表示、desktop-text非表示 */
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }

        }

        /* Animation for smooth transitions */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-section.active {
            animation: fadeIn 0.3s ease;
        }