/*
Theme Name: Euni Corporate Theme - Custom Styles (Modern Soft Design)
Description: Euni-specific customizations with modern, soft design
Version: 2.3.0
*/

/* ====================
   Google Fonts Import
   ==================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

/* ====================
   Euni CSS Variables (Simple & Minimal Design)
   ==================== */
:root {
    /* Typography */
    --swl-font_family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
    --swl-font_weight: 400;
    --swl-letter_spacing: 0.02em;

    /* Simple Color Palette */
    --color_main: #1a1a1a;
    --color_accent: #0066cc;
    --color_accent_hover: #0052a3;

    /* Background Colors */
    --color-bg-light: #fafafa;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f5f5f5;

    /* Text Colors */
    --color-text-dark: #1a1a1a;
    --color-text-medium: #666666;
    --color-text-light: #999999;
    --color-border: #e5e5e5;
    --color-border-dark: #d4d4d4;

    /* Gradient Colors */
    --color-gradient-start: #667eea;
    --color-gradient-mid: #764ba2;
    --color-gradient-end: #f093fb;

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

    /* Container */
    --container_size: 1200px;
    --content-max: 1120px;

    /* Spacing scale */
    --space-xs: clamp(0.5rem, 1.2vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.6vw, 1.125rem);
    --space-md: clamp(1.5rem, 2.4vw, 2rem);
    --space-lg: clamp(2.5rem, 4vw, 3.5rem);
    --space-xl: clamp(3.5rem, 6vw, 5rem);
    --space-xxl: clamp(6rem, 16vh, 9.5rem);
}

/* ====================
   Global Styles
   ==================== */
html {
    scroll-behavior: auto;
}

body {
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    font-family: var(--swl-font_family);
    font-weight: var(--swl-font_weight);
    letter-spacing: var(--swl-letter_spacing);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.l-container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}

.l-mainContent {
    position: relative;
}

/* ====================
   Header (Clean & Simple)
   ==================== */
.l-header {
    background: var(--color-bg-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9000;
    border-bottom: 1px solid var(--color-border);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Offset header when WordPress admin bar is visible */
body.admin-bar .l-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .l-header {
        top: 46px;
    }
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
    padding: clamp(1.5rem, 3vw, 1.75rem) 0;
}

.l-header__logo {
    flex: 0 0 auto;
}

.c-logo {
    text-decoration: none;
    color: var(--color-text-dark);
    transition: transform 0.3s ease;
    display: inline-block;
}

.c-logo:hover {
    transform: scale(1.05);
}

.c-logo__text {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--color_main);
    letter-spacing: -0.01em;
}

/* ====================
   Navigation (Clean Style with CTA Button)
   ==================== */
.l-header__gnav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.c-gnav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    align-items: center;
}

.c-gnav .menu-item {
    position: relative;
}

.c-gnav .menu-item a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.c-gnav .menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    opacity: 0.12;
}

/* 通常のメニュー項目のホバー */
.c-gnav .menu-item a:hover {
    color: var(--color-accent);
}

.c-gnav .menu-item a:hover::after,
.c-gnav .menu-item.current-menu-item a::after {
    transform: scaleX(1);
    opacity: 1;
}

.c-gnav .menu-item.current-menu-item a {
    color: var(--color_main);
    font-weight: 700;
}

/* お問い合わせだけ背景色あり */
.c-gnav .menu-item:last-child a {
    padding: 0.65rem 1.65rem;
    border-radius: 999px;
    background: var(--color_main);
    color: white;
    letter-spacing: 0.02em;
}

.c-gnav .menu-item:last-child a::after {
    display: none;
}

.c-gnav .menu-item:last-child a:hover {
    color: white;
    background: var(--color-text-dark);
}

/* ====================
   Hamburger Menu Toggle Button
   ==================== */
.l-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    position: relative;
    z-index: 9999;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.l-header__toggle-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: none;
    pointer-events: none;
}

.l-header__toggle:hover {
    transform: scale(1.05);
}

.l-header__toggle:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.l-header__toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color_main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.l-header__toggle-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--color_main);
    pointer-events: none;
}

/* ハンバーガーメニューが開いている時のアニメーション */
.l-header__toggle.-active .l-header__toggle-icon .l-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.l-header__toggle.-active .l-header__toggle-icon .l-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.l-header__toggle.-active .l-header__toggle-icon .l-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====================
   Breadcrumb (Minimalist)
   ==================== */
