@font-face {
    font-family: "mgen";
    src: url("../font/mgen_bold.ttf");
    unicode-range: U+0030-007A;
    /* 0-Z */
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ==============================================================================
    デザイントークン（CSS変数）
============================================================================== */
:root {
    /* ----- フォントサイズ ----- */
    --fs-xs: 12px;
    /* ラベル・注釈・タグ */
    --fs-sm: 13px;
    /* 補足テキスト・説明文 */
    --fs-base: 15px;
    /* 基本本文 */
    --fs-md: 16px;
    /* リード文・インプット */
    --fs-lg: 18px;
    /* 小見出し */
    --fs-xl: 20px;
    /* サブ見出し・ボタン */
    --fs-2xl: 24px;
    /* セクション内h3 */
    --fs-3xl: 36px;
    /* セクションh2 */
    --fs-4xl: 44px;
    /* ヒーロータイトル */
    --fs-5xl: 52px;
    /* TOPメイン見出し */

    /* ----- 行間 ----- */
    --lh-tight: 1.4;
    /* 見出し用 */
    --lh-base: 1.7;
    /* カード内本文 */
    --lh-normal: 1.8;
    /* 基本本文 */
    --lh-relaxed: 2;
    /* 長文読み込み */

    /* ----- 文字間 ----- */
    --ls-tight: -0.02em;
    --ls-normal: 0em;
    --ls-wide: 0.04em;
    --ls-wider: 0.08em;
    --ls-widest: 0.15em;

    /* ----- ボーダー半径 ----- */
    --radius-sm: 8px;
    /* 小カード・入力 */
    --radius-md: 16px;
    /* 中カード */
    --radius-lg: 20px;
    /* 大カード */
    --radius-pill: 60px;
    /* ピルボタン（全CTA共通） */

    /* ----- カラー ----- */
    --c-primary: #0068b7;
    --c-primary-dark: #1b1f79;
    --c-primary-light: #79c7ff;
    --c-primary-grad: linear-gradient(to bottom, #289df6 0%, #0068b7 100%);
    --c-primary-grad-135: linear-gradient(135deg, #289df6, #0068b7);
    --c-bg-light: #ebf0f7;
    --c-bg-card: #f5f8fb;
    --c-text: #222;
    --c-text-sub: #444;
    --c-text-muted: #555;
    --c-text-light: #888;

    /* ----- シャドウ ----- */
    --shadow-card: 0 4px 20px rgba(0, 60, 120, 0.08);
    --shadow-card-hover: 0 16px 40px rgba(0, 104, 183, 0.14);
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    animation: fadein 0.8s ease forwards;
    color: #222;
    overflow-x: hidden;
}

/* ==============================================================================
    共通コンポーネント（ページ横断で再利用可能なクラス）
============================================================================== */

/* ----- セクション見出し（.section-title） -----
   用途: section-title--hero / section-title--white 修飾子と組み合わせて使用 */
.section-title {
    font-size: var(--fs-3xl);
    /* 36px */
    font-weight: 700;
    text-align: center;
    line-height: var(--lh-tight);
    /* 1.4 */
    color: var(--c-primary-dark);
    /* #1b1f79 */
    letter-spacing: var(--ls-normal);
}

.section-title span {
    display: block;
    font-size: var(--fs-lg);
    /* 18px */
    font-weight: 600;
    letter-spacing: var(--ls-widest);
    /* 0.15em */
    margin-top: 12px;
    font-family: "Noto Sans JP", sans-serif;
    color: inherit;
    opacity: 0.75;
}

.section-title--white {
    color: #fff;
}

.section-title--white span {
    opacity: 0.85;
}

/* ----- TOPページヒーロー見出し（.section-title--hero） -----
   用途: top-h2 の統合版（52px / font-weight:900 / line-height:1）
   TOPページ各セクション h2 に .section-title と組み合わせて使用 */
.section-title--hero {
    font-size: var(--fs-5xl);
    /* 52px */
    font-weight: 900;
    letter-spacing: var(--ls-wide);
    /* 0.04em */
    line-height: 1;
}

.section-title--hero span {
    font-size: var(--fs-lg);
    /* 18px */
    font-weight: 600;
    letter-spacing: var(--ls-widest);
    /* 0.15em */
    margin-top: 12px;
    opacity: 1;
}

@media screen and (max-width: 1000px) {
    .section-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 800px) {
    .section-title {
        font-size: var(--fs-2xl);
        /* 24px */
    }

    .section-title span {
        font-size: var(--fs-base);
        /* 15px */
    }

    .section-title--hero {
        font-size: var(--fs-3xl);
        /* 36px */
    }

    .section-title--hero span {
        font-size: var(--fs-base);
        /* 15px */
    }
}

/* ----- セクションリード文（.section-lead） -----
   用途: top-about-lead / lp-section-lead / midashi-text02 の統合版 */
.section-lead {
    font-size: var(--fs-md);
    /* 16px */
    text-align: center;
    line-height: var(--lh-relaxed);
    /* 2 */
    color: var(--c-text-muted);
    /* #555 */
    margin-top: 24px;
    margin-bottom: 48px;
}

.section-lead--white {
    color: rgba(255, 255, 255, 0.88);
}

@media screen and (max-width: 800px) {
    .section-lead {
        font-size: var(--fs-base);
        /* 15px */
        text-align: left;
    }
}

/* ----- インラインラベル（.section-label） -----
   用途: mv-label / lp-hero-label の統合版 */
.section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: var(--fs-sm);
    /* 13px */
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: var(--ls-wider);
    /* 0.08em */
    margin-bottom: 20px;
    line-height: 1;
}

/* ==============================================================================
    統一ボタンシステム
    カラー: .btn-blue（青グラデーション）/ .btn-white（白）
    形状: ピル型（全CTAボタン共通） → var(--radius-pill) = 60px
    サイズ: .btn-sm / .btn-md / .btn-lg
============================================================================== */

/* サイズ修飾子 */
.btn-sm {
    font-size: var(--fs-base);
    /* 15px */
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-md {
    font-size: var(--fs-md);
    /* 16px */
    font-weight: 700;
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lg {
    font-size: var(--fs-xl);
    /* 20px */
    font-weight: 700;
    padding: 20px 80px;
    border-radius: var(--radius-pill);
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lg::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 22px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.btn-sm:hover,
.btn-md:hover,
.btn-lg:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 104, 183, 0.3);
}

.btn-sm.btn-white:hover,
.btn-md.btn-white:hover,
.btn-lg.btn-white:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 800px) {
    .btn-lg {
        display: block;
        padding: 20px 0;
        text-align: center;
        font-size: var(--fs-xl);
    }

    .btn-md {
        font-size: var(--fs-md);
        padding: 14px 32px;
    }
}

/* ----- アウトラインボタン（共通） ----- */
.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
    border-radius: var(--radius-sm);
    /* 8px */
    font-size: var(--fs-base);
    /* 15px */
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, gap 0.2s;
}

.btn-outline-primary:hover {
    background: var(--c-primary);
    color: #fff;
    gap: 14px;
}

/* ----- テキストリンクボタン（→ アイコン付き） ----- */
.btn-text-link {
    color: #fff;
    text-decoration: none;
    font-size: var(--fs-base);
    /* 15px */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: 0.3s;
}

.btn-text-link:hover {
    opacity: 0.8;
    gap: 12px;
}

.mgen {
    font-family: "mgen";
}

img {
    max-width: 100%;
}

img.float-right {
    float: right;
    width: calc(45% + 80px);
    margin-left: 5%;
    margin-right: -80px;
    margin-bottom: 20px;
    max-width: 680px;
}

img.float-left {
    float: left;
    width: calc(45% + 80px);
    margin-right: 5%;
    margin-left: -80px;
    margin-bottom: 20px;
    max-width: 680px;
}

@media screen and (max-width: 800px) {
    img.float-right {
        float: unset;
        width: 100%;
        max-width: unset;
        margin: 0 auto 20px;
    }

    img.float-left {
        float: unset;
        width: 100%;
        max-width: unset;
        margin: 0 auto 20px;
    }
}

p {
    line-height: 2em;
}

a {
    color: #000;
    text-underline-offset: 5px;
}

.btn-blue {
    text-decoration: none;
    background: linear-gradient(to bottom, #289df6 0%, #0068b7 100%);
    transition: 0.5s;
    color: #fff !important;
    line-height: var(--lh-tight);
}

.btn-white {
    text-decoration: none;
    background: #fff;
    transition: 0.5s;
    color: #0068b7 !important;
}

.btn-blue:hover,
.btn-white:hover {
    opacity: 0.8;
}

.big-btn {
    font-size: var(--fs-xl);
    /* 20px */
    padding: 20px 100px;
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    position: relative;
}

.big-btn::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 22px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb60 {
    margin-bottom: 60px;
}

.page-wrap {
    background: #d3dfef;
}

.page-ttl {
    height: 342px;
    background-image: url("../img/page_ttl_bg_pc02.png"),
        url("../img/page_ttl_bg_pc01.jpg");
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, cover;
    background-position: bottom, center;
    position: relative;
}

.page-ttl-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.page-ttl h1,
.ttl {
    font-size: 50px;
    color: #fff;
    text-align: center;
    line-height: 0.8em;
    white-space: nowrap;
}

.page-ttl h1 span,
.ttl span {
    font-size: 30px;
}

.page-ttl h1 a {
    color: #ffffff;
    text-decoration: none;
}

.page-ttl h1 a:hover {
    opacity: 0.7;
}

.page-section .inner {
    background: #fff;
    padding: 100px 80px;
}


/* ----- サブ見出し（.section-subtitle） ----- */
.section-subtitle {
    font-size: var(--fs-2xl);
    /* 24px */
    font-weight: 700;
    text-align: center;
    line-height: var(--lh-tight);
    /* 1.4 */
    padding: 50px 0 100px 0;
    color: var(--c-primary-dark);
    /* #1b1f79 */
}

.midashi-blue1 {
    background: #0973c5;
    color: #fff;
    padding: 13px 20px;
    font-size: 20px;
}

.midashi-blue2 {
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 4px solid #0973c5;
}

@media screen and (max-width: 1000px) {
    .page-wrap {
        background: #fff;
    }

    .page-ttl {
        background-image: url("../img/page_ttl_bg_sp02.png"),
            url("../img/page_ttl_bg_pc01.jpg");
        height: 240px;
    }
}

@media screen and (max-width: 800px) {
    .page-ttl {
        background-image: url("../img/page_ttl_bg_sp02.png"),
            url("../img/page_ttl_bg_pc01.jpg");
        height: 160px;
    }

    .big-btn {
        display: block;
        font-size: 20px;
        padding: 20px 0;
    }

    .page-ttl h1,
    .ttl {
        font-size: 32px;
        line-height: 0.8em;
    }

    .page-ttl h1 span,
    .ttl span {
        font-size: 18px;
    }

    .page-section .inner {
        padding: 60px 20px;
    }

    .section-subtitle {
        font-size: var(--fs-lg);
        /* 18px */
        line-height: var(--lh-tight);
        /* 1.4 */
        padding: 0 0 80px 0;
    }
}

/* ==============================================================================
		共通
============================================================================== */
#wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

#main {
    padding-top: 80px;
}

.inner {
    max-width: 1200px;
    margin: auto;
}

footer {
    margin-top: auto;
}

@media screen and (max-width: 1200px) {
    .inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    #main {
        padding-top: 60px;
    }
}

