@charset "UTF-8";

/* ==========================================================================
   共通変数・基本定義
   ========================================================================== */
:root {
    --wd-emerald:       #00bfa5;
    --wd-emerald-dark:  #00897b;
    --wd-emerald-light: #e6faf7;
    --wd-navy:          #112244;
    --wd-navy-mid:      #1a3560;
    --wd-navy-light:    #eef1f6;
    --wd-red:           #e53935;
    --wd-red-light:     #fff5f5;
    --wd-yellow-light:  #fef8db;
    --wd-bg:            #ffffff;
    --wd-bg-alt:        #f8fafc;
    --wd-text:          #1a2340;
    --wd-text-muted:    #5a6680;
    --wd-border:        #e2e8f0;
    --wd-primary:       var(--wd-navy);
    --wd-accent:        var(--wd-emerald);

    /* ── 拡張用共通カラー変数 ── */
    --wd-white:         #ffffff;
    --wd-black:         #000000;
    --wd-bg-silver:     #f1f5f9;
    --wd-bg-light:      #f1f3f5;
    --wd-bg-alt2:       #f9fafb;
    --wd-bg-card-footer: #fafbfc;
    --wd-bg-grey:       #f5f5f5;
    --wd-border-dark:   #cccccc;
    --wd-red-border:    #ffe3e3;
    --wd-emerald-border: #b2dfdb;
    --wd-divider:       #dddddd;
    --wd-disabled:      #94a3b8;
    --wd-badge-grey-text: #495057;
}

#whodos-lp {
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--wd-text);
    background-color: var(--wd-bg);
    line-height: 1.7;
    overflow-x: hidden;
}
#whodos-lp .wd-keep {
    display: inline-block;
    white-space: nowrap;
}

#whodos-lp .wd-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

#whodos-lp .wd-bg-alt { background-color: var(--wd-bg-alt); }
#whodos-lp .wd-txt-red,
#whodos-lp.wd-txt-red {
    color: var(--wd-red) !important;
    font-weight: bold;
}
#whodos-lp .wd-txt-emerald,
#whodos-lp.wd-txt-emerald {
    color: var(--wd-emerald) !important;
    font-weight: bold;
}

#whodos-lp img {
    max-width: 100%;
    height: auto;
    display: block;
}

#whodos-lp section { padding: 32px 0; }

#pagetop.corporative #whodos-lp .wd-section-title {
    font-size: clamp(20px, 4.2vw, 32px);
    font-weight: bold;
    color: var(--wd-navy);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

#whodos-lp .wd-section-sub {
    font-size: 18px;
    color: var(--wd-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* ============================================================
   アクセシビリティ・SEO用非表示ユーティリティ
============================================================ */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================================
   ヒーローエリア
   ========================================================================== */
#whodos-lp .wd-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--wd-bg-silver); /* refined light silver base */
    padding: 40px 0 24px 0;
    color: var(--wd-primary);
}

#whodos-lp .wd-hero .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(90px);
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

#whodos-lp .wd-hero .blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    will-change: transform; /* hardware acceleration to prevent browser freezing */
}

#whodos-lp .wd-hero .blob-emerald1 {
    background: radial-gradient(circle, rgba(0, 191, 165, 0.08) 0%, rgba(0, 191, 165, 0) 70%);
    top: -20%;
    left: -10%;
    animation: wdMoveEmerald1 20s infinite alternate ease-in-out;
}

#whodos-lp .wd-hero .blob-navy {
    background: radial-gradient(circle, rgba(17, 34, 68, 0.28) 0%, rgba(17, 34, 68, 0) 70%); /* Brand navy */
    bottom: -20%;
    right: -10%;
    animation: wdMoveNavy 25s infinite alternate ease-in-out;
}

#whodos-lp .wd-hero .blob-emerald2 {
    background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0%, rgba(0, 137, 123, 0) 70%);
    top: 20%;
    left: 30%;
    animation: wdMoveEmerald2 18s infinite alternate ease-in-out;
}

#whodos-lp .wd-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
}

@keyframes wdMoveEmerald1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(140px, 80px) scale(1.2); }
    100% { transform: translate(-60px, 150px) scale(0.95); }
}

@keyframes wdMoveNavy {
    0% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-140px, -110px) scale(0.9); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}

@keyframes wdMoveEmerald2 {
    0% { transform: translate(0, 0) scale(0.9); }
    50% { transform: translate(100px, -100px) scale(1.1); }
    100% { transform: translate(-110px, 50px) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    #whodos-lp .wd-hero .blob {
        animation: none !important;
    }
}

#whodos-lp .wd-hero-content {
    flex: 1.2;
    max-width: 580px;
}