.p-breadcrumb {
    background: transparent;
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.p-breadcrumb__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.p-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.p-breadcrumb__item:not(:last-child)::after {
    content: "→";
    color: var(--color-text-light);
    font-size: 1em;
    opacity: 0.5;
}

.p-breadcrumb__text {
    color: var(--color-text-medium);
    text-decoration: none;
    transition: all 0.3s;
}

.p-breadcrumb__text:hover {
    color: var(--color_main);
}

.p-breadcrumb__item:last-child .p-breadcrumb__text {
    color: var(--color-text-light);
    font-weight: 600;
}

/* ====================
   Hero Section (Kaonavi-inspired)
   ==================== */
.p-hero {
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    padding: clamp(3rem, 8vh, 5rem) 0;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: clamp(580px, 85vh, 780px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative shapes */
.p-hero__shape1,
.p-hero__shape2,
.p-hero__shape3 {
    position: absolute;
    pointer-events: none;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
}

.p-hero__shape1 {
    top: 5%;
    right: 8%;
    width: clamp(200px, 25vw, 350px);
    height: clamp(200px, 25vw, 350px);
    animation: float 6s ease-in-out infinite, rotateScale 30s ease-in-out infinite;
}

.p-hero__shape2 {
    bottom: 10%;
    left: 5%;
    width: clamp(180px, 22vw, 320px);
    height: clamp(180px, 22vw, 320px);
    animation: float 7s ease-in-out infinite 1s, rotateScale 35s ease-in-out infinite 2s;
}

.p-hero__shape3 {
    top: 50%;
    left: 10%;
    width: clamp(160px, 20vw, 280px);
    height: clamp(160px, 20vw, 280px);
    animation: float 8s ease-in-out infinite 0.5s, pulse 12s ease-in-out infinite 1s;
    opacity: 0.8;
}

.p-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.p-hero__content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-hero__subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    color: var(--color-text-light);
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.p-hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--color_main);
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.p-hero__lead {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
    color: var(--color-text-medium);
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.p-hero__btns {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

@media (max-width: 768px) {
    .p-hero {
        min-height: auto;
        padding: 0.5rem 0 clamp(4rem, 10vh, 6rem);
    }

    .p-hero__subtitle {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .p-hero__shape1,
    .p-hero__shape2,
    .p-hero__shape3 {
        opacity: 0.6;
    }

    .p-hero__shape1 {
        top: 5%;
        right: -10%;
        width: 180px;
        height: 180px;
    }

    .p-hero__shape2 {
        bottom: 5%;
        left: -15%;
        width: 160px;
        height: 160px;
    }

    .p-hero__shape3 {
        top: 40%;
        left: -10%;
        width: 140px;
        height: 140px;
    }

    .p-hero__title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .p-hero__btns {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .p-hero__btns .c-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================
   Section Layout (Modern Spacing)
   ==================== */
.p-section {
    padding: clamp(7rem, 14vw, 12rem) 0;
    position: relative;
}

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

/* 背景色の区切りをより明確に */
.p-section:not(.-bg) {
    background: var(--color-bg-white);
}

.p-section__head {
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.p-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-sm);
    color: var(--color_main);
    animation: float 3s ease-in-out infinite;
}

.p-section__icon svg {
    width: 100%;
    height: 100%;
}

.p-section__head .c-secLabel {
    margin-bottom: 0;
}

.p-section__body {
    position: relative;
}

/* ====================
   Section Components (Modern Typography)
   ==================== */
.c-secLabel {
    display: inline-block;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.c-secLabel.-white {
    color: rgba(255, 255, 255, 0.7);
}

.c-secHeading {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.c-secHeading.-white {
    color: var(--color-bg-white);
}

.c-secDscr {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-medium);
    margin-bottom: 0;
    max-width: 800px;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.c-secDscr.-white {
    color: rgba(255, 255, 255, 0.9);
}

/* ====================
   Buttons (Clean & Simple)
   ==================== */
.c-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.c-btn--primary {
    background-color: var(--color_main);
    color: white;
    border-color: var(--color_main);
}

.c-btn--primary:hover {
    background-color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

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

.c-btn--outline:hover {
    background-color: var(--color_main);
    color: white;
}

.c-btn--text {
    background-color: transparent;
    color: var(--color_main);
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
}

.c-btn--text:hover {
    color: var(--color-text-dark);
    transform: translateX(4px);
}

.c-btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.c-btn-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-btn-link:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* ====================
   Big Text
   ==================== */
.c-bigText {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.8;
    font-weight: 600;
    color: var(--color-text-dark);
}

.c-bigText.-center {
    text-align: center;
}

/* ====================
   Text Utilities
   ==================== */
.c-text {
    line-height: 1.8;
    color: var(--color-text-medium);
}

.c-text.-large {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
}

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

/* ====================
   Philosophy Grid
   ==================== */
.p-philosophy__content {
    margin-top: 3rem;
}

.p-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

/* ====================
   Box Card (Simple & Clean)
   ==================== */
.c-boxCard {
    background: var(--color-bg-white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.c-boxCard:hover {
    border-color: var(--color-border-dark);
    box-shadow: var(--shadow-sm);
}

.c-boxCard__title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.c-boxCard__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ====================
   Card Grid
   ==================== */
.p-cardGrid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: var(--space-lg);
}

.p-cardGrid.-col2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.p-cardGrid.-col3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ====================
   Card (Clean & Simple)
   ==================== */
.c-card {
    background-color: var(--color-bg-white);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.2s ease;
    height: 100%;
    border: 1px solid var(--color-border);
}

.c-card:hover {
    border-color: var(--color-border-dark);
    box-shadow: var(--shadow-sm);
}

.c-card.-border {
    border: 2px solid var(--color_main);
}

.c-card__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.c-card__icon.-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color_main);
    opacity: 0.9;
    filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-card__icon.-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.c-card__title {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.c-card__text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-medium);
    line-height: 2;
}

.c-card__text.-large {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
}

.c-card__label {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.c-card__sublabel {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-light);
    font-weight: 500;
}

.c-card__detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--color-text-medium);
}

.c-card__detail strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

.c-card__detail ul {
    list-style: none;
    padding-left: 0;
}

.c-card__detail li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.c-card__detail li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gradient-start);
    font-weight: 700;
}

/* ====================
   Value Card (Enhanced)
   ==================== */
.c-valueCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.c-valueCard:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.c-valueCard__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    color: var(--color-bg-white);
    border-radius: 50%;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.c-valueCard__title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.3;
}

.c-valueCard__subtitle {
    display: block;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

.c-valueCard__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-top: 1.25rem;
}

/* ====================
   Company Table (Modern)
   ==================== */
.c-companyTable {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg-white);
    padding: clamp(3rem, 6vw, 5rem);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.8s ease-out;
}

.c-table {
    width: 100%;
    border-collapse: collapse;
}

.c-table th,
.c-table td {
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.c-table th {
    background: transparent;
    color: var(--color_main);
    font-weight: 800;
    width: 30%;
    vertical-align: top;
    font-size: clamp(1rem, 2vw, 1.125rem);
    letter-spacing: 0.05em;
}

.c-table td {
    color: var(--color-text-dark);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.9;
}

.c-table tr:last-child th,
.c-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .c-companyTable {
        padding: clamp(2rem, 5vw, 2.5rem);
    }

    .c-table th,
    .c-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
    }

    .c-table th {
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: none;
    }

    .c-table td {
        padding-bottom: 1.5rem;
    }

    .c-table tr:last-child td {
        padding-bottom: 0.75rem;
    }
}

/* ====================
   List (Modern Bullets)
   ==================== */
.c-list {
    list-style: none;
    padding-left: 0;
}

.c-list li {
    padding-left: 2em;
    position: relative;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.c-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.c-list li + li {
    margin-top: 1em;
}

/* ====================
   Contact Section
   ==================== */
.p-contact {
    background: var(--color-bg-gray);
    color: var(--color-text-dark);
    position: relative;
}

.p-contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 4vw, 3rem);
    position: relative;
}

@media (max-width: 768px) {
    .p-contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Info Card */
.c-contactInfo {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: none;
    animation: fadeInUp 0.8s ease-out;
}

.c-contactInfo__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--color_main);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
}

