﻿/* ============================================================
    KASIKA LP カスタムスタイル
    Cocolive 株式会社 / FC Apps Direct 向け
    products-base.css を前提に、個別の見た目を上書き
   ============================================================ */

/* ============================================================
    CSS カスタムプロパティ（ブランドカラー）
    ============================================================ */
:root {
    --hatsuly-base: #2a3569;
    --hatsuly-base-dark: #1c2648;
    --hatsuly-base-mid: #494a52;

    --hatsuly-key-green: #73c033;
    --hatsuly-key-green-dark: #5fa02a;

    --hatsuly-sub-f7: #f7f8fa;
    --hatsuly-sub-d7: #d7e4f2;
    --hatsuly-sub-ea: #eaeef6;
    --hatsuly-sub-8a: #8ab9e6;

    --hatsuly-text-dark: #1a2740;
    --hatsuly-text-mid: #4a5568;
    --hatsuly-text-light: #718096;

    --hatsuly-border: #d7e4f2;
    --hatsuly-radius: 12px;
    --hatsuly-radius-sm: 8px;
    --hatsuly-shadow: 0 4px 24px rgba(33, 58, 108, 0.10);
    --hatsuly-shadow-hover: 0 8px 32px rgba(33, 58, 108, 0.18);
    --color-title-line: var(--hatsuly-key-green);

    /* レイアウト共通の比率変数（MV・LP共通） */
    --main-content-width: 50%;
    --main-image-width: 1fr;
    --main-max-width: 1440px;
}

/* ============================================================
   ボタン配色（申込ピンク / お問い合わせネイビー）
   ============================================================ */
.hatsuly-lp .lp-btn-request {
    background-color: var(--hatsuly-key-green) !important;
    border-color: var(--hatsuly-key-green) !important;
}

.hatsuly-lp .lp-btn-request:hover,
.hatsuly-lp .lp-btn-request:focus {
    background-color: var(--hatsuly-key-green-dark) !important;
    border-color: var(--hatsuly-key-green-dark) !important;
}

.hatsuly-lp .lp-btn-contact {
    background-color: var(--hatsuly-base) !important;
    border-color: var(--hatsuly-base) !important;
}

.hatsuly-lp .lp-btn-contact:hover,
.hatsuly-lp .lp-btn-contact:focus {
    background-color: var(--hatsuly-base-dark) !important;
    border-color: var(--hatsuly-base-dark) !important;
}

/* MV内のタグラインは非表示 */
.hatsuly-lp .hatsuly-mv-tagline {
    display: none !important;
}

/* スクロール進捗バー（ピンクからサブカラーへ） */
.hatsuly-lp .lp-scroll-progress-bar {
    background: linear-gradient(90deg, var(--hatsuly-key-green), var(--hatsuly-sub-8a));
}

/* ============================================================
    ヘッダー
    ============================================================ */
.hatsuly-lp #follow-header {
    border-bottom: none;
}

.hatsuly-lp .lp-logo img {
    width: 136px !important;
    height: auto !important;
}

.hatsuly-lp .lp-nav a {
    position: relative;
    font-weight: 700;
    transition: color 0.2s ease;
}

.hatsuly-lp .lp-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--hatsuly-key-green);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.hatsuly-lp .lp-nav a:hover {
    color: var(--hatsuly-key-green);
}

.hatsuly-lp .lp-nav a:hover::after,
.hatsuly-lp .lp-nav a.is-active::after {
    transform: scaleX(1);
}

/* MVの追従バナーは非表示 */
.lp-mv-follow-banner {
    display: none !important;
}

/* ============================================================
    メインビジュアル（MV）
    ライトトーン背景（#fbf7ef ベース）
    ============================================================ */
.hatsuly-mv {
    position: relative;
    background: #fbf7ef;
    overflow: hidden;
}