#whodos-lp .wd-hero-header-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

#whodos-lp .wd-hero-logo-box { display: flex; align-items: flex-end; gap: 12px; }
#whodos-lp .wd-hero-main-logo { height: 64px; width: auto; }
#whodos-lp .wd-hero-main-logo-lg { height: 180px; width: auto; }
#whodos-lp .wd-hero-logo-sub { font-size: 13px; color: var(--wd-text-muted); font-weight: bold; padding-bottom: 6px; }
#whodos-lp .wd-hero-title { font-size: clamp(25px, 3.1vw, 44px); font-weight: bold; line-height: 1.4; color: var(--wd-navy); margin: 0; }
#whodos-lp .wd-hero-lead { font-size: 20px; line-height: 1.7; color: var(--wd-text-muted); margin: 0; }
#whodos-lp .wd-hero-btns { text-align: center; margin-top: 24px; }

#whodos-lp .wd-hero-visual-side { flex: 0.9; max-width: 440px; width: 100%; }
#whodos-lp .wd-hero-visual-side-lg { flex: 1; max-width: 560px; }

#whodos-lp .wd-hero-video-container { border-radius: 8px; overflow: hidden; background-color: var(--wd-black); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }
#whodos-lp .wd-hero-video-wrapper { position: relative; width: 100%; padding-top: 56.25%; }
#whodos-lp .wd-hero-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ==========================================================================
   ヒーロー内受賞実績 ＆ 導入企業ロゴエリア
   ========================================================================== */
#whodos-lp .wd-hero-awards-and-logos {
    position: relative;
    z-index: 2; /* グラデーション背景の上に表示 */
}

#whodos-lp .wd-hero-logos-full-band {
    background-color: var(--wd-bg);
    width: 100%;
    padding: 16px 0;
    box-sizing: border-box;
    border-top: 1px solid var(--wd-border);
    border-bottom: 1px solid var(--wd-border);
    margin-top: 24px;
    margin-bottom: 16px;
}

#whodos-lp .wd-hero-awards-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}
#whodos-lp .wd-hero-awards-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--wd-emerald-dark);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
#whodos-lp .wd-hero-awards-title::before {
    content: "\FF3C"; /* ＼ (Unicode Escape) */
}
#whodos-lp .wd-hero-awards-title::after {
    content: "\FF0F"; /* ／ (Unicode Escape) */
}

#whodos-lp .wd-hero-logos-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

#whodos-lp .wd-hero-awards-label,
#whodos-lp .wd-hero-logos-label {
    font-size: 14px;
    color: var(--wd-navy-mid);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    border-right: none;
    padding-right: 0;
    text-align: center;
}

#whodos-lp .wd-hero-awards-images {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#whodos-lp .wd-hero-award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 0 1 240px; /* 画面幅が狭い時は適切に縮むように変更 */
    min-width: 140px; /* 潰れすぎを防ぐための最小幅 */
}

#whodos-lp .wd-hero-award-img-wrap {
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#whodos-lp .wd-hero-award-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

#whodos-lp .wd-hero-award-img-lg {
    height: 124px;
}

#whodos-lp .wd-hero-award-text {
    font-size: 13px;
    font-weight: bold;
    color: var(--wd-navy-mid);
    line-height: 1.5;
    word-break: keep-all; /* 単語の途中での不自然な改行を防ぐ */
    overflow-wrap: normal;
}

#whodos-lp .wd-hero-award-frame-left,
#whodos-lp .wd-hero-award-frame-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
    flex: 0 0 auto; /* 左右のフレーム画像が縮んで消えないように固定 */
}

#whodos-lp .wd-hero-award-frame-img {
    height: 124px;
    width: auto;
    object-fit: contain;
    display: block;
}

#whodos-lp .wd-hero-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    width: 100%;
}

#whodos-lp .wd-hero-logos-grid .wd-logo-item {
    flex: 0 1 auto;
    width: auto;
    max-width: 200px;
    height: 64px;
    object-fit: contain;
    opacity: 1;
}

/* ==========================================================================
   お悩み提起セクション
   ========================================================================== */
#whodos-lp .wd-problem-section {
    background-color: var(--wd-bg);
}

#whodos-lp .wd-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* お悩みカード：画像左・テキスト右の横並び */
#whodos-lp .wd-problem-card {
    background: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(17,34,68,0.04);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    padding: 24px 20px;
}

/* 画像エリア（左） */
#whodos-lp .wd-problem-card-img-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#whodos-lp .wd-problem-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* テキストエリア（右） */
#whodos-lp .wd-problem-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

#whodos-lp .wd-problem-card h4 {
    font-size: 17px;
    font-weight: bold;
    color: var(--wd-primary);
    line-height: 1.4;
    margin: 0 0 6px 0;
    min-height: 2.8em;
}