.c-contactInfo__item {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.c-contactInfo__label {
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    color: var(--color-text-light);
    margin-bottom: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.c-contactInfo__value {
    font-size: clamp(1.0625rem, 2vw, 1.125rem);
    color: var(--color-text-dark);
    line-height: 1.6;
}

.c-contactInfo__value a {
    color: var(--color_main);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.c-contactInfo__value a:hover {
    color: var(--color-accent);
}

.c-contactInfo__note {
    margin-top: clamp(2rem, 4vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 2px solid var(--color-border);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* Contact Form */
.c-form {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: clamp(2.5rem, 5vw, 4rem);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: none;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.c-form__row {
    margin-bottom: clamp(1.75rem, 3vw, 2rem);
}

.c-form__label {
    display: block;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.c-form__required {
    color: #ef4444;
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    margin-left: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    font-weight: 600;
}

.c-form__optional {
    color: var(--color-text-light);
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    margin-left: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: rgba(100, 116, 139, 0.08);
    border-radius: 6px;
    font-weight: 600;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
    width: 100%;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 1.25rem);
    font-size: clamp(1rem, 2vw, 1.0625rem);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--color-bg-white);
    color: var(--color-text-dark);
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
    outline: none;
    border-color: var(--color_main);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
    background: white;
}

.c-form__textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
}

.c-form__submit {
    margin-top: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
}

.c-form__submit .c-btn {
    min-width: 200px;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    padding: clamp(1rem, 2vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
}

/* ====================
   Responsive Design
   ==================== */
@media (max-width: 768px) {
    /* iOS Safari スクロール最適化 */
    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .p-section {
        padding: 4rem 0;
    }

    .p-hero {
        padding: 6rem 0;
    }

    .p-cardGrid.-col2,
    .p-cardGrid.-col3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .p-philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .c-table th,
    .c-table td {
        padding: 1.5rem;
        display: block;
        width: 100%;
    }

    .c-table th {
        border-bottom: none;
        padding-bottom: 0.75rem;
    }

    .c-table td {
        padding-top: 0.75rem;
    }

    /* モバイルビューでのヘッダー調整 */
    .l-header {
        position: relative;
        top: 0;
        transform: none;
        -webkit-transform: none;
    }

    .l-header__inner {
        padding: 1rem 0;
        min-height: 60px;
        height: 60px;
    }

    /* モバイルビューでのロゴ調整 */
    .l-header__logo {
        display: flex;
        align-items: center;
        min-height: 48px;
    }

    .c-logo {
        display: flex;
        align-items: center;
        height: 48px;
    }

    /* ハンバーガーメニューボタンを表示 */
    .l-header__toggle {
        display: flex;
        position: relative;
        z-index: 10000;
        height: 48px;
    }

    /* モバイルメニューのスタイル */
    .l-header__gnav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fafafa;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        padding: 5.5rem 2rem 2rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .l-header__gnav::before {
        content: '株式会社Euni';
        position: absolute;
        top: 1.75rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        font-weight: 700;
        color: var(--color-text-dark);
        letter-spacing: 0.05em;
        z-index: 1;
        animation: fadeInDown 0.4s ease-out 0.1s backwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }
        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .l-header__gnav.-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .c-gnav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        pointer-events: auto;
        width: 100%;
        max-width: 340px;
        align-items: center;
        margin-top: 0;
    }

    .c-gnav .menu-item {
        width: 100%;
        border-bottom: none;
        pointer-events: auto;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center;
        line-height: 1 !important;
        min-height: 0 !important;
        height: auto !important;
        display: block !important;
        animation: menuItemFadeIn 0.4s ease-out backwards;
        animation-delay: calc(var(--item-index, 0) * 0.05s + 0.15s);
    }

    @keyframes menuItemFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .c-gnav .menu-item:nth-child(1) { --item-index: 0; }
    .c-gnav .menu-item:nth-child(2) { --item-index: 1; }
    .c-gnav .menu-item:nth-child(3) { --item-index: 2; }
    .c-gnav .menu-item:nth-child(4) { --item-index: 3; }
    .c-gnav .menu-item:nth-child(5) { --item-index: 4; }
    .c-gnav .menu-item:nth-child(6) { --item-index: 5; }

    .c-gnav .menu-item:last-child {
        border-bottom: none;
        margin-top: 1rem !important;
        padding-top: 0 !important;
        border-top: none;
    }

    .c-gnav .menu-item a {
        padding: 1.25rem 1.5rem !important;
        border-radius: 12px;
        display: block;
        text-align: center;
        position: relative;
        z-index: 1;
        pointer-events: auto;
        cursor: pointer;
        font-size: clamp(1.125rem, 3vw, 1.25rem);
        font-weight: 500;
        line-height: 1.5;
        margin: 0 !important;
        transition: all 0.3s ease;
        background: var(--color-bg-white);
        border: 1px solid var(--color-border);
        color: var(--color-text-dark);
    }

    .c-gnav .menu-item a:hover {
        background: var(--color-text-dark);
        color: var(--color-bg-white);
        border-color: var(--color-text-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .c-gnav .menu-item a::after {
        display: none;
    }

    .c-gnav .menu-item:last-child a {
        text-align: center;
        border-radius: 12px;
        padding: 1.25rem 2rem !important;
        margin: 0 !important;
        background: var(--color_main);
        color: var(--color-bg-white);
        border: 1px solid var(--color_main);
    }

    .c-gnav .menu-item:last-child a:hover {
        background: var(--color-text-dark);
        border-color: var(--color-text-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    /* モバイルメニューが開いている時のオーバーレイ（フルスクリーンなので不要） */
    body.menu-open::before {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* スクロールを防ぐ */
    body.menu-open {
        overflow: hidden;
    }

    .c-card,
    .c-boxCard,
    .c-valueCard {
        padding: 2rem;
    }
}

/* ====================
   Footer
   ==================== */
.l-footer {
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

.l-footer__content {
    padding-bottom: 3rem;
}

.l-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .l-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .l-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.l-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.c-logo.-white .c-logo__text {
    color: var(--color_main);
}

.l-footer__tagline {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    margin: 0;
    font-weight: 600;
}

.l-footer__description {
    color: var(--color-text-medium);
    font-size: 0.9375rem;
    margin: 0.5rem 0 0;
    line-height: 1.8;
}

.l-footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.l-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.l-footer__social a:hover {
    background: var(--color_main);
    color: white;
    transform: translateY(-2px);
    border-color: var(--color_main);
}

.l-footer__nav {
    display: flex;
    flex-direction: column;
}

.l-footer__navTitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.c-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-footer-nav li {
    margin: 0;
}

.c-footer-nav a {
    color: var(--color-text-medium);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.c-footer-nav a:hover {
    color: var(--color_main);
    padding-left: 0.25rem;
}

.l-footer__bottom {
    background: var(--color-bg-gray);
    padding: 1.5rem 0;
}

.l-footer__bottom .l-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-copyright {
    text-align: center;
}

.c-copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-medium);
}

.c-copyright a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.25rem;
}

.c-copyright a:hover {
    color: var(--color_main);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .l-footer__content {
        gap: 2.5rem;
    }

    .c-footer-nav {
        gap: 1.25rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .l-footer {
        padding-top: 3rem;
    }

    .l-footer__content {
        padding-bottom: 2.5rem;
        gap: 2rem;
    }

    .c-footer-nav {
        gap: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .c-footer-nav a {
        font-size: 0.875rem;
    }

    .l-footer__tagline {
        font-size: 1rem;
    }

    .l-footer__description {
        font-size: 0.875rem;
    }

    .l-footer__bottom {
        padding: 1.5rem 0;
    }
}

/* ====================
   Utility Classes
   ==================== */
.text-center {
    text-align: center;
}

/* ====================
   Scroll Animations
   ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-card,
.c-boxCard,
.c-valueCard {
    animation: slideInUp 0.6s ease-out backwards;
}

.p-cardGrid.-col2 .c-card:nth-child(1),
.p-cardGrid.-col3 .c-card:nth-child(1) {
    animation-delay: 0.1s;
}

.p-cardGrid.-col2 .c-card:nth-child(2),
.p-cardGrid.-col3 .c-card:nth-child(2) {
    animation-delay: 0.2s;
}

.p-cardGrid.-col3 .c-card:nth-child(3) {
    animation-delay: 0.3s;
}

.p-philosophy__grid .c-boxCard:nth-child(1) {
    animation-delay: 0.1s;
}

.p-philosophy__grid .c-boxCard:nth-child(2) {
    animation-delay: 0.2s;
}

.p-philosophy__grid .c-boxCard:nth-child(3) {
    animation-delay: 0.3s;
}

/* ====================
   Stats Section (p-stats)
   ==================== */
.p-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.p-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.c-statCard {
    text-align: center;
    padding: 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.c-statCard:nth-child(1) {
    animation-delay: 0.1s;
}

.c-statCard:nth-child(2) {
    animation-delay: 0.2s;
}

.c-statCard:nth-child(3) {
    animation-delay: 0.3s;
}

.c-statCard:nth-child(4) {
    animation-delay: 0.4s;
}

.c-statCard__number {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.c-statCard__label {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.c-statCard__text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--color-text-light);
}

/* ====================
   CEO Message Section
   ==================== */
.p-ceoMessage {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .p-ceoMessage {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* CEO Card (Profile) */
.c-ceoCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.c-ceoCard__photo {
    margin-bottom: 1.5rem;
}

.c-ceoCard__photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid)) border-box;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.c-ceoCard__placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.c-ceoCard__title {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.c-ceoCard__name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Message Box */
.c-messageBox {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.c-messageBox__text {
    font-size: 1.0625rem;
    line-height: 2;
    color: var(--color-text-dark);
}

.c-messageBox__text p {
    margin-bottom: 1.5rem;
}

.c-messageBox__text p:last-child {
    margin-bottom: 0;
}

.c-messageBox__career {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.c-messageBox__career h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.c-messageBox__career p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-medium);
}

/* ====================
   News Section
   ==================== */
.p-newsGrid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-lg);
}

.c-newsCard {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(2.25rem, 5vw, 3rem);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

.c-newsCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.c-newsCard__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
}

.c-newsCard__date {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: var(--color-text-light);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.c-newsCard__cat {
    display: inline-block;
    padding: 0.375rem 1.125rem;
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.c-newsCard__cat.-press {
    background: #f97316;
    color: white;
}

.c-newsCard__cat.-media {
    background: #8b5cf6;
    color: white;
}

.c-newsCard__cat.-event {
    background: #06b6d4;
    color: white;
}

.c-newsCard__cat.-info {
    background: #10b981;
    color: white;
}

.c-newsCard__title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

.c-newsCard__title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.c-newsCard__title a:hover {
    color: var(--color_main);
}

.p-newsGrid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.p-section__cta {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 4rem);
}

@media (max-width: 768px) {
    .c-newsCard {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .c-newsCard__meta {
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
    }
}

.c-btn--outline-dark {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 3px solid var(--color-text-dark);
}

.c-btn--outline-dark:hover {
    background-color: var(--color-text-dark);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

/* ====================
   Recruitment Section
   ==================== */
.p-section.-recruit {
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-mid) 50%, var(--color-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.p-section.-recruit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.p-recruit__message {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.c-bigText.-white {
    color: white;
}

.p-recruit__positions {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.c-recruitCard {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.c-recruitCard:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.c-recruitCard__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.c-recruitCard__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.c-recruitCard__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 600;
}

.c-recruitCard__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.c-recruitCard__list li {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.c-recruitCard__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

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

.p-recruit__btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .p-recruit__btns {
        flex-direction: column;
        align-items: center;
    }

    .p-recruit__btns .c-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ====================
   Voice Card (c-voiceCard)
   ==================== */
.c-voiceCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideInUp 0.6s ease-out backwards;
}

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

.c-voiceCard__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.c-voiceCard__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.c-voiceCard__info {
    flex: 1;
}

.c-voiceCard__name {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.c-voiceCard__meta {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--color-text-light);
}

.c-voiceCard__text {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    color: var(--color-text-medium);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.c-voiceCard__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gradient-start);
    opacity: 0.3;
    line-height: 1;
}

/* ====================
   Feature Card (c-featureCard)
   ==================== */
.c-featureCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    height: 100%;
    animation: slideInUp 0.6s ease-out backwards;
}

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

.c-featureCard__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.c-featureCard__title {
    font-size: clamp(1.375rem, 3vw, 1.625rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.c-featureCard__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.c-featureCard__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-featureCard__list li {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--color-text-light);
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.c-featureCard__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gradient-start);
    font-weight: 700;
    font-size: 1.25rem;
}

.c-featureCard__list li + li {
    margin-top: 0.75rem;
}

/* ====================
   FAQ Section (p-faq)
   ==================== */
.p-faq {
    max-width: 900px;
    margin: 0 auto;
}

.c-faqItem {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out backwards;
}

.c-faqItem:nth-child(1) {
    animation-delay: 0.1s;
}

.c-faqItem:nth-child(2) {
    animation-delay: 0.15s;
}

.c-faqItem:nth-child(3) {
    animation-delay: 0.2s;
}

.c-faqItem:nth-child(4) {
    animation-delay: 0.25s;
}

.c-faqItem:nth-child(5) {
    animation-delay: 0.3s;
}

.c-faqItem:nth-child(6) {
    animation-delay: 0.35s;
}

.c-faqItem + .c-faqItem {
    margin-top: 1.5rem;
}

.c-faqItem:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.c-faqItem__question {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.c-faqItem__question::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    color: white;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.c-faqItem__answer {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-medium);
    line-height: 1.9;
    padding-left: 3rem;
}

/* ====================
   Purpose Section (Kaonavi-inspired design)
   ==================== */
.p-purpose {
    background: var(--color-bg-gray);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.p-purpose__inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}

.p-purpose__title {
    text-align: center;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out;
}

.p-purpose__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    position: relative;
    color: var(--color_main);
    animation: float 3s ease-in-out infinite;
}

.p-purpose__icon svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.c-subTitle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.c-subTitle__en {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.c-subTitle__jp {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-medium);
    letter-spacing: 0.05em;
}

.p-purpose__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.p-purpose__lead {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color_main);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.p-purpose__text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-medium);
    line-height: 2;
    margin-bottom: 0;
}

.p-purpose__text p {
    margin-bottom: 2rem;
}

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

.p-purpose__tagline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-text-dark);
    font-style: italic;
    margin: var(--space-lg) 0;
    letter-spacing: 0.02em;
}

/* Parallax shapes */
.p-purpose__shape1,
.p-purpose__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    filter: blur(1px);
}

.p-purpose__shape1 {
    top: 5%;
    right: -5%;
    width: clamp(300px, 35vw, 500px);
    height: clamp(300px, 35vw, 500px);
    animation: rotate 20s linear infinite, float 8s ease-in-out infinite;
}

.p-purpose__shape2 {
    bottom: 5%;
    left: -8%;
    width: clamp(250px, 30vw, 400px);
    height: clamp(250px, 30vw, 400px);
    animation: rotate 15s linear infinite reverse, float 10s ease-in-out infinite 2s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive breakpoint for mobile */
.u-spi {
    display: none;
}

.u-nowrap {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .p-purpose {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .p-purpose__lead {
        line-height: 1.5;
    }

    .p-purpose__text {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .p-purpose__shape1,
    .p-purpose__shape2 {
        opacity: 0.2;
    }

    .p-purpose__shape1 {
        top: 0%;
        right: -20%;
        width: clamp(200px, 50vw, 300px);
        height: clamp(200px, 50vw, 300px);
    }

    .p-purpose__shape2 {
        bottom: 0%;
        left: -20%;
        width: clamp(180px, 45vw, 250px);
        height: clamp(180px, 45vw, 250px);
    }

    .u-spi {
        display: inline;
    }
}

/* ====================
   Values Section (Kaonavi-inspired standalone component)
   ==================== */
.p-values {
    position: relative;
    padding: 0;
    padding-top: clamp(5rem, 10vw, 8rem);
    overflow: hidden;
}

.p-values__shape {
    position: absolute;
    top: 10%;
    right: 5%;
    width: clamp(250px, 30vw, 400px);
    height: clamp(250px, 30vw, 400px);
    color: var(--color_main);
    opacity: 0.15;
    animation: rotateScale 25s ease-in-out infinite, float 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.p-values__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-sp);
}

.p-values__head {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.p-values__icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    color: var(--color_main);
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.p-values__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.p-values__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.p-values__item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-bg-white);
    border-radius: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.p-values__item:nth-child(1) {
    animation-delay: 0.1s;
}

.p-values__item:nth-child(2) {
    animation-delay: 0.2s;
}

.p-values__item:nth-child(3) {
    animation-delay: 0.3s;
}

.p-values__item:nth-child(4) {
    animation-delay: 0.4s;
}

.p-values__item:hover {
    border-color: var(--color_main);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.p-values__num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color_main);
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
    opacity: 0.3;
}

.p-values__content {
    flex: 1;
    margin: 0;
}

.p-values__title {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.p-values__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-medium);
    line-height: 1.8;
    margin: 0;
}

.p-values__link {
    margin-top: 3rem;
    text-align: center;
}

/* MVV Section Link */
.p-mvv__link {
    margin-top: clamp(3rem, 6vw, 4rem);
    text-align: center;
}

.p-mvv__link .c-btn--text {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Link More Component (Arrow link) */
.c-linkMore {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color_main);
    text-decoration: none;
    border: 2px solid var(--color_main);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: var(--color-bg-white);
}

.c-linkMore:hover {
    background: var(--color_main);
    color: var(--color-bg-white);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.c-linkMore__text {
    display: block;
}

.c-linkMore__arrow {
    width: 48px;
    height: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.c-linkMore:hover .c-linkMore__arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .p-values {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .p-values__shape {
        width: 200px;
        height: 200px;
        right: -10%;
    }

    .p-values__head {
        margin-bottom: 2.5rem;
        gap: 1rem;
    }

    .p-values__icon {
        width: 60px;
        height: 60px;
    }

    .p-values__list {
        gap: 1rem;
    }

    .p-values__item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .p-values__num {
        font-size: 2.5rem;
        min-width: auto;
    }

    .p-values__item:hover {
        transform: translateY(-4px);
    }

    .p-values__link {
        margin-top: 2rem;
    }

    .c-linkMore {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }

    .c-linkMore__arrow {
        width: 36px;
        height: 9px;
    }
}

/* ====================
   MVV Section (Kaonavi-inspired design)
   ==================== */
.p-mvv {
    position: relative;
    overflow: hidden;
}

.p-mvv__shape1,
.p-mvv__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.5px);
}

.p-mvv__shape1 {
    top: 10%;
    left: -5%;
    width: clamp(280px, 32vw, 450px);
    height: clamp(280px, 32vw, 450px);
    animation: float 4s ease-in-out infinite, rotateScale 25s ease-in-out infinite;
}

.p-mvv__shape2 {
    bottom: 5%;
    right: -8%;
    width: clamp(250px, 28vw, 400px);
    height: clamp(250px, 28vw, 400px);
    animation: float 5s ease-in-out infinite 1s, rotateScale 30s ease-in-out infinite 3s;
}

@keyframes rotateScale {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.p-mvv .p-section__body {
    position: relative;
    z-index: 1;
}

/* MVV Content */
/* Purpose Statement */
.p-mvvPurpose {
    max-width: 1000px;
    margin: 0 auto clamp(3.5rem, 7vw, 5rem);
    text-align: center;
}

.p-mvvPurpose__text {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--color_main);
    line-height: 1.4;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.p-mvvPurpose__detail {
    max-width: 720px;
    margin: clamp(3rem, 6vw, 4rem) auto 0;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.p-mvvPurpose__detail p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 2;
    color: var(--color-text-medium);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.p-mvvPurpose__tagline {
    font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
    font-weight: 700 !important;
    color: var(--color_main) !important;
    font-style: italic;
    letter-spacing: 0.05em;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 !important;
}

.p-mvvContent {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}

.p-mvvItem {
    background: var(--color-bg-white);
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.p-mvvItem:nth-child(1) {
    animation-delay: 0.1s;
}

.p-mvvItem:nth-child(2) {
    animation-delay: 0.2s;
}

.p-mvvItem:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.p-mvvItem__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.p-mvvItem__en {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 900;
    color: var(--color_main);
    letter-spacing: 0.02em;
}

.p-mvvItem__jp {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-light);
}

.p-mvvItem__text {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--color-text-dark);
    line-height: 2;
    font-weight: 500;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .p-mvv__shape1,
    .p-mvv__shape2 {
        opacity: 0.2;
    }

    .p-mvv__shape1 {
        top: 0%;
        left: -25%;
        width: clamp(220px, 52vw, 320px);
        height: clamp(220px, 52vw, 320px);
    }

    .p-mvv__shape2 {
        bottom: 0%;
        right: -25%;
        width: clamp(200px, 48vw, 280px);
        height: clamp(200px, 48vw, 280px);
    }

    .p-mvvContent {
        gap: 2rem;
    }

    .p-mvvItem {
        padding: 2rem 1.5rem;
    }

    .p-mvvItem__label {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

/* ====================
   Philosophy Section (Kaonavi-inspired design)
   ==================== */
.p-philosophy {
    position: relative;
    overflow: hidden;
}

.p-philosophy__shape1,
.p-philosophy__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.8px);
}

.p-philosophy__shape1 {
    top: 10%;
    right: -10%;
    width: clamp(300px, 34vw, 480px);
    height: clamp(300px, 34vw, 480px);
    animation: float 6s ease-in-out infinite, pulse 8s ease-in-out infinite;
}

.p-philosophy__shape2 {
    bottom: 8%;
    left: -8%;
    width: clamp(270px, 30vw, 420px);
    height: clamp(270px, 30vw, 420px);
    animation: float 5s ease-in-out infinite 1.5s, pulse 10s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.15);
    }
}

.p-philosophy .p-section__body {
    position: relative;
    z-index: 1;
}

/* Philosophy Message */
.p-philosophyMessage {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(4rem, 8vw, 6rem);
    animation: fadeInUp 0.8s ease-out;
}

.p-philosophyMessage__lead {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color_main);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.02em;
}

.p-philosophyMessage__body {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-text-medium);
    line-height: 2;
}

.p-philosophyMessage__body p {
    margin-bottom: 1.5rem;
}

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

/* Philosophy Origin */
.p-philosophyOrigin {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.p-philosophyOrigin__title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.p-philosophyOrigin__intro {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-gray);
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.p-philosophyOrigin__list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.p-philosophyOrigin__item {
    background: var(--color-bg-white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.p-philosophyOrigin__item:nth-child(1) {
    animation-delay: 0.3s;
}

.p-philosophyOrigin__item:nth-child(2) {
    animation-delay: 0.4s;
}

.p-philosophyOrigin__item:nth-child(3) {
    animation-delay: 0.5s;
}

.p-philosophyOrigin__item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.p-philosophyOrigin__label {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-border);
}

.p-philosophyOrigin__name {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 900;
    color: var(--color_main);
    letter-spacing: 0.02em;
}

.p-philosophyOrigin__reading {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--color-text-light);
}

.p-philosophyOrigin__text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.p-philosophyOrigin__meaning {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--color-text-dark);
    line-height: 1.9;
    margin: 0;
    font-weight: 500;
}

.p-philosophyOrigin__detail {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    color: var(--color-text-medium);
    line-height: 2;
    margin: 0;
}

.p-philosophyOrigin__conclusion {
    margin-top: clamp(4rem, 8vw, 6rem);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--color-bg-white);
    border-radius: 16px;
    border: 2px solid var(--color-border);
    text-align: center;
}

.p-philosophyOrigin__conclusion p {
    font-size: clamp(1.125rem, 2.5vw, 1.3rem);
    color: var(--color-text-dark);
    line-height: 2;
    margin: 0;
}

.p-philosophyOrigin__conclusion p + p {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.p-philosophyOrigin__conclusion strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .p-philosophy__shape1,
    .p-philosophy__shape2 {
        opacity: 0.18;
    }

    .p-philosophy__shape1 {
        top: 0%;
        right: -30%;
        width: clamp(220px, 55vw, 330px);
        height: clamp(220px, 55vw, 330px);
    }

    .p-philosophy__shape2 {
        bottom: 0%;
        left: -28%;
        width: clamp(200px, 50vw, 290px);
        height: clamp(200px, 50vw, 290px);
    }

    .p-philosophyMessage {
        margin-bottom: 3rem;
    }

    .p-philosophyOrigin__list {
        gap: 1.25rem;
    }

    .p-philosophyOrigin__item {
        padding: 1.75rem;
    }

    .p-philosophyOrigin__label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

/* ====================
   Business Section (Kaonavi-inspired design)
   ==================== */
.p-business {
    position: relative;
    overflow: hidden;
}

.p-business__shape1,
.p-business__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.6px);
}

.p-business__shape1 {
    top: 5%;
    left: -8%;
    width: clamp(290px, 33vw, 460px);
    height: clamp(290px, 33vw, 460px);
    animation: float 5s ease-in-out infinite, rotateScale 28s ease-in-out infinite 1s;
}

.p-business__shape2 {
    bottom: 10%;
    right: -10%;
    width: clamp(260px, 29vw, 420px);
    height: clamp(260px, 29vw, 420px);
    animation: float 6s ease-in-out infinite 2s, rotateScale 32s ease-in-out infinite 4s;
}

.p-business .p-section__body {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .p-business__shape1,
    .p-business__shape2 {
        opacity: 0.2;
    }

    .p-business__shape1 {
        top: 0%;
        left: -30%;
        width: clamp(210px, 53vw, 310px);
        height: clamp(210px, 53vw, 310px);
    }

    .p-business__shape2 {
        bottom: 0%;
        right: -30%;
        width: clamp(200px, 50vw, 300px);
        height: clamp(200px, 50vw, 300px);
    }
}

/* ====================
   CEO Message Section (Kaonavi-inspired design)
   ==================== */
.p-ceo {
    position: relative;
    overflow: hidden;
}

.p-ceo__shape1,
.p-ceo__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.7px);
}

.p-ceo__shape1 {
    top: 8%;
    right: -12%;
    width: clamp(310px, 35vw, 490px);
    height: clamp(310px, 35vw, 490px);
    animation: float 7s ease-in-out infinite, pulse 9s ease-in-out infinite 1s;
}

.p-ceo__shape2 {
    bottom: 5%;
    left: -10%;
    width: clamp(280px, 31vw, 440px);
    height: clamp(280px, 31vw, 440px);
    animation: float 6s ease-in-out infinite 1s, pulse 11s ease-in-out infinite 3s;
}

.p-ceo .p-section__body {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .p-ceo__shape1,
    .p-ceo__shape2 {
        opacity: 0.18;
    }

    .p-ceo__shape1 {
        top: 0%;
        right: -35%;
        width: clamp(230px, 58vw, 340px);
        height: clamp(230px, 58vw, 340px);
    }

    .p-ceo__shape2 {
        bottom: 0%;
        left: -32%;
        width: clamp(210px, 53vw, 310px);
        height: clamp(210px, 53vw, 310px);
    }
}

/* CEO Message Card */
.p-ceoMessageCard {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg-white);
    padding: clamp(3rem, 6vw, 5rem);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.8s ease-out;
}