@media screen and (min-width: 801px) {
    .pcno {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .spno {
        display: none;
    }
}

/* ==============================================================================
		ヘッダー
============================================================================== */
header {
    position: fixed;
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 20px rgba(0, 60, 120, 0.10);
    border-bottom: 1px solid rgba(0, 60, 120, 0.06);
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header img {
    width: 240px;
}

header p {
    line-height: 1;
}

.g-nav ul {
    display: flex;
    justify-content: flex-end;
}

.g-nav ul li {
    margin-left: 3em;
    position: relative;
}

.g-nav ul li a {
    text-decoration: none;
    color: #333;
}

/* PCサブメニュー */
.g-nav ul li.has-dropdown:hover .dropdown-menu,
.g-nav ul li.has-dropdown.dropdown-active .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.g-nav ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-width: 280px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.g-nav ul li .dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
}

.g-nav ul li .dropdown-menu li a {
    padding: 0 30px;
    display: block;
    white-space: nowrap;
    width: 100%;
    height: 80px;
    line-height: 80px;
}

.g-nav ul li .dropdown-menu li a:hover {
    background: #f5f5f5;
}

.g-nav-btn {
    padding: 12px 20px;
    border-radius: 50px;
}

/* ----- ハンバーガーボタン ----- */
.drawer-hamburger {
    padding: 16px 14px !important;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    background-color: #0068b7 !important;
    border-radius: 2px;
    height: 2px !important;
    width: 24px !important;
    transition: all 0.3s ease !important;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 0 !important;
}

.drawer-open .drawer-hamburger-icon {
    background-color: transparent !important;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
    background-color: #fff !important;
}

/* ----- ドロワーナビ本体 ----- */
.drawer-nav {
    background: linear-gradient(160deg, #1b4f8c 0%, #0068b7 60%, #1a6fc7 100%) !important;
    width: 320px !important;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
}

.drawer--right .drawer-nav {
    right: -320px;
}

/* ----- ドロワーボディ（スクロール可能） ----- */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 32px;
    display: flex;
    flex-direction: column;
}

.drawer-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.drawer-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* ----- ドロワーメニューリスト ----- */
.drawer-menu {
    padding: 16px 0 0;
    flex: 1;
}

.drawer-menu li {
    list-style: none;
}

/* セクションラベル */
.drawer-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    padding: 20px 28px 8px;
    pointer-events: none;
}

/* メインメニューリンク */
.drawer-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
    line-height: 1.5;
}

.drawer-menu li a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #79c7ff;
    padding-left: 32px;
    color: #fff;
}

/* サブメニュー */
.drawer-menu li.drawer-submenu a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 28px 10px 44px;
    letter-spacing: 0.02em;
    position: relative;
    border-left: 3px solid transparent;
}

.drawer-menu li.drawer-submenu a::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

.drawer-menu li.drawer-submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(121, 199, 255, 0.5);
    padding-left: 48px;
    color: rgba(255, 255, 255, 0.95);
}

.drawer-menu li.drawer-submenu a:hover::before {
    width: 10px;
    background: #79c7ff;
}

/* ----- ドロワーCTAエリア ----- */
.drawer-cta {
    padding: 24px 28px 8px;
    margin-top: auto;
}

.drawer-cta-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #fff;
    color: #0068b7 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.drawer-cta-btn:hover {
    background: #ebf0f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ----- オーバーレイ ----- */
.drawer-overlay {
    background: rgba(0, 30, 80, 0.5) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media screen and (max-width: 1000px) {
    header .inner {
        height: 60px;
    }

    .g-nav {
        display: none;
    }

    header img {
        width: 180px;
    }
}

@media screen and (min-width: 1001px) {
    .drawer-toggle {
        display: none !important;
    }

    .drawer-nav {
        display: none !important;
    }
}

/* ==============================================================================
    	フッター
============================================================================== */
footer {
    background: #1b1f79;
    padding: 80px 0 60px 0;
}

footer a {
    transition: 0.5s;
}

footer a:hover {
    opacity: 0.7;
}

.footer-sitemap {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 300px;
}

.footer-logo img {
    width: 120px;
}

.footer-logo img.privacy-logo {
    margin: 0;
    padding: 9px;
    display: inline;
    background-color: #fff;
    margin-left: 30px;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}


.site-map {
    width: calc(100% - 350px);
}

.site-map>ul {
    display: flex;
    justify-content: space-between;
}

.site-map>ul>li {
    width: calc(50% - 25px);
}

.site-map>ul>li>a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.site-map>ul>li>ul {
    margin-top: 1em;
}

.site-map>ul>li>ul>li>a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 1em;
}

.site-map>ul>li:last-child a:not(:first-child) {
    margin-top: 1em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.footer-bottom ul {
    display: flex;
}

.footer-bottom ul li {
    border-right: 1px solid #fff;
    padding: 2px 30px;
}

.footer-bottom ul li:first-child {
    padding-left: 0;
}

.footer-bottom ul li:last-child {
    border-right: none;
}

.footer-bottom ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.copy {
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 800px) {
    footer {
        padding: 60px 0 40px 0;
    }

    .footer-sitemap {
        display: block;
    }

    .site-map {
        display: none;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom ul {
        margin: 60px auto;
    }

    .footer-bottom ul li {
        display: none;
    }

    .footer-bottom ul li:nth-child(2) {
        display: block;
        border-right: none;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-bottom ul li:nth-child(2) a {
        background-color: #fff;
        color: #1b1f79;
        font-size: 20px;
        padding: 20px 0;
        border-radius: 80px;
        font-weight: bold;
        display: block;
        box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    }

    .copy {
        text-align: center;
    }
}

/* ==============================================================================
    	TOPページ
============================================================================== */

/* ----- 共通 ----- */
/* .top-h2 は .section-title.section-title--hero に統合済み（2026/06/22） */

.top-btn-wrap {
    text-align: center;
    margin-top: 80px;
}

/* ----- MV ----- */
#top-mv {
    background: linear-gradient(135deg, #1b4f8c 0%, #0068b7 40%, #79c7ff 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

#top-mv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#top-mv .inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mv-right {
    width: 33%;
    flex-shrink: 0;
}

.mv-right img {
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.2));
}

.mv-left {
    width: 67%;
    min-width: 0;
}

.mv-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    line-height: 1;
}

#top-mv h2 {
    font-size: 44px;
    font-weight: 900;
    font-family: "mgen";
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.mv-sub {
    font-size: 16px;
    line-height: 1.8em;
    margin: 1.4em 0 1.8em;
    color: rgba(255, 255, 255, 0.92);
}

/* MV stats */
.mv-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2.2em;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 20px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mv-stat {
    flex: 1;
    text-align: center;
}

.mv-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    font-family: "mgen";
    line-height: 1;
    margin-bottom: 6px;
}

.mv-stat-unit {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

.mv-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.mv-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* MV ボタン */
.mv-btn-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

#top-mv .mv-btn {
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(0, 104, 183, 0.35);
    transition: all 0.3s ease;
    line-height: var(--lh-tight);
}

#top-mv .mv-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 104, 183, 0.45);
}

.mv-btn-sub {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: 0.3s;
}

.mv-btn-sub:hover {
    opacity: 0.8;
    gap: 12px;
}

@media screen and (max-width: 1000px) {
    #top-mv .inner {
        flex-direction: column;
        text-align: center;
    }

    .mv-right {
        width: 60%;
        order: -1;
    }

    .mv-left {
        width: 100%;
    }

    #top-mv h2 {
        font-size: 38px;
    }

    .mv-btn-wrap {
        justify-content: center;
    }
}

@media screen and (max-width: 800px) {
    #top-mv {
        padding: 60px 0 80px;
    }

    .mv-right {
        width: 80%;
    }

    #top-mv h2 {
        font-size: 24px;
    }

    .mv-sub {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .mv-stats {
        padding: 16px 16px;
        gap: 0;
    }

    .mv-stat-num {
        font-size: 24px;
    }

    .mv-stat-unit {
        font-size: 13px;
    }

    .mv-stat-label {
        font-size: 11px;
    }

    .mv-btn-wrap {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .top-btn-wrap {
        margin-top: 60px;
    }
}

/* ----- ABOUT ----- */
#top-about {
    background: #fff;
    padding: 120px 0;
}

/* #top-about .top-h2 → .section-title のデフォルトカラー #1b1f79 と同一のため削除 */

.top-about-lead {
    text-align: center;
    font-size: 16px;
    line-height: 2em;
    color: #555;
    margin-top: 32px;
}

.top-about-list {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 64px;
}

.top-about-item {
    flex: 1;
    background: #f5f8fb;
    border-radius: 20px;
    padding: 44px 32px 40px;
    text-align: center;
    border-top: 4px solid #0068b7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-about-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 104, 183, 0.12);
}

.top-about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #289df6, #0068b7);
    margin: 0 auto 24px;
}

.top-about-icon i {
    font-size: 30px;
    color: #fff;
}

.top-about-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1b1f79;
    margin-bottom: 14px;
    line-height: 1.4;
}

.top-about-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.9em;
}

@media screen and (max-width: 800px) {
    #top-about {
        padding: 80px 0;
    }

    .top-about-lead {
        font-size: 14px;
        text-align: left;
    }

    .top-about-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .top-about-item {
        padding: 32px 24px;
    }
}

/* ----- SERVICE ----- */
#top-service {
    background: #ebf0f7;
    padding: 120px 0;
}

/* #top-service .top-h2 → .section-title のデフォルトカラー #1b1f79 と同一のため削除 */

#top-service ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 64px;
}

#top-service ul li {
    width: 280px;
    text-align: center;
    padding: 40px 24px 36px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 60, 120, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

#top-service ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 60, 120, 0.14);
    border-bottom-color: #0068b7;
}

#top-service ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
}

.top-service-icon {
    display: block;
    margin-bottom: 16px;
}

#top-service ul li img {
    height: 100px;
    transition: transform 0.3s ease;
}

#top-service ul li:hover img {
    transform: scale(1.05);
}

.top-service-ttl {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #1b1f79;
    margin-top: 0 !important;
}

.top-service-desc {
    font-size: 13px;
    line-height: 1.7em;
    color: #666;
    margin-top: 8px !important;
}

@media screen and (max-width: 1000px) {
    #top-service ul {
        gap: 16px;
    }

    #top-service ul li {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 800px) {
    #top-service {
        padding: 80px 0;
    }

    #top-service ul {
        flex-direction: column;
        gap: 16px;
    }

    #top-service ul li {
        width: 100%;
    }
}

#top-works {
    background: linear-gradient(135deg, #0068b7 0%, #1b4f8c 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#top-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(121, 199, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

#top-works h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

#top-works .top-works-list {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

#top-works .top-works-list>li {
    width: 47%;
    position: relative;
}

#top-works .top-works-list>li img {
    border-radius: 20px;
}

#top-works .top-works-list>li .works-service {
    margin-bottom: 1.2em;
}

.top-works-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 32px 40px;
    margin: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 36px rgba(0, 40, 100, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #0068b7;
}

.top-works-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.5em;
    color: #1b1f79;
}

.top-works-box h3 span {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    display: block;
    margin-bottom: 4px;
}