#whodos-lp .wd-problem-card p { font-size: 14px; color: var(--wd-text-muted); line-height: 1.6; margin: 0; }

#whodos-lp .wd-fudo-msg-zone-full {
    background-color: var(--wd-emerald);
    padding: 32px 24px;
    margin: 32px 0 0 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.12);
}

#whodos-lp .wd-emerald-inner-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    color: var(--wd-white);
    max-width: 1100px;
    margin: 0 auto;
}

#whodos-lp .wd-fudo-left-text { flex: 1.2; }
#whodos-lp .wd-fudo-left-text h3 { font-size: 30px; font-weight: bold; color: var(--wd-white); margin: 0 0 12px 0; line-height: 1.2; }
#whodos-lp .wd-fudo-lead { font-size: 24px; font-weight: bold; line-height: 1.4; margin: 0 0 16px 0; }
#whodos-lp .wd-fudo-sub { font-size: 21px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin: 0; }

#whodos-lp .wd-fudo-sub-lg {
    font-size: 21px;
    line-height: 1.8;
}

#whodos-lp .wd-fudo-right-illustration { flex: 0.8; display: flex; justify-content: center; align-items: center; }
#whodos-lp .wd-fudo-img { max-width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   「制度よりも風土」対比セクション
   -------------------------------------------------------------------------- */
#whodos-lp .wd-concept-section { background-color: var(--wd-bg); }

#whodos-lp .wd-concept-compare-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

#whodos-lp .wd-concept-col { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(17,34,68,0.01); }
#whodos-lp .wd-concept-col-ng { background-color: var(--wd-red-light); border: 1px solid var(--wd-red-border); }
#whodos-lp .wd-concept-col-ok { background-color: var(--wd-emerald-light); border: 1px solid var(--wd-emerald-border); }

#whodos-lp .wd-concept-col-head {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

#whodos-lp .wd-concept-col-head h3 { font-size: 18px; font-weight: bold; margin: 0; }
#whodos-lp .wd-concept-col-ng .wd-concept-col-head h3 { color: var(--wd-red); }
#whodos-lp .wd-concept-col-ok .wd-concept-col-head h3 { color: var(--wd-emerald-dark); }

#whodos-lp .wd-concept-badge-text-icon { font-size: 18px; line-height: 1; user-select: none; }

#whodos-lp .wd-concept-list {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#whodos-lp .wd-concept-list li {
    font-size: 16px;
    font-weight: bold;
    color: var(--wd-text);
    display: flex;
    align-items: center;
    line-height: 1.4;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

#whodos-lp .emoji-bullet-red,
#whodos-lp .emoji-bullet-blue,
#whodos-lp .emoji-bullet-emerald {
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
    user-select: none;
}

#whodos-lp .wd-check-mark-concept {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23e6faf7' stroke='%2300897b' stroke-width='1.5'/%3E%3Cpath d='M7 12l4 4 6-6' stroke='%2300897b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    user-select: none;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Whodo整場の3つの強み
   -------------------------------------------------------------------------- */
#whodos-lp .wd-strength-section {
    background-color: var(--wd-bg);
}

#whodos-lp .wd-strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

#whodos-lp .wd-strength-card {
    background-color: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

#whodos-lp .wd-strength-card-num-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--wd-emerald-light);
    color: var(--wd-emerald-dark);
    font-size: 32px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    line-height: 1.2;
}

#whodos-lp .wd-strength-card-img-wrap {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
#whodos-lp .wd-strength-img-tag { max-height: 100%; max-width: 100%; object-fit: contain; }

#whodos-lp .wd-strength-card h3 { font-size: 20px; font-weight: bold; color: var(--wd-primary); margin: 0 0 14px 0; }
#whodos-lp .wd-strength-card-desc { font-size: 14px; color: var(--wd-text-muted); line-height: 1.6; text-align: left; margin: 0; }

/* --------------------------------------------------------------------------
   4つのステップセクション
   -------------------------------------------------------------------------- */
#whodos-lp .wd-steps-section {
    background-color: var(--wd-bg);
}

#whodos-lp .wd-service-themes-visual {
    max-width: 100%;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#whodos-lp .wd-service-themes-visual img {
    width: 100%;
    height: auto;
    max-width: 1000px;
    object-fit: cover;
}

#whodos-lp .wd-steps-top-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--wd-navy);
    text-align: center;
    line-height: 1.4;
}

#whodos-lp .wd-step-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 24px;
}

#whodos-lp .wd-step-card {
    background-color: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: 12px;
    padding: 24px 0 0 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(17,34,68,0.02);
}

