﻿/* =========================================
   KANMO Landing Page Consolidated Styles
   Scoping Wrapper: #kanmo-lp-wrapper
   ========================================= */

#kanmo-lp-wrapper {
    /* Defined Variables here just in case :root conflicts */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-heading: 'Noto Sans JP', sans-serif;
    --text-color: #333333;
}

/* Force Scoped Reset */
:where(#kanmo-lp-wrapper) * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix WP Theme Interference */
#kanmo-lp-wrapper img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#kanmo-lp-wrapper a {
    text-decoration: none;
    color: inherit;
}

#kanmo-lp-wrapper li {
    list-style: none;
}

/* Video Responsive Fix */
#kanmo-lp-wrapper video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* WPForms Reset Injection */
:where(#kanmo-lp-wrapper) .wpforms-container * {
    margin: revert;
    padding: revert;
    list-style: revert;
    box-sizing: border-box;
    border: revert;
}

/* ----------------------------------------- */
/* Original Styles Follow Below              */
/* ----------------------------------------- */
/* =========================================
   KANMO Landing Page Styles
   Inspired by payme.tokyo design
   ========================================= */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - KANMO Brand (v5.0 - New Warm Color Scheme) */
    --primary-color: #ed9455;
    /* Main warm orange */
    --primary-light: #FFBB70;
    /* Light peachy orange */
    --primary-lighter: #FFEC9E;
    /* Lighter  yellow-orange */
    --primary-lightest: #FFFBDA;
    /* Lightest cream */
    --secondary-blue: #4A99DE;
    /* Blue accent */
    --secondary-light-blue: #8BBDEA;
    /* Light blue */

    /* Legacy color mappings for compatibility */
    --primary-orange: #ED9455;
    --blue-1: #4A99DE;
    --blue-2: #8BBDEA;
    --blue-3: #123D63;
    --accent-orange: #ED9455;
    --border-gray: #E0E0E0;
    --text-gray: #666;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-color: #333333;

    /* Gradients changed to solid colors per user feedback */
    --gradient-hero: #FFBB70;
    /* Solid peachy orange for hero */
    --gradient-cta: #ED9455;
    /* Solid main orange for CTA */

    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-padding: clamp(20px, 5vw, 40px);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Base */
.section {
    padding: var(--section-padding) 0;
    opacity: 1 !important;
    /* Force visibility */
}

.section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    /* Changed to black */
    line-height: 1.3;
    font-weight: 700;
}

.section__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    color: var(--text-color);
}

.section__title--white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: #4A99DE !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    border: 2px solid #4A99DE !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--white) !important;
    color: #4A99DE !important;
}


.btn-secondary {
    background: var(--white);
    color: var(--blue-1);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--container-padding);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-secondary);
}

.header__company {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 400;
}

.header__company a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.header__company a:hover {
    text-decoration: underline;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: #ED9455 !important;
    /* Primary Orange */
    text-decoration: underline;
    opacity: 0.8;
}