.hatsuly-mv::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 62% 82% at 82% 50%, rgba(195, 181, 145, 0.16) 0%, transparent 78%),
        radial-gradient(ellipse 42% 52% at 12% 18%, rgba(178, 160, 124, 0.11) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.hatsuly-mv::after {
    content: "";
    position: absolute;
    top: -6%;
    right: -4%;
    width: 46%;
    height: 118%;
    background: radial-gradient(ellipse,
            rgba(214, 196, 158, 0.24) 0%,
            rgba(184, 163, 124, 0.11) 46%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hatsuly-mv .hatsuly-mv-dot-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(140, 122, 90, 0.06) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.hatsuly-mv .lp-main-inner {
    position: relative;
    z-index: 1;
}

.hatsuly-mv .lp-breadcrumb-wrap {
    position: relative;
    z-index: 1;
}

/* MV タグライン */
.hatsuly-mv-tagline {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--hatsuly-key-green);
    background: rgba(70, 102, 200, 0.08);
    border: 1px solid rgba(70, 102, 200, 0.28);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 0.75em;
}

/* MV テキスト */
.hatsuly-mv .lp-main-catch {
    font-size: clamp(1.75rem, 3.05vw, 2.72rem);
    line-height: 1.38;
    color: var(--hatsuly-base);
    font-weight: 900;
}

/* キャッチコピーの一部をピンクで強調 */
.hatsuly-mv .catch-accent {
    color: var(--hatsuly-key-green);
}

.hatsuly-mv .lp-main-lead {
    color: var(--hatsuly-base);
    max-width: 40rem;
    margin-block: 1.5em 1em !important;
}

.hatsuly-mv .lp-main-visual {
    position: relative;
}

.hatsuly-mv .hatsuly-mv-img {
    margin-top: 30px;
}

/* breadcrumb テキスト（ライト背景向け） */
.hatsuly-mv .lp-breadcrumb-in-mv {
    color: var(--hatsuly-text-mid) !important;
}

.hatsuly-mv .lp-breadcrumb-in-mv a {
    color: var(--hatsuly-base) !important;
}

.hatsuly-mv .lp-breadcrumb-in-mv a:hover {
    color: rgb(0, 146, 215) !important;
}

.hatsuly-mv .lp-breadcrumb-in-mv .breadcrumb-item.active {
    color: var(--hatsuly-text-light) !important;
}

.hatsuly-mv .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
    color: var(--hatsuly-text-light) !important;
}

/* partner テキスト */
.hatsuly-mv .lp-main-partner {
    position: relative;
    top: -10px;
    color: var(--hatsuly-text-mid) !important;
}

/* MV CTAボタン周りの重なり順を調整 */
.hatsuly-mv .lp-mv-cta {
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .hatsuly-mv-tagline {
        font-size: 0.7rem;
    }
}

.hatsuly-logo-slider-section {
    position: relative;
    margin-top: -10px;
    background: #ffffff;
    padding: 14px 0 10px;
}

.hatsuly-logo-marquee-wrapper {
    overflow: hidden;
    display: grid;
    gap: 14px;
}

.hatsuly-logo-marquee {
    overflow: hidden;
}

.hatsuly-logo-track {
    --logo-slot-width: 300px;
    --logo-gap: 36px;
    --logo-count: 10;
    display: flex;
    gap: var(--logo-gap);
    width: max-content;
    animation: hatsuly-logo-scroll 40s linear infinite;
    will-change: transform;
}

.hatsuly-logo-marquee.marquee-bottom .hatsuly-logo-track {
    --logo-count: 10;
    animation-duration: 40s;
    animation-delay: -20s;
}

.hatsuly-logo-placeholder {
    width: var(--logo-slot-width);
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hatsuly-logo-placeholder img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.hatsuly-logo-placeholder img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes hatsuly-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc((var(--logo-slot-width) + var(--logo-gap)) * var(--logo-count) * -1));
    }
}

@media (max-width: 767px) {
    .hatsuly-logo-slider-section {
        padding: 14px 0 8px;
    }

    .hatsuly-logo-marquee-wrapper {
        gap: 14px;
    }

    .hatsuly-logo-track {
        --logo-slot-width: 300px;
        --logo-gap: 36px;
        animation-duration: 32s;
    }

    .hatsuly-logo-marquee.marquee-bottom .hatsuly-logo-track {
        animation-duration: 32s;
        animation-delay: -16s;
    }

    .hatsuly-logo-placeholder {
        height: 80px;
    }

    .hatsuly-logo-placeholder img {
        max-height: 34px;
    }
}

/* ============================================================
    お悩み・課題セクション
    ネイビー背景 + ドット柄
    ============================================================ */
.hatsuly-problem {
    background: linear-gradient(135deg, var(--hatsuly-base) 0%, var(--hatsuly-base-dark) 100%) !important;
    position: relative;
}

