@charset "UTF-8";


/* ============================================================
   CSS Variables & Reset
   ============================================================ */
:root {
    --color-primary: #0066cc;
    --color-primary-dark: #004fa3;
    --color-primary-light: #e8f2ff;
    --color-accent: #00a651;
    --color-accent-dark: #007d3c;
    --color-text: #1a1a2e;
    --color-text-sub: #555566;
    --color-text-light: #888899;
    --color-bg: #ffffff;
    --color-bg-gray: #f5f7fa;
    --color-bg-dark: #0d1b2a;
    --color-border: #dde3ee;
    --color-white: #ffffff;
    --color-red: #e63946;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --container: 1120px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 751px) {
    .sp-visible {
        display: none !important;
    }
}

@media (max-width: 750px) {
    .pc-visible {
        display: none !important;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.l-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.l-section {
    padding: 80px 0;
}

.l-section--gray {
    background: var(--color-bg-gray);
}

.l-section--dark {
    background: var(--color-bg-dark);
}

/* ============================================================
   Typography
   ============================================================ */
.c-section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.c-section-title__en {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.c-section-title__ja {
    display: block;
}

.c-section-title--center {
    text-align: center;
}

.c-section-lead {
    font-size: 18px;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-top: 20px;
}

.c-section-lead--center {
    text-align: center;
}

/* ============================================================
   Buttons
   ============================================================ */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.04em;
}

.c-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(0,102,204,0.35);
}

    .c-btn--primary:hover {
        background: var(--color-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,102,204,0.45);
    }

.c-btn--accent {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(0,166,81,0.35);
}

    .c-btn--accent:hover {
        background: var(--color-accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,166,81,0.45);
    }

.c-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

    .c-btn--outline:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-2px);
    }

.c-btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

    .c-btn--white:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-2px);
    }

.c-btn--lg {
    /*padding: 20px 48px;*/
    font-size: 17px;
}

.c-btn--sm {
    padding: 10px 24px;
    font-size: 13px;
}

.c-btn i {
    font-size: 14px;
}

/* ============================================================
   FSI Header — 富士ソフト公式サイト完全再現
   ============================================================ */

/* --- ユーティリティバー（ヘッダー上段） --- */
.fsi-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

    .fsi-header.is-scrolled {
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }
/* ユーティリティナビ */
.fsi-header__util {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.fsi-header__util-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 36px;
    gap: 0;
}

.fsi-header__util-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    font-size: 11px;
    color: #555;
    border-left: 1px solid #ddd;
    height: 100%;
    transition: color 0.2s;
    white-space: nowrap;
}

    .fsi-header__util-item:first-child {
        border-left: none;
    }

    .fsi-header__util-item:hover {
        color: #0066cc;
    }

    .fsi-header__util-item i {
        font-size: 11px;
    }

/* メインヘッダー下段 */
.fsi-header__main {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.fsi-header__main-inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    gap: 0;
}
/* ロゴ */
.fsi-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 32px;
    text-decoration: none;
}

.fsi-header__logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.fsi-header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-left: 12px;
    border-left: 2px solid #0066cc;
    padding-left: 12px;
}

.fsi-header__logo-company {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.fsi-header__logo-service {
    font-size: 13px;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
/* グローバルナビ */
.fsi-gnav {
    display: flex;
    align-items: stretch;
    flex: 1;
    height: 100%;
}

.fsi-gnav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.fsi-gnav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 14px;
    height: 100%;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: color 0.2s;
    text-decoration: none;
}

    .fsi-gnav__link:hover,
    .fsi-gnav__link.is-active {
        color: #0066cc;
    }

    .fsi-gnav__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #0066cc;
        transform: scaleX(0);
        transition: transform 0.2s;
    }

    .fsi-gnav__link:hover::after {
        transform: scaleX(1);
    }

.fsi-gnav__arrow {
    font-size: 9px;
    color: #999;
    margin-top: 1px;
}
/* ドロップダウン */
.fsi-gnav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 3px solid #0066cc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 100;
    padding: 8px 0;
}

.fsi-gnav__item:hover .fsi-gnav__dropdown {
    display: block;
}

.fsi-gnav__dd-item a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #333;
    transition: all 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

.fsi-gnav__dd-item:last-child a {
    border-bottom: none;
}

.fsi-gnav__dd-item a:hover {
    background: #f0f6ff;
    color: #0066cc;
    padding-left: 26px;
}

.fsi-gnav__dd-current {
    color: #0066cc !important;
    font-weight: 700 !important;
    background: #f0f6ff !important;
    pointer-events: none;
}
/* ヘッダー右側CTA */
.fsi-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.fsi-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.fsi-header__btn--contact {
    background: #0066cc;
    color: #fff;
    border: 1px solid #0066cc;
}

    .fsi-header__btn--contact:hover {
        background: #004fa3;
        border-color: #004fa3;
    }

.fsi-header__btn--doc {
    background: #fff;
    color: #0066cc;
    border: 1px solid #0066cc;
}

    .fsi-header__btn--doc:hover {
        background: #e8f2ff;
    }

.fsi-header__btn i {
    font-size: 11px;
}
/* ハンバーガー */
.fsi-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 12px;
    flex-shrink: 0;
}

    .fsi-header__hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s;
    }

/* --- 旧 p-header 互換 (削除済みだが念のため) --- */
.p-header {
    display: none;
}

/* ============================================================
   Hero / First View
   ============================================================ */
.p-fv {
    position: relative;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #0d2b4a 40%, #0a3d6b 100%);
    padding-top: 106px; /* util(36px) + main(70px) */
}

.p-fv__bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.p-fv__bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.p-fv__bg-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
}

.p-fv__bg-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    bottom: -100px;
    left: -80px;
}