.header__cta {
    padding: 10px 24px;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ed9455;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hide mobile menu CTA button on desktop */
.header__nav .btn-primary {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header__logo a {
        font-size: 22px;
    }

    .header__menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header__menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav__link {
        display: block;
        padding: 16px 0;
        width: 100%;
    }

    .header__cta {
        display: none;
    }

    /* CTA button inside mobile menu */
    .header__nav .btn-primary {
        display: inline-block;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

/* Mobile overlay */
@media (max-width: 768px) {
    .mobile-overlay {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        pointer-events: none;
    }

    .mobile-overlay.active {
        display: block !important;
        pointer-events: auto;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: var(--gradient-hero);
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 1 !important;
    /* Force visibility */
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    color: var(--white);
}

.hero__title {
    font-size: clamp(36px, 6vw, 44px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #333333;
}

.hero__subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333333;
}

.hero__cta {
    margin-bottom: 40px;
}

.hero__cta-note {
    font-size: 14px;
    margin-top: 12px;
    opacity: 0.9;
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 20px;
}

.trust-text {
    font-size: 14px;
}

.hero__image-placeholder {
    width: 100%;
    overflow: hidden;
    background-color: var(--gradient-hero);
    line-height: 0;
    border-radius: var(--radius-md);
    position: relative;
    /* Ensure absolute positioning works for ::after */
}

/* Create a border overlay that sits ON TOP of the video to mask black edge lines */
.hero__image-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gradient-hero);
    /* Matches background to mask edges */
    border-radius: var(--radius-md);
    /* Matches container shape */
    box-sizing: border-box;
    z-index: 5;
    /* Ensure it sits above the video */
    pointer-events: none;
    /* Let clicks pass through */
}

.hero__image-placeholder video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: none;
    /* Removed scaling */
    background-color: transparent;
}


.hero__image-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Ensure hero images fit within placeholder */
.hero__image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem {
    background: var(--light-gray);
}

.problem__checklist {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.check-icon {
    font-size: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.check-text {
    font-size: 16px;
    line-height: 1.6;
}

.problem__message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem__message h3 {
    font-size: clamp(22px, 4vw, 28px);
    color: var(--blue-1);
    margin-bottom: 24px;
}

.problem__message p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.message-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-1);
    margin-top: 32px;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    margin-bottom: 24px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-card__description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison {
    background: var(--light-gray);
}

.comparison__table-wrapper {
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison__table th,
.comparison__table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison__table th {
    background: #666;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.comparison__table th.highlight {
    background: var(--primary-color);
}

.comparison__table td.highlight {
    background: rgba(222, 143, 74, 0.1);
    font-weight: 600;
    color: var(--blue-1);
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

/* Black text for non-KANMO columns */
.comparison__table td:not(.highlight) {
    color: #333333 !important;
}

/* Status Icon Alignment */
.status-icon {
    display: inline-block;
    width: 1.5em;
    text-align: center;
    margin-right: 4px;
}

/* Force black text for specific highlight cells */
.comparison__table td.highlight.text-black {
    /* Changed from #000 to #333333 per user request */
    color: #333333 !important;
}

.comparison__note {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
}

/* =========================================
   SERVICE SECTION
   ========================================= */
.service {
    background: var(--white);
}

.journey {
    margin-bottom: 80px;
}

.journey__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--blue-1);
    margin-bottom: 40px;
}

.journey__map {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.journey__step {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}

.journey__step:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.journey__number {
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

.journey__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 8px;
}

.journey__description {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
}

.journey__arrow {
    font-size: 24px;
    color: var(--secondary-light-blue);
    font-weight: 700;
}

.plans__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--blue-1);
    margin-bottom: 16px;
}

.plans__description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card--featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(222, 143, 74, 0.05) 0%, rgba(185, 105, 34, 0.05) 100%);
}

.plan-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 16px;
}

.plan-card__description {
    font-size: 15px;
    line-height: 1.8;
}

.plans__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.plans__cta {
    text-align: center;
}

/* =========================================
   CASE STUDIES
   ========================================= */
.case-studies {
    background: var(--light-gray);
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-card__header {
    background: var(--gradient-hero);
    padding: 24px;
    color: var(--white);
}

.case-card__title {
    font-size: 20px;
    font-weight: 700;
}

.case-card__body {
    padding: 30px;
}

.case-section {
    margin-bottom: 24px;
}

.case-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.case-section ul {
    list-style: none;
    padding-left: 0;
}

.case-section li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.case-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-light-blue);
    font-weight: 700;
}

.case-results {
    display: grid;
    gap: 16px;
}

.result-item {
    background: var(--light-gray);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 4px;
}

.result-label {
    font-size: 13px;
    color: var(--text-color);
}

.case-quote {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
}

.quote-author {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-style: normal;
}

/* =========================================
   SERVICE FLOW
   ========================================= */
.flow {
    background: var(--white);
}

.flow__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.flow-step__number {
    display: flex;
    background: var(--gradient-cta);
    color: var(--white);
    width: 70px;
    height: 42px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 16px;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.flow-step__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.flow-step__description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-color);
    text-align: justify;
}

.flow-step__arrow {
    display: none;
}

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

