@charset "UTF-8";
/* ==========================================================================
   期間工ランキングLP 専用スタイル
   配置: /wp-content/themes/swell_child/assets/css/lp-kikanko.css
   構造: career-search.jpを忠実に再現
   ========================================================================== */

.lp-kikanko {
    --c-main: #04384c;          /* メインダークネイビー */
    --c-main-light: #1c5b7a;
    --c-accent: #ff5722;        /* CTAオレンジ */
    --c-accent-dark: #d84315;
    --c-action: #3ac61f;        /* 緑(緊急/応募) */
    --c-action-dark: #2a9c14;
    --c-red: #e60012;           /* 赤バッジ */
    --c-gold: #d4a017;
    --c-gold-light: #fff8e1;
    --c-silver: #8a99a3;
    --c-silver-light: #eceff1;
    --c-bronze: #8d5d3a;
    --c-bronze-light: #efebe9;
    --c-text: #2c3e50;
    --c-text-sub: #607d8b;
    --c-bg: #ffffff;
    --c-bg-alt: #f7fafc;
    --c-border: #e0e6eb;

    --r-base: 8px;
    --r-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(4, 56, 76, 0.18);

    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    color: var(--c-text);
    line-height: 1.75;
    background: var(--c-bg);
    padding-bottom: 100px;
    overflow-x: hidden;
}

.lp-kikanko * { box-sizing: border-box; }
.lp-kikanko img { max-width: 100%; height: auto; display: block; }

.lp-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ==========================================================================
   ① ヒーロー
   ========================================================================== */
.lp-hero {
    background: linear-gradient(135deg, var(--c-main) 0%, var(--c-main-light) 50%, #2a7da3 100%);
    color: #fff;
    padding: 36px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ★ 画像のみモード: 画像をそのまま表示するシンプル版 */
.lp-hero.is-image-only {
    background: var(--c-main);
    padding: 0;
    overflow: visible;
    text-align: center;
}

.lp-hero.is-image-only .lp-hero__image-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s;
}

.lp-hero.is-image-only .lp-hero__image-link:hover {
    opacity: 0.92;
}

.lp-hero.is-image-only .lp-hero__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.lp-hero.is-image-only::before {
    display: none;
}

/* FV画像が指定されたとき(has-bg-imageクラス時)の調整 */
.lp-hero.has-bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.lp-hero.has-bg-image::before {
    display: none; /* 画像があるときは装飾のラジアルグラデは非表示 */
}

.lp-hero.has-bg-image .lp-hero__title {
    font-size: 36px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.lp-hero.has-bg-image .lp-hero__lead {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.lp-hero.has-bg-image .lp-hero__points {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 87, 34, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(58, 198, 31, 0.1), transparent 40%);
}

.lp-hero > * { position: relative; z-index: 1; }

.lp-hero__update {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.lp-hero__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.lp-hero__lead {
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.8;
    text-align: left;
}

.lp-hero__points {
    list-style: none;
    padding: 16px 20px;
    margin: 0 0 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--r-base);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: left;
}

.lp-hero__points li {
    font-size: 14px;
    padding: 6px 0 6px 28px;
    position: relative;
}

.lp-hero__points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    background: var(--c-action);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 0 var(--c-action-dark);
}

.lp-hero__cta {
    display: inline-block;
    background: linear-gradient(180deg, #fff, #f0f0f0);
    color: var(--c-main);
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    font-size: 16px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.lp-hero__cta::after {
    content: " ▼";
    font-size: 11px;
    margin-left: 8px;
}

.lp-hero__cta:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ② 共感セクション
   ========================================================================== */
.lp-empathy {
    background: var(--c-bg-alt);
    padding: 48px 0;
    position: relative;
}

.lp-empathy__title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 24px;
    color: var(--c-main);
    line-height: 1.4;
}

.lp-empathy__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 24px 24px 48px;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--c-accent);
}

.lp-empathy__list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    font-weight: 600;
}

.lp-empathy__list li::before {
    content: "□";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 16px;
    color: var(--c-accent);
}