#whodos-lp .wd-step-num-layout {
    text-align: left;
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
#whodos-lp .wd-step-num { color: var(--wd-emerald-dark); font-size: 20px; font-weight: bold; }
#whodos-lp .wd-step-divider { color: var(--wd-divider); font-weight: normal; }
#whodos-lp .wd-step-label { color: var(--wd-text); font-weight: bold; }

#whodos-lp .wd-step-lead {
    font-size: 15px;
    line-height: 1.4;
    color: var(--wd-text-muted);
    text-align: center;
    padding: 0 20px;
    margin: 0;
}

#whodos-lp .wd-step-img-box {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px 0;
    box-sizing: border-box;
    padding: 0 16px;
    background: none;
}

#whodos-lp .wd-step-img { max-height: 140px; max-width: 140px; width: auto; height: auto; object-fit: contain; }

#whodos-lp .wd-step-bullets {
    list-style: none;
    padding: 0 20px;
    margin: 0 0 12px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#whodos-lp .wd-step-bullets li {
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
}
#whodos-lp .wd-step-status-bar {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 8px;
    text-align: center;
    margin-top: auto;
    line-height: 1.4;
    border-radius: 0 0 12px 12px;
    background-color: var(--wd-emerald-light);
    color: var(--wd-navy-mid);
}

/* ステップ矢印配置 */
#whodos-lp .wd-step-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    user-select: none;
}
#whodos-lp .wd-step-arrow-circle {
    width: 24px;
    height: 24px;
    background-color: var(--wd-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: monospace;
    color: var(--wd-text-muted);
    font-weight: bold;
}

#whodos-lp .wd-steps-bottom-summary {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--wd-emerald);
    margin-top: 32px;
}

#whodos-lp .wd-check-mark-step {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23e6faf7' stroke='%2300897b' stroke-width='1.5'/%3E%3Cpath d='M7 12l4 4 6-6' stroke='%2300897b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   サービス内容直後：CTA ボタンエリア
   ============================================================ */
#whodos-lp .wd-service-cta-area {
    background: linear-gradient(180deg, var(--wd-bg) 0%, var(--wd-bg-alt2) 100%);
    padding: 32px 0;
    text-align: center;
}
#whodos-lp .wd-service-cta-area .mod-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 360px;
    box-sizing: border-box;
}

/* ==========================================================================
   導入後の変化
   ========================================================================== */
#whodos-lp .wd-change-section {
    background-color: var(--wd-bg);
}

#whodos-lp .wd-change-flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1380px;
    margin: 0 auto;
}

#whodos-lp .wd-change-box {
    background-color: var(--wd-bg);
    border-radius: 12px;
    flex: 1;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(17,34,68,0.02);
    box-sizing: border-box;
}

#whodos-lp .wd-change-before-box { border: 1.5px solid var(--wd-border-dark); }
#whodos-lp .wd-change-after-box  { border: 2.5px solid var(--wd-emerald); }

#whodos-lp .wd-change-badge-label {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 12px 0;
}
#whodos-lp .badge-before-grey { background-color: var(--wd-bg-grey); color: var(--wd-badge-grey-text); }
#whodos-lp .badge-after-emerald { background-color: var(--wd-emerald-light); color: var(--wd-emerald-dark); font-weight: bold; }

#whodos-lp .wd-change-card-body {
    padding: 24px;
    display: flex;
    justify-content: center;
}
#whodos-lp .wd-change-img-space { width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
#whodos-lp .wd-change-img-tag { max-height: 100%; max-width: 100%; object-fit: contain; }

#whodos-lp .wd-change-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: fit-content;
    text-align: left;
}

#whodos-lp .wd-change-list li {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}
#whodos-lp .wd-change-list.text-grey-cross { color: var(--wd-text-muted); }
#whodos-lp .wd-change-list.text-emerald-check { color: var(--wd-emerald-dark); font-weight: bold; }

#whodos-lp .wd-change-arrow-box {
    font-size: 20px;
    color: var(--wd-emerald);
    user-select: none;
    width: 24px;
    text-align: center;
}

#whodos-lp .wd-check-mark {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23e6faf7' stroke='%2300897b' stroke-width='1.5'/%3E%3Cpath d='M7 12l4 4 6-6' stroke='%2300897b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   期待効果 & 事例 (ROI)
   ========================================================================== */
#whodos-lp .wd-roi-section {
    background: var(--wd-bg);
}

#whodos-lp .wd-roi-icon-box--success { background-color: var(--wd-emerald-light); color: var(--wd-emerald-dark); }
#whodos-lp .wd-roi-icon-box--growth { background-color: var(--wd-emerald-light); color: var(--wd-emerald-dark); }
#whodos-lp .wd-roi-icon-box--achievement { background-color: var(--wd-emerald-light); color: var(--wd-navy-mid); }

