@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: #6d071a; /* ボルドー */
            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: #6d071a; /* ボルドー */
            font-size: 30px;
        }
        
        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #6d071a; /* ボルドー */
        }
        
        .feature-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* サービス詳細 */
        .service-details {
            margin-top: 60px;
        }
        
        #selfmedication .service-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        #selfmedication .service-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        #selfmedication .service-item-content {
            width: 50%;
        }
        
        #selfmedication .service-item-content h3 {
            font-size: 24px;
            color: #6d071a; /* ボルドー */
            margin-bottom: 20px;
        }
        
        #selfmedication .service-item-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #666;
        }
        
        #selfmedication .service-item-image {
            width: 45%;
        }
        
        #selfmedication .service-item-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 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: #6d071a; /* ボルドー */
        }
        
        .cta p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #6d071a; /* ボルドー */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #8f0a23; /* ボルドーより少し明るい */
        }
        
        /* 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: #6d071a; /* ボルドー */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }
        
        /* フッター */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-info {
            width: 300px;
        }
        
        .footer-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-nav {
            display: flex;
        }
        
        .footer-nav-group {
            width: 200px;
            margin-right: 30px;
        }
        

        
        .footer-nav-group ul {
            list-style: none;
        }
        
        .footer-nav-group li {
            margin-bottom: 10px;
        }
        
        .footer-nav-group a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-nav-group a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            padding: 20px 0;
            border-top: 1px solid #444;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 30px;
            }
            
            .section, .features, .cta {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .feature-item {
                width: calc(50% - 15px);
            }
            
            #selfmedication .service-item, #selfmedication .service-item:nth-child(even) {
                flex-direction: column;
            }
            
            #selfmedication .service-item-content, #selfmedication .service-item-image {
                width: 100%;
            }
            
            #selfmedication #selfmedication .service-item-image {
                margin-bottom: 30px;
            }
            
            #selfmedication .service-item:nth-child(even) #selfmedication .service-item-image {
                margin-bottom: 30px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 20px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            #selfmedication .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            #selfmedication .service-dropdown.active {
                display: block;
            }
            
            #selfmedication .service-dropdown a {
                padding: 8px 0 8px 20px;
            }
            
            #selfmedication .page-header {
                margin-top: 120px;
                height: 200px;
            }
            
            #selfmedication .page-header-content h1 {
                font-size: 28px;
            }
            
            #selfmedication .section, .features, .cta {
                padding: 50px 20px;
            }
            
            #selfmedication .breadcrumb-container {
                padding: 0 20px;
            }
            
            #selfmedication .overview {
                flex-direction: column;
            }
            
            #selfmedication .overview-content, #selfmedication .overview-image {
                width: 100%;
            }
            
            #selfmedication .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            #selfmedication .feature-item {
                width: 100%;
            }
            
            #selfmedication .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }

        .service-item {
            width: auto;
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            transition: auto;
        }
        
        .service-item:hover {
            transform: none;
            box-shadow: none;
        }