@charset "UTF-8";
/*=====================

ウェルフェアE ランディングページ専用スタイル
（202608〜 既存トンマナへ統一済み。将来的に service.css / common.js へ統合予定）

構成（ページの表示順）:
  1. 共通パーツ（アニメーション、見出し、実画像フレーム）
  2. HERO
  3. PAIN POINTS（こんなお悩み、ありませんか？）
  4. SOLUTION（ウェルフェアEが、その手間をなくします。）
  5. FEATURES（主な機能）
  6. FLOW（導入の流れ）
  7. TRUSTED REASONS（選ばれる理由）
  8. FAQ（よくあるご質問）
  9. 未使用（CLOSING CTAコメントアウト時のみ使用するホバー定義）

=====================*/

/* ---- 1. 共通パーツ ---- */
@keyframes wfeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.wfe-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #0b51a3;
    letter-spacing: 1.5px;
}
.wfe-section_title {
    margin: 12px 0 0;
    font-size: 32px;
    font-weight: bold;
    color: #11283d;
    line-height: 1.5;
}
#small-projects .wfe-section_lead {
    margin: 14px 0 0;
    color: #555;
    font-size: 18px;
    line-height: 1.9;
}

/* 実画像（ダッシュボード）を表示する共通コンポーネント。HERO / FEATURES で使用 */
.wfe-monitor {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 18px 28px rgba(18,60,110,0.25));
}
.wfe-monitor--float {
    animation: wfeFloat 6s ease-in-out infinite;
}


/* ---- 2. HERO ---- */
.wfe-hero {
    background: #f9f9fd;
    padding: 100px 0;
}
.wfe-hero_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "badge  visual"
        "title  visual"
        "lead   visual"
        "btns   visual"
        "check  visual";
    column-gap: 48px;
    align-items: start;
}
.wfe-badge {
    grid-area: badge;
    justify-self: start;
    display: inline-block;
    background: #0b51a3;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 0;
}
.wfe-hero_title {
    grid-area: title;
    margin: 22px 0 0;
    font-size: 44px;
    line-height: 1.35;
    font-weight: bold;
    color: #11283d;
}
#small-projects .wfe-hero_lead {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 2.0;
    color: #031932;
    max-width: 520px;
}
.wfe-hero_lead {
    grid-area: lead;
}
.wfe-hero_btns {
    grid-area: btns;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.wfe-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
    transition: all .4s;
}
.wfe-btn-primary {
    background: #0b51a3;
    color: #fff;
    border: 2px solid #0b51a3;
}
.wfe-btn-secondary {
    background: #fff;
    color: #0b51a3;
    border: 2px solid #0b51a3;
}
.wfe-btn:hover {
    opacity: 0.7;
}
.wfe-hero_check {
    grid-area: check;
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}
.wfe-hero_check li {
    font-size: 14px;
    color: #555;
}
.wfe-hero_check li:before {
    content: "✓ ";
    color: #0b51a3;
    font-weight: bold;
}
.wfe-hero_visual {
    grid-area: visual;
    align-self: center;
    display: flex;
    justify-content: center;
}
@media (max-width: 767px) {
    .wfe-hero_inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "lead"
            "visual"
            "btns"
            "check";
    }
    .wfe-hero_visual {
        margin: 26px 0;
    }
}


/* ---- 3. PAIN POINTS ---- */
.wfe-pain {
    background: #fff;
    padding: 90px 0;
}
.wfe-pain_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-pain_grid {
    margin: 44px auto 0;
    max-width: 1060px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 18px;
    text-align: left;
}
.wfe-pain_card {
    background: #f9f9fd;
    border: 1px dotted #ccc;
    padding: 26px;
}
.wfe-pain_num {
    font-size: 34px;
    line-height: 1;
    color: #c9d3da;
    font-weight: bold;
}
#small-projects .wfe-pain_text {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.85;
    color: #2B3A47;
}
.wfe-pain_text strong {
    color: #0b51a3;
    font-size: 22px;
    font-weight: bold;
}
.wfe-pain_text .txt_bdr {
    background: none;
}


