/* ========================================
   fugulink ランディングページ CSS
   ======================================== */

/* 画像保存防止（スマホ長押し） */
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* CSS変数 */
:root {
    --main-color: #00bcd4;
    --main-color-dark: #0097a7;
    --light-color: #b2ebf2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: YakuHanJPs, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "メイリオ", Meiryo, sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* コンテナ */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー（yapp.li風）
   ======================================== */
.lp-header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-logo {
    display: flex;
    align-items: center;
}

.lp-logo img {
    height: 36px;
    width: auto;
    letter-spacing: 1px;
}

.lp-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.lp-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.lp-nav a:hover {
    color: var(--main-color);
}

.lp-nav-cta {
    background: var(--main-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lp-nav-cta:hover {
    background: var(--main-color-dark);
    transform: translateY(-2px);
}

/* ナビ ドロップダウン（PC） */
.lp-nav-dropdown {
    position: relative;
}

.lp-nav-dropdown-trigger {
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

.lp-nav-dropdown-trigger:hover {
    color: var(--main-color);
}

.lp-nav-dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lp-nav-dropdown:hover .lp-nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.lp-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 12px;
    z-index: 100;
}

/* ホバー領域の隙間を埋める疑似要素 */
.lp-nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.lp-nav-dropdown:hover .lp-nav-dropdown-menu {
    display: block;
}

.lp-nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.lp-nav-dropdown-menu a:hover {
    background: rgba(0, 188, 212, 0.08);
    color: var(--main-color);
}

.lp-nav-dropdown-all {
    color: var(--main-color) !important;
    font-weight: 600 !important;
}

.lp-nav-dropdown-all-top {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 4px;
    padding-bottom: 12px !important;
}

/* ハンバーガーメニュー */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.lp-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   ヒーローセクション（doctorsfile風）
   ======================================== */
.lp-hero {
    /* 背景画像 */
    background: url('../images/hero_bg.jpg') center top / cover no-repeat;
    background-color: #f5f5f5;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-hero-left {
    flex-shrink: 0;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.lp-hero-text-img {
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 16px;
}

.lp-hero-right {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-left: -20px;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.lp-hero-device-img {
    max-width: 560px;
    height: auto;
    display: block;
}

/* ヒーローアニメーション */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* プレースホルダー画像 */
.lp-placeholder-img {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 14px;
}

/* ========================================
   ビジョンセクション
   ======================================== */
.lp-vision {
    padding: 80px 0;
    background: #fff;
}

.lp-vision-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-vision-title {
    font-size: clamp(22px, 2vw + 10px, 30px);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 28px;
}

.lp-vision-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 16px;
}

.lp-vision-desc:last-child {
    margin-bottom: 0;
}

.lp-vision-image img,
.lp-vision-svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.lp-vision-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .lp-vision {
        padding: 56px 0;
    }

    .lp-vision-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-vision-image {
        order: -1;
    }
}

/* ========================================
   画面紹介セクション
   ======================================== */
.lp-viewui {
    padding: 80px 0;
    background: #1a2e3b;
    color: #fff;
}

.lp-viewui-title {
    text-align: center;
    font-size: clamp(24px, 2.2vw + 12px, 34px);
    font-weight: 800;
    margin-bottom: 20px;
}

.lp-viewui-desc {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 48px;
}

.lp-viewui-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.lp-viewui-track {
    display: flex;
    transition: transform 0.6s ease;
}

.lp-viewui-slide {
    min-width: 100%;
}

.lp-viewui-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-viewui-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 14px;
    background: rgba(255,255,255,0.03);
}

.lp-viewui-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.lp-viewui-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.lp-viewui-dot.active {
    background: #00BCD4;
    transform: scale(1.3);
}

.lp-viewui-dot:hover {
    background: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .lp-viewui {
        padding: 56px 0;
    }
}

/* ========================================
   課題セクション（dentry.jp風）
   ======================================== */
.lp-challenges {
    position: relative;
    padding: 80px 0 120px;
    background: #ffffff;
}

/* V字型の境界（白が下に突き出す） */
.lp-challenges::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #e8f4f8;
    clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

.lp-challenges-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #00546c;
}

.lp-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-challenge-item {
    text-align: center;
    padding: 0 15px;
}

.lp-challenge-icon {
    margin-bottom: 25px;
}

.lp-challenge-icon img {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

.lp-placeholder-icon {
    width: 120px;
    height: 100px;
    margin: 0 auto;
    background: #d0e8ed;
    border: 2px dashed #7fb8c9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9aab;
    font-size: 14px;
}

.lp-challenge-heading {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.lp-challenge-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* ========================================
   解決策セクション（dentry.jp風）
   ======================================== */
.lp-solutions {
    padding: 80px 0 100px;
    background: #e8f4f8;
}

.lp-solutions-logo {
    text-align: center;
    margin-bottom: 20px;
}

.lp-solutions-logo img {
    height: 50px;
    width: auto;
}

.lp-solutions-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #00546c;
}

.lp-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-solution-item {
    text-align: center;
    padding: 0 15px;
}

.lp-solution-icon {
    margin-bottom: 25px;
}

.lp-solution-icon img {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

.lp-solution-heading {
    font-size: 18px;
    font-weight: 700;
    color: #00546c;
    margin-bottom: 15px;
}

.lp-solution-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* 共通セクションタイトル（他で使う場合） */
.lp-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* ========================================
   提供価値セクション（dentnet風）
   ======================================== */
.lp-value {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.lp-value-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.lp-value-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.lp-value-2 .lp-value-bg-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.lp-value .lp-container {
    position: relative;
    z-index: 1;
}

.lp-value-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-value-reverse {
    flex-direction: row-reverse;
}

.lp-value-image {
    flex-shrink: 0;
    width: 350px;
}

.lp-value-person-placeholder {
    width: 350px;
    height: 450px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    box-shadow: var(--shadow-hover);
}

.lp-value-content {
    flex: 1;
}

.lp-value-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.lp-value-title span {
    display: block;
}

.lp-value-title span:first-child {
    color: var(--main-color);
}

.lp-value-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lp-value-text p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 20px;
}

.lp-value-text p:last-child {
    margin-bottom: 0;
}

.lp-value-text strong {
    color: var(--main-color);
    font-weight: 600;
}

.lp-value-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lp-value-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
}

.lp-value-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-size: 12px;
}

/* ========================================
   提供価値セクション（全幅背景ヒーロー）
   ======================================== */
.lp-value-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lp-value-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

.lp-value-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.lp-value-hero .lp-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lp-value-hero-content {
    max-width: 600px;
    padding: 60px 0;
}

.lp-value-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

.lp-value-hero-title span {
    display: block;
}

.lp-value-hero-title span:first-child {
    color: var(--main-color);
}

.lp-value-hero-title span:last-child {
    color: var(--text-color);
}

.lp-value-hero-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.lp-value-hero-text p:last-child {
    margin-bottom: 0;
}

.lp-value-hero-text strong {
    color: var(--main-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lp-value-hero {
        min-height: auto;
        flex-direction: column;
    }

    .lp-value-hero-bg {
        position: relative;
        height: 200px;
        width: 100%;
        object-position: right center;
    }

    .lp-value-hero-overlay {
        display: none;
    }

    .lp-value-hero-content {
        max-width: 100%;
        padding: 16px 20px;
    }

    .lp-value-hero-title {
        font-size: 22px;
    }

    .lp-value-hero-text p br {
        display: none;
    }
}

/* ========================================
   機能紹介セクション
   ======================================== */
.lp-features {
    padding: 80px 0 20px;
    background: var(--bg-color);
}

.lp-features-group-header {
    text-align: center;
    margin-bottom: 48px;
    margin-top: 64px;
}

.lp-features-group-header:first-child {
    margin-top: 0;
}

.lp-features-group-sub {
    font-size: 0.9em;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-features-group-title {
    font-size: clamp(24px, 2.2vw + 12px, 32px);
    font-weight: 800;
    color: var(--text-color);
}

.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.lp-feature-row.reverse {
    direction: rtl;
}

.lp-feature-row.reverse > * {
    direction: ltr;
}

.lp-feature-badge {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: #fff;
    background: var(--main-color);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lp-feature-heading {
    font-size: clamp(18px, 1.5vw + 8px, 24px);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.lp-feature-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
}

.lp-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.lp-feature-link:hover {
    gap: 10px;
    text-decoration: underline;
}

.lp-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* スマホ用画像（PC時は非表示） */
.lp-feature-image-sp {
    display: none;
    margin: 12px 0;
}

.lp-feature-image-sp img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lp-feature-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #e8e8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .lp-features {
        padding: 56px 0;
    }

    .lp-feature-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .lp-feature-row.reverse {
        direction: ltr;
    }

    .lp-feature-image {
        display: none;
    }

    .lp-feature-image-sp {
        display: block;
    }

    .lp-feature-desc {
        margin-bottom: 8px !important;
    }

    .lp-feature-link {
        margin-top: 0;
    }

    .lp-features-group-header {
        margin-top: 48px;
        margin-bottom: 32px;
    }
}

/* ========================================
   機能カードセクション（apodent風・縦並び）※旧デザイン
   ======================================== */
.lp-features-header {
    padding: 80px 0 40px;
    background: var(--white);
}

.lp-features-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: var(--main-color);
}

/* 各機能セクション */
.lp-feature-section {
    padding: 80px 0;
}

.lp-feature-bg-white {
    background: var(--white);
}

.lp-feature-bg-gray {
    background: var(--bg-color);
}

.lp-feature-bg-accent {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.08) 0%, rgba(0, 188, 212, 0.02) 100%);
    border-top: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

