        /* ========================================
           リセット＆ベーススタイル
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            line-height: 1.8;
            /* font-family: 'Noto Sans JP', sans-serif;
            
            color: #333;
            background: #f8f9fa; */
        }
        
        body.no-dark, html.no-dark {
            color-scheme: light !important;
            background: #fff;
            /* 必要に応じてライト用の色に上書き */
        }
        body.no-dark * {
        color: inherit;
        }

        /* ========================================
           レイアウト
        ======================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section {
            padding: 60px 0;
            margin: 0;
        }
        
        /* ========================================
           ヒーローセクション
        ======================================== */
        .hero {
            background: linear-gradient(135deg, #b5ffd5 0%, #9ddf26 100%);
            background-image: url('../images/st.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            padding: 80px 0px;
            text-align: center;
            grid-template-columns: none !important;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero .subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            opacity: 0.95;
        }
        
        .hero img{
            max-width: 100%;
            height:auto;
        }
        /* ========================================
           セクション背景色
        ======================================== */
        .section--problems {
            background: linear-gradient(135deg, #f5f7fa 0%, #a7ff3e 100%);
        }
        
        .section--services {
            background-image: url('/service/tsunagale/images/fes.png');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
        
        .section--services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.75);
            z-index: 0;
        }
        
        .section--services .container {
            position: relative;
            z-index: 1;
        }
        
        .section--capabilities {
            background: linear-gradient(135deg, #ffecd2 0%, #ff6b9d 100%);
        }
        
        .section--reasons {
            background: #ffffff;
            background-image: url('/service/_include/img/ww.png');
        }
        
        .section--faq {
            background: #f8f9fa;
        }
        
        .section--contact {
            background: #ffffff;
        }
        
        /* ========================================
           セクションタイトル
        ======================================== */
        .section-title {
            --font-size-h2: clamp(1.8rem, 1.5rem + 1.4vw, 3.3rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 30px;
            color: #444;
            /* -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff; */
            text-shadow:
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff,
                1px 1px 0 #fff;
        }
        /* ========================================
           お悩みカード
        ======================================== */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .problem-card {
            background: white;
            padding: 30px 8px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07);
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: #667eea;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(102,126,234,0.2);
        }
        
        .problem-card i {
            display: block;
            font-size: 2rem;
            margin-bottom: 15px;
            color: #f5576c;
            margin: 0 auto 15px auto;
        }
        
        /* ========================================
           解決バナー
        ======================================== */
        .solution-banner {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 40px 10px;
            border-radius: 20px;
            text-align: center;
            font-size: 2.8rem;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(245,87,108,0.3);
        }
        .solution-image {
            display: block;
            max-width: 360px;
            margin: 30px auto 0px auto;
        }
        /* ========================================
           サービスカード
        ======================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        .service-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
        }
        
        .service-body {
            padding: 25px;
        }
        
        .service-example {
            color: #666;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        
        .service-image{
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }
        /* ========================================
           できることカード
        ======================================== */
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .capability-card {
            background: white;
            padding: 30px;
            border-radius: 0 40px 40px 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: border-radius 0.3s;
        }
        
        .capability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            border-radius: 0 0 100% 0;
        }
        
        .capability-card:hover {
            border-radius: 40px 0 40px 40px;
        }
        
        .capability-card h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
        }
        
        .capability-card p {
            color: #555;
            line-height: 1.8;
            position: relative;
        }
        
        /* ========================================
           選ばれる理由カード
        ======================================== */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
            gap: 25px;
        }
        
        /* 選ばれる理由カード */
        .reason-card {
            background-color: #ff6b9d;
            background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
            background-size: 20px 20px;
            color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(255,107,157,0.3);
            transition: transform 0.3s;
            font-weight: 600;
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .reason-card:hover {
            transform: rotate(-2deg) scale(1.03);
        }

        .reason-card-icon {
            flex-shrink: 0;
            width: clamp(80px, 10vw, 160px);
            height: clamp(80px, 10vw, 160px);
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .reason-card-icon img {
            width: clamp(70px, 10vw, 140px);
            height: clamp(70px, 10vw, 140px);
            object-fit: contain;
        }

        .reason-card-text {
            flex: 1;
            text-align: left;
            font-size:1.7rem;
        }

        /* ========================================
           FAQ
        ======================================== */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 15px;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.8;
        }
        
        /* ========================================
           お問い合わせフォーム
        ======================================== */
        .contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
        }
        
        .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Noto Sans JP', sans-serif;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: white;
            color: #667eea;
            padding: 15px 50px;
            border: none;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-family: 'Noto Sans JP', sans-serif;
        }
        
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(255,255,255,0.3);
        }
        
        /* ========================================
           フッター
        ======================================== */
        .footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 70px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 30px;
        }

        .company-info {
            flex: 1;
        }

        .company-info h1 {
            /* font-size: 28px; */
            /* font-weight: bold; */
            /* margin-bottom: 15px; */
            /* letter-spacing: 1px; */
            margin:0;
        }

        .company-info .address {
            /* font-size: 14px; */
            color: #cccccc;
            margin-bottom: 25px;
        }

        .contact {
            flex-shrink: 0;
        }

        .contact-button {
            background-color: #EFF0E0;
            color: #333333;
            padding: 8px 30px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .contact-button:hover {
            background-color: #f0f0f0;
        }

        .footer-links {
            display: grid;
            /* grid-template-columns: repeat(4, 1fr); */
            grid-template-columns: 40% 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .frequency-info {
            /* font-size: 14px; */
            line-height: 1.8;
            color: #cccccc;
        }

        .link-column ul {
            list-style: none;
        }

        .link-column ul li {
            margin-bottom: 12px;
        }

        .link-column ul li a {
            color: #ffffff;
            text-decoration: none;
            /* font-size: 14px; */
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }

        .link-column ul li a:hover {
            color: #4CAF50;
        }

        .link-column ul li a::before {
            content: '▸';
            margin-right: 4px;
            /* font-size: 12px; */
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            /* border-top: 1px solid #333333; */
        }

        .copyright {
            /* font-size: 12px; */
            color: #888888;
        }

        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .company-info h1 {
                font-size: 24px;
            }
        }

        /* ========================================
           レスポンシブ対応
        ======================================== */
        @media (max-width: 768px) {
            .container {
            padding: 0px;
            }

            .hero h1 {
                font-size: 2rem;
            }
        
            
            .solution-banner {
                font-size: 2rem;
            }
            
            .problems-grid,
            .services-grid,
            .capabilities-grid,
            .reasons-grid {
                grid-template-columns: 1fr;
            }
            
            .section--services {
                background-attachment: scroll;
            }
            /* ========================================
           お問い合わせフォーム
        ======================================== */
        .contact-section {
            padding: 60px 10px;
        }

        }