/* ---- 4. SOLUTION ---- */
.wfe-solution {
    background: #f9f9fd;
    padding: 70px 0;
}
.wfe-solution_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-solution_grid {
    margin: 48px auto 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.wfe-solution_card {
    background: #fff;
    border: 1px dotted #ccc;
    padding: 30px;
}
.wfe-solution_icon {
    width: 52px;
    height: 52px;
    background: #eaf2fb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wfe-solution_card h3 {
    margin: 20px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #11283d;
}
#small-projects .wfe-solution_card p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.9;
    color: #4A5A68;
}


/* ---- 5. FEATURES ---- */
.wfe-features {
    background: #fff;
    padding: 70px 0;
}
.wfe-features_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-features_layout {
    margin: 44px auto 0;
    max-width: 1200px;
}
.wfe-features_visual {
    margin: 0 auto 36px;
    max-width: 900px;
}
.wfe-features_cards {
    width: 100%;
}
.wfe-features_grid {
    margin: 0;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.wfe-features_card {
    background: #f9f9fd;
    border: 1px dotted #ccc;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.wfe-features_card_head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wfe-features_icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background: #eaf2fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}
.wfe-features_card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #11283d;
    line-height: 1.4;
}
#small-projects .wfe-features_card p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.85;
    color: #4A5A68;
}
@media (max-width: 640px) {
    .wfe-features_grid { grid-template-columns: 1fr; }
}


/* ---- 6. FLOW ---- */
.wfe-flow {
    background: #0b51a3;
    padding: 90px 0;
    color: #fff;
}
.wfe-flow_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-flow_eyebrow {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #cfe0f1;
    letter-spacing: 1.5px;
}
.wfe-flow_title {
    margin: 12px 0 0;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
}
#small-projects .wfe-flow_lead {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.9;
    color: #cfe0f1;
}
.wfe-flow_grid {
    margin: 48px auto 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}
.wfe-flow_card {
    background: rgba(255,255,255,0.08);
    border: 1px dotted rgba(255,255,255,0.35);
    padding: 28px 24px;
}
.wfe-flow_num {
    width: 40px;
    height: 40px;
    background: #0d9487;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}
.wfe-flow_card h3 {
    margin: 18px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
#small-projects .wfe-flow_card p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.9;
    color: #cfe0f1;
}
#small-projects .wfe-flow_note {
    margin: 26px auto 0;
    max-width: 1200px;
    text-align: center;
    font-size: 14px;
    color: #a9c3de;
}


/* ---- 7. TRUSTED REASONS（選ばれる理由） ---- */
.wfe-trust {
    background: #fff;
    padding: 70px 0;
}
.wfe-trust_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-trust_grid {
    margin: 40px auto 0;
    max-width: 1060px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.wfe-trust_card {
    border: 1px dotted #ccc;
    padding: 28px;
    background: #f9f9fd;
}
.wfe-trust_card_label {
    color: #0b51a3;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
#small-projects .wfe-trust_card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #2B3A47;
}
.wfe-trust_badges {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.wfe-trust_badges span {
    background: #eaf2fb;
    color: #0b51a3;
    font-weight: bold;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: 0;
}


/* ---- 8. FAQ ---- */
.wfe-faq {
    background: #f9f9fd;
    padding: 70px 0;
}
.wfe-faq_head {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.wfe-faq_list {
    margin: 36px auto 0;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wfe-faq-item {
    background: #fff;
    border: 1px dotted #ccc;
}
.wfe-faq-item.wfe-open .wfe-faq-icon {
    transform: rotate(45deg);
}
.wfe-faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
}
.wfe-faq-btn .q {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #11283d;
}
.wfe-faq-btn .q span {
    color: #0b51a3;
    font-weight: bold;
}
.wfe-faq-icon {
    flex: 0 0 auto;
    font-size: 20px;
    color: #0b51a3;
    transition: transform 0.2s;
}
#small-projects .wfe-faq-answer {
    display: none;
    padding: 0 22px 22px 22px;
    font-size: 16px;
    line-height: 1.95;
    color: #4A5A68;
}


/* ---- 9. 未使用（CLOSING CTAがコメントアウト解除された場合のみ使用） ---- */
.wfe-cta-cta1:hover { background: #F0F6FC; }
.wfe-cta-cta2:hover { background: rgba(255,255,255,0.2); }


/* ---- 10. ケアプランデータ連携システムへの対応について（既存デザイン部分の不足分を補完） ---- */
@media (max-width: 767px) {
    .welfare-e .careplan-support .mail a {
        width: 95%;
        font-size: 16px;
    }
}
