/* ================================================================
   style-new.css — プロダクトシンク株式会社 リニューアル追加CSS
   自社SaaS感・高級感・モダンUI
   ================================================================ */

/* ---------------------------------------------------------------
   CSS Variables (既存の青系グラデーションに準拠)
--------------------------------------------------------------- */
:root {
    --clr-blue-light: #4FC1E1;
    --clr-blue-dark:  #165F83;
    --clr-teal:       #2CC9C0;
    --clr-teal-dark:  #1A8F88;
    --clr-text:       #1a1a2e;
    --clr-text-light: #434343;
    --clr-bg:         #ffffff;
    --clr-bg-subtle:  #f7f9fc;
    --gradient-blue:  linear-gradient(135deg, #4FC1E1 0%, #165F83 100%);
    --gradient-teal:  linear-gradient(135deg, #2CC9C0 0%, #165F83 100%);
    --shadow-card:    0 8px 32px rgba(22,95,131,0.12);
    --shadow-hover:   0 16px 48px rgba(22,95,131,0.22);
    --radius-lg:      16px;
    --radius-xl:      24px;
}

/* ---------------------------------------------------------------
   Reveal Animation
--------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
   HERO (fv-new) — 新しいヒーローセクション
   方針: 白〜薄青の明るいクリーンな背景。テキスト濃色で読みやすく。
   右カラムに2枚のプロダクトカード（等幅・情報充実）を配置。
--------------------------------------------------------------- */
.fv-new {
    min-height: 100vh;
    background: #ffffff;
    background-image: url(../img/fv-back.webp);
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* 左側に薄い白グラデーションをかけてテキスト読みやすく */
.fv-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            105deg,
            rgba(255,255,255,0.92) 0%,
            rgba(255,255,255,0.85) 35%,
            rgba(255,255,255,0.4) 60%,
            rgba(255,255,255,0.0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* 下端フェード：青帯への自然なつながり用 */
.fv-new::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.fv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 140px 6% 80px;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* ラベルバッジ */
.fv-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,95,131,0.08);
    border: 1px solid rgba(22,95,131,0.25);
    color: var(--clr-blue-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    width: fit-content;
}
.fv-label::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--clr-blue-light);
    border-radius: 50%;
    display: block;
}

/* ヘッドライン — 濃色で読みやすく */
.fv-headline {
    font-size: clamp(40px, 4.8vw, 68px);
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: "heisei-kaku-gothic-std", sans-serif;
}
.fv-headline-accent {
    color: var(--clr-blue-dark);
    background: none;
    -webkit-text-fill-color: var(--clr-blue-dark);
}

/* サブテキスト — 濃めグレーで読みやすく */
.fv-subtext {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 400;
}

.fv-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(22,95,131,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,95,131,0.4); }

.btn-primary--teal {
    background: var(--gradient-teal);
    box-shadow: 0 4px 20px rgba(44,201,192,0.4);
}
.btn-primary--teal:hover { box-shadow: 0 8px 32px rgba(44,201,192,0.5); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--clr-blue-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 100px;
    border: 1.5px solid var(--clr-blue-dark);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--clr-blue-dark); color: #fff; }

.btn-ghost--small {
    font-size: 13px;
    padding: 10px 20px;
    color: var(--clr-text-light);
    border-color: #ccd;
}
.btn-ghost--small:hover { border-color: var(--clr-blue-dark); color: var(--clr-blue-dark); background: transparent; }

.btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--clr-blue-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
    gap: 4px;
}
.btn-text:hover { gap: 8px; }

/* ---------------------------------------------------------------
   Hero Right — プロダクトカード（2枚、等幅、情報充実）
--------------------------------------------------------------- */
.fv-visual { position: relative; }
.fv-mockup-wrap { position: relative; display: flex; flex-direction: column; gap: 16px; }
.fv-mockup-inner { display: flex; flex-direction: column; gap: 16px; }

/* カード共通 — 等幅、白背景、影でくっきり */
.hero-product-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(22,95,131,0.14), 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid rgba(22,95,131,0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s, box-shadow 0.25s;
}
.hero-product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(22,95,131,0.2); }

/* カード上部の色帯アクセント */
.hero-card--rp { border-top: 3px solid var(--clr-blue-light); }
.hero-card--rv { border-top: 3px solid var(--clr-teal); margin-left: 0; }