.lp-empathy__answer {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin: 24px 0 0;
}

.lp-empathy__answer strong {
    color: var(--c-accent);
    font-size: 110%;
}

/* ==========================================================================
   セクション共通
   ========================================================================== */
.lp-section {
    padding: 56px 0;
}

.lp-section--alt {
    background: var(--c-bg-alt);
}

.lp-section__title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 12px;
    color: var(--c-main);
}

.lp-section__title em {
    color: var(--c-accent);
    font-style: normal;
    font-size: 120%;
    display: block;
    margin-top: 4px;
}

.lp-section__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--c-main), var(--c-accent));
    border-radius: 2px;
    margin: 16px auto 24px;
}

.lp-section__desc {
    text-align: center;
    font-size: 14px;
    color: var(--c-text-sub);
    margin: 0 0 32px;
    line-height: 1.8;
}

/* ==========================================================================
   ③ 比較表(スタイリッシュカード型)
   ========================================================================== */
.lp-compare-section {
    background: #f5f7fa;
}

/* 見出し */
.lp-compare-head {
    text-align: center;
    margin-bottom: 32px;
}

.lp-compare-head__en {
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--c-text-sub);
    font-weight: 500;
    margin-bottom: 8px;
}

.lp-compare-head__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-main);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.lp-compare-head__line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--c-gold);
    margin: 14px auto 0;
}

/* グリッド(3カラム) */
.lp-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

/* カード基本 */
.lp-compare-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--c-border);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.lp-compare-card:hover {
    transform: translateY(-3px);
}

/* 上部のアクセントライン */
.lp-compare-card__topline {
    height: 4px;
    background: var(--c-silver-light);
}

/* 1位だけ特別仕様 */
.lp-compare-card.is-rank1 {
    border-color: #e8d59c;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.15);
}

.lp-compare-card.is-rank1 .lp-compare-card__topline {
    background: linear-gradient(90deg, var(--c-gold), #ffe082, var(--c-gold));
}

.lp-compare-card.is-rank1 .lp-compare-card__head {
    background: linear-gradient(180deg, #fff8e1 0%, #ffffff 100%);
}

.lp-compare-card.is-rank2 .lp-compare-card__topline {
    background: var(--c-silver-light);
}

.lp-compare-card.is-rank3 .lp-compare-card__topline {
    background: var(--c-bronze-light);
}

/* カードヘッダー */
.lp-compare-card__head {
    padding: 20px 14px 18px;
    text-align: center;
    border-bottom: 1px dashed var(--c-border);
}

.lp-compare-card__label {
    display: inline-block;
    padding: 3px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 999px;
    margin-bottom: 12px;
    background: transparent;
    border: 1px solid var(--c-silver);
    color: var(--c-text-sub);
    font-family: Georgia, serif;
    font-style: normal;
}

.is-rank1 .lp-compare-card__label {
    background: var(--c-main);
    color: var(--c-gold);
    border-color: var(--c-main);
}

.is-rank2 .lp-compare-card__label {
    border-color: var(--c-silver);
    color: var(--c-silver);
}

.is-rank3 .lp-compare-card__label {
    border-color: var(--c-bronze);
    color: var(--c-bronze);
}

.lp-compare-card__rank-en {
    font-family: Georgia, serif;
    font-size: 11px;
    color: var(--c-silver);
    letter-spacing: 0.2em;
    margin-bottom: -4px;
}

.is-rank1 .lp-compare-card__rank-en {
    color: var(--c-gold);
}

.is-rank3 .lp-compare-card__rank-en {
    color: var(--c-bronze);
}

.lp-compare-card__rank-num {
    font-family: Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--c-silver);
}

.is-rank1 .lp-compare-card__rank-num {
    color: var(--c-gold);
}

.is-rank3 .lp-compare-card__rank-num {
    color: var(--c-bronze);
}

.lp-compare-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 12px 0;
}

.is-rank1 .lp-compare-card__divider {
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.lp-compare-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-main);
    margin: 0 0 4px;
    line-height: 1.3;
}

