/* ========================================
   機能詳細ページ 共通CSS
   ======================================== */

/* ヒーロー */
.fd-hero {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.fd-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: center;
}

.fd-hero-text {
    color: #fff;
}

.fd-hero-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.8em;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.fd-hero-title {
    font-size: clamp(32px, 3vw + 16px, 48px);
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fd-hero-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.fd-hero-image {
    text-align: center;
}

.fd-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.fd-hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1em;
}

/* コンテンツエリア */
.fd-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

.fd-content {
    padding: 80px 0;
}

/* 導入事例セクション（ランディングと同じ） */
.fd-cases {
    padding: 80px 0;
    background: #f9fafb;
}

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

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

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

.fd-cases-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.fd-cases-card-no-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2em;
}

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

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

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

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

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

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

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

.fd-cases-more-link:hover {
    background: #00BCD4;
    color: #fff;
}

/* ========================================
   課題セクション
   ======================================== */
.fd-problems {
    padding: 80px 0;
    background: #fff;
}

.fd-problems-title {
    text-align: center;
    font-size: clamp(22px, 2vw + 12px, 30px);
    font-weight: 800;
    color: #333;
    margin-bottom: 48px;
}

.fd-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fd-problem-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fd-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.fd-problem-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9em;
}

.fd-problem-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.fd-problem-name {
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
    padding: 20px 20px 0;
    margin-bottom: 10px;
}

.fd-problem-desc {
    font-size: 0.9em;
    color: #666;
    line-height: 1.8;
    padding: 0 20px 24px;
}

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

    .fd-problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   ソリューションセクション
   ======================================== */
.fd-solution {
    padding: 80px 0;
    background: #f9fafb;
}

.fd-solution-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.fd-solution-label {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: #00BCD4;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.fd-solution-title {
    font-size: clamp(22px, 2vw + 12px, 30px);
    font-weight: 800;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.fd-solution-highlight {
    color: #00BCD4;
}

.fd-solution-desc {
    font-size: 15px;
    color: #555;
    line-height: 2.0;
    text-align: left;
}

.fd-solution-image {
    max-width: 900px;
    margin: 0 auto;
}

.fd-solution-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 188, 212, 0.1), 0 2px 20px rgba(0, 188, 212, 0.08);
    border: 3px solid #fff;
}

.fd-solution-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1em;
    box-shadow: 0 8px 40px rgba(0, 188, 212, 0.1), 0 2px 20px rgba(0, 188, 212, 0.08);
    border: 3px solid #fff;
}

/* スマホ用画像（PC時は非表示） */
.fd-solution-image-sp {
    display: none;
}

.fd-solution-image-sp img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 188, 212, 0.1), 0 2px 20px rgba(0, 188, 212, 0.08);
    border: 3px solid #fff;
}

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

    .fd-solution-header {
        margin-bottom: 24px;
    }

    .fd-solution-image-sp {
        display: block;
        margin: 24px 0;
    }

    .fd-solution-image-pc {
        display: none;
    }
}

/* ========================================
   料金注意セクション
   ======================================== */
.fd-pricing-note {
    padding: 48px 0;
    background: #FFF8E1;
}

.fd-pricing-note-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fd-pricing-note-label {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: #F57F17;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.fd-pricing-note-title {
    font-size: clamp(18px, 1.5vw + 10px, 24px);
    font-weight: 800;
    color: #E65100;
    margin-bottom: 16px;
}

.fd-pricing-note-desc {
    font-size: 15px;
    color: #555;
    line-height: 2.0;
}

@media (max-width: 768px) {
    .fd-pricing-note {
        padding: 32px 0;
    }
}

/* ========================================
   ソリューション分割（左テキスト・右画像）
   ======================================== */
.fd-solution-split {
    padding: 80px 0;
    background: #f9fafb;
}

.fd-solution-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fd-solution-split-text {
    /* fd-solution-labelなど既存スタイルを使用 */
}

.fd-solution-split-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,188,212,0.1), 0 2px 20px rgba(0,188,212,0.08);
}

@media (max-width: 768px) {
    .fd-solution-split {
        padding: 48px 0;
    }

    .fd-solution-split-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   特徴カードセクション
   ======================================== */
.fd-feature-cards {
    padding: 80px 0;
    background: #fff;
}

.fd-feature-cards-header {
    text-align: center;
    margin-bottom: 32px;
}

.fd-feature-cards-title {
    font-size: clamp(20px, 2vw + 10px, 26px);
    font-weight: 800;
    color: #333;
}

.fd-feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fd-feature-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fd-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.fd-feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #E0F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: #00BCD4;
}

.fd-feature-card-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.fd-feature-card-desc {
    font-size: 0.9em;
    color: #666;
    line-height: 1.8;
}

