        /* ==========================================================================
           1. CSS RESET & GLOBAL VARIABLES
           ========================================================================== */
        :root {
            --color-brand-orange: #FF7A00;
            --color-brand-orange-hover: #E26D00;
            --color-brand-navy: #005088;
            --color-brand-sky: #E6F0FA;
            --color-brand-green: #11CAA0;
            --color-brand-dark: #1A2E40;
            --color-slate-50: #f8fafc;
            --color-slate-100: #f1f5f9;
            --color-slate-200: #e2e8f0;
            --color-slate-400: #94a3b8;
            --color-slate-500: #64748b;
            --color-slate-600: #475569;
            --color-slate-700: #334155;
            --color-slate-800: #1e293b;
            --font-sans: 'Noto Sans JP', sans-serif;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(255, 122, 0, 0.15), 0 10px 10px -5px rgba(255, 122, 0, 0.1);
        }

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

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

        body {
            font-family: var(--font-sans);
            font-feature-settings: "palt" 1;
            text-align: justify;
            letter-spacing: .05rem;
            color: var(--color-slate-800);
            background-color: var(--color-slate-50);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .target-area {
            color: #FF0004 !important;
            font-weight: bold;
        }
        .pc {
            display: block;
        }
        .sp {
            display: none;
        }
        @media (max-width: 767px) {
            .pc {
                display: none !important;
            }
            .sp {
                display: block;
            }
        }
        @media (max-width: 1024px) {
            .not-tab {
                display: none !important;
            }
        }

        /* ==========================================================================
           2. COMMON COMPONENTS & UTILITIES
           ========================================================================== */
        .container {
            width: 100%;
            max-width: 1280px;
            margin-right: auto;
            margin-left: auto;
            padding-right: 1rem;
            padding-left: 1rem;
        }
        .site-header .container ,
        .hero-section .container {
            max-width: none;
        }
        @media (min-width: 640px) { .container { padding-right: 1.5rem; padding-left: 1.5rem; } }
        @media (min-width: 1024px) { .container { padding-right: 2rem; padding-left: 2rem; } }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 700;
            border-radius: 9999px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

        .btn-orange {
            background-color: var(--color-brand-orange);
            color: #ffffff;
            box-shadow: 0 10px 15px -3px rgba(255, 122, 0, 0.25);
            padding: 1rem;
        }
        .btn-orange:hover {
            background-color: var(--color-brand-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -3px rgba(255, 122, 0, 0.35);
        }

        .btn-outline-orange {
            background-color: #ffffff;
            color: var(--color-brand-orange);
            border-color: var(--color-brand-orange);
            font-size: 1.5rem !important;
        }
        .btn-outline-orange:hover {
            background-color: var(--color-slate-50);
            transform: translateY(-2px);
        }
        .btn-outline-navy {
            background-color: #ffffff;
            color: var(--color-brand-navy);
            border-color: var(--color-brand-navy);
        }
        .btn-outline-navy:hover {
            background-color: var(--color-slate-50);
            transform: translateY(-2px);
        }

        /* Grid utilities (Mobile First) */
        .grid-1 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
        .grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
        .grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
        .grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        .grid-5 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

        @media (min-width: 768px) {
            .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
            .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
            .grid-5 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        }
        @media (min-width: 1024px) {
            .grid-5 { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
        }

        /* Section Header Layout */
        .section-header {
            text-align: center;
            max-width: 768px;
            margin: 0 auto 4rem auto;
        }
        .section-tag {
            color: var(--color-brand-orange);
            font-weight: 900;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-top: 0.5rem;
            line-height: 1.25;
        }
        .section-title__about {
            text-align: center;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            justify-content: center; gap: 0.5rem;
        }

        @media (min-width: 640px) {
            .section-title { font-size: 2.25rem; }
        }
        .section-subtitle {
            color: var(--color-slate-500);
            margin-top: 0.75rem;
            font-weight: 500;
        }

        /* ==========================================================================
           3. SPECIAL TRIMMING & CROP FOR ILLUSTRATIONS
           ========================================================================== */
        .crop-img-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
        
        /* 4-panel image crop settings */
        .crop-scene-1 { /* Elderly help */
            object-fit: cover;
            object-position: 33% 0%;
            transform: scale(1.0);
        }
        .crop-scene-2 { /* Tidying closet */
            object-fit: cover;
/*
            object-position: 100% 0%;
            transform: scale(1.5);
*/
        }
        .crop-scene-3 { /* Sweeping room */
            object-fit: cover;
            object-position: 0% 100%;
            transform: scale(1.0);
        }
        .crop-scene-4 { /* Truck loading */
            object-fit: cover;
/*
            object-position: 70% 100%;
            transform: scale(1.7);
*/
        }

        /* Hero visual zoom setting */
        .crop-hero {
            object-fit: cover;
            object-position: 20% 40%;
        }

        /* ==========================================================================
           4. SECTIONS INDIVIDUAL STYLES
           ========================================================================== */
        
        /* --- HEADER --- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: var(--color-brand-navy);
/*            background-color: rgba(255, 255, 255, 0.95);*/
            backdrop-filter: blur(8px);
            box-shadow: var(--shadow-sm);
            border-b: 1px solid var(--color-slate-100);
        }
        .header-wrap {
            height: 5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .header-logo {
            display: flex;
            flex-direction: column;
        }
        .logo-sub {
            font-size: 1.0rem;
            font-weight: 700;
            color: var(--color-brand-orange);
            letter-spacing: 0.1em;
        }
        @media (max-width: 767px) {
            .logo-sub {
                font-size: 0.75rem;
            }
        }
        .logo-main {
            font-size: 1.25rem;
            font-weight: 900;
            color: #fff;
/*            color: var(--color-brand-navy);*/
            letter-spacing: -0.02em;
        }
        @media (min-width: 640px) {
            .logo-main { font-size: 1.5rem; }
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .header-phone {
            display: none;
            flex-direction: column;
            align-items: flex-end;
        }
        @media (min-width: 768px) {
            .header-phone { display: flex; }
        }
        .phone-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-slate-100);
            margin: .5rem 0 -.5rem
        }
        .phone-number {
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--color-brand-orange);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .header-btn {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
        }
        @media (max-width: 767px) {
            .header-btn {
                padding: 0.3rem 0.5rem;
                font-size: .75rem;
            }
        }

        /* --- HERO (全画面背景イラスト版) --- */
        .hero-section {
            position: relative;
            background-image: url('../img/junk-removal/img_hero.jpg');
            background-size: cover;
            background-position: 58% center;
            background-repeat: no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
            overflow: hidden;
        }
        @media (min-width: 1024px) {
            .hero-section {
                padding: 6rem 0 0;
                min-height: 85vh;
                background-position: center center; /* PCでは右側のキャラクターやトラックが映えるように配置 */
            }
            .hero-content {
            }
        }
        /* hero-section タブレット対応 ------------------------------------------------- */
        @media (max-width: 1023px) {
            .hero-section {
                position: relative;
                overflow: visible;
            }
            .hero-content {
                position: absolute;
                bottom: -24rem;
                left: 0;
                right: 0;
                padding: 0 1rem;
            }
            .troubles-section {
/*                margin-top: 16rem;*/
            }
            .hero-overlay {
                background: none;
            }
        }
        /* hero-section スマホ対応 ------------------------------------------------- */
        @media (max-width: 767px) {
            .hero-section {
                min-height: 45vh;
                position: relative;
                overflow: visible;
            }
            .hero-content {
                position: absolute;
                bottom: -36rem;
                left: 0;
                right: 0;
                padding: 0 1rem;
            }
            .troubles-section {
                margin-top: 26rem;
            }
            .hero-overlay {
                background: none;
            }
        }

        /* テキストの読みやすさを担保するホワイトグラデーション */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.1) 100%);
            z-index: 1;
        }
        @media (max-width: 1023px) {
            .hero-overlay {
                /* スマホでは文字が埋もれないよう、全体に高濃度のホワイトフェードを上から重ねる */
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0.8) 100%);
            }
        }

        @media (max-width: 767px) {
            .hero-overlay {
                /* スマホでは文字が埋もれないよう、全体に高濃度のホワイトフェードを上から重ねる */
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.8) 100%);
            }
        }

        .hero-container-relative {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .hero-grid {
            display: grid;
/*            grid-template-columns: 1fr;*/
            gap: 3rem;
            align-items: center;
        }
        @media (min-width: 1024px) {
/*            .hero-grid { grid-template-columns: repeat(12, 1fr); }*/
        }
        .hero-content {
            text-align: center;
            z-index: 10;
            margin-top: 100px;
            
        }
        @media (min-width: 1024px) {
            .hero-content {
                grid-column: span 8; /* 右側のイラストスペースを確保するため、幅を8カラムに調整 */
                text-align: left;
            }
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid #ffedd5;
            color: var(--color-brand-orange);
            font-size: 0.875rem;
            font-weight: 900;
            box-shadow: var(--shadow-sm);
            margin: 0 auto 1.5rem auto;
        }
        @media (min-width: 1024px) {
            .hero-tag { margin-left: 0; margin-right: 0; }
        }
        .hero-ping {
            display: inline-block;
            width: 0.625rem;
            height: 0.625rem;
            background-color: var(--color-brand-orange);
            border-radius: 50%;
            position: relative;
        }
        .hero-ping::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: var(--color-brand-orange);
            border-radius: 50%;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        @keyframes ping {
            75%, 100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }
        .hero-title {
            font-size: 1.875rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 640px) {
            .hero-title { font-size: 2.5rem; }
        }
        @media (min-width: 1024px) {
            .hero-title { font-size: 3rem; }
        }
        .hero-title span {
            color: var(--color-brand-orange);
        }
        .hero-title__eyebrow {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        .hero-desc {
/*            max-width: 40rem;*/
            margin: 0 auto 2rem auto;
        }
        .hero-desc span {
/*            display: inline;*/
            background-color: var(--color-brand-navy);
            color: #fff;
            font-size: 1.125rem;
            font-weight: 700;
            padding: 0 .5rem;
            line-height: 2;
        }
        @media (max-width: 767px) {
            .hero-desc {
                margin-bottom: 1rem;
            }
            .hero-desc span {
                font-size: .75rem;
            }
        }
        @media (min-width: 1024px) {
            .hero-desc { margin-left: 0; margin-right: 0; }
        }
        .hero-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            max-width: 26rem;
            margin: 0 auto 2.5rem auto;
        }
        @media (min-width: 1024px) {
            .hero-badges { margin-left: 0; margin-right: 0; }
        }
        @media (max-width: 767px) {
            .hero-badges {
                margin: 0 auto 1rem auto;
            }
        }
        .badge-card {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 0.75rem;
            border-radius: 1rem;
            border: 2px solid var(--color-brand-orange);
/*            border: 1px solid var(--color-slate-100);*/
            box-shadow: var(--shadow-sm);
            text-align: center;
        }
        .badge-value {
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--color-brand-orange);
        }
        @media (max-width: 767px) {
            .badge-card {
                padding: 0.3rem;
            }
        }
        @media (min-width: 640px) {
            .badge-value { font-size: 1.75rem; }
        }
        .badge-card:nth-child(2) .badge-value {
/*            color: var(--color-brand-navy);*/
        }
        .badge-card:nth-child(3) .badge-value {
/*            color: var(--color-brand-green);*/
        }
        .badge-label {
            font-size: 0.6875rem;
            color: var(--color-slate-500);
            font-weight: 700;
            margin-top: 0.25rem;
        }
        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 28rem;
            margin: 0 auto;
        }
        @media (min-width: 640px) {
            .hero-cta-group {
                flex-direction: row;
                max-width: none;
                justify-content: center;
            }
        }
        @media (min-width: 1024px) {
            .hero-cta-group { justify-content: flex-start; }
        }
        .hero-cta-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }
        @media (min-width: 640px) {
            .hero-cta-btn { width: auto; }
        }
        @media (max-width: 767px) {
            .hero-cta-btn {
                padding: .5rem 1rem;
            }
        }
        /* --- TROUBLES (PAIN POINTS) --- */
        .troubles-section {
            padding: 4rem 0;
            background-color: #ffffff;
        }
        @media (min-width: 640px) {
            .troubles-section { padding: 6rem 0; }
        }
        .pain-card {
            background-color: var(--color-slate-200);
            padding: 2rem;
            border-radius: 1.5rem;
            border: 1px solid var(--color-slate-100);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        .pain-card:hover {
            background-color: rgba(255, 122, 0, 0.02);
            border-color: rgba(255, 122, 0, 0.1);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .pain-header {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .pain-num {
/*            width: 3rem;
            height: 3rem;
            border-radius: 1rem;
            background-color: #ffedd5;*/
            color: var(--color-brand-orange);
            display: flex;
            align-items: center;
/*            justify-content: center;*/
            font-weight: 900;
            font-size: 3.25rem;
            margin-right: 1rem;
        }
        .pain-header__flex{
            display: flex;
        }
        .pain-title {
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            line-height: 1.4;
        }
        .pain-text {
            color: var(--color-slate-600);
            margin-top: 1rem;
            font-size: 0.9375rem;
        }

        /* Banner Style */
        .solution-banner {
            margin-top: 4rem;
            background: linear-gradient(to right, var(--color-brand-navy), #1d3557);
            border-radius: 2rem;
            overflow: hidden;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        .banner-grid {
            display: grid;
            grid-template-columns: 1fr;
        }
        @media (min-width: 1024px) {
            .banner-grid { grid-template-columns: repeat(12, 1fr); }
        }
        .banner-content {
            padding: 2.5rem;
        }
        @media (min-width: 640px) { .banner-content { padding: 3rem; } }
        @media (min-width: 1024px) {
            .banner-content {
                grid-column: span 7;
                padding: 4rem;
            }
        }
        .banner-tag {
            display: inline-block;
            background-color: var(--color-brand-orange);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 900;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }
        .banner-title {
            font-size: 1.75rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 640px) {
            .banner-title { font-size: 2.25rem; }
        }
        .banner-text {
            color: #f1f5f9;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        @media (min-width: 640px) {
            .banner-text { font-size: 1.125rem; }
        }
        .banner-btn {
            padding: 1rem 1.75rem;
            font-size: 1rem;
        }
        .banner-image-box {
            height: 300px;
            position: relative;
            background-color: var(--color-slate-200);
        }
        @media (min-width: 1024px) {
            .banner-image-box {
                grid-column: span 5;
                height: 100%;
                min-height: 450px;
            }
        }

        /* --- FEATURES --- */
        .features-section {
            padding: 4rem 0;
            background-color: var(--color-slate-200);
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 640px) {
            .features-section { padding: 6rem 0; }
        }
        .features-decor {
            position: absolute;
            top: -10rem;
            right: -10rem;
            width: 24rem;
            height: 24rem;
            background-color: rgba(230, 240, 250, 0.5);
            border-radius: 50%;
            filter: blur(48px);
            pointer-events: none;
        }
        .feature-item {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 5rem;
        }
        .feature-item:last-child {
            margin-bottom: 0;
        }
        @media (min-width: 1024px) {
            .feature-item { grid-template-columns: repeat(2, 1fr); }
            .feature-item.reverse .feature-info { order: 2; }
            .feature-item.reverse .feature-img-box { order: 1; }
        }
        .feature-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .feature-num {
            font-size: 3rem;
            font-weight: 900;
            color: var(--color-brand-orange);
/*            font-family: monospace, sans-serif;*/
            line-height: 1;
        }
        .feature-item-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-brand-navy);
        }
        @media (min-width: 640px) {
            .feature-item-title { font-size: 1.875rem; }
        }
        .feature-item-desc {
            color: var(--color-slate-600);
            font-size: 1.125rem;
            line-height: 1.7;
        }
        .feature-checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            font-weight: 700;
            color: var(--color-slate-700);
            margin-top: 0.5rem;
        }
        .feature-checklist li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .feature-checklist li i {
            font-size: 1.25rem;
        }
        .feature-checklist .text-green { color: var(--color-brand-green); }
        .feature-checklist .text-orange { color: var(--color-brand-orange); }

        .feature-img-box {
            height: 350px;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-slate-200);
            background-color: var(--color-slate-100);
        }
        @media (min-width: 640px) {
            .feature-img-box { height: 450px; }
        }

        /* --- PRICING --- */
        .pricing-section {
            padding: 4rem 0;
            background-color: #ffffff;
        }
        @media (min-width: 640px) {
            .pricing-section { padding: 6rem 0; }
        }
        .pricing-subheading {
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pricing-dot-indicator {
            width: 0.375rem;
            height: 1.5rem;
            background-color: var(--color-brand-orange);
            border-radius: 9999px;
        }
        
        /* Individual Item Card */
        .price-card {
            background-color: var(--color-slate-50);
            padding: 1.5rem;
            border-radius: 1.5rem;
            border: 1px solid var(--color-slate-100);
            text-align: center;
            transition: all 0.3s ease;
        }
        .price-card:hover {
            background-color: rgba(241, 245, 249, 0.7);
        }
        .price-item-name {
            color: var(--color-brand-navy);
            font-weight: 900;
            font-size: 1.125rem;
        }
        .price-item-note {
            color: var(--color-slate-400);
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }
        .price-item-cost {
            color: var(--color-brand-orange);
            font-size: 1.5rem;
            font-weight: 900;
            margin-top: 0.5rem;
        }

        /* Package Plans */
        .plan-wrapper {
            margin-top: 4rem;
        }
        .plans-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: stretch;
        }
        @media (min-width: 768px) {
            .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        }
        @media (min-width: 1024px) {
            .plans-grid { gap: 2rem; }
        }
        
        .plan-card {
            background-color: var(--color-slate-50);
            border-radius: 2rem;
            padding: 2rem;
            border: 1px solid var(--color-slate-200);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            position: relative;
        }
        .plan-card:hover {
            border-color: var(--color-brand-orange);
            background-color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        
        /* Middle Popular Card Accent */
        .plan-card.popular {
            background-color: var(--color-brand-navy);
            color: #ffffff;
            border-color: var(--color-brand-orange);
            border-width: 2px;
            box-shadow: var(--shadow-lg);
        }
        @media (min-width: 768px) {
            .plan-card.popular {
                transform: translateY(-1rem);
            }
        }
        .popular-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-brand-orange);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 900;
            padding: 0.375rem 1rem;
            border-radius: 9999px;
            letter-spacing: 0.1em;
        }

        .plan-header-title {
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--color-brand-navy);
        }
        .plan-card.popular .plan-header-title {
            color: #ffffff;
        }
        .plan-subtitle {
            font-size: 0.75rem;
            color: var(--color-slate-500);
            margin-top: 0.25rem;
        }
        .plan-card.popular .plan-subtitle {
            color: #bfdbfe;
        }
        .plan-price-box {
            border-top: 1px solid var(--color-slate-200);
            border-bottom: 1px solid var(--color-slate-200);
            padding: 0.75rem 0;
            margin: 1rem 0;
        }
        .plan-card.popular .plan-price-box {
            border-color: #1e3a8a;
        }
        .plan-price-value {
            font-size: 1.875rem;
            font-weight: 900;
            color: var(--color-brand-orange);
        }
        .plan-features-list {
            list-style: none;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--color-slate-600);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .plan-card.popular .plan-features-list {
            color: #e2e8f0;
        }
        .plan-features-list i {
            color: var(--color-brand-green);
            margin-right: 0.25rem;
        }

        /* Pricing Footer */
        .pricing-footer-box {
            margin-top: 3rem;
            background-color: rgba(255, 122, 0, 0.05);
            padding: 2rem;
            border-radius: 2rem;
            border: 1px solid rgba(255, 122, 0, 0.1);
            text-align: center;
            max-width: 56rem;
            margin-right: auto;
            margin-left: auto;
        }
        .pricing-footer-main {
            font-weight: 700;
            color: var(--color-brand-navy);
            font-size: 1.125rem;
        }
        .pricing-footer-sub {
            color: var(--color-slate-500);
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        .pricing-footer-btn {
            margin-top: 1.5rem;
            padding: 0.875rem 1.75rem;
        }


        /* Purchase Bonus Info Box */
        .purchase-bonus-box {
            margin-top: 2rem;
            background-color: rgba(17, 202, 160, 0.05); /* ブランドグリーンの背景で安心・エコ感 */
            padding: 1.5rem;
            border-radius: 1.5rem;
            border: 2px dashed var(--color-brand-green);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            text-align: center;
        }
        @media (min-width: 768px) {
            .purchase-bonus-box {
                flex-direction: row;
                text-align: left;
                justify-content: space-between;
                padding: 1.5rem 2.5rem;
            }
        }
        .purchase-bonus-title {
            font-size: 1.5rem;
        }

        /* --- FLOW (PROCESS) --- */
        .flow-section {
            padding: 4rem 0;
            background-color: var(--color-slate-200);
        }
        @media (min-width: 640px) {
            .flow-section { padding: 6rem 0; }
        }
        .step-card {
            background-color: #ffffff;
            padding: 2.5rem 1.5rem 1.5rem;
            border-radius: 2rem;
            border: 1px solid var(--color-slate-100);
            box-shadow: var(--shadow-sm);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .step-num {
            position: absolute;
            top: -1rem;
            background-color: var(--color-brand-orange);
            color: #ffffff;
            font-weight: 900;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }
        .step-icon-box {
            width: 100%;
            height: 6rem;
            border-radius: 1rem;
/*            background-color: rgba(255, 122, 0, 0.05);*/
            color: var(--color-brand-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.0rem;
            margin-bottom: 1rem;
        }
        .step-title {
            font-size: 1.125rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-bottom: 1rem;
        }
        .step-desc {
            font-size: 0.75rem;
            color: var(--color-slate-500);
            line-height: 1.6;
            font-weight: 500;
            text-align: justify;
        }

        /* --- SERVICE AREA --- */
        .area-section {
            padding: 4rem 0;
            background-color: #ffffff;
        }
        @media (min-width: 640px) {
            .area-section { padding: 6rem 0; }
        }
        .area-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .area-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .area-text-box {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .area-banner {
            padding: 1.5rem;
            background-color: var(--color-brand-sky);
            border-radius: 1.5rem;
            border: 1px solid #bfdbfe;
        }
        .area-banner-title {
            font-weight: 900;
            color: var(--color-brand-navy);
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }
        .area-banner-content {
            color: var(--color-brand-navy);
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Map Area */
        .map-box {
            border-radius: 2rem;
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
/*
            position: relative;
            background-color: var(--color-slate-100);
            padding: 2rem;
            border: 1px solid var(--color-slate-200);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            height: 300px;
*/
        }
        @media (min-width: 640px) { .map-box { height: 400px; } }
        .map-grid-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: radial-gradient(var(--color-brand-navy) 1.5px, transparent 1.5px);
            background-size: 16px 16px;
        }
        .map-marker {
            position: relative;
            z-index: 10;
            text-align: center;
        }
        .map-pin {
            width: 5rem;
            height: 5rem;
            background-color: rgba(255, 122, 0, 0.1);
            color: var(--color-brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            margin: 0 auto 1rem auto;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            }
            50% {
                transform: translateY(-25%);
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            }
        }
        .map-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-bottom: 0.5rem;
        }
        .map-desc {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--color-slate-500);
        }

        /* --- FAQ --- */
        .faq-section {
            padding: 4rem 0;
            background-color: var(--color-slate-200);
        }
        @media (min-width: 640px) {
            .faq-section { padding: 6rem 0; }
        }
        .faq-container {
            max-width: 56rem;
            margin: 0 auto;
        }
        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background-color: #ffffff;
            border-radius: 1.25rem;
            border: 1px solid rgba(226, 232, 240, 0.6);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        .faq-flex {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .faq-q {
            color: var(--color-brand-orange);
            font-weight: 900;
            font-size: 1.25rem;
            line-height: 1;
        }
        .faq-q-title {
            font-size: 1.125rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            line-height: 1.4;
        }
        .faq-a-desc {
            color: var(--color-slate-600);
            font-size: 0.875rem;
            margin-top: 0.75rem;
            line-height: 1.7;
        }

        /* --- CONTACT --- */
        .contact-section {
            padding: 4rem 0;
            background-color: #ffffff;
        }
        @media (min-width: 640px) {
            .contact-section { padding: 6rem 0; }
        }
        .contact-wrap {
            max-width: 56rem;
            margin: 0 auto;
        }
        .fast-call-banner {
            background-color: var(--color-slate-50);
            border: 1px solid rgba(226, 232, 240, 0.6);
            border-radius: 2rem;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        @media (min-width: 640px) { .fast-call-banner { padding: 2rem; } }
        .call-banner-label {
            font-size: 0.875rem;
            color: var(--color-slate-500);
            font-weight: 700;
            display: block;
            margin-bottom: 0.75rem;
        }
        .call-banner-number {
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--color-brand-orange);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        @media (min-width: 640px) { .call-banner-number { font-size: 2.25rem; } }
        .call-banner-number:hover {
            opacity: 0.85;
        }
        .call-banner-hours {
            display: block;
            font-size: 0.75rem;
            color: var(--color-slate-400);
            font-weight: 600;
            margin-top: 0.25rem;
        }

        /* Form styling */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-bottom: 0.5rem;
        }
        .form-label span {
            color: #fff;
            background-color: var(--color-brand-orange);
            font-size: .8rem;
            font-weight: normal;
            padding: 0 .2rem .1rem;
            margin-left: .5rem;
        }
        .form-control {
            width: 100%;
            background-color: var(--color-slate-50);
            border: 1px solid var(--color-slate-200);
            border-radius: 1rem;
            padding: 1rem 1.25rem;
            color: var(--color-slate-800);
            font-family: var(--font-sans);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--color-brand-orange);
            background-color: #ffffff;
        }
        .form-control::placeholder {
            color: #B2C0D9; /* 薄めのグレー */
            opacity: 1;    /* Firefoxで色が薄くなりすぎるのを防ぐため */
        }
        .checkbox-area {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
        }
        .form-checkbox {
            margin-top: 0.25rem;
            width: 1rem;
            height: 1rem;
            accent-color: var(--color-brand-orange);
        }
        .checkbox-label {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--color-slate-600);
            user-select: none;
        }
        .checkbox-label a {
            color: var(--color-brand-navy);
            text-decoration: underline;
        }
        .checkbox-label a:hover {
            color: var(--color-brand-orange);
        }
        .form-submit-box {
            text-align: center;
            margin-top: 1rem;
        }
        .form-submit-btn {
            width: 100%;
            padding: 1.125rem 3rem;
            font-size: 1.125rem;
        }
        @media (min-width: 640px) {
            .form-submit-btn { width: auto; }
        }

        /* --- INDUSTRIAL B2B --- */
        .industrial-section {
            padding: 3rem 0;
            background-color: var(--color-brand-dark);
/*            background-color: var(--color-brand-navy);*/
            color: #ffffff;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .ind-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: radial-gradient(#ffffff 1px, transparent 1px);
            background-size: 16px 16px;
        }
        .ind-wrap {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .ind-title {
            font-size: 1.25rem;
            font-weight: 900;
            color: var(--color-brand-orange);
        }
        @media (min-width: 640px) { .ind-title { font-size: 1.5rem; } }
        .ind-desc {
            color: #e2e8f0;
            max-width: 42rem;
            margin: 0 auto;
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.6;
        }
        @media (min-width: 640px) { .ind-desc { font-size: 1rem; } }

        /* --- COMPANY PROFILE --- */
        .company-section {
            padding: 4rem 0;
            background-color: var(--color-slate-200);
        }
        @media (min-width: 640px) {
            .company-section { padding: 6rem 0; }
        }
        .profile-container {
            max-width: 56rem;
            margin: 0 auto;
        }
        .profile-card {
            background-color: #ffffff;
            border-radius: 2rem;
            border: 1px solid rgba(226, 232, 240, 0.6);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .profile-row {
            display: grid;
            grid-template-columns: 1fr;
            padding: 1.5rem;
            border-bottom: 1px solid var(--color-slate-100);
        }
        .profile-row:last-child {
            border-bottom: none;
        }
        @media (min-width: 640px) {
            .profile-row {
                grid-template-columns: repeat(3, 1fr);
                padding: 2rem;
            }
        }
        .profile-dt {
            font-size: 0.875rem;
            font-weight: 900;
            color: var(--color-brand-navy);
            margin-bottom: 0.5rem;
        }
        @media (min-width: 640px) {
            .profile-dt { margin-bottom: 0; }
        }
        .profile-dd {
            grid-column: span 2;
            font-size: 0.875rem;
            color: var(--color-slate-700);
            font-weight: 700;
            line-height: 1.7;
        }
        .profile-dd a:hover {
            text-decoration: underline;
        }
        .profile-dd-list {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        /* --- FOOTER --- */
        .site-footer {
/*            background-color: var(--color-brand-dark);*/
            background-color: var(--color-brand-navy);
            color: var(--color-slate-400);
            padding: 3rem 0;
            border-top: 1px solid #1e293b;
            text-align: center;
        }
        .footer-wrap {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-brand {
            font-size: 1.125rem;
            font-weight: 900;
            color: #ffffff;
        }
        .footer-desc {
            font-size: 0.75rem;
            color: var(--color-slate-200);
            font-weight: 700;
/*            max-width: 48rem;*/
            margin: 0 auto;
            line-height: 1.6;
        }
        .footer-copyright {
            font-size: 0.75rem;
            color: var(--color-slate-200);
            border-top: 1px solid rgba(30, 41, 59, 0.8);
            padding-top: 1.5rem;
            margin-top: 1rem;
        }

/* --- プライバシーポリシー --- */
.privacy__block {
    color: var(--color-slate-500);
    background-color: var(--color-slate-50);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 2rem;
    padding: 2rem;
}
.p-contact__privacy {
    border: 1px solid var(--color-slate-500);;
    padding: 2rem;
    text-align: justify;
}
.privacy__box {
    height: 16rem;
    overflow-y: scroll;
    padding-right: 1rem;
}
.privacy__title {
    border-bottom: 1px solid var(--color-slate-500);;
    padding: 0 0 1rem;
    margin-bottom: 1rem;
}
.privacy__heading {
    padding: 0 0 1rem;
    font-size: 0.875rem;
}
.privacy__text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.p-contact__privacy-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.hidden-mobile {
    font-size: 6rem;
    color: var(--color-brand-green);
    opacity: 0.85;
}


/* 問い合わせフォーム確認画面切り替え制御 */
.js-confirm-wrap.is-hidden,
.js-form-wrap.is-hidden {
    display: none !important;
}

.js-confirm-wrap.is-show {
    display: block !important;
}

/* CF7の完了・エラーメッセージ枠を隠す（サンクス遷移のため不要） */
.wpcf7-response-output {
    display: none !important;
}

/* ==========================================
 * 確認画面のスタイル整形
 * ========================================== */

/* タイトル・リード文 */
.p-contact__confirm-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.p-contact__confirm-lead {
    font-size: 14px;
    margin-bottom: 24px;
    color: #666;
}

/* 確認リスト構造 */
.p-contact__confirm-list {
    border-top: 1px solid #ddd;
    margin-bottom: 30px;
}

.p-contact__confirm-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
}

.p-contact__confirm-item dt {
    width: 200px;
    font-weight: bold;
    color: #333;
    padding-right: 10px;
}

.p-contact__confirm-item dd {
    flex: 1;
    margin: 0;
    color: #444;
    word-break: break-all;
}

/* スマホ表示（レスポンシブ） */
@media screen and (max-width: 768px) {
    .p-contact__confirm-item {
        flex-direction: column;
    }
    
    .p-contact__confirm-item dt {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* ボタンエリア */
.p-contact__submit {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* 戻るボタンの調整 */
.c-btn--gray {
    background-color: #888 !important;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
}

.wpcf7-form-control-wrap {
    position: relative;
}
.wpcf7-not-valid-tip {
    position: absolute;
    left: 1rem;
    white-space: nowrap;
}