.lp-compare-card__name-en {
    font-family: Georgia, serif;
    font-size: 9px;
    color: var(--c-text-sub);
    letter-spacing: 0.15em;
    margin: 0 0 10px;
    font-weight: 500;
}

.lp-compare-card__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.lp-compare-card__score .lp-stars {
    font-size: 11px;
}

.lp-compare-card__score-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-main);
}

/* スペック一覧 */
.lp-compare-card__body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-compare-card__spec {
    background: var(--c-bg-alt);
    padding: 9px 12px;
    border-radius: 6px;
    border-left: 2px solid var(--c-silver);
    margin-bottom: 6px;
}

.is-rank1 .lp-compare-card__spec {
    border-left-color: var(--c-gold);
}

.is-rank3 .lp-compare-card__spec {
    border-left-color: var(--c-bronze);
}

.lp-compare-card__spec-label {
    font-size: 10px;
    color: var(--c-text-sub);
    margin-bottom: 2px;
}

.lp-compare-card__spec-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-main);
    line-height: 1.4;
}

/* CTAボタン */
.lp-compare-card__btn-primary {
    display: block;
    background: var(--c-main);
    color: #fff;
    text-align: center;
    padding: 11px 8px;
    margin-top: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
}

.lp-compare-card__btn-primary:hover {
    background: var(--c-main-light);
    transform: translateY(-1px);
}

.is-rank1 .lp-compare-card__btn-primary {
    background: linear-gradient(180deg, var(--c-action), var(--c-action-dark));
    box-shadow: 0 2px 0 #1a6c0a;
}

.is-rank1 .lp-compare-card__btn-primary:hover {
    background: var(--c-action);
    transform: translateY(1px);
    box-shadow: 0 1px 0 #1a6c0a;
}

.lp-compare-card__arrow {
    display: inline-block;
    margin-left: 4px;
    transform: translateY(-1px);
}

.lp-compare-card__btn-secondary {
    display: block;
    background: transparent;
    color: var(--c-main);
    text-align: center;
    padding: 7px 8px;
    margin-top: 6px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 11px;
    border: 1px solid var(--c-main);
    transition: background 0.2s, color 0.2s;
}

.lp-compare-card__btn-secondary:hover {
    background: var(--c-main);
    color: #fff;
}

/* 注釈 */
.lp-compare-note {
    font-size: 11px;
    color: var(--c-text-sub);
    text-align: center;
    margin: 12px 0 0;
}

/* レスポンシブ(モバイル: 縦並び1カラム) */
@media (max-width: 600px) {
    .lp-compare-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lp-compare-card__head {
        padding: 24px 16px 20px;
    }

    .lp-compare-card__rank-num {
        font-size: 64px;
    }

    .lp-compare-card__name {
        font-size: 17px;
    }

    .lp-compare-card__body {
        padding: 16px;
    }

    .lp-compare-card__spec {
        padding: 11px 14px;
    }

    .lp-compare-card__spec-value {
        font-size: 14px;
    }

    .lp-compare-card__btn-primary {
        padding: 14px 8px;
        font-size: 13px;
    }
}

/* ==========================================================================
   星評価
   ========================================================================== */
.lp-stars {
    color: var(--c-gold);
    letter-spacing: 1px;
    line-height: 1;
}

.lp-stars__half { opacity: 0.5; }
.lp-stars__empty { color: #e0e0e0; }

/* ==========================================================================
   ④ ランキングカード(career-search.jp忠実再現)
   ========================================================================== */
.lp-rank-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 24px 20px 28px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 4px solid transparent;
}

.lp-rank-card--1 {
    border-color: var(--c-red);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.15);
}

.lp-rank-card--2 { border-color: var(--c-silver); }
.lp-rank-card--3 { border-color: var(--c-bronze); }

/* 上部の赤バッジ(career-search.jp名物) */
.lp-rank-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-red);
    color: #fff;
    padding: 6px 24px;
    font-weight: 800;
    font-size: 13px;
    z-index: 5;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ヘッダー部分 */