@media (max-width: 768px) {
    .flow__steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* =========================================
   CTA MID SECTION - Banner Style
   ========================================= */
.cta-mid {
    background: linear-gradient(135deg, #ED9455 0%, #FFBB70 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-mid::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-mid .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-mid__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.3;
    text-shadow: none;
}

.cta-mid__text {
    font-size: clamp(16px, 2vw, 20px);
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-mid__button {
    margin-top: 32px;
}



/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    background: var(--light-gray);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    /* 竊・霑ｽ蜉 */
    flex-direction: column;
    /* 竊・霑ｽ蜉・夂ｸｦ荳ｦ縺ｳ */
}

.faq-item__question {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* 譌｢縺ｫ霑ｽ蜉貂医∩ */
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition);
    font-family: var(--font-primary);
    gap: 20px;
    /* 譌｢縺ｫ霑ｽ蜉貂医∩ */
}

.faq-item__question>span:first-child {
    flex: 1;
    /* 譌｢縺ｫ霑ｽ蜉貂医∩ */
    text-align: left;
}

/* 雉ｪ蝠上ユ繧ｭ繧ｹ繝磯Κ蛻・- 霑ｽ蜉 */
.faq-item__question>span:first-child {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-item__question:hover {
    background: var(--light-gray);
}

.faq-item__icon {
    font-size: 24px;
    color: var(--accent-orange);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: auto;
    /* 竊・霑ｽ蜉・壼ｸｸ縺ｫ蜿ｳ遶ｯ縺ｫ驟咲ｽｮ */
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    /* 竊・縺薙・陦後ｒ霑ｽ蜉・亥ｿｵ縺ｮ縺溘ａ・・*/
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
    background: var(--gradient-cta);
    color: var(--white);
}

.cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.cta__text {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 50px;
}

.cta__form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .form-row {
        gap: 24px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-color);
    margin-top: -10px;
}

.form-note-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 16px;
}

/* =========================================
   CTA SECTION
   ========================================= */
#cta {
    background-color: #ed9455;
    color: var(--white);
    padding: 80px 0;
}