.p-fv__bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.p-fv__inner {
    position: relative;
    z-index: 1;
    display: grid;
/*    grid-template-rows: 2fr;*/
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 24px 80px;
    width: 100%;
}

.p-fv__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,166,81,0.2);
    border: 1px solid rgba(0,166,81,0.4);
    color: #4cdb8a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

    .p-fv__badge i {
        font-size: 10px;
    }

.p-fv__sub {
    /*font-size: clamp(30px, 4vw, 52px);*/
    font-size:1.5em;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

    .p-fv__sub em {
        font-style: normal;
        color: #4cdb8a;
        display: block;
    }

.p-fv__title {
    /*font-size: clamp(30px, 4vw, 52px);*/
    font-size: 2.85em;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

    .p-fv__title em {
        font-style: normal;
        color: #4cdb8a;
        display: block;
    }

.p-fv__subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    line-height: 1.8;
}

.p-fv__subtitle--flex {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(76,219,138,0.1);
    border: 1px solid rgba(76,219,138,0.25);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.p-fv__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.p-fv__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

    .p-fv__tag i {
        color: #4cdb8a;
        font-size: 12px;
    }

/* ============================================================
   FV ロゴエリア（Veeam製品ロゴ）
   ============================================================ */
/* ============================================================
   FV ロゴエリア：タイトル直下にVeeamロゴを大きく表示
   ============================================================ */
.p-fv__logo-wrap {
    /*display: flex;*/
    align-items: center;
    gap: 0;
    /* タイトル直下、サブコピーの前 */
    margin-bottom: 24px;
    margin-top: -4px;
}
/* 「Powered by」ラベル非表示（ロゴ単体表示） */
.p-fv__logo-label {
    display: none;
}

.p-fv__logo-sep {
    display: none;
}
/* Veeamロゴ本体：大きく表示 */
.p-fv__logo-large {
    height: 72px;
    width: auto;
    display: block;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.30));
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    .p-fv__logo-large:hover {
        opacity: 0.95;
        transform: translateY(-1px);
    }

@media (max-width: 1024px) {
    .p-fv__logo-large {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .p-fv__logo-large {
        /*height: 48px;*/
        margin:auto
    }

    .p-fv__logo-wrap {
        margin-bottom: 20px;
    }
}

.p-fv__buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
}
@media (max-width: 768px) {
    .p-fv__buttons {
        display: grid;
        /*flex-wrap: wrap;*/
        gap: 16px;
    }
}
/* ============================================================
   FV ビジュアルエリア：ブランク画像プレースホルダー
   ============================================================ */
.p-fv__visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

/* ============================================================
   FV ロゴショーケース：Veeamロゴを大きく表示
   ============================================================ */
.p-fv__logo-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(ellipse at 45% 45%, rgba(0,179,54,0.12) 0%, transparent 65%), linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 20px 60px rgba(0,0,0,0.40);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
    /* 背景グロー */
    .p-fv__logo-showcase::before {
        content: '';
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,179,54,0.16) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
    /* バッジグリッドライン */
    .p-fv__logo-showcase::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }
/* ロゴ画像 */
.p-fv__logo-showcase__img {
    position: relative;
    z-index: 1;
    /*    width: 78%;*/
    max-width: 90%;
    margin:auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,0.50)) drop-shadow(0 2px 10px rgba(0,179,54,0.35));
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
}

.p-fv__logo-showcase:hover .p-fv__logo-showcase__img {
    transform: scale(1.04) translateY(-4px);
    filter: drop-shadow(0 14px 40px rgba(0,0,0,0.55)) drop-shadow(0 4px 18px rgba(0,179,54,0.50));
}
/* キャプション */
.p-fv__logo-showcase__caption {
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1;
}

.p-fv__logo-showcase__caption-main {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
    margin-bottom: 4px;
}

.p-fv__logo-showcase__caption-sub {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.06em;
}

/* 旧プレースホルダー・カードUIは非表示 */
.p-fv__image-placeholder {
    display: none;
}

.p-fv__card {
    display: none;
}