.lp-rank-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 2px dashed var(--c-border);
    margin-bottom: 20px;
    margin-top: 8px;
}

.lp-rank-card__rank-label {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    background: linear-gradient(135deg, var(--c-main), var(--c-main-light));
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(4, 56, 76, 0.3);
    font-family: Georgia, serif;
    padding-top: 16px;
}

.lp-rank-card--1 .lp-rank-card__rank-label {
    background: linear-gradient(135deg, #b8860b, var(--c-gold));
}
.lp-rank-card--2 .lp-rank-card__rank-label {
    background: linear-gradient(135deg, #6b7a83, var(--c-silver));
}
.lp-rank-card--3 .lp-rank-card__rank-label {
    background: linear-gradient(135deg, #6d4c2a, var(--c-bronze));
}

.lp-rank-card__rank-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.lp-rank-card__rank-text {
    font-size: 14px;
    line-height: 1;
}

.lp-rank-card__title-wrap {
    flex: 1;
    min-width: 0;
}

.lp-rank-card__catch {
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.5;
}

.lp-rank-card__name {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--c-main);
    line-height: 1.3;
}

.lp-rank-card__name small {
    font-size: 12px;
    color: var(--c-text-sub);
    font-weight: 600;
    margin-left: 8px;
    font-family: Georgia, serif;
    letter-spacing: 0.1em;
}

.lp-rank-card__score-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.lp-rank-card__score-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
}

.lp-rank-card__score-label {
    color: var(--c-text-sub);
    font-size: 12px;
}

/* ロゴ */
.lp-rank-card__logo {
    text-align: center;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--c-bg-alt);
    border-radius: var(--r-base);
}

.lp-rank-card__logo img {
    margin: 0 auto;
    max-height: 80px;
    width: auto;
}

/* メイン画像 */
.lp-rank-card__main-image {
    margin-bottom: 16px;
    border-radius: var(--r-base);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.lp-rank-card__main-image img {
    width: 100%;
    height: auto;
}

/* CTA上部 */
.lp-rank-card__cta-top {
    margin-bottom: 24px;
    text-align: center;
}

/* サブタイトル */
.lp-rank-card__sub-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--c-main);
    margin: 0 0 12px;
    padding: 8px 12px;
    background: linear-gradient(90deg, rgba(4, 56, 76, 0.1), transparent);
    border-left: 4px solid var(--c-main);
}

.lp-rank-card__sub-icon {
    color: var(--c-action);
    margin-right: 4px;
}

/* スペック表 */
.lp-rank-card__spec {
    margin-bottom: 28px;
}

.lp-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--c-border);
    border-radius: var(--r-base);
    overflow: hidden;
}

.lp-spec-table th,
.lp-spec-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
}

.lp-spec-table tr:last-child th,
.lp-spec-table tr:last-child td {
    border-bottom: none;
}

.lp-spec-table th {
    background: var(--c-bg-alt);
    color: var(--c-main);
    font-weight: 700;
    width: 38%;
    font-size: 12px;
}

.lp-spec-table td {
    background: #fff;
    line-height: 1.5;
}

/* 求人例カード */
.lp-rank-card__jobs {
    margin-bottom: 28px;
}

.lp-jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.lp-job-card {
    background: linear-gradient(135deg, #fff8f3, #ffece1);
    border: 1px solid #ffccbc;
    border-radius: var(--r-base);
    padding: 12px 8px;
    text-align: center;
}

.lp-job-card__title {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--c-main);
    line-height: 1.3;
}

.lp-job-card__salary {
    font-size: 14px;
    font-weight: 800;
    color: var(--c-accent);
    margin: 0 0 4px;
    line-height: 1.2;
}

.lp-job-card__feature {
    font-size: 10px;
    color: var(--c-text-sub);
    margin: 0;
    line-height: 1.4;
}

/* 選定理由 */
.lp-rank-card__reasons {
    margin-bottom: 28px;
}