.hatsuly-problem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(138, 185, 230, 0.10) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.hatsuly-problem .lp-problem-inner {
    position: relative;
    z-index: 1;
}

.hatsuly-problem .lp-problem-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 0.9em;
    color: #333;
    line-height: 1.65;
    font-size: 1.1rem;
}


/* ============================================================
    PC表示の2カラムレイアウト
    ============================================================ */

.lp-problem-grid {
    display: flex;
    align-items: stretch;
    /* 左右カラムを均等に配置 */
    justify-content: space-between;
    gap: 3rem;
}

/* 左側：課題リスト */
.lp-problem-list {
    flex: 1;
    margin: 0;
    /* 既定の余白をリセット */
}

/* 右側：イラスト */
.lp-problem-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* 右寄せ配置 */
    align-items: flex-end;
    /* 下揃え */
}

/* 画像 */
.lp-problem-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    /* 余白をリセット */
}

/* SPは縦並び */
@media (max-width: 768px) {
    .lp-problem-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-problem-visual {
        width: 100%;
        margin-top: 1.5rem;
        justify-content: center;
        align-items: center;
    }
}

/* ============================================================
    特徴セクション
    ネイビーのグラデーション背景
    ============================================================ */
.hatsuly-feature-section {
    background: linear-gradient(160deg,
            var(--hatsuly-base-dark) 0%,
            var(--hatsuly-base) 55%,
            var(--hatsuly-base-mid) 100%) !important;
    position: relative;
    overflow: hidden;
}

.hatsuly-feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(138, 185, 230, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

.hatsuly-feature-section .lp-inner {
    position: relative;
    z-index: 1;
}

/* カードスタイル */
.hatsuly-feature-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--hatsuly-radius) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden;
    position: relative;
    padding: 2rem 1.7rem 1rem;
}

/* ホバー時に上部ラインを表示 */
.hatsuly-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hatsuly-key-green), var(--hatsuly-sub-8a));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hatsuly-feature-card:hover {
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.11) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

.hatsuly-feature-card:hover::before {
    opacity: 1;
}

/* ============================================================
    特徴セクション画像
    ============================================================ */

.hatsuly-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

/* PNG画像 */
.hatsuly-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition:
        transform 0.45s ease,
        opacity 0.3s ease;
}

/* ============================================================
    画像表示の統一
    ============================================================ */

.hatsuly-feature-image {
    width: calc(100% + 30px);
    margin-inline: -15px;
    aspect-ratio: 1 / 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hatsuly-feature-image img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}

/* hover */
.hatsuly-feature-card:hover .hatsuly-feature-image img {
    transform: scale(1.03);
}

/* hover */
.hatsuly-feature-card:hover .hatsuly-feature-image img {
    transform: scale(1.03);
}

/* SP */
@media (max-width: 767px) {

    .hatsuly-feature-image {
        margin-bottom: 1.2rem;
    }

    .hatsuly-feature-image img {
        width: 100%;
    }

}

/* ============================================================
    特徴カードグリッド（3カラム）
    ============================================================ */

.hatsuly-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hatsuly-feature-card--top {
    grid-column: span 1;
}

.hatsuly-feature-card--bottom {
    grid-column: span 1;
}

/* カード高さを揃える */
.hatsuly-feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hatsuly-feature-no {
    display: inline-flex;
    align-self: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    min-width: 6.6em;
    padding: 0.44rem 0.92rem;
    margin-bottom: 1rem;
}

.hatsuly-feature-badge {
    position: absolute;
    top: -1px;
    right: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.8em;
    height: 2.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff !important;
    background: var(--hatsuly-key-green) !important;
    border-top: none;
    padding: 0.32rem 0.76rem 0.56rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
}

.hatsuly-feature-card--support {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(217, 65, 106, 0.14)) !important;
    border: 1px solid rgba(255, 183, 199, 0.55) !important;
    box-shadow: 0 8px 30px rgba(217, 65, 106, 0.22) !important;
}

