/* ========================================
   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;
    --navy: #1a2a44;                /* 主役：見出し・濃い帯・フッター */
    --navy-dark: #11203a;
    --text-color: #1f2937;          /* 本文（濃紺グレー） */
    --text-light: #64748b;
    --bg-color: #f7f9fb;            /* オフホワイト（セクション交互背景） */
    --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(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lp-nav-cta:hover {
    background: var(--navy-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:
        linear-gradient(180deg, rgba(10, 22, 44, 0.86) 0%, rgba(10, 22, 44, 0.8) 100%),
        url('../images/top_hero_bg.jpg') center / cover no-repeat;
    padding: 64px 0 56px;
    display: flex;
    justify-content: center;
}

.lp-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.lp-hero-head {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.lp-hero-badge i {
    font-size: 12px;
    color: #4dd0e1;
}

.lp-hero-eyebrow {
    font-size: clamp(20px, 1.6vw + 12px, 28px);
    font-weight: 700;
    color: #4dd0e1;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}

.lp-hero-title {
    font-size: clamp(17px, 1vw + 13px, 25px);
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* 「これひとつ。」など句のまとまりを語の途中で折り返さない */
.lp-hero-title span {
    white-space: nowrap;
}

.lp-hero-lead {
    font-size: clamp(15px, 0.5vw + 13px, 18px);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px;
}

.lp-hero-lead strong {
    color: #fff;
    font-weight: 700;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.lp-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.lp-hero-btn-primary {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 188, 212, 0.35);
}

.lp-hero-btn-primary:hover {
    background: var(--main-color-dark);
    transform: translateY(-2px);
}

.lp-hero-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.lp-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
}

.lp-hero-right {
    flex: 1 1 50%;
    min-width: 0;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.35s;
}

/* ブラウザ枠（実画面スクショ用）— 暗い背景に映えるよう影＋淡い枠線 */
.lp-browser {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: #f1f4f8;
    border-bottom: 1px solid #e6ebf0;
}

.lp-browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cfd8e3;
}

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

/* === ヒーロー画像カルーセル（Swiper・センターモード無限ループ） === */
.lp-hero-carousel {
    width: 100%;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-swiper {
    width: 100%;
}

/* 中央のアクティブだけ等倍、両端は一回り縮小（拡大縮小は img に掛けてSwiperの計算と干渉させない） */
.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: scale(0.86);
    opacity: 0.5;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.hero-swiper .swiper-slide-active img {
    transform: scale(1);
    opacity: 1;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hero-dot.is-active {
    background: var(--main-color);
    transform: scale(1.25);
}

/* ヒーローアニメーション */
@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: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.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: 16px;
    color: var(--text-color);
    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-features-row {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

/* このセクションだけ横幅を広く（1920デスクトップで左右余白を抑える） */
.lp-features-row .lp-container {
    max-width: 1680px;
}

.lp-fr-title {
    text-align: center;
    font-size: clamp(24px, 2.2vw + 10px, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 44px;
}

.lp-fr-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14px, 0.5vw + 12px, 17px);
    line-height: 1.8;
    margin: 0 0 44px;
}

.lp-fr-grid {
    display: flex;
    gap: 20px;
}

/* 白いカード（PC＝縦：画像上＋テキスト下） */
.lp-fr-item {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    /* 初期状態：左にずらして透明（スクロールで is-in が付くと表示） */
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-fr-item.is-in {
    opacity: 1;
    transform: translateX(0);
}

/* 左から1枚ずつ：時間差 */
.lp-fr-grid .lp-fr-item:nth-child(1) { transition-delay: 0s; }
.lp-fr-grid .lp-fr-item:nth-child(2) { transition-delay: 0.09s; }
.lp-fr-grid .lp-fr-item:nth-child(3) { transition-delay: 0.18s; }
.lp-fr-grid .lp-fr-item:nth-child(4) { transition-delay: 0.27s; }
.lp-fr-grid .lp-fr-item:nth-child(5) { transition-delay: 0.36s; }
.lp-fr-grid .lp-fr-item:nth-child(6) { transition-delay: 0.45s; }
.lp-fr-grid .lp-fr-item:nth-child(7) { transition-delay: 0.54s; }

.lp-fr-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #eef3f8;   /* イラスト背後の淡い面 */
}

.lp-fr-text {
    padding: 18px 18px 22px;
    text-align: left;
}

.lp-fr-name {
    display: block;
    font-size: clamp(15px, 0.6vw + 13px, 19px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

.lp-fr-desc {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
}

/* スマホ＝1列・横型カード（左に丸イラスト＋右にテキスト） */
@media (max-width: 768px) {
    .lp-fr-title {
        font-size: 19px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    .lp-fr-grid {
        flex-direction: column;
        gap: 14px;
    }
    .lp-fr-item {
        flex: none;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px;
    }
    .lp-fr-item img {
        width: 84px;
        height: 84px;
        flex-shrink: 0;
        border-radius: 50%;
    }
    .lp-fr-text {
        flex: 1;
        min-width: 0;
        padding: 0;
    }
    .lp-fr-name {
        font-size: 17px;
    }
}

/* ========================================
   画面紹介セクション
   ======================================== */
.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: 16px;
    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: 16px;
    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: 16px;
    line-height: 1.9;
    color: var(--text-color);
    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-flex {
    background: var(--white);
    padding: 88px 0;
}

.lp-flex-title {
    text-align: center;
    font-size: clamp(24px, 2.4vw + 12px, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.6;
    margin: 0 0 32px;
}

.lp-flex-sub {
    text-align: center;
    font-size: clamp(18px, 1.2vw + 10px, 24px);
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 20px;
}

.lp-flex-desc {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 16px;
    line-height: 2;
    text-align: left;
}

@media (max-width: 768px) {
    .lp-flex {
        padding: 56px 0;
    }
    .lp-flex-title {
        font-size: 22px;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    .lp-flex-sub {
        font-size: 18px;
    }
    .lp-flex-desc {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* ========================================
   悩み→解決セクション（悩み別グリッド）
   ======================================== */
.lp-worries {
    padding: 84px 0;
    background: var(--white);
}

.lp-worries-eyebrow {
    text-align: center;
    color: var(--main-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
}

.lp-worries-title {
    text-align: center;
    font-size: clamp(24px, 2.2vw + 12px, 34px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.5;
    margin: 0 0 32px;
}

/* お悩みジャンルの絞り込みタブ */
.lp-worries-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 880px;
    margin: 0 auto 40px;
}

.lp-worries-tab {
    background: var(--white);
    border: 1px solid #d7e0ea;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-worries-tab:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.lp-worries-tab.is-active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* フィルタで非表示 */
.lp-worry-card.is-hidden {
    display: none;
}

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

.lp-worry-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
}

/* リンク化された悩みカード（事例ページへ） */
a.lp-worry-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.lp-worry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px -16px rgba(0, 0, 0, 0.45);
}

/* 画像エリア（写真＋右下バッジ）。画像未支給の間はプレースホルダー */
.lp-worry-img {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e8eef4;
    overflow: hidden;
}

.lp-worry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-worry-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bb0c4;
    font-size: 13px;
    font-weight: 600;
}

.lp-worry-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
}

.lp-worry-body {
    padding: 20px 22px 24px;
}

.lp-worry-head {
    font-size: 19px;
    font-weight: 800;
    color: var(--main-color-dark);
    line-height: 1.5;
    margin: 0 0 10px;
}

.lp-worry-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 1024px) {
    .lp-worries-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .lp-worries {
        padding: 56px 0;
    }
    .lp-worries-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .lp-worries-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 440px;
    }
    .lp-worry-head {
        font-size: 18px;
    }
}

/* 事例への導線（全幅ヒーローバナー） */
.lp-case-hero {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background: #1f2c44;   /* 画像未支給時のプレースホルダー地色 */
}

.lp-case-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-case-hero-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7e92ab;
    font-size: 14px;
    font-weight: 600;
}

.lp-case-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 18, 34, 0.80) 0%, rgba(10, 18, 34, 0.50) 50%, rgba(10, 18, 34, 0.12) 100%);
}

.lp-case-hero-inner {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-case-hero-eyebrow {
    align-self: flex-start;
    background: var(--main-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.lp-case-hero-title {
    color: #fff;
    font-size: clamp(26px, 3.4vw + 8px, 46px);
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 14px;
    max-width: 680px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.lp-case-hero-attr {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0 0 24px;
}

.lp-case-hero-link {
    align-self: flex-start;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 11px 26px;
    margin-top: 4px;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.lp-case-hero:hover .lp-case-hero-link {
    background: #fff;
    color: var(--navy);
    gap: 12px;
}

@media (max-width: 768px) {
    .lp-case-hero,
    .lp-case-hero-inner {
        min-height: 440px;
    }
    /* 横長画像でも人物（右寄り）が見えるよう切り抜き位置を右へ */
    .lp-case-hero-img {
        object-position: 72% center;
    }
    /* テキストは下に寄せ、下側を濃いグラデで読みやすく */
    .lp-case-hero-inner {
        justify-content: flex-end;
        padding-bottom: 34px;
    }
    .lp-case-hero-overlay {
        background: linear-gradient(180deg, rgba(10, 18, 34, 0.20) 0%, rgba(10, 18, 34, 0.55) 55%, rgba(10, 18, 34, 0.88) 100%);
    }
}

/* ========================================
   媒体連携セクション
   ======================================== */
.lp-integ {
    padding: 84px 0;
    background: linear-gradient(180deg, #e8f7fa 0%, #f3fbfc 100%);
}

.lp-integ-title {
    text-align: center;
    font-size: clamp(24px, 2.4vw + 12px, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.5;
    margin: 0 0 48px;
}

.lp-integ-body {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.lp-integ-text p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-color);
    margin: 0;
}

.lp-integ-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lp-integ-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 10px;
    min-height: 58px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .lp-integ {
        padding: 56px 0;
    }
    .lp-integ-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    .lp-integ-body {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 480px;
    }
    .lp-integ-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   機能紹介セクション
   ======================================== */
.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-features-head {
    text-align: center;
    margin-bottom: 56px;
}

.lp-features-head-sub {
    color: var(--main-color);
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 8px;
}

.lp-features-head-title {
    font-size: clamp(24px, 2.2vw + 12px, 34px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.5;
    margin: 0;
}

.lp-features-head-lead {
    margin: 18px 0 0;
    font-size: clamp(16px, 1vw + 12px, 20px);
    font-weight: 700;
    color: var(--main-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-feat-ph {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #e8eef4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bb0c4;
    font-size: 14px;
    font-weight: 600;
}

.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: 17px;
    color: var(--text-color);
    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;
}

/* ========================================
   顧客評価カード図解（動くアニメーション）
   ※ 実画面を模した図。LPトークン(teal/navy)に再トーン済み
   ======================================== */
.fl-review-wrap { display: flex; justify-content: center; }

.fl-review {
    width: 100%;
    max-width: 556px;
    min-height: 348px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 42, 68, .12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    display: flex;
    overflow: hidden;
}

.fl-card { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.fl-card--left { border-right: 1px solid #e6edf3; }

.fl-card__head {
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}
.fl-card__head i { font-size: 17px; color: var(--main-color); }

.fl-card__body { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; }

.fl-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: #e0f7fa;
    border-radius: 10px;
    transition: box-shadow .4s;
}
.fl-hero__label { font-size: 15px; color: var(--navy); font-weight: 600; }
.fl-hero__num { font-size: 24px; font-weight: 700; color: var(--main-color); }
.fl-hero.is-active { box-shadow: inset 0 0 0 2px var(--main-color); }

.fl-subs { margin-top: 10px; display: flex; flex-direction: column; gap: 9px; }
.fl-sub {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}
.fl-sub span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fl-sub__num { color: var(--main-color); font-weight: 700; flex-shrink: 0; }
/* 危険系サブ項目は沈める（グレー） */
.fl-sub--muted, .fl-sub--muted span { color: #9aa7b4; }

.fl-cap {
    margin-top: auto;
    padding-top: 8px;
    font-size: 12px;
    color: var(--main-color-dark);
    text-align: center;
    opacity: 0;
    transition: opacity .5s;
}
.fl-cap.is-active { opacity: 1; }

/* 狭い時は2カードを上下に折り返す */
@media (max-width: 600px) {
    .fl-review { flex-direction: column; min-height: 0; }
    .fl-card--left { border-right: none; border-bottom: 1px solid #e6edf3; }
}

/* これらの図解はスマホでも表示する（通常の lp-feature-image は非表示だが上書き） */
@media (max-width: 768px) {
    .lp-feature-image.lp-feature-image--anim,
    .lp-feature-image.lp-feature-image--fig { display: block; }
}

/* アニメーション無効環境では静止状態（JS側で最終値を出す。装飾のトランジションのみ停止） */
@media (prefers-reduced-motion: reduce) {
    .fl-cap { transition: none; }
    .fl-hero { transition: none; }
}

/* ========================================
   送迎管理 共有図（静止・評価カードと同シリーズ）
   ======================================== */
.fl-transfer-wrap { display: flex; justify-content: center; }

.fl-transfer {
    width: 100%;
    max-width: 556px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 42, 68, .12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fl-transfer__head {
    background: var(--navy);
    color: #fff;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}
.fl-transfer__head > i { font-size: 18px; color: var(--main-color); }
.fl-transfer__live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #80deea;
    font-weight: 500;
}
.fl-transfer__live i { font-size: 8px; }

.fl-transfer__stage {
    position: relative;
    background: #f5fafb;
    aspect-ratio: 556 / 304;
}
.fl-transfer__lines { position: absolute; inset: 0; width: 100%; height: 100%; }

.fl-node {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--main-color);
    box-shadow: 0 2px 10px rgba(26, 42, 68, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.fl-node i { font-size: 26px; color: var(--main-color); }
.fl-node span { font-size: 13px; color: var(--navy); font-weight: 600; white-space: nowrap; }
.fl-node--alt { border-color: #4dd0e1; }
.fl-node--alt i { color: #26c6da; }
.fl-node--tl { left: 14%; top: 24%; }
.fl-node--tr { left: 86%; top: 24%; }
.fl-node--bl { left: 14%; top: 76%; }
.fl-node--br { left: 86%; top: 76%; }

.fl-info {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 236px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 42, 68, .12);
    box-shadow: 0 8px 26px rgba(26, 42, 68, .16);
    overflow: hidden;
}
.fl-info__head {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fl-info__head i { font-size: 15px; color: var(--main-color); }
.fl-info__body { padding: 12px 14px; display: flex; flex-direction: column; gap: 11px; }
.fl-info__row { display: flex; align-items: center; gap: 10px; }
.fl-info__row span { font-size: 13px; font-weight: 600; color: var(--main-color-dark); min-width: 42px; }
.fl-bar { flex: 1; height: 9px; border-radius: 5px; }

/* PCでは接続テキストは非表示（放射状の線で「繋がり」を表現） */
.fl-connector { display: none; }

/* 狭い画面では放射状をやめ、縦構成（送迎情報→接続テキスト→4役割2×2） */
@media (max-width: 560px) {
    .fl-transfer__stage {
        aspect-ratio: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 14px;
        padding: 18px 14px;
    }
    .fl-transfer__lines { display: none; }

    .fl-info {
        position: static;
        transform: none;
        flex-basis: 100%;
        max-width: 320px;
        margin: 0 auto;
        box-shadow: none;
        order: -1;
    }
    /* 中央カードのヘッダは外枠ヘッダと帯が重複するので隠す */
    .fl-info__head { display: none; }
    .fl-info__body { padding: 14px 16px; }

    .fl-connector {
        display: flex;
        flex-basis: 100%;
        align-items: center;
        justify-content: center;
        gap: 6px;
        order: 0;
        font-size: 13px;
        font-weight: 600;
        color: var(--main-color-dark);
    }
    .fl-connector i { font-size: 18px; color: var(--main-color); }

    .fl-node {
        position: static;
        transform: none;
        flex-basis: calc(50% - 7px);
        height: auto;
        aspect-ratio: 1;
        max-width: 130px;
    }
    .fl-node--tl { order: 1; }
    .fl-node--tr { order: 2; }
    .fl-node--bl { order: 3; }
    .fl-node--br { order: 4; }
}

/* ========================================
   オートコール 確認コール図（静止・評価カードと同シリーズ）
   ======================================== */
.fl-autocall-wrap { display: flex; justify-content: center; }

.fl-autocall {
    width: 100%;
    max-width: 556px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 42, 68, .12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.fl-autocall__head {
    background: var(--navy);
    color: #fff;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}
.fl-autocall__head > i { font-size: 18px; color: var(--main-color); }
.fl-autocall__live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #80deea;
    font-weight: 500;
}
.fl-autocall__live i { font-size: 8px; }

.fl-autocall__body {
    background: #f5fafb;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fl-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 42, 68, .1);
    padding: 14px 16px;
}
.fl-call--active {
    border: 1.5px solid var(--main-color);
    box-shadow: 0 4px 16px rgba(0, 188, 212, .18);
}
.fl-call__hm { font-size: 15px; font-weight: 700; color: var(--navy); min-width: 52px; }
.fl-call__type { font-size: 12px; color: #78909c; min-width: 32px; }
.fl-call__bar { flex: 1; height: 8px; background: #80deea; border-radius: 4px; }
.fl-call--active .fl-call__bar { background: var(--main-color); }

.fl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--main-color-dark);
    background: #e0f7fa;
    padding: 5px 10px;
    border-radius: 14px;
    white-space: nowrap;
}
.fl-badge i { font-size: 13px; }
.fl-badge--active { color: #fff; background: var(--main-color); }

@media (max-width: 480px) {
    .fl-autocall__body { padding: 14px 14px; }
    .fl-call { gap: 10px; padding: 10px 12px; }
    .fl-call__bar { min-width: 24px; }
}

@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(26, 42, 68, 0.05) 0%, rgba(26, 42, 68, 0.02) 100%);
    border-top: 3px solid var(--navy);
    border-bottom: 3px solid var(--navy);
}

/* ヘッダー部分（タイトル・キャッチ） */
.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: 17px;
    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);
}

/* 機能セクション締めのCTA（中央寄せ・直前のブロックと間隔を詰める） */
.lp-feature-cta {
    text-align: center;
    margin-top: -28px;   /* 直前ブロックの margin-bottom:64px を詰めて浮きを解消 */
    margin-bottom: 24px;
}
.lp-feature-cta .lp-feature-btn i {
    margin-left: 8px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .lp-feature-cta {
        margin-top: -12px;
        margin-bottom: 16px;
    }
}

/* カスタム開発セクション（特別デザイン） */
.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-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 36px auto 0;
    flex-wrap: wrap;
}
.lp-faq-tab {
    flex: 1 1 0;
    min-width: 160px;
    padding: 14px 18px;
    border: 2px solid var(--main-color);
    border-radius: 999px;
    background: var(--white);
    color: var(--main-color-dark);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.lp-faq-tab:hover {
    background: var(--light-color);
}
.lp-faq-tab.is-active {
    background: var(--main-color);
    color: var(--white);
}
/* タブ直後のパネルは上マージンを詰める */
.lp-faq-tabs + .lp-faq-panel {
    margin-top: 20px;
}
@media (max-width: 600px) {
    .lp-faq-tab {
        font-size: 13px;
        padding: 12px 10px;
        min-width: 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: 16px;
    line-height: 1.85;
    color: var(--text-color);
    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(--navy) 0%, var(--navy-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: var(--white);
    color: var(--text-color);
    border-top: 1px solid #e6ebf0;
}

.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;
}

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

.lp-footer-col-title {
    font-size: 0.9em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6ebf0;
}

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

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

.lp-footer-copy {
    font-size: 0.75em;
    color: #94a3b8;
    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: 44px 0;
    }

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

    .lp-hero-left,
    .lp-hero-right {
        width: 100%;
        flex: none;
    }

    .lp-hero-right {
        margin-right: 0;
    }

    .lp-hero-actions {
        justify-content: flex-start;
    }

    /* 課題セクション（スマホ） */
    .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);
    }
}

/* ========================================
   共通ページヒーロー（ネイビー＋斜めファセット）
   ※ 各ページ個別ヒーローの統一用。landing_parts/_page_hero.html とセット
   ======================================== */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 76px 24px 84px;
    text-align: center;
}
/* 明るい斜め面（左・ティールの差し色） */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(77, 208, 225, 0.12);
    clip-path: polygon(0 0, 52% 0, 26% 100%, 0 100%);
    pointer-events: none;
}
/* 暗い斜め面（右） */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    clip-path: polygon(100% 0, 100% 100%, 62% 100%, 86% 0);
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
}
.page-hero-eyebrow {
    display: block;
    font-size: clamp(13px, 1vw + 8px, 15px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4dd0e1;
    margin-bottom: 10px;
}
.page-hero-title {
    font-size: clamp(28px, 2.5vw + 16px, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 40, 48, 0.18);
}
.page-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
    margin: 16px 0 0;
}

/* パンくず */
.page-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eef2f5;
}
.page-breadcrumb-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #8a98a5;
}
.page-breadcrumb-inner a { color: #00838f; text-decoration: none; }
.page-breadcrumb-inner a:hover { text-decoration: underline; }
.page-breadcrumb-inner i { font-size: 10px; color: #b0bec5; }