.top-works-box p {
    font-size: 14px;
    line-height: 1.85em;
    color: #555;
}

#top-works .top-works-list>li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 3;
}

#top-works .top-works-list>li:hover .top-works-box {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 40, 100, 0.28);
}

#top-works .top-btn-wrap {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 800px) {
    #top-works {
        padding: 80px 0;
    }

    #top-works .top-works-list {
        flex-direction: column;
        gap: 24px;
        margin-top: 48px;
    }

    #top-works .top-works-list>li {
        width: 100%;
    }

    .top-works-box {
        padding: 24px 20px 28px;
    }

    .top-works-box h3 {
        font-size: 18px;
    }
}

/* .top-h2 レスポンシブは .section-title--hero のレスポンシブに統合済み（2026/06/22） */

#top-resource {

    background: #fff;
    padding: 120px 0;
}

#top-resource h2 {
    margin-bottom: 30px;
}

.resource-list {
    width: 78%;
    margin: 30px auto 0;
}

.resource-list th,
.resource-list td {
    border: solid 1px #ccc;
    padding: 20px 0;
    text-align: center;
    vertical-align: middle;
    line-height: 1.3em;
    width: 13%;
}

.resource-list th {
    background: #e6e6e6;
}

/* ページネーション(仮) */
.works-pagination-container {
    text-align: center;
    margin-bottom: 50px;
}

.works-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.works-pagination ul li .current {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #0973c5;
    border-radius: 4px;
    color: #0973c5;
}

.works-pagination ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0973c5;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
}

.works-pagination ul li a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 800px) {
    .resource-list {
        display: flex;
    }

    .resource-list tr {
        display: block;
    }

    .resource-list tr td,
    .resource-list tr th {
        /*border-left: none;*/
        display: block;
        vertical-align: middle;
        width: 100%;
    }

    .resource-list thead {
        display: block;
        /*width: 20%;*/
        width: 35%;

    }

    .resource-list thead tr {
        width: 100%;
    }

    .resource-list tbody {
        display: flex;
        /*width: 80%;*/
        width: 65%;
    }

    .resource-list tbody tr {
        /*width: 50%;*/
        width: 100%;
    }

    .r-list-text {
        font-size: 80%;
    }

    .resource-list th:nth-child(n + 2) {
        width: auto;
    }
}

#top-news {
    background: #ebf0f7;
    padding: 120px 0;
}

#top-news ul {
    margin-top: 60px;
}

#top-news ul li {
    background: #fff;
    padding: 20px;
    margin-bottom: 14px;
    box-shadow: 0 5px 10px -2px rgba(85, 85, 85, 0.3);
    transition: 0.5s;
    position: relative;
}

#top-news ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 7px 12px -2px rgba(85, 85, 85, 0.3);
}

#top-news ul li::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 20px;
    color: #0670c0;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#top-news ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
}

.top-news-date {
    display: inline-block;
    margin-right: 3em;
}

.top-news-ttl {
    line-height: 1.6em;
}

@media screen and (max-width: 1200px) {
    #top-news ul li {
        padding-right: 40px;
    }
}

@media screen and (max-width: 800px) {
    .top-news-date {
        display: block;
        margin-bottom: 10px;
    }

    #top-news ul li::after {
        right: 20px;
    }
}

/* ==========RECRUIT========== */
#top-recruit {
    background-image: url("../img/recruit_bg.jpg");
    background-size: cover;
    padding: 120px 0;
}

#top-recruit h2 {
    color: #fff !important;
    margin-bottom: 60px;
}

#top-recruit p {
    width: 45%;
    color: #fff;
    margin: 0 auto;
}

@media screen and (max-width: 800px) {
    #top-recruit {
        background-image: url("../img/recruit_bg_sp.jpg");
    }

    #top-recruit p {
        width: 100%;
    }
}

/* ==============================================================================
    	アプリケーション開発
============================================================================== */
#develop {
    margin: 160px 0;
}

#develop ul {
    margin-left: 2em;
    list-style: disc;
}

#develop ul li {
    line-height: 2em;
}

#flow {
    margin: 160px 0;
    text-align: center;
}

.step {
    margin-bottom: 20px;
}

.step:after {
    content: '▼';
    width: 100%;
    display: block;
    color: #0068b7;
    margin-top: 20px;
}

#develop h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 2em;
    margin-bottom: 0.4em;
}

.img-box-ti,
.img-box-it {
    position: relative;
}

.img-box-ti .inner,
.img-box-it .inner {
    /* height: 360px; */
}

.develop-box3 .inner,
.develop-box4 .inner,
.develop-box5 .inner {
    height: 500px;
}

.ti-right {
    position: absolute;
    right: 0;
    width: 45%;
    max-width: 680px;
    z-index: 2;
}

.ti-left {
    padding-right: 50%;
}

.it-left {
    position: absolute;
    left: 0;
    width: 45%;
    max-width: 680px;
    z-index: 2;
}

.it-right {
    padding-left: 50%;
}

.develop-box2 {
    margin: 80px 0 100px;
}

.develop-box2 h3 {
    text-align: center;
}

.develop-box4,
.develop-box5 {
    margin: 80px 0 100px;
}

#looker-studio,
#server {
    padding-top: 200px;
}

#looker-studio.page-section .inner {
    padding-bottom: 100px;
}

.server-box1 .inner {
    padding: 0 200px 140px 200px;
    text-align: center;
}

.server-box1 .left {
    text-align: left;
}

.server-box2 .inner {
    height: 600px;
}

#service-p {
    padding-top: 200px;
}

.service-p-box {
    margin-bottom: 100px;
}

.service-p-box .inner {
    padding-bottom: 140px;
}

.service-p-text01 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6em;
    padding: 140px 0 100px 0;
}

.sp-col2-wrap {
    display: flex;
    justify-content: space-between;
}

.sp-col2-left,
.sp-col2-right {
    width: 45%;
}

.sp-col2-left img,
.sp-col2-right img {
    width: 100%;
}

.sp-col2-left h3,
.sp-col2-right h3 {
    font-size: 22px;
    line-height: 2em;
}

@media screen and (max-width: 1000px) {

    .img-box-ti .inner,
    .img-box-it .inner {
        height: auto;
    }

    .ti-right,
    .it-left {
        position: static;
        width: 100%;
        max-width: 100%;
        z-index: 1;
    }

    .ti-left {
        padding-right: 0;
        padding-top: 30px;
    }

    .it-right {
        padding-left: 0;
        padding-top: 30px;
    }

    .develop-box2 .inner {
        padding: 100px 20px;
    }

    .develop-box2 h3 {
        /* text-align: left; */
    }

    .develop-box5 {
        margin-top: 100px;
    }

    #server {
        padding-top: 100px;
    }

    #looker-studio .inner,
    .server-box1 .inner {
        padding: 0 20px 0 20px;
    }

    .server-box2 {
        margin-top: 80px;
        padding-bottom: 100px;
    }

    #service-p {
        padding-top: 100px;
    }

    .sp-col2-wrap {
        display: block;
    }

    .sp-col2-left,
    .sp-col2-right {
        width: 100%;
    }

    .sp-col2-left {
        margin-bottom: 60px;
    }

    #flow {
        margin-bottom: 0;
        padding-bottom: 160px;
        background-color: #ebf0f7;
    }

    #flow.page-section .inner {
        background-color: #ebf0f7;
    }

}

@media screen and (max-width: 800px) {
    #develop {
        margin: 100px 0;
    }

    .service-p-text01 {
        font-size: 20px;
        padding: 0 0 80px 0;
    }

    #flow {
        padding-top: 80px;
    }

}

/* ==============================================================================
    	Site Monitor
============================================================================== */
#sitemonitor {
    padding-top: 160px;
}

.product-page .inner {
    padding-bottom: 200px;
}

.product-page p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

.product-box1 {
    display: flex;
    justify-content: space-between;
}

.product-box1-left {
    width: 40%;
}

.product-box1-right {
    width: 55%;
}

.product-box1-right-text {
    font-size: 34px;
    line-height: 1.2em !important;
    margin-bottom: 1em !important;
}

.product-box2 {
    margin-top: 160px;
}

.product-text1 {
    font-size: 24px;
    display: inline-block;
    padding: 10px 30px;
    border-bottom: 5px solid #0973c5;
    margin-bottom: 60px;
}

.product-box3 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.product-box3-left {
    width: 55%;
}

.product-box3-right {
    width: 40%;
}

.product-box4 {
    margin: 160px auto 0 auto;
    width: 80%;
}

.price-list {
    margin-top: 20px;
    width: 100%;
}

.price-list th {
    background: #dbd9d4;
    border: 1px solid #ababab;
    padding: 10px 0;
    font-size: 22px;
}

.price-list td {
    border: 1px solid #ababab;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
}

span.price1 {
    font-size: 28px;
    font-weight: 600;
    padding-right: 4px;
}

span.price2 {
    font-size: 16px;
}

#portalbuilder {
    padding-top: 160px;
    margin-bottom: 100px;
}

@media screen and (max-width: 800px) {
    .product-box1 {
        display: block;
    }

    .product-box1-left {
        width: 100%;
    }

    .product-box1-right {
        width: 100%;
        margin-top: 20px;
    }

    .product-box1-right-text {
        font-size: 28px;
        line-height: 1em !important;
        margin-bottom: 1em !important;
    }

    .product-page .section-subtitle {
        padding: 0 0 40px 0;
    }

    .product-box2 {
        margin-top: 100px;
    }

    .product-box3 {
        display: block;
    }

    .product-box3-left {
        width: 100%;
        margin-top: 20px;
    }

    .product-box3-right {
        width: 100%;
    }

    .product-box4 {
        margin: 100px auto 0 auto;
        width: 100%;
    }

    .price-list th {
        font-size: 18px;
    }

    .price-list td {
        font-size: 16px;
    }

    span.price1 {
        font-size: 20px;
    }

    span.price2 {
        font-size: 14px;
    }
}

/* ==============================================================================
    	制作実績
============================================================================== */
.works-section {}

.works-section .post-page {
    padding: 0;
    margin-bottom: 80px;
}

.works-section .post-page:first-child {
    margin-top: 80px;
}

.works-section .post-page .inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.works-section h2 {
    font-size: 28px;
    line-height: 1.5em;
    margin-bottom: 10px;
}

.works-section h2 span {
    font-size: 18px;
    line-height: 2em;
}

.works-section h2 a {
    color: #000;
    text-decoration-color: #fff;
}

.works-section h2 a:hover {
    text-decoration-color: #000;
}

.works-section p a {
    color: #0973c5;
    text-decoration-color: #fff;
}

.works-section p a:hover {
    text-decoration-color: #0973c5;
}

.works-service {
    display: flex;
    font-size: 14px;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.works-service li {
    color: #fff;
    background-color: #dadada;
    padding: 6px 10px;
    border-radius: 4px;
}

.works-service li.active {
    background-color: #4294da;
}

.works-service li a {
    color: #ffffff;
    text-decoration: none;
}

.works-service li:has(a):hover {
    opacity: 0.7;
}

.works-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 60px;
}

.works-box-right {
    width: 47%;
}

.works-box-left {
    width: 47%;
}

.works-box-right ul {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 20px 0;
}

