@font-face {
  font-family: 'Cerebri Sans';
  src: url("../../fonts/cerebri-sans.woff2") format("woff2"), url("../../fonts/cerebri-sans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brownhill_Script';
  src: url(../../fonts/Brownhill_Script.ttf);
  font-display: swap;
}
:root {
  --color-primary: #4762ff;
  --color-secondary: #ff6363;
  --color-tertiary: #ac1de1;
  --color-gradient-start: #4762ff;
  --color-gradient-stop: #ff798e;
  --color-gradient-start-secondary: #0bccee;
  --color-gradient-stop-secondary: #ac1de1;
  --color-gradient-start-tertiary: #ffba83;
  --color-gradient-stop-tertiary: #ffa5cd;

         --gray-800: #1a202c;
            --gray-700: #2d3748;
            --gray-600: #4a5568;
            --gray-500: #718096;
            --gray-400: #a0aec0;
            --gray-300: #cbd5e0;
            --gray-200: #e2e8f0;
            --gray-100: #f7fafc;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
}


    /* 強調テキスト */
        .highlight {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
            color: #2d3748;
        }

        /* ツール名の強調 */
        .tool-name {
            background: linear-gradient(135deg, #00d4aa, #00b894);
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.95em;
            display: inline-block;
            margin: 0 4px 0 0;
        }

 /* ツール紹介ボックス */
        .tool-box {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 30px;
            margin: 25px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .tool-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: #4762ff;
        }

        /* 成果数値ハイライト */
        .performance-highlight {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9em;
            display: inline-block;
            margin: 0 3px;
            box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
        }

        /* 価格表示 */
        .price-display {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 0.9em;
            display: inline-block;
            margin: 0 2px;
        }

        /* ROI表示 */
        .roi-display {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 0.9em;
            display: inline-block;
            margin: 0 2px;
        }

        /* 強調ボックス */
        .emphasis-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 1px solid #f59e0b;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #f59e0b;
        }

        /* 年版表示 */
        .year-badge {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85em;
            display: inline-block;
            margin-left: 10px;
        }

        /* 最終メッセージ */
        .conclusion-message {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            border: 1px solid #6366f1;
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            font-weight: 500;
        }

  .pillar-section {
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 1rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .pillar-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
            border-radius: 20px 20px 0 0;
        }

        .pillar-section h3 {
            color: var(--color-primary);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pillar-section h3::before {
            font-size: 1.2em;
        }

        .security h3::before { content: '🔐'; }
        .integration h3::before { content: '🔗'; }
        .training h3::before { content: '🎓'; }
        .humanization h3::before { content: '🤝'; }

        .pillar-section p {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

.checklist-section {
            background: #f9fbff;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .checklist-section p {
            color: var(--gray-600);
            margin-bottom: 1rem;
        }

        .checklist-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .checklist-item {
            background: #fff;
            border: 1px solid var(--color-gradient-start);
            border-radius: 12px;
            padding: 1.5rem;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .checklist-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .checklist-item::before {
            content: '✓';
            position: absolute;
            top: -8px;
            left: 15px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: var(--shadow-sm);
        }

         .important-note {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .important-note::before {
            content: '⚠️';
            position: absolute;
            top: -10px;
            left: 20px;
            background: var(--white);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 1.2rem;
            box-shadow: var(--shadow-sm);
        }

        .important-note p {
            color: var(--gray-600);
            margin-bottom: 0;
        }

        .balance-demo {
            background: var(--gray-100);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .balance-demo p {
            color: var(--gray-600);
            margin-bottom: 1rem;
        }

        .balance-examples {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .balance-example {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .balance-example::before {
            content: '▸';
            color: var(--color-primary);
            font-weight: 700;
            margin-right: 10px;
        }

        .balance-example p {
            color: var(--gray-600);
            margin: 0;
            font-size: 0.95rem;
        }

        .conclusion-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            box-shadow: var(--shadow-md);
        }

        .conclusion-section h2 {
            color: #7c3aed;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .conclusion-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-600);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .success-factors {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .success-factor {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .success-factor:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .success-factor::before {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 1rem;
        }


             .challenges-list {
            background: var(--gray-100);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .challenges-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .challenges-list li {
            position: relative;
            padding: 15px 0 15px 50px;
            margin-bottom: 10px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .challenges-list li:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .challenges-list li::before {
            content: '⚡';
            position: absolute;
            left: 15px;
            top: 15px;
            background: linear-gradient(135deg, var(--color-danger), #f97316);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: var(--shadow-sm);
        }



.results-section {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2rem;
            position: relative;
        }

        .results-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #22c55e, #10b981);
        }

        .results-section h4 {
            color: #059669;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .results-section h4::before {
            content: '📊';
            font-size: 1.1em;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .metric-card {
            background: #fff;
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .metric-value {
            font-size: 2rem;
            font-weight: 700;
            color: #059669;
            margin-bottom: 0.5rem;
            display: block;
        }

        .metric-label {
            font-size: 1.1rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        .highlight {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 1px solid #f59e0b;
            border-radius: 8px;
            padding: 0.3rem 0.8rem;
            font-weight: 600;
            color: #92400e;
            display: inline-block;
            margin: 0 0.2rem;
        }

        .roi-highlight {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            border: 1px solid #ef4444;
            border-radius: 8px;
            padding: 0.3rem 0.8rem;
            font-weight: 700;
            color: #dc2626;
            display: inline-block;
            margin: 0 0.2rem;
            font-size: 1.1em;
        }

        .conclusion-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .conclusion-section h2 {
            color: #7c3aed;
            text-align: center;
            margin-bottom: 2rem;
        }

        .conclusion-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-600);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .key-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            color: var(--gray-700);
            font-weight: 600;
        }

        .benefit-card::before {
            content: '✨';
            font-size: 1.5rem;
            display: block;
            margin-bottom: 0.5rem;
        }

   .process-steps {
            display: grid;
            gap: 25px;
            margin: 40px 0;
        }
        
        .process-step {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .process-step::before {
            content: counter(step-counter);
            counter-increment: step-counter;
            position: absolute;
            top: -15px;
            left: 30px;
            background: linear-gradient(135deg, #4762ff, #8b5cf6);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 5px 15px rgba(71, 98, 255, 0.3);
        }
        
        .process-steps {
            counter-reset: step-counter;
        }

        .bold-text {
            font-weight: 700;
            color: #1a202c;
        }

        .case-study {
    background: var(--white);
    border: 1px solid var(--gray-200)
#e2e8f0
;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

        
        .feature-list {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-left: 5px solid #4762ff;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
          /* 特別セクション（導入事例等） */
        .special-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin: 48px 0;
            position: relative;
            overflow: hidden;
        }

     .special-section ul li {
    position: relative;
    padding: 24px 0 24px 60px;
    margin-bottom: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

       .special-section ul li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 24px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.special-section .number {
       background: linear-gradient(135deg, #ff6b6b, #ff8a80);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9em;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

        .special-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, rgb(64, 120, 242), color: rgb(56, 58, 66));
        }

        .special-section h4 {
            color: var(--gray-800);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .special-section h4::before {
            content: '🏆';
            font-size: 1.2em;
        }

        .special-section p {
            color: var(--gray-600);
            line-height: 1.8;
        }

        .special-section ul li {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(102, 126, 234, 0.15);
        }



 /* リンクカードのテーブル版 */
       .link-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 5px;
            margin: 30px 0;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
         .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: #4762ff;
        }
        .link-card-table {
            width: 100%;
            border-collapse: collapse;
        }
        .link-card-image-cell {
            width: 150px;
            padding: 10px;
            vertical-align: top;
        }
        .link-card-image {
            width: 100%;
            max-width: 150px;
            height: auto;
            border-radius: 4px;
        }
        .link-card-content-cell {
            padding: 10px 15px;
            vertical-align: top;
        }
        .link-card-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .link-card-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .link-card-domain {
            font-size: 12px;
            color: #999;
        }

        .highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(45deg);
        }
        
        .point-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #0ea5e9;
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            position: relative;
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
        }
        
        .point-box::before {
            content: "POINT";
            position: absolute;
            top: -25px;
            left: 25px;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            border-radius: 20px;
            padding: 30px 30px 30px 70px;
            margin: 30px 0;
            position: relative;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
        }
        
        .warning-box::before {
            content: "!";
            position: absolute;
            top: 25px;
            left: 25px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            font-weight: 900;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }


        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid #e5e7eb;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 900;
            color: #4762ff;
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            color: #64748b;
            margin-top: 5px;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #4762ff, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #4762ff15, #8b5cf615);
            animation: float 20s infinite ease-in-out;
        }
        
        .floating-elements::before {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 10%;
            animation-delay: -5s;
        }
        
        .floating-elements::after {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: 15%;
            animation-delay: -15s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(20px) rotate(240deg); }
        }

   .highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
       
        
        .point-box ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .point-box li {
            margin: 10px 0;
            color: #27ae60;
            font-weight: 600;
        }
        

        
        .bold-box {
            background: #f1f8ff;
            border-left: 4px solid #0366d6;
            padding: 20px;
            margin: 20px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: #3498db;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .comparison-table tr:hover {
            background: #f8f9fa;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        
        .price {
            color: #e74c3c;
            font-weight: bold;
        }

              .marker-yellow {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .marker-pink {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
                position: relative;
    overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .feature-card h4 {
            color: #3498db;
            margin-top: 0;
            background: none;
            padding: 0;
            border-bottom: 2px solid #3498db;
        }
        .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #6b7aff;
}

   /* Q&A Section */
        .qa-section {
            margin: var(--spacing-3xl) 0;
        }

        .qa-item {
            margin: var(--spacing-xl) 0;
            padding: var(--spacing-xl);
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: var(--border-radius-lg);
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .qa-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }

        .qa-question {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: var(--spacing-md);
            font-size: 18px;
            line-height: 1.5;
        }

        .qa-answer {
            color: var(--text-secondary);
        }

        .qa-answer p {
            margin-bottom: var(--spacing-md);
        }

        .cta-section {
           background: linear-gradient(135deg, #c28fff 0%, #53b8f2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff662a;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            margin: 20px 10px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: #219a52;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        
        .step-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 40px 0;
        }
        
        .step-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 25px;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 25px;
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .step-title {
            margin-left: 20px;
            color: #2c3e50;
            font-size: 1.3em;
            font-weight: 600;
        }
        
        .faq-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .faq-item {
            margin: 25px 0;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.6;
        }
        
        .breadcrumb {
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 5px;
            margin-bottom: 30px;
            font-size: 0.9em;
        }
        
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .article-meta {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 30px;
            font-size: 0.9em;
            color: #666;
        }


        .ai-type-showcase {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 40px 0;
        }
        
        .ai-agent-panel {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .ai-agent-panel:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .panel-header {
               background: linear-gradient(135deg, #f1fff7 0%, #cdfdff 100%);
            color: white;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .agent-icon {
            font-size: 2.5em;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 10px;
            backdrop-filter: blur(10px);
        }
        
        .panel-header h3 {
            margin: 0;
            font-size: 1.4em;
            font-weight: 600;
            border: none;
            padding: 0;
        }
        
        .panel-content {
            padding: 30px;
        }
        
        .feature-highlight-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
        }
        
        .feature-highlight-box h4 {
            color: #0369a1;
            margin: 0 0 20px 0;
            font-size: 1.2em;
            text-align: center;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .feature-item {
            background: white;
            border: 1px solid #bae6fd;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
        }
        
        .feature-icon {
            font-size: 1.5em;
            flex-shrink: 0;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            border-radius: 8px;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }
        
        .feature-item p {
            margin: 0;
            line-height: 1.5;
        }
        
        .summary-note {
            background: white;
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid #0ea5e9;
        }
        
        .summary-note p {
            margin: 0;
            font-style: italic;
            color: #334155;
        }
        
        .capabilities-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 25px 0;
        }
        
        .capability-item {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .capability-badge {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.85em;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .capability-item p {
            margin: 0;
            color: #475569;
        }
        
        .response-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .response-type {
            background: #fef3c7;
            border: 2px solid #f59e0b;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        
        .response-type h4 {
            color: #92400e;
            margin: 0 0 10px 0;
            font-size: 1.1em;
        }
        
        .response-type p {
            margin: 0;
            color: #78350f;
            font-size: 0.9em;
        }
        
        .follow-up-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .follow-feature {
            background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
            border: 1px solid #d8b4fe;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .follow-feature:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(147, 51, 234, 0.15);
        }
        
        .follow-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .follow-feature h4 {
            color: #7c3aed;
            margin: 0 0 8px 0;
            font-size: 1em;
        }
        
        .follow-feature p {
            margin: 0;
            color: #6b21a8;
            font-size: 0.9em;
        }
        
        .training-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border: 2px solid #10b981;
            border-radius: 10px;
            padding: 25px;
        }
        
        .benefit-card h4 {
            color: #047857;
            margin: 0 0 12px 0;
            font-size: 1.1em;
            text-align: center;
        }
        
        .benefit-card p {
            margin: 0;
            color: #065f46;
            line-height: 1.5;
        }


        @media (max-width: 768px) {

             .case-study, .intro-section {
                padding: 1rem;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .metric-value {
                font-size: 1.5rem;
            }
            .link-card {
                    padding: 0px;
            }

        }
        
.btn-ani{
  position: absolute;

  margin: 0;
}

.header-module .btn-ani {
  display: block;

  text-decoration: none;

  text-align: center;
  cursor: pointer;

  animation: btn_animation 2s infinite;
}

@keyframes btn_animation {
    0% {
        transform: translate(4px, 0px);
    }
    5% {
        transform: translate(-4px, 0px);
    }
    10% {
        transform: translate(4px, 0px);
    }
    15% {
        transform: translate(-4px, 0px);
    }
    20% {
        transform: translate(4px, 0px);
    }
  }

.badge-wrapper {
  position: relative;
  display: inline-block;
}

.red-dot {
  position: absolute;
      top: 22px;
    right: 12px;
    width: 12px;
    height: 12px;
    background-color: #ff005a;
  border-radius: 50%;
  content: '';
}

  .btn-sol {
    background: #fd7250 !important;
    color: #fff !important;
    border: none !important;
}

.stick-ban{
   position: sticky;
  bottom: 0;
  margin-left: 30px;
  width: 100%;
   animation: fuwafuwa 2s infinite;
}
.stick-ban img{
  width: 270px;
  height: auto;
}

 .markerYellow{
      background: linear-gradient(transparent 60%, #ffffbc 60%);
      color: #000;
      font-weight: 700;
     }

  @media screen and (max-width: 800px) {

     .point-box,
            .warning-box,
            .highlight-box {
                padding: 20px;
                margin: 20px 0;
            }
            
            .warning-box {
                padding-left: 55px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
    iframe {
       display: none;
    }

     .ai-agent-panel {
                margin: 0 -10px;
            }
            
            .panel-header {
                padding: 20px;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .agent-icon {
                font-size: 2em;
            }
            
            .panel-content {
                padding: 20px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .response-types,
            .follow-up-features,
            .training-benefits {
                grid-template-columns: 1fr;
            }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}


  .exclamationBox {
    background-color: #F6E1DF;
}
 .exclamationBox {
    position: relative;
    margin-top: 20px;
    padding: 20px 20px 20px 70px;
}
.exclamationBox::before {
    content: "!";
    background: #c53929;
}

.exclamationBox::before {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}
    .aligncenter {

      margin: 0 auto 30px;
    display: block;
    padding-top: 30px;
    }
    .asterisk {
      font-size: 11px;
      display: block;
    }
    .content .pointBox {
    position: relative;
    border: 2px solid #c53929;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
} 
 .content .pointBox::before {
    content: "POINT";
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #ffffff;
    color: #c53929;
    padding: 0 10px;
}
      .wp-block-quote {
      font-style: normal;
    background: #fffaf4;
    padding: 10px;
    font-weight: 600;
    text-align: left !important;
}
     .markerPink{
      background: linear-gradient(transparent 60%, #FFDFEF 60%);
      color: #000;
      font-weight: 700;
     }
     .markerYellow{
      background: linear-gradient(transparent 60%, #ffffbc 60%);
      color: #000;
      font-weight: 700;
     }
      .boldBox{
  border:3px solid #191919;
  padding:20px;
  margin-top:20px;
  font-weight:700;
}
    mark {
    background-color: #fde9b1;
    font-weight: 700;
}
.color-b {
  color: #0d2abe;
}
    .navbar-brand-inner h1 {
    font-size: 26px;
    font-family: 'europa', sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-align: left;
    margin-bottom: 0px;
}
  .split-txt {
        line-height: 1.3;
  }
  .navbar-brand-inner h1 {
    font-size: 24px;
}
@media (min-width: 1200px){
.main-header .is-stuck {
    background: #fff !important;
}
.mainbar-wrap.is-stuck .social-icon a, .mainbar-wrap.is-stuck .header-module .ld-module-trigger, .mainbar-wrap.is-stuck .main-nav > li > a, .mainbar-wrap.is-stuck .ld-module-search-visible-form .ld-search-form input {
    color: rgba(0, 0, 0, 0.7) !important;
}
}
@media screen and (min-width: 769px) {


      .pc-none {
        display: none;

      }

      #fe .main-nav > li > a {
        color: #fff;
      }
      #fe .navbar-brand-inner h1{
        color: #fff;
      } 
      .is-stuck h1{
        color: #000 !important;
      } 
    }
    .blog-single-content blockquote h3{
            font-family: Brownhill_Script !important;
          font-size: 45px;
          color: #0a286a;
          font-weight: 300 !important;
          line-height: 0 !important;
      }
      mark {
        background-color: #fde9b1;
      }
      .blog-single-content figure {
        margin-top: 0em;
      }
      .post-author img{
        max-width: 150px;
        border-radius: 0em !important;
      }

.toc-002 {
    margin-bottom: 30px;
    border: 2px solid #2589d0;
    border-radius: 3px;
}

.toc-002 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.toc-002 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3.8%2017.2h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.8-.8-.8zm0-15h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8V3c-.1-.4-.4-.8-.8-.8zm0%207.6h-3c-.5%200-.8.3-.8.7v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.7-.8-.7zM23.2%2018h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8zm0-15h-15c-.4%200-.7.3-.7.8v1.5c0%20.4.3.7.7.7h15c.5%200%20.8-.3.8-.8V3.8c0-.5-.3-.8-.8-.8zm0%207.5h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
}

.toc-002 ol {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc-002 > ol {
    padding: 1em 1em 1em 3em;
}

.toc-002 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-002 li {
    padding: 5px 0;
    font-weight: 600;
}

.toc-002 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-002 a {
    color: #333;
    text-decoration: none;
}
.contents-toc {
    position: relative;
    margin: 2em 0;
    padding: 20px 10px 7px;
    border: solid 2px #357dd4;
}
.contents-toc .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #357dd4;
    color: #FFFFFF;
    font-weight: bold;
    width: 100%;
}
.contents-toc ol li a {
      color: #000;
    font-weight: 800;
    pointer-events:auto;
}

.contents-toc li ol li a{
      color: inherit;
    font-weight: 100;
    pointer-events:auto;
}
.case-metrics {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.case-metric-item {
    display: flex
;
    justify-content: space-between;
    margin-bottom: 8px;
}
.case-metric-label {
    font-size: 13px;
    color: #666;
}
.case-metric-value {
    font-size: 13px;
    font-weight: 600;
    color: #104fdc;
}

     /* Company List */
        .company-list {
            list-style: none;
            padding: 0;
            margin: var(--spacing-xl) 0;
        }

        .company-list li {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: var(--spacing-xl);
            margin: var(--spacing-lg) 0;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
        }

        .company-list li:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .company-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: var(--spacing-md);
            display: flex;
            align-items: center;
        }

        .company-name::before {
            content: '★';
            color: var(--accent-color);
            margin-right: var(--spacing-sm);
            font-size: 18px;
        }

            /* Q&A Section */
        .qa-section {
            margin: var(--spacing-3xl) 0;
        }

        .qa-item {
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 16px;
            border-left: 4px solid #4762ff;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .qa-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }

        .qa-question {
            font-weight: 700;
            color: #4762ff;
            margin-bottom: var(--spacing-md);
            font-size: 18px;
            line-height: 1.5;
        }

        .qa-answer {
            color: var(--text-secondary);
        }

        .qa-answer p {
            margin-bottom: var(--spacing-md);
        }

 @media (max-width: 768px) {


            .comparison-table {
                font-size: 14px;
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }

            .comparison-table th,
            .comparison-table td {
                padding: var(--spacing-sm);
                min-width: 120px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: var(--spacing-xl);
            }

            .hero-section {
                padding: var(--spacing-xl) 0;
            }

            .company-list li {
                padding: var(--spacing-lg);
            }

            .qa-item {
                padding: var(--spacing-lg);
            }
        }


body {
  font-family: 游ゴシック体,YuGothic,"游ゴシック Medium","Yu Gothic",sans-serif;
  font-size: 16px;
  line-height: 1.9em;
  color: #828282;
}


h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6 .h6 {
 font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #060221;
  font-weight: 800 !important;
}

.h1,
h1 {
    font-family: 'neuzeit-grotesk', 'sans-serif';
  font-size: 50px;
  line-height: 1.4em;

}

.h2,
h2 {
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0;
}

.h3,
h3 {
  font-size: 32px;
  line-height: 1.5em;
}

.h4,
h4 {
  font-size: 26px;
  line-height: 1.6em;
}

.h5,
h5 {
  font-size: 20px;
  line-height: 1.6em;
}

.h6,
h6 {
  font-size: 18px;
  line-height: 1.8;
}

.font-family-roboto {
  font-family: 'Roboto', sans-serif;
}

.font-family-amiri {
  font-family: 'Amiri', sans-serif;
}

.main-header .social-icon {
  font-size: 17px;
}

.main-header .social-icon:not([class*=scheme-]) a,
.main-nav > li > a {
  color: rgba(255, 255, 255, 0.7);
}

.main-header .social-icon:not([class*=scheme-]) a:hover,
.main-nav > li > a:hover {
  color: #fff;
}

.main-nav > li > a {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav > li.is-active > a,
.main-nav > li.current-menu-item > a,
.main-nav > li:hover > a,
.main-nav > li > a:hover {
  color: #fff;
}

.nav-light .main-nav > li > a {
  color: rgba(255, 255, 255, 0.75);
}

.nav-light .main-nav > li > a .link-ext {
  background-color: #fff;
}

.nav-dark .main-nav > li > a {
  color: rgba(0, 0, 0, 0.75);
}

.nav-dark .main-nav > li.is-active > a,
.nav-dark .main-nav > li.current-menu-item > a,
.nav-dark .main-nav > li:hover > a,
.nav-dark .main-nav > li > a:hover {
  color: #000;
}

.main-footer {
  color: #98a2aa;
}

.main-footer a:not(.btn) {
  color: #98a2aa;
}

.main-footer a:not(.btn):hover {
  color: #fff;
}

@media (min-width: 1200px) {
  .main-header .is-stuck {
    background: #fff !important;
  }
  .mainbar-wrap.is-stuck .social-icon a,
  .mainbar-wrap.is-stuck .header-module .ld-module-trigger,
  .mainbar-wrap.is-stuck .main-nav > li > a,
  .mainbar-wrap.is-stuck .ld-module-search-visible-form .ld-search-form input {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .mainbar-wrap.is-stuck .social-icon a:hover,
  .mainbar-wrap.is-stuck .main-nav > li > a:hover {
    color: #000 !important;
  }
  .megamenu-heading {
    color: #3b91f7;
  }
  [data-megamenu-bg-scheme=light] .lqd-custom-menu a {
    color: #3e3f42;
  }
  .megamenu .lqd-custom-menu a:hover {
    color: #3b91f7;
  }
}


.navbar-brand-inner h1{
  font-size: 26px;
 font-family: 'europa', sans-serif;                           
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: left;
   margin-bottom: 0px;
}

.mobile-nav-activated [data-mobile-nav-style=modern]:before{

    background-image: -webkit-gradient(linear, right bottom, left top, from(#202546), to(#2436af));
    background-image: linear-gradient(to top left, #240e5a 0%, #244582 100%);
}

.navbar-brand-inner {
  width: 200px;
}
.mainbar{
  z-index: 20 !important;
}


.mainbar .navbar-header, .mainbar .main-nav-trigger{
  z-index: 20 !important;
}

.main-nav > li > a {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #000;
   font-family: 'europa', sans-serif;
}

.main-nav > li.is-active > a,
.main-nav > li.current-menu-item > a,
.main-nav > li:hover > a,
.main-nav > li > a:hover {
  color: var(--color-primary);
}

.main-header .header-module p {
  font-size: 16px;
  letter-spacing: 0.025em;
  color: #000;
}

.main-header .header-module .btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.header-module .btn {
display: -webkit-inline-box;
    display: inline-flex;
    padding: 0;
    position: relative;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    font-size: 1em;
    white-space: nowrap;
    color: var(--color-primary);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 50px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05);
  }
  .header-module .btn:hover {
    color: #fff;
  }
/*////////////////////////////////////////
LD-LPstyle
//////////////
*/
      /* 離脱防止
      ポップアップ */
.popup-area {
    display:none;
    width:80vw;
    background:#fff;
    padding:20px;
    position: fixed;
    z-index: 9999;   
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    border-radius:8px;
    box-shadow: 0 0 4px 4px rgba(0,0,0,0.4);
}
    @media screen and (max-width: 412px) {
  .popup-area {
    top:30%;
  }
  .customize-chat {
    height: 85vh !important;
}
 
    @media screen and (max-width: 800px) {
    iframe {
       display: none;
    }
}

}
@media screen and (min-width: 980px) {
        .popup-area {
        width:auto;
        max-width: 460px;
    }
}
.popup-area button {
    margin:23px auto 0;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0px 15px;
    font-weight: 600;
}
.popup-area .icon{
    font-size:3em;
    color:red;
}
/* 背景色 */
.cover-eml {
    background:rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;   
    top:0;
    right:0;
    bottom:0;
    left:0;
}




.ribbon20 {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  box-sizing: border-box;
  padding: 0 12px;
  margin: 0;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: white;
  background: #f7426c;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}
.ribbon20:before {
  position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: 38px;
  width: 7px;
  background: #f7426c;
  border-radius: 5px 0 0 5px;
}
.ribbon20:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #b62446;
  border-radius: 5px 0 0 5px;
}



.main-nav > li > a {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #000;
}
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.vc_row.vc_row-o-equal-height.vc_row-o-content-middle .ld-row>.vc_column_container>.vc_column-inner>.wpb_wrapper {
    justify-content: center;
}
.vc_row.vc_row-o-equal-height .ld-row>.vc_column_container>.vc_column-inner>.wpb_wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.vc_custom_1540289976669 {
    margin-bottom: 65px !important;
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.vc_column-inner::after {
    clear: both;
}
.vc_column-inner::after, .vc_column-inner::before {
    content: " ";
    display: table;
}
.vc_column-inner::after, .vc_column-inner::before {
    content: " ";
    display: table;
}

.lqd-particles-bg-wrap, .ld-particles-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.h1-text{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
}
.bg-gradient-tertiary-lr {
  background: -webkit-gradient(linear, left top, right top, from(#17319E), to(#0c9bff )) !important;
    background: linear-gradient(to right, #17319e 0%, #0c9bff 100%) !important;
}
 .btn-gradient-bg-hover {
  z-index: 1;
    opacity: 0;
    background: -webkit-gradient(linear, left top, right top, from(var(--color-gradient-stop)), to(#ff4747));
    background: linear-gradient(to right, #ecafaf 0%, #f56f7c 100%);
    background-size: 99.99%;
}

#features .liquid-counter-huge .liquid-text-top {
  position: absolute;
  z-index: 3;
  top: 4em;
  left: 10%;
  font-size: 20px;
  width: 100%;
    text-align: left;

}
.bg-primary:hover{
  z-index: 1;

    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 rgba(0, 0, 0, 0.05);
}

.features-img {
  max-width: 280px;
  margin: 0 auto;
}

#features .liquid-counter-huge .liquid-text-bottom {
      left: 10%;
}

#features .liquid-counter-animator {
  margin-top: 25px;
}
.text-align-center {
  text-align: center;
}
#features  h3{
  margin-top: 30px;
}
.carousel-nav-solid .flickity-prev-next-button:before{
background: #4762ff !important;
}

.flickity-button .flickity-prev-next-button:hover{ 
  background: #4762ff !important;
}
.btn-gradient-bg-hover {
  background: #2f42b5 !important;
}
.contents p{
  line-height: 1.5;
}
.lqd-particles-bg-wrap {
  transform: none;
}
.liquid-blog-item-inner {
  padding: 20px;
}
.contact-form input {
  color: #1a1b23;
}
input::placeholder {
  color: #c1c1c1 !important;

}
.contact-form textarea {
  border: #ededed solid;
    border-radius: 4px;
    color: #777777;
}

@media screen and (max-width: 767px){
.vc_row.vc_row-flex>.ld-container {
    flex-grow: 1;
}
.sp-mt-100 {
  margin-top: 0px;
}
.top-split-txt {
  line-height: 1.5;
}
.filter-list li {
    margin-bottom: 0px !important;
    text-align: center;
}
.carousel-nav-vertical .carousel-nav{
  margin-top: 0px !important;
  margin-bottom: 2em;
}
.top-sp-m {
  margin-top: -40px;
}
}
@media screen and (max-width: 479px){
.ld-container {
    max-width: 100%;
}
.content h1, .content .h1{
      font-size: 32px;
}
#experience .flickity-viewport {
  height: 240px !important;
}

}
@media screen and (max-width: 1199px){
ul.nav.main-nav > li {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}
}
@media (min-width: 992px){
.lqd-parallax-images-2 .liquid-img-group-container:first-child {
    margin-top: -10px;
    margin-right: -40%;
    margin-left: 23%;
    margin-bottom: 106px;

}
.ld-contact {
  display: none;
}
.mt--100 {
  margin-top: -100px;
}
}

@media (min-width: 992px){
.lqd-parallax-images-2 .liquid-img-group-container:nth-child(2) {
    bottom: -140px;
    left: 19%;
}
}

@media screen and (max-width: 1199px){
[data-mobile-nav-style=modern]:before {

    background-image: -webkit-gradient(linear, right bottom, left top, from(#202546), to(#2436af));
    background-image: linear-gradient(to top left, #240e5a 0%, #244582 100%) !important;
}
}

.top-client {
    position: absolute;
    bottom: 25px;
    z-index: 1;
    width: 100%;
}
.pricing-table-header {
      margin-top: 30px;
}
.pricing-table-minimal .pricing{
  font-family: 'Noto Sans JP', sans-serif;
}

.content {
    min-height: 100%;
    height: 100%;
    background: #ffffff00;
    position: relative;
    z-index: 0;
}
.btn-gradient-bg {
    background: -webkit-gradient(linear, left top, right top, from(#003de9), to(#63bbf9));
    background: linear-gradient(to right,#003de9 0%, #63bbf9 100%);
}

@media (min-width: 992px){
.kv-55 {
    max-width: 490px;
}
}


/*--------------------
Chat
--------------------*/

.chat-btns .btns {
    font-size: 15px !important;
    line-height: 2;
    height: 33px;
    margin-bottom: 10px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
}
.chat {
  position:fixed;
right:-140px;
bottom: -160px;
  transform: translate(-50%, -50%);
  width: 282px;
  height: 80vh;
  max-height: 364px;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  background: rgb(255 252 252 / 50%);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .chat {
    right: -119px;
    width: 245px;
    height: 80vh;
    max-height: 335px;
    bottom: -115px;
  }
  .mtg-btn {
    display: none;
}
}


/*--------------------
Chat Title
--------------------*/
.chat-title {
  flex: 0 1 45px;
  position: relative;
  z-index: 2;
  background: rgb(255 255 255 / 60%);
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 10px 10px 50px;
}
.chat-title h1, .chat-title h2 {
  font-weight: normal;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.chat-title h2 {
  color: rgb(0 0 0);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: none;
}
.chat-title .avatar {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 9px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
}
.chat-title .avatar img {
  width: 100%;
  height: auto;
}

/*--------------------
Messages
--------------------*/
.messages {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.messages .messages-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 101%;
  width: 100%;
}
.messages .message {
  clear: both;
  float: left;
  padding: 6px 10px 7px;
  border-radius: 10px 10px 10px 0;
background: rgb(255 255 255);

  margin: 8px 0;
  font-size: 11px;
  line-height: 1.4;
  margin-left: 35px;
  position: relative;
  color: #181b31;
  font-weight: 700;
}
.messages .message .timestamp {
  position: absolute;
  bottom: -15px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}
.messages .message::before {
  content: "";
  position: absolute;
  bottom: -6px;
  border-top: 6px solid rgba(0, 0, 0, 0.3);
  left: 0;
  border-right: 7px solid transparent;
}
.messages .message .avatar {
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: -35px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
}
.messages .message .avatar img {
  width: 100%;
  height: auto;
}
.messages .message.message-personal {
  float: right;
  color: #fff;
  text-align: right;
  background: linear-gradient(120deg, #248A52, #257287);
  border-radius: 10px 10px 0 10px;
}
.messages .message.message-personal::before {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 5px solid transparent;
  border-top: 4px solid #257287;
  bottom: -4px;
}
.messages .message:last-child {
  margin-bottom: 30px;
}
.messages .message.new {
  transform: scale(0);
  transform-origin: 0 0;
  -webkit-animation: bounce 500ms linear both;
          animation: bounce 500ms linear both;
}
.messages .message.loading::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  border: none;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.messages .message.loading span {
  display: block;
  font-size: 0;
  width: 20px;
  height: 10px;
  position: relative;
}
.messages .message.loading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: -7px;
}
.messages .message.loading span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
          animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: 7px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

/*--------------------
Message Box
--------------------*/
.message-box {
  flex: 0 1 53px;
  width: 100%;
 background: rgb(255 255 255 / 60%);
  padding: 10px;
  position: relative;
     
}
.message-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  height: 17px;
  margin: 0;
  padding-right: 20px;
  width: 265px;
}
.message-box textarea:focus:-webkit-placeholder {
  color: transparent;
}
.message-box .message-submit {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 10px;
  color: #fff;
  border: none;
  background: #248A52;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  outline: none !important;
  transition: background 0.2s ease;
}
.message-box .message-submit:hover {
  background: #1D7745;
}

.mtg-bg {
  position: relative;
  margin-top: 5px;
}
.mtg-btn {
  border-radius: 15px;
    position: absolute;
    top: 100px;
    z-index: 5;
    width: 100px;
    height: 18px;
    color: #fff;
    padding: 3px;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    left: 70px;
}
.message-submit a{
  color: #fff;
}
/*--------------------
Custom Srollbar
--------------------*/

.btn-now-bg {
    background: rgb(255 255 255 / 0%);
    border: 1px solid #4762ff !important;
    color: #4762ff !important;
    width: 100%;
}

.scroll {
  overflow-y:scroll;
  height: 80vh;
}
.mCSB_scrollTools {
  margin: 1px -3px 1px 0;
  opacity: 0;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0px;
  padding: 0 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/*--------------------
Bounce
--------------------*/
@-webkit-keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-webkit-keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-10px);
  }
}


body, html {

  height: 100%;
  z-index: 444;

}
.content .buttons {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.content .buttons .button {
  display: inline-block;
  text-align: center;
  font-size: 15px;
    height: 33px;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
      color: #fff;
    font-weight: 800;
    border-radius: 50px;
}
.content .buttons .button:hover {
  color: white;
  opacity: 0.8;
}

/*
----------------------オンラインアニメーション------------------------------*/



.btn--shockwave.is-active {
  -webkit-animation: shockwaveJump 1s ease-out infinite;
          animation: shockwaveJump 1s ease-out infinite;
}
.btn--shockwave.is-active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  -webkit-animation: shockwave 1s 0.65s ease-out infinite;
          animation: shockwave 1s 0.65s ease-out infinite;
}
.btn--shockwave.is-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  -webkit-animation: shockwave 1s 0.5s ease-out infinite;
          animation: shockwave 1s 0.5s ease-out infinite;
}

.btn--shockwave {

  width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #0fed3f !important;
    border: none;
}

@-webkit-keyframes shockwaveJump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(0.98);
  }
  55% {
    transform: scale(1.02);
  }
  60% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shockwaveJump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(0.98);
  }
  55% {
    transform: scale(1.02);
  }
  60% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes shockwave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15);
  }
  95% {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0), inset 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(2.25);
  }
}
@keyframes shockwave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15);
  }
  95% {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0), inset 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(2.25);
  }
}
.btn--jump.is-active {
  -webkit-animation: 0.4s jump ease infinite alternate;
          animation: 0.4s jump ease infinite alternate;
}

@-webkit-keyframes jump {
  0% {
    transform: scale(1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}

@keyframes jump {
  0% {
    transform: scale(1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}
.btn--pulse.is-active {
  background: transparent;
}
.btn--pulse.is-active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: pulse 0.4s ease infinite alternate;
          animation: pulse 0.4s ease infinite alternate;
  z-index: -1;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 45%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 45%;
  }
}
.btn--blink.is-active {
  background: transparent;
}
.btn--blink.is-active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: blink 1.33s ease-out infinite;
          animation: blink 1.33s ease-out infinite;
  z-index: -1;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.btn--wiggle.is-active {
  -webkit-animation: 1s wiggle ease infinite;
          animation: 1s wiggle ease infinite;
}

@-webkit-keyframes wiggle {
  0% {
    transform: rotate(-3deg);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
  20% {
    transform: rotate(20deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(-3deg);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
  20% {
    transform: rotate(20deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }
}
.btn--wut.is-active {
  -webkit-animation: 1s fullRotation ease infinite;
          animation: 1s fullRotation ease infinite;
}
.btn--wut.is-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: wutBefore 0.8s 0.4s ease-out infinite;
          animation: wutBefore 0.8s 0.4s ease-out infinite;
  z-index: -1;
}
.btn--wut.is-active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: wut 0.8s ease-out infinite;
          animation: wut 0.8s ease-out infinite;
  z-index: -1;
}

@-webkit-keyframes fullRotation {
  0% {
    transform: rotate(-3deg) scale(1) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate(50deg) translate3d(0, 5px, 0);
  }
  40% {
    transform: rotate(-15deg) scale(1.1) translate3d(0, 8px, -5px);
  }
  60% {
    transform: rotate(5deg) translate3d(5px, -8px, -80px);
  }
  90% {
    transform: rotate(-1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes fullRotation {
  0% {
    transform: rotate(-3deg) scale(1) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate(50deg) translate3d(0, 5px, 0);
  }
  40% {
    transform: rotate(-15deg) scale(1.1) translate3d(0, 8px, -5px);
  }
  60% {
    transform: rotate(5deg) translate3d(5px, -8px, -80px);
  }
  90% {
    transform: rotate(-1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes wut {
  0% {
    border-radius: 50%;
    transform: skew(0) translate3d(0, 0px, 0px);
  }
  10% {
    transform: translate3d(0, -10px, 0);
  }
  50% {
    border-radius: 50%;
  }
  80% {
    border-radius: 30%;
    transform: translate3d(20, 10px, 20px);
  }
  100% {
    border-radius: 50%;
    transform: skew(0) translate3d(0, 0px, 0px);
  }
}
@keyframes wut {
  0% {
    border-radius: 50%;
    transform: skew(0) translate3d(0, 0px, 0px);
  }
  10% {
    transform: translate3d(0, -10px, 0);
  }
  50% {
    border-radius: 50%;
  }
  80% {
    border-radius: 30%;
    transform: translate3d(20, 10px, 20px);
  }
  100% {
    border-radius: 50%;
    transform: skew(0) translate3d(0, 0px, 0px);
  }
}
@-webkit-keyframes wutBefore {
  0% {
    border-radius: 50%;
    transform: translate3d(0, 0px, 0px);
  }
  10% {
    transform: translate3d(-10px, 10px, 0);
  }
  70% {
    border-radius: 50%;
  }
  80% {
    border-radius: 30%;
    transform: translate3d(-20px, -10px, -20px);
  }
  100% {
    border-radius: 50%;
    transform: translate3d(0, 0px, 0px);
  }
}
@keyframes wutBefore {
  0% {
    border-radius: 50%;
    transform: translate3d(0, 0px, 0px);
  }
  10% {
    transform: translate3d(-10px, 10px, 0);
  }
  70% {
    border-radius: 50%;
  }
  80% {
    border-radius: 30%;
    transform: translate3d(-20px, -10px, -20px);
  }
  100% {
    border-radius: 50%;
    transform: translate3d(0, 0px, 0px);
  }
}

/*
-----------------------------
チャット出し入れ
--------
*/

#chat-circle {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#003de9), to(#63bbf9));
  background: linear-gradient(to right,#003de9 0%, #63bbf9 100%);
  width: 80px;
  height: 80px;  
  border-radius: 50%;
  color: white;
  padding: 24px;
  cursor: pointer;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 480px) {
  #chat-circle {
  position: fixed;
  bottom: 25px;
  right: 25px;
}
}
/*
------------------------------------------------
引用デザイン
---------------------*/

.lqd-modal-content blockquote {
    position: relative;
    padding: 5px 12px 5px 56px;
    box-sizing: border-box;
    font-style: italic;
    color: #464646;
    background: #f0f7ff;
}

.lqd-modal-content blockquote:before{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 36px;
    height: 36px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    content: "\f10d";
    font-family: FontAwesome;
    color: #FFF;
    font-size: 20px;
    line-height: 36px;
    background: #a5d7ff;
    border-radius: 50%;
    font-weight: 900;
}

.lqd-modal-content blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

.lqd-modal-content blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}
.liquid-blog-item .liquid-lp-title {
    line-height: 1.4em;
    letter-spacing: -0.05em;
}
.chat-wrap {
  display: none;
}

.is-actived-p2 {
  display: block;
}
.komeshiru {
  font-size: 14px;
    line-height: 0.6em;
    font-weight: 600;
    color: white;
    background: #ff2929;
    padding: 5px;
}

/*
------------------------------------------
blog layout
------------------------------------------------------------
*/

@media screen and (min-width: 1200px){
.blog-single-content .fullwidth figcaption {
    width: 50%;
}
}

figcaption {
  background-color: #fde9b1;
  padding: 25px;
}
/*
----------------------
indexのCSS
------------
*/

  .filter-list li {
    
    color: #060221;
    cursor: auto;
      }  
      .title-bg {
          background: -webkit-gradient(linear, left top, right top, from(#ff5e00), to(#f1ca9b));
    background: linear-gradient(to right, #ff2929 0%, #f99d2f 100%);
    max-width: 458px;
    font-weight: 800;
    color: white;
    padding: 5px;
    text-align: center;
    margin-top: 1px;
    }
    .pricing-table-minimal .pricing {
    font-size: 46px;
}
.fancy-box-classes {
    box-shadow: 0 30px 50px rgb(0 0 0 / 7%);
}
.fancy-box-classes .trainer b {
    background: #ff9e003b;
    font-weight: bold;
}
.fancy-box-info {
  line-height: 1.6;
}
.fancy-box-classes .trainer {
  color: #2c3042;
}
.none-none {
  display: none;
}
.display-none {
  display: none!important;
}
.liquid-blog-item .liquid-lp-title {
    line-height: 1.4em;
    letter-spacing: -0.05em;
}
.btn-apo-bg {
  background: #4762ff;
  width: 100%;
}
.btn-now-bg{
  background: rgb(255 255 255 / 0%);
    border: 1px solid #4762ff !important;
    color: #4762ff !important;
    width: 100%;
} 

    @media screen and (max-width: 768px) {
      .sp-none {
        display: none;

      }
      .head-btn {
        background-color: #4762ff;
          color: #fff;
          border-radius: 52px;
          font-size: 11.5px;
          border: none;
          font-weight: 700;
          margin-top: 4px;
        text-align: center;
            box-shadow: 0 4px 6px rgb(0 0 0 / 11%);
      }
      a:hover{
        color: #fff !important;
      }

    } 
    @media screen and (min-width: 769px) {
      .pc-none {
        display: none;

      }

    } 