.p-fv__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.1em;
    animation: scrollBounce 2s infinite;
}

    .p-fv__scroll i {
        font-size: 18px;
    }

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.p-breadcrumb {
    background: var(--color-bg-gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.p-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

.p-breadcrumb__item a:hover {
    color: var(--color-primary);
}

.p-breadcrumb__sep {
    color: var(--color-border);
}

/* ============================================================
   Summary Section
   ============================================================ */
.p-summary {
    padding: 80px 0;
    background: var(--color-white);
}

.p-summary__head {
    text-align: center;
    margin-bottom: 56px;
}

.p-summary__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* 修正：5カード対応グリッド */
.p-summary__grid--5col {
    grid-template-columns: repeat(5, 1fr);
}

.p-summary__card-icon--5 {
    background: #e6f9f0;
    color: var(--color-accent);
}

.js-reveal--delay5 {
    transition-delay: 0.5s;
}

@media (max-width: 1024px) {
    .p-summary__grid--5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .p-summary__grid--5col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.p-summary__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .p-summary__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--color-primary);
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .p-summary__card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: var(--color-primary);
    }

        .p-summary__card:hover::before {
            transform: scaleX(1);
        }

.p-summary__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.p-summary__card-icon--1 {
    background: #e8f2ff;
    color: var(--color-primary);
}

.p-summary__card-icon--2 {
    background: #e8f8ef;
    color: var(--color-accent);
}

.p-summary__card-icon--3 {
    background: #fff3e0;
    color: #f57c00;
}

.p-summary__card-icon--4 {
    background: #f3e8ff;
    color: #7c3aed;
}

.p-summary__card-num {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.p-summary__card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 10px;
}

.p-summary__card-text {
    font-size: 15px;
    color: var(--color-text-sub);
    line-height: 1.7;
}

/* ============================================================
   Approach Section（バックアップ選定の考え方）
   ============================================================ */
.p-approach {
    padding: 96px 0;
    background: linear-gradient(160deg, #0d1b2a 0%, #0f2540 60%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

    .p-approach::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
    }

.p-approach__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.p-approach__head {
    text-align: center;
}

    .p-approach__head .c-section-title__en {
        color: rgba(76,219,138,0.7);
    }

    .p-approach__head .c-section-title__ja {
        color: var(--color-white);
    }

.p-approach__lead {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin-top: 20px;
    text-align: center;
}

.p-approach__axis {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.p-approach__axis-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.25s ease, background 0.25s ease;
}

    .p-approach__axis-item:hover {
        border-color: rgba(76,219,138,0.3);
        background: rgba(76,219,138,0.05);
    }

.p-approach__axis-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.p-approach__axis-icon--a {
    background: rgba(100,116,139,0.25);
    color: rgba(255,255,255,0.5);
}

.p-approach__axis-icon--b {
    background: rgba(0,179,54,0.25);
    color: #4cdb8a;
}

.p-approach__axis-body {
}

.p-approach__axis-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.p-approach__axis-item--active .p-approach__axis-label {
    color: #4cdb8a;
}

.p-approach__axis-title {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.p-approach__axis-item--active .p-approach__axis-title {
    color: var(--color-white);
}

.p-approach__axis-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 4px;
}

.p-approach__axis-item--active .p-approach__axis-desc {
    color: rgba(255,255,255,0.6);
}

.p-approach__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.p-approach__block {
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.p-approach__block--accent {
    border-color: rgba(0,179,54,0.25);
    background: rgba(0,179,54,0.06);
}

.p-approach__block-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.p-approach__block--accent .p-approach__block-label {
    color: #4cdb8a;
}

.p-approach__block-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
}

.p-approach__block--accent .p-approach__block-text {
    color: rgba(255,255,255,0.82);
}

.p-approach__block-text strong {
    color: #4cdb8a;
    font-weight: 700;
}

.p-approach__note {
    margin-top: 4px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: rgba(0,102,204,0.12);
    border-left: 3px solid var(--color-primary);
}

.p-approach__note-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

    .p-approach__note-text strong {
        color: rgba(255,255,255,0.95);
    }

@media (max-width: 768px) {
    .p-approach {
        padding: 72px 0;
    }
}

/* ============================================================
   Intro / Background Section
   ============================================================ */
.p-intro {
    background: var(--color-bg-gray);
    padding: 80px 0;
}

.p-intro__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.p-intro__lead {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
}

    .p-intro__lead em {
        font-style: normal;
        color: var(--color-primary);
        border-bottom: 3px solid var(--color-primary);
        padding-bottom: 2px;
    }

.p-intro__text {
    font-size: 18px;
    color: var(--color-text-sub);
    line-height: 1.9;
    margin-bottom: 32px;
}

.p-intro__problems {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.p-intro__problem {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-red);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.p-intro__problem-icon {
    width: 36px;
    height: 36px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-red);
    flex-shrink: 0;
}

.p-intro__problem-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.5;
}

.p-intro__visual {
    position: relative;
}

.p-intro__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8f2ff 0%, #c3d9f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-intro__image-placeholder {
    text-align: center;
    color: var(--color-primary);
}

    .p-intro__image-placeholder i {
        font-size: 64px;
        opacity: 0.4;
        display: block;
        margin-bottom: 12px;
    }

    .p-intro__image-placeholder span {
        font-size: 13px;
        color: var(--color-text-sub);
    }

.p-intro__balloon {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.p-intro__balloon--1 {
    top: -16px;
    right: -16px;
    color: var(--color-red);
    border-left: 4px solid var(--color-red);
}

.p-intro__balloon--2 {
    bottom: -16px;
    left: -16px;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

/* ============================================================
   Reason Section
   ============================================================ */
.p-reason {
    background: var(--color-white);
    padding: 100px 0;
}

.p-reason__head {
    text-align: center;
    margin-bottom: 64px;
}

.p-reason__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.p-reason__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

    .p-reason__item:nth-child(even) {
        direction: rtl;
    }

        .p-reason__item:nth-child(even) > * {
            direction: ltr;
        }

.p-reason__num {
    font-family: var(--font-en);
    font-size: 80px;
    font-weight: 800;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: -16px;
}

.p-reason__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.p-reason__title {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 8px;
}

.p-reason__subtitle {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .p-reason__subtitle i {
        font-size: 12px;
    }

.p-reason__text {
    font-size: 17px;
    color: var(--color-text-sub);
    line-height: 1.9;
    margin-bottom: 24px;
}

.p-reason__points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-reason__point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--color-text);
}

    .p-reason__point i {
        color: var(--color-accent);
        font-size: 14px;
        margin-top: 7px;
        flex-shrink: 0;
    }

.p-reason__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.p-reason__visual--1 {
    background: linear-gradient(135deg, #fff3e0, #ffcc80);
}

.p-reason__visual--2 {
    background: linear-gradient(135deg, #e8f8ef, #a8e6bf);
}

.p-reason__visual--3 {
    background: linear-gradient(135deg, #f3e8ff, #c4b5fd);
}
/* 修正：Reason 04・05追加分のビジュアル背景色 */
.p-reason__visual--4 {
    background: linear-gradient(135deg, #e0f4ff, #7dd3fc);
}

.p-reason__visual--5 {
    background: linear-gradient(135deg, #ecfdf5, #6ee7b7);
}

.p-reason__visual-icon {
    font-size: 80px;
    opacity: 0.3;
    color: var(--color-text);
}

.p-reason__fsi {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f7ff 100%);
    border: 1px solid rgba(0,102,204,0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
}

.p-reason__fsi-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-white);
    flex-shrink: 0;
}

.p-reason__fsi-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

    .p-reason__fsi-title span {
        color: var(--color-primary);
    }

.p-reason__fsi-text {
    font-size: 16px;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-bottom: 16px;
}

.p-reason__fsi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.p-reason__fsi-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   Service Section
   ============================================================ */
.p-service {
    background: var(--color-bg-gray);
    padding: 100px 0;
}

.p-service__head {
    text-align: center;
    margin-bottom: 56px;
}

.p-service__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.p-service__tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-sub);
    cursor: pointer;
    transition: all var(--transition);
}

    .p-service__tab.is-active,
    .p-service__tab:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-white);
    }