#cta .section__title {
    color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer__brand {
    flex: 1;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__column {
    min-width: 150px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__list a:hover {
    opacity: 1;
    color: #FFBB70 !important;
    /* Lighter Orange */
    text-decoration: underline;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer__main {
        flex-direction: column;
        gap: 40px;
    }

    .footer__links {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet */
@media (max-width: 1199px) {
    :root {
        --section-padding: clamp(50px, 8vw, 80px);
    }

    .features__grid,
    .case-studies__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
        --container-padding: 20px;
    }

    /* Header Mobile */
    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: var(--transition);
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 16px;
    }

    .header__cta {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

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

    .hero__title {
        font-size: 32px;
    }

    /* Journey Mobile */
    .journey__map {
        flex-direction: column;
        align-items: stretch;
    }

    .journey__arrow {
        transform: rotate(90deg);
    }

    /* Comparison Table Mobile */
    .comparison__table {
        font-size: 14px;
    }

    .comparison__table th,
    .comparison__table td {
        padding: 12px 8px;
    }

    /* Plans Mobile */
    .plans__grid {
        grid-template-columns: 1fr;
    }

    /* Form Mobile */
    .cta__form-wrapper {
        padding: 30px 20px;
    }

    /* Footer Mobile */
    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .comparison__table-wrapper {
        font-size: 12px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* =========================================
   SAMPLE LINKS SECTION - Simple Design
   ========================================= */
.sample-links {
    margin-top: 40px;
}

.sample-links__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.sample-links__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sample-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.sample-link-btn--disabled {
    padding: 14px 28px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sample-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sample-links__buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

.sample-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled)::before {
    width: 300px;
    height: 300px;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(237, 148, 85, 0.35);
    border-color: var(--primary-light);
}

.sample-link-btn:active:not(.sample-link-btn--disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.3);
}

.sample-link-btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: var(--medium-gray);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-btn--disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-icon {
    flex-shrink: 0;
    width: auto;
    height: 24px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) .sample-link-icon {
    transform: scale(1.1) rotate(5deg);
}

.sample-link-btn span {
    position: relative;
    z-index: 1;
}

/* Sections Styles - Rebuilt for Reference Image Layout */

/* Realization Section (KANMO縺ｧ螳溽樟縺ｧ縺阪ｋ縺薙→) */
.realization {
    background: var(--white);
    padding: 80px 0;
}

.realization__grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.realization-card {
    padding: 0;
    background: transparent;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Prominent number badge positioned prominently */
.realization-card::before {
    content: "01";
    position: absolute;
    top: -40px;
    left: 20px;
    font-size: 200px;
    font-weight: 900;
    color: #ED9455;
    opacity: 0.12;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.realization-card:nth-child(2)::before {
    content: "02";
    left: auto;
    right: 20px;
    top: -30px;
}

.realization-card:nth-child(3)::before {
    content: "03";
}

.realization-card:nth-child(4)::before {
    content: "04";
    left: auto;
    right: 20px;
    top: -30px;
}

/* Simple alternating background for variety */
.realization-card:nth-child(even) {
    background: transparent;
}

/* Top section: Horizontal layout with image and content */
.realization-card__top {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 1;
}

/* Reverse layout for odd cards (01, 03) - title on right */
.realization-card:nth-child(odd) .realization-card__top {
    flex-direction: row-reverse;
}

/* Normal layout for even cards (02, 04) - title on left */
.realization-card:nth-child(even) .realization-card__top {
    flex-direction: row;
}

.realization-card__image {
    flex: 0 0 400px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Ensure images fit within the container */
.realization-card__image img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
}

.realization-card__intro {
    flex: 1;
    padding: 20px 0;
}

.realization-card__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 32px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.realization-card__lead {
    font-size: 18px;
    line-height: 2;
    color: var(--text-color);
    margin: 0;
    text-align: justify;
}

/* Details section: Full-width content */
.realization-card__details {
    padding: 40px 40px 60px;
    position: relative;
    z-index: 1;
    background: #FAFAFA;
    border-radius: 12px;
    margin: 0 40px;
}

.realization-card__details h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0 0 28px;
}

.realization-card__details p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .realization__grid {
        gap: 80px;
    }

    .realization-card::before {
        font-size: 150px;
        top: -20px;
    }

    .realization-card__top {
        flex-direction: column !important;
        gap: 40px;
        padding: 40px 20px 20px;
    }

    .realization-card__image {
        flex: 0 0 auto;
        width: 100%;
    }

    .realization-card__title {
        font-size: 32px;
    }

    .realization-card__details {
        margin: 0 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .realization-card::before {
        font-size: 100px;
        top: -10px;
        left: 10px;
    }

    .realization-card__title {
        font-size: 28px;
    }

    .realization-card__lead {
        font-size: 16px;
    }
}

/* Rich Placeholder Styles */
.rich-placeholder {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.rich-placeholder__icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.rich-placeholder__text {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 20px;
}

.rich-placeholder__bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rich-placeholder__bar {
    height: 12px;
    background: #eee;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.rich-placeholder__bar::after {
    content: "";
    display: block;
    height: 100%;
    background: var(--blue-2);
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 6px;
}

.rich-placeholder__bar:nth-child(2)::after {
    width: 85%;
    background: var(--primary-orange);
}

.rich-placeholder__bar:nth-child(3)::after {
    width: 50%;
}

/* Puzzle Style */
.rich-placeholder__puzzle {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.puzzle-piece {
    width: 36px;
    height: 36px;
    background: var(--blue-2);
    border-radius: 6px;
}

.puzzle-piece:nth-child(2) {
    background: var(--primary-orange);
}

/* Cycle Style */
.rich-placeholder__cycle {
    width: 70px;
    height: 70px;
    border: 5px solid var(--blue-1);
    border-radius: 50%;
    border-top-color: transparent;
    margin-bottom: 16px;
    transform: rotate(45deg);
}

/* Content List Styles */

/* Approach List - 2 Column Grid */
.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-left: 0;
    list-style: none;
    margin: 28px 0;
}

.approach-list li {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-orange);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .approach-list {
        grid-template-columns: 1fr;
    }
}

/* Journey List - Step Design */
.journey-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    margin: 28px 0;
    list-style: none;
}

.journey-list li {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 15px;
}

.journey-item-number {
    background: var(--blue-1);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-right: 14px;
    flex-shrink: 0;
}

/* Concern List */
.concern-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.concern-list li {
    background: #fff5f5;
    color: #c0392b;
    padding: 14px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0;
    border-left: 3px solid #e74c3c;
}

.concern-list li::before {
    content: "⚠️";
    margin-right: 12px;
    font-size: 18px;
}

/* Plan Boxes */
.plan-box-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .plan-box-container {
        grid-template-columns: 1fr 1fr;
    }
}

.plan-box {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    margin: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-gray);
    border-top: 5px solid var(--blue-1);
}

.plan-box:last-of-type {
    border-top-color: var(--primary-orange);
}

.plan-box h5 {
    margin: 0 0 20px;
    font-size: 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 14px;
    color: var(--text-color);
}

.plan-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.plan-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.plan-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 16px;
}

/* Usage List - Removed (now plain text) */

/* Scene Section Styles */
.scene-section {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.scene-section:last-child {
    margin-bottom: 0;
    background: #eef5fa;
}

.scene-section__title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--medium-gray);
    padding-bottom: 6px;
    display: inline-block;
    font-weight: 600;
}