.works-box-right ul li {
    width: calc((100% - 20px) / 3);
    height: 3.7em;
    line-height: 1.3em;
    background: #dadada;
    padding: 0 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.works-box-right ul li:nth-child(3n) {
    margin-right: 0;
}

.works-box-right li.blue {
    background: #4294da;
}

.works-gallery-slider {
    border: 1px solid #ccc;
}

.works-section-paragraph p {
    margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
    .works-section {
        margin-top: 70px;
    }

    .works-section .inner {
        padding-top: 0px;
        padding-bottom: 60px;
        margin-bottom: 60px;
        border-bottom: 1px dotted #ccc;
    }

    .works-section .inner:last-child {
        border-bottom: none;
        margin-bottom: 20px;
    }

    .works-box {
        display: block;
        margin-top: 60px;
    }

    .works-box-right {
        width: 100%;
    }

    .works-box-left {
        width: 100%;
    }

    .works-box-left.noimage {
        display: none;
    }
}

/* ==============================================================================
    	会社案内
============================================================================== */
.profile-section {
    margin-top: 120px;
}

.profile-section01 {
    margin-top: 160px;
    position: relative;
}

.profile-section02 {
    margin-bottom: 120px;
}

.profile-section03 {
    margin-bottom: 120px;
}

.profile-section04 {
    margin-bottom: 120px;
}

.profile-ceo {
    margin-bottom: 120px;
}

.profile-ceo .profile-box {
    margin-top: 100px;
}

.profile-ceo h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.profile-section .inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.profile-img01 {
    position: absolute;
    right: 0;
    top: -60px;
    width: 800px;
    z-index: 2;
}

.profile-section01 h2 {
    position: relative;
    z-index: 3;
    font-size: 46px;
    font-weight: bold;
    font-family: "mgen";
    letter-spacing: -1px;
}

.profile-section01 p.spno {
    position: relative;
    font-size: 18px;
    line-height: 1.6em;
    margin: 1em 0 2em;
    z-index: 3;
}

.spttl {
    text-align: center;
}

.spttl p {
    margin-bottom: 40px;
}

.profile-box01 {
    display: flex;
    justify-content: space-between;
    padding-top: 250px;
}

.profile-box01-left {
    width: 46%;
}

.profile-box01-right {
    width: 46%;
}

.profile-box01-right p {
    margin-bottom: 2em;
}

.profile-section .section-title {
    margin-top: 0;
    margin-bottom: 40px;
}

table.profile {
    margin-top: 40px;
    width: 100%;
    line-height: 1.4em;
}

table.profile th {
    background: #c6d0df;
    padding: 20px 10px;
    border: 2px solid #fff;
    vertical-align: middle;
}

table.profile td {
    background: #e5ecf6;
    padding: 20px 10px;
    border: 2px solid #fff;
    line-height: 1.8em;
}

table.history {
    margin-top: 100px;
    width: 100%;
    line-height: 1.4em;
}

table.history tr {
    background: #c6d0df;
}

table.history tr:nth-child(even) {
    background: #e5ecf6;
}

table.history th {
    padding: 20px;
    width: 10%;
    text-align: left;
}

table.history td {
    padding: 20px;
    width: 80%;
    text-align: left;
    line-height: 1.8em;
}

.gmap {
    margin-top: 100px;
    height: 0;
    overflow: hidden;
    padding-bottom: 45%;
    position: relative;
    border: 2px solid #ccc;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.profile-section04 h3 {
    border-bottom: 1px solid #666;
    margin: 40px 0 20px 0;
    font-size: 20px;
    padding: 6px 0;
}

@media screen and (min-width: 801px) {
    .profile-section .spttl {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .profile-img01 {
        position: static;
        right: auto;
        top: auto;
        width: 100%;
        z-index: 1;
    }

    .profile-section01 {
        margin-top: 60px;
    }

    .profile-section .inner {
        padding-top: 40px;
    }

    .profile-section01 .spttl {
        margin-left: 20px;
        margin-right: 20px;
    }

    .profile-section01 h2 {
        font-size: 27px;
        z-index: 1;
        text-align: center;
        margin-bottom: 1em;
    }

    .profile-section01 .spttl p {
        font-size: 16px;
        line-height: 1.6em;
    }

    .profile-box01 {
        display: block;
        padding-top: 40px;
    }

    .profile-box01-left {
        width: 100%;
    }

    .profile-box01-right {
        width: 100%;
        margin-top: 40px;
    }

    .profile-section02 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .profile-section03 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .profile-section04 {
        margin-top: 0;
    }

    table.profile {
        margin-top: 20px;
    }

    table.profile th {
        display: block;
        text-align: left;
        padding: 10px;
    }

    table.profile td {
        display: block;
        background: #fff;
        border: 2px solid #fff;
        padding: 10px 10px 30px 10px;
    }

    table.history {
        margin-top: 20px;
    }

    .gmap {
        margin-top: 20px;
    }
}

/* ==============================================================================
    	採用情報
============================================================================== */
.recruit-section {
    padding-top: 120px;
}

.recruit-section:last-child {
    margin-bottom: 120px;
}

.recruit-section .inner {
    padding-bottom: 100px;
}

.recruit-section h3 {
    padding-top: 60px;
    text-align: center;
    font-size: 30px;
}

.type {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.type li {
    width: 44%;
    text-align: center;
}

.type li a {
    display: block;
    padding: 24px 0;
    border-radius: 10px;
}

.recruit-box {
    padding-top: 100px;
}

.recruit-box table {
    width: 100%;
}

.recruit-box tr {
    border-bottom: 15px solid #fff;
}

.recruit-box th {
    background: #0068b7;
    color: #fff;
    width: 25%;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

.recruit-box td {
    background: #f0f0f0;
    padding: 20px;
    line-height: 1.8em;
}

@media screen and (max-width: 800px) {
    .recruit-section {
        padding-top: 60px;
    }

    .recruit-section h3 {
        padding-top: 20px;
        font-size: 24px;
    }

    .type {
        display: block;
        margin-top: 40px;
    }

    .type li {
        width: 100%;
        margin-bottom: 20px;
    }

    .recruit-box {
        padding-top: 10px;
    }

    .recruit-box th {
        display: block;
        width: 100%;
        padding: 20px;
    }

    .recruit-box td {
        display: block;
        padding: 20px;
    }

    .recruit-section .top-btn-wrap {
        margin-top: 40px;
    }
}

/* ==============================================================================
    	プライバシーポリシー
============================================================================== */
.privacy-section {
    padding: 80px 0;
}

.privacy-section p {
    margin-bottom: 40px;
}

.privacy-section .inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.privacy-section h2 {
    border-bottom: 1px solid #333;
    font-size: 20px;
    font-weight: bold;
    padding: 4px 0;
    margin-bottom: 1.4em;
}

.privacy-box {
    border: 1px solid #333;
    padding: 40px 40px 0 40px;
    margin-bottom: 80px;
}

.privacy-box h3 {
    margin: 0 0 1em 0;
    font-weight: bold;
    line-height: 1.4em;
}

.privacy-section ul {
    margin-left: 3em;
    margin-bottom: 40px;
}

.privacy-section ul li {
    margin-bottom: 1.4em;
    line-height: 1.6em;
    padding-left: 1em;
    list-style-type: lower-alpha;
}

.privacy-section ul li p {}

.privacy-section ul li ul {
    margin-left: 1em;
    margin-top: 10px;
}

.privacy-section ul li ul li {
    margin-bottom: 0.5em;
    line-height: 1.6em;
    list-style-type: decimal;
}

.privacy-logo {
    display: block;
    margin: 0 auto 80px;
    width: 120px;
}

@media screen and (max-width: 800px) {
    .privacy-box {
        padding: 40px 20px 0 20px;
        margin: 40px 0 100px 0;
    }
}

/* ==============================================================================
    	新着情報
============================================================================== */
.news-section {
    padding: 40px 0 100px 0;
}

.news-section .inner {
    background: none;
}

.news-section ul {
    margin-top: 60px;
}

.news-section ul li {
    background: #fff;
    padding: 20px;
    margin-bottom: 14px;
    box-shadow: 0 5px 10px -2px rgba(85, 85, 85, 0.3);
    transition: 0.5s;
    position: relative;
}

.news-section ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 7px 12px -2px rgba(85, 85, 85, 0.3);
}

.news-section ul li::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 20px;
    color: #0670c0;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.news-section ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
}

.news-date {
    display: inline-block;
    margin-right: 3em;
}

.news-ttl {
    line-height: 1.6em;
}

@media screen and (max-width: 1200px) {
    .news-section ul li {
        padding-right: 40px;
    }
}

@media screen and (max-width: 1000px) {
    .news-section ul li {
        background: #ebf0f7;
    }
}

@media screen and (max-width: 800px) {
    .news-date {
        display: block;
        margin-bottom: 10px;
    }

    .news-section ul li::after {
        right: 20px;
    }
}

/* ==============================================================================
    	新着情報・個別ページ
============================================================================== */
.post-page {
    padding: 80px 0;
}

.post-page .inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.post-page h1 {
    font-size: 30px;
    line-height: 1.4em;
}

.post-page .date {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.post-content {
    margin: 40px 0;
}

.post-content p {
    line-height: 1.8em;
    margin-bottom: 2em;
}

/* ==============================================================================
    	お問合せ
============================================================================== */
.inquiry-section {
    padding: 80px 0;
}

.inquiry-section p {
    line-height: 1.6em;
    margin-bottom: 1em;
}

.inquiry-section .inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.inquiry-section h2 {
    border-bottom: 1px solid #333;
    font-size: 20px;
    font-weight: bold;
    padding: 4px 0;
    margin-bottom: 20px;
    line-height: 1.5em;
}

.inquiry-box {
    padding: 40px;
    border: 1px solid #ccc;
}

.required {
    font-size: 14px;
    color: #de1e21;
}

.red {
    color: #de1e21;
}

.inquiry {
    width: 100%;
}


.inquiry tr {
    border-bottom: 1px dotted #c2c2c2;
}

.inquiry tr:last-child {
    border: none;
}

.inquiry th {
    width: 200px;
    vertical-align: top;
    padding-top: 20px;
    text-align: left;
    line-height: var(--lh-base);
}

.inquiry td {
    padding: 20px 0px;
    font-size: 16px;
    width: calc(100% - 200px);
}

input[type="text"],
input[type="email"] {
    padding: 6px 6px;
    font-size: 16px;
}

input::placeholder {
    color: #aaa;
}

textarea {
    padding: 6px 6px;
    font-size: 16px;
    vertical-align: top;
    width: 100%;
}

input.text-input-01 {
    width: 58%;
}

input.text-input-01,
input.text-input-02,
input.text-input-03 {
    vertical-align: middle;
    padding-left: 3px;
}

.input-radio-01 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-radio-01 label {
    text-indent: -1.6em;
    margin-left: 1.6em;
    display: block;
}

.input-radio-01 label span {
    line-height: 1.4;
}

.input-radio-02 {
    display: flex;
    gap: 10px;
}

.gray {
    color: #999999;
    font-size: 83.3%;
    margin-left: 10px;
}

.inquiry td ul {
    padding-left: 1.4em;
}

.inquiry td ul li {
    margin-bottom: 20px;
    line-height: 1.6em;
    text-indent: -1.3em;
}

.inquiry td ul li ul {
    padding-left: 1em;
    margin-top: 6px;
}

.input-check-01 .wpcf7-list-item {
    display: block;
    margin-bottom: 20px;
}

.input-check-01 input[type="checkbox"] {
    margin-right: 3px;
    vertical-align: middle;
}

.inquiry-box2 {
    margin-top: 40px;
}

.inquiry-box3 {
    margin-top: 40px;
    border: 1px solid #333;
    padding: 0 40px 40px 40px;
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.inquiry-text1 {
    font-weight: bold;
    margin: 3em 0 10px 0;
    line-height: 1.5em;
}

.inquiry-box3 table {
    margin-left: 20px;
}

.inquiry-box3 th {
    padding: 6px 6px 6px 0;
    text-align: left;
    position: relative;
}

.inquiry-box3 th::after {
    content: ":";
    position: absolute;
    right: 0;
}

.inquiry-box3 td {
    padding: 6px 0 6px 6px;
}

.div-agree {
    width: 154px;
    background-color: #efefef;
    padding: 10px 0px;
    margin: 60px auto 20px;
    text-align: center;
    font-size: 16px;
}

.div-agree2 {
    width: fit-content;
    background-color: #efefef;
    padding: 10px 7px;
    margin: 20px auto 20px;
    text-align: center;
    font-size: 16px;
}

.submit-btn {
    text-align: center;
}

input[type="submit"] {
    padding: 20px;
    background: #efefef;
    width: 300px;
    font-size: var(--fs-xl);
    /* 20px 統一 */
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* disabled時はホバー無効 */
input[type="submit"]:hover:enabled {
    color: #fff;
    background: linear-gradient(to bottom, #289df6 0%, #0068b7 100%);
}

input[type="submit"]:disabled {}

input[type="checkbox"] {
    position: relative;
    top: -2px;
    margin-right: 6px;
}

.inquiry-section .wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
    vertical-align: middle;
}

.wpcf7 .wpcf7-spinner {
    display: block;
    margin: 10px auto;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: var(--wp--preset--color--vivid-red);
    border: none;
    text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    text-align: center;
}

/* ---------- お問い合わせ完了ページ ---------- */
.inquiry-complete-wrap {
    padding: 40px 0;
    text-align: center;
}

.inquiry-complete-icon {
    font-size: 64px;
    color: #0068b7;
    margin-bottom: 24px;
    line-height: 1;
}

.inquiry-complete-lead {
    font-size: 1.1em;
    line-height: 1.8em;
    margin-bottom: 32px;
}

.inquiry-complete-box {
    background: #ebf0f7;
    border-radius: 8px;
    padding: 32px 40px;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 700px;
}

.inquiry-complete-box p {
    margin-bottom: 16px;
}

.inquiry-complete-box p:last-child {
    margin-bottom: 0;
}

.inquiry-complete-btn-wrap {
    margin-top: 16px;
}

.inquiry-complete-btn {
    display: inline-block;
    padding: 16px 56px;
    font-size: var(--fs-md);
    /* 16px */
    font-weight: 700;
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    text-decoration: none;
    transition: all 0.3s ease;
}

.inquiry-complete-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 104, 183, 0.3);
}

@media screen and (max-width: 800px) {
    .inquiry-complete-box {
        padding: 24px 20px;
    }

    .inquiry-complete-icon {
        font-size: 48px;
    }

    .inquiry-complete-btn {
        display: block;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* ==============================================================================
        LP Webアプリケーション受託開発
============================================================================== */

/* ---------- 共通 ---------- */
.lp-application {
    background: #fff;
}

/* LP Webアプリケーションページ内の .section-title 固有スタイル */
.lp-application .section-title {
    margin-bottom: 20px;
}

/* .lp-section-lead / .lp-section-lead--white → .section-lead / .section-lead--white に完全移行（2026/06/22）
   CSS定義削除済み。PHPテンプレートも section-lead / section-lead--white に置換済み */

.lp-cta-btn {
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(0, 104, 183, 0.35);
    transition: all 0.3s ease;
    line-height: var(--lh-tight);
    position: relative;
}

.lp-cta-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 104, 183, 0.45);
}

.lp-cta-btn-lg {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    padding: 24px 80px 28px;
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    text-decoration: none;
    border: 3px solid #fff;
    position: relative;
    transition: 0.3s;
}

.lp-cta-btn-lg::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 24px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

/* ---------- ヒーロー ---------- */
.lp-hero {
    background: linear-gradient(135deg, #0068b7 0%, #79c7ff 100%);
    padding: 80px 0 100px;
}

.lp-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.lp-hero-text {
    flex: 1;
    max-width: 750px;
}

.lp-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1;
}

.lp-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "mgen";
    letter-spacing: 1px;
}

.lp-hero-sub {
    font-size: 16px;
    line-height: 1.8em;
    margin: 1.4em 0 1.8em;
    color: rgba(255, 255, 255, 0.92);
}

.lp-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.lp-hero-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.lp-hero-image {
    width: 380px;
    flex-shrink: 0;
    text-align: center;
}

.lp-hero-image img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

/* ---------- お悩みセクション ---------- */
.lp-trouble {
    background: #f5f8fb;
}

.lp-trouble .inner {
    background: none;
    /* padding: 60px 20px; */
}

.lp-trouble-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 0 50px;
}

.lp-trouble-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid #e74c3c;
}