.p-ceoMessageCard__profile {
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 2px solid var(--color-border);
}

/* CEO Profile */
.p-ceoProfile {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.p-ceoProfile__photo {
    flex-shrink: 0;
}

.p-ceoProfile__photo img,
.p-ceoProfile__placeholder {
    width: clamp(100px, 15vw, 140px);
    height: clamp(100px, 15vw, 140px);
    border-radius: 50%;
    object-fit: cover;
}

.p-ceoProfile__placeholder {
    background: linear-gradient(135deg, var(--color_main), var(--color-gradient-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
}

.p-ceoProfile__info {
    flex: 1;
}

.p-ceoProfile__title {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.p-ceoProfile__name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--color-text-dark);
    margin: 0;
    letter-spacing: 0.02em;
}

/* CEO Message Content */
.p-ceoMessageCard__content {
    position: relative;
}

.p-ceoMessageCard__text {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--color-text-dark);
    line-height: 2;
}

.p-ceoMessageCard__text p {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

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

.p-ceoMessageCard__signature {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--color-border);
}

.p-ceoMessageCard__signature p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    color: var(--color-text-medium);
    text-align: right;
    margin: 0;
}

.p-ceoMessageCard__career {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 2px solid var(--color-border);
}

.p-ceoMessageCard__career h4 {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.p-ceoMessageCard__career p {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--color-text-medium);
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .p-ceoMessageCard {
        padding: clamp(2rem, 5vw, 2.5rem);
    }

    .p-ceoProfile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .p-ceoProfile__photo img,
    .p-ceoProfile__placeholder {
        width: 120px;
        height: 120px;
    }

    .p-ceoProfile__placeholder {
        font-size: 3rem;
    }

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

/* ====================
   News Section (Kaonavi-inspired design)
   ==================== */
.p-news {
    position: relative;
    overflow: hidden;
}

.p-news__shape1,
.p-news__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.6px);
}