.hatsuly-feature-card--support::before {
    opacity: 1;
    background: linear-gradient(90deg, #ffd06b, #ff8aa8);
}

.hatsuly-feature-card--support .hatsuly-feature-head h3 {
    color: #fff7f2;
}

.hatsuly-feature-lead {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.84;
    margin: 0 0 1.1rem;
}


.hatsuly-feature-card .hatsuly-feature-lead {
    font-size: 1.02rem;
    line-height: 1.82;
}

.hatsuly-feature-card .hatsuly-feature-points li {
    font-size: 1rem;
    line-height: 1.68;
}

/* ============================================================
    レスポンシブ（特徴カード）
    ============================================================ */

@media (max-width: 1024px) {

    .hatsuly-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hatsuly-feature-card--top,
    .hatsuly-feature-card--bottom {
        grid-column: auto;
    }

}

@media (max-width: 767px) {

    .hatsuly-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hatsuly-feature-card--top,
    .hatsuly-feature-card--bottom {
        grid-column: auto;
    }

}

/* ============================================================
    アイコン + 見出し（基本）
    ============================================================ */

.hatsuly-feature-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hatsuly-feature-head .hatsuly-feature-icon-wrap {
    margin: 0;
    flex-shrink: 0;
}

.hatsuly-feature-head h3 {
    margin: 0;
    line-height: 1.5;
}


/* ============================================================
    アイコン + 見出し（PC調整）
    ============================================================ */

.hatsuly-feature-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hatsuly-feature-head .hatsuly-feature-icon-wrap {
    margin: 0;
    flex-shrink: 0;
}

.hatsuly-feature-head h3 {
    margin: 0;
    line-height: 1.5;
}

/* SP */
@media (max-width: 767px) {

    .hatsuly-feature-head {
        gap: 0.85rem;
        align-items: flex-start;
    }

    .hatsuly-feature-head .hatsuly-feature-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .hatsuly-feature-head h3 {
        font-size: 1.15rem;
    }

    .hatsuly-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hatsuly-feature-head {
        align-items: flex-start;
    }

    .hatsuly-feature-head .hatsuly-feature-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .hatsuly-feature-head h3 {
        font-size: 1.15rem;
    }

}


/* アイコンラッパー */
.hatsuly-feature-icon-wrap {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 185, 230, 0.22), rgba(70, 102, 200, 0.10));
    border: 1px solid rgba(138, 185, 230, 0.35);
    margin: 0 auto 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hatsuly-feature-card:hover .hatsuly-feature-icon-wrap {
    background: linear-gradient(135deg, rgba(217, 65, 106, 0.28), rgba(138, 185, 230, 0.15));
    border-color: rgba(217, 65, 106, 0.4);
    transform: scale(1.08);
}

.hatsuly-feature-icon {
    font-size: 1.85rem;
    color: var(--hatsuly-sub-8a);
    transition: color 0.3s ease;
}

.hatsuly-feature-card:hover .hatsuly-feature-icon {
    color: var(--hatsuly-key-green);
}

/* カード見出し */
.hatsuly-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.hatsuly-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
    text-align: left;
}

/* 箇条書き */
.hatsuly-feature-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hatsuly-feature-points li {
    position: relative;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.68;
    font-weight: 500;
}

@media (max-width: 767px) {

    .hatsuly-feature-no {
        font-size: 0.8rem;
        min-width: 6.2em;
        padding: 0.4rem 0.82rem;
    }

    .hatsuly-feature-badge {
        font-size: 0.68rem;
        min-width: 6.2em;
        height: 2.25rem;
        padding: 0.28rem 0.62rem 0.5rem;
    }
}

/* チェックアイコン */
.hatsuly-feature-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 0.9rem;
    color: var(--hatsuly-key-green);
}

/* ============================================================
    選ばれる理由セクション
    ============================================================ */
.hatsuly-reason-section {
    background: #ffffff;
}

.hatsuly-accent-text {
    color: var(--hatsuly-key-green);
}

.hatsuly-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.hatsuly-reason-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--hatsuly-sub-f7);
    border-radius: var(--hatsuly-radius);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--hatsuly-sub-ea);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hatsuly-reason-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hatsuly-shadow-hover);
    border-color: var(--hatsuly-sub-d7);
}