.lp-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: var(--r-base);
    padding: 16px 20px;
}

.lp-reasons-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
    line-height: 1.7;
    border-bottom: 1px dotted #ffe082;
    font-weight: 600;
}

.lp-reasons-list li:last-child { border-bottom: none; }

.lp-reasons-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--c-action);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
}

/* メリット・デメリット */
.lp-rank-card__pros-cons {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.lp-pros-cons {
    padding: 16px 18px;
    border-radius: var(--r-base);
}

.lp-pros-cons--good {
    background: #f0f9ec;
    border-left: 4px solid var(--c-action);
}

.lp-pros-cons--bad {
    background: #f5f7fa;
    border-left: 4px solid #90a4ae;
}

.lp-pros-cons h4 {
    font-size: 14px;
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--c-main);
}

.lp-pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.lp-pros-cons li {
    padding: 4px 0 4px 18px;
    position: relative;
}

.lp-pros-cons--good li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--c-action);
    font-weight: 800;
}

.lp-pros-cons--bad li::before {
    content: "−";
    position: absolute;
    left: 0;
    color: #90a4ae;
    font-weight: 800;
}

/* おすすめユーザー */
.lp-rank-card__recommend {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px dashed var(--c-accent);
    border-radius: var(--r-base);
    padding: 16px 18px;
    margin-bottom: 24px;
}

.lp-rank-card__recommend-label {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.lp-rank-card__recommend p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-main);
    line-height: 1.6;
}

/* CTAボタン共通 */
.lp-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(180deg, var(--c-action) 0%, var(--c-action-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 999px;
    box-shadow: 0 5px 0 #1a6c0a, 0 8px 24px rgba(58, 198, 31, 0.3);
    transition: transform 0.15s;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.lp-btn-cta--main {
    background: linear-gradient(180deg, #ff7043 0%, var(--c-accent) 100%);
    box-shadow: 0 5px 0 var(--c-accent-dark), 0 8px 24px rgba(255, 87, 34, 0.35);
    animation: lp-pulse 2.5s ease-in-out infinite;
    font-size: 17px;
}

.lp-btn-cta--final {
    background: linear-gradient(180deg, #ff7043 0%, var(--c-accent) 100%);
    box-shadow: 0 5px 0 var(--c-accent-dark), 0 8px 24px rgba(255, 87, 34, 0.35);
    font-size: 18px;
    padding: 20px 28px;
}

@keyframes lp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.lp-btn-cta:hover {
    transform: translateY(2px);
    animation: none;
}

.lp-btn-cta__arrow {
    font-size: 18px;
    line-height: 1;
}

.lp-btn-cta__note {
    font-size: 11px;
    color: var(--c-text-sub);
    margin: 8px 0 0;
    text-align: center;
}

.lp-btn-cta__note--white { color: rgba(255, 255, 255, 0.85); }

.lp-rank-card__cta-bottom {
    text-align: center;
    padding-top: 8px;
}

/* ==========================================================================
   ⑤ 選び方
   ========================================================================== */
.lp-howto-list {
    display: grid;
    gap: 16px;
}

.lp-howto-item {
    background: #fff;
    border: 2px solid var(--c-border);
    border-radius: var(--r-base);
    padding: 24px;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
}

.lp-howto-item:hover {
    border-color: var(--c-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.lp-howto-item__num {
    display: inline-block;
    background: var(--c-main);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-family: Georgia, serif;
    letter-spacing: 0.05em;
}

.lp-howto-item__title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--c-main);
}

.lp-howto-item p {
    margin: 0;
    font-size: 14px;
    color: var(--c-text-sub);
    line-height: 1.8;
}

/* ==========================================================================
   ⑥ FAQ
   ========================================================================== */
.lp-faq__item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-base);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.lp-faq__item summary {
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    padding: 16px 50px 16px 56px;
    position: relative;
    list-style: none;
    color: var(--c-main);
    transition: background 0.2s;
}

.lp-faq__item summary:hover { background: var(--c-bg-alt); }
.lp-faq__item summary::-webkit-details-marker { display: none; }

.lp-faq__item summary::before {
    content: "Q";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--c-accent);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: Georgia, serif;
}

.lp-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--c-accent);
    font-weight: 300;
}