.p-news__shape1 {
    top: 15%;
    left: -10%;
    width: clamp(270px, 30vw, 430px);
    height: clamp(270px, 30vw, 430px);
    animation: float 5s ease-in-out infinite, rotateScale 26s ease-in-out infinite 2s;
}

.p-news__shape2 {
    bottom: 10%;
    right: -8%;
    width: clamp(300px, 33vw, 470px);
    height: clamp(300px, 33vw, 470px);
    animation: float 6s ease-in-out infinite 1.5s, rotateScale 30s ease-in-out infinite;
}

.p-news .p-section__body {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .p-news__shape1,
    .p-news__shape2 {
        opacity: 0.18;
    }

    .p-news__shape1 {
        top: 5%;
        left: -32%;
        width: clamp(200px, 50vw, 290px);
        height: clamp(200px, 50vw, 290px);
    }

    .p-news__shape2 {
        bottom: 5%;
        right: -28%;
        width: clamp(220px, 55vw, 320px);
        height: clamp(220px, 55vw, 320px);
    }
}

/* ====================
   Company Section (Kaonavi-inspired design)
   ==================== */
.p-company {
    position: relative;
    overflow: hidden;
}

.p-company__shape1,
.p-company__shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    color: var(--color_main);
    transition: transform 0.1s ease-out;
    will-change: transform;
    z-index: 0;
    filter: blur(0.5px);
}