.p-service__content {
    display: none;
}

    .p-service__content.is-active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-service__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.p-service__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

    .p-service__card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.p-service__card-header {
    padding: 28px 28px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.p-service__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.p-service__card-icon--1 {
    background: #e8f2ff;
    color: var(--color-primary);
}

.p-service__card-icon--2 {
    background: #e8f8ef;
    color: var(--color-accent);
}

.p-service__card-icon--3 {
    background: #fff3e0;
    color: #f57c00;
}

.p-service__card-icon--4 {
    background: #fce4ec;
    color: #e91e63;
}

.p-service__card-icon--5 {
    background: #f3e8ff;
    color: #7c3aed;
}

.p-service__card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.p-service__card-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
}

.p-service__card-body {
    padding: 0 28px 28px;
}

.p-service__card-text {
    font-size: 15px;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-bottom: 16px;
}

.p-service__card-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .p-service__card-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13.5px;
        color: var(--color-text);
    }

        .p-service__card-list li i {
            color: var(--color-accent);
            font-size: 12px;
            margin-top: 2px;
            flex-shrink: 0;
        }

/* ============================================================
   Step Section
   ============================================================ */
.p-step {
    background: var(--color-white);
    padding: 100px 0;
}

.p-step__head {
    text-align: center;
    margin-bottom: 64px;
}

.p-step__flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .p-step__flow::after {
        content: '';
        position: absolute;
        top: 48px;
        left: calc(12.5% + 16px);
        right: calc(12.5% + 16px);
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
        z-index: 0;
    }

.p-step__item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 16px;
}

.p-step__circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    position: relative;
}

.p-step__circle-num {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    line-height: 1;
}

.p-step__circle-icon {
    font-size: 22px;
    color: var(--color-primary);
    margin-top: 2px;
}

.p-step__item:nth-child(1) .p-step__circle {
    border-color: var(--color-primary);
}

.p-step__item:nth-child(2) .p-step__circle {
    border-color: #2196f3;
}

.p-step__item:nth-child(3) .p-step__circle {
    border-color: var(--color-accent);
}

.p-step__item:nth-child(4) .p-step__circle {
    border-color: #7c3aed;
}

.p-step__item:nth-child(1) .p-step__circle-num,
.p-step__item:nth-child(1) .p-step__circle-icon {
    color: var(--color-primary);
}

.p-step__item:nth-child(2) .p-step__circle-num,
.p-step__item:nth-child(2) .p-step__circle-icon {
    color: #2196f3;
}

.p-step__item:nth-child(3) .p-step__circle-num,
.p-step__item:nth-child(3) .p-step__circle-icon {
    color: var(--color-accent);
}

.p-step__item:nth-child(4) .p-step__circle-num,
.p-step__item:nth-child(4) .p-step__circle-icon {
    color: #7c3aed;
}

.p-step__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.p-step__text {
    font-size: 15px;
    color: var(--color-text-sub);
    line-height: 1.7;
}

.p-step__detail {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.p-step__detail-card {
    background: var(--color-bg-gray);
    border-radius: var(--radius-md);
    padding: 24px;
    border-top: 3px solid var(--color-primary);
}

    .p-step__detail-card:nth-child(2) {
        border-color: #2196f3;
    }

    .p-step__detail-card:nth-child(3) {
        border-color: var(--color-accent);
    }

    .p-step__detail-card:nth-child(4) {
        border-color: #7c3aed;
    }

.p-step__detail-step {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.p-step__detail-card:nth-child(2) .p-step__detail-step {
    color: #2196f3;
}

.p-step__detail-card:nth-child(3) .p-step__detail-step {
    color: var(--color-accent);
}

.p-step__detail-card:nth-child(4) .p-step__detail-step {
    color: #7c3aed;
}

.p-step__detail-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.p-step__detail-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .p-step__detail-list li {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        font-size: 12px;
        color: var(--color-text-sub);
    }

        .p-step__detail-list li i {
            color: var(--color-accent);
            font-size: 11px;
            margin-top: 3px;
        }

/* ============================================================
   FAQ Section
   ============================================================ */
.p-faq {
    background: var(--color-bg-gray);
    padding: 100px 0;
}

.p-faq__head {
    text-align: center;
    margin-bottom: 56px;
}

.p-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.p-faq__item {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

    .p-faq__item:last-child {
        border-bottom: none;
    }

.p-faq__question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}

    .p-faq__question:hover {
        background: var(--color-bg-gray);
    }

.p-faq__q-mark {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.p-faq__q-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
    line-height: 1.5;
}

.p-faq__toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 12px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.p-faq__item.is-open .p-faq__toggle {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(180deg);
}

.p-faq__answer {
    display: none;
    padding: 0 28px 24px 76px;
}

.p-faq__a-text {
    font-size: 16px;
    color: var(--color-text-sub);
    line-height: 1.9;
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
}

    .p-faq__a-text strong {
        color: var(--color-text);
        font-weight: 600;
    }

/* ============================================================
   Column / Information Section
   ============================================================ */
.p-column {
    background: var(--color-white);
    padding: 100px 0;
}

.p-column__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.p-column__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.p-column__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

    .p-column__card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.p-column__card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f2ff, #c3d9f7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .p-column__card-thumb i {
        font-size: 48px;
        color: var(--color-primary);
        opacity: 0.3;
    }

.p-column__card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.p-column__card-body {
    padding: 20px 20px 24px;
}

.p-column__card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.p-column__card-date {
    font-size: 12px;
    color: var(--color-text-light);
}

.p-column__card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    background: #e8f8ef;
    padding: 2px 8px;
    border-radius: 4px;
}