.lp-trouble-icon {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 16px;
    line-height: 1;
}

.lp-trouble-item p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7em;
    color: #333;
}

.lp-trouble-answer {
    text-align: center;
    padding: 36px 40px;
    background: linear-gradient(to right, #289df6 0%, #0068b7 100%);
    border-radius: 16px;
}

.lp-trouble-answer p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.lp-trouble-answer strong {
    font-size: 28px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 2px;
}

/* ---------- 選ばれる理由 ---------- */
.lp-reason {
    background: #1b1f79;
    padding: 100px 0;
}

.lp-reason-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.lp-reason-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.lp-reason-item--reverse {
    flex-direction: row-reverse;
}

.lp-reason-num {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 70px;
    font-weight: bold;
    font-family: "mgen";
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lp-reason-item--reverse .lp-reason-num {
    left: auto;
    right: 40px;
}

.lp-reason-img {
    width: 380px;
    flex-shrink: 0;
}

.lp-reason-img img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.lp-reason-body {
    flex: 1;
}

.lp-reason-body h3 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.lp-reason-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2em;
}

.lp-reason-body strong {
    color: #79c7ff;
    font-weight: bold;
}

/* ---------- 対応範囲 ---------- */
.lp-scope {
    background: #fff;
    padding: 100px 0;
}

.lp-scope .inner {
    background: none;
}

.lp-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.lp-scope-item {
    background: #f5f8fb;
    border-radius: 16px;
    padding: 36px 28px;
    border-bottom: 4px solid #0068b7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-scope-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 104, 183, 0.15);
}

.lp-scope-icon {
    font-size: 36px;
    color: #0068b7;
    margin-bottom: 16px;
    line-height: 1;
}

.lp-scope-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1b1f79;
    line-height: 1.5em;
    margin-bottom: 12px;
}

.lp-scope-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.85em;
}

/* ---------- 技術スタック ---------- */
.lp-tech {
    background: linear-gradient(135deg, #1b1f79 0%, #0068b7 100%);
    padding: 100px 0;
}

.lp-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
    justify-content: center;
}

.lp-tech-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 30px 32px;
    min-width: 200px;
    flex: 1;
    max-width: 260px;
}

.lp-tech-block h3 {
    font-size: 15px;
    font-weight: bold;
    color: #79c7ff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-tech-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-tech-block ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    line-height: 1.5;
}

.lp-tech-block ul li:last-child {
    border-bottom: none;
}

/* ---------- 主要取引先 ---------- */
.lp-clients {
    background: #ebf0f7;
    /* padding: 100px 0; */
}

.lp-clients .inner {
    background: none;
}

.lp-clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 50px 0 20px;
    list-style: none;
    padding: 0;
}

.lp-clients-list li {
    background: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: bold;
    color: #1b1f79;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.lp-clients-note {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* ---------- ご発注の流れ ---------- */
.lp-flow {
    background: #1b1f79;
    padding: 100px 0;
}

.lp-flow-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
    justify-content: center;
}

.lp-flow-step {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 16px;
    flex: 1;
    text-align: center;
    max-width: 200px;
    transition: background 0.3s;
}

.lp-flow-step:hover {
    background: rgba(255, 255, 255, 0.14);
}

.lp-flow-step-num {
    font-size: 11px;
    font-weight: bold;
    color: #79c7ff;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    font-family: "mgen";
}

.lp-flow-step-icon {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1;
}

.lp-flow-step h3 {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5em;
    margin-bottom: 12px;
}

.lp-flow-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7em;
}

.lp-flow-arrow {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.lp-faq {
    background: #fff;
    padding: 100px 0;
}

.lp-faq .inner {
    background: none;
}

.lp-faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.lp-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.lp-faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.lp-faq-q,
.lp-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 10px;
}

.lp-faq-a {
    background: #f5f8fb;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0 0 8px 8px;
    display: flex;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}

.lp-faq-item.is-open .lp-faq-a {
    max-height: 300px;
    padding-top: 20px;
    padding-bottom: 24px;
}

.lp-faq-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    font-family: "mgen";
    line-height: 1;
    padding-bottom: 3px;
}

.lp-faq-label--q {
    background: #1b1f79;
    color: #fff;
}

.lp-faq-label--a {
    background: #0068b7;
    color: #fff;
}

.lp-faq-q p {
    font-size: 17px;
    font-weight: bold;
    color: #222;
    line-height: 1.6em;
    margin: 0;
    padding-top: 4px;
    cursor: pointer;
    flex: 1;
}

.lp-faq-a p {
    font-size: 15px;
    color: #444;
    line-height: 1.9em;
    margin: 0;
    padding-top: 4px;
    flex: 1;
}

.lp-faq-a p a {
    color: #0068b7;
}

.lp-faq-q {
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px 8px 0 0;
}

.lp-faq-q:hover {
    background: #f0f5fb;
}

.lp-faq-q::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0068b7;
    font-size: 14px;
    margin-left: auto;
    padding-top: 8px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.lp-faq-item.is-open .lp-faq-q::after {
    transform: rotate(180deg);
}

/* ---------- 最終CTA ---------- */
.lp-final-cta {
    background: linear-gradient(135deg, #289df6 0%, #0068b7 100%);
    padding: 100px 0;
    text-align: center;
}

.lp-final-cta-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4em;
    margin-bottom: 24px;
}

.lp-final-cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2em;
    margin-bottom: 36px;
}