.p-company__shape1 {
    top: 8%;
    right: -10%;
    width: clamp(290px, 32vw, 450px);
    height: clamp(290px, 32vw, 450px);
    animation: float 6s ease-in-out infinite, pulse 10s ease-in-out infinite 2s;
}

.p-company__shape2 {
    bottom: 8%;
    left: -8%;
    width: clamp(300px, 33vw, 460px);
    height: clamp(300px, 33vw, 460px);
    animation: float 7s ease-in-out infinite 2s, pulse 12s ease-in-out infinite;
}

.p-company .p-section__body {
    position: relative;
    z-index: 1;
}

.c-companyTable {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .p-company__shape1,
    .p-company__shape2 {
        opacity: 0.2;
    }

    .p-company__shape1 {
        top: 0%;
        right: -30%;
        width: clamp(210px, 52vw, 310px);
        height: clamp(210px, 52vw, 310px);
    }

    .p-company__shape2 {
        bottom: 0%;
        left: -28%;
        width: clamp(220px, 53vw, 320px);
        height: clamp(220px, 53vw, 320px);
    }
}

/* ====================
   Responsive Updates for New Sections
   ==================== */
@media (max-width: 768px) {
    .p-stats {
        padding: 3rem 0;
    }

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

    .c-statCard {
        padding: 1.5rem 1rem;
    }

    .c-voiceCard,
    .c-featureCard,
    .c-faqItem {
        padding: 2rem;
    }

    .c-voiceCard__avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .c-faqItem__answer {
        padding-left: 0;
        margin-top: 1rem;
    }

    .c-faqItem__question {
        flex-direction: column;
        gap: 0.75rem;
    }

    .c-faqItem__question::before {
        margin-top: 0;
    }
}

