@charset "utf-8";

        /* 概要セクション */
        .overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .overview-content {
            width: 55%;
        }
        
        .overview-content h3 {
            font-size: 24px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 20px;
        }
        
        .overview-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .overview-image {
            width: 40%;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 特徴セクション */
        .features {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .feature-item {
            width: calc(33.333% - 20px);
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d6c8a8; /* ベージュ */
            font-size: 30px;
        }
        
        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .feature-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* コンセプト */
        .concept {
            position: relative;
            padding: 60px 0;
            text-align: center;
            background-color: #f9f9f9;
            margin-bottom: 80px;
        }
        
        .concept-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .concept-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #d6c8a8;
        }
        
        .concept-text {
            font-size: 16px;
            line-height: 2;
            margin-bottom: 30px;
        }
        
        .concept-highlight {
            font-size: 18px;
            font-weight: bold;
            color: #d6c8a8;
            margin: 30px 0;
            padding: 20px;
            border: 1px solid #d6c8a8;
            display: inline-block;
        }
        
        /* Instagram Feed */
        .instagram-section {
            padding: 80px 50px;
            text-align: center;
        }
        
        .instagram-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .instagram-feed {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 30px;
        }
        
        .instagram-item {
            width: calc(25% - 20px);
            margin: 10px;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .instagram-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }
        
        .instagram-item:hover img {
            transform: scale(1.05);
        }
        
        .instagram-link {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background-color: #d6c8a8;
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .instagram-link:hover {
            background-color: #c4b696;
        }
        
        /* 入会案内 */
        .join-section {
            background-color: #f9f9f9;
            padding: 80px 50px;
            text-align: center;
        }
        
        .join-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .join-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .join-note {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 5px;
        }
        
        .join-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8;
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .join-btn:hover {
            background-color: #c4b696;
        }
        
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f9f9f9;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }
        
        /* CTA */
        .cta {
            text-align: center;
            padding: 80px 50px;
            background-color: #f5f5f5;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .cta p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #c4b696; /* ベージュより少し濃い */
        }
        

        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {

            
            .section, .features, .concept, .instagram-section, .join-section, .cta {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .feature-item {
                width: calc(50% - 15px);
            }
            
            .instagram-item {
                width: calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            .service-dropdown.active {
                display: block;
            }
            
            .service-dropdown a {
                padding: 8px 0 8px 20px;
            }
            
            .page-header {
                margin-top: 78px;
                height: 200px;
            }
            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .features, .concept, .instagram-section, .join-section, .cta {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .overview {
                flex-direction: column;
            }
            
            .overview-content, .overview-image {
                width: 100%;
            }
            
            .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            .feature-item {
                width: 100%;
            }
            
            .instagram-item {
                width: calc(50% - 20px);
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .instagram-item {
                width: 100%;
                margin: 10px 0;
            }
}