/* カードヘッダ行：タグ＋サービス名 */
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.hero-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
    background: var(--gradient-blue);
    padding: 3px 10px;
    border-radius: 100px;
}
.hero-card--rv .hero-card-tag { background: var(--gradient-teal); }
.hero-card-ext-link {
    font-size: 11px;
    color: var(--clr-blue-dark);
    font-weight: 600;
    text-decoration: none;
    opacity: 0.7;
    letter-spacing: 0.05em;
}
.hero-card-ext-link:hover { opacity: 1; }

.hero-card-name {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-family: "articulat-cf", sans-serif;
    letter-spacing: -0.01em;
}

/* カードの説明文 */
.hero-card-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 400;
}

/* 数値ハイライト行 */
.hero-card-stats {
    display: flex;
    gap: 0;
    background: #f7f9fc;
    border-radius: 10px;
    overflow: hidden;
}
.hero-card-stat {
    flex: 1;
    padding: 10px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-card-stat + .hero-card-stat { border-left: 1px solid #e4e8ef; }
.hero-card-stat span { font-size: 10px; color: #888; }
.hero-card-stat strong {
    font-size: 18px;
    color: var(--clr-blue-dark);
    font-weight: 900;
    font-family: "articulat-cf", sans-serif;
    line-height: 1.1;
}
.hero-card--rv .hero-card-stat strong { color: var(--clr-teal-dark); }

/* スクロールヒント */
.fv-scrollhint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}
.fv-scrollhint span {
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(22,95,131,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
.fv-scrollhint p { font-size: 10px; letter-spacing: 0.2em; color: rgba(22,95,131,0.5); }
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.fv-glow { display: none; }
.fv-badge { display: none; }

/* ---------------------------------------------------------------
   MISSION STRIP
--------------------------------------------------------------- */
.mission-strip {
    background: linear-gradient(90deg, #4FC1E1 0%, #165F83 100%);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}
.mission-inner { width: 90%; max-width: 900px; margin: 0 auto; text-align: center; }
.mission-text {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    line-height: 2;
    font-weight: 300;
}
.mission-text strong { color: #fff; font-weight: 700; }

/* ---------------------------------------------------------------
   SECTION COMMON HEADERS
--------------------------------------------------------------- */
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--clr-blue-light);
    font-family: "articulat-cf", sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--clr-text);
    font-weight: 900;
    margin-bottom: 16px;
    font-family: "heisei-kaku-gothic-std", sans-serif;
}
.section-desc { font-size: 15px; color: var(--clr-text-light); font-weight: 300; }

/* ---------------------------------------------------------------
   OWN PRODUCTS SECTION
--------------------------------------------------------------- */
.own-products {
    padding: 100px 0;
    background: var(--clr-bg);
}

.product-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 100px;
}
.product-feature--right { }

.product-tag {
    display: inline-block;
    background: rgba(79,193,225,0.1);
    color: var(--clr-blue-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(79,193,225,0.3);
}
.product-tag--teal {
    background: rgba(44,201,192,0.1);
    color: var(--clr-teal-dark);
    border-color: rgba(44,201,192,0.3);
}

.product-feature-name {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--clr-text);
    margin-bottom: 12px;
    font-family: "articulat-cf", sans-serif;
}

.product-feature-catch {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-blue-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-feature-desc {
    font-size: 14px;
    color: var(--clr-text-light);
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
}

.product-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.product-feature-tags li {
    background: var(--clr-bg-subtle);
    color: var(--clr-text-light);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid #e4e8ef;
}

.product-feature-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------------------------------------------------------------
   MOCKUP UI Cards
--------------------------------------------------------------- */
.product-mockup {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    max-width: 100%;
    width: 100%;
}
.product-mockup:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }

.product-mockup--blue { border: 1px solid rgba(79,193,225,0.2); }
.product-mockup--teal { border: 1px solid rgba(44,201,192,0.2); }

.mockup-header {
    background: linear-gradient(90deg, #0d3d5c, #165F83);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mockup-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
.mockup-title {
    margin-left: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-family: "articulat-cf", sans-serif;
    letter-spacing: 0.05em;
}

.mockup-body { padding: 20px; }
.mockup-section-title {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
}
.mockup-row:last-of-type { border-bottom: none; }
.mockup-label { font-size: 12px; color: #888; font-weight: 500; }
.mockup-value { font-size: 13px; color: var(--clr-text); font-weight: 700; }
.mockup-value--paid { color: #00b894; }

.mockup-btn {
    background: var(--gradient-blue);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    margin-top: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.mockup-btn:hover { opacity: 0.88; }
.mockup-btn--teal { background: var(--gradient-teal); }

.mockup-stat {
    display: flex;
    background: var(--clr-bg-subtle);
    border-top: 1px solid #f0f2f5;
}
.stat-item {
    flex: 1;
    padding: 16px;
    text-align: center;
}
.stat-item + .stat-item { border-left: 1px solid #eee; }
.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--clr-blue-dark);
    font-family: "articulat-cf", sans-serif;
    line-height: 1;
}
.stat-num em { font-size: 14px; font-style: normal; }
.stat-label { display: block; font-size: 10px; color: #999; margin-top: 4px; }

.review-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.review-stars span:first-child { color: #f4c430; font-size: 16px; }
.review-count { font-size: 12px; color: #888; }

/* Booking items */
.mockup-booking { margin-bottom: 8px; }
.booking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}
.booking-time { font-size: 12px; font-weight: 700; color: var(--clr-blue-dark); min-width: 42px; }
.booking-name { font-size: 12px; color: var(--clr-text); flex: 1; }
.booking-status { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.booking-status.paid { background: rgba(0,184,148,0.1); color: #00b894; }
.booking-status.pending { background: rgba(253,165,40,0.1); color: #f39c12; }

/* AI shift items */
.ai-shift-item {
    font-size: 12px;
    color: var(--clr-text-light);
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

/* ---------------------------------------------------------------
   PRESS RELEASE SECTION
--------------------------------------------------------------- */
.press-section {
    background: var(--clr-bg-subtle);
    padding: 80px 0;
}
.press-section--products { padding: 80px 0; }

.press-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.press-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid #e4e8ef;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.press-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.press-card-meta { display: flex; align-items: center; gap: 10px; }
.press-date { font-size: 12px; color: #999; }
.press-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(44,201,192,0.1);
    color: var(--clr-teal-dark);
    padding: 3px 10px;
    border-radius: 100px;
}
.press-badge--blue {
    background: rgba(79,193,225,0.1);
    color: var(--clr-blue-dark);
}

.press-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.6;
    flex: 1;
}

.press-card-source { display: flex; justify-content: space-between; align-items: center; }
.prtimes-logo {
    font-size: 11px;
    font-weight: 900;
    color: #e8485a;
    letter-spacing: 0.05em;
    font-family: "articulat-cf", sans-serif;
}
.press-arrow { font-size: 14px; color: #ccc; transition: color 0.2s, transform 0.2s; display: inline-block; }
.press-card:hover .press-arrow { color: var(--clr-blue-dark); transform: translateX(4px); }

/* ---------------------------------------------------------------
   PRODUCTS PAGE — SaaS Full Sections
--------------------------------------------------------------- */
.products-page-header {
    position: relative;
}
.products-page-lead {
    margin-top: 20px;
    font-size: 16px;
    color: #434343;
    font-weight: 300;
}

.products-saas-section {
    padding: 80px 0;
    background: #fff;
}
.products-saas-section--alt { background: var(--clr-bg-subtle); }

.products-saas-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.products-saas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 18px;
    border-radius: 100px;
    margin-bottom: 36px;
}
.products-saas-badge--teal { background: var(--gradient-teal); }

.products-saas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.products-saas-grid--reverse { }

.products-saas-name {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: var(--clr-text);
    margin-bottom: 12px;
    font-family: "articulat-cf", sans-serif;
}
.products-saas-catch {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-blue-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}
.products-saas-desc {
    font-size: 14px;
    color: var(--clr-text-light);
    line-height: 1.9;
    margin-bottom: 28px;
    font-weight: 300;
}

.products-saas-stats {
    display: flex;
    gap: 0;
    background: var(--clr-bg-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid #e4e8ef;
}
.saas-stat {
    flex: 1;
    padding: 20px 16px;
    text-align: center;
}
.saas-stat + .saas-stat { border-left: 1px solid #e4e8ef; }
.saas-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--clr-blue-dark);
    font-family: "articulat-cf", sans-serif;
    line-height: 1;
}
.saas-stat-num em { font-size: 16px; font-style: normal; }
.saas-stat-label { display: block; font-size: 11px; color: #999; margin-top: 4px; }

.products-saas-features h4 {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #999;
    font-weight: 600;
    margin-bottom: 12px;
}
.products-saas-features ul { list-style: none; padding: 0; margin: 0 0 28px; }
.products-saas-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--clr-text-light);
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}
.feat-icon {
    color: var(--clr-blue-dark);
    font-weight: 900;
    flex-shrink: 0;
}
.feat-icon--teal { color: var(--clr-teal-dark); }

.products-saas-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.product-mockup--large { }

/* ---------------------------------------------------------------
   PRODUCTS OTHER section separator
--------------------------------------------------------------- */
.products-other {
    padding: 60px 0 40px;
    background: #fff;
}

/* ---------------------------------------------------------------
   Responsive — Tablet / SP
--------------------------------------------------------------- */

/* タブレット (820px以下) */
@media (max-width: 820px) {
    /* ヒーロー: 2カラム→1カラム縦積み */
    .fv-grid {
        grid-template-columns: 1fr;
        padding: 110px 5% 56px;
        gap: 28px;
        min-height: auto;
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
    }
    .fv-new {
        min-height: 1000px;
        overflow: hidden;
    }
    .fv-new::after { display: none; }
    .fv-visual { display: block; width: 100%; }
    .fv-scrollhint { display: none; }

    /* カード: 縦積み（最初から縦） */
    .fv-mockup-wrap { width: 100%; }
    .fv-mockup-inner { flex-direction: column; gap: 14px; width: 100%; }
    .hero-product-card {
        width: 100%;
        box-sizing: border-box;
        padding: 20px 20px;
    }
    .hero-card-name { font-size: 20px; }
    .hero-card-desc { display: block; font-size: 12px; }
    .hero-card-stats { flex-direction: row; }
    .hero-card-stat + .hero-card-stat { border-left: 1px solid #e4e8ef; border-top: none; }
    .hero-card-stat strong { font-size: 16px; }

    /* 自社プロダクト特集 */
    .product-feature,
    .product-feature--right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-feature--right .product-feature-visual { order: -1; }

    /* プレスリリース */
    .press-cards { grid-template-columns: 1fr; }

    /* プロダクトページ */
    .products-saas-grid,
    .products-saas-grid--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .products-saas-grid--reverse .products-saas-visual { order: -1; }
    .products-saas-stats { flex-direction: row; }

    /* ミッションストリップ */
    .mission-text { font-size: 14px; }
    .mission-strip { margin-top: 0; }

    /* News〜Strengthの過剰な余白を抑制 */
    .top-news { padding-bottom: 64px; }
    .sec-headline { margin-top: 64px; }
}

/* スマホ (500px以下) */
@media (max-width: 500px) {
    /* 横スクロール防止 */
    body { overflow-x: hidden; }

    /* ヒーロー */
    .fv-headline { font-size: 34px; line-height: 1.2; }
    .fv-subtext { font-size: 14px; margin-bottom: 24px; }
    .fv-label { font-size: 11px; }
    .fv-grid { padding: 96px 4% 52px; gap: 24px; box-sizing: border-box; width: 100%; }

    /* CTAボタン: 縦並び全幅 */
    .fv-ctas { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-ghost {
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* ミッションストリップ */
    .mission-strip { padding: 24px 0; margin-top: 0; }
    .mission-text { font-size: 13px; line-height: 1.9; }
    .pc-br { display: none; }

    /* 自社プロダクトセクション */
    .own-products { padding: 48px 0; }
    .product-feature { margin-bottom: 48px; width: 92%; }
    .product-feature-name { font-size: 26px; }
    .product-feature-catch { font-size: 16px; }
    .product-feature-ctas { flex-direction: column; gap: 10px; }

    /* プレスリリース */
    .press-section { padding: 48px 0; }
    .press-cards { width: 92%; gap: 14px; }
    .press-card { padding: 18px; }
    .press-card-title { font-size: 13px; }

    /* セクション共通ヘッド */
    .section-title { font-size: 24px; }
    .section-desc { font-size: 13px; }
    .section-head { margin-bottom: 40px; }

    /* News〜Strengthの過剰な余白を抑制 */
    .top-news { padding-bottom: 48px; }
    .sec-headline { margin-top: 48px; }
    .top-strength { padding-bottom: 48px; }

    /* プロダクトページ stats */
    .products-saas-stats { flex-direction: column; }
    .saas-stat + .saas-stat { border-left: none; border-top: 1px solid #e4e8ef; }
}