.fd-feature-cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .fd-feature-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fd-feature-cards {
        padding: 48px 0;
    }

    .fd-feature-cards-grid,
    .fd-feature-cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   機能詳細セクション（左右交互レイアウト）
   ======================================== */
.fd-features-detail {
    padding: 80px 0;
    background: #fff;
}

.fd-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.fd-detail-row:last-child {
    margin-bottom: 0;
}

.fd-detail-row.reverse {
    direction: rtl;
}

.fd-detail-row.reverse > * {
    direction: ltr;
}

.fd-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,188,212,0.1), 0 2px 20px rgba(0,188,212,0.08);
}

.fd-detail-image-noshadow img {
    box-shadow: none;
    border-radius: 12px;
}

/* スマホ用画像（PC時は非表示） */
.fd-detail-image-sp {
    display: none;
}

.fd-detail-image-sp img {
    width: 100%;
    height: auto;
}

.fd-detail-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1em;
    box-shadow: 0 8px 40px rgba(0,188,212,0.1), 0 2px 20px rgba(0,188,212,0.08);
}

.fd-detail-label {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: #fff;
    background: #00BCD4;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.fd-detail-title {
    font-size: clamp(18px, 1.5vw + 10px, 24px);
    font-weight: 800;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fd-detail-desc {
    font-size: 15px;
    color: #555;
    line-height: 2.0;
}

@media (max-width: 768px) {
    .fd-features-detail {
        padding: 48px 0;
    }

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

    .fd-detail-row.reverse {
        direction: ltr;
    }

    .fd-detail-image {
        order: -1;
    }

    /* スマホ用画像がある行ではPC用画像を非表示 */
    .fd-detail-row:has(.fd-detail-image-sp) > .fd-detail-image {
        display: none;
    }

    .fd-detail-image-sp {
        display: block;
        margin: 16px 0;
    }
}

/* ========================================
   オートコール アニメーション
   ======================================== */
.ac-anim {
    width: 100%;
}

.ac-steps {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    align-items: center;
    gap: 0;
}

.ac-step {
    width: 100%;
    text-align: center;
    opacity: 0.35;
    transition: all 0.5s ease;
}

.ac-step-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 16px 12px;
    backdrop-filter: blur(4px);
}

.ac-step-emoji {
    font-size: 28px;
    margin-bottom: 6px;
    display: inline-block;
}

.ac-step-label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.ac-step-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.ac-step-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    line-height: 1.5;
}

.ac-timer {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 6px 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.ac-arrow {
    text-align: center;
}

.ac-status {
    margin-top: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ac-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: background 0.3s;
}

.ac-status-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

/* ========================================
   プッシュ通知 アニメーション
   ======================================== */
.push-anim {
    width: 100%;
}

.push-anim-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* スマホ */
.push-phone-wrap {
    flex: 0 0 auto;
}

.push-phone {
    width: 240px;
}

.push-phone-frame {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 28px;
    padding: 10px 7px 16px;
    overflow: hidden;
}

.push-notch {
    width: 50px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    margin: 0 auto 8px;
}

.push-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    margin-bottom: 5px;
}

.push-time-small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.push-battery {
    width: 11px;
    height: 7px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    position: relative;
}

.push-battery-tip {
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.push-battery-fill {
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

/* 通知バナー */
.push-banner {
    opacity: 0;
    transform: translateY(-50px);
    background: rgba(255,255,255,0.12);
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 8px 8px;
    margin: 0 2px 5px;
    transition: none;
    text-align: left;
}

.push-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
}

.push-banner-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.push-banner-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.push-banner-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
}