#whodos-lp .wd-roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
#whodos-lp .wd-roi-card { background: var(--wd-bg); border: 1px solid var(--wd-border); border-radius: 12px; padding: 16px; text-align: center; box-sizing: border-box; }
#whodos-lp .wd-roi-icon-box { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: bold; margin: 0 auto 5px auto; }
#whodos-lp .wd-roi-card h3 { font-size: 20px; font-weight: bold; color: var(--wd-primary); margin: 0 0 20px 0; }
#whodos-lp .wd-roi-list-text { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
#whodos-lp .wd-roi-item { display: flex; flex-direction: column; gap: 2px; }
#whodos-lp .wd-roi-item-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--wd-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
#whodos-lp .wd-roi-item-title::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid currentColor;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300897b' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
    border-color: var(--wd-emerald-dark);
}
#whodos-lp .wd-roi-item-sub { font-size: 14px; color: var(--wd-text-muted); line-height: 1.5; padding-left: 0; text-align: center; }

#whodos-lp .wd-roi-bottom-summary {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--wd-emerald);
    margin-top: 32px;
    line-height: 1.6;
}

/* ==========================================================================
   導入事例セクション
   ========================================================================== */
#whodos-lp .wd-cases-section { background-color: var(--wd-bg-alt); }
#whodos-lp .wd-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

#whodos-lp .wd-case-card-static {
    background: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(17, 34, 68, 0.03);
}

#whodos-lp .wd-case-logo-wrap {
    height: 180px;
    width: 100%;
    background-color: var(--wd-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--wd-border);
}
#whodos-lp .wd-case-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

#whodos-lp .wd-case-logo-placeholder {
    font-size: 22px;
    font-weight: bold;
    color: var(--wd-text-muted);
    letter-spacing: 0.05em;
}

#whodos-lp .wd-case-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#whodos-lp .wd-case-title { font-size: 18px; font-weight: bold; color: var(--wd-primary); margin: 0 0 12px 0; display: block; }
#whodos-lp .wd-case-subtitle { font-size: 13px; color: var(--wd-text-muted); margin: -6px 0 12px 0; }

#whodos-lp .wd-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    justify-content: center;
}
#whodos-lp .wd-case-tag {
    background-color: var(--wd-accent);
    color: var(--wd-white);
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1.2;
}
#whodos-lp .wd-case-tag--disabled {
    background-color: var(--wd-border);
    color: var(--wd-disabled);
}

#whodos-lp .wd-case-desc {
    font-size: 14px;
    color: var(--wd-text);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

#whodos-lp .wd-case-more {
    font-size: 15px;
    font-weight: bold;
    color: var(--wd-emerald-dark);
    margin: auto auto 0 auto;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}
#whodos-lp .wd-case-more:not(.wd-case-more--disabled):hover {
    text-decoration: underline;
}
#whodos-lp .wd-case-more--disabled {
    color: var(--wd-disabled);
    cursor: not-allowed;
}

#whodos-lp .wd-case-card-static--comingsoon {
    opacity: 0.65;
    background-color: var(--wd-bg-card-footer);
}

/* ==========================================================================
   セミナー・説明会
   ========================================================================== */
#whodos-lp .wd-seminar-section {
    background-color: var(--wd-yellow-light);
}

/* カード全体 */
#whodos-lp .wd-seminar-card {
    background: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(17,34,68,0.04);
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

/* 上段：左右2列 */
#whodos-lp .wd-seminar-top-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
}

#whodos-lp .wd-seminar-left {
    padding: 24px 24px 20px;
    border-right: 1px solid var(--wd-border);
}

#whodos-lp .wd-seminar-right {
    padding: 24px 24px 20px;
}

/* 列見出し */
#whodos-lp .wd-seminar-col-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
    color: var(--wd-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--wd-primary);
}
#whodos-lp .wd-seminar-col-icon { font-size: 16px; }
#whodos-lp .wd-seminar-col-title { font-size: 14px; }

/* 日程リスト */
#whodos-lp .wd-seminar-date-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#whodos-lp .wd-date-item {
    padding: 14px 16px;
    background: var(--wd-bg-alt);
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--wd-text);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
#whodos-lp .wd-date-item:hover { background-color: var(--wd-emerald-light); border-color: var(--wd-emerald); }
#whodos-lp .wd-date-item.is-active { background-color: var(--wd-emerald-light); border-color: var(--wd-emerald-dark); color: var(--wd-emerald-dark); }
#whodos-lp .wd-date-bullet { font-size: 14px; flex-shrink: 0; }