.lp-final-cta-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.lp-final-cta-points span {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.lp-final-cta-points span i {
    color: #79c7ff;
    margin-right: 6px;
}

/* ---------- レスポンシブ（タブレット：max-width 1000px） ---------- */
@media screen and (max-width: 1000px) {
    .lp-hero {
        padding: 80px 0 60px;
    }

    .lp-hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .lp-hero-text {
        max-width: 100%;
    }

    .lp-hero-title {
        font-size: 32px;
    }

    .lp-hero-cta {
        align-items: center;
    }

    .lp-hero-image {
        width: 260px;
    }

    .lp-application .section-title {
        font-size: 28px;
    }

    .lp-trouble-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-reason-item,
    .lp-reason-item--reverse {
        flex-direction: column;
        padding: 40px 30px;
    }

    .lp-reason-img {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    .lp-reason-num {
        font-size: 50px;
    }

    .lp-scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-tech-grid {
        gap: 16px;
    }

    .lp-tech-block {
        min-width: 160px;
    }

    .lp-flow-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lp-flow-step {
        max-width: 280px;
        min-width: 160px;
    }

    .lp-flow-arrow {
        display: none;
    }

    .lp-final-cta-title {
        font-size: 30px;
    }
}

/* ---------- レスポンシブ（スマートフォン：max-width 800px） ---------- */
@media screen and (max-width: 800px) {
    .lp-cta-btn {
        padding: 16px 30px;
    }

    .lp-cta-btn:after {
        right: 20px;
    }

    .lp-hero-title {
        font-size: 26px;
    }

    .lp-hero-sub {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .lp-cta-btn-lg {
        display: block;
        font-size: 16px;
        padding: 20px 20px;
        text-align: center;
        line-height: 1.3;
    }

    .lp-cta-btn-lg::after {
        right: 20px;
    }

    .lp-application .section-title {
        font-size: 22px;
    }

    /* .lp-section-lead は section-lead に統合済み（2026/06/22） */

    .lp-trouble-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .lp-trouble-item {
        padding: 24px 16px;
    }

    .lp-trouble-item p {
        font-size: 14px;
    }

    .lp-trouble-answer {
        padding: 24px 20px;
    }

    .lp-trouble-answer p {
        font-size: 18px;
        line-height: 1.8;
    }

    .lp-trouble-answer strong {
        font-size: 20px;
    }

    .lp-reason-body h3 {
        font-size: 20px;
    }

    .lp-scope-grid {
        grid-template-columns: 1fr;
    }

    .lp-tech-grid {
        flex-direction: column;
    }

    .lp-tech-block {
        max-width: 100%;
    }

    .lp-clients-list li {
        font-size: 13px;
        padding: 10px 20px;
    }

    .lp-flow-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-flow-step {
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 12px;
        padding: 20px 24px;
    }

    .lp-flow-step-num {
        flex: 0 0 100%;
        margin-bottom: 6px;
    }

    .lp-flow-step-icon {
        font-size: 28px;
        margin-bottom: 0;
        flex: 0 0 36px;
        flex-shrink: 0;
    }

    .lp-flow-step h3 {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
    }

    .lp-flow-step p {
        flex: 0 0 100%;
        padding-left: 48px;
        margin-top: 8px;
    }

    .lp-faq-q p {
        font-size: 15px;
    }

    .lp-final-cta-title {
        font-size: 24px;
        margin-bottom: 60px;
    }

    .lp-final-cta-sub {
        margin-bottom: 60px;
        line-height: 1.6em;
    }

    .lp-final-cta-points {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 1000px) {
    .inquiry th {
        width: 100%;
        display: block;
        vertical-align: top;
        padding-top: 20px;
        text-align: left;
    }

    .inquiry td {
        display: block;
        padding: 20px 0px;
        width: 100%;
    }

    input.text-input-01 {
        width: 100%;
    }

    textarea {
        width: 100%;
    }

    .inquiry-box {
        padding: 40px 20px;
        border: none;
    }
}

@media screen and (max-width: 800px) {
    input[type="submit"] {
        width: 80%;
    }

    .inquiry-box3 {
        padding: 0 20px 20px 20px;
    }

    .inquiry-box3 table {
        margin-left: 0px;
    }

    .inquiry-box3 th {
        display: block;
    }

    .inquiry-box3 th::after {
        content: ":";
        right: auto;
        padding-left: 6px;
    }

    .inquiry-box3 td {
        display: block;
        margin-bottom: 1.5em;
        padding: 0;
        margin-left: 1.3em;
        line-height: 1.6em;
    }
}

/* ========================================
   第2週タスク：受託開発の相談導線
   ======================================== */

/* ---------- TOP-01: MV 補足テキスト ---------- */
.mv-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .mv-note {
        font-size: 0.78rem;
    }
}

/* ---------- TOP-02: 課題別相談カード ---------- */
#top-issues {
    background: #fff;
    padding: 72px 0;
}

.top-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.top-issue-card {
    background: #f4f8fd;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.top-issue-card:hover {
    box-shadow: 0 4px 20px rgba(0, 104, 183, 0.12);
}

.top-issue-icon {
    font-size: 2rem;
    color: #0068b7;
}

.top-issue-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b1f79;
    line-height: 1.5;
}

.top-issue-card p {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.75;
    flex: 1;
}

.top-issue-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0068b7;
    padding: 10px 0;
    border-bottom: 2px solid #0068b7;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    margin-top: auto;
    line-height: var(--lh-tight);
}

.top-issue-card:hover .top-issue-btn {
    color: #1b1f79;
    border-color: #1b1f79;
}

.top-issues-note {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.top-issues-note a {
    color: #0068b7;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .top-issues-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ---------- APP-01: LP ヒーローバッジリスト ---------- */
.lp-hero-badges {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-hero-badges li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.lp-hero-badges li i {
    color: #79c7ff;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 1000px) {
    .lp-hero-badges {
        width: fit-content;
        margin: 40px auto;
    }
}

@media (max-width: 800px) {
    .lp-hero-badges li {
        font-size: 0.82rem;
    }
}

/* ---------- APP-02: LP 3つの相談領域 ---------- */
.lp-areas {
    background: #f0f5fb;
}

.section-title--lined {
    position: relative;
    padding-bottom: 16px;
}

.section-title--lined::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(to right, #289df6, #0068b7);
    border-radius: 2px;
    margin: 12px auto 0;
}

.lp-area-block {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 40px 44px;
    margin-top: 32px;
    scroll-margin-top: 80px;
    box-shadow: 0 4px 20px rgba(0, 104, 183, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-area-block::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #289df6, #0068b7);
}

.lp-area-block:hover {
    box-shadow: 0 8px 32px rgba(0, 104, 183, 0.15);
    transform: translateY(-2px);
}

.lp-area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eef6;
}

.lp-area-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lp-area-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #289df6, #0068b7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.lp-area-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ebf4ff, #d6eaf8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0068b7;
}

.lp-area-head-text {
    flex: 1;
}

.lp-area-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b1f79;
    margin-bottom: 6px;
    line-height: 1.4;
}

.lp-area-subtitle {
    font-size: 0.88rem;
    color: #5a7a99;
    line-height: 1.5;
}

.lp-area-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
    margin-bottom: 0;
}

.lp-area-list li {
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.lp-area-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0068b7;
    flex-shrink: 0;
    margin-top: 1px;
}

.lp-area-check i {
    font-size: 0.6rem;
    color: #fff;
}

.lp-area-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8eef6;
}

.lp-area-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: var(--fs-base);
    /* 15px 統一 */
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    font-weight: 600;
    transition: opacity 0.2s, gap 0.2s;
}

.lp-area-cta:hover {
    opacity: 0.85;
    gap: 12px;
}

@media (max-width: 1000px) {
    .lp-area-block {
        padding: 32px 32px;
    }
}

@media (max-width: 800px) {
    .lp-area-block {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .lp-area-header {
        align-items: flex-start;
    }

    .lp-area-icon-wrap {
        flex-direction: row;
        align-items: center;
    }

    .lp-area-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lp-area-title {
        font-size: 1.1rem;
    }

    .lp-area-cta {
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

/* ---------- APP-03: LP 開発実績 ---------- */
.lp-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.lp-works-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 104, 183, 0.08);
    border-left: 4px solid #0068b7;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-works-card:hover {
    box-shadow: 0 8px 28px rgba(0, 104, 183, 0.16);
    transform: translateY(-4px);
}

.lp-works-card-body {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-works-client {
    font-size: 0.75rem;
    color: #0068b7;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-works-client::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0068b7;
    flex-shrink: 0;
}

.lp-works-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b1f79;
    line-height: 1.5;
    margin-bottom: 14px;
}

.lp-works-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}

.lp-works-services li {
    font-size: 0.72rem;
    background: linear-gradient(135deg, #ebf4ff, #d6eaf8);
    color: #0068b7;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lp-works-excerpt {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

.lp-works-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0068b7;
    text-decoration: none;
    background: #f0f5fb;
    border-top: 1px solid #e0eaf5;
    transition: background 0.2s, color 0.2s;
}

.lp-works-card-link i {
    transition: transform 0.2s ease;
}

.lp-works-card-link:hover {
    background: #0068b7;
    color: #fff;
}

.lp-works-card-link:hover i {
    transform: translateX(4px);
}

.lp-works-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding: 48px 0;
}

.lp-works-more {
    margin-top: 40px;
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 2px solid #0068b7;
    color: #0068b7;
    border-radius: var(--radius-pill);
    /* 60px 統一 */
    font-size: var(--fs-base);
    /* 15px 統一 */
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, gap 0.2s;
}

.btn-outline i {
    transition: transform 0.2s ease;
}

.btn-outline:hover {
    background: #0068b7;
    color: #fff;
    gap: 14px;
}

.btn-outline:hover i {
    transform: translateX(3px);
}

@media (max-width: 1000px) {
    .lp-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .lp-works-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-works-card-body {
        padding: 22px 20px 16px;
    }

    .lp-works-card-link {
        padding: 12px 20px;
    }
}

/* ==============================================================================
   第3〜4週タスク：受託開発向けサービスページ3本
   page-system-renewal / page-saas-api-integration / page-business-application
   ============================================================================== */

/* ---------- sp-only（SP専用表示） ---------- */
@media screen and (min-width: 801px) {
    .sp-only {
        display: none;
    }
}

/* ---------- パンくず ---------- */
.breadcrumb {
    background: #f5f8fb;
    border-bottom: 1px solid #e0eaf5;
    padding: 12px 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--fs-sm);
    color: #888;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: '›';
    margin: 0 8px;
    color: #bbb;
    font-size: var(--fs-base);
    line-height: 1;
}

.breadcrumb-item:last-child::after {
    content: none;
}

.breadcrumb-item a {
    color: #0068b7;
    text-decoration: none;
    font-size: var(--fs-sm);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item[aria-current="page"] {
    color: #555;
}

@media screen and (max-width: 700px) {
    .breadcrumb-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/* ---------- 「対応できること」セクション ---------- */
.lp-support {
    background: #fff;
}

.lp-support .inner {
    background: none;
}

.lp-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 40px 0;
}

.lp-support-item {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border-top: 4px solid #0068b7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lp-support-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 104, 183, 0.15);
}

.lp-support-icon {
    font-size: 36px;
    color: #0068b7;
    margin-bottom: 16px;
    line-height: 1;
}

.lp-support-item .section-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #1b1f79;
    line-height: 1.5em;
    margin-bottom: 12px;
    text-align: left;
    padding: 0 0 12px;
}

.lp-support-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.85em;
}

@media screen and (max-width: 1000px) {
    .lp-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .lp-support {
        padding: 60px 0;
    }

    .lp-support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-support-item {
        padding: 28px 22px;
    }
}

/* ---------- 「イントフロートが支援する範囲」セクション（新規3ページ用） ----------
   既存の .lp-scope（白背景カードグリッド）を上書きし、ダーク背景チェックリストに変更 */
.lp-system-renewal .lp-scope,
.lp-saas-api-integration .lp-scope,
.lp-business-application .lp-scope,
.lp-maintenance .lp-scope,
.recruit-lp .lp-scope {
    background: #1b1f79;
    padding: 100px 0;
}