/* ヘッダー部分（タイトル・キャッチ） */
.lp-feature-header {
    text-align: left;
    margin-bottom: 40px;
}

.lp-feature-label {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 -10px 0;
}

.lp-feature-name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.lp-feature-catch {
    font-size: 18px;
    color: var(--text-light);
}

/* 画像部分 */
.lp-feature-image {
    text-align: center;
    margin-bottom: 40px;
}

.lp-feature-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.lp-feature-placeholder {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* 本文部分 */
.lp-feature-body {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lp-feature-desc {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.lp-feature-benefits {
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
}

.lp-feature-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.lp-feature-benefit-icon {
    color: var(--main-color);
    font-weight: 700;
    flex-shrink: 0;
}

.lp-feature-btn {
    display: inline-block;
    background: var(--main-color);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.lp-feature-btn:hover {
    background: var(--main-color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* カスタム開発セクション（特別デザイン） */
.lp-feature-bg-accent .lp-feature-name {
    color: var(--main-color);
}

.lp-feature-highlight {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 20px 0;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.lp-feature-note {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* 3カードレイアウト（CTIオートコールなど） */
.lp-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.lp-feature-card-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.lp-feature-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lp-feature-card-image {
    margin-bottom: 20px;
}

.lp-feature-card-placeholder {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
}

.lp-feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
}

.lp-feature-card-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ========================================
   機能一覧グリッド
   ======================================== */
.lp-func-list {
    padding: 80px 0;
    background: var(--bg-color);
}

.lp-func-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.lp-func-item {
    background: var(--white);
    padding: 25px 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.lp-func-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.lp-func-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.lp-func-name {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   サポート体制
   ======================================== */
/* ========================================
   標準サービス
   ======================================== */
.lp-services {
    padding: 40px 0 80px;
    background: var(--bg-color);
}

.lp-services-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-services-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.lp-services-marker {
    background: linear-gradient(transparent 60%, rgba(0, 188, 212, 0.25) 60%);
    padding: 0 4px;
}

.lp-services-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--main-color);
    font-family: 'Arial', sans-serif;
    margin-right: 2px;
}

.lp-services-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-weight: 500;
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-service-card {
    text-align: center;
    padding: 32px 16px 28px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.lp-service-icon {
    margin-bottom: 12px;
}

.lp-service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lp-service-icon i {
    font-size: 32px;
    color: var(--main-color);
}

.lp-service-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.lp-service-desc {
    font-size: 13px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.4;
}

.lp-services-more {
    text-align: right;
    margin-top: 24px;
}

.lp-services-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.lp-services-more-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* ========================================
   価格セクション
   ======================================== */
.lp-price {
    padding: 80px 0 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.lp-price .lp-container {
    position: relative;
}

.lp-price-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.lp-price-title small {
    font-size: 24px;
    font-weight: 500;
}

.lp-price-cta {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.lp-price-slash {
    font-size: 20px;
    color: var(--main-color);
}

.lp-price-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.lp-price-card {
    text-align: center;
}

.lp-price-card-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.lp-price-number {
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.lp-price-amount {
    font-size: 100px;
    font-weight: 900;
    color: var(--main-color);
    font-family: 'Arial', sans-serif;
    letter-spacing: -3px;
    line-height: 1;
}

.lp-price-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-left: 4px;
}

.lp-price-unit small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.lp-price-person {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 200px;
    z-index: 2;
}

.lp-price-person img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   他社比較表
   ======================================== */
.lp-compare {
    padding: 60px 0 80px;
    background: #e8f4f8;
}

.lp-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lp-compare-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 15px;
}

.lp-compare-table thead th {
    padding: 8px 8px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid #ccc;
    font-size: 15px;
}

.lp-compare-feature-head {
    width: 160px;
}

th.lp-compare-fugulink {
    background: var(--main-color);
    color: #fff;
    font-size: 17px !important;
    border-radius: 8px 8px 0 0;
    border-bottom-color: var(--main-color) !important;
}

th.lp-compare-other {
    color: var(--text-light);
}

.lp-compare-table tbody tr {
    border-bottom: 1px solid #c0d8e0;
}

.lp-compare-table tbody tr:last-child {
    border-bottom: none;
}

.lp-compare-table tbody td {
    padding: 5px 8px;
    text-align: center;
    vertical-align: middle;
}

td.lp-compare-fugulink {
    background: rgba(0, 188, 212, 0.06);
    border-left: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}

/* 最終行の角丸 */
.lp-compare-table tbody tr:last-child td.lp-compare-fugulink {
    border-bottom: 2px solid var(--main-color);
    border-radius: 0 0 8px 8px;
}

td.lp-compare-feature {
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

td.lp-compare-other {
    color: var(--text-light);
}

/* 料金 */
.lp-compare-price {
    font-weight: 700;
    font-size: 16px;
}

.lp-compare-price small {
    font-size: 12px;
    font-weight: 500;
}

.lp-compare-highlight {
    color: var(--main-color);
    font-size: 20px;
}

/* ◎○△× マーク */
.lp-compare-mark {
    font-size: 18px;
    font-weight: 700;
}

.lp-compare-excellent {
    color: var(--main-color);
    font-size: 22px;
}

.lp-compare-good {
    color: #888;
}

.lp-compare-avg {
    color: #bbb;
}

.lp-compare-bad {
    color: #ddd;
}

.lp-compare-plan {
    font-size: 12px;
    color: var(--main-color);
    font-weight: 600;
    background: rgba(0, 188, 212, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
}

.lp-compare-note {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

/* ========================================
   よくある質問
   ======================================== */
.lp-faq {
    padding: 80px 0;
    background: var(--white);
}

.lp-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.lp-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s ease;
}

.lp-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.lp-faq-question span::before {
    content: 'Q.';
    color: var(--main-color);
    font-weight: 800;
    margin-right: 10px;
    font-size: 24px;
}

.lp-faq-question i {
    font-size: 14px;
    color: var(--main-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lp-faq-question:hover span {
    color: var(--main-color);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 32px;
}

.lp-faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* 開いた状態 */
.lp-faq-item.open .lp-faq-answer {
    max-height: 500px;
    padding: 0 0 16px 32px;
}

.lp-faq-item.open .lp-faq-question i {
    transform: rotate(45deg);
}

/* ========================================
   今だけ特典
   ======================================== */
.lp-tokuten {
    padding: 80px 0;
    background: var(--bg-color);
}

.lp-tokuten-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.lp-tokuten-card {
    max-width: 500px;
}

.lp-tokuten-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .lp-tokuten-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .lp-tokuten-card {
        max-width: 90%;
    }
}

/* ========================================
   導入検討CTA
   ======================================== */
.lp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    text-align: center;
}

.lp-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
}

.lp-cta-brand {
    font-weight: 700;
}

.lp-cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-cta-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.lp-cta-card-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 32px 30px;
    gap: 20px;
}

.lp-cta-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.lp-cta-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.lp-cta-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.lp-cta-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
    text-align: left;
}

.lp-cta-btn {
    display: inline-block;
    background: var(--main-color);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.lp-cta-btn:hover {
    background: var(--main-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.35);
}

.lp-cta-card-company {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.lp-cta-phone {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    text-decoration: none;
    transition: var(--transition);
}

.lp-cta-phone:hover {
    color: var(--main-color-dark);
}

.lp-cta-card-hours {
    font-size: 13px;
    color: var(--text-light);
}

.lp-cta-br-sp {
    display: none;
}

/* ========================================
   フッター
   ======================================== */
.lp-footer {
    padding: 48px 0 32px;
    background: #1a2e3b;
    color: #fff;
}

.lp-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.lp-footer-logo {
    margin-bottom: 20px;
}

.lp-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lp-footer-col {
    display: flex;
    flex-direction: column;
}

.lp-footer-col-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lp-footer-col a {
    font-size: 0.82em;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}

.lp-footer-col a:hover {
    color: #fff;
}

.lp-footer-copy {
    font-size: 0.75em;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .lp-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
}

@media (max-width: 480px) {
    .lp-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 1024px) {
    .lp-challenges-grid,
    .lp-solutions-grid {
        gap: 30px;
    }

    .lp-func-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ヘッダー */
    .lp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .lp-nav.active {
        display: flex;
    }

    .lp-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    body {
        padding-top: 65px;
    }

    .lp-nav {
        z-index: 10000;
    }

    .lp-hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    .lp-nav a {
        width: 100%;
        text-align: left;
    }

    /* SPドロップダウン（アコーディオン化） */
    .lp-nav-dropdown {
        width: 100%;
    }

    .lp-nav-dropdown-trigger {
        width: 100%;
        padding: 5px 0;
        justify-content: space-between;
    }

    .lp-nav-dropdown:hover .lp-nav-dropdown-trigger i {
        transform: none;
    }

    .lp-nav-dropdown.open .lp-nav-dropdown-trigger i {
        transform: rotate(180deg);
    }

    .lp-nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .lp-nav-dropdown-menu::before {
        display: none;
    }

    .lp-nav-dropdown:hover .lp-nav-dropdown-menu {
        display: block;
        max-height: 0;
    }

    .lp-nav-dropdown.open .lp-nav-dropdown-menu {
        display: block;
        max-height: 500px;
    }

    .lp-nav-dropdown-menu a {
        padding: 10px 0 10px 16px;
        font-size: 16px;
        border-left: 3px solid var(--main-color);
    }

    .lp-nav-dropdown-all {
        border-top: none;
        margin-top: 0;
        padding-top: 8px !important;
    }

    /* ヒーロー */
    .lp-hero {
        padding: 50px 15px;
        min-height: auto;
    }

    .lp-hero-inner {
        flex-direction: column;
        gap: 30px;
    }

    .lp-hero-text-img {
        max-width: 100%;
        width: 100%;
    }

    .lp-hero-device-img {
        max-width: 100%;
        width: 320px;
    }

    /* 課題セクション（スマホ） */
    .lp-challenges {
        padding: 50px 0 80px;
    }

    .lp-challenges::after {
        height: 50px;
    }

    .lp-challenges-title {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .lp-challenges-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lp-challenge-item {
        padding: 0 10px;
    }

    .lp-challenge-heading {
        font-size: 17px;
    }

    .lp-challenge-text {
        text-align: center;
    }

    /* 解決策セクション（スマホ） */
    .lp-solutions {
        padding: 50px 0 60px;
    }

    .lp-solutions-logo img {
        height: 40px;
    }

    .lp-solutions-title {
        font-size: 20px;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .lp-solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lp-solution-item {
        padding: 0 10px;
    }

    .lp-solution-heading {
        font-size: 17px;
    }

    .lp-solution-text {
        text-align: center;
    }

    /* セクション */
    .lp-section-title {
        font-size: 24px;
    }

    /* 提供価値セクション */
    .lp-value {
        padding: 60px 0;
    }

    .lp-value-inner,
    .lp-value-reverse {
        flex-direction: column;
        text-align: center;
    }

    .lp-value-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .lp-value-person-placeholder {
        width: 100%;
        max-width: 280px;
        height: 360px;
    }

    .lp-value-title {
        font-size: 22px;
    }

    .lp-value-text {
        padding: 25px 20px;
    }

    .lp-value-text p {
        font-size: 14px;
    }

    .lp-value-list li {
        text-align: left;
    }

    /* 機能カード */
    .lp-feature-card,
    .lp-feature-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        margin: 0;
    }

    .lp-feature-card:nth-child(even) {
        margin: 0 -20px;
    }

    /* 機能セクション（apodent風） */
    .lp-features-header {
        padding: 50px 0 20px;
    }

    .lp-features-title {
        font-size: 28px;
    }

    .lp-feature-section {
        padding: 50px 0;
    }

    .lp-feature-header {
        text-align: center;
    }

    .lp-feature-label {
        font-size: 14px;
    }

    .lp-feature-name {
        font-size: 24px;
    }

    .lp-feature-catch {
        font-size: 15px;
    }

    .lp-feature-placeholder {
        height: 250px;
    }

    .lp-feature-desc {
        font-size: 14px;
        text-align: left;
    }

    .lp-feature-benefits {
        width: 100%;
    }

    .lp-feature-benefit {
        font-size: 14px;
    }

    .lp-feature-highlight {
        font-size: 15px;
        padding: 10px 20px;
    }

    .lp-feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-feature-card-placeholder {
        height: 150px;
    }

    /* 機能一覧 */
    .lp-func-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 標準サービス */
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* 価格 */
    .lp-price-title {
        font-size: 20px;
        text-shadow:
            -2px -2px 0 #fff, 2px -2px 0 #fff,
            -2px  2px 0 #fff, 2px  2px 0 #fff,
             0   -2px 0 #fff, 0    2px 0 #fff,
            -2px  0   0 #fff, 2px  0   0 #fff;
    }

    .lp-price-title small {
        font-size: 14px;
    }

    .lp-price-cta {
        font-size: 13px;
        text-shadow:
            -2px -2px 0 #fff, 2px -2px 0 #fff,
            -2px  2px 0 #fff, 2px  2px 0 #fff,
             0   -2px 0 #fff, 0    2px 0 #fff,
            -2px  0   0 #fff, 2px  0   0 #fff;
    }

    .lp-price-cards {
        flex-direction: column;
        gap: 24px;
    }

    .lp-price-amount {
        font-size: 56px;
    }

    .lp-price-unit {
        font-size: 16px;
        text-shadow:
            -2px -2px 0 #fff, 2px -2px 0 #fff,
            -2px  2px 0 #fff, 2px  2px 0 #fff,
             0   -2px 0 #fff, 0    2px 0 #fff,
            -2px  0   0 #fff, 2px  0   0 #fff;
    }

    .lp-price-person {
        width: 120px;
        right: 2%;
        z-index: 0;
    }

    /* 比較表 */
    .lp-compare-table {
        font-size: 13px;
        min-width: 600px;
    }

    .lp-compare-feature-head {
        width: 100px;
    }

    .lp-compare-highlight {
        font-size: 16px;
    }

    /* FAQ */
    .lp-faq-question span {
        font-size: 14px;
    }

    .lp-faq-answer p {
        font-size: 14px;
    }

    /* CTA */
    .lp-cta-title {
        font-size: 20px;
    }

    .lp-cta-br-sp {
        display: block;
    }

    .lp-cta-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-cta-card-inner {
        padding: 30px 20px;
    }

    .lp-cta-phone {
        font-size: 24px;
    }
}

/* ========================================
   導入事例の声セクション
   ======================================== */
.lp-cases {
    padding: 80px 0;
    background: #f9fafb;
}

.lp-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.lp-cases-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.lp-cases-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
}

.lp-cases-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.lp-cases-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.lp-cases-card-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8fa, #e0f2f4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    font-size: 2.5em;
}

.lp-cases-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
}

.lp-cases-card-overlay-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-cases-card-body {
    padding: 16px 20px 20px;
}

.lp-cases-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-cases-card-date {
    font-size: 0.78em;
    color: #999;
}

.lp-cases-card-category {
    font-size: 0.72em;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
    background: #E0F7FA;
    color: #00838F;
}

.lp-cases-card-title {
    font-size: 0.95em;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-cases-more {
    text-align: center;
    margin-top: 32px;
}

.lp-cases-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #fff;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-cases-more-link:hover {
    background: var(--main-color);
    color: #fff;
}

@media (max-width: 768px) {
    .lp-cases {
        padding: 48px 0;
    }

    .lp-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lp-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