.hatsuly-reason-number {
    flex-shrink: 0;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    /* ネイビー→ピンクのグラデーション数字 */
    background: linear-gradient(135deg, var(--hatsuly-base), var(--hatsuly-key-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
}

.hatsuly-reason-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hatsuly-base);
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.hatsuly-reason-body p {
    font-size: 0.925rem;
    color: var(--hatsuly-text-mid);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .hatsuly-reason-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hatsuly-lp #function .hatsuly-reason-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================================
    料金セクション
    ============================================================ */
/* セクション見出し・サブカラーの背景グレー */
.hatsuly-price-section {
    background: var(--hatsuly-sub-f7);
}

.hatsuly-price-lead {
    text-align: center;
    color: var(--hatsuly-text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* プランカードグリッド */
.hatsuly-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
    justify-content: center;
}

/* カードが2枚のときは中央寄せ2カラム */
.hatsuly-plan-grid:has(> :last-child:nth-child(2)) {
    grid-template-columns: repeat(2, minmax(0, 420px));
}

.hatsuly-flow-video {
    position: relative;
    width: calc(100% + 3.5rem);
    margin: 0 -1.75rem 1rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.hatsuly-flow-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hatsuly-flow-lead {
    font-size: 1.04rem;
    color: var(--hatsuly-base);
    line-height: 1.72;
    margin: 0;
}

/* プランカード（個別） */
.hatsuly-plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--hatsuly-sub-ea);
    border-radius: var(--hatsuly-radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.hatsuly-plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hatsuly-sub-ea);
    transition: background 0.3s ease;
}

.hatsuly-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(33, 58, 108, 0.14);
}

.hatsuly-plan-card:hover::before {
    background: linear-gradient(90deg, var(--hatsuly-base), var(--hatsuly-sub-8a));
}

/* プランヘッダー */
.hatsuly-plan-header {
    margin-bottom: 1.25rem;
    text-align: center;
}

.hatsuly-plan-name {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--hatsuly-base);
    line-height: 1.1;
    margin: 1rem 0;
}

.hatsuly-plan-subtitle {
    font-size: 0.85rem;
    color: var(--hatsuly-text-dark);
    display: block;
    padding: 0.4rem 2rem;
    border: 1px solid var(--hatsuly-key-green);
    border-radius: 4px;
    text-align: center;
}

.hatsuly-plan-price-label {
    font-size: 0.875rem;
    color: var(--hatsuly-text-light);
    margin: 0;
}

.hatsuly-plan-price-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--hatsuly-base);
    letter-spacing: -0.02em;
}

/* 料金リスト */
.hatsuly-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    flex: 1;
}

.hatsuly-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55em;
    font-size: 1rem;
    color: var(--hatsuly-text-dark);
    line-height: 1.6;
}

.hatsuly-plan-features li .fa-circle-check {
    color: var(--hatsuly-key-green);
    flex-shrink: 0;
    margin-top: 0.4em;
    font-size: 0.95rem;
}

/* プランカードレスポンシブ */
@media (max-width: 992px) {
    .hatsuly-plan-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    .hatsuly-flow-video {
        width: calc(100% + 3rem);
        margin: 0 -1.5rem 0.9rem;
    }
}


/* ============================================================
    導入事例カード
    ============================================================ */
.hatsuly-lp .lp-case-grid.grid-cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hatsuly-lp .lp-case-card {
    border-radius: var(--hatsuly-radius) !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--hatsuly-border);
    background: #ffffff;
    box-shadow: none !important;
}

.hatsuly-lp .lp-case-card:hover {
    transform: translateY(-5px);
}

.hatsuly-lp .lp-case-card .lp-case-img {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hatsuly-lp .lp-case-card .lp-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hatsuly-lp .lp-case-card:hover .lp-case-img img {
    transform: scale(1.04);
}

.hatsuly-lp .lp-case-title {
    color: var(--hatsuly-base) !important;
}

/* 企業名バッジ（サブカラー） */
.hatsuly-lp .lp-case-company {
    display: inline-block;
    font-weight: 700;
    color: var(--hatsuly-key-green);
    margin-bottom: 0.5em;
}

/* ============================================================
    環境テーブル
    ============================================================ */
.hatsuly-lp .lp-environment-table th {
    background: var(--hatsuly-sub-ea);
}

.hatsuly-lp .lp-environment-table th,
.hatsuly-lp .lp-environment-table td {
    border-color: var(--hatsuly-base) !important;
}

.hatsuly-lp .lp-environment-table {
    border-color: var(--hatsuly-base) !important;
}

.hatsuly-lp .lp-environment-table td strong {
    color: var(--hatsuly-base) !important;
}

.lp-environment-table th {
    width: 220px !important;
}

/* ============================================================
    レスポンシブ調整
    ============================================================ */
@media (max-width: 767px) {
    .lp-environment-table th {
        width: 100px!important;
    }
}

/* ============================================================
    FAQアコーディオン
    ============================================================ */
.hatsuly-lp .accordion-button:not(.collapsed) {
    color: var(--hatsuly-base);
    background-color: var(--hatsuly-sub-d7);
    box-shadow: inset 0 -1px 0 var(--hatsuly-sub-ea);
}

.hatsuly-lp .accordion-button {
    color: var(--hatsuly-base);
}

.hatsuly-lp .lp-faq .accordion-button::before {
    color: var(--hatsuly-key-green-dark) !important;
}

.hatsuly-lp .accordion-button:not(.collapsed)::after {
    /* ネイビー寄りに色調整 */
    filter: invert(20%) sepia(60%) saturate(400%) hue-rotate(195deg);
}

.hatsuly-lp .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 58, 108, 0.20);
}