.lp-system-renewal .lp-scope .inner,
.lp-saas-api-integration .lp-scope .inner,
.lp-business-application .lp-scope .inner,
.lp-maintenance .lp-scope .inner,
.recruit-lp .lp-scope .inner {
    background: none;
}

/* チェックリスト形式 (.lp-scope-list 内) */
.lp-scope-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.lp-scope-list .lp-scope-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 20px;
    border-bottom: none;
    border-left: 3px solid #79c7ff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.2s;
    box-shadow: none;
}

.lp-scope-list .lp-scope-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: none;
    box-shadow: none;
}

.lp-scope-list .lp-scope-item i {
    color: #79c7ff;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-scope-list .lp-scope-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 1000px) {
    .lp-scope-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {

    .lp-system-renewal .lp-scope,
    .lp-saas-api-integration .lp-scope,
    .lp-business-application .lp-scope {
        padding: 60px 0;
    }

    .lp-scope-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-scope-list .lp-scope-item {
        padding: 16px 18px;
    }
}

/* ---------- 関連サービス・ページセクション ---------- */
.lp-related {
    background: #f5f8fb;
    padding: 80px 0;
}

.lp-related .inner {
    background: none;
}

.lp-related-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.lp-related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 18px 22px;
    text-decoration: none;
    color: #0068b7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid #dce8f7;
    box-shadow: 0 2px 8px rgba(0, 104, 183, 0.06);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lp-related-link i {
    font-size: 14px;
    flex-shrink: 0;
    color: #0068b7;
    transition: transform 0.2s;
}

.lp-related-link:hover {
    background: #ebf4ff;
    box-shadow: 0 4px 16px rgba(0, 104, 183, 0.12);
    transform: translateY(-2px);
}

.lp-related-link:hover i {
    transform: translateX(4px);
}

@media screen and (max-width: 1000px) {
    .lp-related-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .lp-related {
        padding: 60px 0;
    }

    .lp-related-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-related-link {
        padding: 16px 18px;
    }
}

/* ---------- LP相談領域ブロックの詳細リンク（page-lp-application.php 用） ---------- */
.lp-area-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.lp-area-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: var(--fs-sm);
    /* 13px */
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid #0068b7;
    color: #0068b7;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, gap 0.2s;
    line-height: var(--lh-tight);
}

.lp-area-detail-link:hover {
    background: #0068b7;
    color: #fff;
    gap: 12px;
}

@media (max-width: 800px) {
    .lp-area-footer-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-area-detail-link {
        justify-content: center;
        text-align: center;
    }
}

/* ==============================================================================
        募集ページ（/recruit/）
============================================================================== */

/* ---------- 会社概要カード（この仕事の概要） ---------- */
.recruit-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.recruit-intro-text p {
    font-size: 15px;
    line-height: 2em;
    color: #444;
    margin-bottom: 1.4em;
}

.recruit-intro-text p:last-child {
    margin-bottom: 0;
}

.recruit-company-card {
    background: #f5f8fb;
    border-radius: 16px;
    padding: 32px 28px;
    border-top: 4px solid #0068b7;
}

.recruit-company-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #1b1f79;
    margin-bottom: 20px;
}

.recruit-company-card dl {
    margin: 0;
}

.recruit-company-card dt {
    font-size: 13px;
    font-weight: bold;
    color: #0068b7;
    margin-top: 16px;
}

.recruit-company-card dt:first-child {
    margin-top: 0;
}

.recruit-company-card dd {
    font-size: 14px;
    color: #333;
    line-height: 1.7em;
    margin: 4px 0 0;
}

/* ---------- 汎用シンプルリスト（募集背景・将来業務・セキュリティ等） ---------- */
.recruit-simple-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.recruit-simple-list li {
    font-size: 16px;
    color: #333;
    line-height: 1.6em;
    padding-left: 1.4em;
    position: relative;
    font-weight: bold;
    letter-spacing: var(--ls-wide);
}

.recruit-simple-list li::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0068b7;
    position: absolute;
    left: 0;
}

.recruit-simple-list--icon li {
    padding-left: 1.8em;
}

.recruit-simple-list--icon li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #0068b7;
}

.recruit-simple-list--icon li::before {
    content: none;
}

.recruit-background p,
.recruit-security p {
    font-size: 16px;
    line-height: 2em;
    color: #444;
}

/* ---------- ミッションセクション ---------- */
.recruit-mission-box p {
    font-size: 22px !important;
}

.recruit-mission-sub {
    max-width: 820px;
    margin: 32px auto 0;
    font-size: 16px;
    line-height: 2em;
    color: #444;
    text-align: center;
}

/* ---------- 代表との役割分担 ---------- */
.recruit-role-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.recruit-role-col {
    border-radius: 16px;
    padding: 32px 28px;
}

.recruit-role-col--rep {
    background: #ebf0f7;
    border-top: 4px solid #1b1f79;
}

.recruit-role-col--asst {
    background: #eef7f0;
    border-top: 4px solid #0068b7;
}

.recruit-role-col h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1b1f79;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: var(--lh-tight);
}

.recruit-role-col--asst h3 {
    color: #0068b7;
}

.recruit-role-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruit-role-col li {
    font-size: 16px;
    color: #333;
    line-height: 1.7em;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.recruit-role-col li:last-child {
    border-bottom: none;
}

/* ---------- 業務対象外の注記 ---------- */
.recruit-out-of-scope {
    margin-top: 36px;
    font-size: 14px;
    color: var(--c-text-sub);
    line-height: var(--lh-tight);
    text-align: center;
}

/* ---------- 仕事の具体例（タイムライン） ---------- */
.recruit-timeline {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 760px;
    counter-reset: none;
}

.recruit-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px dashed #ddd;
}

.recruit-timeline li:last-child {
    border-bottom: none;
}

.recruit-timeline-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0068b7;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "mgen";
}

.recruit-timeline p {
    font-size: 16px;
    color: #333;
    line-height: var(--lh-base);
    margin: 0;
    padding-top: 4px;
}

/* ---------- 生成AI活用の注記 ---------- */
.recruit-ai-note {
    max-width: 900px;
    margin: 32px auto 0;
    font-size: 16px;
    line-height: 2em;
    color: rgba(255, 255, 255, 0.9);
}

/* ---------- 契約開始後の進め方 ---------- */
.recruit-onboarding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.recruit-onboarding-item {
    background: #f5f8fb;
    border-radius: 16px;
    padding: 30px 26px;
    border-bottom: 4px solid #0068b7;
}

.recruit-onboarding-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1b1f79;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recruit-onboarding-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.8em;
}

/* ---------- 歓迎スキル ---------- */
.recruit-nice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.recruit-nice-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.recruit-nice-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0068b7;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recruit-nice-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.8em;
}

.recruit-unquestioned {
    margin-top: 32px;
    font-size: 16px;
    color: #666;
    line-height: 1.9em;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- 向いている方／向いていない方 ---------- */
.recruit-fit-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.recruit-fit-col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.recruit-fit-col--yes {
    border-top: 4px solid #0068b7;
}

.recruit-fit-col--no {
    border-top: 4px solid #999;
}

.recruit-fit-col h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recruit-fit-col--yes h3 {
    color: #0068b7;
}

.recruit-fit-col--yes h3 i {
    color: #0068b7;
}

.recruit-fit-col--no h3 {
    color: #777;
}

.recruit-fit-col--no h3 i {
    color: #bbb;
}

.recruit-fit-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruit-fit-col li {
    font-size: 16px;
    color: #333;
    line-height: 1.7em;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.recruit-fit-col li:last-child {
    border-bottom: none;
}

/* ---------- 大切にしていること ---------- */
.recruit-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.recruit-values-item {
    background: #f5f8fb;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
}

.recruit-values-num {
    font-size: 32px;
    font-weight: bold;
    color: #0068b7;
    font-family: "mgen";
    margin-bottom: 12px;
    line-height: 1;
}

.recruit-values-item p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.6em;
    margin: 0;
}

/* ---------- 働く環境・使用ツール ---------- */
.recruit-tool-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 36px auto 28px;
    width: fit-content;
    justify-content: center;
}

.recruit-tool-grid span {
    background: #ebf0f7;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: bold;
    color: #1b1f79;
}

.recruit-tool-grid span i {
    color: #0068b7;
    margin-right: 6px;
}

.recruit-env-note {
    width: fit-content;
    margin: 0 auto;
}

.recruit-env-note p {
    font-size: 16px;
    color: #555;
    line-height: 1.9em;
    margin-bottom: 8px;
}

.recruit-env-note p i {
    color: #0068b7;
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

/* ---------- 有償トライアル ---------- */
.recruit-trial-box {
    background: #f5f8fb;
    border-radius: 16px;
    padding: 36px 36px 40px;
    margin-top: 32px;
}

.recruit-trial-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.recruit-trial-meta p {
    font-size: 16px;
    font-weight: bold;
    color: #0068b7;
    margin: 0;
}

.recruit-trial-meta p i {
    margin-right: 8px;
}

.recruit-trial-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.9em;
    margin-bottom: 1em;
}

.recruit-trial-box p:last-child {
    margin-bottom: 0;
}

/* ---------- 応募時に提出する情報・資料 ---------- */
.recruit-apply-list {
    counter-reset: apply-counter;
    list-style: none;
    padding: 0;
    margin: 36px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
}

.recruit-apply-list li {
    counter-increment: apply-counter;
    font-size: 16px;
    color: #333;
    line-height: 28px;
    padding-left: 52px;
    position: relative;
}