#whodos-lp .wd-date-bullet--emerald {
    color: var(--wd-emerald-dark);
}
#whodos-lp .wd-date-bullet--navy {
    color: var(--wd-navy-mid);
}

/* バナー画像 */
#whodos-lp .wd-seminar-banner-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: var(--wd-bg-alt);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#whodos-lp .wd-seminar-banner-img { width: 100%; height: auto; object-fit: contain; display: block; }

/* 下段：概要テキスト */
#whodos-lp .wd-seminar-summary-row {
    border-top: 1px solid var(--wd-border);
    padding: 16px 24px;
    background: var(--wd-bg-card-footer);
}
#whodos-lp .wd-seminar-summary-label {
    font-size: 13px;
    font-weight: bold;
    color: var(--wd-primary);
    margin: 0 0 6px 0;
}
#whodos-lp .wd-seminar-summary-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--wd-text);
    margin: 0;
}

#whodos-lp .wd-seminar-empty {
    color: var(--wd-text-muted);
    text-align: center;
    padding: 16px;
    font-size: 14px;
    font-weight: normal;
}
#whodos-lp .wd-seminar-banner-box .wd-seminar-empty {
    padding: 40px 20px;
}

/* ==========================================================================
   よくあるご質問 Q&A
   ========================================================================= */
#whodos-lp .wd-faq-section { background-color: var(--wd-bg); }
#whodos-lp .wd-faq-box-list { display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 0 auto; }
#whodos-lp .wd-faq-box-item { border-radius: 12px; padding: 20px; box-sizing: border-box; background-color: var(--wd-emerald-light); border: 1px solid var(--wd-emerald-border); }
#whodos-lp .wd-faq-box-item--navy { background-color: var(--wd-navy-light); }

#whodos-lp .wd-faq-box-q, #whodos-lp .wd-faq-box-a { display: flex; align-items: flex-start; gap: 16px; }
#whodos-lp .wd-faq-box-q { margin-bottom: 16px; }

#whodos-lp .wd-faq-box-item .badge-q, #whodos-lp .wd-faq-box-item .badge-a {
    width: 28px; height: 28px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; user-select: none; flex-shrink: 0; line-height: 1;
}
#whodos-lp .wd-faq-box-item .badge-q { background-color: var(--wd-emerald-dark); color: var(--wd-white); }
#whodos-lp .wd-faq-box-item .badge-a { background-color: transparent; color: var(--wd-emerald-dark); font-weight: bold; }
#whodos-lp .wd-faq-box-item--navy .badge-q { background-color: var(--wd-navy-mid); color: var(--wd-white); }
#whodos-lp .wd-faq-box-item--navy .badge-a { background-color: transparent; color: var(--wd-navy-mid); font-weight: bold; }

#whodos-lp .wd-faq-box-q h3 { font-size: 16px; font-weight: bold; color: var(--wd-primary); margin: 3px 0 0 0; line-height: 1.4; }
#whodos-lp .wd-faq-box-a p { font-size: 14px; color: var(--wd-text); line-height: 1.6; margin: 2px 0 0 0; }

/* ==========================================================================
   最終大コンバージョン
   ========================================================================== */
#whodos-lp .wd-final-cta {
    background-image: linear-gradient(135deg, var(--wd-navy) 0%, var(--wd-navy-mid) 100%);
    padding: 48px 0;
    text-align: center;
    color: var(--wd-white);
}
#whodos-lp .wd-final-cta-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}
#whodos-lp .wd-final-cta-logo-img {
    height: 54px;
    width: auto;
    display: inline-block;
}
#whodos-lp .wd-final-cta h2 { font-size: 28px; font-weight: bold; color: var(--wd-white); margin-bottom: 6px; line-height: 1.4; }
#whodos-lp .wd-final-cta-subtext { font-size: 16px; color: var(--wd-border); margin-bottom: 16px; }
#whodos-lp .wd-final-cta-btn-wrap { margin-bottom: 12px; }
#whodos-lp .wd-final-cta-note { font-size: 14px; color: var(--wd-white); opacity: 0.9; }

/* 共通規約ボタン（mod-button）配置制御 */
#whodos-lp .wd-seminar-cta-area {
    margin-top: 32px;
}
#whodos-lp .wd-seminar-cta-area, #whodos-lp .wd-final-cta-btn-wrap, #whodos-lp .wd-mid-cta-area, #whodos-lp .wd-hero-btns { text-align: center; }
#whodos-lp .mod-button { display: inline-flex !important; align-items: center; justify-content: center; min-width: 320px; box-sizing: border-box; }
#whodos-lp br.sp-only { display: none; }

/* ==========================================================================
   タブレット（中間画面幅）レスポンシブ最適化
   ========================================================================== */