/* ====================
   Page Hero Section
   ==================== */

.p-pageHero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--color-bg-white);
    text-align: center;
}

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

.p-pageHero__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.p-pageHero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.p-pageHero__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-medium);
}

@media (max-width: 768px) {
    .p-pageHero {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .p-pageHero__title {
        margin-bottom: 1rem;
    }
}

/* ====================
   Hero Section with Network Animation
   ==================== */

.p-hero {
    position: relative;
    min-height: clamp(420px, 55vh, 520px);
    padding: clamp(1rem, 2vh, 1.5rem) 0 clamp(3rem, 6vh, 4.5rem) 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--color-bg-white);
    overflow: visible;
}

.p-hero__inner {
    width: 100%;
    padding: 0;
    margin-top: clamp(1rem, 2vh, 2rem);
}

.p-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.p-hero__content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.p-hero__subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-medium);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
}

.p-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.02em;
}

.p-hero__lead {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: var(--color-text-medium);
}

.p-hero__visual {
    position: relative;
    width: 108%;
    height: 0;
    padding-bottom: 108%; /* 正方形（width=heightになる） */
    max-width: 760px;
    overflow: visible;
    transform: translate(-4%, -10%) scale(1.5); /* 面積を増やす */
    transform-origin: center;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
    pointer-events: none;
    z-index: 0;
}