.push-banner-title {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.push-banner-time {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.push-banner-from {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1px;
}

.push-banner-msg {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ロック画面 */
.push-lockscreen {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.push-clock {
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.push-date {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.push-check {
    opacity: 0;
    transform: scale(0);
    background: #00BCD4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    transition: none;
}

.push-swipe {
    background: rgba(255,255,255,0.08);
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 4px 8px;
    width: 100%;
    box-sizing: border-box;
}

.push-swipe-text {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.push-home-bar {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 5px auto 0;
}

/* 右テキスト */
.push-features {
    flex: 1;
    min-width: 0;
}

.push-status-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.push-features-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.push-features-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.push-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.push-feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s, transform 0.4s;
}

.push-feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.push-feature-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.push-feature-item span {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .push-anim-inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   CTI アニメーション
   ======================================== */
.cti-anim {
    width: 100%;
}

.cti-anim-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* PCモック */
.cti-pc-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cti-pc {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 8px;
    width: 260px;
}

.cti-titlebar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.cti-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0.7;
}

.cti-urlbar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    height: 12px;
    margin-left: 4px;
}

.cti-screen {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 10px;
    min-height: 200px;
    position: relative;
}

.cti-list-title {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.cti-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.cti-list-row {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 5px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cti-list-text {
    font-size: 9px;
    color: #fff;
}

.cti-badge {
    font-size: 7px;
    border-radius: 3px;
    padding: 1px 5px;
}

.cti-badge-active {
    background: #00BCD4;
    color: #fff;
}

.cti-badge-reserved {
    color: rgba(255,255,255,0.5);
    border: 0.5px solid rgba(255,255,255,0.2);
}

/* 着信インジケーター */
.cti-ring {
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 5px 8px;
    margin-bottom: 6px;
    border: 0.5px solid rgba(255,255,255,0.15);
    transition: opacity 0.3s;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
}

.cti-ring-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f44336;
    flex-shrink: 0;
}

/* CTIポップアップ */
.cti-popup {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    position: absolute;
    bottom: 8px;
    right: 8px;
    left: 8px;
    background: rgba(0,40,50,0.95);
    border: 1.5px solid #00BCD4;
    border-radius: 8px;
    padding: 10px;
    transition: none;
}

.cti-popup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
    font-size: 10px;
    font-weight: 500;
    color: #00BCD4;
}

.cti-popup-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BCD4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cti-popup-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}

.cti-popup-row {
    opacity: 0;
    transform: translateX(-6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none;
}

.cti-popup-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.cti-popup-value {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
}

.cti-popup-btn-wrap {
    opacity: 0;
    transform: translateX(-6px);
    transition: none;
    border-top: 0.5px solid rgba(255,255,255,0.15);
    padding-top: 7px;
}

.cti-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 5px 8px;
    border: 0.5px solid rgba(255,255,255,0.15);
    font-size: 9px;
    font-weight: 500;
    color: #00BCD4;
}

.cti-stand-neck {
    width: 36px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 0 0 3px 3px;
}

.cti-stand-base {
    width: 72px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* カード5枚グリッド（2-1-2 ひし形配置） */
.cti-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 88%;
    max-width: 300px;
}

.cti-cards-grid .cti-rcard:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

/* 右テキスト */
.cti-features {
    flex: 1;
    min-width: 0;
}

.cti-status-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.cti-features-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cti-features-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cti-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cti-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s, transform 0.4s;
}

.cti-feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.cti-feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cti-feature-item span {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .cti-anim-inner {
        flex-direction: column;
        gap: 20px;
    }

    .cti-pc {
        width: 92vw;
        max-width: 360px;
    }

    .cti-screen {
        padding: 14px;
        min-height: 240px;
    }

    .cti-list-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .cti-list {
        gap: 6px;
        margin-bottom: 10px;
    }

    .cti-list-row {
        padding: 7px 10px;
    }

    .cti-list-text {
        font-size: 12px;
    }

    .cti-badge {
        font-size: 9px;
        padding: 2px 7px;
    }

    .cti-ring {
        font-size: 11px;
        padding: 7px 10px;
    }

    .cti-ring-dot {
        width: 10px;
        height: 10px;
    }

    .cti-popup {
        padding: 12px;
    }

    .cti-popup-header {
        font-size: 12px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .cti-popup-label {
        font-size: 11px;
    }

    .cti-popup-value {
        font-size: 13px;
    }

    .cti-popup-btn {
        font-size: 11px;
        padding: 7px 10px;
    }

    .cti-stand-neck {
        width: 44px;
        height: 12px;
    }

    .cti-stand-base {
        width: 88px;
        height: 5px;
    }
}

/* ========================================
   ノート アニメーション
   ======================================== */
.note-anim {
    width: 100%;
}

.note-anim-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* PCモック */
.note-pc-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.note-pc {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 8px;
    width: 200px;
}

.note-titlebar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.note-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0.7;
}

.note-urlbar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    height: 12px;
    margin-left: 4px;
}

.note-screen {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 10px;
    min-height: 180px;
}

.note-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
    font-size: 10px;
    font-weight: 500;
    color: #fff;
}

.note-save-badge {
    font-size: 8px;
    background: #00BCD4;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.note-entry {
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 6px 8px;
    margin-bottom: 5px;
}

.note-entry-meta {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.note-entry-text {
    font-size: 9px;
    color: #fff;
}

.note-input-area {
    background: rgba(255,255,255,0.08);
    border: 1px solid #00BCD4;
    border-radius: 5px;
    padding: 6px 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.note-input-meta {
    font-size: 8px;
    color: #00BCD4;
    margin-bottom: 3px;
}

.note-input-text {
    font-size: 9px;
    color: #fff;
}

.note-cursor {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #fff;
    margin-left: 1px;
    vertical-align: middle;
}

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.note-stand-neck {
    width: 30px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 0 0 3px 3px;
}

.note-stand-base {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* 矢印 */
.note-arrow-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.note-arrow {
    opacity: 0;
    transition: opacity 0.5s;
    text-align: center;
}

.note-arrow-label {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-top: 2px;
}

/* スタッフ一覧 */
.note-staff-list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.note-status-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    transition: all 0.3s;
}

.note-staff-card {
    opacity: 0.35;
    transform: scale(0.95);
    transition: opacity 0.4s, transform 0.4s, border-color 0.4s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 8px 10px;
}

.note-staff-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.note-staff-info {
    flex: 1;
}

.note-staff-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.note-staff-role {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.note-staff-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@media (max-width: 768px) {
    .note-anim-inner {
        flex-direction: column;
        gap: 16px;
    }

    .note-pc {
        width: 92vw;
        max-width: 380px;
        padding: 10px;
    }

    .note-screen {
        padding: 12px;
        min-height: auto;
    }

    .note-header {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .note-save-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .note-entry {
        padding: 8px 10px;
        margin-bottom: 6px;
    }

    .note-entry-meta {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .note-entry-text {
        font-size: 12px;
    }

    .note-input-area {
        padding: 8px 10px;
    }

    .note-input-meta {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .note-input-text {
        font-size: 12px;
    }

    .note-stand-neck {
        width: 44px;
        height: 10px;
    }

    .note-stand-base {
        width: 88px;
        height: 5px;
    }

    .note-arrow-wrap {
        transform: rotate(90deg);
    }

    .note-arrow-label {
        font-size: 12px;
        transform: rotate(-90deg);
    }

    .note-staff-list {
        width: 92vw;
        max-width: 380px;
        gap: 8px;
    }

    .note-staff-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .note-staff-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .note-staff-name {
        font-size: 14px;
    }

    .note-staff-role {
        font-size: 11px;
    }

    .note-status-label {
        font-size: 14px;
    }
}

/* ========================================
   サイト自動連携 アニメーション
   ======================================== */
.sites-anim {
    width: 100%;
}

.sites-anim-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sites-diagram {
    flex: 0 0 auto;
    position: relative;
    width: 240px;
    height: 280px;
}

.sites-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sites-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00BCD4;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sites-center-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.sites-badge {
    position: absolute;
    top: calc(50% - 58px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s;
    background: rgba(0,40,50,0.9);
    border: 1px solid #00BCD4;
    border-radius: 6px;
    padding: 6px 12px;
    white-space: nowrap;
    z-index: 3;
    font-size: 13px;
    font-weight: 600;
    color: #00BCD4;
}

.sites-node {
    position: absolute;
    opacity: 0.35;
    transition: opacity 0.4s, transform 0.4s;
}

.sites-node-inner {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    text-align: center;
    min-width: 60px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.sites-node-check {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

/* ノード位置 */
.sites-pos-top    { top: 4px;    left: 50%; transform: translateX(-50%) scale(0.9); }
.sites-pos-tr     { top: 36px;   right: 4px; transform: scale(0.9); }
.sites-pos-br     { bottom: 36px; right: 4px; transform: scale(0.9); }
.sites-pos-bottom { bottom: 4px;  left: 50%; transform: translateX(-50%) scale(0.9); }
.sites-pos-bl     { bottom: 36px; left: 4px; transform: scale(0.9); }
.sites-pos-tl     { top: 36px;   left: 4px; transform: scale(0.9); }

/* 右テキスト */
.sites-features {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sites-status-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.sites-features-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sites-features-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sites-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.sites-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s, transform 0.4s;
}

.sites-feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.sites-feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sites-feature-item span {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .sites-anim-inner {
        flex-direction: column;
        gap: 20px;
    }

    .sites-diagram {
        width: 80vw;
        max-width: 340px;
        height: 85vw;
        max-height: 380px;
    }

    .sites-center {
        width: 72px;
        height: 72px;
    }

    .sites-center-text {
        font-size: 13px;
    }

    .sites-badge {
        font-size: 11px;
        padding: 5px 10px;
        top: calc(50% - 62px);
    }

    .sites-node-inner {
        padding: 8px 14px;
        min-width: 62px;
        font-size: 13px;
        border-radius: 10px;
    }

    .sites-node-check {
        width: 18px;
        height: 18px;
        top: -7px;
        right: -7px;
    }

    .sites-node-check svg {
        width: 10px;
        height: 10px;
    }

    .sites-pos-top    { top: 2px; }
    .sites-pos-tr     { top: 44px;  right: 2px; }
    .sites-pos-br     { bottom: 44px; right: 2px; }
    .sites-pos-bottom { bottom: 2px; }
    .sites-pos-bl     { bottom: 44px; left: 2px; }
    .sites-pos-tl     { top: 44px;  left: 2px; }
}

/* ========================================
   送迎管理 アニメーション
   ======================================== */
.transfer-anim {
    width: 100%;
}

.transfer-anim-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.transfer-devices {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.transfer-status-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    text-align: center;
    transition: all 0.3s;
}

.transfer-device-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transfer-pc {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 8px;
    width: 260px;
}

.transfer-pc-titlebar {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 5px;
}

.transfer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.7;
}

.transfer-pc-label {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
}

.transfer-sync-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    opacity: 0;
    transition: opacity 0.3s;
    margin-left: auto;
}

.transfer-screen {
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
    padding: 8px;
}

.transfer-screen-sm {
    padding: 6px;
}

.transfer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.transfer-row-sm {
    margin-bottom: 2px;
}

.transfer-stand-neck {
    width: 30px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 0 0 3px 3px;
}

.transfer-stand-base {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.transfer-device-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
    text-align: center;
}

.transfer-phones {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.transfer-phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transfer-phone {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: 6px;
    width: 115px;
}

.transfer-phone-notch {
    width: 24px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin: 0 auto 4px;
}

.transfer-phone-sync-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3px;
    padding-right: 2px;
}

.transfer-phone-bar {
    width: 20px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 4px auto 0;
}

/* 右テキスト */
.transfer-features {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.transfer-features-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.transfer-features-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.transfer-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.transfer-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s, transform 0.4s;
}

.transfer-feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.transfer-feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-feature-item span {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .transfer-anim-inner {
        flex-direction: column;
        gap: 20px;
    }

    .transfer-pc {
        width: 92vw;
        max-width: 360px;
        padding: 10px;
    }

    .transfer-pc-titlebar {
        gap: 4px;
        margin-bottom: 6px;
    }

    .transfer-pc-label {
        font-size: 10px;
    }

    .transfer-screen {
        padding: 10px;
    }

    .transfer-phones {
        gap: 16px;
    }

    .transfer-phone {
        width: 42vw;
        max-width: 165px;
        padding: 8px;
    }

    .transfer-phone-notch {
        width: 30px;
        height: 5px;
        margin-bottom: 5px;
    }

    .transfer-screen-sm {
        padding: 8px;
    }

    .transfer-phone-bar {
        width: 24px;
        height: 4px;
        margin-top: 5px;
    }

    .transfer-device-label {
        font-size: 11px;
        margin-top: 5px;
    }

    .transfer-status-label {
        font-size: 13px;
    }

    .transfer-stand-neck {
        width: 40px;
        height: 10px;
    }

    .transfer-stand-base {
        width: 76px;
        height: 4px;
    }

    .transfer-dot {
        width: 7px;
        height: 7px;
    }

    .transfer-sync-dot {
        width: 7px;
        height: 7px;
    }
}

/* ========================================
   顧客評価 アニメーション
   ======================================== */
.review-anim {
    width: 100%;
}

.review-anim-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* スマホ（pushと同じスタイル） */
.review-phone-wrap {
    flex: 0 0 auto;
}

.review-phone {
    width: 220px;
}

.review-phone-frame {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 28px;
    padding: 10px 7px 16px;
    overflow: hidden;
}

.review-notch {
    width: 50px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    margin: 0 auto 8px;
}

.review-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    margin-bottom: 5px;
}

.review-time-small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.review-battery {
    width: 11px;
    height: 7px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    position: relative;
}

.review-battery-tip {
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.review-battery-fill {
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.review-screen {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 10px;
}

.review-customer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
}

.review-customer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #00BCD4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-customer-info {
    flex: 1;
}

.review-customer-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.review-customer-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.review-customer-count {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.review-customer-schedule {
    font-size: 10px;
    color: #00BCD4;
    font-weight: 500;
}

.review-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-tag {
    opacity: 0;
    transform: translateY(5px);
    transition: none;
    border-radius: 12px;
    padding: 5px 10px;
    text-align: center;
}

.review-tag span {
    font-size: 11px;
    font-weight: 500;
}

.review-home-bar {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 5px auto 0;
}

/* 矢印 */
.review-arrow {
    flex: 0 0 auto;
    opacity: 0;
    transition: opacity 0.5s;
    text-align: center;
}

/* キャストアイコン */
.review-cast-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-cast-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.review-cast-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s;
}

.review-cast-anxious {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.25);
}

.review-cast-happy {
    background: rgba(76,175,80,0.2);
    border: 2px solid #4CAF50;
    opacity: 0;
    animation: glowGreen 2s ease-in-out infinite;
}

.review-cast-emoji {
    font-size: 52px;
    line-height: 1;
}

.review-cast-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-bubble-wrap {
    position: relative;
    min-width: 200px;
}

.review-bubble {
    transition: opacity 0.6s;
}

.review-bubble-happy {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.review-bubble-inner {
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    padding: 12px 14px;
    position: relative;
}

.review-bubble-inner-anxious {
    background: rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.2);
}

.review-bubble-inner-happy {
    background: rgba(76,175,80,0.15);
    border: 0.5px solid rgba(76,175,80,0.4);
}

.review-bubble-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    white-space: nowrap;
}

.review-bubble-text-happy {
    color: #C8E6C9;
    font-weight: 500;
}

.review-bubble-arrow-outer,
.review-bubble-arrow-inner {
    position: absolute;
    left: -8px;
    bottom: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.review-bubble-arrow-anxious-outer {
    border-right: 8px solid rgba(255,255,255,0.2);
}

.review-bubble-arrow-anxious-inner {
    left: -7px;
    border-right: 8px solid rgba(255,255,255,0.1);
}

.review-bubble-arrow-happy-outer {
    border-right: 8px solid rgba(76,175,80,0.4);
}

.review-bubble-arrow-happy-inner {
    left: -7px;
    border-right: 8px solid rgba(76,175,80,0.15);
}

.review-cast-labels {
    position: relative;
    height: 24px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-cast-label {
    position: absolute;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    transition: opacity 0.6s;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .review-anim-inner {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   比較セクション
   ======================================== */
.fd-compare-section {
    padding: 80px 0;
    background: #f9fafb;
}

.fd-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fd-compare-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    overflow: hidden;
}

.fd-compare-card-highlight {
    border: 2px solid #00BCD4;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.1);
}

.fd-compare-card-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fd-compare-card-highlight .fd-compare-card-title {
    background: #E0F7FA;
    color: #00838F;
    border-bottom: 1px solid #B2EBF2;
}

.fd-compare-card-body {
    padding: 20px;
}

.fd-compare-label {
    font-size: 0.85em;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.fd-compare-text {
    font-size: 0.9em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.fd-compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.fd-compare-list li {
    font-size: 0.9em;
    color: #555;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.fd-compare-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #00BCD4;
    font-weight: 700;
}

.fd-compare-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fd-compare-tag {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.fd-compare-tag-gray {
    background: #f0f0f0;
    color: #888;
}

.fd-compare-tag-primary {
    background: #E0F7FA;
    color: #00838F;
}

@media (max-width: 768px) {
    .fd-compare-section {
        padding: 48px 0;
    }

    .fd-compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   ハイライトバナー（背景色付き強調セクション）
   ======================================== */
.fd-highlight-banner {
    padding: 64px 24px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
}

.fd-highlight-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fd-highlight-banner-title {
    font-size: clamp(22px, 2.5vw + 12px, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.fd-highlight-banner-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 2.0;
}

@media (max-width: 768px) {
    .fd-highlight-banner {
        padding: 40px 20px;
    }

    .fd-highlight-banner-desc br {
        display: none;
    }
}

/* ========================================
   キャストマイページ アニメーション
   ======================================== */
.mypage-anim {
    width: 100%;
}

.mypage-anim-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mypage-phone-wrap {
    flex: 0 0 auto;
}

.mypage-phone {
    width: 200px;
}

.mypage-phone-frame {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(0,188,212,0.5);
    border-radius: 28px;
    padding: 10px 7px 16px;
    overflow: hidden;
}

.mypage-notch {
    width: 50px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    margin: 0 auto 8px;
}

.mypage-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    margin-bottom: 6px;
}

.mypage-time-small {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.mypage-battery {
    width: 11px;
    height: 7px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    position: relative;
}

.mypage-battery-tip {
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.mypage-battery-fill {
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.mypage-screen {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
}

.mypage-screen-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    padding-bottom: 5px;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
}

.mypage-screen-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00BCD4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mypage-screen-name {
    font-size: 9px;
    font-weight: 500;
    color: #fff;
}

.mypage-screen-sub {
    font-size: 7px;
    color: #00BCD4;
}

.mypage-screen-items {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mypage-screen-item {
    opacity: 0.3;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 5px 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
    font-size: 9px;
    color: #fff;
}

.mypage-item-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
}

.mypage-home-bar {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 5px auto 0;
}

/* 中央線 */
.mypage-lines-wrap {
    flex: 0 0 auto;
    width: 40px;
    height: 280px;
    position: relative;
}

.mypage-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 右タグ */
.mypage-tags {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.mypage-status-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    min-height: 16px;
    transition: all 0.3s;
}

.mypage-tag {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.mypage-tag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00BCD4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mypage-anim-inner {
        flex-direction: column;
        gap: 16px;
    }

    .mypage-lines-wrap {
        display: none;
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .fd-hero {
        padding: 48px 20px;
    }

    .fd-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fd-hero-image {
        order: 1;
    }

    .fd-content {
        padding: 48px 0;
    }

    .fd-cases {
        padding: 48px 0;
    }

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

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

/* ========================================
   イントロセクション（1カラム）
   ======================================== */
.fd-intro-section {
    padding: 80px 0;
    background: #fff;
}

.fd-intro-section-gray {
    background: #f9fafb;
}

.fd-intro-content {
    max-width: 800px;
    margin: 0 auto 48px;
}

.fd-intro-content:last-child {
    margin-bottom: 0;
}

.fd-intro-title {
    font-size: clamp(22px, 2vw + 12px, 30px);
    font-weight: 800;
    color: #333;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

.fd-intro-subtitle {
    font-size: 1em;
    font-weight: 700;
    color: #00BCD4;
    text-align: center;
    margin-bottom: 20px;
}

.fd-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 2.0;
    text-align: justify;
    word-break: break-all;
    margin-bottom: 32px;
}

.fd-intro-image {
    max-width: 800px;
    margin: 0 auto 16px;
}

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

.fd-intro-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1em;
}

.fd-intro-caption {
    font-size: 0.85em;
    color: #999;
    text-align: center;
    margin-bottom: 32px;
}

/* 課題カード（3列） */
.fd-intro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.fd-intro-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fd-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.fd-intro-card-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00BCD4;
}

.fd-intro-card-desc {
    font-size: 0.9em;
    color: #666;
    line-height: 1.9;
    text-align: justify;
}

@media (max-width: 1024px) {
    .fd-intro-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .fd-intro-section {
        padding: 48px 0;
    }

    .fd-intro-content {
        margin-bottom: 32px;
    }

    .fd-intro-title br {
        display: none;
    }
}

/* ========================================
   ボールドセクション（メインカラー背景・左右交互）
   ======================================== */
.fd-bold-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00BCD4 0%, #00838F 100%);
}

.fd-bold-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.fd-bold-label {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.fd-bold-title {
    font-size: clamp(22px, 2vw + 12px, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fd-bold-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 2.0;
}

/* 左右交互 行 */
.fd-bold-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.fd-bold-row:last-child {
    margin-bottom: 0;
}

.fd-bold-row-reverse {
    direction: rtl;
}

.fd-bold-row-reverse > * {
    direction: ltr;
}

/* 画像 */
.fd-bold-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.fd-bold-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 1em;
}

/* テキスト */
.fd-bold-badge {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    color: #00BCD4;
    background: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.fd-bold-row-title {
    font-size: clamp(18px, 1.5vw + 10px, 24px);
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fd-bold-row-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 2.0;
}

@media (max-width: 768px) {
    .fd-bold-section {
        padding: 48px 0;
    }

    .fd-bold-header {
        margin-bottom: 40px;
    }

    .fd-bold-title br,
    .fd-bold-desc br {
        display: none;
    }

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

    .fd-bold-row-reverse {
        direction: ltr;
    }

    .fd-bold-image {
        order: -1;
    }
}

/* ========================================
   ショーケースセクション（1カラム＋2カラム カード）
   ======================================== */
.fd-showcase {
    padding: 80px 0;
    background: #fff;
}

.fd-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.fd-showcase-title {
    font-size: clamp(22px, 2vw + 12px, 30px);
    font-weight: 800;
    color: #333;
    line-height: 1.6;
}

/* メインカード（1カラム） */
.fd-showcase-main-card {
    background: #00BCD4;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.fd-showcase-main-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.fd-showcase-main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.fd-showcase-main-heading {
    font-size: clamp(18px, 1.5vw + 10px, 24px);
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fd-showcase-main-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 2.0;
}

/* 画像プレースホルダー */
.fd-showcase-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1em;
}

.fd-showcase-image-placeholder-light {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* サブカード（2カラム） */
.fd-showcase-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.fd-showcase-sub-card {
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.fd-showcase-sub-card-primary {
    background: #00BCD4;
    border: 1px solid #00BCD4;
}

.fd-showcase-sub-card-light {
    background: #f7f9fb;
    border: 1px solid #e8edf2;
}

.fd-showcase-sub-text {
    flex: 1;
}

.fd-showcase-sub-heading {
    font-size: clamp(16px, 1.2vw + 8px, 20px);
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 12px;
}

.fd-showcase-sub-heading-dark {
    color: #333;
}

.fd-showcase-sub-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
}

.fd-showcase-sub-desc-dark {
    color: #555;
}

.fd-showcase-sub-image {
    flex: 0 0 140px;
}

.fd-showcase-sub-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* サブカードのプレースホルダー */
.fd-showcase-sub-card .fd-showcase-image-placeholder {
    aspect-ratio: 1 / 1;
}

/* ライトカードのプレースホルダー */
.fd-showcase-sub-card-light .fd-showcase-image-placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-color: #e8edf2;
    color: #ccc;
}

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

    .fd-showcase-main-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* 送迎アニメーションのスマホ調整 */
    .tf-bubble {
        width: 55px !important;
        height: 55px !important;
        font-size: 9px !important;
    }

    #transferAnimStage > div:last-child {
        width: 140px !important;
        height: 240px !important;
        border-radius: 20px !important;
        bottom: -40px !important;
    }

    #transferAnimStage > div:last-child > div:nth-child(2) {
        border-radius: 16px !important;
        padding: 8px 6px !important;
    }

    #transferAnimStage > div:last-child > div:nth-child(2) > div:first-child {
        font-size: 9px !important;
    }

    .tf-sr {
        height: 12px !important;
        border-radius: 4px !important;
    }

    .fd-showcase-sub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fd-showcase-sub-card {
        flex-direction: column;
    }

    .fd-showcase-sub-image {
        flex: none;
        width: 100%;
    }

    .fd-showcase-title br {
        display: none;
    }
}

/* ========================================
   3画面ナビセクション
   ======================================== */
.fd-nav-views {
    padding: 80px 0;
    background: #f9fafb;
}

.fd-nav-views-card {
    background: #E0F2F1;
    border-radius: 16px;
    padding: 40px;
}

.fd-nav-views-header {
    text-align: center;
    margin-bottom: 32px;
}

.fd-nav-views-title {
    font-size: clamp(20px, 1.8vw + 10px, 26px);
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
}

.fd-nav-views-desc {
    font-size: 14px;
    color: #555;
    line-height: 2.0;
    max-width: 700px;
    margin: 0 auto;
}

.fd-nav-views-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fd-nav-views-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.fd-nav-views-col-main {
    flex: 1.2;
}

.fd-nav-views-img {
    width: 100%;
    margin-bottom: 12px;
}

.fd-nav-views-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.fd-nav-views-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.fd-nav-views-label {
    font-size: clamp(11px, 0.9vw + 4px, 14px);
    color: #00BCD4;
    font-weight: 600;
    margin-bottom: 4px;
}

.fd-nav-views-name {
    font-size: clamp(14px, 1.2vw + 6px, 18px);
    font-weight: 700;
    color: #333;
}

.fd-nav-views-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .fd-nav-views {
        padding: 48px 0;
    }

    .fd-nav-views-card {
        padding: 24px 16px;
    }

    .fd-nav-views-columns {
        flex-direction: column;
        gap: 12px;
    }

    /* 送迎管理 → ↓ → 受付表 → ↓ → 予約表 */
    .fd-nav-views-col-main { order: 1; }
    .fd-nav-views-arrow:first-of-type { order: 2; }
    .fd-nav-views-col:first-child { order: 3; }
    .fd-nav-views-arrow:last-of-type { order: 4; }
    .fd-nav-views-col:last-child { order: 5; }

    .fd-nav-views-arrow {
        margin-bottom: 0;
        transform: rotate(90deg);
        order: unset;
    }

    /* HTMLの順番: 受付(1) 矢印(2) 送迎(3) 矢印(4) 予約(5) → 並べ替え */
    .fd-nav-views-columns > :nth-child(1) { order: 3; } /* 受付 */
    .fd-nav-views-columns > :nth-child(2) { order: 2; } /* 矢印1 */
    .fd-nav-views-columns > :nth-child(3) { order: 1; } /* 送迎 */
    .fd-nav-views-columns > :nth-child(4) { order: 4; } /* 矢印2 */
    .fd-nav-views-columns > :nth-child(5) { order: 5; } /* 予約 */
}

/* ========================================
   画像付きカードセクション（3カラム）
   ======================================== */
.fd-imgcards {
    padding: 80px 0;
    background: #fff;
}

.fd-imgcards-gray {
    background: #f9fafb;
}

.fd-imgcards-header {
    text-align: center;
    margin-bottom: 40px;
}

.fd-imgcards-subtitle {
    font-size: 1em;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 12px;
}

.fd-imgcards-title {
    font-size: clamp(20px, 2vw + 10px, 26px);
    font-weight: 800;
    color: #333;
    line-height: 1.6;
}

.fd-imgcards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fd-imgcard {
    display: flex;
    flex-direction: column;
}

.fd-imgcard-img {
    margin-bottom: 16px;
}

.fd-imgcard-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.fd-imgcard-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.fd-imgcard-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.fd-imgcard-desc {
    font-size: 0.9em;
    color: #555;
    line-height: 1.9;
}

@media (max-width: 1024px) {
    .fd-imgcards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    .fd-imgcards-title br {
        display: none;
    }
}