/* ============================================================
    セクション共通タイトル（下線グラデーション）
    ピンク + サブカラー
    ============================================================ */
.hatsuly-lp .lp-block-title.has-line::after {
    background: linear-gradient(90deg, var(--hatsuly-key-green), var(--hatsuly-sub-8a));
}

/* ============================================================
    実現イメージ
    ============================================================ */
.hatsuly-lp .hatsuly-realize-image {
    border-radius: var(--hatsuly-radius);
    overflow: hidden;
}

.hatsuly-lp .hatsuly-realize-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================
    レスポンシブ調整
    ============================================================ */
@media (max-width: 768px) {
    .hatsuly-mv-tagline {
        font-size: 0.7rem;
    }

    .hatsuly-lp .lp-logo img {
        width: 148px !important;
    }

    .hatsuly-mv .lp-main-lead {
        max-width: 100%;
    }

    .hatsuly-feature-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .hatsuly-feature-icon {
        font-size: 1.5rem;
    }

    .hatsuly-reason-number {
        font-size: 2rem;
    }

}

/* ============================================================
    アニメーション（products-base.js 連動）
    ============================================================ */
.hatsuly-lp .reveal-item {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
    プリント対応
    ============================================================ */
@media print {

    .hatsuly-mv::before,
    .hatsuly-mv::after {
        display: none;
    }

    .hatsuly-mv {
        background: var(--hatsuly-sub-f7) !important;
    }

    .hatsuly-feature-section {
        background: var(--hatsuly-base) !important;
    }

    .hatsuly-plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ============================================================
    hatsuly LP 追加調整
   ============================================================ */

.hatsuly-lp .hatsuly-video {
    margin-top: 2.25rem;
}

.hatsuly-lp .hatsuly-video.is-visible,
.hatsuly-lp .lp-realize-visual.is-visible .hatsuly-video {
    display: block;
}

.hatsuly-lp .hatsuly-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--hatsuly-radius-sm);
    overflow: hidden;
    background: #0f172a;
}

.hatsuly-lp .hatsuly-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hatsuly-lp .hatsuly-video-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--hatsuly-text-mid);
}

.hatsuly-lp .hatsuly-video-note a {
    color: var(--hatsuly-key-green);
    text-decoration: underline;
}

.hatsuly-lp #overview .lp-realize-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 5rem);
    align-items: start;
}

.hatsuly-lp #overview .lp-inner {
    max-width: 1280px;
}

.hatsuly-lp #overview .lp-realize-content {
    width: 100%;
    max-width: 100%;
}

.hatsuly-lp #overview .lp-realize-heading {
    margin-bottom: 2rem;
}

.hatsuly-lp #overview .lp-realize-visual {
    width: 100%;
    max-width: none;
}

.hatsuly-lp #overview .lp-realize-content.is-visible,
.hatsuly-lp #overview .lp-realize-visual.is-visible {
    display: block;
}

.hatsuly-lp #overview .lp-realize-visual .hatsuly-video {
    margin-top: 0;
}

.hatsuly-lp #overview .hatsuly-video-embed {
    width: 100%;
}

.hatsuly-lp #function .hatsuly-reason-body h3 {
    font-size: 1.25rem;
}

.hatsuly-lp #case .lp-case-grid.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.hatsuly-lp #case .lp-case-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.85rem;
}

.hatsuly-lp #case .lp-case-title {
    font-size: 1.4rem;
    line-height: 1.5;
    padding-inline: 0.45rem;
}

.hatsuly-lp #case .lp-case-company {
    font-size: 1rem;
    padding-inline: 0.45rem;
}