.p-column__card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-column__card-text {
    font-size: 12px;
    color: var(--color-text-sub);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   CTA Section
   ============================================================ */
.p-cta {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a3d6b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .p-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
        background-size: 60px 60px;
    }

.p-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.p-cta__eyebrow {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4cdb8a;
    margin-bottom: 16px;
}

.p-cta__title {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.p-cta__text {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p-cta__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto 48px;
}

.p-cta__card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

    .p-cta__card:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.25);
        transform: translateY(-2px);
    }

.p-cta__card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.p-cta__card--primary .p-cta__card-icon {
    color: #66b3ff;
}

.p-cta__card--accent .p-cta__card-icon {
    color: #4cdb8a;
}

.p-cta__card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.p-cta__card-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.p-cta__divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

    .p-cta__divider::before,
    .p-cta__divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.15);
    }

.p-cta__tel-wrap {
    text-align: center;
}

.p-cta__tel-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.p-cta__tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-en);
}

    .p-cta__tel i {
        color: #4cdb8a;
    }

.p-cta__tel-hours {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

/* ============================================================
   FSI Footer — 富士ソフト公式サイト完全再現
   ============================================================ */
.fsi-footer {
    background: #1a2f4a;
    color: #fff;
    padding-top: 0;
}
/* フッター上段：リンクエリア */
.fsi-footer__links-wrap {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 48px 0 40px;
}

.fsi-footer__links-inner {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* フッターロゴカラム */
.fsi-footer__brand {
}

.fsi-footer__logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    text-decoration: none;
}

.fsi-footer__logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.fsi-footer__logo-text-wrap {
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 10px;
}

.fsi-footer__logo-company {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.fsi-footer__logo-service-name {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.fsi-footer__brand-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}

.fsi-footer__sns {
    display: flex;
    gap: 10px;
}

.fsi-footer__sns-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    text-decoration: none;
}

    .fsi-footer__sns-link:hover {
        background: #0066cc;
        color: #fff;
    }
/* フッターナビカラム */
.fsi-footer__nav-col {
}

.fsi-footer__nav-heading {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.fsi-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .fsi-footer__nav-list li a {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 0;
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        transition: color 0.2s;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .fsi-footer__nav-list li:last-child a {
        border-bottom: none;
    }

    .fsi-footer__nav-list li a::before {
        content: '';
        width: 5px;
        height: 1px;
        background: rgba(255,255,255,0.4);
        flex-shrink: 0;
    }

    .fsi-footer__nav-list li a:hover {
        color: rgba(255,255,255,0.95);
    }

        .fsi-footer__nav-list li a:hover::before {
            background: #4da6ff;
            width: 8px;
        }
/* フッター下段：コピーライト */
.fsi-footer__bottom {
    background: #0f1e2f;
    padding: 18px 0;
}

.fsi-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fsi-footer__bottom-links {
    display: flex;
    gap: 0;
}

    .fsi-footer__bottom-links a {
        font-size: 11px;
        color: rgba(255,255,255,0.45);
        padding: 0 12px;
        border-right: 1px solid rgba(255,255,255,0.15);
        transition: color 0.2s;
        text-decoration: none;
    }

        .fsi-footer__bottom-links a:last-child {
            border-right: none;
        }

        .fsi-footer__bottom-links a:first-child {
            padding-left: 0;
        }

        .fsi-footer__bottom-links a:hover {
            color: rgba(255,255,255,0.85);
        }

.fsi-footer__copy {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

/* --- 旧 p-footer 互換 --- */
.p-footer {
    display: none;
}

/* ============================================================
   Utility & Responsive
   ============================================================ */
.u-text-primary {
    color: var(--color-primary);
}

.u-text-accent {
    color: var(--color-accent);
}

.u-text-center {
    text-align: center;
}

.u-mt-8 {
    margin-top: 8px;
}

.u-mt-16 {
    margin-top: 16px;
}

.u-mt-24 {
    margin-top: 24px;
}

.u-mt-32 {
    margin-top: 32px;
}

.u-mt-48 {
    margin-top: 48px;
}

/* Animation */
.js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .js-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.js-reveal--delay1 {
    transition-delay: 0.1s;
}

.js-reveal--delay2 {
    transition-delay: 0.2s;
}

.js-reveal--delay3 {
    transition-delay: 0.3s;
}

.js-reveal--delay4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 751px) {
    /*@media (max-width: 1024px) {*/
    .p-fv__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .p-fv__visual {
        display: none;
    }

    .p-summary__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-intro__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-reason__item {
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .p-reason__item:nth-child(even) {
            direction: ltr;
        }

    .p-service__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-step__flow::after {
        display: none;
    }

    .p-step__flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .p-step__detail {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-column__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fsi-footer__links-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .fsi-footer__brand {
        grid-column: 1 / -1;
    }

    .p-reason__fsi {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .p-reason__fsi-icon {
        margin: 0 auto;
    }
    /* FSI header: hide some nav on tablet */
    .fsi-gnav__item:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .l-section {
        padding: 60px 0;
    }
    /* FSI header responsive */
    .fsi-gnav {
        display: none;
    }

    .fsi-header__actions .fsi-header__btn--doc {
        display: none;
    }

    .fsi-header__hamburger {
        display: flex;
    }

    .fsi-header__util {
        display: none;
    }

    .fsi-header__main-inner {
        height: 60px;
    }

    .fsi-header__logo-img {
        height: 34px;
    }
    /* FSI footer responsive */
    .fsi-footer__links-inner {
        grid-template-columns: 1fr 1fr;
    }

    .fsi-footer__brand {
        grid-column: 1 / -1;
    }

    .fsi-footer__bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .fsi-footer__bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    /* Content */
    .p-summary__grid {
        grid-template-columns: 1fr;
    }

    .p-intro__problems {
        grid-template-columns: 1fr;
    }

    .p-service__grid {
        grid-template-columns: 1fr;
    }

    .p-step__flow {
        grid-template-columns: 1fr;
    }

    .p-step__detail {
        grid-template-columns: 1fr;
    }

    .p-cta__cards {
        grid-template-columns: 1fr;
    }

    .p-column__grid {
        grid-template-columns: 1fr;
    }

    .p-fv__sub {
        font-size: 20px;
    }
    .p-fv__title {
        font-size: 30px;
    }

    .p-fv__inner {
        padding: 20px 20px 80px;
        text-align:center;
    }

    .p-column__head {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .p-reason__fsi {
        padding: 28px;
    }
}

/* Mobile Navigation */
.p-nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.5);
}

    .p-nav-mobile.is-open {
        display: block;
    }

.p-nav-mobile__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--color-white);
    padding: 80px 24px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.p-nav-mobile.is-open .p-nav-mobile__panel {
    transform: translateX(0);
}

.p-nav-mobile__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-text);
}

.p-nav-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

    .p-nav-mobile__list a {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
        font-weight: 500;
        color: var(--color-text);
        border-radius: var(--radius-sm);
        transition: all var(--transition);
    }

        .p-nav-mobile__list a:hover {
            background: var(--color-primary-light);
            color: var(--color-primary);
        }

.l-pc-header {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
    background: #FFF;
}

    .l-pc-header.is-ready-pre {
        position: fixed;
        top: 0;
        -webkit-transform: translate(0, -80px);
        transform: translate(0, -80px);
        opacity: 0;
    }

    .l-pc-header.is-ready {
        opacity: 1;
        -webkit-transform: translate(0, -80px);
        transform: translate(0, -80px);
        background: #FFFFFF;
    }

        .l-pc-header.is-ready.is-fixed {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

    .l-pc-header::before {
        content: "";
        width: 100%;
        height: 10px;
        background: url("../images/cmn_shadow.webp") repeat-x 0 0/100% auto;
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 15;
    }

.l-pc-header__inner {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-pc-header__logo a {
    display: block;
    width: 183px;
    margin: 0 0 0 38px;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .l-pc-header__logo a:hover {
        opacity: 0.7;
    }
}

.is-ready .l-pc-header__logo a {
    display: block;
}

@media (max-width: 1279px) {
    .l-pc-header {
        display: none;
    }
}

.l-sp-header {
    display: none;
}

@media (max-width: 1279px) {
    .l-sp-header {
        display: block;
        width: 100%;
        height: 52px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 11;
        background: #FFFFFF;
    }

        .l-sp-header::before {
            content: "";
            width: 100%;
            height: 20px;
            background: url("../images/cmn_shadow_sp.webp") repeat-x 0 0/100% auto;
            position: absolute;
            top: 52px;
            left: 0;
            z-index: 15;
        }

    .l-sp-header__logo {
        width: 120px;
        position: absolute;
        top: 11px;
        left: 11px;
        z-index: 11;
    }

        .l-sp-header__logo a {
            display: block;
        }
}

.l-pc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 38px;
}

    .l-pc-nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        line-height: 1;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
    }

    .l-pc-nav li {
        position: relative;
    }

        .l-pc-nav li a {
            display: block;
            padding: 10px;
            border-radius: 50px;
        }

        .l-pc-nav li img {
            vertical-align: middle;
        }

        .l-pc-nav li:nth-child(1) a, .l-pc-nav li:nth-child(2) a, .l-pc-nav li:nth-child(3) a, .l-pc-nav li:nth-child(4) a, .l-pc-nav li:nth-child(5) a, .l-pc-nav li:nth-child(6) a, .l-pc-nav li:nth-child(7) a {
            cursor: pointer;
            opacity: 1;
            -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
        }

@media (hover: hover) {
    .l-pc-nav li:nth-child(1) a:hover, .l-pc-nav li:nth-child(2) a:hover, .l-pc-nav li:nth-child(3) a:hover, .l-pc-nav li:nth-child(4) a:hover, .l-pc-nav li:nth-child(5) a:hover, .l-pc-nav li:nth-child(6) a:hover, .l-pc-nav li:nth-child(7) a:hover {
        opacity: 0.7;
    }
}

.l-pc-nav .document,
.l-pc-nav .contact {
    width: 124px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 50px;
}

    .l-pc-nav .document a,
    .l-pc-nav .contact a {
        padding: 12px 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

.l-pc-nav .document {
    margin: 0 14px;
}

    .l-pc-nav .document a {
        background: rgb(248, 120, 29);
    }

        .l-pc-nav .document a:hover {
            background: rgba(248, 120, 29, 0.7);
        }

.l-pc-nav .contact a {
    background: rgb(0, 68, 153);
}

    .l-pc-nav .contact a:hover {
        background: rgba(0, 68, 153, 0.7);
    }

.l-sp-nav {
    width: 100%;
    margin-top: 52px;
    padding-top: 5.3333333333vw;
    height: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    background: #FFFFFF;
}

.l-sp-nav__inner {
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 50px;
}

.l-sp-nav__list {
    width: 275px;
}

    .l-sp-nav__list li {
        font-size: 16px;
        text-align: center;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        opacity: 0;
        padding: 13px 0;
        border-bottom: 1px solid #C8C8C8;
        -webkit-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease;
    }

        .l-sp-nav__list li a {
            position: relative;
            display: block;
        }

            .l-sp-nav__list li a::before {
                content: "";
                width: 18px;
                height: 8px;
                position: absolute;
                top: 50%;
                right: 0;
                background: url("../images/cmn_arrow01.webp") no-repeat 0 0/100% auto;
            }

.l-sp-nav__btnwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 250px;
    margin-inline: auto;
    padding-block: 7%;
}

.l-sp-nav__btn-document, .l-sp-nav__btn-contact {
    width: 100%;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

    .l-sp-nav__btn-document > a, .l-sp-nav__btn-contact > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 18px;
        font-size: 20px;
        color: #FFFFFF;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 700;
        padding-block: 12px;
    }

        .l-sp-nav__btn-document > a span, .l-sp-nav__btn-contact > a span {
            display: block;
            width: 26px;
        }

    .l-sp-nav__btn-document img, .l-sp-nav__btn-contact img {
        vertical-align: middle;
    }

.l-sp-nav__btn-document {
    background: #F8781D;
    margin-bottom: 5.8%;
}

.l-sp-nav__btn-contact {
    background: #1957A3;
}

.is-open-menu .l-sp-nav {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.l-sp-nav.is-open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

    .l-sp-nav.is-open .l-sp-nav__list li {
        opacity: 1;
    }

.l-sp-nav__btn {
    width: 27px;
    height: 21px;
    position: absolute;
    top: 15px;
    right: 21px;
    z-index: 1;
}

    .l-sp-nav__btn::before, .l-sp-nav__btn::after {
        content: "";
        width: 27px;
        height: 3px;
        background: #051052;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
        transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .l-sp-nav__btn::before {
        margin-top: -10px;
    }

    .l-sp-nav__btn::after {
        margin-top: 6px;
    }

    .l-sp-nav__btn .line {
        display: block;
        width: 27px;
        height: 3px;
        background: #000000;
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -2px;
        opacity: 1;
        -webkit-transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
        transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .l-sp-nav__btn .txt {
        font-size: 12px;
        line-height: 1;
        position: absolute;
        top: 0;
        right: 38px;
        -webkit-transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
        transition: 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .l-sp-nav__btn.is-open::before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        margin-top: -9px;
        left: 9px;
    }

    .l-sp-nav__btn.is-open::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: right top;
        transform-origin: right top;
        margin-top: -9px;
    }

    .l-sp-nav__btn.is-open .line, .l-sp-nav__btn.is-open .txt {
        opacity: 0;
    }

.l-footer {
    padding-top: 72px;
    padding-bottom: 72px;
}

.l-footer__inner {
    width: 100%;
    max-width: 1150px;
    margin-inline: auto;
}

.l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.l-footer__logo {
    width: 183px;
}

    .l-footer__logo a {
        cursor: pointer;
        opacity: 1;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

@media (hover: hover) {
    .l-footer__logo a:hover {
        opacity: 0.7;
    }
}

.l-footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5em;
    font-size: 14px;
}

    .l-footer__nav-list a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
        cursor: pointer;
        opacity: 1;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

@media (hover: hover) {
    .l-footer__nav-list a:hover {
        opacity: 0.7;
    }
}

.l-footer__nav-list span {
    display: block;
    width: 12px;
    height: 12px;
}

.l-footer__nav-list img {
    vertical-align: middle;
}

.l-footer__copyright {
    font-size: 13px;
    text-align: center;
    padding-top: 35px;
}

@media (max-width: 1279px) {
    .l-footer {
        background: #FFFFFF;
        padding: 0;
    }

    .l-footer__inner {
        width: 100%;
        max-width: 100%;
        padding: 105px 26px 55px;
    }

    .l-footer__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 44px;
    }

    .l-footer__logo {
        width: 183px;
        padding-left: 17px;
    }

    .l-footer__nav-list {
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 30px;
    }

        .l-footer__nav-list > li {
            position: relative;
        }

            .l-footer__nav-list > li a {
                display: block;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: start;
                -ms-flex-pack: start;
                justify-content: flex-start;
                gap: 10px;
            }

            .l-footer__nav-list > li .link {
                display: block;
                width: 12px;
                height: auto;
            }

                .l-footer__nav-list > li .link img {
                    vertical-align: unset;
                }

    .l-footer__copyright {
        text-align: left;
        padding-top: 0;
        margin-top: 64px;
    }
}
/*--------------------------------------------------------
　ANIMATION
--------------------------------------------------------*/
.js-anm.fadeup {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

    .js-anm.fadeup.is-done {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.js-anm.fadeup2 {
    opacity: 0;
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .js-anm.fadeup2.is-done {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.js-anm.fadedown {
    opacity: 0;
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

    .js-anm.fadedown.is-done {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.js-anm.fadeleft {
    opacity: 0;
    -webkit-transform: translate(-40px, 0);
    transform: translate(-40px, 0);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

    .js-anm.fadeleft.is-done {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.js-anm.faderight {
    opacity: 0;
    -webkit-transform: translate(40px, 0);
    transform: translate(40px, 0);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

    .js-anm.faderight.is-done {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.js-anm.fadescale {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 1s cubic-bezier(0.65, -0.55, 0.265, 1.55);
    transition: all 1s cubic-bezier(0.65, -0.55, 0.265, 1.55);
}

    .js-anm.fadescale.is-done {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

/*--------------------------------------------------------
  SPLIDE
--------------------------------------------------------*/
.your-class-page {
    background-color: #FFFFFF !important;
    width: 6px !important;
    height: 6px !important;
    -webkit-transition: 0.5s all !important;
    transition: 0.5s all !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: none !important;
}

    .your-class-page.is-active {
        background-color: #051052 !important;
        opacity: 1 !important;
    }

.your-class-pagination {
    bottom: -65px !important;
    margin-top: 40px !important;
}

    .your-class-pagination li {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

.splide__slide img {
    height: auto;
    width: 100%;
}

.splide__arrow {
    position: absolute;
    width: 12px;
    height: 28px;
    opacity: 1;
    padding: 0;
    border: none;
    bottom: 0;
    margin-bottom: -10px;
}

.splide__arrow--prev {
    left: 50% !important;
    margin-left: -30.9vw !important;
    background: url("../images/cmn_prev.webp") no-repeat 0 0/100% auto !important;
    cursor: pointer;
}

.splide__arrow--next {
    right: 50% !important;
    margin-right: -30.9vw !important;
    background: url("../images/cmn_next.webp") no-repeat 0 0/100% auto !important;
    cursor: pointer;
}

.splide__arrow svg {
    display: none;
}

.c-inner {
    max-width: 932px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 749px) {
    .c-inner {
        padding-left: 3.3vw;
        padding-right: 3.3vw;
    }
}

.c-txt {
    font-size: 15px;
    line-height: 1.7;
}

.c-head {
    font-size: 36px;
    line-height: 1.3;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #051052;
}

@media (min-width: 750px) {
    .c-head {
        font-size: 54px;
    }
}

.c-ttl {
    position: relative;
    font-size: 23px;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #051052;
    text-align: center;
}

    .c-ttl::before, .c-ttl::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 1px;
        height: 36px;
        background: #051052;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translateY(-50%) rotate(30deg);
        transform: translateY(-50%) rotate(30deg);
    }

    .c-ttl::before {
        left: 25px;
    }

    .c-ttl::after {
        right: 25px;
    }

@media (min-width: 750px) {
    .c-ttl {
        display: inline-block;
        font-size: 28px;
        line-height: 1.75;
        padding: 0 25px;
    }

        .c-ttl::before {
            left: 0;
        }

        .c-ttl::after {
            right: 0;
        }
}

.p-column {
    position: relative;
    padding-block: 10.6666666667vw 32.5333333333vw;
    background: #EDEEF3;
    text-align: center;
    scroll-margin-top: 16vw;
}

.p-column__inner {
    padding-left: 0;
    padding-right: 0;
}

.p-column__head {
    position: relative;
    text-align: center;
    padding-top: 11.7333333333vw;
    margin-bottom: 8vw;
}

/*    .p-column__head::before {
        content: "";
        width: 10.1333333333vw;
        height: 5.8666666667vw;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: url("../images/column_icon01.webp") no-repeat 0 0/100% auto;
    }*/

.p-column__txt {
    text-align: center;
    margin-bottom: 14.4vw;
}

.p-column__splide .splide__slide {
    background: #FFFFFF;
    border-radius: 3.2vw;
    text-align: left;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 373px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

    .p-column__splide .splide__slide > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .p-column__splide .splide__slide .img {
        height: 160px;
    }

        .p-column__splide .splide__slide .img img {
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

    .p-column__splide .splide__slide .ttl {
        font-size: 16px;
        line-height: 1.3;
        margin-top: 4vw;
        margin-bottom: 1.8666666667vw;
        font-weight:bold;
    }

    .p-column__splide .splide__slide .date {
        font-size: 13px;
        min-height: 13px;
        margin-bottom: 1.8666666667vw;
    }

    .p-column__splide .splide__slide .txt {
        font-size: 13px;
        line-height: 1.8;
        overflow: hidden;
    }

        .p-column__splide .splide__slide .txt > p {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 6;
            overflow: hidden;
            line-height: 1.8;
        }

.p-column__splide .splide__pagination {
    display: block !important;
}

.p-column__deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 48vw;
}

@media (min-width: 750px) {
    .p-column {
        padding-block: 80px 120px;
        scroll-margin-top: 80px;
    }

    .p-column__inner {
        max-width: 100vw;
        overflow: visible;
        padding: 0;
    }

    .p-column__head {
        display: inline-block;
        padding-top: 0;
        margin-bottom: 20px;
        margin-left: 59px;
    }

/*        .p-column__head::before {
            width: 59px;
            height: 35px;
            top: 50%;
            -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
            left: -74px;
        }*/

    .p-column__txt {
        margin-bottom: 33px;
    }

    .p-column__splide {
        z-index: 1 !important;
    }

        .p-column__splide .splide__slide {
            width: 280px;
            border-radius: 14px;
            min-height: 415px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

            .p-column__splide .splide__slide > a {
                cursor: pointer;
                opacity: 1;
                -webkit-transition: opacity 0.3s ease;
                transition: opacity 0.3s ease;
            }
}

@media (min-width: 750px) and (hover: hover) {
    .p-column__splide .splide__slide > a:hover {
        opacity: 0.7;
    }
}

@media (min-width: 750px) {
    .p-column__splide .splide__slide .img img {
        width: 100%;
    }

    .p-column__splide .splide__slide .ttl {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .p-column__splide .splide__slide .date {
        margin-bottom: 10px;
    }

    .p-column__splide .splide__slide .txt > p {
        -webkit-line-clamp: 6;
    }

    .p-column__deco {
        width: 625px;
        left: -134px;
    }
}