.lp-faq__item[open] summary::after { content: "−"; }

.lp-faq__answer {
    padding: 0 20px 20px 56px;
    position: relative;
}

.lp-faq__answer::before {
    content: "A";
    position: absolute;
    left: 16px;
    top: 4px;
    background: var(--c-main);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: Georgia, serif;
}

.lp-faq__answer p {
    margin: 0;
    font-size: 14px;
    color: var(--c-text-sub);
    line-height: 1.8;
}

/* ==========================================================================
   ⑦ まとめ
   ========================================================================== */
.lp-final {
    background: linear-gradient(135deg, var(--c-main) 0%, var(--c-main-light) 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.2), transparent 60%);
}

.lp-final > * { position: relative; z-index: 1; }

.lp-final .lp-container > * { position: relative; z-index: 1; }

.lp-final__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 16px;
}

.lp-final__title em {
    color: #ffe082;
    font-style: normal;
    display: block;
    font-size: 130%;
    margin-top: 4px;
}

.lp-final__lead {
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.8;
    opacity: 0.95;
}

/* ==========================================================================
   固定フッターCTA
   ========================================================================== */
.lp-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--c-border);
}

.lp-fixed-cta.is-visible { transform: translateY(0); }

.lp-fixed-cta a {
    display: block;
    background: linear-gradient(180deg, var(--c-action), var(--c-action-dark));
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    padding: 14px;
    border-radius: 999px;
    box-shadow: 0 3px 0 #1a6c0a;
    font-size: 15px;
}

/* ==========================================================================
   レスポンシブ (PC: 768px以上)
   ========================================================================== */
@media (min-width: 768px) {
    .lp-hero { padding: 56px 0 72px; }
    .lp-hero__title { font-size: 36px; }
    .lp-hero__lead { font-size: 16px; text-align: center; }

    .lp-hero.has-bg-image {
        min-height: 600px;
        padding: 100px 0 120px;
    }
    .lp-hero.has-bg-image .lp-hero__title { font-size: 52px; }

    .lp-section { padding: 80px 0; }
    .lp-section__title { font-size: 30px; }

    .lp-empathy { padding: 64px 0; }
    .lp-empathy__title { font-size: 28px; }

    .lp-rank-card { padding: 40px 32px; }
    .lp-rank-card__head { gap: 24px; }
    .lp-rank-card__rank-label { width: 90px; height: 90px; padding-top: 22px; }
    .lp-rank-card__rank-num { font-size: 42px; }
    .lp-rank-card__name { font-size: 26px; }

    .lp-spec-table th, .lp-spec-table td { padding: 14px 18px; font-size: 14px; }

    .lp-rank-card__pros-cons { grid-template-columns: 1fr 1fr; }

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

    .lp-final__title { font-size: 32px; }

    .lp-fixed-cta {
        max-width: 600px;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 100%);
        right: auto;
        bottom: 20px;
        border-radius: 999px;
        border-top: none;
    }
    .lp-fixed-cta.is-visible { transform: translate(-50%, 0); }
}

/* ==========================================================================
   SWELL固有の干渉対策
   ========================================================================== */
.page-template-page-kikanko-lp .l-mainContent,
.page-template-page-kikanko-lp .l-content,
.page-template-page-kikanko-lp #content {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
}

.page-template-page-kikanko-lp .l-articleTitle,
.page-template-page-kikanko-lp .p-articleHead,
.page-template-page-kikanko-lp .l-articleSection,
.page-template-page-kikanko-lp .p-share-buttons,
.page-template-page-kikanko-lp #breadcrumb,
.page-template-page-kikanko-lp #sidebar,
.page-template-page-kikanko-lp .l-sidebar {
    display: none !important;
}

.page-template-page-kikanko-lp .l-mainContent {
    width: 100% !important;
    float: none !important;
}