.hatsuly-lp #case .lp-case-lead {
    font-size: 1.04rem;
    line-height: 1.78;
    color: var(--hatsuly-base);
    padding-inline: 0.45rem;
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .hatsuly-lp #overview .lp-realize-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hatsuly-lp #case .lp-case-grid.grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .hatsuly-lp #case .lp-case-grid.grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
}

.hatsuly-case-photo-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--hatsuly-radius-sm);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.hatsuly-case-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ・Contactセクション */
.hatsuly-contact-section {
    padding: 80px 24px;
    background: #d7ecab;
}

.hatsuly-contact-inner {
    max-width: 980px;
}

.hatsuly-contact-lead {
    text-align: center;
    color: var(--hatsuly-base);
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 auto 2rem;
}

.hatsuly-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hatsuly-contact-card {
    background: #fff;
    border: none;
    border-radius: var(--hatsuly-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 20px rgba(28, 38, 72, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.hatsuly-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(115, 192, 51, 0.14);
    color: var(--hatsuly-key-green-dark);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hatsuly-contact-card:nth-child(2) .hatsuly-contact-icon {
    background: rgba(42, 53, 105, 0.14);
    color: var(--hatsuly-base);
}

.hatsuly-contact-title {
    margin: 0;
    color: var(--hatsuly-base);
    font-size: 1.35rem;
    font-weight: 700;
}

.hatsuly-contact-desc {
    margin: 0;
    color: var(--hatsuly-text-mid);
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: center;
}

.hatsuly-contact-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
}

.hatsuly-contact-card .lp-btn-contact,
.hatsuly-contact-card .lp-btn-contact:hover,
.hatsuly-contact-card .lp-btn-contact:focus {
    color: #ffffff !important;
}

.hatsuly-contact-note {
    margin-top: 1.15rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--hatsuly-base);
}

@media (max-width: 767px) {
    .hatsuly-contact-section {
        padding: 56px 16px;
    }

    .hatsuly-contact-cards {
        grid-template-columns: 1fr;
    }

    .hatsuly-contact-title {
        font-size: 1.2rem;
    }

    .hatsuly-contact-desc {
        min-height: 0;
    }
}

/* ---- Hatsuly LP precision overrides (Modely-aligned) ---- */
.hatsuly-lp,
.hatsuly-lp h1,
.hatsuly-lp h2,
.hatsuly-lp h3,
.hatsuly-lp h4,
.hatsuly-lp h5,
.hatsuly-lp h6,
.hatsuly-lp p,
.hatsuly-lp li,
.hatsuly-lp dt,
.hatsuly-lp dd,
.hatsuly-lp th,
.hatsuly-lp td,
.hatsuly-lp small,
.hatsuly-lp .accordion-button,
.hatsuly-lp .accordion-body,
.hatsuly-lp .lp-main-lead,
.hatsuly-lp .lp-problem-list li,
.hatsuly-lp .hatsuly-flow-lead,
.hatsuly-lp .hatsuly-feature-lead,
.hatsuly-lp .lp-case-title,
.hatsuly-lp .lp-case-company,
.hatsuly-lp .lp-case-lead {
    color: var(--hatsuly-base);
}

.hatsuly-lp .color-white,
.hatsuly-lp .color-white *,
.hatsuly-lp .lp-btn,
.hatsuly-lp .lp-btn *,
.hatsuly-lp .lp-main-partner,
.hatsuly-lp .hatsuly-feature-section .lp-block-title,
.hatsuly-lp .hatsuly-feature-section .lp-block-title * {
    color: inherit;
}

/* お困りごと見出しはネイビー背景のため白を維持 */
.hatsuly-lp #problem .lp-block-title.color-white {
    color: #ffffff;
}

.hatsuly-lp .lp-btn,
.hatsuly-lp .lp-btn * {
    color: #ffffff !important;
}

.hatsuly-mv .lp-main-visual {
    position: relative;
}

.hatsuly-netis-badge {
    position: absolute;
    right: -20px;
    top: -30px;
    width: 168px;
    height: 168px;
    color: #111111;
    z-index: 4;
}

.hatsuly-netis-badge__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hatsuly-netis-badge__text {
    position: absolute;
    inset: 30px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
}

.hatsuly-netis-badge__headline {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #111111;
}

.hatsuly-netis-badge__value {
    display: block;
    font-family: var(--font-num, inherit);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0.02em;
    color: #111111;
}