.scene-section:last-child .scene-section__title {
    color: var(--primary-orange);
    border-bottom-color: rgba(185, 105, 34, 0.3);
}

.scene-effects {
    background: transparent;
    padding: 0;
    margin: 14px 0;
}

.scene-effects p {
    background: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    color: var(--primary-orange);
    font-weight: 500;
}

.scene-effects p:last-child {
    margin-bottom: 0;
}

.scene-summary {
    color: var(--text-gray);
    margin-top: 18px;
}

/* Support Section */
.support {
    background: var(--white);
}

.support__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

.support-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
}

/* Ensure icon images fit within the container */
.support-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.support-card__content {
    flex: 1;
}

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

.support-card__subtitle {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.support-card__description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .support-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .support-card__icon {
        width: auto;
    }
}

/* Concern List - Inline Style for Card 3 */
.concern-list-inline {
    list-style: none;
    padding: 16px 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.concern-list-inline li {
    background: #FFFBDA;
    color: #333333;
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    border-left: 3px solid #ED9455;
}

.concern-list-inline li::before {
    margin-right: 10px;
    font-size: 16px;
}

/* Client Logos Section - Rebuilt Layout */

.clients-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.clients-section__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: transparent;
}

.client-logo-item img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }

    .clients-section__logos {
        gap: 20px;
    }

    .client-logo-item {
        min-width: 120px;
        height: 60px;
        font-size: 14px;
        padding: 15px 20px;
    }
}

/* Scene Section (蟆主・繧ｷ繝ｼ繝ｳ) - Rebuilt Layout */

.scene {
    background: #FAFAFA;
    padding: 80px 0;
}

.scene__grid {
    display: grid;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.scene-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.scene-card__header {
    background: linear-gradient(135deg, #ED9455 0%, #FFBB70 100%);
    padding: 32px 36px;
}

.scene-card__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.scene-card__body {
    padding: 36px;
}

.scene-card__body ul {
    padding-left: 0;
    margin: 16px 0;
}

.scene-card__body ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-left: 1.2em !important;
    /* Reduced indent */
    list-style: none;
}

.scene-card__body ul li::before {
    content: "・";
    /* Nakaguro */
    position: absolute;
    left: 0 !important;
    top: 0;
    color: #333333 !important;
    /* Matched text color */
    font-weight: 900;
}

.scene-card__body p {
    line-height: 1.9;
    margin-bottom: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .scene {
        padding: 60px 0;
    }

    .scene__grid {
        gap: 40px;
        padding: 0 20px;
    }

    .scene-card__header {
        padding: 24px;
    }

    .scene-card__title {
        font-size: 22px;
    }

    .scene-card__body {
        padding: 24px;
    }
}

/* =========================================
   SAMPLE LINKS SECTION - Simple Design
   ========================================= */
.sample-links {
    margin-top: 40px;
}

.sample-links__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.sample-links__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sample-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    /* Matched Instagram button padding */
    min-width: 160px;
    /* Matched Instagram button width */
    min-height: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    /* Pill shape */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.sample-link-btn--disabled {
    padding: 12px 24px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sample-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sample-links__buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

.sample-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled)::before {
    width: 400px;
    height: 400px;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(237, 148, 85, 0.35);
    border-color: var(--primary-light);
}

.sample-link-btn:active:not(.sample-link-btn--disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.3);
}

.sample-link-btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: var(--medium-gray);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-btn--disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-icon {
    flex-shrink: 0;
    width: auto !important;
    height: 20px !important;
    /* Force small icon size */
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-right: 4px;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) .sample-link-icon {
    transform: scale(1.1) rotate(5deg);
}

.sample-link-btn span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}



/* =========================================
   FOOTER
   ========================================= */
.section.cta {
    margin-bottom: 0 !important;
    padding-bottom: 60px;
}