.recruit-apply-list li::before {
    content: counter(apply-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0068b7;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-apply-note {
    font-size: 14px;
    color: #666;
    line-height: 1.9em;
}

/* ---------- 代表者メッセージ ---------- */
.recruit-message-section .lp-reason-list {
    display: none;
    /* 未使用要素の安全策（このセクションでは不使用） */
}

.recruit-message-box {
    max-width: 820px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 44px 48px;
}

.recruit-message-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2.1em;
    margin-bottom: 1.4em;
}

.recruit-message-box p:last-of-type {
    margin-bottom: 0;
}

.recruit-message-sign {
    text-align: right;
    font-size: 16px !important;
    font-weight: bold;
    color: #fff !important;
    margin-top: 1.6em !important;
}

/* ---------- レスポンシブ（タブレット） ---------- */
@media screen and (max-width: 1000px) {
    .recruit-intro-grid {
        grid-template-columns: 1fr;
    }

    .recruit-role-split,
    .recruit-onboarding-grid,
    .recruit-nice-grid,
    .recruit-fit-split {
        grid-template-columns: 1fr;
    }

    .recruit-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recruit-apply-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- レスポンシブ（スマートフォン） ---------- */
@media screen and (max-width: 800px) {
    .recruit-simple-list {
        grid-template-columns: 1fr;
    }

    .recruit-company-card,
    .recruit-role-col,
    .recruit-onboarding-item,
    .recruit-nice-item,
    .recruit-fit-col {
        padding: 24px 20px;
    }

    .recruit-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .recruit-values-item {
        padding: 24px 16px;
    }

    .recruit-trial-box {
        padding: 28px 22px 32px;
    }

    .recruit-trial-meta {
        flex-direction: column;
        gap: 12px;
    }

    .recruit-message-box {
        padding: 30px 24px;
    }

    .recruit-timeline li {
        gap: 14px;
    }
}

/* ==============================================================================
   WordPress 保守引継ぎサービス
   ============================================================================== */
/* Hero stats */
.wp-handover-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 24px 0 32px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 20px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wp-handover-stat {
    flex: 1;
    text-align: center;
}

.wp-handover-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    font-family: "mgen";
    line-height: 1;
    margin-bottom: 6px;
}

.wp-handover-stat-unit {
    font-size: 14px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

.wp-handover-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.wp-handover-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.wp-handover-hero-note {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.wp-handover-hero-note i {
    color: #79c7ff;
    margin-right: 6px;
}

.wp-handover-lp .wp-handover-hero-copy {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 0 12px;
}

.wp-handover-hero-visual {
    width: 360px;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
}

.wp-handover-visual-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 210px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    font-size: 64px;
}

.wp-handover-visual-arrow {
    font-size: 22px;
    color: #bfe5ff;
}

.wp-handover-hero-visual p {
    font-weight: 700;
    margin-top: 22px;
}

.wp-handover-pricing {
    background: #1b1f79;
}

.wp-handover-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.wp-handover-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 36px;
    color: #333;
    border-top: 5px solid #79c7ff;
}

.wp-handover-price-card--primary {
    border-top-color: #289df6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.wp-handover-price-card h3 {
    color: #1b1f79;
    font-size: 23px;
    margin-bottom: 14px;
}

.wp-handover-price-label {
    color: #0068b7;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.wp-handover-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #0068b7;
    margin-bottom: 18px;
}

.wp-handover-price strong {
    font-size: 42px;
    line-height: 1;
}

.wp-handover-price span {
    font-size: 14px;
}

.wp-handover-price-card>p:last-child {
    color: #555;
    font-size: 14px;
    line-height: 1.85;
}

.wp-handover-price-note {
    display: flex;
    gap: 14px;
    max-width: 850px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
}

.wp-handover-price-note i {
    color: #79c7ff;
    font-size: 22px;
    margin-top: 4px;
}

.wp-handover-price-note p {
    margin: 0;
}

.wp-handover-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.wp-handover-eligibility-card {
    border-radius: 16px;
    padding: 32px;
    background: #f5f8fb;
    border-top: 5px solid #0068b7;
}

.wp-handover-eligibility-card--no {
    border-top-color: #999;
}

.wp-handover-eligibility-card h3 {
    color: #0068b7;
    font-size: 19px;
    margin-bottom: 18px;
}

.wp-handover-eligibility-card--no h3 {
    color: #666;
}

.wp-handover-eligibility-card h3 i {
    margin-right: 7px;
}

.wp-handover-eligibility-card ul,
.wp-handover-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-handover-eligibility-card li {
    border-bottom: 1px dotted #d2dce6;
    color: #444;
    line-height: 1.6;
    padding: 9px 0 9px 22px;
    position: relative;
}

.wp-handover-eligibility-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #0068b7;
    left: 0;
    position: absolute;
}

.wp-handover-eligibility-card--no li::before {
    content: '\f068';
    color: #999;
}

.wp-handover-eligibility-note {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 28px auto 0;
    text-align: center;
}

.wp-handover-flow {
    background: #f5f8fb;
}

.wp-handover-flow-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.wp-handover-flow-item {
    background: #fff;
    border-radius: 14px;
    padding: 26px 20px;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.wp-handover-flow-num {
    color: #79c7ff;
    font-family: 'mgen';
    font-size: 28px;
    font-weight: 700;
}

.wp-handover-flow-icon {
    color: #0068b7;
    font-size: 25px;
    margin: 12px 0;
}

.wp-handover-flow-item h3 {
    color: #1b1f79;
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.wp-handover-flow-item p {
    color: #555;
    font-size: 13px;
    line-height: 1.75;
}

.wp-handover-maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.wp-handover-maintenance-item {
    background: #f5f8fb;
    border-radius: 14px;
    padding: 28px 24px;
}

.wp-handover-maintenance-item>i {
    color: #0068b7;
    font-size: 27px;
    margin-bottom: 14px;
}

.wp-handover-maintenance-item h3 {
    color: #1b1f79;
    font-size: 18px;
    margin-bottom: 9px;
}

.wp-handover-maintenance-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.wp-handover-rollback {
    display: flex;
    gap: 16px;
    background: #ebf4ff;
    border-radius: 14px;
    margin-top: 28px;
    padding: 26px 30px;
}

.wp-handover-rollback>i {
    color: #0068b7;
    font-size: 24px;
}

.wp-handover-rollback h3 {
    color: #1b1f79;
    font-size: 18px;
    margin-bottom: 8px;
}

.wp-handover-rollback p {
    color: #444;
    line-height: 1.8;
}

.wp-handover-lp .wp-handover-pricing>.inner,
.lp-maintenance .wp-handover-pricing>.inner {
    background: transparent;
}

.wp-handover-scope-compare {
    background: #1b1f79;
    border-radius: 16px;
    margin-top: 34px;
    padding: 34px 36px;
}

.wp-handover-scope-compare-label {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    text-align: center;
}

.wp-handover-exclusion-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
    margin: 24px auto 0;
    max-width: 980px;
}

.wp-handover-exclusion-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    padding: 13px 0 13px 22px;
    position: relative;
}

.wp-handover-exclusion-list li::before {
    content: '\f00d';
    color: #79c7ff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: 0;
    position: absolute;
}

/* ---------- サービス全体像（3ステップ） ---------- */
.wp-handover-overview,
.wp-handover-eligibility,
.wp-handover-maintenance {
    background: #f5f8fb;
}

.wp-handover-overview-grid {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    margin-top: 42px;
}

.wp-handover-overview-step {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    padding: 30px 22px;
    text-align: center;
}

.wp-handover-overview-num {
    background: #0068b7;
    border-radius: 50%;
    color: #fff;
    font-family: 'mgen';
    font-size: 18px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto 12px;
    width: 32px;
}

.wp-handover-overview-step>i {
    color: #0068b7;
    display: block;
    font-size: 26px;
    margin: 20px auto;
}

.wp-handover-overview-step h3 {
    color: #1b1f79;
    font-size: 17px;
    margin-bottom: 8px;
}

.wp-handover-overview-price {
    color: #0068b7;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wp-handover-overview-price span {
    font-size: 12px;
    font-weight: 400;
}

.wp-handover-overview-step>p:last-child {
    color: #555;
    font-size: 13px;
    line-height: 1.75;
}

.wp-handover-overview-arrow {
    color: #a9c8e6;
    font-size: 20px;
    text-align: center;
}

.wp-handover-overview-note {
    background: #eaf2fb;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin: 30px auto 0;
    max-width: 900px;
    padding: 18px 22px;
    text-align: center;
}

.wp-handover-overview-note i {
    color: #0068b7;
    margin-right: 6px;
}

/* ---------- 記入チェックリスト・中盤CTA ---------- */
.wp-handover-checklist {
    background: #fff;
    border-radius: 16px;
    margin-top: 40px;
    padding: 30px 34px;
}

.wp-handover-checklist h3 {
    color: #1b1f79;
    font-size: 17px;
    margin-bottom: 16px;
}

.wp-handover-checklist h3 i {
    color: #0068b7;
    margin-right: 8px;
}

.wp-handover-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-handover-checklist li {
    align-items: center;
    border-bottom: 1px dotted #d2dce6;
    color: #444;
    display: flex;
    gap: 10px;
    line-height: 1.6;
    padding: 10px 0;
}

.wp-handover-checklist li:last-child {
    border-bottom: none;
}

.wp-handover-checklist-badge {
    background: #ccd6e0;
    border-radius: 4px;
    color: #555;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
}

.wp-handover-checklist-badge--required {
    background: #0068b7;
    color: #fff;
}

.wp-handover-checklist-note {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
    margin: 16px 0 0;
}

.wp-handover-mid-cta {
    align-items: center;
    background: #eaf2fb;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    padding: 26px 32px;
}

.wp-handover-mid-cta p {
    color: #1b1f79;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.wp-handover-guarantee {
    background: #f5f8fb;
}

.wp-handover-guarantee .inner {
    background: #f5f8fb;
}

.wp-handover-guarantee-box {
    align-items: flex-start;
    background: #fff;
    border-left: 6px solid #0068b7;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, .07);
    display: flex;
    gap: 24px;
    margin: auto;
    max-width: 920px;
    padding: 38px 42px;
}

.wp-handover-guarantee-icon {
    color: #0068b7;
    font-size: 38px;
    padding-top: 5px;
}

.wp-handover-guarantee-label {
    color: #0068b7;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wp-handover-guarantee-box h2 {
    color: #1b1f79;
    font-size: 28px;
    line-height: 1.45;
    margin-bottom: 18px;
}

.wp-handover-guarantee-box p,
.wp-handover-guarantee-box li {
    color: #444;
    line-height: 1.85;
}

.wp-handover-guarantee-box ol {
    margin-top: 15px;
    padding-left: 24px;
}

.wp-handover-final-cta {
    background: linear-gradient(135deg, #289df6 0%, #0068b7 100%);
}

@media screen and (max-width: 1000px) {
    .wp-handover-flow-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-handover-maintenance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-handover-exclusion-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-handover-hero-visual {
        width: 280px;
    }

    .wp-handover-overview-grid {
        grid-template-columns: 1fr;
    }

    .wp-handover-overview-arrow {
        transform: rotate(90deg);
    }

    .wp-handover-eligibility-card h3 {
        font-size: 17px;
    }
}

@media screen and (max-width: 800px) {
    .wp-handover-stats {
        padding: 16px 16px;
        gap: 0;
    }

    .wp-handover-stat-num {
        font-size: 20px;
    }

    .wp-handover-stat-unit {
        font-size: 12px;
    }

    .wp-handover-stat-label {
        font-size: 11px;
    }

    .wp-handover-stat-divider {
        height: 32px;
    }

    .wp-handover-hero-copy {
        font-size: 18px !important;
    }

    .wp-handover-hero-visual {
        width: 220px;
    }

    .wp-handover-visual-ring {
        min-height: 130px;
        font-size: 42px;
        gap: 10px;
    }

    .wp-handover-price-grid,
    .wp-handover-eligibility-grid,
    .wp-handover-maintenance-grid {
        grid-template-columns: 1fr;
    }

    .wp-handover-price-card {
        padding: 28px 24px;
    }

    .wp-handover-flow-list {
        grid-template-columns: 1fr;
    }

    .wp-handover-exclusion-list {
        grid-template-columns: 1fr;
    }

    .wp-handover-guarantee-box {
        display: block;
        padding: 28px 24px;
    }

    .wp-handover-guarantee-icon {
        margin-bottom: 16px;
    }

    .wp-handover-rollback {
        display: block;
        padding: 24px;
    }

    .wp-handover-rollback>i {
        display: block;
        margin-bottom: 12px;
    }

    .wp-handover-scope-compare {
        padding: 26px 22px;
    }

    .wp-handover-checklist {
        padding: 24px 22px;
    }

    .wp-handover-checklist li {
        align-items: flex-start;
    }

    .wp-handover-mid-cta {
        display: block;
        padding: 24px 22px;
        text-align: center;
    }

    .wp-handover-mid-cta p {
        margin-bottom: 16px;
    }
}