.hatsuly-problem {
    background: linear-gradient(135deg, #1f2329 0%, #15181d 100%) !important;
}

.hatsuly-lp #overview .hatsuly-overview-points {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 42rem;
}

.hatsuly-lp #overview .hatsuly-overview-points li {
    position: relative;
    padding-left: 1.95rem;
    margin-bottom: 0.78rem;
    font-size: clamp(1.04rem, 0.98rem + 0.22vw, 1.16rem);
    line-height: 1.62;
}

.hatsuly-lp #overview .hatsuly-overview-points li:last-child {
    margin-bottom: 0;
}

.hatsuly-lp #overview .hatsuly-overview-points li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0.5em;
    color: var(--hatsuly-key-green);
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.hatsuly-lp #merit .hatsuly-feature-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--hatsuly-radius) !important;
    box-shadow: none !important;
    padding: 2rem 1.7rem 1rem;
}

.hatsuly-lp #merit .lp-block-title {
    color: #ffffff !important;
}

.hatsuly-lp #merit .hatsuly-feature-no {
    color: var(--hatsuly-key-green);
    background: transparent;
    border: 1px solid var(--hatsuly-key-green);
}

.hatsuly-lp #merit .hatsuly-feature-card h3 {
    color: #ffffff !important;
}

.hatsuly-lp #merit .hatsuly-feature-lead,
.hatsuly-lp #merit .hatsuly-feature-card p {
    color: rgba(255, 255, 255, 0.88) !important;
}

.hatsuly-lp #function .lp-inner {
    max-width: 1080px;
}

.hatsuly-lp #function .hatsuly-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.hatsuly-lp #function .hatsuly-reason-item {
    border-radius: var(--hatsuly-radius);
    border: 1px solid var(--hatsuly-sub-ea);
    background: var(--hatsuly-sub-f7);
    box-shadow: none;
}

.hatsuly-lp #function .hatsuly-function-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: #0f172a;
}

.hatsuly-lp #function .hatsuly-function-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hatsuly-lp #function .hatsuly-function-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hatsuly-lp #function .hatsuly-reason-body p {
    color: var(--hatsuly-base);
}

.hatsuly-lp #flow .hatsuly-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.hatsuly-lp #flow .hatsuly-plan-card {
    position: relative;
    overflow: visible;
}

.hatsuly-lp #flow .hatsuly-plan-card:nth-child(1)::after,
.hatsuly-lp #flow .hatsuly-plan-card:nth-child(2)::after {
    content: "\f054";
    position: absolute;
    top: 50%;
    right: -2.8rem;
    transform: translateY(-50%);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    background: var(--hatsuly-base);
    color: #ffffff;
    line-height: 1;
    z-index: 4;
    pointer-events: none;
}

.hatsuly-lp #flow .hatsuly-flow-lead {
    color: var(--hatsuly-base);
}

.hatsuly-lp #case .lp-case-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.85rem;
}

.hatsuly-lp #case .hatsuly-case-photo-placeholder {
    width: calc(100% + 1.7rem);
    aspect-ratio: 16 / 10;
    border-radius: 0;
    overflow: hidden;
    margin: -0.85rem -0.85rem 0.65rem;
}

.hatsuly-lp #case .hatsuly-case-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hatsuly-lp #case .lp-case-company {
    color: #2090f3;
}

.hatsuly-lp #case .lp-case-lead {
    line-height: 1.82;
}

@media (max-width: 1200px) {
    .hatsuly-netis-badge {
        right: 0;
    }
}

@media (max-width: 992px) {
    .hatsuly-lp #flow .hatsuly-plan-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    .hatsuly-lp #flow .hatsuly-plan-card:nth-child(1)::after,
    .hatsuly-lp #flow .hatsuly-plan-card:nth-child(2)::after {
        content: "\f078";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1.15rem;
        transform: translateX(-50%);
    }

    .hatsuly-netis-badge {
        right: 16px;
        top: -18px;
        width: 148px;
        height: 148px;
    }

    .hatsuly-netis-badge__text {
        inset: 26px 20px 24px;
    }

    .hatsuly-netis-badge__headline {
        font-size: 1.05rem;
    }

    .hatsuly-netis-badge__value {
        font-size: 0.76rem;
    }
}

@media (max-width: 767px) {
    .hatsuly-lp #case .lp-case-grid.grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
}