.footer {
    margin-top: 0 !important;
    background: #333333;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer__brand {
    flex: 1;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__column {
    min-width: 150px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer__main {
        flex-direction: column;
        gap: 40px;
    }

    .footer__links {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   CRITICAL FIXES (Added 2026-02-08)
   1. Header Height Constraint
   2. Mobile Overlay Removal
   3. Visibility Enforcements
   ========================================= */

/* 1. Header Fix */
#lp-header,
.header {
    height: 80px !important;
    min-height: 0 !important;
    max-height: 80px !important;
    overflow: visible !important;
}

/* 2. Kill Overlay */
#mobileOverlay,
.mobile-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 3. Global Visibility Safety Nets */
html {
    overflow-x: hidden;
}

html,
body {
    background-color: #fff !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#kanmo-lp-wrapper {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#hero,
.hero {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure Text is Visible */
#kanmo-lp-wrapper * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide Preloaders */
#loading,
.preloader,
.loader,
[class*="loader"],
[class*="preloader"] {
    display: none !important;
}

/* =========================================
   FLOATING ASSESSMENT BUTTON
   ========================================= */

/* Outer wrapper: fixed position, holds mascot + pill */
.float-assessment-wrap {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-assessment-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mascot: sits above the pill, absolutely free */
.float-assessment__mascot {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -8px;
    margin-right: -6px;
    margin-top: -28px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
    position: relative;
}

/* Mascot hover (triggered from wrap hover) */
.float-assessment-wrap:hover .float-assessment__mascot {
    transform: rotate(-6deg) translateY(-6px) scale(1.08);
}

/* Pill button */
.float-assessment {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ed9455 0%, #FFBB70 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    padding: 13px 18px 13px 20px;
    box-shadow: 0 6px 24px rgba(237, 148, 85, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease,
        border-color 0.2s ease,
        background 0.25s ease;
}

/* Shimmer sweep on hover */
.float-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.float-assessment-wrap:hover .float-assessment::before {
    left: 130%;
}

/* Hover state */
.float-assessment-wrap:hover .float-assessment {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 14px 40px rgba(237, 148, 85, 0.6),
        0 0 0 4px rgba(255, 187, 112, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #e8843d 0%, #ffaa55 100%);
    color: #fff;
}

/* Label */
.float-assessment__label {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: letter-spacing 0.2s ease;
}

.float-assessment-wrap:hover .float-assessment__label {
    letter-spacing: 0.06em;
}

/* Arrow circle */
.float-assessment__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition:
        background 0.22s ease,
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.2s ease;
}

.float-assessment-wrap:hover .float-assessment__arrow {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px) scale(1.15);
}

/* Mobile */
@media (max-width: 600px) {
    .float-assessment-wrap {
        bottom: 16px;
        right: 12px;
    }

    .float-assessment__mascot {
        width: 50px;
        margin-top: -22px;
        margin-bottom: -6px;
    }

    .float-assessment {
        padding: 11px 14px 11px 16px;
    }

    .float-assessment__label {
        font-size: 13px;
    }
}

/* =========================================
   OPTIONS LIST SECTION (関連オプション一覧)
   ========================================= */
.options-list {
    background: linear-gradient(135deg, #EEF4FC 0%, #F5F8FF 60%, #FFFAF5 100%);
}

.options-list__lead {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: -36px;
    margin-bottom: 48px;
}

.options-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ---- Base card ---- */
.option-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(74, 153, 222, 0.07);
    border: 1.5px solid #E8EEF8;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--text-color);
}

/* Top accent line */
.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A99DE, #8BBDEA);
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* ---- Clickable card ---- */
.option-card--link {
    cursor: pointer;
}

.option-card--link::before {
    opacity: 1;
}

.option-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(74, 153, 222, 0.18);
    border-color: #4A99DE;
    color: var(--text-color);
}

/* ---- Disabled (準備中) card ---- */
.option-card--disabled {
    cursor: default;
    background: #FAFAFA;
    border-color: #EBEBEB;
}

.option-card--disabled::before {
    display: none;
}

/* ---- Accent div (clickable only) ---- */
.option-card__accent {
    display: none;
    /* handled by ::before pseudo-element */
}

/* ---- Icon box ---- */
.option-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #EEF5FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-card--disabled .option-card__icon {
    background: #F2F2F2;
}

/* ---- Text body ---- */
.option-card__body {
    flex: 1;
    min-width: 0;
}

.option-card__label {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 3px;
    color: var(--text-color);
}

.option-card--disabled .option-card__label {
    color: #AAAAAA;
}

.option-card__desc {
    font-size: 11.5px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

.option-card--disabled .option-card__desc {
    color: #BBBBBB;
}

/* ---- Arrow (link cards only) ---- */
.option-card__arrow {
    font-size: 16px;
    color: #4A99DE;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.option-card--link:hover .option-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Badge ---- */
.option-card__badge {
    font-size: 10.5px;
    font-weight: 600;
    color: #AAAAAA;
    background: #EEEEEE;
    border-radius: 20px;
    padding: 2px 9px;
    line-height: 1.8;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .options-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 540px) {
    .options-list__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .option-card {
        padding: 16px 14px;
    }

    .option-card__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
}/* =========================================
   Blog Card Styles (For KANMO LP & General)
   ========================================= */
/* Wrapper reset */
#kanmo-lp-wrapper .blogcard-wrap,
.blogcard-wrap {
    text-decoration: none !important;
    display: block;
    margin: 2em 0;
}

#kanmo-lp-wrapper .blogcard,
.blogcard {
    display: flex !important;
    flex-wrap: wrap !important;
    background-color: #FFFFFF !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    color: #333333 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 800px;
    /* Optional constraint */
    flex-direction: row !important;
    /* Force row layout by default */
}

#kanmo-lp-wrapper .blogcard:hover,
.blogcard:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(237, 148, 85, 0.15) !important;
    border-color: rgba(237, 148, 85, 0.3) !important;
}

#kanmo-lp-wrapper .blogcard-thumbnail,
.blogcard-thumbnail {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: #F9F9F9 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 150px;
    /* Ensure an image minimum height */
}

#kanmo-lp-wrapper .blogcard-thumbnail img,
.blogcard-thumbnail img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
    border-radius: 0 !important;
    /* Reset cocoon defaults */
    margin: 0 !important;
    /* Reset cocoon defaults */
}

#kanmo-lp-wrapper .blogcard:hover .blogcard-thumbnail img,
.blogcard:hover .blogcard-thumbnail img {
    transform: scale(1.05) !important;
}

#kanmo-lp-wrapper .blogcard-content,
.blogcard-content {
    flex: 0 0 65% !important;
    max-width: 65% !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    background: transparent !important;
    /* Reset */
    float: none !important;
    /* Reset cocoon defaults */
}

#kanmo-lp-wrapper .blogcard-title,
.blogcard-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #333333 !important;
}

#kanmo-lp-wrapper .blogcard:hover .blogcard-title,
.blogcard:hover .blogcard-title {
    color: #ED9455 !important;
}

#kanmo-lp-wrapper .blogcard-snippet,
.blogcard-snippet {
    font-size: 14px !important;
    color: #777777 !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

#kanmo-lp-wrapper .blogcard-footer,
.blogcard-footer {
    display: flex !important;
    align-items: center !important;
    margin-top: auto !important;
}

#kanmo-lp-wrapper .blogcard-favicon,
.blogcard-favicon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
    border-radius: 2px !important;
    display: flex !important;
    align-items: center !important;
}

#kanmo-lp-wrapper .blogcard-favicon img,
.blogcard-favicon img {
    width: 100% !important;
    height: auto !important;
}

#kanmo-lp-wrapper .blogcard-domain,
.blogcard-domain {
    font-size: 12px !important;
    color: #777777 !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
}

/* Hide extra things cocoon tries to add */
.blogcard-label,
.blogcard-date {
    display: none !important;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {

    #kanmo-lp-wrapper .blogcard,
    .blogcard {
        flex-direction: column !important;
    }

    #kanmo-lp-wrapper .blogcard-thumbnail,
    .blogcard-thumbnail {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        aspect-ratio: 1.91 / 1 !important;
        /* Standard OGP ratio */
        height: auto !important;
        min-height: 180px !important;
    }

    #kanmo-lp-wrapper .blogcard-content,
    .blogcard-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
    }

    #kanmo-lp-wrapper .blogcard-title,
    .blogcard-title {
        font-size: 16px !important;
        -webkit-line-clamp: 3 !important;
    }

    #kanmo-lp-wrapper .blogcard-snippet,
    .blogcard-snippet {
        font-size: 13px !important;
        -webkit-line-clamp: 3 !important;
    }
}