.p-hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    animation: slowRotate 120s linear infinite;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 1025px) {
    .p-hero__grid {
        margin-top: -2rem;
    }
}

@media (max-width: 1024px) {
    .p-hero__inner {
        padding: clamp(1rem, 2vw, 2rem) 0;
        margin-top: 0;
    }

    .p-hero__grid {
        gap: clamp(2rem, 4vw, 3rem);
    }

    .p-hero__visual {
        width: 118%;
        height: 0;
        padding-bottom: 118%; /* 正方形（width=heightになる） */
        max-width: 760px;
        transform: translate(-6%, -14%) scale(1.6); /* 面積を増やす */
    }
}

@media (max-width: 768px) {
    .p-hero {
        position: relative;
        min-height: clamp(460px, 82vh, 600px);
        padding: 0.25rem 0 clamp(1rem, 4.5vh, 1.6rem) 0;
    }

    .p-hero__inner {
        padding: 0;
        height: auto;
        min-height: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    .p-hero__grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vh, 1.5rem);
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .p-hero__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0.5rem 1.4rem clamp(1rem, 3.5vh, 1.5rem) 1.4rem;
    }

    .p-hero__subtitle {
        margin-bottom: 0.5rem;
    }

    .p-hero__title {
        animation: fadeIn 0.9s ease-out 5s both;
    }

    .p-hero__lead {
        animation: fadeIn 1s ease-out 5.6s both;
    }

    .p-hero__visual {
        position: absolute;
        top: -60%;
        left: 50%;
        width: 150%;
        height: 0;
        padding-bottom: 150%; /* 正方形（width=heightになる） */
        z-index: 1;
        opacity: 1;
        transform: translate(-50%, -6%) scale(1.0); /* モバイルはサイズを抑える */
        transform-origin: center;
    }

    .p-hero__canvas {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1025px) {
    .p-hero__content {
        margin-top: clamp(-5rem, -12vh, -3.5rem);
    }
}

@media (max-width: 560px) {
    .p-hero {
        min-height: clamp(390px, 88vh, 540px);
        padding: 0.25rem 0 clamp(0.95rem, 4.75vh, 1.5rem) 0;
    }

    .p-hero__content {
        padding: 0.25rem 1.2rem clamp(0.95rem, 3.25vh, 1.35rem) 1.2rem;
    }

    .p-hero__subtitle {
        margin-bottom: 0.5rem;
    }

    .p-hero__visual {
        top: -65%;
        left: 50%;
        width: 160%;
        height: 300%;
        transform: translate(-50%, -8%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ====================
   Business Stack (Vertical Cards)
   ==================== */
.p-businessStack {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.p-businessStack__item {
    display: grid;
    gap: clamp(1rem, 3vw, 1.6rem);
}

.p-businessStack__icon {
    display: flex;
    justify-content: center;
}

.p-businessStack__content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 2.4vw, 1.4rem);
    text-align: center;
}

.p-businessStack__content .c-card__title {
    margin-bottom: 0;
}

.p-businessStack__content .c-card__text {
    margin-bottom: 0;
    text-align: left;
}

.p-businessStack__cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.p-businessStack__cta .c-btn {
    width: fit-content;
}

@media (max-width: 768px) {
    .p-businessStack__item {
        gap: clamp(0.9rem, 5vw, 1.3rem);
    }

    .p-businessStack__cta .c-btn {
        width: fit-content;
        max-width: 90%;
    }
}

/* ====================
   Business Grid (New 2-column layout)
   ==================== */
.p-businessGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
}

.p-businessGrid__item {
    display: grid;
    gap: clamp(1rem, 3vw, 1.6rem);
    padding: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--color-bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.p-businessGrid__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.p-businessGrid__icon {
    display: flex;
    justify-content: center;
}

.p-businessGrid__content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 2.4vw, 1.4rem);
    text-align: center;
}

.p-businessGrid__content .c-card__title {
    margin-bottom: 0;
}

.p-businessGrid__content .c-card__text {
    margin-bottom: 0;
    text-align: left;
}

.p-businessGrid__services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.6rem, 1.5vw, 0.9rem);
    text-align: center;
}

.p-businessGrid__services li {
    padding: clamp(0.65rem, 1.5vw, 0.9rem) 0;
    background-color: transparent;
    border-bottom: 1px solid var(--color-border);
    font-size: clamp(0.875rem, 1.8vw, 0.95rem);
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-text-dark);
    transition: color 0.2s ease;
}

.p-businessGrid__services li:hover {
    color: var(--color-text-medium);
}

.p-businessGrid__cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.p-businessGrid__cta .c-btn {
    width: fit-content;
}

/* Sub Business (Consulting) */
.p-businessSub {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    text-align: center;
}

.p-businessSub__label {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 600;
    color: var(--color-text-medium);
    margin-bottom: 0.5rem;
}

.p-businessSub__text {
    font-size: clamp(0.875rem, 1.8vw, 0.95rem);
    color: var(--color-text-medium);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .p-businessGrid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 6vw, 2.5rem);
    }

    .p-businessGrid__item {
        gap: clamp(0.9rem, 5vw, 1.3rem);
    }

    .p-businessGrid__cta .c-btn {
        width: fit-content;
        max-width: 90%;
    }

    .p-businessSub {
        margin-top: clamp(2rem, 5vw, 2.5rem);
        padding: clamp(1.2rem, 4vw, 1.5rem);
    }
}