@media (min-width: 851px) and (max-width: 1024px) {
    #whodos-lp .wd-hero-inner {
        gap: 28px;
    }
    #whodos-lp .wd-hero-title {
    }
    #whodos-lp .wd-hero-lead {
        font-size: 17px;
    }
    #whodos-lp .wd-hero-awards-title {
        font-size: 14px;
    }
}

/* ==========================================================================
   スマートフォン表示レスポンシブ最適化
   ========================================================================== */
@media (max-width: 850px) {
    #whodos-lp .wd-container { padding: 0 20px; }
    #whodos-lp br.pc-only { display: none; }
    #whodos-lp br.sp-only { display: inline; }

    #whodos-lp section { padding: 32px 0; }
    #whodos-lp .wd-section-title { margin-bottom: 12px; line-height: 1.4; }
    #whodos-lp .wd-section-sub { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
    
    /* ヒーローセクション */
    #whodos-lp .wd-hero {
        padding: 24px 0 20px 0;
    }
    
    #whodos-lp .wd-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    #whodos-lp .wd-hero-content {
        display: block;
        width: 100%;
    }
    
    #whodos-lp .wd-hero-header-area { align-items: center; width: 100%; }
    #whodos-lp .wd-hero-logo-box { justify-content: center; }
    #whodos-lp .wd-hero-main-logo-lg { height: auto; max-width: 100%; }
    
    #whodos-lp .wd-hero-title { text-align: center; width: 100%; line-height: 1.45; }
    #whodos-lp .wd-hero-lead { text-align: center; width: 100%; margin: 0; font-size: 17px; line-height: 1.65; }
    
    #whodos-lp .wd-hero-visual-side {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #whodos-lp .wd-hero-video-container { display: block !important; width: 100%; max-width: 480px; margin: 0 auto; }
    #whodos-lp .wd-hero-video-wrapper { display: block !important; }
    #whodos-lp .wd-hero-video-wrapper iframe { display: block !important; }
    
    #whodos-lp .wd-hero-btns {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

    #whodos-lp .wd-hero-awards-area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 20px;
        width: 100%;
    }
    #whodos-lp .wd-hero-awards-title {
        font-size: clamp(9px, 3.1vw, 13px);
        line-height: 1.5;
        text-align: center;
        padding: 0 8px;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    #whodos-lp .wd-hero-awards-label {
        border-right: none;
        border-bottom: none;
        padding-right: 0;
        padding-bottom: 0;
        text-align: center;
        width: fit-content;
        font-size: 13px;
    }
    #whodos-lp .wd-hero-awards-images {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        align-items: flex-start;
    }
    #whodos-lp .wd-hero-award-frame-left,
    #whodos-lp .wd-hero-award-frame-right {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 78px;
        flex: 0 0 auto;
    }
    #whodos-lp .wd-hero-award-frame-img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }
    #whodos-lp .wd-hero-award-item {
        flex: 0 1 130px;
        gap: 6px;
    }
    #whodos-lp .wd-hero-award-img-wrap {
        height: 78px;
    }
    #whodos-lp .wd-hero-award-img {
        height: 60px;
    }
    #whodos-lp .wd-hero-award-img-lg {
        height: 72px;
    }
    #whodos-lp .wd-hero-award-text {
        font-size: 9.5px;
        line-height: 1.3;
    }

    #whodos-lp .wd-hero-awards-and-logos {
        margin-top: 0;
        padding-top: 0;
    }
    #whodos-lp .wd-hero-logos-full-band {
        background-color: var(--wd-bg);
        padding: 16px 0;
        margin-top: 24px;
        margin-bottom: 16px;
        border-top: 1px solid var(--wd-border);
        border-bottom: 1px solid var(--wd-border);
    }
    #whodos-lp .wd-hero-logos-area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    #whodos-lp .wd-hero-logos-label {
        border-right: none;
        border-bottom: none;
        padding-right: 0;
        padding-bottom: 0;
        text-align: center;
        width: fit-content;
        font-size: 13px;
    }
    #whodos-lp .wd-hero-logos-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
        width: 100%;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        box-sizing: border-box;
    }
    #whodos-lp .wd-hero-logos-grid .wd-logo-item {
        max-width: 140px;
        height: 42px;
        flex: 0 1 auto;
        opacity: 1;
    }
    
    /* お悩み提起セクション */
    #whodos-lp .wd-problem-grid { grid-template-columns: 1fr; gap: 16px; }
    #whodos-lp .wd-fudo-msg-zone-full { padding: 32px 16px; }
    #whodos-lp .wd-emerald-inner-flex { flex-direction: column; gap: 24px; text-align: center; align-items: center; }
    #whodos-lp .wd-fudo-left-text h3 { font-size: 22px; margin-bottom: 8px; }
    #whodos-lp .wd-fudo-lead { font-size: 16px; line-height: 1.6; }
    #whodos-lp .wd-fudo-sub-lg { font-size: 14px; line-height: 1.6; }
    #whodos-lp .wd-fudo-right-illustration { display: flex; justify-content: center; align-items: center; width: 100%; max-width: 100%; }
    #whodos-lp .wd-fudo-img { width: 100%; max-width: 320px; height: auto; }
    
    /* 対比セクション */
    #whodos-lp .wd-concept-compare-wrap { grid-template-columns: 1fr; gap: 16px; }
    #whodos-lp .wd-concept-col-head { padding: 16px 12px; gap: 8px; }
    #whodos-lp .wd-concept-col-head h3 { font-size: 16px; }

    /* 強みセクション */
    #whodos-lp .wd-strength-grid { grid-template-columns: 1fr; gap: 16px; }
    
    /* ステップセクション */
    #whodos-lp .wd-step-grid { flex-direction: column; gap: 12px; }
    #whodos-lp .wd-step-arrow-box { transform: rotate(90deg); margin: 8px auto; }
    #whodos-lp .wd-step-card { padding: 24px 0 0 0; }
    
    #whodos-lp .wd-service-themes-visual {
        margin-bottom: 24px;
        padding: 0 16px;
    }
    
    /* 導入後の変化 */
    #whodos-lp .wd-change-flex-wrap { flex-direction: column; gap: 16px; align-items: stretch; width: 100%; }
    #whodos-lp .wd-change-box { width: 100%; max-width: 100%; }
    #whodos-lp .wd-change-arrow-box { transform: rotate(90deg); margin: 8px auto; }
    
    /* ROIセクション */
    #whodos-lp .wd-roi-grid { grid-template-columns: 1fr; gap: 16px; }
    #whodos-lp .wd-steps-bottom-summary,
    #whodos-lp .wd-roi-bottom-summary {
        font-size: 15px;
        margin-top: 20px;
        padding: 0 16px;
        text-indent: 0;
        text-align: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 事例セクション */
    #whodos-lp .wd-case-grid { grid-template-columns: 1fr; gap: 16px; }
    
    /* セミナーセクション */
    #whodos-lp .wd-seminar-card { grid-template-columns: 1fr; padding: 20px 16px; gap: 24px; }
    #whodos-lp .wd-seminar-top-row { grid-template-columns: 1fr; }
    #whodos-lp .wd-seminar-left { border-right: none; border-bottom: 1px solid var(--wd-border); padding: 16px 0 20px 0; }
    #whodos-lp .wd-seminar-right { padding: 20px 0 16px 0; }
    #whodos-lp .wd-seminar-banner-box { min-height: 240px; }
    #whodos-lp .wd-seminar-cta-area { margin-top: 24px; }
    
    /* 最終大コンバージョン */
    #whodos-lp .wd-final-cta-logo {
        margin-bottom: 16px;
    }
    #whodos-lp .wd-final-cta-logo-img {
        height: 44px;
        display: inline-block;
    }
    #whodos-lp .wd-final-cta h2 {
        font-size: clamp(18px, 5.5vw, 24px);
        line-height: 1.45;
        margin-bottom: 10px;
    }
    #whodos-lp .wd-final-cta-subtext {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* FAQ・共通 */
    #whodos-lp .wd-faq-box-list { grid-template-columns: 1fr; gap: 16px; }
    #whodos-lp .wd-faq-box-q,
    #whodos-lp .wd-faq-box-a {
        gap: 10px;
    }
    #whodos-lp .mod-button,
    #whodos-lp .wd-service-cta-area .mod-button {
        width: 100% !important;
        min-width: auto;
    }
    #whodos-lp .mod-button ._text {
        font-size: clamp(13px, 3.8vw, 15px);
        white-space: nowrap;
    }
}

/* ==========================================================================
   スクロールアニメーション (Scroll Reveal)
   ========================================================================== */
/* 初期状態 */
#whodos-lp .js-fade.is-animSet {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

/* 表示状態 */
#whodos-lp .js-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 時間差ディレイ */
#whodos-lp .wd-delay-1 { transition-delay: 0.06s !important; }
#whodos-lp .wd-delay-2 { transition-delay: 0.12s !important; }
#whodos-lp .wd-delay-3 { transition-delay: 0.18s !important; }
#whodos-lp .wd-delay-4 { transition-delay: 0.24s !important; }

/* モーション軽減設定時のスタイル */
@media (prefers-reduced-motion: reduce) {
    #whodos-lp .js-fade.is-animSet {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

